diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03cf3ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,108 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# IPython Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# dotenv +.env + +# virtualenv +venv/ +ENV/ + +# Spyder project settings +.spyderproject + +# Rope project settings +.ropeproject + +# Local data +/data/local + +# Vim swapfiles +*.swp +*.swo + +# nosetests +.noseids + +# pyTorch model +pytorch_model.bin + +# VSCODE +.vscode/* + +# data +*.csv diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8cb7569 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 Bjarke Felbo, Han Thi Nguyen, Thomas Wolf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc19c7b --- /dev/null +++ b/README.md @@ -0,0 +1,82 @@ +# torchMoji + +TorchMoji is a [pyTorch](http://pytorch.org/) implementation of the [DeepMoji](https://github.com/bfelbo/DeepMoji) model developped by Bjarke Felbo, Alan Mislove, Anders Søgaard, Iyad Rahwan and Sune Lehmann. + +This model trained on 1.2 billion tweets with emojis to understand how language is used to express emotions. Through transfer learning the model can obtain state-of-the-art performance on many emotion-related text modeling tasks. + +Try the online demo of DeepMoji [http://deepmoji.mit.edu](http://deepmoji.mit.edu/)! See the [paper](https://arxiv.org/abs/1708.00524), [blog post](https://medium.com/@bjarkefelbo/what-can-we-learn-from-emojis-6beb165a5ea0) or [FAQ](https://www.media.mit.edu/projects/deepmoji/overview/) for more details. + +## Overview +* [torchmoji/](torchmoji) contains all the underlying code needed to convert a dataset to the vocabulary and use the model. +* [examples/](examples) contains short code snippets showing how to convert a dataset to the vocabulary, load up the model and run it on that dataset. +* [scripts/](scripts) contains code for processing and analysing datasets to reproduce results in the paper. +* [model/](model) contains the pretrained model and vocabulary. +* [data/](data) contains raw and processed datasets that we include in this repository for testing. +* [tests/](tests) contains unit tests for the codebase. + +To start out with, have a look inside the [examples/](examples) directory. See [score_texts_emojis.py](examples/score_texts_emojis.py) for how to use DeepMoji to extract emoji predictions, [encode_texts.py](examples/encode_texts.py) for how to convert text into 2304-dimensional emotional feature vectors or [finetune_youtube_last.py](examples/finetune_youtube_last.py) for how to use the model for transfer learning on a new dataset. + +Please consider citing the [paper](https://arxiv.org/abs/1708.00524) of DeepMoji if you use the model or code (see below for citation). + +## Installation + +We assume that you're using [Python 2.7-3.5](https://www.python.org/downloads/) with [pip](https://pip.pypa.io/en/stable/installing/) installed. + +First you need to install [pyTorch (version 0.2+)](http://pytorch.org/), currently by: +```bash +conda install pytorch -c soumith +``` +At the present stage the model can't make efficient use of CUDA. See details in the HuggingFace blog post. + +When pyTorch is installed, run the following in the root directory to install the remaining dependencies: + +```bash +pip install -e . +``` +This will install the following dependencies: +* [scikit-learn](https://github.com/scikit-learn/scikit-learn) +* [text-unidecode](https://github.com/kmike/text-unidecode) +* [emoji](https://github.com/carpedm20/emoji) + +Then, run the download script to downloads the pretrained torchMoji weights (~85MB) from [here](https://www.dropbox.com/s/q8lax9ary32c7t9/pytorch_model.bin?dl=0) and put them in the model/ directory: + +```bash +python scripts/download_weights.py +``` + +## Testing +To run the tests, install [nose](http://nose.readthedocs.io/en/latest/). After installing, navigate to the [tests/](tests) directory and run: + +```bash +cd tests +nosetests -v +``` + +By default, this will also run finetuning tests. These tests train the model for one epoch and then check the resulting accuracy, which may take several minutes to finish. If you'd prefer to exclude those, run the following instead: + +```bash +cd tests +nosetests -v -a '!slow' +``` + +## Disclaimer +This code has been tested to work with Python 2.7 and 3.5 on Ubuntu 16.04 and macOS Sierra machines. It has not been optimized for efficiency, but should be fast enough for most purposes. We do not give any guarantees that there are no bugs - use the code on your own responsibility! + +## Contributions +We welcome pull requests if you feel like something could be improved. You can also greatly help us by telling us how you felt when writing your most recent tweets. Just click [here](http://deepmoji.mit.edu/contribute/) to contribute. + +## License +This code and the pretrained model is licensed under the MIT license. + +## Benchmark datasets +The benchmark datasets are uploaded to this repository for convenience purposes only. They were not released by us and we do not claim any rights on them. Use the datasets at your responsibility and make sure you fulfill the licenses that they were released with. If you use any of the benchmark datasets please consider citing the original authors. + +## Citation +``` +@inproceedings{felbo2017, + title={Using millions of emoji occurrences to learn any-domain representations for detecting sentiment, emotion and sarcasm}, + author={Felbo, Bjarke and Mislove, Alan and S{\o}gaard, Anders and Rahwan, Iyad and Lehmann, Sune}, + booktitle={Conference on Empirical Methods in Natural Language Processing (EMNLP)}, + year={2017} +} +``` diff --git a/data/.gitkeep b/data/.gitkeep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/data/.gitkeep @@ -0,0 +1 @@ + diff --git a/data/Olympic/raw.pickle b/data/Olympic/raw.pickle new file mode 100644 index 0000000..390e6d3 --- /dev/null +++ b/data/Olympic/raw.pickle @@ -0,0 +1,20278 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +cnumpy.core.multiarray +_reconstruct +p5 +(cnumpy +ndarray +p6 +(I0 +tp7 +S'b' +p8 +tp9 +Rp10 +(I1 +(I4 +tp11 +cnumpy +dtype +p12 +(S'b1' +p13 +I0 +I1 +tp14 +Rp15 +(I3 +S'|' +p16 +NNNI-1 +I-1 +I0 +tp17 +bI00 +S'\x00\x01\x00\x00' +p18 +tp19 +bsa(dp20 +g4 +g5 +(g6 +(I0 +tp21 +g8 +tp22 +Rp23 +(I1 +(I4 +tp24 +g15 +I00 +S'\x00\x00\x00\x01' +p25 +tp26 +bsa(dp27 +g4 +g5 +(g6 +(I0 +tp28 +g8 +tp29 +Rp30 +(I1 +(I4 +tp31 +g15 +I00 +S'\x00\x01\x00\x00' +p32 +tp33 +bsa(dp34 +g4 +g5 +(g6 +(I0 +tp35 +g8 +tp36 +Rp37 +(I1 +(I4 +tp38 +g15 +I00 +S'\x00\x01\x00\x00' +p39 +tp40 +bsa(dp41 +g4 +g5 +(g6 +(I0 +tp42 +g8 +tp43 +Rp44 +(I1 +(I4 +tp45 +g15 +I00 +S'\x00\x01\x00\x01' +p46 +tp47 +bsa(dp48 +g4 +g5 +(g6 +(I0 +tp49 +g8 +tp50 +Rp51 +(I1 +(I4 +tp52 +g15 +I00 +S'\x00\x01\x00\x00' +p53 +tp54 +bsa(dp55 +g4 +g5 +(g6 +(I0 +tp56 +g8 +tp57 +Rp58 +(I1 +(I4 +tp59 +g15 +I00 +S'\x00\x01\x00\x01' +p60 +tp61 +bsa(dp62 +g4 +g5 +(g6 +(I0 +tp63 +g8 +tp64 +Rp65 +(I1 +(I4 +tp66 +g15 +I00 +S'\x00\x01\x00\x01' +p67 +tp68 +bsa(dp69 +g4 +g5 +(g6 +(I0 +tp70 +g8 +tp71 +Rp72 +(I1 +(I4 +tp73 +g15 +I00 +S'\x00\x01\x00\x00' +p74 +tp75 +bsa(dp76 +g4 +g5 +(g6 +(I0 +tp77 +g8 +tp78 +Rp79 +(I1 +(I4 +tp80 +g15 +I00 +S'\x00\x00\x00\x00' +p81 +tp82 +bsa(dp83 +g4 +g5 +(g6 +(I0 +tp84 +g8 +tp85 +Rp86 +(I1 +(I4 +tp87 +g15 +I00 +S'\x01\x00\x01\x01' +p88 +tp89 +bsa(dp90 +g4 +g5 +(g6 +(I0 +tp91 +g8 +tp92 +Rp93 +(I1 +(I4 +tp94 +g15 +I00 +S'\x01\x00\x00\x00' +p95 +tp96 +bsa(dp97 +g4 +g5 +(g6 +(I0 +tp98 +g8 +tp99 +Rp100 +(I1 +(I4 +tp101 +g15 +I00 +S'\x00\x01\x00\x01' +p102 +tp103 +bsa(dp104 +g4 +g5 +(g6 +(I0 +tp105 +g8 +tp106 +Rp107 +(I1 +(I4 +tp108 +g15 +I00 +S'\x01\x01\x00\x01' +p109 +tp110 +bsa(dp111 +g4 +g5 +(g6 +(I0 +tp112 +g8 +tp113 +Rp114 +(I1 +(I4 +tp115 +g15 +I00 +S'\x00\x01\x00\x01' +p116 +tp117 +bsa(dp118 +g4 +g5 +(g6 +(I0 +tp119 +g8 +tp120 +Rp121 +(I1 +(I4 +tp122 +g15 +I00 +S'\x00\x01\x00\x00' +p123 +tp124 +bsa(dp125 +g4 +g5 +(g6 +(I0 +tp126 +g8 +tp127 +Rp128 +(I1 +(I4 +tp129 +g15 +I00 +S'\x00\x01\x00\x00' +p130 +tp131 +bsa(dp132 +g4 +g5 +(g6 +(I0 +tp133 +g8 +tp134 +Rp135 +(I1 +(I4 +tp136 +g15 +I00 +S'\x00\x01\x00\x01' +p137 +tp138 +bsa(dp139 +g4 +g5 +(g6 +(I0 +tp140 +g8 +tp141 +Rp142 +(I1 +(I4 +tp143 +g15 +I00 +S'\x01\x00\x00\x00' +p144 +tp145 +bsa(dp146 +g4 +g5 +(g6 +(I0 +tp147 +g8 +tp148 +Rp149 +(I1 +(I4 +tp150 +g15 +I00 +S'\x00\x01\x00\x00' +p151 +tp152 +bsa(dp153 +g4 +g5 +(g6 +(I0 +tp154 +g8 +tp155 +Rp156 +(I1 +(I4 +tp157 +g15 +I00 +S'\x00\x01\x00\x00' +p158 +tp159 +bsa(dp160 +g4 +g5 +(g6 +(I0 +tp161 +g8 +tp162 +Rp163 +(I1 +(I4 +tp164 +g15 +I00 +S'\x00\x01\x00\x01' +p165 +tp166 +bsa(dp167 +g4 +g5 +(g6 +(I0 +tp168 +g8 +tp169 +Rp170 +(I1 +(I4 +tp171 +g15 +I00 +S'\x00\x01\x00\x00' +p172 +tp173 +bsa(dp174 +g4 +g5 +(g6 +(I0 +tp175 +g8 +tp176 +Rp177 +(I1 +(I4 +tp178 +g15 +I00 +S'\x00\x01\x00\x01' +p179 +tp180 +bsa(dp181 +g4 +g5 +(g6 +(I0 +tp182 +g8 +tp183 +Rp184 +(I1 +(I4 +tp185 +g15 +I00 +S'\x00\x01\x00\x01' +p186 +tp187 +bsa(dp188 +g4 +g5 +(g6 +(I0 +tp189 +g8 +tp190 +Rp191 +(I1 +(I4 +tp192 +g15 +I00 +S'\x00\x00\x00\x01' +p193 +tp194 +bsa(dp195 +g4 +g5 +(g6 +(I0 +tp196 +g8 +tp197 +Rp198 +(I1 +(I4 +tp199 +g15 +I00 +S'\x00\x01\x01\x01' +p200 +tp201 +bsa(dp202 +g4 +g5 +(g6 +(I0 +tp203 +g8 +tp204 +Rp205 +(I1 +(I4 +tp206 +g15 +I00 +S'\x00\x01\x00\x01' +p207 +tp208 +bsa(dp209 +g4 +g5 +(g6 +(I0 +tp210 +g8 +tp211 +Rp212 +(I1 +(I4 +tp213 +g15 +I00 +S'\x00\x01\x00\x00' +p214 +tp215 +bsa(dp216 +g4 +g5 +(g6 +(I0 +tp217 +g8 +tp218 +Rp219 +(I1 +(I4 +tp220 +g15 +I00 +S'\x00\x01\x01\x01' +p221 +tp222 +bsa(dp223 +g4 +g5 +(g6 +(I0 +tp224 +g8 +tp225 +Rp226 +(I1 +(I4 +tp227 +g15 +I00 +S'\x00\x01\x00\x00' +p228 +tp229 +bsa(dp230 +g4 +g5 +(g6 +(I0 +tp231 +g8 +tp232 +Rp233 +(I1 +(I4 +tp234 +g15 +I00 +S'\x00\x01\x00\x00' +p235 +tp236 +bsa(dp237 +g4 +g5 +(g6 +(I0 +tp238 +g8 +tp239 +Rp240 +(I1 +(I4 +tp241 +g15 +I00 +S'\x00\x01\x00\x00' +p242 +tp243 +bsa(dp244 +g4 +g5 +(g6 +(I0 +tp245 +g8 +tp246 +Rp247 +(I1 +(I4 +tp248 +g15 +I00 +S'\x00\x01\x00\x00' +p249 +tp250 +bsa(dp251 +g4 +g5 +(g6 +(I0 +tp252 +g8 +tp253 +Rp254 +(I1 +(I4 +tp255 +g15 +I00 +S'\x00\x00\x00\x01' +p256 +tp257 +bsa(dp258 +g4 +g5 +(g6 +(I0 +tp259 +g8 +tp260 +Rp261 +(I1 +(I4 +tp262 +g15 +I00 +S'\x00\x01\x00\x00' +p263 +tp264 +bsa(dp265 +g4 +g5 +(g6 +(I0 +tp266 +g8 +tp267 +Rp268 +(I1 +(I4 +tp269 +g15 +I00 +S'\x00\x01\x00\x01' +p270 +tp271 +bsa(dp272 +g4 +g5 +(g6 +(I0 +tp273 +g8 +tp274 +Rp275 +(I1 +(I4 +tp276 +g15 +I00 +S'\x00\x01\x00\x00' +p277 +tp278 +bsa(dp279 +g4 +g5 +(g6 +(I0 +tp280 +g8 +tp281 +Rp282 +(I1 +(I4 +tp283 +g15 +I00 +S'\x00\x01\x00\x00' +p284 +tp285 +bsa(dp286 +g4 +g5 +(g6 +(I0 +tp287 +g8 +tp288 +Rp289 +(I1 +(I4 +tp290 +g15 +I00 +S'\x00\x00\x00\x01' +p291 +tp292 +bsa(dp293 +g4 +g5 +(g6 +(I0 +tp294 +g8 +tp295 +Rp296 +(I1 +(I4 +tp297 +g15 +I00 +S'\x00\x01\x00\x00' +p298 +tp299 +bsa(dp300 +g4 +g5 +(g6 +(I0 +tp301 +g8 +tp302 +Rp303 +(I1 +(I4 +tp304 +g15 +I00 +S'\x00\x00\x00\x00' +p305 +tp306 +bsa(dp307 +g4 +g5 +(g6 +(I0 +tp308 +g8 +tp309 +Rp310 +(I1 +(I4 +tp311 +g15 +I00 +S'\x00\x00\x00\x00' +p312 +tp313 +bsa(dp314 +g4 +g5 +(g6 +(I0 +tp315 +g8 +tp316 +Rp317 +(I1 +(I4 +tp318 +g15 +I00 +S'\x00\x00\x00\x01' +p319 +tp320 +bsa(dp321 +g4 +g5 +(g6 +(I0 +tp322 +g8 +tp323 +Rp324 +(I1 +(I4 +tp325 +g15 +I00 +S'\x00\x00\x00\x01' +p326 +tp327 +bsa(dp328 +g4 +g5 +(g6 +(I0 +tp329 +g8 +tp330 +Rp331 +(I1 +(I4 +tp332 +g15 +I00 +S'\x00\x01\x00\x00' +p333 +tp334 +bsa(dp335 +g4 +g5 +(g6 +(I0 +tp336 +g8 +tp337 +Rp338 +(I1 +(I4 +tp339 +g15 +I00 +S'\x00\x01\x00\x01' +p340 +tp341 +bsa(dp342 +g4 +g5 +(g6 +(I0 +tp343 +g8 +tp344 +Rp345 +(I1 +(I4 +tp346 +g15 +I00 +S'\x00\x00\x00\x01' +p347 +tp348 +bsa(dp349 +g4 +g5 +(g6 +(I0 +tp350 +g8 +tp351 +Rp352 +(I1 +(I4 +tp353 +g15 +I00 +S'\x00\x01\x00\x00' +p354 +tp355 +bsa(dp356 +g4 +g5 +(g6 +(I0 +tp357 +g8 +tp358 +Rp359 +(I1 +(I4 +tp360 +g15 +I00 +S'\x00\x00\x00\x00' +p361 +tp362 +bsa(dp363 +g4 +g5 +(g6 +(I0 +tp364 +g8 +tp365 +Rp366 +(I1 +(I4 +tp367 +g15 +I00 +S'\x00\x01\x00\x00' +p368 +tp369 +bsa(dp370 +g4 +g5 +(g6 +(I0 +tp371 +g8 +tp372 +Rp373 +(I1 +(I4 +tp374 +g15 +I00 +S'\x00\x01\x00\x00' +p375 +tp376 +bsa(dp377 +g4 +g5 +(g6 +(I0 +tp378 +g8 +tp379 +Rp380 +(I1 +(I4 +tp381 +g15 +I00 +S'\x01\x00\x00\x00' +p382 +tp383 +bsa(dp384 +g4 +g5 +(g6 +(I0 +tp385 +g8 +tp386 +Rp387 +(I1 +(I4 +tp388 +g15 +I00 +S'\x00\x01\x00\x01' +p389 +tp390 +bsa(dp391 +g4 +g5 +(g6 +(I0 +tp392 +g8 +tp393 +Rp394 +(I1 +(I4 +tp395 +g15 +I00 +S'\x00\x01\x00\x01' +p396 +tp397 +bsa(dp398 +g4 +g5 +(g6 +(I0 +tp399 +g8 +tp400 +Rp401 +(I1 +(I4 +tp402 +g15 +I00 +S'\x00\x01\x00\x00' +p403 +tp404 +bsa(dp405 +g4 +g5 +(g6 +(I0 +tp406 +g8 +tp407 +Rp408 +(I1 +(I4 +tp409 +g15 +I00 +S'\x00\x01\x00\x01' +p410 +tp411 +bsa(dp412 +g4 +g5 +(g6 +(I0 +tp413 +g8 +tp414 +Rp415 +(I1 +(I4 +tp416 +g15 +I00 +S'\x00\x01\x01\x00' +p417 +tp418 +bsa(dp419 +g4 +g5 +(g6 +(I0 +tp420 +g8 +tp421 +Rp422 +(I1 +(I4 +tp423 +g15 +I00 +S'\x00\x01\x00\x01' +p424 +tp425 +bsa(dp426 +g4 +g5 +(g6 +(I0 +tp427 +g8 +tp428 +Rp429 +(I1 +(I4 +tp430 +g15 +I00 +S'\x00\x01\x00\x00' +p431 +tp432 +bsa(dp433 +g4 +g5 +(g6 +(I0 +tp434 +g8 +tp435 +Rp436 +(I1 +(I4 +tp437 +g15 +I00 +S'\x00\x01\x01\x00' +p438 +tp439 +bsa(dp440 +g4 +g5 +(g6 +(I0 +tp441 +g8 +tp442 +Rp443 +(I1 +(I4 +tp444 +g15 +I00 +S'\x00\x00\x00\x00' +p445 +tp446 +bsa(dp447 +g4 +g5 +(g6 +(I0 +tp448 +g8 +tp449 +Rp450 +(I1 +(I4 +tp451 +g15 +I00 +S'\x00\x01\x00\x00' +p452 +tp453 +bsa(dp454 +g4 +g5 +(g6 +(I0 +tp455 +g8 +tp456 +Rp457 +(I1 +(I4 +tp458 +g15 +I00 +S'\x01\x00\x00\x00' +p459 +tp460 +bsa(dp461 +g4 +g5 +(g6 +(I0 +tp462 +g8 +tp463 +Rp464 +(I1 +(I4 +tp465 +g15 +I00 +S'\x00\x01\x00\x00' +p466 +tp467 +bsa(dp468 +g4 +g5 +(g6 +(I0 +tp469 +g8 +tp470 +Rp471 +(I1 +(I4 +tp472 +g15 +I00 +S'\x00\x01\x00\x01' +p473 +tp474 +bsa(dp475 +g4 +g5 +(g6 +(I0 +tp476 +g8 +tp477 +Rp478 +(I1 +(I4 +tp479 +g15 +I00 +S'\x00\x01\x00\x01' +p480 +tp481 +bsa(dp482 +g4 +g5 +(g6 +(I0 +tp483 +g8 +tp484 +Rp485 +(I1 +(I4 +tp486 +g15 +I00 +S'\x00\x00\x00\x01' +p487 +tp488 +bsa(dp489 +g4 +g5 +(g6 +(I0 +tp490 +g8 +tp491 +Rp492 +(I1 +(I4 +tp493 +g15 +I00 +S'\x00\x01\x00\x00' +p494 +tp495 +bsa(dp496 +g4 +g5 +(g6 +(I0 +tp497 +g8 +tp498 +Rp499 +(I1 +(I4 +tp500 +g15 +I00 +S'\x01\x00\x00\x00' +p501 +tp502 +bsa(dp503 +g4 +g5 +(g6 +(I0 +tp504 +g8 +tp505 +Rp506 +(I1 +(I4 +tp507 +g15 +I00 +S'\x00\x01\x00\x01' +p508 +tp509 +bsa(dp510 +g4 +g5 +(g6 +(I0 +tp511 +g8 +tp512 +Rp513 +(I1 +(I4 +tp514 +g15 +I00 +S'\x00\x01\x00\x01' +p515 +tp516 +bsa(dp517 +g4 +g5 +(g6 +(I0 +tp518 +g8 +tp519 +Rp520 +(I1 +(I4 +tp521 +g15 +I00 +S'\x00\x01\x00\x00' +p522 +tp523 +bsa(dp524 +g4 +g5 +(g6 +(I0 +tp525 +g8 +tp526 +Rp527 +(I1 +(I4 +tp528 +g15 +I00 +S'\x01\x00\x00\x00' +p529 +tp530 +bsa(dp531 +g4 +g5 +(g6 +(I0 +tp532 +g8 +tp533 +Rp534 +(I1 +(I4 +tp535 +g15 +I00 +S'\x01\x00\x00\x01' +p536 +tp537 +bsa(dp538 +g4 +g5 +(g6 +(I0 +tp539 +g8 +tp540 +Rp541 +(I1 +(I4 +tp542 +g15 +I00 +S'\x00\x01\x00\x00' +p543 +tp544 +bsa(dp545 +g4 +g5 +(g6 +(I0 +tp546 +g8 +tp547 +Rp548 +(I1 +(I4 +tp549 +g15 +I00 +S'\x00\x00\x00\x01' +p550 +tp551 +bsa(dp552 +g4 +g5 +(g6 +(I0 +tp553 +g8 +tp554 +Rp555 +(I1 +(I4 +tp556 +g15 +I00 +S'\x00\x01\x00\x00' +p557 +tp558 +bsa(dp559 +g4 +g5 +(g6 +(I0 +tp560 +g8 +tp561 +Rp562 +(I1 +(I4 +tp563 +g15 +I00 +S'\x00\x00\x00\x01' +p564 +tp565 +bsa(dp566 +g4 +g5 +(g6 +(I0 +tp567 +g8 +tp568 +Rp569 +(I1 +(I4 +tp570 +g15 +I00 +S'\x00\x01\x00\x01' +p571 +tp572 +bsa(dp573 +g4 +g5 +(g6 +(I0 +tp574 +g8 +tp575 +Rp576 +(I1 +(I4 +tp577 +g15 +I00 +S'\x00\x01\x00\x00' +p578 +tp579 +bsa(dp580 +g4 +g5 +(g6 +(I0 +tp581 +g8 +tp582 +Rp583 +(I1 +(I4 +tp584 +g15 +I00 +S'\x00\x00\x00\x01' +p585 +tp586 +bsa(dp587 +g4 +g5 +(g6 +(I0 +tp588 +g8 +tp589 +Rp590 +(I1 +(I4 +tp591 +g15 +I00 +S'\x01\x00\x00\x00' +p592 +tp593 +bsa(dp594 +g4 +g5 +(g6 +(I0 +tp595 +g8 +tp596 +Rp597 +(I1 +(I4 +tp598 +g15 +I00 +S'\x00\x00\x01\x00' +p599 +tp600 +bsa(dp601 +g4 +g5 +(g6 +(I0 +tp602 +g8 +tp603 +Rp604 +(I1 +(I4 +tp605 +g15 +I00 +S'\x00\x00\x00\x01' +p606 +tp607 +bsa(dp608 +g4 +g5 +(g6 +(I0 +tp609 +g8 +tp610 +Rp611 +(I1 +(I4 +tp612 +g15 +I00 +S'\x00\x01\x00\x01' +p613 +tp614 +bsa(dp615 +g4 +g5 +(g6 +(I0 +tp616 +g8 +tp617 +Rp618 +(I1 +(I4 +tp619 +g15 +I00 +S'\x00\x01\x00\x00' +p620 +tp621 +bsa(dp622 +g4 +g5 +(g6 +(I0 +tp623 +g8 +tp624 +Rp625 +(I1 +(I4 +tp626 +g15 +I00 +S'\x00\x00\x00\x00' +p627 +tp628 +bsa(dp629 +g4 +g5 +(g6 +(I0 +tp630 +g8 +tp631 +Rp632 +(I1 +(I4 +tp633 +g15 +I00 +S'\x01\x00\x01\x00' +p634 +tp635 +bsa(dp636 +g4 +g5 +(g6 +(I0 +tp637 +g8 +tp638 +Rp639 +(I1 +(I4 +tp640 +g15 +I00 +S'\x00\x01\x00\x01' +p641 +tp642 +bsa(dp643 +g4 +g5 +(g6 +(I0 +tp644 +g8 +tp645 +Rp646 +(I1 +(I4 +tp647 +g15 +I00 +S'\x00\x01\x00\x01' +p648 +tp649 +bsa(dp650 +g4 +g5 +(g6 +(I0 +tp651 +g8 +tp652 +Rp653 +(I1 +(I4 +tp654 +g15 +I00 +S'\x00\x01\x00\x01' +p655 +tp656 +bsa(dp657 +g4 +g5 +(g6 +(I0 +tp658 +g8 +tp659 +Rp660 +(I1 +(I4 +tp661 +g15 +I00 +S'\x00\x00\x00\x01' +p662 +tp663 +bsa(dp664 +g4 +g5 +(g6 +(I0 +tp665 +g8 +tp666 +Rp667 +(I1 +(I4 +tp668 +g15 +I00 +S'\x00\x01\x00\x00' +p669 +tp670 +bsa(dp671 +g4 +g5 +(g6 +(I0 +tp672 +g8 +tp673 +Rp674 +(I1 +(I4 +tp675 +g15 +I00 +S'\x00\x01\x00\x00' +p676 +tp677 +bsa(dp678 +g4 +g5 +(g6 +(I0 +tp679 +g8 +tp680 +Rp681 +(I1 +(I4 +tp682 +g15 +I00 +S'\x00\x01\x00\x00' +p683 +tp684 +bsa(dp685 +g4 +g5 +(g6 +(I0 +tp686 +g8 +tp687 +Rp688 +(I1 +(I4 +tp689 +g15 +I00 +S'\x00\x01\x00\x00' +p690 +tp691 +bsa(dp692 +g4 +g5 +(g6 +(I0 +tp693 +g8 +tp694 +Rp695 +(I1 +(I4 +tp696 +g15 +I00 +S'\x00\x01\x00\x00' +p697 +tp698 +bsa(dp699 +g4 +g5 +(g6 +(I0 +tp700 +g8 +tp701 +Rp702 +(I1 +(I4 +tp703 +g15 +I00 +S'\x01\x00\x00\x00' +p704 +tp705 +bsa(dp706 +g4 +g5 +(g6 +(I0 +tp707 +g8 +tp708 +Rp709 +(I1 +(I4 +tp710 +g15 +I00 +S'\x00\x00\x01\x00' +p711 +tp712 +bsa(dp713 +g4 +g5 +(g6 +(I0 +tp714 +g8 +tp715 +Rp716 +(I1 +(I4 +tp717 +g15 +I00 +S'\x00\x01\x00\x01' +p718 +tp719 +bsa(dp720 +g4 +g5 +(g6 +(I0 +tp721 +g8 +tp722 +Rp723 +(I1 +(I4 +tp724 +g15 +I00 +S'\x00\x00\x00\x00' +p725 +tp726 +bsa(dp727 +g4 +g5 +(g6 +(I0 +tp728 +g8 +tp729 +Rp730 +(I1 +(I4 +tp731 +g15 +I00 +S'\x01\x00\x00\x00' +p732 +tp733 +bsa(dp734 +g4 +g5 +(g6 +(I0 +tp735 +g8 +tp736 +Rp737 +(I1 +(I4 +tp738 +g15 +I00 +S'\x00\x01\x00\x00' +p739 +tp740 +bsa(dp741 +g4 +g5 +(g6 +(I0 +tp742 +g8 +tp743 +Rp744 +(I1 +(I4 +tp745 +g15 +I00 +S'\x00\x01\x01\x01' +p746 +tp747 +bsa(dp748 +g4 +g5 +(g6 +(I0 +tp749 +g8 +tp750 +Rp751 +(I1 +(I4 +tp752 +g15 +I00 +S'\x00\x01\x00\x00' +p753 +tp754 +bsa(dp755 +g4 +g5 +(g6 +(I0 +tp756 +g8 +tp757 +Rp758 +(I1 +(I4 +tp759 +g15 +I00 +S'\x00\x01\x00\x00' +p760 +tp761 +bsa(dp762 +g4 +g5 +(g6 +(I0 +tp763 +g8 +tp764 +Rp765 +(I1 +(I4 +tp766 +g15 +I00 +S'\x00\x01\x00\x01' +p767 +tp768 +bsa(dp769 +g4 +g5 +(g6 +(I0 +tp770 +g8 +tp771 +Rp772 +(I1 +(I4 +tp773 +g15 +I00 +S'\x00\x01\x00\x00' +p774 +tp775 +bsa(dp776 +g4 +g5 +(g6 +(I0 +tp777 +g8 +tp778 +Rp779 +(I1 +(I4 +tp780 +g15 +I00 +S'\x00\x01\x00\x01' +p781 +tp782 +bsa(dp783 +g4 +g5 +(g6 +(I0 +tp784 +g8 +tp785 +Rp786 +(I1 +(I4 +tp787 +g15 +I00 +S'\x00\x01\x00\x00' +p788 +tp789 +bsa(dp790 +g4 +g5 +(g6 +(I0 +tp791 +g8 +tp792 +Rp793 +(I1 +(I4 +tp794 +g15 +I00 +S'\x01\x00\x00\x00' +p795 +tp796 +bsa(dp797 +g4 +g5 +(g6 +(I0 +tp798 +g8 +tp799 +Rp800 +(I1 +(I4 +tp801 +g15 +I00 +S'\x00\x01\x00\x01' +p802 +tp803 +bsa(dp804 +g4 +g5 +(g6 +(I0 +tp805 +g8 +tp806 +Rp807 +(I1 +(I4 +tp808 +g15 +I00 +S'\x01\x00\x00\x00' +p809 +tp810 +bsa(dp811 +g4 +g5 +(g6 +(I0 +tp812 +g8 +tp813 +Rp814 +(I1 +(I4 +tp815 +g15 +I00 +S'\x00\x01\x00\x01' +p816 +tp817 +bsa(dp818 +g4 +g5 +(g6 +(I0 +tp819 +g8 +tp820 +Rp821 +(I1 +(I4 +tp822 +g15 +I00 +S'\x00\x00\x01\x00' +p823 +tp824 +bsa(dp825 +g4 +g5 +(g6 +(I0 +tp826 +g8 +tp827 +Rp828 +(I1 +(I4 +tp829 +g15 +I00 +S'\x00\x00\x00\x01' +p830 +tp831 +bsa(dp832 +g4 +g5 +(g6 +(I0 +tp833 +g8 +tp834 +Rp835 +(I1 +(I4 +tp836 +g15 +I00 +S'\x01\x00\x00\x00' +p837 +tp838 +bsa(dp839 +g4 +g5 +(g6 +(I0 +tp840 +g8 +tp841 +Rp842 +(I1 +(I4 +tp843 +g15 +I00 +S'\x00\x01\x00\x00' +p844 +tp845 +bsa(dp846 +g4 +g5 +(g6 +(I0 +tp847 +g8 +tp848 +Rp849 +(I1 +(I4 +tp850 +g15 +I00 +S'\x00\x00\x00\x01' +p851 +tp852 +bsa(dp853 +g4 +g5 +(g6 +(I0 +tp854 +g8 +tp855 +Rp856 +(I1 +(I4 +tp857 +g15 +I00 +S'\x00\x01\x00\x00' +p858 +tp859 +bsa(dp860 +g4 +g5 +(g6 +(I0 +tp861 +g8 +tp862 +Rp863 +(I1 +(I4 +tp864 +g15 +I00 +S'\x00\x00\x00\x01' +p865 +tp866 +bsa(dp867 +g4 +g5 +(g6 +(I0 +tp868 +g8 +tp869 +Rp870 +(I1 +(I4 +tp871 +g15 +I00 +S'\x00\x01\x00\x01' +p872 +tp873 +bsa(dp874 +g4 +g5 +(g6 +(I0 +tp875 +g8 +tp876 +Rp877 +(I1 +(I4 +tp878 +g15 +I00 +S'\x01\x00\x00\x00' +p879 +tp880 +bsa(dp881 +g4 +g5 +(g6 +(I0 +tp882 +g8 +tp883 +Rp884 +(I1 +(I4 +tp885 +g15 +I00 +S'\x00\x01\x00\x00' +p886 +tp887 +bsa(dp888 +g4 +g5 +(g6 +(I0 +tp889 +g8 +tp890 +Rp891 +(I1 +(I4 +tp892 +g15 +I00 +S'\x00\x01\x00\x01' +p893 +tp894 +bsa(dp895 +g4 +g5 +(g6 +(I0 +tp896 +g8 +tp897 +Rp898 +(I1 +(I4 +tp899 +g15 +I00 +S'\x00\x01\x00\x01' +p900 +tp901 +bsa(dp902 +g4 +g5 +(g6 +(I0 +tp903 +g8 +tp904 +Rp905 +(I1 +(I4 +tp906 +g15 +I00 +S'\x00\x01\x00\x00' +p907 +tp908 +bsa(dp909 +g4 +g5 +(g6 +(I0 +tp910 +g8 +tp911 +Rp912 +(I1 +(I4 +tp913 +g15 +I00 +S'\x01\x00\x01\x00' +p914 +tp915 +bsa(dp916 +g4 +g5 +(g6 +(I0 +tp917 +g8 +tp918 +Rp919 +(I1 +(I4 +tp920 +g15 +I00 +S'\x01\x00\x01\x00' +p921 +tp922 +bsa(dp923 +g4 +g5 +(g6 +(I0 +tp924 +g8 +tp925 +Rp926 +(I1 +(I4 +tp927 +g15 +I00 +S'\x00\x00\x00\x00' +p928 +tp929 +bsa(dp930 +g4 +g5 +(g6 +(I0 +tp931 +g8 +tp932 +Rp933 +(I1 +(I4 +tp934 +g15 +I00 +S'\x00\x00\x00\x00' +p935 +tp936 +bsa(dp937 +g4 +g5 +(g6 +(I0 +tp938 +g8 +tp939 +Rp940 +(I1 +(I4 +tp941 +g15 +I00 +S'\x01\x00\x01\x00' +p942 +tp943 +bsa(dp944 +g4 +g5 +(g6 +(I0 +tp945 +g8 +tp946 +Rp947 +(I1 +(I4 +tp948 +g15 +I00 +S'\x00\x01\x00\x01' +p949 +tp950 +bsa(dp951 +g4 +g5 +(g6 +(I0 +tp952 +g8 +tp953 +Rp954 +(I1 +(I4 +tp955 +g15 +I00 +S'\x00\x00\x01\x00' +p956 +tp957 +bsa(dp958 +g4 +g5 +(g6 +(I0 +tp959 +g8 +tp960 +Rp961 +(I1 +(I4 +tp962 +g15 +I00 +S'\x01\x00\x00\x00' +p963 +tp964 +bsa(dp965 +g4 +g5 +(g6 +(I0 +tp966 +g8 +tp967 +Rp968 +(I1 +(I4 +tp969 +g15 +I00 +S'\x00\x01\x00\x01' +p970 +tp971 +bsa(dp972 +g4 +g5 +(g6 +(I0 +tp973 +g8 +tp974 +Rp975 +(I1 +(I4 +tp976 +g15 +I00 +S'\x01\x00\x00\x00' +p977 +tp978 +bsa(dp979 +g4 +g5 +(g6 +(I0 +tp980 +g8 +tp981 +Rp982 +(I1 +(I4 +tp983 +g15 +I00 +S'\x01\x00\x01\x00' +p984 +tp985 +bsa(dp986 +g4 +g5 +(g6 +(I0 +tp987 +g8 +tp988 +Rp989 +(I1 +(I4 +tp990 +g15 +I00 +S'\x00\x01\x00\x01' +p991 +tp992 +bsa(dp993 +g4 +g5 +(g6 +(I0 +tp994 +g8 +tp995 +Rp996 +(I1 +(I4 +tp997 +g15 +I00 +S'\x01\x00\x00\x00' +p998 +tp999 +bsa(dp1000 +g4 +g5 +(g6 +(I0 +tp1001 +g8 +tp1002 +Rp1003 +(I1 +(I4 +tp1004 +g15 +I00 +S'\x01\x00\x00\x00' +p1005 +tp1006 +bsa(dp1007 +g4 +g5 +(g6 +(I0 +tp1008 +g8 +tp1009 +Rp1010 +(I1 +(I4 +tp1011 +g15 +I00 +S'\x01\x00\x00\x00' +p1012 +tp1013 +bsa(dp1014 +g4 +g5 +(g6 +(I0 +tp1015 +g8 +tp1016 +Rp1017 +(I1 +(I4 +tp1018 +g15 +I00 +S'\x00\x01\x00\x01' +p1019 +tp1020 +bsa(dp1021 +g4 +g5 +(g6 +(I0 +tp1022 +g8 +tp1023 +Rp1024 +(I1 +(I4 +tp1025 +g15 +I00 +S'\x00\x00\x00\x01' +p1026 +tp1027 +bsa(dp1028 +g4 +g5 +(g6 +(I0 +tp1029 +g8 +tp1030 +Rp1031 +(I1 +(I4 +tp1032 +g15 +I00 +S'\x00\x01\x00\x00' +p1033 +tp1034 +bsa(dp1035 +g4 +g5 +(g6 +(I0 +tp1036 +g8 +tp1037 +Rp1038 +(I1 +(I4 +tp1039 +g15 +I00 +S'\x00\x01\x00\x00' +p1040 +tp1041 +bsa(dp1042 +g4 +g5 +(g6 +(I0 +tp1043 +g8 +tp1044 +Rp1045 +(I1 +(I4 +tp1046 +g15 +I00 +S'\x00\x01\x00\x01' +p1047 +tp1048 +bsa(dp1049 +g4 +g5 +(g6 +(I0 +tp1050 +g8 +tp1051 +Rp1052 +(I1 +(I4 +tp1053 +g15 +I00 +S'\x00\x01\x00\x01' +p1054 +tp1055 +bsa(dp1056 +g4 +g5 +(g6 +(I0 +tp1057 +g8 +tp1058 +Rp1059 +(I1 +(I4 +tp1060 +g15 +I00 +S'\x01\x00\x01\x00' +p1061 +tp1062 +bsa(dp1063 +g4 +g5 +(g6 +(I0 +tp1064 +g8 +tp1065 +Rp1066 +(I1 +(I4 +tp1067 +g15 +I00 +S'\x00\x01\x00\x00' +p1068 +tp1069 +bsa(dp1070 +g4 +g5 +(g6 +(I0 +tp1071 +g8 +tp1072 +Rp1073 +(I1 +(I4 +tp1074 +g15 +I00 +S'\x01\x00\x00\x00' +p1075 +tp1076 +bsa(dp1077 +g4 +g5 +(g6 +(I0 +tp1078 +g8 +tp1079 +Rp1080 +(I1 +(I4 +tp1081 +g15 +I00 +S'\x01\x00\x01\x00' +p1082 +tp1083 +bsa(dp1084 +g4 +g5 +(g6 +(I0 +tp1085 +g8 +tp1086 +Rp1087 +(I1 +(I4 +tp1088 +g15 +I00 +S'\x00\x01\x00\x00' +p1089 +tp1090 +bsa(dp1091 +g4 +g5 +(g6 +(I0 +tp1092 +g8 +tp1093 +Rp1094 +(I1 +(I4 +tp1095 +g15 +I00 +S'\x01\x00\x01\x00' +p1096 +tp1097 +bsa(dp1098 +g4 +g5 +(g6 +(I0 +tp1099 +g8 +tp1100 +Rp1101 +(I1 +(I4 +tp1102 +g15 +I00 +S'\x01\x00\x01\x01' +p1103 +tp1104 +bsa(dp1105 +g4 +g5 +(g6 +(I0 +tp1106 +g8 +tp1107 +Rp1108 +(I1 +(I4 +tp1109 +g15 +I00 +S'\x00\x01\x00\x00' +p1110 +tp1111 +bsa(dp1112 +g4 +g5 +(g6 +(I0 +tp1113 +g8 +tp1114 +Rp1115 +(I1 +(I4 +tp1116 +g15 +I00 +S'\x01\x00\x01\x00' +p1117 +tp1118 +bsa(dp1119 +g4 +g5 +(g6 +(I0 +tp1120 +g8 +tp1121 +Rp1122 +(I1 +(I4 +tp1123 +g15 +I00 +S'\x01\x00\x00\x00' +p1124 +tp1125 +bsa(dp1126 +g4 +g5 +(g6 +(I0 +tp1127 +g8 +tp1128 +Rp1129 +(I1 +(I4 +tp1130 +g15 +I00 +S'\x00\x00\x00\x00' +p1131 +tp1132 +bsa(dp1133 +g4 +g5 +(g6 +(I0 +tp1134 +g8 +tp1135 +Rp1136 +(I1 +(I4 +tp1137 +g15 +I00 +S'\x00\x01\x00\x00' +p1138 +tp1139 +bsa(dp1140 +g4 +g5 +(g6 +(I0 +tp1141 +g8 +tp1142 +Rp1143 +(I1 +(I4 +tp1144 +g15 +I00 +S'\x00\x00\x01\x00' +p1145 +tp1146 +bsa(dp1147 +g4 +g5 +(g6 +(I0 +tp1148 +g8 +tp1149 +Rp1150 +(I1 +(I4 +tp1151 +g15 +I00 +S'\x01\x00\x00\x00' +p1152 +tp1153 +bsa(dp1154 +g4 +g5 +(g6 +(I0 +tp1155 +g8 +tp1156 +Rp1157 +(I1 +(I4 +tp1158 +g15 +I00 +S'\x01\x01\x00\x00' +p1159 +tp1160 +bsa(dp1161 +g4 +g5 +(g6 +(I0 +tp1162 +g8 +tp1163 +Rp1164 +(I1 +(I4 +tp1165 +g15 +I00 +S'\x01\x00\x00\x00' +p1166 +tp1167 +bsa(dp1168 +g4 +g5 +(g6 +(I0 +tp1169 +g8 +tp1170 +Rp1171 +(I1 +(I4 +tp1172 +g15 +I00 +S'\x00\x01\x00\x00' +p1173 +tp1174 +bsa(dp1175 +g4 +g5 +(g6 +(I0 +tp1176 +g8 +tp1177 +Rp1178 +(I1 +(I4 +tp1179 +g15 +I00 +S'\x00\x00\x01\x00' +p1180 +tp1181 +bsa(dp1182 +g4 +g5 +(g6 +(I0 +tp1183 +g8 +tp1184 +Rp1185 +(I1 +(I4 +tp1186 +g15 +I00 +S'\x00\x01\x01\x01' +p1187 +tp1188 +bsa(dp1189 +g4 +g5 +(g6 +(I0 +tp1190 +g8 +tp1191 +Rp1192 +(I1 +(I4 +tp1193 +g15 +I00 +S'\x00\x01\x00\x00' +p1194 +tp1195 +bsa(dp1196 +g4 +g5 +(g6 +(I0 +tp1197 +g8 +tp1198 +Rp1199 +(I1 +(I4 +tp1200 +g15 +I00 +S'\x00\x00\x00\x01' +p1201 +tp1202 +bsa(dp1203 +g4 +g5 +(g6 +(I0 +tp1204 +g8 +tp1205 +Rp1206 +(I1 +(I4 +tp1207 +g15 +I00 +S'\x00\x01\x00\x00' +p1208 +tp1209 +bsa(dp1210 +g4 +g5 +(g6 +(I0 +tp1211 +g8 +tp1212 +Rp1213 +(I1 +(I4 +tp1214 +g15 +I00 +S'\x00\x01\x00\x00' +p1215 +tp1216 +bsa(dp1217 +g4 +g5 +(g6 +(I0 +tp1218 +g8 +tp1219 +Rp1220 +(I1 +(I4 +tp1221 +g15 +I00 +S'\x01\x00\x00\x00' +p1222 +tp1223 +bsa(dp1224 +g4 +g5 +(g6 +(I0 +tp1225 +g8 +tp1226 +Rp1227 +(I1 +(I4 +tp1228 +g15 +I00 +S'\x00\x01\x00\x01' +p1229 +tp1230 +bsa(dp1231 +g4 +g5 +(g6 +(I0 +tp1232 +g8 +tp1233 +Rp1234 +(I1 +(I4 +tp1235 +g15 +I00 +S'\x00\x00\x01\x00' +p1236 +tp1237 +bsa(dp1238 +g4 +g5 +(g6 +(I0 +tp1239 +g8 +tp1240 +Rp1241 +(I1 +(I4 +tp1242 +g15 +I00 +S'\x01\x00\x00\x00' +p1243 +tp1244 +bsa(dp1245 +g4 +g5 +(g6 +(I0 +tp1246 +g8 +tp1247 +Rp1248 +(I1 +(I4 +tp1249 +g15 +I00 +S'\x00\x00\x00\x01' +p1250 +tp1251 +bsa(dp1252 +g4 +g5 +(g6 +(I0 +tp1253 +g8 +tp1254 +Rp1255 +(I1 +(I4 +tp1256 +g15 +I00 +S'\x01\x00\x01\x00' +p1257 +tp1258 +bsa(dp1259 +g4 +g5 +(g6 +(I0 +tp1260 +g8 +tp1261 +Rp1262 +(I1 +(I4 +tp1263 +g15 +I00 +S'\x00\x00\x00\x00' +p1264 +tp1265 +bsa(dp1266 +g4 +g5 +(g6 +(I0 +tp1267 +g8 +tp1268 +Rp1269 +(I1 +(I4 +tp1270 +g15 +I00 +S'\x00\x01\x00\x01' +p1271 +tp1272 +bsa(dp1273 +g4 +g5 +(g6 +(I0 +tp1274 +g8 +tp1275 +Rp1276 +(I1 +(I4 +tp1277 +g15 +I00 +S'\x00\x01\x00\x01' +p1278 +tp1279 +bsa(dp1280 +g4 +g5 +(g6 +(I0 +tp1281 +g8 +tp1282 +Rp1283 +(I1 +(I4 +tp1284 +g15 +I00 +S'\x00\x00\x00\x01' +p1285 +tp1286 +bsa(dp1287 +g4 +g5 +(g6 +(I0 +tp1288 +g8 +tp1289 +Rp1290 +(I1 +(I4 +tp1291 +g15 +I00 +S'\x00\x01\x00\x01' +p1292 +tp1293 +bsa(dp1294 +g4 +g5 +(g6 +(I0 +tp1295 +g8 +tp1296 +Rp1297 +(I1 +(I4 +tp1298 +g15 +I00 +S'\x00\x01\x00\x00' +p1299 +tp1300 +bsa(dp1301 +g4 +g5 +(g6 +(I0 +tp1302 +g8 +tp1303 +Rp1304 +(I1 +(I4 +tp1305 +g15 +I00 +S'\x00\x01\x00\x01' +p1306 +tp1307 +bsa(dp1308 +g4 +g5 +(g6 +(I0 +tp1309 +g8 +tp1310 +Rp1311 +(I1 +(I4 +tp1312 +g15 +I00 +S'\x00\x00\x01\x00' +p1313 +tp1314 +bsa(dp1315 +g4 +g5 +(g6 +(I0 +tp1316 +g8 +tp1317 +Rp1318 +(I1 +(I4 +tp1319 +g15 +I00 +S'\x00\x01\x00\x01' +p1320 +tp1321 +bsa(dp1322 +g4 +g5 +(g6 +(I0 +tp1323 +g8 +tp1324 +Rp1325 +(I1 +(I4 +tp1326 +g15 +I00 +S'\x00\x01\x00\x01' +p1327 +tp1328 +bsa(dp1329 +g4 +g5 +(g6 +(I0 +tp1330 +g8 +tp1331 +Rp1332 +(I1 +(I4 +tp1333 +g15 +I00 +S'\x00\x00\x00\x00' +p1334 +tp1335 +bsa(dp1336 +g4 +g5 +(g6 +(I0 +tp1337 +g8 +tp1338 +Rp1339 +(I1 +(I4 +tp1340 +g15 +I00 +S'\x00\x00\x00\x01' +p1341 +tp1342 +bsa(dp1343 +g4 +g5 +(g6 +(I0 +tp1344 +g8 +tp1345 +Rp1346 +(I1 +(I4 +tp1347 +g15 +I00 +S'\x00\x01\x00\x00' +p1348 +tp1349 +bsa(dp1350 +g4 +g5 +(g6 +(I0 +tp1351 +g8 +tp1352 +Rp1353 +(I1 +(I4 +tp1354 +g15 +I00 +S'\x00\x01\x00\x01' +p1355 +tp1356 +bsa(dp1357 +g4 +g5 +(g6 +(I0 +tp1358 +g8 +tp1359 +Rp1360 +(I1 +(I4 +tp1361 +g15 +I00 +S'\x00\x00\x00\x01' +p1362 +tp1363 +bsa(dp1364 +g4 +g5 +(g6 +(I0 +tp1365 +g8 +tp1366 +Rp1367 +(I1 +(I4 +tp1368 +g15 +I00 +S'\x00\x01\x00\x00' +p1369 +tp1370 +bsa(dp1371 +g4 +g5 +(g6 +(I0 +tp1372 +g8 +tp1373 +Rp1374 +(I1 +(I4 +tp1375 +g15 +I00 +S'\x00\x01\x00\x00' +p1376 +tp1377 +bsa(dp1378 +g4 +g5 +(g6 +(I0 +tp1379 +g8 +tp1380 +Rp1381 +(I1 +(I4 +tp1382 +g15 +I00 +S'\x00\x01\x00\x01' +p1383 +tp1384 +bsa(dp1385 +g4 +g5 +(g6 +(I0 +tp1386 +g8 +tp1387 +Rp1388 +(I1 +(I4 +tp1389 +g15 +I00 +S'\x00\x01\x00\x01' +p1390 +tp1391 +bsa(dp1392 +g4 +g5 +(g6 +(I0 +tp1393 +g8 +tp1394 +Rp1395 +(I1 +(I4 +tp1396 +g15 +I00 +S'\x00\x01\x00\x01' +p1397 +tp1398 +bsa(dp1399 +g4 +g5 +(g6 +(I0 +tp1400 +g8 +tp1401 +Rp1402 +(I1 +(I4 +tp1403 +g15 +I00 +S'\x00\x01\x00\x01' +p1404 +tp1405 +bsa(dp1406 +g4 +g5 +(g6 +(I0 +tp1407 +g8 +tp1408 +Rp1409 +(I1 +(I4 +tp1410 +g15 +I00 +S'\x00\x01\x00\x00' +p1411 +tp1412 +bsa(dp1413 +g4 +g5 +(g6 +(I0 +tp1414 +g8 +tp1415 +Rp1416 +(I1 +(I4 +tp1417 +g15 +I00 +S'\x00\x01\x00\x01' +p1418 +tp1419 +bsa(dp1420 +g4 +g5 +(g6 +(I0 +tp1421 +g8 +tp1422 +Rp1423 +(I1 +(I4 +tp1424 +g15 +I00 +S'\x00\x01\x00\x00' +p1425 +tp1426 +bsa(dp1427 +g4 +g5 +(g6 +(I0 +tp1428 +g8 +tp1429 +Rp1430 +(I1 +(I4 +tp1431 +g15 +I00 +S'\x00\x01\x00\x01' +p1432 +tp1433 +bsa(dp1434 +g4 +g5 +(g6 +(I0 +tp1435 +g8 +tp1436 +Rp1437 +(I1 +(I4 +tp1438 +g15 +I00 +S'\x00\x00\x00\x01' +p1439 +tp1440 +bsa(dp1441 +g4 +g5 +(g6 +(I0 +tp1442 +g8 +tp1443 +Rp1444 +(I1 +(I4 +tp1445 +g15 +I00 +S'\x00\x01\x00\x00' +p1446 +tp1447 +bsa(dp1448 +g4 +g5 +(g6 +(I0 +tp1449 +g8 +tp1450 +Rp1451 +(I1 +(I4 +tp1452 +g15 +I00 +S'\x00\x01\x00\x00' +p1453 +tp1454 +bsa(dp1455 +g4 +g5 +(g6 +(I0 +tp1456 +g8 +tp1457 +Rp1458 +(I1 +(I4 +tp1459 +g15 +I00 +S'\x01\x01\x00\x01' +p1460 +tp1461 +bsa(dp1462 +g4 +g5 +(g6 +(I0 +tp1463 +g8 +tp1464 +Rp1465 +(I1 +(I4 +tp1466 +g15 +I00 +S'\x00\x01\x00\x01' +p1467 +tp1468 +bsa(dp1469 +g4 +g5 +(g6 +(I0 +tp1470 +g8 +tp1471 +Rp1472 +(I1 +(I4 +tp1473 +g15 +I00 +S'\x00\x01\x00\x00' +p1474 +tp1475 +bsa(dp1476 +g4 +g5 +(g6 +(I0 +tp1477 +g8 +tp1478 +Rp1479 +(I1 +(I4 +tp1480 +g15 +I00 +S'\x01\x00\x00\x00' +p1481 +tp1482 +bsa(dp1483 +g4 +g5 +(g6 +(I0 +tp1484 +g8 +tp1485 +Rp1486 +(I1 +(I4 +tp1487 +g15 +I00 +S'\x01\x00\x01\x00' +p1488 +tp1489 +bsa(dp1490 +g4 +g5 +(g6 +(I0 +tp1491 +g8 +tp1492 +Rp1493 +(I1 +(I4 +tp1494 +g15 +I00 +S'\x00\x00\x01\x00' +p1495 +tp1496 +bsa(dp1497 +g4 +g5 +(g6 +(I0 +tp1498 +g8 +tp1499 +Rp1500 +(I1 +(I4 +tp1501 +g15 +I00 +S'\x00\x01\x00\x00' +p1502 +tp1503 +bsa(dp1504 +g4 +g5 +(g6 +(I0 +tp1505 +g8 +tp1506 +Rp1507 +(I1 +(I4 +tp1508 +g15 +I00 +S'\x00\x01\x00\x01' +p1509 +tp1510 +bsa(dp1511 +g4 +g5 +(g6 +(I0 +tp1512 +g8 +tp1513 +Rp1514 +(I1 +(I4 +tp1515 +g15 +I00 +S'\x00\x00\x00\x00' +p1516 +tp1517 +bsa(dp1518 +g4 +g5 +(g6 +(I0 +tp1519 +g8 +tp1520 +Rp1521 +(I1 +(I4 +tp1522 +g15 +I00 +S'\x00\x00\x00\x01' +p1523 +tp1524 +bsa(dp1525 +g4 +g5 +(g6 +(I0 +tp1526 +g8 +tp1527 +Rp1528 +(I1 +(I4 +tp1529 +g15 +I00 +S'\x00\x00\x00\x01' +p1530 +tp1531 +bsa(dp1532 +g4 +g5 +(g6 +(I0 +tp1533 +g8 +tp1534 +Rp1535 +(I1 +(I4 +tp1536 +g15 +I00 +S'\x01\x00\x01\x00' +p1537 +tp1538 +bsa(dp1539 +g4 +g5 +(g6 +(I0 +tp1540 +g8 +tp1541 +Rp1542 +(I1 +(I4 +tp1543 +g15 +I00 +S'\x01\x00\x00\x01' +p1544 +tp1545 +bsa(dp1546 +g4 +g5 +(g6 +(I0 +tp1547 +g8 +tp1548 +Rp1549 +(I1 +(I4 +tp1550 +g15 +I00 +S'\x00\x01\x00\x01' +p1551 +tp1552 +bsa(dp1553 +g4 +g5 +(g6 +(I0 +tp1554 +g8 +tp1555 +Rp1556 +(I1 +(I4 +tp1557 +g15 +I00 +S'\x01\x00\x01\x00' +p1558 +tp1559 +bsa(dp1560 +g4 +g5 +(g6 +(I0 +tp1561 +g8 +tp1562 +Rp1563 +(I1 +(I4 +tp1564 +g15 +I00 +S'\x00\x01\x00\x01' +p1565 +tp1566 +bsa(dp1567 +g4 +g5 +(g6 +(I0 +tp1568 +g8 +tp1569 +Rp1570 +(I1 +(I4 +tp1571 +g15 +I00 +S'\x00\x01\x00\x00' +p1572 +tp1573 +bsa(dp1574 +g4 +g5 +(g6 +(I0 +tp1575 +g8 +tp1576 +Rp1577 +(I1 +(I4 +tp1578 +g15 +I00 +S'\x00\x01\x00\x00' +p1579 +tp1580 +bsa(dp1581 +g4 +g5 +(g6 +(I0 +tp1582 +g8 +tp1583 +Rp1584 +(I1 +(I4 +tp1585 +g15 +I00 +S'\x00\x01\x00\x01' +p1586 +tp1587 +bsa(dp1588 +g4 +g5 +(g6 +(I0 +tp1589 +g8 +tp1590 +Rp1591 +(I1 +(I4 +tp1592 +g15 +I00 +S'\x00\x01\x00\x01' +p1593 +tp1594 +bsa(dp1595 +g4 +g5 +(g6 +(I0 +tp1596 +g8 +tp1597 +Rp1598 +(I1 +(I4 +tp1599 +g15 +I00 +S'\x00\x01\x00\x01' +p1600 +tp1601 +bsa(dp1602 +g4 +g5 +(g6 +(I0 +tp1603 +g8 +tp1604 +Rp1605 +(I1 +(I4 +tp1606 +g15 +I00 +S'\x00\x01\x00\x00' +p1607 +tp1608 +bsa(dp1609 +g4 +g5 +(g6 +(I0 +tp1610 +g8 +tp1611 +Rp1612 +(I1 +(I4 +tp1613 +g15 +I00 +S'\x00\x00\x00\x00' +p1614 +tp1615 +bsa(dp1616 +g4 +g5 +(g6 +(I0 +tp1617 +g8 +tp1618 +Rp1619 +(I1 +(I4 +tp1620 +g15 +I00 +S'\x00\x01\x00\x00' +p1621 +tp1622 +bsa(dp1623 +g4 +g5 +(g6 +(I0 +tp1624 +g8 +tp1625 +Rp1626 +(I1 +(I4 +tp1627 +g15 +I00 +S'\x01\x00\x00\x00' +p1628 +tp1629 +bsa(dp1630 +g4 +g5 +(g6 +(I0 +tp1631 +g8 +tp1632 +Rp1633 +(I1 +(I4 +tp1634 +g15 +I00 +S'\x00\x00\x01\x00' +p1635 +tp1636 +bsa(dp1637 +g4 +g5 +(g6 +(I0 +tp1638 +g8 +tp1639 +Rp1640 +(I1 +(I4 +tp1641 +g15 +I00 +S'\x00\x01\x00\x00' +p1642 +tp1643 +bsa(dp1644 +g4 +g5 +(g6 +(I0 +tp1645 +g8 +tp1646 +Rp1647 +(I1 +(I4 +tp1648 +g15 +I00 +S'\x01\x00\x01\x00' +p1649 +tp1650 +bsa(dp1651 +g4 +g5 +(g6 +(I0 +tp1652 +g8 +tp1653 +Rp1654 +(I1 +(I4 +tp1655 +g15 +I00 +S'\x00\x01\x00\x01' +p1656 +tp1657 +bsa(dp1658 +g4 +g5 +(g6 +(I0 +tp1659 +g8 +tp1660 +Rp1661 +(I1 +(I4 +tp1662 +g15 +I00 +S'\x00\x01\x00\x00' +p1663 +tp1664 +bsa(dp1665 +g4 +g5 +(g6 +(I0 +tp1666 +g8 +tp1667 +Rp1668 +(I1 +(I4 +tp1669 +g15 +I00 +S'\x00\x01\x00\x00' +p1670 +tp1671 +bsa(dp1672 +g4 +g5 +(g6 +(I0 +tp1673 +g8 +tp1674 +Rp1675 +(I1 +(I4 +tp1676 +g15 +I00 +S'\x00\x01\x00\x00' +p1677 +tp1678 +bsa(dp1679 +g4 +g5 +(g6 +(I0 +tp1680 +g8 +tp1681 +Rp1682 +(I1 +(I4 +tp1683 +g15 +I00 +S'\x00\x01\x01\x00' +p1684 +tp1685 +bsa(dp1686 +g4 +g5 +(g6 +(I0 +tp1687 +g8 +tp1688 +Rp1689 +(I1 +(I4 +tp1690 +g15 +I00 +S'\x00\x00\x00\x01' +p1691 +tp1692 +bsa(dp1693 +g4 +g5 +(g6 +(I0 +tp1694 +g8 +tp1695 +Rp1696 +(I1 +(I4 +tp1697 +g15 +I00 +S'\x00\x01\x00\x01' +p1698 +tp1699 +bsa(dp1700 +g4 +g5 +(g6 +(I0 +tp1701 +g8 +tp1702 +Rp1703 +(I1 +(I4 +tp1704 +g15 +I00 +S'\x00\x01\x00\x00' +p1705 +tp1706 +bsa(dp1707 +g4 +g5 +(g6 +(I0 +tp1708 +g8 +tp1709 +Rp1710 +(I1 +(I4 +tp1711 +g15 +I00 +S'\x00\x01\x00\x01' +p1712 +tp1713 +bsa(dp1714 +g4 +g5 +(g6 +(I0 +tp1715 +g8 +tp1716 +Rp1717 +(I1 +(I4 +tp1718 +g15 +I00 +S'\x00\x01\x00\x00' +p1719 +tp1720 +bsa(dp1721 +g4 +g5 +(g6 +(I0 +tp1722 +g8 +tp1723 +Rp1724 +(I1 +(I4 +tp1725 +g15 +I00 +S'\x01\x01\x00\x00' +p1726 +tp1727 +bsa(dp1728 +g4 +g5 +(g6 +(I0 +tp1729 +g8 +tp1730 +Rp1731 +(I1 +(I4 +tp1732 +g15 +I00 +S'\x00\x01\x00\x00' +p1733 +tp1734 +bsa(dp1735 +g4 +g5 +(g6 +(I0 +tp1736 +g8 +tp1737 +Rp1738 +(I1 +(I4 +tp1739 +g15 +I00 +S'\x00\x00\x00\x01' +p1740 +tp1741 +bsa(dp1742 +g4 +g5 +(g6 +(I0 +tp1743 +g8 +tp1744 +Rp1745 +(I1 +(I4 +tp1746 +g15 +I00 +S'\x00\x01\x00\x00' +p1747 +tp1748 +bsa(dp1749 +g4 +g5 +(g6 +(I0 +tp1750 +g8 +tp1751 +Rp1752 +(I1 +(I4 +tp1753 +g15 +I00 +S'\x00\x01\x00\x00' +p1754 +tp1755 +bsa(dp1756 +g4 +g5 +(g6 +(I0 +tp1757 +g8 +tp1758 +Rp1759 +(I1 +(I4 +tp1760 +g15 +I00 +S'\x00\x01\x00\x00' +p1761 +tp1762 +bsa(dp1763 +g4 +g5 +(g6 +(I0 +tp1764 +g8 +tp1765 +Rp1766 +(I1 +(I4 +tp1767 +g15 +I00 +S'\x01\x00\x00\x00' +p1768 +tp1769 +bsa(dp1770 +g4 +g5 +(g6 +(I0 +tp1771 +g8 +tp1772 +Rp1773 +(I1 +(I4 +tp1774 +g15 +I00 +S'\x00\x01\x00\x00' +p1775 +tp1776 +bsa(dp1777 +g4 +g5 +(g6 +(I0 +tp1778 +g8 +tp1779 +Rp1780 +(I1 +(I4 +tp1781 +g15 +I00 +S'\x00\x01\x00\x00' +p1782 +tp1783 +bsa(dp1784 +g4 +g5 +(g6 +(I0 +tp1785 +g8 +tp1786 +Rp1787 +(I1 +(I4 +tp1788 +g15 +I00 +S'\x00\x01\x00\x00' +p1789 +tp1790 +bsa(dp1791 +g4 +g5 +(g6 +(I0 +tp1792 +g8 +tp1793 +Rp1794 +(I1 +(I4 +tp1795 +g15 +I00 +S'\x01\x00\x00\x00' +p1796 +tp1797 +bsa(dp1798 +g4 +g5 +(g6 +(I0 +tp1799 +g8 +tp1800 +Rp1801 +(I1 +(I4 +tp1802 +g15 +I00 +S'\x00\x01\x00\x00' +p1803 +tp1804 +bsa(dp1805 +g4 +g5 +(g6 +(I0 +tp1806 +g8 +tp1807 +Rp1808 +(I1 +(I4 +tp1809 +g15 +I00 +S'\x00\x01\x00\x01' +p1810 +tp1811 +bsa(dp1812 +g4 +g5 +(g6 +(I0 +tp1813 +g8 +tp1814 +Rp1815 +(I1 +(I4 +tp1816 +g15 +I00 +S'\x00\x01\x00\x00' +p1817 +tp1818 +bsa(dp1819 +g4 +g5 +(g6 +(I0 +tp1820 +g8 +tp1821 +Rp1822 +(I1 +(I4 +tp1823 +g15 +I00 +S'\x00\x01\x00\x01' +p1824 +tp1825 +bsa(dp1826 +g4 +g5 +(g6 +(I0 +tp1827 +g8 +tp1828 +Rp1829 +(I1 +(I4 +tp1830 +g15 +I00 +S'\x01\x00\x00\x00' +p1831 +tp1832 +bsa(dp1833 +g4 +g5 +(g6 +(I0 +tp1834 +g8 +tp1835 +Rp1836 +(I1 +(I4 +tp1837 +g15 +I00 +S'\x00\x01\x00\x00' +p1838 +tp1839 +bsa(dp1840 +g4 +g5 +(g6 +(I0 +tp1841 +g8 +tp1842 +Rp1843 +(I1 +(I4 +tp1844 +g15 +I00 +S'\x00\x01\x00\x00' +p1845 +tp1846 +bsa(dp1847 +g4 +g5 +(g6 +(I0 +tp1848 +g8 +tp1849 +Rp1850 +(I1 +(I4 +tp1851 +g15 +I00 +S'\x00\x01\x00\x01' +p1852 +tp1853 +bsa(dp1854 +g4 +g5 +(g6 +(I0 +tp1855 +g8 +tp1856 +Rp1857 +(I1 +(I4 +tp1858 +g15 +I00 +S'\x00\x01\x00\x01' +p1859 +tp1860 +bsa(dp1861 +g4 +g5 +(g6 +(I0 +tp1862 +g8 +tp1863 +Rp1864 +(I1 +(I4 +tp1865 +g15 +I00 +S'\x01\x00\x01\x00' +p1866 +tp1867 +bsa(dp1868 +g4 +g5 +(g6 +(I0 +tp1869 +g8 +tp1870 +Rp1871 +(I1 +(I4 +tp1872 +g15 +I00 +S'\x00\x01\x00\x00' +p1873 +tp1874 +bsa(dp1875 +g4 +g5 +(g6 +(I0 +tp1876 +g8 +tp1877 +Rp1878 +(I1 +(I4 +tp1879 +g15 +I00 +S'\x00\x00\x00\x00' +p1880 +tp1881 +bsa(dp1882 +g4 +g5 +(g6 +(I0 +tp1883 +g8 +tp1884 +Rp1885 +(I1 +(I4 +tp1886 +g15 +I00 +S'\x00\x00\x01\x00' +p1887 +tp1888 +bsa(dp1889 +g4 +g5 +(g6 +(I0 +tp1890 +g8 +tp1891 +Rp1892 +(I1 +(I4 +tp1893 +g15 +I00 +S'\x00\x01\x00\x01' +p1894 +tp1895 +bsa(dp1896 +g4 +g5 +(g6 +(I0 +tp1897 +g8 +tp1898 +Rp1899 +(I1 +(I4 +tp1900 +g15 +I00 +S'\x01\x00\x01\x00' +p1901 +tp1902 +bsa(dp1903 +g4 +g5 +(g6 +(I0 +tp1904 +g8 +tp1905 +Rp1906 +(I1 +(I4 +tp1907 +g15 +I00 +S'\x00\x01\x00\x01' +p1908 +tp1909 +bsa(dp1910 +g4 +g5 +(g6 +(I0 +tp1911 +g8 +tp1912 +Rp1913 +(I1 +(I4 +tp1914 +g15 +I00 +S'\x00\x01\x00\x00' +p1915 +tp1916 +bsa(dp1917 +g4 +g5 +(g6 +(I0 +tp1918 +g8 +tp1919 +Rp1920 +(I1 +(I4 +tp1921 +g15 +I00 +S'\x00\x01\x01\x01' +p1922 +tp1923 +bsa(dp1924 +g4 +g5 +(g6 +(I0 +tp1925 +g8 +tp1926 +Rp1927 +(I1 +(I4 +tp1928 +g15 +I00 +S'\x00\x01\x00\x01' +p1929 +tp1930 +bsa(dp1931 +g4 +g5 +(g6 +(I0 +tp1932 +g8 +tp1933 +Rp1934 +(I1 +(I4 +tp1935 +g15 +I00 +S'\x00\x01\x00\x00' +p1936 +tp1937 +bsa(dp1938 +g4 +g5 +(g6 +(I0 +tp1939 +g8 +tp1940 +Rp1941 +(I1 +(I4 +tp1942 +g15 +I00 +S'\x00\x01\x00\x00' +p1943 +tp1944 +bsa(dp1945 +g4 +g5 +(g6 +(I0 +tp1946 +g8 +tp1947 +Rp1948 +(I1 +(I4 +tp1949 +g15 +I00 +S'\x00\x00\x01\x00' +p1950 +tp1951 +bsa(dp1952 +g4 +g5 +(g6 +(I0 +tp1953 +g8 +tp1954 +Rp1955 +(I1 +(I4 +tp1956 +g15 +I00 +S'\x01\x00\x00\x00' +p1957 +tp1958 +bsa(dp1959 +g4 +g5 +(g6 +(I0 +tp1960 +g8 +tp1961 +Rp1962 +(I1 +(I4 +tp1963 +g15 +I00 +S'\x00\x00\x01\x00' +p1964 +tp1965 +bsa(dp1966 +g4 +g5 +(g6 +(I0 +tp1967 +g8 +tp1968 +Rp1969 +(I1 +(I4 +tp1970 +g15 +I00 +S'\x00\x01\x00\x01' +p1971 +tp1972 +bsa(dp1973 +g4 +g5 +(g6 +(I0 +tp1974 +g8 +tp1975 +Rp1976 +(I1 +(I4 +tp1977 +g15 +I00 +S'\x01\x00\x00\x00' +p1978 +tp1979 +bsa(dp1980 +g4 +g5 +(g6 +(I0 +tp1981 +g8 +tp1982 +Rp1983 +(I1 +(I4 +tp1984 +g15 +I00 +S'\x00\x00\x00\x01' +p1985 +tp1986 +bsa(dp1987 +g4 +g5 +(g6 +(I0 +tp1988 +g8 +tp1989 +Rp1990 +(I1 +(I4 +tp1991 +g15 +I00 +S'\x01\x00\x00\x00' +p1992 +tp1993 +bsa(dp1994 +g4 +g5 +(g6 +(I0 +tp1995 +g8 +tp1996 +Rp1997 +(I1 +(I4 +tp1998 +g15 +I00 +S'\x00\x00\x01\x00' +p1999 +tp2000 +bsa(dp2001 +g4 +g5 +(g6 +(I0 +tp2002 +g8 +tp2003 +Rp2004 +(I1 +(I4 +tp2005 +g15 +I00 +S'\x00\x01\x00\x00' +p2006 +tp2007 +bsa(dp2008 +g4 +g5 +(g6 +(I0 +tp2009 +g8 +tp2010 +Rp2011 +(I1 +(I4 +tp2012 +g15 +I00 +S'\x00\x01\x00\x00' +p2013 +tp2014 +bsa(dp2015 +g4 +g5 +(g6 +(I0 +tp2016 +g8 +tp2017 +Rp2018 +(I1 +(I4 +tp2019 +g15 +I00 +S'\x01\x00\x00\x00' +p2020 +tp2021 +bsa(dp2022 +g4 +g5 +(g6 +(I0 +tp2023 +g8 +tp2024 +Rp2025 +(I1 +(I4 +tp2026 +g15 +I00 +S'\x01\x00\x01\x00' +p2027 +tp2028 +bsa(dp2029 +g4 +g5 +(g6 +(I0 +tp2030 +g8 +tp2031 +Rp2032 +(I1 +(I4 +tp2033 +g15 +I00 +S'\x01\x00\x00\x00' +p2034 +tp2035 +bsa(dp2036 +g4 +g5 +(g6 +(I0 +tp2037 +g8 +tp2038 +Rp2039 +(I1 +(I4 +tp2040 +g15 +I00 +S'\x00\x00\x00\x00' +p2041 +tp2042 +bsa(dp2043 +g4 +g5 +(g6 +(I0 +tp2044 +g8 +tp2045 +Rp2046 +(I1 +(I4 +tp2047 +g15 +I00 +S'\x00\x01\x00\x01' +p2048 +tp2049 +bsa(dp2050 +g4 +g5 +(g6 +(I0 +tp2051 +g8 +tp2052 +Rp2053 +(I1 +(I4 +tp2054 +g15 +I00 +S'\x00\x00\x01\x00' +p2055 +tp2056 +bsa(dp2057 +g4 +g5 +(g6 +(I0 +tp2058 +g8 +tp2059 +Rp2060 +(I1 +(I4 +tp2061 +g15 +I00 +S'\x00\x00\x01\x00' +p2062 +tp2063 +bsa(dp2064 +g4 +g5 +(g6 +(I0 +tp2065 +g8 +tp2066 +Rp2067 +(I1 +(I4 +tp2068 +g15 +I00 +S'\x01\x00\x00\x00' +p2069 +tp2070 +bsa(dp2071 +g4 +g5 +(g6 +(I0 +tp2072 +g8 +tp2073 +Rp2074 +(I1 +(I4 +tp2075 +g15 +I00 +S'\x00\x01\x00\x00' +p2076 +tp2077 +bsa(dp2078 +g4 +g5 +(g6 +(I0 +tp2079 +g8 +tp2080 +Rp2081 +(I1 +(I4 +tp2082 +g15 +I00 +S'\x00\x01\x00\x01' +p2083 +tp2084 +bsa(dp2085 +g4 +g5 +(g6 +(I0 +tp2086 +g8 +tp2087 +Rp2088 +(I1 +(I4 +tp2089 +g15 +I00 +S'\x01\x00\x00\x00' +p2090 +tp2091 +bsa(dp2092 +g4 +g5 +(g6 +(I0 +tp2093 +g8 +tp2094 +Rp2095 +(I1 +(I4 +tp2096 +g15 +I00 +S'\x01\x00\x01\x00' +p2097 +tp2098 +bsa(dp2099 +g4 +g5 +(g6 +(I0 +tp2100 +g8 +tp2101 +Rp2102 +(I1 +(I4 +tp2103 +g15 +I00 +S'\x01\x00\x01\x00' +p2104 +tp2105 +bsa(dp2106 +g4 +g5 +(g6 +(I0 +tp2107 +g8 +tp2108 +Rp2109 +(I1 +(I4 +tp2110 +g15 +I00 +S'\x00\x01\x00\x00' +p2111 +tp2112 +bsa(dp2113 +g4 +g5 +(g6 +(I0 +tp2114 +g8 +tp2115 +Rp2116 +(I1 +(I4 +tp2117 +g15 +I00 +S'\x00\x01\x00\x00' +p2118 +tp2119 +bsa(dp2120 +g4 +g5 +(g6 +(I0 +tp2121 +g8 +tp2122 +Rp2123 +(I1 +(I4 +tp2124 +g15 +I00 +S'\x00\x01\x00\x00' +p2125 +tp2126 +bsa(dp2127 +g4 +g5 +(g6 +(I0 +tp2128 +g8 +tp2129 +Rp2130 +(I1 +(I4 +tp2131 +g15 +I00 +S'\x00\x01\x00\x00' +p2132 +tp2133 +bsa(dp2134 +g4 +g5 +(g6 +(I0 +tp2135 +g8 +tp2136 +Rp2137 +(I1 +(I4 +tp2138 +g15 +I00 +S'\x00\x01\x00\x00' +p2139 +tp2140 +bsa(dp2141 +g4 +g5 +(g6 +(I0 +tp2142 +g8 +tp2143 +Rp2144 +(I1 +(I4 +tp2145 +g15 +I00 +S'\x00\x01\x00\x00' +p2146 +tp2147 +bsa(dp2148 +g4 +g5 +(g6 +(I0 +tp2149 +g8 +tp2150 +Rp2151 +(I1 +(I4 +tp2152 +g15 +I00 +S'\x01\x00\x00\x00' +p2153 +tp2154 +bsa(dp2155 +g4 +g5 +(g6 +(I0 +tp2156 +g8 +tp2157 +Rp2158 +(I1 +(I4 +tp2159 +g15 +I00 +S'\x01\x00\x01\x00' +p2160 +tp2161 +bsa(dp2162 +g4 +g5 +(g6 +(I0 +tp2163 +g8 +tp2164 +Rp2165 +(I1 +(I4 +tp2166 +g15 +I00 +S'\x00\x01\x00\x00' +p2167 +tp2168 +bsa(dp2169 +g4 +g5 +(g6 +(I0 +tp2170 +g8 +tp2171 +Rp2172 +(I1 +(I4 +tp2173 +g15 +I00 +S'\x00\x01\x00\x00' +p2174 +tp2175 +bsa(dp2176 +g4 +g5 +(g6 +(I0 +tp2177 +g8 +tp2178 +Rp2179 +(I1 +(I4 +tp2180 +g15 +I00 +S'\x00\x01\x00\x00' +p2181 +tp2182 +bsa(dp2183 +g4 +g5 +(g6 +(I0 +tp2184 +g8 +tp2185 +Rp2186 +(I1 +(I4 +tp2187 +g15 +I00 +S'\x00\x01\x00\x00' +p2188 +tp2189 +bsa(dp2190 +g4 +g5 +(g6 +(I0 +tp2191 +g8 +tp2192 +Rp2193 +(I1 +(I4 +tp2194 +g15 +I00 +S'\x00\x01\x00\x00' +p2195 +tp2196 +bsa(dp2197 +g4 +g5 +(g6 +(I0 +tp2198 +g8 +tp2199 +Rp2200 +(I1 +(I4 +tp2201 +g15 +I00 +S'\x00\x01\x00\x00' +p2202 +tp2203 +bsa(dp2204 +g4 +g5 +(g6 +(I0 +tp2205 +g8 +tp2206 +Rp2207 +(I1 +(I4 +tp2208 +g15 +I00 +S'\x00\x00\x01\x00' +p2209 +tp2210 +bsa(dp2211 +g4 +g5 +(g6 +(I0 +tp2212 +g8 +tp2213 +Rp2214 +(I1 +(I4 +tp2215 +g15 +I00 +S'\x00\x01\x00\x01' +p2216 +tp2217 +bsa(dp2218 +g4 +g5 +(g6 +(I0 +tp2219 +g8 +tp2220 +Rp2221 +(I1 +(I4 +tp2222 +g15 +I00 +S'\x00\x01\x00\x00' +p2223 +tp2224 +bsa(dp2225 +g4 +g5 +(g6 +(I0 +tp2226 +g8 +tp2227 +Rp2228 +(I1 +(I4 +tp2229 +g15 +I00 +S'\x00\x00\x00\x00' +p2230 +tp2231 +bsa(dp2232 +g4 +g5 +(g6 +(I0 +tp2233 +g8 +tp2234 +Rp2235 +(I1 +(I4 +tp2236 +g15 +I00 +S'\x00\x01\x00\x00' +p2237 +tp2238 +bsa(dp2239 +g4 +g5 +(g6 +(I0 +tp2240 +g8 +tp2241 +Rp2242 +(I1 +(I4 +tp2243 +g15 +I00 +S'\x00\x01\x00\x00' +p2244 +tp2245 +bsa(dp2246 +g4 +g5 +(g6 +(I0 +tp2247 +g8 +tp2248 +Rp2249 +(I1 +(I4 +tp2250 +g15 +I00 +S'\x01\x00\x00\x00' +p2251 +tp2252 +bsa(dp2253 +g4 +g5 +(g6 +(I0 +tp2254 +g8 +tp2255 +Rp2256 +(I1 +(I4 +tp2257 +g15 +I00 +S'\x00\x01\x00\x01' +p2258 +tp2259 +bsa(dp2260 +g4 +g5 +(g6 +(I0 +tp2261 +g8 +tp2262 +Rp2263 +(I1 +(I4 +tp2264 +g15 +I00 +S'\x01\x00\x00\x00' +p2265 +tp2266 +bsa(dp2267 +g4 +g5 +(g6 +(I0 +tp2268 +g8 +tp2269 +Rp2270 +(I1 +(I4 +tp2271 +g15 +I00 +S'\x01\x01\x00\x00' +p2272 +tp2273 +bsa(dp2274 +g4 +g5 +(g6 +(I0 +tp2275 +g8 +tp2276 +Rp2277 +(I1 +(I4 +tp2278 +g15 +I00 +S'\x00\x01\x00\x01' +p2279 +tp2280 +bsa(dp2281 +g4 +g5 +(g6 +(I0 +tp2282 +g8 +tp2283 +Rp2284 +(I1 +(I4 +tp2285 +g15 +I00 +S'\x00\x01\x00\x00' +p2286 +tp2287 +bsa(dp2288 +g4 +g5 +(g6 +(I0 +tp2289 +g8 +tp2290 +Rp2291 +(I1 +(I4 +tp2292 +g15 +I00 +S'\x00\x01\x00\x00' +p2293 +tp2294 +bsa(dp2295 +g4 +g5 +(g6 +(I0 +tp2296 +g8 +tp2297 +Rp2298 +(I1 +(I4 +tp2299 +g15 +I00 +S'\x01\x00\x01\x00' +p2300 +tp2301 +bsa(dp2302 +g4 +g5 +(g6 +(I0 +tp2303 +g8 +tp2304 +Rp2305 +(I1 +(I4 +tp2306 +g15 +I00 +S'\x01\x00\x00\x00' +p2307 +tp2308 +bsa(dp2309 +g4 +g5 +(g6 +(I0 +tp2310 +g8 +tp2311 +Rp2312 +(I1 +(I4 +tp2313 +g15 +I00 +S'\x00\x01\x00\x00' +p2314 +tp2315 +bsa(dp2316 +g4 +g5 +(g6 +(I0 +tp2317 +g8 +tp2318 +Rp2319 +(I1 +(I4 +tp2320 +g15 +I00 +S'\x00\x00\x00\x01' +p2321 +tp2322 +bsa(dp2323 +g4 +g5 +(g6 +(I0 +tp2324 +g8 +tp2325 +Rp2326 +(I1 +(I4 +tp2327 +g15 +I00 +S'\x00\x01\x00\x01' +p2328 +tp2329 +bsa(dp2330 +g4 +g5 +(g6 +(I0 +tp2331 +g8 +tp2332 +Rp2333 +(I1 +(I4 +tp2334 +g15 +I00 +S'\x00\x01\x00\x01' +p2335 +tp2336 +bsa(dp2337 +g4 +g5 +(g6 +(I0 +tp2338 +g8 +tp2339 +Rp2340 +(I1 +(I4 +tp2341 +g15 +I00 +S'\x00\x01\x00\x01' +p2342 +tp2343 +bsa(dp2344 +g4 +g5 +(g6 +(I0 +tp2345 +g8 +tp2346 +Rp2347 +(I1 +(I4 +tp2348 +g15 +I00 +S'\x00\x01\x00\x00' +p2349 +tp2350 +bsa(dp2351 +g4 +g5 +(g6 +(I0 +tp2352 +g8 +tp2353 +Rp2354 +(I1 +(I4 +tp2355 +g15 +I00 +S'\x00\x01\x00\x01' +p2356 +tp2357 +bsa(dp2358 +g4 +g5 +(g6 +(I0 +tp2359 +g8 +tp2360 +Rp2361 +(I1 +(I4 +tp2362 +g15 +I00 +S'\x00\x00\x00\x01' +p2363 +tp2364 +bsa(dp2365 +g4 +g5 +(g6 +(I0 +tp2366 +g8 +tp2367 +Rp2368 +(I1 +(I4 +tp2369 +g15 +I00 +S'\x00\x01\x00\x00' +p2370 +tp2371 +bsa(dp2372 +g4 +g5 +(g6 +(I0 +tp2373 +g8 +tp2374 +Rp2375 +(I1 +(I4 +tp2376 +g15 +I00 +S'\x01\x00\x00\x00' +p2377 +tp2378 +bsa(dp2379 +g4 +g5 +(g6 +(I0 +tp2380 +g8 +tp2381 +Rp2382 +(I1 +(I4 +tp2383 +g15 +I00 +S'\x01\x00\x00\x00' +p2384 +tp2385 +bsa(dp2386 +g4 +g5 +(g6 +(I0 +tp2387 +g8 +tp2388 +Rp2389 +(I1 +(I4 +tp2390 +g15 +I00 +S'\x00\x01\x00\x00' +p2391 +tp2392 +bsa(dp2393 +g4 +g5 +(g6 +(I0 +tp2394 +g8 +tp2395 +Rp2396 +(I1 +(I4 +tp2397 +g15 +I00 +S'\x00\x00\x01\x00' +p2398 +tp2399 +bsa(dp2400 +g4 +g5 +(g6 +(I0 +tp2401 +g8 +tp2402 +Rp2403 +(I1 +(I4 +tp2404 +g15 +I00 +S'\x00\x00\x00\x01' +p2405 +tp2406 +bsa(dp2407 +g4 +g5 +(g6 +(I0 +tp2408 +g8 +tp2409 +Rp2410 +(I1 +(I4 +tp2411 +g15 +I00 +S'\x00\x00\x01\x00' +p2412 +tp2413 +bsa(dp2414 +g4 +g5 +(g6 +(I0 +tp2415 +g8 +tp2416 +Rp2417 +(I1 +(I4 +tp2418 +g15 +I00 +S'\x01\x00\x00\x00' +p2419 +tp2420 +bsa(dp2421 +g4 +g5 +(g6 +(I0 +tp2422 +g8 +tp2423 +Rp2424 +(I1 +(I4 +tp2425 +g15 +I00 +S'\x00\x01\x00\x01' +p2426 +tp2427 +bsa(dp2428 +g4 +g5 +(g6 +(I0 +tp2429 +g8 +tp2430 +Rp2431 +(I1 +(I4 +tp2432 +g15 +I00 +S'\x00\x01\x00\x01' +p2433 +tp2434 +bsa(dp2435 +g4 +g5 +(g6 +(I0 +tp2436 +g8 +tp2437 +Rp2438 +(I1 +(I4 +tp2439 +g15 +I00 +S'\x00\x00\x00\x00' +p2440 +tp2441 +bsa(dp2442 +g4 +g5 +(g6 +(I0 +tp2443 +g8 +tp2444 +Rp2445 +(I1 +(I4 +tp2446 +g15 +I00 +S'\x00\x01\x00\x01' +p2447 +tp2448 +bsa(dp2449 +g4 +g5 +(g6 +(I0 +tp2450 +g8 +tp2451 +Rp2452 +(I1 +(I4 +tp2453 +g15 +I00 +S'\x00\x00\x00\x00' +p2454 +tp2455 +bsa(dp2456 +g4 +g5 +(g6 +(I0 +tp2457 +g8 +tp2458 +Rp2459 +(I1 +(I4 +tp2460 +g15 +I00 +S'\x01\x00\x01\x00' +p2461 +tp2462 +bsa(dp2463 +g4 +g5 +(g6 +(I0 +tp2464 +g8 +tp2465 +Rp2466 +(I1 +(I4 +tp2467 +g15 +I00 +S'\x00\x01\x00\x00' +p2468 +tp2469 +bsa(dp2470 +g4 +g5 +(g6 +(I0 +tp2471 +g8 +tp2472 +Rp2473 +(I1 +(I4 +tp2474 +g15 +I00 +S'\x00\x00\x00\x00' +p2475 +tp2476 +bsa(dp2477 +g4 +g5 +(g6 +(I0 +tp2478 +g8 +tp2479 +Rp2480 +(I1 +(I4 +tp2481 +g15 +I00 +S'\x00\x00\x00\x00' +p2482 +tp2483 +bsa(dp2484 +g4 +g5 +(g6 +(I0 +tp2485 +g8 +tp2486 +Rp2487 +(I1 +(I4 +tp2488 +g15 +I00 +S'\x00\x01\x00\x01' +p2489 +tp2490 +bsa(dp2491 +g4 +g5 +(g6 +(I0 +tp2492 +g8 +tp2493 +Rp2494 +(I1 +(I4 +tp2495 +g15 +I00 +S'\x01\x00\x00\x00' +p2496 +tp2497 +bsa(dp2498 +g4 +g5 +(g6 +(I0 +tp2499 +g8 +tp2500 +Rp2501 +(I1 +(I4 +tp2502 +g15 +I00 +S'\x01\x00\x00\x00' +p2503 +tp2504 +bsa(dp2505 +g4 +g5 +(g6 +(I0 +tp2506 +g8 +tp2507 +Rp2508 +(I1 +(I4 +tp2509 +g15 +I00 +S'\x01\x00\x00\x00' +p2510 +tp2511 +bsa(dp2512 +g4 +g5 +(g6 +(I0 +tp2513 +g8 +tp2514 +Rp2515 +(I1 +(I4 +tp2516 +g15 +I00 +S'\x00\x01\x00\x00' +p2517 +tp2518 +bsa(dp2519 +g4 +g5 +(g6 +(I0 +tp2520 +g8 +tp2521 +Rp2522 +(I1 +(I4 +tp2523 +g15 +I00 +S'\x01\x01\x00\x00' +p2524 +tp2525 +bsa(dp2526 +g4 +g5 +(g6 +(I0 +tp2527 +g8 +tp2528 +Rp2529 +(I1 +(I4 +tp2530 +g15 +I00 +S'\x00\x01\x00\x01' +p2531 +tp2532 +bsa(dp2533 +g4 +g5 +(g6 +(I0 +tp2534 +g8 +tp2535 +Rp2536 +(I1 +(I4 +tp2537 +g15 +I00 +S'\x00\x00\x00\x01' +p2538 +tp2539 +bsa(dp2540 +g4 +g5 +(g6 +(I0 +tp2541 +g8 +tp2542 +Rp2543 +(I1 +(I4 +tp2544 +g15 +I00 +S'\x00\x01\x00\x01' +p2545 +tp2546 +bsa(dp2547 +g4 +g5 +(g6 +(I0 +tp2548 +g8 +tp2549 +Rp2550 +(I1 +(I4 +tp2551 +g15 +I00 +S'\x00\x01\x00\x00' +p2552 +tp2553 +bsa(dp2554 +g4 +g5 +(g6 +(I0 +tp2555 +g8 +tp2556 +Rp2557 +(I1 +(I4 +tp2558 +g15 +I00 +S'\x00\x00\x00\x01' +p2559 +tp2560 +bsa(dp2561 +g4 +g5 +(g6 +(I0 +tp2562 +g8 +tp2563 +Rp2564 +(I1 +(I4 +tp2565 +g15 +I00 +S'\x00\x00\x01\x00' +p2566 +tp2567 +bsa(dp2568 +g4 +g5 +(g6 +(I0 +tp2569 +g8 +tp2570 +Rp2571 +(I1 +(I4 +tp2572 +g15 +I00 +S'\x00\x01\x00\x01' +p2573 +tp2574 +bsa(dp2575 +g4 +g5 +(g6 +(I0 +tp2576 +g8 +tp2577 +Rp2578 +(I1 +(I4 +tp2579 +g15 +I00 +S'\x00\x00\x00\x00' +p2580 +tp2581 +bsa(dp2582 +g4 +g5 +(g6 +(I0 +tp2583 +g8 +tp2584 +Rp2585 +(I1 +(I4 +tp2586 +g15 +I00 +S'\x00\x01\x00\x00' +p2587 +tp2588 +bsa(dp2589 +g4 +g5 +(g6 +(I0 +tp2590 +g8 +tp2591 +Rp2592 +(I1 +(I4 +tp2593 +g15 +I00 +S'\x00\x01\x00\x01' +p2594 +tp2595 +bsa(dp2596 +g4 +g5 +(g6 +(I0 +tp2597 +g8 +tp2598 +Rp2599 +(I1 +(I4 +tp2600 +g15 +I00 +S'\x00\x01\x00\x00' +p2601 +tp2602 +bsa(dp2603 +g4 +g5 +(g6 +(I0 +tp2604 +g8 +tp2605 +Rp2606 +(I1 +(I4 +tp2607 +g15 +I00 +S'\x01\x00\x01\x00' +p2608 +tp2609 +bsa(dp2610 +g4 +g5 +(g6 +(I0 +tp2611 +g8 +tp2612 +Rp2613 +(I1 +(I4 +tp2614 +g15 +I00 +S'\x00\x01\x00\x00' +p2615 +tp2616 +bsa(dp2617 +g4 +g5 +(g6 +(I0 +tp2618 +g8 +tp2619 +Rp2620 +(I1 +(I4 +tp2621 +g15 +I00 +S'\x00\x01\x00\x00' +p2622 +tp2623 +bsa(dp2624 +g4 +g5 +(g6 +(I0 +tp2625 +g8 +tp2626 +Rp2627 +(I1 +(I4 +tp2628 +g15 +I00 +S'\x00\x01\x00\x00' +p2629 +tp2630 +bsa(dp2631 +g4 +g5 +(g6 +(I0 +tp2632 +g8 +tp2633 +Rp2634 +(I1 +(I4 +tp2635 +g15 +I00 +S'\x00\x00\x01\x00' +p2636 +tp2637 +bsa(dp2638 +g4 +g5 +(g6 +(I0 +tp2639 +g8 +tp2640 +Rp2641 +(I1 +(I4 +tp2642 +g15 +I00 +S'\x00\x01\x00\x00' +p2643 +tp2644 +bsa(dp2645 +g4 +g5 +(g6 +(I0 +tp2646 +g8 +tp2647 +Rp2648 +(I1 +(I4 +tp2649 +g15 +I00 +S'\x00\x01\x00\x01' +p2650 +tp2651 +bsa(dp2652 +g4 +g5 +(g6 +(I0 +tp2653 +g8 +tp2654 +Rp2655 +(I1 +(I4 +tp2656 +g15 +I00 +S'\x01\x00\x01\x01' +p2657 +tp2658 +bsa(dp2659 +g4 +g5 +(g6 +(I0 +tp2660 +g8 +tp2661 +Rp2662 +(I1 +(I4 +tp2663 +g15 +I00 +S'\x00\x01\x00\x00' +p2664 +tp2665 +bsa(dp2666 +g4 +g5 +(g6 +(I0 +tp2667 +g8 +tp2668 +Rp2669 +(I1 +(I4 +tp2670 +g15 +I00 +S'\x00\x01\x00\x00' +p2671 +tp2672 +bsa(dp2673 +g4 +g5 +(g6 +(I0 +tp2674 +g8 +tp2675 +Rp2676 +(I1 +(I4 +tp2677 +g15 +I00 +S'\x00\x01\x00\x00' +p2678 +tp2679 +bsa(dp2680 +g4 +g5 +(g6 +(I0 +tp2681 +g8 +tp2682 +Rp2683 +(I1 +(I4 +tp2684 +g15 +I00 +S'\x00\x00\x00\x00' +p2685 +tp2686 +bsa(dp2687 +g4 +g5 +(g6 +(I0 +tp2688 +g8 +tp2689 +Rp2690 +(I1 +(I4 +tp2691 +g15 +I00 +S'\x00\x00\x00\x01' +p2692 +tp2693 +bsa(dp2694 +g4 +g5 +(g6 +(I0 +tp2695 +g8 +tp2696 +Rp2697 +(I1 +(I4 +tp2698 +g15 +I00 +S'\x01\x00\x00\x00' +p2699 +tp2700 +bsa(dp2701 +g4 +g5 +(g6 +(I0 +tp2702 +g8 +tp2703 +Rp2704 +(I1 +(I4 +tp2705 +g15 +I00 +S'\x00\x01\x00\x01' +p2706 +tp2707 +bsa(dp2708 +g4 +g5 +(g6 +(I0 +tp2709 +g8 +tp2710 +Rp2711 +(I1 +(I4 +tp2712 +g15 +I00 +S'\x00\x01\x00\x01' +p2713 +tp2714 +bsa(dp2715 +g4 +g5 +(g6 +(I0 +tp2716 +g8 +tp2717 +Rp2718 +(I1 +(I4 +tp2719 +g15 +I00 +S'\x00\x01\x00\x01' +p2720 +tp2721 +bsa(dp2722 +g4 +g5 +(g6 +(I0 +tp2723 +g8 +tp2724 +Rp2725 +(I1 +(I4 +tp2726 +g15 +I00 +S'\x01\x00\x00\x00' +p2727 +tp2728 +bsa(dp2729 +g4 +g5 +(g6 +(I0 +tp2730 +g8 +tp2731 +Rp2732 +(I1 +(I4 +tp2733 +g15 +I00 +S'\x01\x00\x01\x01' +p2734 +tp2735 +bsa(dp2736 +g4 +g5 +(g6 +(I0 +tp2737 +g8 +tp2738 +Rp2739 +(I1 +(I4 +tp2740 +g15 +I00 +S'\x00\x01\x00\x00' +p2741 +tp2742 +bsa(dp2743 +g4 +g5 +(g6 +(I0 +tp2744 +g8 +tp2745 +Rp2746 +(I1 +(I4 +tp2747 +g15 +I00 +S'\x00\x00\x00\x01' +p2748 +tp2749 +bsa(dp2750 +g4 +g5 +(g6 +(I0 +tp2751 +g8 +tp2752 +Rp2753 +(I1 +(I4 +tp2754 +g15 +I00 +S'\x01\x00\x00\x00' +p2755 +tp2756 +bsa(dp2757 +g4 +g5 +(g6 +(I0 +tp2758 +g8 +tp2759 +Rp2760 +(I1 +(I4 +tp2761 +g15 +I00 +S'\x00\x01\x00\x00' +p2762 +tp2763 +bsa(dp2764 +g4 +g5 +(g6 +(I0 +tp2765 +g8 +tp2766 +Rp2767 +(I1 +(I4 +tp2768 +g15 +I00 +S'\x00\x01\x00\x01' +p2769 +tp2770 +bsa(dp2771 +g4 +g5 +(g6 +(I0 +tp2772 +g8 +tp2773 +Rp2774 +(I1 +(I4 +tp2775 +g15 +I00 +S'\x01\x00\x00\x00' +p2776 +tp2777 +bsa(dp2778 +g4 +g5 +(g6 +(I0 +tp2779 +g8 +tp2780 +Rp2781 +(I1 +(I4 +tp2782 +g15 +I00 +S'\x00\x01\x00\x01' +p2783 +tp2784 +bsa(dp2785 +g4 +g5 +(g6 +(I0 +tp2786 +g8 +tp2787 +Rp2788 +(I1 +(I4 +tp2789 +g15 +I00 +S'\x01\x01\x01\x00' +p2790 +tp2791 +bsa(dp2792 +g4 +g5 +(g6 +(I0 +tp2793 +g8 +tp2794 +Rp2795 +(I1 +(I4 +tp2796 +g15 +I00 +S'\x01\x00\x00\x00' +p2797 +tp2798 +bsa(dp2799 +g4 +g5 +(g6 +(I0 +tp2800 +g8 +tp2801 +Rp2802 +(I1 +(I4 +tp2803 +g15 +I00 +S'\x01\x00\x00\x00' +p2804 +tp2805 +bsa(dp2806 +g4 +g5 +(g6 +(I0 +tp2807 +g8 +tp2808 +Rp2809 +(I1 +(I4 +tp2810 +g15 +I00 +S'\x00\x01\x00\x01' +p2811 +tp2812 +bsa(dp2813 +g4 +g5 +(g6 +(I0 +tp2814 +g8 +tp2815 +Rp2816 +(I1 +(I4 +tp2817 +g15 +I00 +S'\x01\x00\x00\x00' +p2818 +tp2819 +bsa(dp2820 +g4 +g5 +(g6 +(I0 +tp2821 +g8 +tp2822 +Rp2823 +(I1 +(I4 +tp2824 +g15 +I00 +S'\x00\x00\x00\x00' +p2825 +tp2826 +bsa(dp2827 +g4 +g5 +(g6 +(I0 +tp2828 +g8 +tp2829 +Rp2830 +(I1 +(I4 +tp2831 +g15 +I00 +S'\x00\x01\x00\x00' +p2832 +tp2833 +bsa(dp2834 +g4 +g5 +(g6 +(I0 +tp2835 +g8 +tp2836 +Rp2837 +(I1 +(I4 +tp2838 +g15 +I00 +S'\x00\x00\x00\x00' +p2839 +tp2840 +bsa(dp2841 +g4 +g5 +(g6 +(I0 +tp2842 +g8 +tp2843 +Rp2844 +(I1 +(I4 +tp2845 +g15 +I00 +S'\x00\x00\x01\x00' +p2846 +tp2847 +bsa(dp2848 +g4 +g5 +(g6 +(I0 +tp2849 +g8 +tp2850 +Rp2851 +(I1 +(I4 +tp2852 +g15 +I00 +S'\x00\x00\x00\x00' +p2853 +tp2854 +bsa(dp2855 +g4 +g5 +(g6 +(I0 +tp2856 +g8 +tp2857 +Rp2858 +(I1 +(I4 +tp2859 +g15 +I00 +S'\x00\x00\x01\x00' +p2860 +tp2861 +bsa(dp2862 +g4 +g5 +(g6 +(I0 +tp2863 +g8 +tp2864 +Rp2865 +(I1 +(I4 +tp2866 +g15 +I00 +S'\x00\x01\x00\x01' +p2867 +tp2868 +bsa(dp2869 +g4 +g5 +(g6 +(I0 +tp2870 +g8 +tp2871 +Rp2872 +(I1 +(I4 +tp2873 +g15 +I00 +S'\x01\x00\x01\x00' +p2874 +tp2875 +bsa(dp2876 +g4 +g5 +(g6 +(I0 +tp2877 +g8 +tp2878 +Rp2879 +(I1 +(I4 +tp2880 +g15 +I00 +S'\x00\x01\x00\x00' +p2881 +tp2882 +bsa(dp2883 +g4 +g5 +(g6 +(I0 +tp2884 +g8 +tp2885 +Rp2886 +(I1 +(I4 +tp2887 +g15 +I00 +S'\x00\x00\x00\x01' +p2888 +tp2889 +bsa(dp2890 +g4 +g5 +(g6 +(I0 +tp2891 +g8 +tp2892 +Rp2893 +(I1 +(I4 +tp2894 +g15 +I00 +S'\x00\x00\x01\x00' +p2895 +tp2896 +bsa(dp2897 +g4 +g5 +(g6 +(I0 +tp2898 +g8 +tp2899 +Rp2900 +(I1 +(I4 +tp2901 +g15 +I00 +S'\x00\x00\x01\x00' +p2902 +tp2903 +bsa(dp2904 +g4 +g5 +(g6 +(I0 +tp2905 +g8 +tp2906 +Rp2907 +(I1 +(I4 +tp2908 +g15 +I00 +S'\x00\x00\x01\x00' +p2909 +tp2910 +bsa(dp2911 +g4 +g5 +(g6 +(I0 +tp2912 +g8 +tp2913 +Rp2914 +(I1 +(I4 +tp2915 +g15 +I00 +S'\x00\x00\x00\x00' +p2916 +tp2917 +bsa(dp2918 +g4 +g5 +(g6 +(I0 +tp2919 +g8 +tp2920 +Rp2921 +(I1 +(I4 +tp2922 +g15 +I00 +S'\x00\x01\x00\x00' +p2923 +tp2924 +bsa(dp2925 +g4 +g5 +(g6 +(I0 +tp2926 +g8 +tp2927 +Rp2928 +(I1 +(I4 +tp2929 +g15 +I00 +S'\x01\x00\x00\x00' +p2930 +tp2931 +bsa(dp2932 +g4 +g5 +(g6 +(I0 +tp2933 +g8 +tp2934 +Rp2935 +(I1 +(I4 +tp2936 +g15 +I00 +S'\x00\x01\x00\x00' +p2937 +tp2938 +bsa(dp2939 +g4 +g5 +(g6 +(I0 +tp2940 +g8 +tp2941 +Rp2942 +(I1 +(I4 +tp2943 +g15 +I00 +S'\x00\x01\x00\x00' +p2944 +tp2945 +bsa(dp2946 +g4 +g5 +(g6 +(I0 +tp2947 +g8 +tp2948 +Rp2949 +(I1 +(I4 +tp2950 +g15 +I00 +S'\x00\x01\x00\x01' +p2951 +tp2952 +bsa(dp2953 +g4 +g5 +(g6 +(I0 +tp2954 +g8 +tp2955 +Rp2956 +(I1 +(I4 +tp2957 +g15 +I00 +S'\x00\x01\x00\x00' +p2958 +tp2959 +bsa(dp2960 +g4 +g5 +(g6 +(I0 +tp2961 +g8 +tp2962 +Rp2963 +(I1 +(I4 +tp2964 +g15 +I00 +S'\x00\x01\x00\x00' +p2965 +tp2966 +bsa(dp2967 +g4 +g5 +(g6 +(I0 +tp2968 +g8 +tp2969 +Rp2970 +(I1 +(I4 +tp2971 +g15 +I00 +S'\x01\x00\x00\x01' +p2972 +tp2973 +bsa(dp2974 +g4 +g5 +(g6 +(I0 +tp2975 +g8 +tp2976 +Rp2977 +(I1 +(I4 +tp2978 +g15 +I00 +S'\x00\x01\x00\x01' +p2979 +tp2980 +bsa(dp2981 +g4 +g5 +(g6 +(I0 +tp2982 +g8 +tp2983 +Rp2984 +(I1 +(I4 +tp2985 +g15 +I00 +S'\x00\x00\x00\x01' +p2986 +tp2987 +bsa(dp2988 +g4 +g5 +(g6 +(I0 +tp2989 +g8 +tp2990 +Rp2991 +(I1 +(I4 +tp2992 +g15 +I00 +S'\x00\x00\x00\x01' +p2993 +tp2994 +bsa(dp2995 +g4 +g5 +(g6 +(I0 +tp2996 +g8 +tp2997 +Rp2998 +(I1 +(I4 +tp2999 +g15 +I00 +S'\x01\x00\x00\x00' +p3000 +tp3001 +bsa(dp3002 +g4 +g5 +(g6 +(I0 +tp3003 +g8 +tp3004 +Rp3005 +(I1 +(I4 +tp3006 +g15 +I00 +S'\x00\x00\x01\x00' +p3007 +tp3008 +bsa(dp3009 +g4 +g5 +(g6 +(I0 +tp3010 +g8 +tp3011 +Rp3012 +(I1 +(I4 +tp3013 +g15 +I00 +S'\x01\x00\x00\x00' +p3014 +tp3015 +bsa(dp3016 +g4 +g5 +(g6 +(I0 +tp3017 +g8 +tp3018 +Rp3019 +(I1 +(I4 +tp3020 +g15 +I00 +S'\x00\x01\x00\x00' +p3021 +tp3022 +bsa(dp3023 +g4 +g5 +(g6 +(I0 +tp3024 +g8 +tp3025 +Rp3026 +(I1 +(I4 +tp3027 +g15 +I00 +S'\x00\x01\x00\x01' +p3028 +tp3029 +bsa(dp3030 +g4 +g5 +(g6 +(I0 +tp3031 +g8 +tp3032 +Rp3033 +(I1 +(I4 +tp3034 +g15 +I00 +S'\x00\x01\x00\x00' +p3035 +tp3036 +bsa(dp3037 +g4 +g5 +(g6 +(I0 +tp3038 +g8 +tp3039 +Rp3040 +(I1 +(I4 +tp3041 +g15 +I00 +S'\x00\x00\x01\x00' +p3042 +tp3043 +bsa(dp3044 +g4 +g5 +(g6 +(I0 +tp3045 +g8 +tp3046 +Rp3047 +(I1 +(I4 +tp3048 +g15 +I00 +S'\x01\x00\x00\x00' +p3049 +tp3050 +bsa(dp3051 +g4 +g5 +(g6 +(I0 +tp3052 +g8 +tp3053 +Rp3054 +(I1 +(I4 +tp3055 +g15 +I00 +S'\x00\x01\x00\x00' +p3056 +tp3057 +bsa(dp3058 +g4 +g5 +(g6 +(I0 +tp3059 +g8 +tp3060 +Rp3061 +(I1 +(I4 +tp3062 +g15 +I00 +S'\x00\x01\x00\x00' +p3063 +tp3064 +bsa(dp3065 +g4 +g5 +(g6 +(I0 +tp3066 +g8 +tp3067 +Rp3068 +(I1 +(I4 +tp3069 +g15 +I00 +S'\x00\x01\x00\x00' +p3070 +tp3071 +bsa(dp3072 +g4 +g5 +(g6 +(I0 +tp3073 +g8 +tp3074 +Rp3075 +(I1 +(I4 +tp3076 +g15 +I00 +S'\x00\x01\x00\x00' +p3077 +tp3078 +bsa(dp3079 +g4 +g5 +(g6 +(I0 +tp3080 +g8 +tp3081 +Rp3082 +(I1 +(I4 +tp3083 +g15 +I00 +S'\x00\x01\x00\x00' +p3084 +tp3085 +bsa(dp3086 +g4 +g5 +(g6 +(I0 +tp3087 +g8 +tp3088 +Rp3089 +(I1 +(I4 +tp3090 +g15 +I00 +S'\x00\x01\x00\x00' +p3091 +tp3092 +bsa(dp3093 +g4 +g5 +(g6 +(I0 +tp3094 +g8 +tp3095 +Rp3096 +(I1 +(I4 +tp3097 +g15 +I00 +S'\x01\x00\x00\x00' +p3098 +tp3099 +bsa(dp3100 +g4 +g5 +(g6 +(I0 +tp3101 +g8 +tp3102 +Rp3103 +(I1 +(I4 +tp3104 +g15 +I00 +S'\x01\x00\x00\x00' +p3105 +tp3106 +bsa(dp3107 +g4 +g5 +(g6 +(I0 +tp3108 +g8 +tp3109 +Rp3110 +(I1 +(I4 +tp3111 +g15 +I00 +S'\x01\x00\x00\x00' +p3112 +tp3113 +bsa(dp3114 +g4 +g5 +(g6 +(I0 +tp3115 +g8 +tp3116 +Rp3117 +(I1 +(I4 +tp3118 +g15 +I00 +S'\x00\x01\x00\x00' +p3119 +tp3120 +bsa(dp3121 +g4 +g5 +(g6 +(I0 +tp3122 +g8 +tp3123 +Rp3124 +(I1 +(I4 +tp3125 +g15 +I00 +S'\x00\x01\x01\x01' +p3126 +tp3127 +bsa(dp3128 +g4 +g5 +(g6 +(I0 +tp3129 +g8 +tp3130 +Rp3131 +(I1 +(I4 +tp3132 +g15 +I00 +S'\x01\x00\x00\x01' +p3133 +tp3134 +bsa(dp3135 +g4 +g5 +(g6 +(I0 +tp3136 +g8 +tp3137 +Rp3138 +(I1 +(I4 +tp3139 +g15 +I00 +S'\x01\x00\x00\x00' +p3140 +tp3141 +bsa(dp3142 +g4 +g5 +(g6 +(I0 +tp3143 +g8 +tp3144 +Rp3145 +(I1 +(I4 +tp3146 +g15 +I00 +S'\x01\x00\x01\x00' +p3147 +tp3148 +bsa(dp3149 +g4 +g5 +(g6 +(I0 +tp3150 +g8 +tp3151 +Rp3152 +(I1 +(I4 +tp3153 +g15 +I00 +S'\x00\x01\x00\x00' +p3154 +tp3155 +bsa(dp3156 +g4 +g5 +(g6 +(I0 +tp3157 +g8 +tp3158 +Rp3159 +(I1 +(I4 +tp3160 +g15 +I00 +S'\x00\x01\x00\x00' +p3161 +tp3162 +bsa(dp3163 +g4 +g5 +(g6 +(I0 +tp3164 +g8 +tp3165 +Rp3166 +(I1 +(I4 +tp3167 +g15 +I00 +S'\x00\x01\x00\x00' +p3168 +tp3169 +bsa(dp3170 +g4 +g5 +(g6 +(I0 +tp3171 +g8 +tp3172 +Rp3173 +(I1 +(I4 +tp3174 +g15 +I00 +S'\x00\x00\x00\x00' +p3175 +tp3176 +bsa(dp3177 +g4 +g5 +(g6 +(I0 +tp3178 +g8 +tp3179 +Rp3180 +(I1 +(I4 +tp3181 +g15 +I00 +S'\x01\x01\x00\x00' +p3182 +tp3183 +bsa(dp3184 +g4 +g5 +(g6 +(I0 +tp3185 +g8 +tp3186 +Rp3187 +(I1 +(I4 +tp3188 +g15 +I00 +S'\x00\x01\x00\x00' +p3189 +tp3190 +bsa(dp3191 +g4 +g5 +(g6 +(I0 +tp3192 +g8 +tp3193 +Rp3194 +(I1 +(I4 +tp3195 +g15 +I00 +S'\x00\x01\x00\x01' +p3196 +tp3197 +bsa(dp3198 +g4 +g5 +(g6 +(I0 +tp3199 +g8 +tp3200 +Rp3201 +(I1 +(I4 +tp3202 +g15 +I00 +S'\x00\x01\x00\x00' +p3203 +tp3204 +bsa(dp3205 +g4 +g5 +(g6 +(I0 +tp3206 +g8 +tp3207 +Rp3208 +(I1 +(I4 +tp3209 +g15 +I00 +S'\x00\x01\x00\x00' +p3210 +tp3211 +bsa(dp3212 +g4 +g5 +(g6 +(I0 +tp3213 +g8 +tp3214 +Rp3215 +(I1 +(I4 +tp3216 +g15 +I00 +S'\x00\x01\x00\x00' +p3217 +tp3218 +bsa(dp3219 +g4 +g5 +(g6 +(I0 +tp3220 +g8 +tp3221 +Rp3222 +(I1 +(I4 +tp3223 +g15 +I00 +S'\x00\x00\x00\x00' +p3224 +tp3225 +bsa(dp3226 +g4 +g5 +(g6 +(I0 +tp3227 +g8 +tp3228 +Rp3229 +(I1 +(I4 +tp3230 +g15 +I00 +S'\x01\x01\x00\x00' +p3231 +tp3232 +bsa(dp3233 +g4 +g5 +(g6 +(I0 +tp3234 +g8 +tp3235 +Rp3236 +(I1 +(I4 +tp3237 +g15 +I00 +S'\x00\x01\x00\x01' +p3238 +tp3239 +bsa(dp3240 +g4 +g5 +(g6 +(I0 +tp3241 +g8 +tp3242 +Rp3243 +(I1 +(I4 +tp3244 +g15 +I00 +S'\x01\x00\x00\x00' +p3245 +tp3246 +bsa(dp3247 +g4 +g5 +(g6 +(I0 +tp3248 +g8 +tp3249 +Rp3250 +(I1 +(I4 +tp3251 +g15 +I00 +S'\x00\x01\x00\x01' +p3252 +tp3253 +bsa(dp3254 +g4 +g5 +(g6 +(I0 +tp3255 +g8 +tp3256 +Rp3257 +(I1 +(I4 +tp3258 +g15 +I00 +S'\x00\x01\x00\x01' +p3259 +tp3260 +bsa(dp3261 +g4 +g5 +(g6 +(I0 +tp3262 +g8 +tp3263 +Rp3264 +(I1 +(I4 +tp3265 +g15 +I00 +S'\x01\x00\x00\x00' +p3266 +tp3267 +bsa(dp3268 +g4 +g5 +(g6 +(I0 +tp3269 +g8 +tp3270 +Rp3271 +(I1 +(I4 +tp3272 +g15 +I00 +S'\x00\x00\x00\x00' +p3273 +tp3274 +bsa(dp3275 +g4 +g5 +(g6 +(I0 +tp3276 +g8 +tp3277 +Rp3278 +(I1 +(I4 +tp3279 +g15 +I00 +S'\x00\x01\x00\x00' +p3280 +tp3281 +bsa(dp3282 +g4 +g5 +(g6 +(I0 +tp3283 +g8 +tp3284 +Rp3285 +(I1 +(I4 +tp3286 +g15 +I00 +S'\x00\x01\x00\x00' +p3287 +tp3288 +bsa(dp3289 +g4 +g5 +(g6 +(I0 +tp3290 +g8 +tp3291 +Rp3292 +(I1 +(I4 +tp3293 +g15 +I00 +S'\x00\x01\x00\x01' +p3294 +tp3295 +bsa(dp3296 +g4 +g5 +(g6 +(I0 +tp3297 +g8 +tp3298 +Rp3299 +(I1 +(I4 +tp3300 +g15 +I00 +S'\x00\x01\x00\x01' +p3301 +tp3302 +bsa(dp3303 +g4 +g5 +(g6 +(I0 +tp3304 +g8 +tp3305 +Rp3306 +(I1 +(I4 +tp3307 +g15 +I00 +S'\x00\x01\x00\x00' +p3308 +tp3309 +bsa(dp3310 +g4 +g5 +(g6 +(I0 +tp3311 +g8 +tp3312 +Rp3313 +(I1 +(I4 +tp3314 +g15 +I00 +S'\x00\x01\x00\x00' +p3315 +tp3316 +bsa(dp3317 +g4 +g5 +(g6 +(I0 +tp3318 +g8 +tp3319 +Rp3320 +(I1 +(I4 +tp3321 +g15 +I00 +S'\x00\x00\x01\x00' +p3322 +tp3323 +bsa(dp3324 +g4 +g5 +(g6 +(I0 +tp3325 +g8 +tp3326 +Rp3327 +(I1 +(I4 +tp3328 +g15 +I00 +S'\x00\x01\x00\x01' +p3329 +tp3330 +bsa(dp3331 +g4 +g5 +(g6 +(I0 +tp3332 +g8 +tp3333 +Rp3334 +(I1 +(I4 +tp3335 +g15 +I00 +S'\x01\x00\x00\x00' +p3336 +tp3337 +bsa(dp3338 +g4 +g5 +(g6 +(I0 +tp3339 +g8 +tp3340 +Rp3341 +(I1 +(I4 +tp3342 +g15 +I00 +S'\x00\x01\x00\x00' +p3343 +tp3344 +bsa(dp3345 +g4 +g5 +(g6 +(I0 +tp3346 +g8 +tp3347 +Rp3348 +(I1 +(I4 +tp3349 +g15 +I00 +S'\x00\x01\x00\x00' +p3350 +tp3351 +bsa(dp3352 +g4 +g5 +(g6 +(I0 +tp3353 +g8 +tp3354 +Rp3355 +(I1 +(I4 +tp3356 +g15 +I00 +S'\x00\x00\x00\x01' +p3357 +tp3358 +bsa(dp3359 +g4 +g5 +(g6 +(I0 +tp3360 +g8 +tp3361 +Rp3362 +(I1 +(I4 +tp3363 +g15 +I00 +S'\x01\x00\x00\x00' +p3364 +tp3365 +bsa(dp3366 +g4 +g5 +(g6 +(I0 +tp3367 +g8 +tp3368 +Rp3369 +(I1 +(I4 +tp3370 +g15 +I00 +S'\x00\x00\x00\x00' +p3371 +tp3372 +bsa(dp3373 +g4 +g5 +(g6 +(I0 +tp3374 +g8 +tp3375 +Rp3376 +(I1 +(I4 +tp3377 +g15 +I00 +S'\x01\x00\x00\x00' +p3378 +tp3379 +bsa(dp3380 +g4 +g5 +(g6 +(I0 +tp3381 +g8 +tp3382 +Rp3383 +(I1 +(I4 +tp3384 +g15 +I00 +S'\x00\x00\x00\x00' +p3385 +tp3386 +bsa(dp3387 +g4 +g5 +(g6 +(I0 +tp3388 +g8 +tp3389 +Rp3390 +(I1 +(I4 +tp3391 +g15 +I00 +S'\x01\x00\x00\x00' +p3392 +tp3393 +bsa(dp3394 +g4 +g5 +(g6 +(I0 +tp3395 +g8 +tp3396 +Rp3397 +(I1 +(I4 +tp3398 +g15 +I00 +S'\x00\x00\x01\x00' +p3399 +tp3400 +bsa(dp3401 +g4 +g5 +(g6 +(I0 +tp3402 +g8 +tp3403 +Rp3404 +(I1 +(I4 +tp3405 +g15 +I00 +S'\x01\x00\x00\x00' +p3406 +tp3407 +bsa(dp3408 +g4 +g5 +(g6 +(I0 +tp3409 +g8 +tp3410 +Rp3411 +(I1 +(I4 +tp3412 +g15 +I00 +S'\x01\x00\x00\x00' +p3413 +tp3414 +bsa(dp3415 +g4 +g5 +(g6 +(I0 +tp3416 +g8 +tp3417 +Rp3418 +(I1 +(I4 +tp3419 +g15 +I00 +S'\x00\x01\x00\x00' +p3420 +tp3421 +bsa(dp3422 +g4 +g5 +(g6 +(I0 +tp3423 +g8 +tp3424 +Rp3425 +(I1 +(I4 +tp3426 +g15 +I00 +S'\x01\x00\x00\x00' +p3427 +tp3428 +bsa(dp3429 +g4 +g5 +(g6 +(I0 +tp3430 +g8 +tp3431 +Rp3432 +(I1 +(I4 +tp3433 +g15 +I00 +S'\x01\x00\x00\x00' +p3434 +tp3435 +bsa(dp3436 +g4 +g5 +(g6 +(I0 +tp3437 +g8 +tp3438 +Rp3439 +(I1 +(I4 +tp3440 +g15 +I00 +S'\x01\x00\x01\x00' +p3441 +tp3442 +bsa(dp3443 +g4 +g5 +(g6 +(I0 +tp3444 +g8 +tp3445 +Rp3446 +(I1 +(I4 +tp3447 +g15 +I00 +S'\x01\x00\x00\x00' +p3448 +tp3449 +bsa(dp3450 +g4 +g5 +(g6 +(I0 +tp3451 +g8 +tp3452 +Rp3453 +(I1 +(I4 +tp3454 +g15 +I00 +S'\x00\x01\x00\x00' +p3455 +tp3456 +bsa(dp3457 +g4 +g5 +(g6 +(I0 +tp3458 +g8 +tp3459 +Rp3460 +(I1 +(I4 +tp3461 +g15 +I00 +S'\x01\x00\x01\x00' +p3462 +tp3463 +bsa(dp3464 +g4 +g5 +(g6 +(I0 +tp3465 +g8 +tp3466 +Rp3467 +(I1 +(I4 +tp3468 +g15 +I00 +S'\x00\x00\x01\x00' +p3469 +tp3470 +bsa(dp3471 +g4 +g5 +(g6 +(I0 +tp3472 +g8 +tp3473 +Rp3474 +(I1 +(I4 +tp3475 +g15 +I00 +S'\x01\x00\x01\x00' +p3476 +tp3477 +bsa(dp3478 +g4 +g5 +(g6 +(I0 +tp3479 +g8 +tp3480 +Rp3481 +(I1 +(I4 +tp3482 +g15 +I00 +S'\x00\x00\x01\x00' +p3483 +tp3484 +bsa(dp3485 +g4 +g5 +(g6 +(I0 +tp3486 +g8 +tp3487 +Rp3488 +(I1 +(I4 +tp3489 +g15 +I00 +S'\x00\x01\x00\x01' +p3490 +tp3491 +bsa(dp3492 +g4 +g5 +(g6 +(I0 +tp3493 +g8 +tp3494 +Rp3495 +(I1 +(I4 +tp3496 +g15 +I00 +S'\x01\x00\x00\x00' +p3497 +tp3498 +bsa(dp3499 +g4 +g5 +(g6 +(I0 +tp3500 +g8 +tp3501 +Rp3502 +(I1 +(I4 +tp3503 +g15 +I00 +S'\x00\x01\x00\x01' +p3504 +tp3505 +bsa(dp3506 +g4 +g5 +(g6 +(I0 +tp3507 +g8 +tp3508 +Rp3509 +(I1 +(I4 +tp3510 +g15 +I00 +S'\x00\x01\x00\x00' +p3511 +tp3512 +bsa(dp3513 +g4 +g5 +(g6 +(I0 +tp3514 +g8 +tp3515 +Rp3516 +(I1 +(I4 +tp3517 +g15 +I00 +S'\x00\x01\x00\x00' +p3518 +tp3519 +bsa(dp3520 +g4 +g5 +(g6 +(I0 +tp3521 +g8 +tp3522 +Rp3523 +(I1 +(I4 +tp3524 +g15 +I00 +S'\x00\x01\x00\x00' +p3525 +tp3526 +bsa(dp3527 +g4 +g5 +(g6 +(I0 +tp3528 +g8 +tp3529 +Rp3530 +(I1 +(I4 +tp3531 +g15 +I00 +S'\x00\x01\x00\x00' +p3532 +tp3533 +bsa(dp3534 +g4 +g5 +(g6 +(I0 +tp3535 +g8 +tp3536 +Rp3537 +(I1 +(I4 +tp3538 +g15 +I00 +S'\x00\x01\x00\x01' +p3539 +tp3540 +bsa(dp3541 +g4 +g5 +(g6 +(I0 +tp3542 +g8 +tp3543 +Rp3544 +(I1 +(I4 +tp3545 +g15 +I00 +S'\x00\x01\x00\x00' +p3546 +tp3547 +bsa(dp3548 +g4 +g5 +(g6 +(I0 +tp3549 +g8 +tp3550 +Rp3551 +(I1 +(I4 +tp3552 +g15 +I00 +S'\x00\x01\x00\x00' +p3553 +tp3554 +bsa(dp3555 +g4 +g5 +(g6 +(I0 +tp3556 +g8 +tp3557 +Rp3558 +(I1 +(I4 +tp3559 +g15 +I00 +S'\x00\x01\x00\x00' +p3560 +tp3561 +bsa(dp3562 +g4 +g5 +(g6 +(I0 +tp3563 +g8 +tp3564 +Rp3565 +(I1 +(I4 +tp3566 +g15 +I00 +S'\x00\x01\x00\x00' +p3567 +tp3568 +bsa(dp3569 +g4 +g5 +(g6 +(I0 +tp3570 +g8 +tp3571 +Rp3572 +(I1 +(I4 +tp3573 +g15 +I00 +S'\x00\x01\x00\x01' +p3574 +tp3575 +bsa(dp3576 +g4 +g5 +(g6 +(I0 +tp3577 +g8 +tp3578 +Rp3579 +(I1 +(I4 +tp3580 +g15 +I00 +S'\x00\x01\x00\x01' +p3581 +tp3582 +bsa(dp3583 +g4 +g5 +(g6 +(I0 +tp3584 +g8 +tp3585 +Rp3586 +(I1 +(I4 +tp3587 +g15 +I00 +S'\x00\x01\x00\x00' +p3588 +tp3589 +bsa(dp3590 +g4 +g5 +(g6 +(I0 +tp3591 +g8 +tp3592 +Rp3593 +(I1 +(I4 +tp3594 +g15 +I00 +S'\x00\x01\x00\x00' +p3595 +tp3596 +bsa(dp3597 +g4 +g5 +(g6 +(I0 +tp3598 +g8 +tp3599 +Rp3600 +(I1 +(I4 +tp3601 +g15 +I00 +S'\x00\x01\x00\x00' +p3602 +tp3603 +bsa(dp3604 +g4 +g5 +(g6 +(I0 +tp3605 +g8 +tp3606 +Rp3607 +(I1 +(I4 +tp3608 +g15 +I00 +S'\x00\x01\x00\x00' +p3609 +tp3610 +bsa(dp3611 +g4 +g5 +(g6 +(I0 +tp3612 +g8 +tp3613 +Rp3614 +(I1 +(I4 +tp3615 +g15 +I00 +S'\x00\x01\x00\x00' +p3616 +tp3617 +bsa(dp3618 +g4 +g5 +(g6 +(I0 +tp3619 +g8 +tp3620 +Rp3621 +(I1 +(I4 +tp3622 +g15 +I00 +S'\x01\x01\x00\x01' +p3623 +tp3624 +bsa(dp3625 +g4 +g5 +(g6 +(I0 +tp3626 +g8 +tp3627 +Rp3628 +(I1 +(I4 +tp3629 +g15 +I00 +S'\x00\x01\x00\x00' +p3630 +tp3631 +bsa(dp3632 +g4 +g5 +(g6 +(I0 +tp3633 +g8 +tp3634 +Rp3635 +(I1 +(I4 +tp3636 +g15 +I00 +S'\x00\x01\x00\x00' +p3637 +tp3638 +bsa(dp3639 +g4 +g5 +(g6 +(I0 +tp3640 +g8 +tp3641 +Rp3642 +(I1 +(I4 +tp3643 +g15 +I00 +S'\x00\x01\x00\x00' +p3644 +tp3645 +bsa(dp3646 +g4 +g5 +(g6 +(I0 +tp3647 +g8 +tp3648 +Rp3649 +(I1 +(I4 +tp3650 +g15 +I00 +S'\x00\x01\x00\x01' +p3651 +tp3652 +bsa(dp3653 +g4 +g5 +(g6 +(I0 +tp3654 +g8 +tp3655 +Rp3656 +(I1 +(I4 +tp3657 +g15 +I00 +S'\x00\x01\x00\x01' +p3658 +tp3659 +bsa(dp3660 +g4 +g5 +(g6 +(I0 +tp3661 +g8 +tp3662 +Rp3663 +(I1 +(I4 +tp3664 +g15 +I00 +S'\x00\x01\x00\x01' +p3665 +tp3666 +bsa(dp3667 +g4 +g5 +(g6 +(I0 +tp3668 +g8 +tp3669 +Rp3670 +(I1 +(I4 +tp3671 +g15 +I00 +S'\x01\x00\x00\x00' +p3672 +tp3673 +bsa(dp3674 +g4 +g5 +(g6 +(I0 +tp3675 +g8 +tp3676 +Rp3677 +(I1 +(I4 +tp3678 +g15 +I00 +S'\x00\x01\x00\x01' +p3679 +tp3680 +bsa(dp3681 +g4 +g5 +(g6 +(I0 +tp3682 +g8 +tp3683 +Rp3684 +(I1 +(I4 +tp3685 +g15 +I00 +S'\x00\x01\x00\x01' +p3686 +tp3687 +bsa(dp3688 +g4 +g5 +(g6 +(I0 +tp3689 +g8 +tp3690 +Rp3691 +(I1 +(I4 +tp3692 +g15 +I00 +S'\x00\x01\x00\x01' +p3693 +tp3694 +bsa(dp3695 +g4 +g5 +(g6 +(I0 +tp3696 +g8 +tp3697 +Rp3698 +(I1 +(I4 +tp3699 +g15 +I00 +S'\x00\x01\x00\x01' +p3700 +tp3701 +bsa(dp3702 +g4 +g5 +(g6 +(I0 +tp3703 +g8 +tp3704 +Rp3705 +(I1 +(I4 +tp3706 +g15 +I00 +S'\x01\x00\x00\x00' +p3707 +tp3708 +bsa(dp3709 +g4 +g5 +(g6 +(I0 +tp3710 +g8 +tp3711 +Rp3712 +(I1 +(I4 +tp3713 +g15 +I00 +S'\x00\x01\x00\x00' +p3714 +tp3715 +bsa(dp3716 +g4 +g5 +(g6 +(I0 +tp3717 +g8 +tp3718 +Rp3719 +(I1 +(I4 +tp3720 +g15 +I00 +S'\x00\x00\x00\x00' +p3721 +tp3722 +bsa(dp3723 +g4 +g5 +(g6 +(I0 +tp3724 +g8 +tp3725 +Rp3726 +(I1 +(I4 +tp3727 +g15 +I00 +S'\x00\x01\x00\x00' +p3728 +tp3729 +bsa(dp3730 +g4 +g5 +(g6 +(I0 +tp3731 +g8 +tp3732 +Rp3733 +(I1 +(I4 +tp3734 +g15 +I00 +S'\x01\x00\x01\x00' +p3735 +tp3736 +bsa(dp3737 +g4 +g5 +(g6 +(I0 +tp3738 +g8 +tp3739 +Rp3740 +(I1 +(I4 +tp3741 +g15 +I00 +S'\x00\x01\x00\x01' +p3742 +tp3743 +bsa(dp3744 +g4 +g5 +(g6 +(I0 +tp3745 +g8 +tp3746 +Rp3747 +(I1 +(I4 +tp3748 +g15 +I00 +S'\x00\x01\x00\x01' +p3749 +tp3750 +bsa(dp3751 +g4 +g5 +(g6 +(I0 +tp3752 +g8 +tp3753 +Rp3754 +(I1 +(I4 +tp3755 +g15 +I00 +S'\x01\x00\x00\x00' +p3756 +tp3757 +bsa(dp3758 +g4 +g5 +(g6 +(I0 +tp3759 +g8 +tp3760 +Rp3761 +(I1 +(I4 +tp3762 +g15 +I00 +S'\x00\x00\x00\x00' +p3763 +tp3764 +bsa(dp3765 +g4 +g5 +(g6 +(I0 +tp3766 +g8 +tp3767 +Rp3768 +(I1 +(I4 +tp3769 +g15 +I00 +S'\x01\x01\x00\x00' +p3770 +tp3771 +bsa(dp3772 +g4 +g5 +(g6 +(I0 +tp3773 +g8 +tp3774 +Rp3775 +(I1 +(I4 +tp3776 +g15 +I00 +S'\x01\x01\x00\x00' +p3777 +tp3778 +bsa(dp3779 +g4 +g5 +(g6 +(I0 +tp3780 +g8 +tp3781 +Rp3782 +(I1 +(I4 +tp3783 +g15 +I00 +S'\x00\x01\x00\x01' +p3784 +tp3785 +bsa(dp3786 +g4 +g5 +(g6 +(I0 +tp3787 +g8 +tp3788 +Rp3789 +(I1 +(I4 +tp3790 +g15 +I00 +S'\x00\x01\x00\x01' +p3791 +tp3792 +bsa(dp3793 +g4 +g5 +(g6 +(I0 +tp3794 +g8 +tp3795 +Rp3796 +(I1 +(I4 +tp3797 +g15 +I00 +S'\x01\x00\x01\x00' +p3798 +tp3799 +bsa(dp3800 +g4 +g5 +(g6 +(I0 +tp3801 +g8 +tp3802 +Rp3803 +(I1 +(I4 +tp3804 +g15 +I00 +S'\x00\x01\x00\x01' +p3805 +tp3806 +bsa(dp3807 +g4 +g5 +(g6 +(I0 +tp3808 +g8 +tp3809 +Rp3810 +(I1 +(I4 +tp3811 +g15 +I00 +S'\x00\x01\x00\x00' +p3812 +tp3813 +bsa(dp3814 +g4 +g5 +(g6 +(I0 +tp3815 +g8 +tp3816 +Rp3817 +(I1 +(I4 +tp3818 +g15 +I00 +S'\x00\x01\x00\x01' +p3819 +tp3820 +bsa(dp3821 +g4 +g5 +(g6 +(I0 +tp3822 +g8 +tp3823 +Rp3824 +(I1 +(I4 +tp3825 +g15 +I00 +S'\x00\x01\x00\x00' +p3826 +tp3827 +bsa(dp3828 +g4 +g5 +(g6 +(I0 +tp3829 +g8 +tp3830 +Rp3831 +(I1 +(I4 +tp3832 +g15 +I00 +S'\x00\x01\x00\x00' +p3833 +tp3834 +bsa(dp3835 +g4 +g5 +(g6 +(I0 +tp3836 +g8 +tp3837 +Rp3838 +(I1 +(I4 +tp3839 +g15 +I00 +S'\x00\x01\x00\x00' +p3840 +tp3841 +bsa(dp3842 +g4 +g5 +(g6 +(I0 +tp3843 +g8 +tp3844 +Rp3845 +(I1 +(I4 +tp3846 +g15 +I00 +S'\x00\x01\x00\x01' +p3847 +tp3848 +bsa(dp3849 +g4 +g5 +(g6 +(I0 +tp3850 +g8 +tp3851 +Rp3852 +(I1 +(I4 +tp3853 +g15 +I00 +S'\x00\x01\x00\x01' +p3854 +tp3855 +bsa(dp3856 +g4 +g5 +(g6 +(I0 +tp3857 +g8 +tp3858 +Rp3859 +(I1 +(I4 +tp3860 +g15 +I00 +S'\x00\x01\x00\x00' +p3861 +tp3862 +bsa(dp3863 +g4 +g5 +(g6 +(I0 +tp3864 +g8 +tp3865 +Rp3866 +(I1 +(I4 +tp3867 +g15 +I00 +S'\x00\x01\x00\x00' +p3868 +tp3869 +bsa(dp3870 +g4 +g5 +(g6 +(I0 +tp3871 +g8 +tp3872 +Rp3873 +(I1 +(I4 +tp3874 +g15 +I00 +S'\x00\x01\x00\x00' +p3875 +tp3876 +bsa(dp3877 +g4 +g5 +(g6 +(I0 +tp3878 +g8 +tp3879 +Rp3880 +(I1 +(I4 +tp3881 +g15 +I00 +S'\x00\x01\x00\x01' +p3882 +tp3883 +bsa(dp3884 +g4 +g5 +(g6 +(I0 +tp3885 +g8 +tp3886 +Rp3887 +(I1 +(I4 +tp3888 +g15 +I00 +S'\x00\x01\x00\x00' +p3889 +tp3890 +bsa(dp3891 +g4 +g5 +(g6 +(I0 +tp3892 +g8 +tp3893 +Rp3894 +(I1 +(I4 +tp3895 +g15 +I00 +S'\x00\x01\x00\x00' +p3896 +tp3897 +bsa(dp3898 +g4 +g5 +(g6 +(I0 +tp3899 +g8 +tp3900 +Rp3901 +(I1 +(I4 +tp3902 +g15 +I00 +S'\x00\x01\x00\x00' +p3903 +tp3904 +bsa(dp3905 +g4 +g5 +(g6 +(I0 +tp3906 +g8 +tp3907 +Rp3908 +(I1 +(I4 +tp3909 +g15 +I00 +S'\x00\x01\x00\x00' +p3910 +tp3911 +bsa(dp3912 +g4 +g5 +(g6 +(I0 +tp3913 +g8 +tp3914 +Rp3915 +(I1 +(I4 +tp3916 +g15 +I00 +S'\x00\x01\x00\x01' +p3917 +tp3918 +bsa(dp3919 +g4 +g5 +(g6 +(I0 +tp3920 +g8 +tp3921 +Rp3922 +(I1 +(I4 +tp3923 +g15 +I00 +S'\x00\x01\x00\x00' +p3924 +tp3925 +bsa(dp3926 +g4 +g5 +(g6 +(I0 +tp3927 +g8 +tp3928 +Rp3929 +(I1 +(I4 +tp3930 +g15 +I00 +S'\x00\x01\x00\x00' +p3931 +tp3932 +bsa(dp3933 +g4 +g5 +(g6 +(I0 +tp3934 +g8 +tp3935 +Rp3936 +(I1 +(I4 +tp3937 +g15 +I00 +S'\x01\x00\x00\x00' +p3938 +tp3939 +bsa(dp3940 +g4 +g5 +(g6 +(I0 +tp3941 +g8 +tp3942 +Rp3943 +(I1 +(I4 +tp3944 +g15 +I00 +S'\x00\x01\x00\x00' +p3945 +tp3946 +bsa(dp3947 +g4 +g5 +(g6 +(I0 +tp3948 +g8 +tp3949 +Rp3950 +(I1 +(I4 +tp3951 +g15 +I00 +S'\x00\x00\x00\x01' +p3952 +tp3953 +bsa(dp3954 +g4 +g5 +(g6 +(I0 +tp3955 +g8 +tp3956 +Rp3957 +(I1 +(I4 +tp3958 +g15 +I00 +S'\x00\x00\x01\x00' +p3959 +tp3960 +bsa(dp3961 +g4 +g5 +(g6 +(I0 +tp3962 +g8 +tp3963 +Rp3964 +(I1 +(I4 +tp3965 +g15 +I00 +S'\x00\x01\x00\x01' +p3966 +tp3967 +bsa(dp3968 +g4 +g5 +(g6 +(I0 +tp3969 +g8 +tp3970 +Rp3971 +(I1 +(I4 +tp3972 +g15 +I00 +S'\x00\x01\x00\x01' +p3973 +tp3974 +bsa(dp3975 +g4 +g5 +(g6 +(I0 +tp3976 +g8 +tp3977 +Rp3978 +(I1 +(I4 +tp3979 +g15 +I00 +S'\x00\x01\x00\x00' +p3980 +tp3981 +bsa(dp3982 +g4 +g5 +(g6 +(I0 +tp3983 +g8 +tp3984 +Rp3985 +(I1 +(I4 +tp3986 +g15 +I00 +S'\x00\x01\x00\x00' +p3987 +tp3988 +bsa(dp3989 +g4 +g5 +(g6 +(I0 +tp3990 +g8 +tp3991 +Rp3992 +(I1 +(I4 +tp3993 +g15 +I00 +S'\x00\x01\x00\x01' +p3994 +tp3995 +bsa(dp3996 +g4 +g5 +(g6 +(I0 +tp3997 +g8 +tp3998 +Rp3999 +(I1 +(I4 +tp4000 +g15 +I00 +S'\x00\x00\x00\x00' +p4001 +tp4002 +bsa(dp4003 +g4 +g5 +(g6 +(I0 +tp4004 +g8 +tp4005 +Rp4006 +(I1 +(I4 +tp4007 +g15 +I00 +S'\x00\x00\x00\x01' +p4008 +tp4009 +bsa(dp4010 +g4 +g5 +(g6 +(I0 +tp4011 +g8 +tp4012 +Rp4013 +(I1 +(I4 +tp4014 +g15 +I00 +S'\x00\x01\x00\x01' +p4015 +tp4016 +bsa(dp4017 +g4 +g5 +(g6 +(I0 +tp4018 +g8 +tp4019 +Rp4020 +(I1 +(I4 +tp4021 +g15 +I00 +S'\x00\x00\x00\x01' +p4022 +tp4023 +bsa(dp4024 +g4 +g5 +(g6 +(I0 +tp4025 +g8 +tp4026 +Rp4027 +(I1 +(I4 +tp4028 +g15 +I00 +S'\x00\x01\x00\x01' +p4029 +tp4030 +bsa(dp4031 +g4 +g5 +(g6 +(I0 +tp4032 +g8 +tp4033 +Rp4034 +(I1 +(I4 +tp4035 +g15 +I00 +S'\x01\x00\x01\x00' +p4036 +tp4037 +bsa(dp4038 +g4 +g5 +(g6 +(I0 +tp4039 +g8 +tp4040 +Rp4041 +(I1 +(I4 +tp4042 +g15 +I00 +S'\x00\x01\x00\x01' +p4043 +tp4044 +bsa(dp4045 +g4 +g5 +(g6 +(I0 +tp4046 +g8 +tp4047 +Rp4048 +(I1 +(I4 +tp4049 +g15 +I00 +S'\x01\x00\x01\x00' +p4050 +tp4051 +bsa(dp4052 +g4 +g5 +(g6 +(I0 +tp4053 +g8 +tp4054 +Rp4055 +(I1 +(I4 +tp4056 +g15 +I00 +S'\x01\x00\x01\x00' +p4057 +tp4058 +bsa(dp4059 +g4 +g5 +(g6 +(I0 +tp4060 +g8 +tp4061 +Rp4062 +(I1 +(I4 +tp4063 +g15 +I00 +S'\x00\x01\x00\x01' +p4064 +tp4065 +bsa(dp4066 +g4 +g5 +(g6 +(I0 +tp4067 +g8 +tp4068 +Rp4069 +(I1 +(I4 +tp4070 +g15 +I00 +S'\x01\x00\x01\x00' +p4071 +tp4072 +bsa(dp4073 +g4 +g5 +(g6 +(I0 +tp4074 +g8 +tp4075 +Rp4076 +(I1 +(I4 +tp4077 +g15 +I00 +S'\x00\x00\x00\x00' +p4078 +tp4079 +bsa(dp4080 +g4 +g5 +(g6 +(I0 +tp4081 +g8 +tp4082 +Rp4083 +(I1 +(I4 +tp4084 +g15 +I00 +S'\x00\x00\x00\x01' +p4085 +tp4086 +bsa(dp4087 +g4 +g5 +(g6 +(I0 +tp4088 +g8 +tp4089 +Rp4090 +(I1 +(I4 +tp4091 +g15 +I00 +S'\x00\x00\x01\x00' +p4092 +tp4093 +bsa(dp4094 +g4 +g5 +(g6 +(I0 +tp4095 +g8 +tp4096 +Rp4097 +(I1 +(I4 +tp4098 +g15 +I00 +S'\x00\x01\x00\x00' +p4099 +tp4100 +bsa(dp4101 +g4 +g5 +(g6 +(I0 +tp4102 +g8 +tp4103 +Rp4104 +(I1 +(I4 +tp4105 +g15 +I00 +S'\x00\x01\x00\x00' +p4106 +tp4107 +bsa(dp4108 +g4 +g5 +(g6 +(I0 +tp4109 +g8 +tp4110 +Rp4111 +(I1 +(I4 +tp4112 +g15 +I00 +S'\x00\x01\x00\x00' +p4113 +tp4114 +bsa(dp4115 +g4 +g5 +(g6 +(I0 +tp4116 +g8 +tp4117 +Rp4118 +(I1 +(I4 +tp4119 +g15 +I00 +S'\x00\x01\x00\x00' +p4120 +tp4121 +bsa(dp4122 +g4 +g5 +(g6 +(I0 +tp4123 +g8 +tp4124 +Rp4125 +(I1 +(I4 +tp4126 +g15 +I00 +S'\x00\x00\x00\x00' +p4127 +tp4128 +bsa(dp4129 +g4 +g5 +(g6 +(I0 +tp4130 +g8 +tp4131 +Rp4132 +(I1 +(I4 +tp4133 +g15 +I00 +S'\x00\x00\x00\x01' +p4134 +tp4135 +bsa(dp4136 +g4 +g5 +(g6 +(I0 +tp4137 +g8 +tp4138 +Rp4139 +(I1 +(I4 +tp4140 +g15 +I00 +S'\x01\x00\x00\x00' +p4141 +tp4142 +bsa(dp4143 +g4 +g5 +(g6 +(I0 +tp4144 +g8 +tp4145 +Rp4146 +(I1 +(I4 +tp4147 +g15 +I00 +S'\x00\x00\x01\x00' +p4148 +tp4149 +bsa(dp4150 +g4 +g5 +(g6 +(I0 +tp4151 +g8 +tp4152 +Rp4153 +(I1 +(I4 +tp4154 +g15 +I00 +S'\x00\x01\x00\x00' +p4155 +tp4156 +bsa(dp4157 +g4 +g5 +(g6 +(I0 +tp4158 +g8 +tp4159 +Rp4160 +(I1 +(I4 +tp4161 +g15 +I00 +S'\x00\x01\x00\x00' +p4162 +tp4163 +bsa(dp4164 +g4 +g5 +(g6 +(I0 +tp4165 +g8 +tp4166 +Rp4167 +(I1 +(I4 +tp4168 +g15 +I00 +S'\x00\x01\x00\x01' +p4169 +tp4170 +bsa(dp4171 +g4 +g5 +(g6 +(I0 +tp4172 +g8 +tp4173 +Rp4174 +(I1 +(I4 +tp4175 +g15 +I00 +S'\x00\x00\x00\x00' +p4176 +tp4177 +bsa(dp4178 +g4 +g5 +(g6 +(I0 +tp4179 +g8 +tp4180 +Rp4181 +(I1 +(I4 +tp4182 +g15 +I00 +S'\x00\x01\x00\x01' +p4183 +tp4184 +bsa(dp4185 +g4 +g5 +(g6 +(I0 +tp4186 +g8 +tp4187 +Rp4188 +(I1 +(I4 +tp4189 +g15 +I00 +S'\x00\x00\x00\x01' +p4190 +tp4191 +bsa(dp4192 +g4 +g5 +(g6 +(I0 +tp4193 +g8 +tp4194 +Rp4195 +(I1 +(I4 +tp4196 +g15 +I00 +S'\x00\x01\x00\x01' +p4197 +tp4198 +bsa(dp4199 +g4 +g5 +(g6 +(I0 +tp4200 +g8 +tp4201 +Rp4202 +(I1 +(I4 +tp4203 +g15 +I00 +S'\x00\x01\x00\x00' +p4204 +tp4205 +bsa(dp4206 +g4 +g5 +(g6 +(I0 +tp4207 +g8 +tp4208 +Rp4209 +(I1 +(I4 +tp4210 +g15 +I00 +S'\x00\x00\x00\x00' +p4211 +tp4212 +bsa(dp4213 +g4 +g5 +(g6 +(I0 +tp4214 +g8 +tp4215 +Rp4216 +(I1 +(I4 +tp4217 +g15 +I00 +S'\x00\x01\x00\x00' +p4218 +tp4219 +bsa(dp4220 +g4 +g5 +(g6 +(I0 +tp4221 +g8 +tp4222 +Rp4223 +(I1 +(I4 +tp4224 +g15 +I00 +S'\x00\x00\x00\x00' +p4225 +tp4226 +bsa(dp4227 +g4 +g5 +(g6 +(I0 +tp4228 +g8 +tp4229 +Rp4230 +(I1 +(I4 +tp4231 +g15 +I00 +S'\x00\x01\x00\x00' +p4232 +tp4233 +bsa(dp4234 +g4 +g5 +(g6 +(I0 +tp4235 +g8 +tp4236 +Rp4237 +(I1 +(I4 +tp4238 +g15 +I00 +S'\x00\x01\x00\x01' +p4239 +tp4240 +bsa(dp4241 +g4 +g5 +(g6 +(I0 +tp4242 +g8 +tp4243 +Rp4244 +(I1 +(I4 +tp4245 +g15 +I00 +S'\x00\x01\x00\x00' +p4246 +tp4247 +bsa(dp4248 +g4 +g5 +(g6 +(I0 +tp4249 +g8 +tp4250 +Rp4251 +(I1 +(I4 +tp4252 +g15 +I00 +S'\x00\x01\x00\x00' +p4253 +tp4254 +bsa(dp4255 +g4 +g5 +(g6 +(I0 +tp4256 +g8 +tp4257 +Rp4258 +(I1 +(I4 +tp4259 +g15 +I00 +S'\x00\x01\x00\x00' +p4260 +tp4261 +bsa(dp4262 +g4 +g5 +(g6 +(I0 +tp4263 +g8 +tp4264 +Rp4265 +(I1 +(I4 +tp4266 +g15 +I00 +S'\x00\x01\x00\x00' +p4267 +tp4268 +bsa(dp4269 +g4 +g5 +(g6 +(I0 +tp4270 +g8 +tp4271 +Rp4272 +(I1 +(I4 +tp4273 +g15 +I00 +S'\x00\x01\x00\x01' +p4274 +tp4275 +bsa(dp4276 +g4 +g5 +(g6 +(I0 +tp4277 +g8 +tp4278 +Rp4279 +(I1 +(I4 +tp4280 +g15 +I00 +S'\x00\x01\x00\x00' +p4281 +tp4282 +bsa(dp4283 +g4 +g5 +(g6 +(I0 +tp4284 +g8 +tp4285 +Rp4286 +(I1 +(I4 +tp4287 +g15 +I00 +S'\x00\x01\x00\x01' +p4288 +tp4289 +bsa(dp4290 +g4 +g5 +(g6 +(I0 +tp4291 +g8 +tp4292 +Rp4293 +(I1 +(I4 +tp4294 +g15 +I00 +S'\x00\x01\x00\x01' +p4295 +tp4296 +bsa(dp4297 +g4 +g5 +(g6 +(I0 +tp4298 +g8 +tp4299 +Rp4300 +(I1 +(I4 +tp4301 +g15 +I00 +S'\x01\x00\x01\x00' +p4302 +tp4303 +bsa(dp4304 +g4 +g5 +(g6 +(I0 +tp4305 +g8 +tp4306 +Rp4307 +(I1 +(I4 +tp4308 +g15 +I00 +S'\x00\x01\x00\x00' +p4309 +tp4310 +bsa(dp4311 +g4 +g5 +(g6 +(I0 +tp4312 +g8 +tp4313 +Rp4314 +(I1 +(I4 +tp4315 +g15 +I00 +S'\x00\x01\x00\x01' +p4316 +tp4317 +bsa(dp4318 +g4 +g5 +(g6 +(I0 +tp4319 +g8 +tp4320 +Rp4321 +(I1 +(I4 +tp4322 +g15 +I00 +S'\x00\x01\x00\x00' +p4323 +tp4324 +bsa(dp4325 +g4 +g5 +(g6 +(I0 +tp4326 +g8 +tp4327 +Rp4328 +(I1 +(I4 +tp4329 +g15 +I00 +S'\x00\x01\x00\x00' +p4330 +tp4331 +bsa(dp4332 +g4 +g5 +(g6 +(I0 +tp4333 +g8 +tp4334 +Rp4335 +(I1 +(I4 +tp4336 +g15 +I00 +S'\x01\x00\x00\x00' +p4337 +tp4338 +bsa(dp4339 +g4 +g5 +(g6 +(I0 +tp4340 +g8 +tp4341 +Rp4342 +(I1 +(I4 +tp4343 +g15 +I00 +S'\x01\x00\x01\x00' +p4344 +tp4345 +bsa(dp4346 +g4 +g5 +(g6 +(I0 +tp4347 +g8 +tp4348 +Rp4349 +(I1 +(I4 +tp4350 +g15 +I00 +S'\x00\x00\x00\x01' +p4351 +tp4352 +bsa(dp4353 +g4 +g5 +(g6 +(I0 +tp4354 +g8 +tp4355 +Rp4356 +(I1 +(I4 +tp4357 +g15 +I00 +S'\x00\x00\x00\x00' +p4358 +tp4359 +bsa(dp4360 +g4 +g5 +(g6 +(I0 +tp4361 +g8 +tp4362 +Rp4363 +(I1 +(I4 +tp4364 +g15 +I00 +S'\x00\x01\x00\x01' +p4365 +tp4366 +bsa(dp4367 +g4 +g5 +(g6 +(I0 +tp4368 +g8 +tp4369 +Rp4370 +(I1 +(I4 +tp4371 +g15 +I00 +S'\x01\x00\x01\x00' +p4372 +tp4373 +bsa(dp4374 +g4 +g5 +(g6 +(I0 +tp4375 +g8 +tp4376 +Rp4377 +(I1 +(I4 +tp4378 +g15 +I00 +S'\x01\x00\x00\x00' +p4379 +tp4380 +bsa(dp4381 +g4 +g5 +(g6 +(I0 +tp4382 +g8 +tp4383 +Rp4384 +(I1 +(I4 +tp4385 +g15 +I00 +S'\x00\x00\x01\x00' +p4386 +tp4387 +bsa(dp4388 +g4 +g5 +(g6 +(I0 +tp4389 +g8 +tp4390 +Rp4391 +(I1 +(I4 +tp4392 +g15 +I00 +S'\x00\x00\x00\x01' +p4393 +tp4394 +bsa(dp4395 +g4 +g5 +(g6 +(I0 +tp4396 +g8 +tp4397 +Rp4398 +(I1 +(I4 +tp4399 +g15 +I00 +S'\x01\x00\x00\x00' +p4400 +tp4401 +bsa(dp4402 +g4 +g5 +(g6 +(I0 +tp4403 +g8 +tp4404 +Rp4405 +(I1 +(I4 +tp4406 +g15 +I00 +S'\x00\x01\x00\x00' +p4407 +tp4408 +bsa(dp4409 +g4 +g5 +(g6 +(I0 +tp4410 +g8 +tp4411 +Rp4412 +(I1 +(I4 +tp4413 +g15 +I00 +S'\x00\x01\x00\x00' +p4414 +tp4415 +bsa(dp4416 +g4 +g5 +(g6 +(I0 +tp4417 +g8 +tp4418 +Rp4419 +(I1 +(I4 +tp4420 +g15 +I00 +S'\x00\x01\x00\x00' +p4421 +tp4422 +bsa(dp4423 +g4 +g5 +(g6 +(I0 +tp4424 +g8 +tp4425 +Rp4426 +(I1 +(I4 +tp4427 +g15 +I00 +S'\x00\x01\x00\x01' +p4428 +tp4429 +bsa(dp4430 +g4 +g5 +(g6 +(I0 +tp4431 +g8 +tp4432 +Rp4433 +(I1 +(I4 +tp4434 +g15 +I00 +S'\x00\x01\x00\x01' +p4435 +tp4436 +bsa(dp4437 +g4 +g5 +(g6 +(I0 +tp4438 +g8 +tp4439 +Rp4440 +(I1 +(I4 +tp4441 +g15 +I00 +S'\x01\x00\x00\x00' +p4442 +tp4443 +bsa(dp4444 +g4 +g5 +(g6 +(I0 +tp4445 +g8 +tp4446 +Rp4447 +(I1 +(I4 +tp4448 +g15 +I00 +S'\x00\x01\x00\x00' +p4449 +tp4450 +bsa(dp4451 +g4 +g5 +(g6 +(I0 +tp4452 +g8 +tp4453 +Rp4454 +(I1 +(I4 +tp4455 +g15 +I00 +S'\x00\x01\x00\x00' +p4456 +tp4457 +bsa(dp4458 +g4 +g5 +(g6 +(I0 +tp4459 +g8 +tp4460 +Rp4461 +(I1 +(I4 +tp4462 +g15 +I00 +S'\x00\x01\x00\x00' +p4463 +tp4464 +bsa(dp4465 +g4 +g5 +(g6 +(I0 +tp4466 +g8 +tp4467 +Rp4468 +(I1 +(I4 +tp4469 +g15 +I00 +S'\x00\x01\x00\x01' +p4470 +tp4471 +bsa(dp4472 +g4 +g5 +(g6 +(I0 +tp4473 +g8 +tp4474 +Rp4475 +(I1 +(I4 +tp4476 +g15 +I00 +S'\x00\x01\x00\x00' +p4477 +tp4478 +bsa(dp4479 +g4 +g5 +(g6 +(I0 +tp4480 +g8 +tp4481 +Rp4482 +(I1 +(I4 +tp4483 +g15 +I00 +S'\x00\x01\x00\x00' +p4484 +tp4485 +bsa(dp4486 +g4 +g5 +(g6 +(I0 +tp4487 +g8 +tp4488 +Rp4489 +(I1 +(I4 +tp4490 +g15 +I00 +S'\x00\x01\x00\x00' +p4491 +tp4492 +bsa(dp4493 +g4 +g5 +(g6 +(I0 +tp4494 +g8 +tp4495 +Rp4496 +(I1 +(I4 +tp4497 +g15 +I00 +S'\x01\x00\x01\x00' +p4498 +tp4499 +bsa(dp4500 +g4 +g5 +(g6 +(I0 +tp4501 +g8 +tp4502 +Rp4503 +(I1 +(I4 +tp4504 +g15 +I00 +S'\x00\x01\x00\x00' +p4505 +tp4506 +bsa(dp4507 +g4 +g5 +(g6 +(I0 +tp4508 +g8 +tp4509 +Rp4510 +(I1 +(I4 +tp4511 +g15 +I00 +S'\x01\x00\x01\x00' +p4512 +tp4513 +bsa(dp4514 +g4 +g5 +(g6 +(I0 +tp4515 +g8 +tp4516 +Rp4517 +(I1 +(I4 +tp4518 +g15 +I00 +S'\x00\x01\x00\x00' +p4519 +tp4520 +bsa(dp4521 +g4 +g5 +(g6 +(I0 +tp4522 +g8 +tp4523 +Rp4524 +(I1 +(I4 +tp4525 +g15 +I00 +S'\x01\x00\x01\x00' +p4526 +tp4527 +bsa(dp4528 +g4 +g5 +(g6 +(I0 +tp4529 +g8 +tp4530 +Rp4531 +(I1 +(I4 +tp4532 +g15 +I00 +S'\x01\x00\x00\x00' +p4533 +tp4534 +bsa(dp4535 +g4 +g5 +(g6 +(I0 +tp4536 +g8 +tp4537 +Rp4538 +(I1 +(I4 +tp4539 +g15 +I00 +S'\x00\x01\x00\x01' +p4540 +tp4541 +bsa(dp4542 +g4 +g5 +(g6 +(I0 +tp4543 +g8 +tp4544 +Rp4545 +(I1 +(I4 +tp4546 +g15 +I00 +S'\x00\x01\x00\x00' +p4547 +tp4548 +bsa(dp4549 +g4 +g5 +(g6 +(I0 +tp4550 +g8 +tp4551 +Rp4552 +(I1 +(I4 +tp4553 +g15 +I00 +S'\x00\x01\x00\x00' +p4554 +tp4555 +bsa(dp4556 +g4 +g5 +(g6 +(I0 +tp4557 +g8 +tp4558 +Rp4559 +(I1 +(I4 +tp4560 +g15 +I00 +S'\x00\x00\x00\x00' +p4561 +tp4562 +bsa(dp4563 +g4 +g5 +(g6 +(I0 +tp4564 +g8 +tp4565 +Rp4566 +(I1 +(I4 +tp4567 +g15 +I00 +S'\x00\x01\x00\x01' +p4568 +tp4569 +bsa(dp4570 +g4 +g5 +(g6 +(I0 +tp4571 +g8 +tp4572 +Rp4573 +(I1 +(I4 +tp4574 +g15 +I00 +S'\x00\x01\x00\x00' +p4575 +tp4576 +bsa(dp4577 +g4 +g5 +(g6 +(I0 +tp4578 +g8 +tp4579 +Rp4580 +(I1 +(I4 +tp4581 +g15 +I00 +S'\x00\x00\x00\x00' +p4582 +tp4583 +bsa(dp4584 +g4 +g5 +(g6 +(I0 +tp4585 +g8 +tp4586 +Rp4587 +(I1 +(I4 +tp4588 +g15 +I00 +S'\x00\x00\x00\x01' +p4589 +tp4590 +bsa(dp4591 +g4 +g5 +(g6 +(I0 +tp4592 +g8 +tp4593 +Rp4594 +(I1 +(I4 +tp4595 +g15 +I00 +S'\x00\x00\x01\x00' +p4596 +tp4597 +bsa(dp4598 +g4 +g5 +(g6 +(I0 +tp4599 +g8 +tp4600 +Rp4601 +(I1 +(I4 +tp4602 +g15 +I00 +S'\x00\x01\x00\x00' +p4603 +tp4604 +bsa(dp4605 +g4 +g5 +(g6 +(I0 +tp4606 +g8 +tp4607 +Rp4608 +(I1 +(I4 +tp4609 +g15 +I00 +S'\x00\x00\x00\x01' +p4610 +tp4611 +bsa(dp4612 +g4 +g5 +(g6 +(I0 +tp4613 +g8 +tp4614 +Rp4615 +(I1 +(I4 +tp4616 +g15 +I00 +S'\x01\x00\x01\x00' +p4617 +tp4618 +bsa(dp4619 +g4 +g5 +(g6 +(I0 +tp4620 +g8 +tp4621 +Rp4622 +(I1 +(I4 +tp4623 +g15 +I00 +S'\x00\x01\x00\x01' +p4624 +tp4625 +bsa(dp4626 +g4 +g5 +(g6 +(I0 +tp4627 +g8 +tp4628 +Rp4629 +(I1 +(I4 +tp4630 +g15 +I00 +S'\x00\x01\x00\x01' +p4631 +tp4632 +bsa(dp4633 +g4 +g5 +(g6 +(I0 +tp4634 +g8 +tp4635 +Rp4636 +(I1 +(I4 +tp4637 +g15 +I00 +S'\x01\x00\x01\x00' +p4638 +tp4639 +bsa(dp4640 +g4 +g5 +(g6 +(I0 +tp4641 +g8 +tp4642 +Rp4643 +(I1 +(I4 +tp4644 +g15 +I00 +S'\x01\x01\x00\x00' +p4645 +tp4646 +bsa(dp4647 +g4 +g5 +(g6 +(I0 +tp4648 +g8 +tp4649 +Rp4650 +(I1 +(I4 +tp4651 +g15 +I00 +S'\x01\x01\x01\x00' +p4652 +tp4653 +bsa(dp4654 +g4 +g5 +(g6 +(I0 +tp4655 +g8 +tp4656 +Rp4657 +(I1 +(I4 +tp4658 +g15 +I00 +S'\x00\x01\x00\x01' +p4659 +tp4660 +bsa(dp4661 +g4 +g5 +(g6 +(I0 +tp4662 +g8 +tp4663 +Rp4664 +(I1 +(I4 +tp4665 +g15 +I00 +S'\x00\x01\x00\x00' +p4666 +tp4667 +bsa(dp4668 +g4 +g5 +(g6 +(I0 +tp4669 +g8 +tp4670 +Rp4671 +(I1 +(I4 +tp4672 +g15 +I00 +S'\x01\x00\x00\x00' +p4673 +tp4674 +bsa(dp4675 +g4 +g5 +(g6 +(I0 +tp4676 +g8 +tp4677 +Rp4678 +(I1 +(I4 +tp4679 +g15 +I00 +S'\x00\x01\x00\x00' +p4680 +tp4681 +bsa(dp4682 +g4 +g5 +(g6 +(I0 +tp4683 +g8 +tp4684 +Rp4685 +(I1 +(I4 +tp4686 +g15 +I00 +S'\x00\x01\x00\x00' +p4687 +tp4688 +bsa(dp4689 +g4 +g5 +(g6 +(I0 +tp4690 +g8 +tp4691 +Rp4692 +(I1 +(I4 +tp4693 +g15 +I00 +S'\x00\x01\x00\x01' +p4694 +tp4695 +bsa(dp4696 +g4 +g5 +(g6 +(I0 +tp4697 +g8 +tp4698 +Rp4699 +(I1 +(I4 +tp4700 +g15 +I00 +S'\x00\x01\x00\x00' +p4701 +tp4702 +bsa(dp4703 +g4 +g5 +(g6 +(I0 +tp4704 +g8 +tp4705 +Rp4706 +(I1 +(I4 +tp4707 +g15 +I00 +S'\x00\x01\x00\x00' +p4708 +tp4709 +bsa(dp4710 +g4 +g5 +(g6 +(I0 +tp4711 +g8 +tp4712 +Rp4713 +(I1 +(I4 +tp4714 +g15 +I00 +S'\x00\x00\x00\x01' +p4715 +tp4716 +bsa(dp4717 +g4 +g5 +(g6 +(I0 +tp4718 +g8 +tp4719 +Rp4720 +(I1 +(I4 +tp4721 +g15 +I00 +S'\x00\x01\x00\x00' +p4722 +tp4723 +bsa(dp4724 +g4 +g5 +(g6 +(I0 +tp4725 +g8 +tp4726 +Rp4727 +(I1 +(I4 +tp4728 +g15 +I00 +S'\x00\x01\x00\x01' +p4729 +tp4730 +bsa(dp4731 +g4 +g5 +(g6 +(I0 +tp4732 +g8 +tp4733 +Rp4734 +(I1 +(I4 +tp4735 +g15 +I00 +S'\x00\x01\x00\x00' +p4736 +tp4737 +bsa(dp4738 +g4 +g5 +(g6 +(I0 +tp4739 +g8 +tp4740 +Rp4741 +(I1 +(I4 +tp4742 +g15 +I00 +S'\x01\x00\x01\x00' +p4743 +tp4744 +bsa(dp4745 +g4 +g5 +(g6 +(I0 +tp4746 +g8 +tp4747 +Rp4748 +(I1 +(I4 +tp4749 +g15 +I00 +S'\x00\x00\x00\x00' +p4750 +tp4751 +bsa(dp4752 +g4 +g5 +(g6 +(I0 +tp4753 +g8 +tp4754 +Rp4755 +(I1 +(I4 +tp4756 +g15 +I00 +S'\x00\x01\x00\x00' +p4757 +tp4758 +bsa(dp4759 +g4 +g5 +(g6 +(I0 +tp4760 +g8 +tp4761 +Rp4762 +(I1 +(I4 +tp4763 +g15 +I00 +S'\x00\x00\x00\x01' +p4764 +tp4765 +bsa(dp4766 +g4 +g5 +(g6 +(I0 +tp4767 +g8 +tp4768 +Rp4769 +(I1 +(I4 +tp4770 +g15 +I00 +S'\x00\x01\x00\x00' +p4771 +tp4772 +bsa(dp4773 +g4 +g5 +(g6 +(I0 +tp4774 +g8 +tp4775 +Rp4776 +(I1 +(I4 +tp4777 +g15 +I00 +S'\x00\x01\x00\x01' +p4778 +tp4779 +bsa(dp4780 +g4 +g5 +(g6 +(I0 +tp4781 +g8 +tp4782 +Rp4783 +(I1 +(I4 +tp4784 +g15 +I00 +S'\x00\x01\x00\x00' +p4785 +tp4786 +bsa(dp4787 +g4 +g5 +(g6 +(I0 +tp4788 +g8 +tp4789 +Rp4790 +(I1 +(I4 +tp4791 +g15 +I00 +S'\x00\x01\x00\x01' +p4792 +tp4793 +bsa(dp4794 +g4 +g5 +(g6 +(I0 +tp4795 +g8 +tp4796 +Rp4797 +(I1 +(I4 +tp4798 +g15 +I00 +S'\x00\x01\x00\x01' +p4799 +tp4800 +bsa(dp4801 +g4 +g5 +(g6 +(I0 +tp4802 +g8 +tp4803 +Rp4804 +(I1 +(I4 +tp4805 +g15 +I00 +S'\x00\x00\x01\x00' +p4806 +tp4807 +bsa(dp4808 +g4 +g5 +(g6 +(I0 +tp4809 +g8 +tp4810 +Rp4811 +(I1 +(I4 +tp4812 +g15 +I00 +S'\x00\x01\x00\x00' +p4813 +tp4814 +bsa(dp4815 +g4 +g5 +(g6 +(I0 +tp4816 +g8 +tp4817 +Rp4818 +(I1 +(I4 +tp4819 +g15 +I00 +S'\x00\x01\x00\x00' +p4820 +tp4821 +bsa(dp4822 +g4 +g5 +(g6 +(I0 +tp4823 +g8 +tp4824 +Rp4825 +(I1 +(I4 +tp4826 +g15 +I00 +S'\x00\x01\x00\x00' +p4827 +tp4828 +bsa(dp4829 +g4 +g5 +(g6 +(I0 +tp4830 +g8 +tp4831 +Rp4832 +(I1 +(I4 +tp4833 +g15 +I00 +S'\x00\x01\x00\x00' +p4834 +tp4835 +bsa(dp4836 +g4 +g5 +(g6 +(I0 +tp4837 +g8 +tp4838 +Rp4839 +(I1 +(I4 +tp4840 +g15 +I00 +S'\x00\x01\x00\x01' +p4841 +tp4842 +bsa(dp4843 +g4 +g5 +(g6 +(I0 +tp4844 +g8 +tp4845 +Rp4846 +(I1 +(I4 +tp4847 +g15 +I00 +S'\x00\x00\x00\x00' +p4848 +tp4849 +bsa(dp4850 +g4 +g5 +(g6 +(I0 +tp4851 +g8 +tp4852 +Rp4853 +(I1 +(I4 +tp4854 +g15 +I00 +S'\x01\x00\x00\x00' +p4855 +tp4856 +bsa(dp4857 +g4 +g5 +(g6 +(I0 +tp4858 +g8 +tp4859 +Rp4860 +(I1 +(I4 +tp4861 +g15 +I00 +S'\x00\x01\x00\x01' +p4862 +tp4863 +bsa(dp4864 +g4 +g5 +(g6 +(I0 +tp4865 +g8 +tp4866 +Rp4867 +(I1 +(I4 +tp4868 +g15 +I00 +S'\x00\x01\x00\x00' +p4869 +tp4870 +bsa(dp4871 +g4 +g5 +(g6 +(I0 +tp4872 +g8 +tp4873 +Rp4874 +(I1 +(I4 +tp4875 +g15 +I00 +S'\x00\x01\x00\x00' +p4876 +tp4877 +bsa(dp4878 +g4 +g5 +(g6 +(I0 +tp4879 +g8 +tp4880 +Rp4881 +(I1 +(I4 +tp4882 +g15 +I00 +S'\x00\x01\x00\x00' +p4883 +tp4884 +bsa(dp4885 +g4 +g5 +(g6 +(I0 +tp4886 +g8 +tp4887 +Rp4888 +(I1 +(I4 +tp4889 +g15 +I00 +S'\x00\x01\x00\x00' +p4890 +tp4891 +bsa(dp4892 +g4 +g5 +(g6 +(I0 +tp4893 +g8 +tp4894 +Rp4895 +(I1 +(I4 +tp4896 +g15 +I00 +S'\x00\x01\x00\x01' +p4897 +tp4898 +bsa(dp4899 +g4 +g5 +(g6 +(I0 +tp4900 +g8 +tp4901 +Rp4902 +(I1 +(I4 +tp4903 +g15 +I00 +S'\x00\x01\x00\x01' +p4904 +tp4905 +bsa(dp4906 +g4 +g5 +(g6 +(I0 +tp4907 +g8 +tp4908 +Rp4909 +(I1 +(I4 +tp4910 +g15 +I00 +S'\x01\x00\x00\x00' +p4911 +tp4912 +bsa(dp4913 +g4 +g5 +(g6 +(I0 +tp4914 +g8 +tp4915 +Rp4916 +(I1 +(I4 +tp4917 +g15 +I00 +S'\x00\x01\x00\x01' +p4918 +tp4919 +bsa(dp4920 +g4 +g5 +(g6 +(I0 +tp4921 +g8 +tp4922 +Rp4923 +(I1 +(I4 +tp4924 +g15 +I00 +S'\x00\x01\x00\x01' +p4925 +tp4926 +bsa(dp4927 +g4 +g5 +(g6 +(I0 +tp4928 +g8 +tp4929 +Rp4930 +(I1 +(I4 +tp4931 +g15 +I00 +S'\x00\x01\x00\x01' +p4932 +tp4933 +bsa(dp4934 +g4 +g5 +(g6 +(I0 +tp4935 +g8 +tp4936 +Rp4937 +(I1 +(I4 +tp4938 +g15 +I00 +S'\x01\x00\x01\x00' +p4939 +tp4940 +bsa(dp4941 +g4 +g5 +(g6 +(I0 +tp4942 +g8 +tp4943 +Rp4944 +(I1 +(I4 +tp4945 +g15 +I00 +S'\x00\x00\x01\x00' +p4946 +tp4947 +bsa(dp4948 +g4 +g5 +(g6 +(I0 +tp4949 +g8 +tp4950 +Rp4951 +(I1 +(I4 +tp4952 +g15 +I00 +S'\x00\x00\x01\x00' +p4953 +tp4954 +bsa(dp4955 +g4 +g5 +(g6 +(I0 +tp4956 +g8 +tp4957 +Rp4958 +(I1 +(I4 +tp4959 +g15 +I00 +S'\x00\x00\x01\x00' +p4960 +tp4961 +bsa(dp4962 +g4 +g5 +(g6 +(I0 +tp4963 +g8 +tp4964 +Rp4965 +(I1 +(I4 +tp4966 +g15 +I00 +S'\x00\x01\x00\x00' +p4967 +tp4968 +bsa(dp4969 +g4 +g5 +(g6 +(I0 +tp4970 +g8 +tp4971 +Rp4972 +(I1 +(I4 +tp4973 +g15 +I00 +S'\x01\x00\x00\x00' +p4974 +tp4975 +bsa(dp4976 +g4 +g5 +(g6 +(I0 +tp4977 +g8 +tp4978 +Rp4979 +(I1 +(I4 +tp4980 +g15 +I00 +S'\x00\x00\x00\x01' +p4981 +tp4982 +bsa(dp4983 +g4 +g5 +(g6 +(I0 +tp4984 +g8 +tp4985 +Rp4986 +(I1 +(I4 +tp4987 +g15 +I00 +S'\x00\x01\x00\x00' +p4988 +tp4989 +bsa(dp4990 +g4 +g5 +(g6 +(I0 +tp4991 +g8 +tp4992 +Rp4993 +(I1 +(I4 +tp4994 +g15 +I00 +S'\x00\x01\x00\x01' +p4995 +tp4996 +bsa(dp4997 +g4 +g5 +(g6 +(I0 +tp4998 +g8 +tp4999 +Rp5000 +(I1 +(I4 +tp5001 +g15 +I00 +S'\x00\x01\x00\x00' +p5002 +tp5003 +bsa(dp5004 +g4 +g5 +(g6 +(I0 +tp5005 +g8 +tp5006 +Rp5007 +(I1 +(I4 +tp5008 +g15 +I00 +S'\x01\x00\x01\x00' +p5009 +tp5010 +bsa(dp5011 +g4 +g5 +(g6 +(I0 +tp5012 +g8 +tp5013 +Rp5014 +(I1 +(I4 +tp5015 +g15 +I00 +S'\x00\x01\x00\x00' +p5016 +tp5017 +bsa(dp5018 +g4 +g5 +(g6 +(I0 +tp5019 +g8 +tp5020 +Rp5021 +(I1 +(I4 +tp5022 +g15 +I00 +S'\x00\x01\x00\x01' +p5023 +tp5024 +bsa(dp5025 +g4 +g5 +(g6 +(I0 +tp5026 +g8 +tp5027 +Rp5028 +(I1 +(I4 +tp5029 +g15 +I00 +S'\x00\x00\x00\x01' +p5030 +tp5031 +bsa(dp5032 +g4 +g5 +(g6 +(I0 +tp5033 +g8 +tp5034 +Rp5035 +(I1 +(I4 +tp5036 +g15 +I00 +S'\x00\x01\x00\x01' +p5037 +tp5038 +bsa(dp5039 +g4 +g5 +(g6 +(I0 +tp5040 +g8 +tp5041 +Rp5042 +(I1 +(I4 +tp5043 +g15 +I00 +S'\x00\x00\x01\x00' +p5044 +tp5045 +bsa(dp5046 +g4 +g5 +(g6 +(I0 +tp5047 +g8 +tp5048 +Rp5049 +(I1 +(I4 +tp5050 +g15 +I00 +S'\x00\x01\x00\x01' +p5051 +tp5052 +bsa(dp5053 +g4 +g5 +(g6 +(I0 +tp5054 +g8 +tp5055 +Rp5056 +(I1 +(I4 +tp5057 +g15 +I00 +S'\x00\x00\x01\x00' +p5058 +tp5059 +bsa(dp5060 +g4 +g5 +(g6 +(I0 +tp5061 +g8 +tp5062 +Rp5063 +(I1 +(I4 +tp5064 +g15 +I00 +S'\x01\x00\x00\x00' +p5065 +tp5066 +bsa(dp5067 +g4 +g5 +(g6 +(I0 +tp5068 +g8 +tp5069 +Rp5070 +(I1 +(I4 +tp5071 +g15 +I00 +S'\x00\x00\x01\x00' +p5072 +tp5073 +bsa(dp5074 +g4 +g5 +(g6 +(I0 +tp5075 +g8 +tp5076 +Rp5077 +(I1 +(I4 +tp5078 +g15 +I00 +S'\x00\x01\x00\x00' +p5079 +tp5080 +bsa(dp5081 +g4 +g5 +(g6 +(I0 +tp5082 +g8 +tp5083 +Rp5084 +(I1 +(I4 +tp5085 +g15 +I00 +S'\x01\x00\x00\x00' +p5086 +tp5087 +bsa(dp5088 +g4 +g5 +(g6 +(I0 +tp5089 +g8 +tp5090 +Rp5091 +(I1 +(I4 +tp5092 +g15 +I00 +S'\x00\x01\x00\x01' +p5093 +tp5094 +bsa(dp5095 +g4 +g5 +(g6 +(I0 +tp5096 +g8 +tp5097 +Rp5098 +(I1 +(I4 +tp5099 +g15 +I00 +S'\x01\x00\x00\x00' +p5100 +tp5101 +bsa(dp5102 +g4 +g5 +(g6 +(I0 +tp5103 +g8 +tp5104 +Rp5105 +(I1 +(I4 +tp5106 +g15 +I00 +S'\x01\x00\x01\x00' +p5107 +tp5108 +bsa(dp5109 +g4 +g5 +(g6 +(I0 +tp5110 +g8 +tp5111 +Rp5112 +(I1 +(I4 +tp5113 +g15 +I00 +S'\x00\x01\x00\x00' +p5114 +tp5115 +bsa(dp5116 +g4 +g5 +(g6 +(I0 +tp5117 +g8 +tp5118 +Rp5119 +(I1 +(I4 +tp5120 +g15 +I00 +S'\x01\x00\x01\x00' +p5121 +tp5122 +bsa(dp5123 +g4 +g5 +(g6 +(I0 +tp5124 +g8 +tp5125 +Rp5126 +(I1 +(I4 +tp5127 +g15 +I00 +S'\x00\x01\x00\x00' +p5128 +tp5129 +bsa(dp5130 +g4 +g5 +(g6 +(I0 +tp5131 +g8 +tp5132 +Rp5133 +(I1 +(I4 +tp5134 +g15 +I00 +S'\x00\x01\x00\x01' +p5135 +tp5136 +bsa(dp5137 +g4 +g5 +(g6 +(I0 +tp5138 +g8 +tp5139 +Rp5140 +(I1 +(I4 +tp5141 +g15 +I00 +S'\x00\x01\x00\x01' +p5142 +tp5143 +bsa(dp5144 +g4 +g5 +(g6 +(I0 +tp5145 +g8 +tp5146 +Rp5147 +(I1 +(I4 +tp5148 +g15 +I00 +S'\x00\x01\x00\x01' +p5149 +tp5150 +bsa(dp5151 +g4 +g5 +(g6 +(I0 +tp5152 +g8 +tp5153 +Rp5154 +(I1 +(I4 +tp5155 +g15 +I00 +S'\x01\x00\x00\x00' +p5156 +tp5157 +bsa(dp5158 +g4 +g5 +(g6 +(I0 +tp5159 +g8 +tp5160 +Rp5161 +(I1 +(I4 +tp5162 +g15 +I00 +S'\x00\x01\x00\x00' +p5163 +tp5164 +bsa(dp5165 +g4 +g5 +(g6 +(I0 +tp5166 +g8 +tp5167 +Rp5168 +(I1 +(I4 +tp5169 +g15 +I00 +S'\x00\x01\x00\x00' +p5170 +tp5171 +bsa(dp5172 +g4 +g5 +(g6 +(I0 +tp5173 +g8 +tp5174 +Rp5175 +(I1 +(I4 +tp5176 +g15 +I00 +S'\x00\x01\x00\x00' +p5177 +tp5178 +bsa(dp5179 +g4 +g5 +(g6 +(I0 +tp5180 +g8 +tp5181 +Rp5182 +(I1 +(I4 +tp5183 +g15 +I00 +S'\x00\x01\x00\x01' +p5184 +tp5185 +bsa(dp5186 +g4 +g5 +(g6 +(I0 +tp5187 +g8 +tp5188 +Rp5189 +(I1 +(I4 +tp5190 +g15 +I00 +S'\x00\x01\x00\x01' +p5191 +tp5192 +bsa(dp5193 +g4 +g5 +(g6 +(I0 +tp5194 +g8 +tp5195 +Rp5196 +(I1 +(I4 +tp5197 +g15 +I00 +S'\x00\x00\x00\x00' +p5198 +tp5199 +bsa(dp5200 +g4 +g5 +(g6 +(I0 +tp5201 +g8 +tp5202 +Rp5203 +(I1 +(I4 +tp5204 +g15 +I00 +S'\x00\x01\x00\x00' +p5205 +tp5206 +bsa(dp5207 +g4 +g5 +(g6 +(I0 +tp5208 +g8 +tp5209 +Rp5210 +(I1 +(I4 +tp5211 +g15 +I00 +S'\x00\x01\x00\x01' +p5212 +tp5213 +bsa(dp5214 +g4 +g5 +(g6 +(I0 +tp5215 +g8 +tp5216 +Rp5217 +(I1 +(I4 +tp5218 +g15 +I00 +S'\x00\x01\x00\x00' +p5219 +tp5220 +bsa(dp5221 +g4 +g5 +(g6 +(I0 +tp5222 +g8 +tp5223 +Rp5224 +(I1 +(I4 +tp5225 +g15 +I00 +S'\x00\x01\x00\x01' +p5226 +tp5227 +bsa(dp5228 +g4 +g5 +(g6 +(I0 +tp5229 +g8 +tp5230 +Rp5231 +(I1 +(I4 +tp5232 +g15 +I00 +S'\x00\x00\x00\x00' +p5233 +tp5234 +bsa(dp5235 +g4 +g5 +(g6 +(I0 +tp5236 +g8 +tp5237 +Rp5238 +(I1 +(I4 +tp5239 +g15 +I00 +S'\x00\x01\x00\x00' +p5240 +tp5241 +bsa(dp5242 +g4 +g5 +(g6 +(I0 +tp5243 +g8 +tp5244 +Rp5245 +(I1 +(I4 +tp5246 +g15 +I00 +S'\x00\x01\x00\x01' +p5247 +tp5248 +bsa(dp5249 +g4 +g5 +(g6 +(I0 +tp5250 +g8 +tp5251 +Rp5252 +(I1 +(I4 +tp5253 +g15 +I00 +S'\x00\x01\x00\x00' +p5254 +tp5255 +bsa(dp5256 +g4 +g5 +(g6 +(I0 +tp5257 +g8 +tp5258 +Rp5259 +(I1 +(I4 +tp5260 +g15 +I00 +S'\x00\x01\x00\x00' +p5261 +tp5262 +bsa(dp5263 +g4 +g5 +(g6 +(I0 +tp5264 +g8 +tp5265 +Rp5266 +(I1 +(I4 +tp5267 +g15 +I00 +S'\x00\x01\x00\x01' +p5268 +tp5269 +bsa(dp5270 +g4 +g5 +(g6 +(I0 +tp5271 +g8 +tp5272 +Rp5273 +(I1 +(I4 +tp5274 +g15 +I00 +S'\x00\x00\x00\x00' +p5275 +tp5276 +bsa(dp5277 +g4 +g5 +(g6 +(I0 +tp5278 +g8 +tp5279 +Rp5280 +(I1 +(I4 +tp5281 +g15 +I00 +S'\x00\x01\x00\x01' +p5282 +tp5283 +bsa(dp5284 +g4 +g5 +(g6 +(I0 +tp5285 +g8 +tp5286 +Rp5287 +(I1 +(I4 +tp5288 +g15 +I00 +S'\x00\x01\x00\x00' +p5289 +tp5290 +bsa(dp5291 +g4 +g5 +(g6 +(I0 +tp5292 +g8 +tp5293 +Rp5294 +(I1 +(I4 +tp5295 +g15 +I00 +S'\x00\x01\x00\x01' +p5296 +tp5297 +bsa(dp5298 +g4 +g5 +(g6 +(I0 +tp5299 +g8 +tp5300 +Rp5301 +(I1 +(I4 +tp5302 +g15 +I00 +S'\x00\x01\x00\x01' +p5303 +tp5304 +bsa(dp5305 +g4 +g5 +(g6 +(I0 +tp5306 +g8 +tp5307 +Rp5308 +(I1 +(I4 +tp5309 +g15 +I00 +S'\x00\x01\x00\x01' +p5310 +tp5311 +bsa(dp5312 +g4 +g5 +(g6 +(I0 +tp5313 +g8 +tp5314 +Rp5315 +(I1 +(I4 +tp5316 +g15 +I00 +S'\x00\x01\x00\x00' +p5317 +tp5318 +bsa(dp5319 +g4 +g5 +(g6 +(I0 +tp5320 +g8 +tp5321 +Rp5322 +(I1 +(I4 +tp5323 +g15 +I00 +S'\x00\x00\x00\x00' +p5324 +tp5325 +bsa(dp5326 +g4 +g5 +(g6 +(I0 +tp5327 +g8 +tp5328 +Rp5329 +(I1 +(I4 +tp5330 +g15 +I00 +S'\x00\x01\x00\x00' +p5331 +tp5332 +bsa(dp5333 +g4 +g5 +(g6 +(I0 +tp5334 +g8 +tp5335 +Rp5336 +(I1 +(I4 +tp5337 +g15 +I00 +S'\x00\x01\x00\x01' +p5338 +tp5339 +bsa(dp5340 +g4 +g5 +(g6 +(I0 +tp5341 +g8 +tp5342 +Rp5343 +(I1 +(I4 +tp5344 +g15 +I00 +S'\x00\x00\x00\x01' +p5345 +tp5346 +bsa(dp5347 +g4 +g5 +(g6 +(I0 +tp5348 +g8 +tp5349 +Rp5350 +(I1 +(I4 +tp5351 +g15 +I00 +S'\x00\x00\x00\x01' +p5352 +tp5353 +bsa(dp5354 +g4 +g5 +(g6 +(I0 +tp5355 +g8 +tp5356 +Rp5357 +(I1 +(I4 +tp5358 +g15 +I00 +S'\x00\x00\x00\x00' +p5359 +tp5360 +bsa(dp5361 +g4 +g5 +(g6 +(I0 +tp5362 +g8 +tp5363 +Rp5364 +(I1 +(I4 +tp5365 +g15 +I00 +S'\x00\x01\x00\x00' +p5366 +tp5367 +bsa(dp5368 +g4 +g5 +(g6 +(I0 +tp5369 +g8 +tp5370 +Rp5371 +(I1 +(I4 +tp5372 +g15 +I00 +S'\x00\x01\x00\x00' +p5373 +tp5374 +bsa(dp5375 +g4 +g5 +(g6 +(I0 +tp5376 +g8 +tp5377 +Rp5378 +(I1 +(I4 +tp5379 +g15 +I00 +S'\x00\x01\x00\x00' +p5380 +tp5381 +bsa(dp5382 +g4 +g5 +(g6 +(I0 +tp5383 +g8 +tp5384 +Rp5385 +(I1 +(I4 +tp5386 +g15 +I00 +S'\x00\x01\x00\x00' +p5387 +tp5388 +bsa(dp5389 +g4 +g5 +(g6 +(I0 +tp5390 +g8 +tp5391 +Rp5392 +(I1 +(I4 +tp5393 +g15 +I00 +S'\x00\x01\x00\x00' +p5394 +tp5395 +bsa(dp5396 +g4 +g5 +(g6 +(I0 +tp5397 +g8 +tp5398 +Rp5399 +(I1 +(I4 +tp5400 +g15 +I00 +S'\x00\x01\x00\x01' +p5401 +tp5402 +bsa(dp5403 +g4 +g5 +(g6 +(I0 +tp5404 +g8 +tp5405 +Rp5406 +(I1 +(I4 +tp5407 +g15 +I00 +S'\x00\x01\x00\x01' +p5408 +tp5409 +bsa(dp5410 +g4 +g5 +(g6 +(I0 +tp5411 +g8 +tp5412 +Rp5413 +(I1 +(I4 +tp5414 +g15 +I00 +S'\x00\x01\x00\x00' +p5415 +tp5416 +bsa(dp5417 +g4 +g5 +(g6 +(I0 +tp5418 +g8 +tp5419 +Rp5420 +(I1 +(I4 +tp5421 +g15 +I00 +S'\x00\x01\x00\x00' +p5422 +tp5423 +bsa(dp5424 +g4 +g5 +(g6 +(I0 +tp5425 +g8 +tp5426 +Rp5427 +(I1 +(I4 +tp5428 +g15 +I00 +S'\x01\x00\x00\x00' +p5429 +tp5430 +bsa(dp5431 +g4 +g5 +(g6 +(I0 +tp5432 +g8 +tp5433 +Rp5434 +(I1 +(I4 +tp5435 +g15 +I00 +S'\x00\x00\x00\x00' +p5436 +tp5437 +bsa(dp5438 +g4 +g5 +(g6 +(I0 +tp5439 +g8 +tp5440 +Rp5441 +(I1 +(I4 +tp5442 +g15 +I00 +S'\x00\x01\x00\x01' +p5443 +tp5444 +bsa(dp5445 +g4 +g5 +(g6 +(I0 +tp5446 +g8 +tp5447 +Rp5448 +(I1 +(I4 +tp5449 +g15 +I00 +S'\x00\x01\x00\x01' +p5450 +tp5451 +bsa(dp5452 +g4 +g5 +(g6 +(I0 +tp5453 +g8 +tp5454 +Rp5455 +(I1 +(I4 +tp5456 +g15 +I00 +S'\x00\x00\x01\x00' +p5457 +tp5458 +bsa(dp5459 +g4 +g5 +(g6 +(I0 +tp5460 +g8 +tp5461 +Rp5462 +(I1 +(I4 +tp5463 +g15 +I00 +S'\x00\x01\x00\x01' +p5464 +tp5465 +bsa(dp5466 +g4 +g5 +(g6 +(I0 +tp5467 +g8 +tp5468 +Rp5469 +(I1 +(I4 +tp5470 +g15 +I00 +S'\x00\x01\x00\x00' +p5471 +tp5472 +bsa(dp5473 +g4 +g5 +(g6 +(I0 +tp5474 +g8 +tp5475 +Rp5476 +(I1 +(I4 +tp5477 +g15 +I00 +S'\x00\x01\x00\x00' +p5478 +tp5479 +bsa(dp5480 +g4 +g5 +(g6 +(I0 +tp5481 +g8 +tp5482 +Rp5483 +(I1 +(I4 +tp5484 +g15 +I00 +S'\x01\x00\x00\x00' +p5485 +tp5486 +bsa(dp5487 +g4 +g5 +(g6 +(I0 +tp5488 +g8 +tp5489 +Rp5490 +(I1 +(I4 +tp5491 +g15 +I00 +S'\x00\x01\x00\x00' +p5492 +tp5493 +bsa(dp5494 +g4 +g5 +(g6 +(I0 +tp5495 +g8 +tp5496 +Rp5497 +(I1 +(I4 +tp5498 +g15 +I00 +S'\x00\x01\x00\x01' +p5499 +tp5500 +bsa(dp5501 +g4 +g5 +(g6 +(I0 +tp5502 +g8 +tp5503 +Rp5504 +(I1 +(I4 +tp5505 +g15 +I00 +S'\x01\x01\x00\x00' +p5506 +tp5507 +bsa(dp5508 +g4 +g5 +(g6 +(I0 +tp5509 +g8 +tp5510 +Rp5511 +(I1 +(I4 +tp5512 +g15 +I00 +S'\x00\x00\x00\x00' +p5513 +tp5514 +bsa(dp5515 +g4 +g5 +(g6 +(I0 +tp5516 +g8 +tp5517 +Rp5518 +(I1 +(I4 +tp5519 +g15 +I00 +S'\x00\x01\x00\x00' +p5520 +tp5521 +bsa(dp5522 +g4 +g5 +(g6 +(I0 +tp5523 +g8 +tp5524 +Rp5525 +(I1 +(I4 +tp5526 +g15 +I00 +S'\x00\x01\x00\x00' +p5527 +tp5528 +bsa(dp5529 +g4 +g5 +(g6 +(I0 +tp5530 +g8 +tp5531 +Rp5532 +(I1 +(I4 +tp5533 +g15 +I00 +S'\x00\x01\x00\x00' +p5534 +tp5535 +bsa(dp5536 +g4 +g5 +(g6 +(I0 +tp5537 +g8 +tp5538 +Rp5539 +(I1 +(I4 +tp5540 +g15 +I00 +S'\x00\x00\x01\x00' +p5541 +tp5542 +bsa(dp5543 +g4 +g5 +(g6 +(I0 +tp5544 +g8 +tp5545 +Rp5546 +(I1 +(I4 +tp5547 +g15 +I00 +S'\x00\x01\x00\x00' +p5548 +tp5549 +bsa(dp5550 +g4 +g5 +(g6 +(I0 +tp5551 +g8 +tp5552 +Rp5553 +(I1 +(I4 +tp5554 +g15 +I00 +S'\x00\x01\x00\x00' +p5555 +tp5556 +bsa(dp5557 +g4 +g5 +(g6 +(I0 +tp5558 +g8 +tp5559 +Rp5560 +(I1 +(I4 +tp5561 +g15 +I00 +S'\x00\x00\x00\x00' +p5562 +tp5563 +bsa(dp5564 +g4 +g5 +(g6 +(I0 +tp5565 +g8 +tp5566 +Rp5567 +(I1 +(I4 +tp5568 +g15 +I00 +S'\x00\x01\x00\x00' +p5569 +tp5570 +bsa(dp5571 +g4 +g5 +(g6 +(I0 +tp5572 +g8 +tp5573 +Rp5574 +(I1 +(I4 +tp5575 +g15 +I00 +S'\x01\x00\x00\x00' +p5576 +tp5577 +bsa(dp5578 +g4 +g5 +(g6 +(I0 +tp5579 +g8 +tp5580 +Rp5581 +(I1 +(I4 +tp5582 +g15 +I00 +S'\x00\x01\x00\x01' +p5583 +tp5584 +bsa(dp5585 +g4 +g5 +(g6 +(I0 +tp5586 +g8 +tp5587 +Rp5588 +(I1 +(I4 +tp5589 +g15 +I00 +S'\x00\x00\x00\x00' +p5590 +tp5591 +bsa(dp5592 +g4 +g5 +(g6 +(I0 +tp5593 +g8 +tp5594 +Rp5595 +(I1 +(I4 +tp5596 +g15 +I00 +S'\x00\x01\x00\x00' +p5597 +tp5598 +bsa(dp5599 +g4 +g5 +(g6 +(I0 +tp5600 +g8 +tp5601 +Rp5602 +(I1 +(I4 +tp5603 +g15 +I00 +S'\x00\x01\x00\x01' +p5604 +tp5605 +bsa(dp5606 +g4 +g5 +(g6 +(I0 +tp5607 +g8 +tp5608 +Rp5609 +(I1 +(I4 +tp5610 +g15 +I00 +S'\x00\x00\x00\x01' +p5611 +tp5612 +bsa(dp5613 +g4 +g5 +(g6 +(I0 +tp5614 +g8 +tp5615 +Rp5616 +(I1 +(I4 +tp5617 +g15 +I00 +S'\x00\x01\x00\x01' +p5618 +tp5619 +bsa(dp5620 +g4 +g5 +(g6 +(I0 +tp5621 +g8 +tp5622 +Rp5623 +(I1 +(I4 +tp5624 +g15 +I00 +S'\x00\x01\x00\x00' +p5625 +tp5626 +bsa(dp5627 +g4 +g5 +(g6 +(I0 +tp5628 +g8 +tp5629 +Rp5630 +(I1 +(I4 +tp5631 +g15 +I00 +S'\x00\x01\x00\x01' +p5632 +tp5633 +bsa(dp5634 +g4 +g5 +(g6 +(I0 +tp5635 +g8 +tp5636 +Rp5637 +(I1 +(I4 +tp5638 +g15 +I00 +S'\x01\x01\x01\x00' +p5639 +tp5640 +bsa(dp5641 +g4 +g5 +(g6 +(I0 +tp5642 +g8 +tp5643 +Rp5644 +(I1 +(I4 +tp5645 +g15 +I00 +S'\x00\x00\x01\x00' +p5646 +tp5647 +bsa(dp5648 +g4 +g5 +(g6 +(I0 +tp5649 +g8 +tp5650 +Rp5651 +(I1 +(I4 +tp5652 +g15 +I00 +S'\x00\x01\x00\x01' +p5653 +tp5654 +bsa(dp5655 +g4 +g5 +(g6 +(I0 +tp5656 +g8 +tp5657 +Rp5658 +(I1 +(I4 +tp5659 +g15 +I00 +S'\x00\x01\x00\x00' +p5660 +tp5661 +bsa(dp5662 +g4 +g5 +(g6 +(I0 +tp5663 +g8 +tp5664 +Rp5665 +(I1 +(I4 +tp5666 +g15 +I00 +S'\x01\x00\x00\x00' +p5667 +tp5668 +bsa(dp5669 +g4 +g5 +(g6 +(I0 +tp5670 +g8 +tp5671 +Rp5672 +(I1 +(I4 +tp5673 +g15 +I00 +S'\x00\x01\x00\x00' +p5674 +tp5675 +bsa(dp5676 +g4 +g5 +(g6 +(I0 +tp5677 +g8 +tp5678 +Rp5679 +(I1 +(I4 +tp5680 +g15 +I00 +S'\x01\x00\x00\x00' +p5681 +tp5682 +bsa(dp5683 +g4 +g5 +(g6 +(I0 +tp5684 +g8 +tp5685 +Rp5686 +(I1 +(I4 +tp5687 +g15 +I00 +S'\x00\x00\x00\x00' +p5688 +tp5689 +bsa(dp5690 +g4 +g5 +(g6 +(I0 +tp5691 +g8 +tp5692 +Rp5693 +(I1 +(I4 +tp5694 +g15 +I00 +S'\x00\x00\x00\x01' +p5695 +tp5696 +bsa(dp5697 +g4 +g5 +(g6 +(I0 +tp5698 +g8 +tp5699 +Rp5700 +(I1 +(I4 +tp5701 +g15 +I00 +S'\x01\x00\x00\x00' +p5702 +tp5703 +bsa(dp5704 +g4 +g5 +(g6 +(I0 +tp5705 +g8 +tp5706 +Rp5707 +(I1 +(I4 +tp5708 +g15 +I00 +S'\x00\x00\x00\x00' +p5709 +tp5710 +bsa(dp5711 +g4 +g5 +(g6 +(I0 +tp5712 +g8 +tp5713 +Rp5714 +(I1 +(I4 +tp5715 +g15 +I00 +S'\x00\x01\x00\x00' +p5716 +tp5717 +bsa(dp5718 +g4 +g5 +(g6 +(I0 +tp5719 +g8 +tp5720 +Rp5721 +(I1 +(I4 +tp5722 +g15 +I00 +S'\x00\x01\x00\x00' +p5723 +tp5724 +bsa(dp5725 +g4 +g5 +(g6 +(I0 +tp5726 +g8 +tp5727 +Rp5728 +(I1 +(I4 +tp5729 +g15 +I00 +S'\x00\x01\x00\x01' +p5730 +tp5731 +bsa(dp5732 +g4 +g5 +(g6 +(I0 +tp5733 +g8 +tp5734 +Rp5735 +(I1 +(I4 +tp5736 +g15 +I00 +S'\x00\x00\x00\x00' +p5737 +tp5738 +bsa(dp5739 +g4 +g5 +(g6 +(I0 +tp5740 +g8 +tp5741 +Rp5742 +(I1 +(I4 +tp5743 +g15 +I00 +S'\x01\x01\x00\x00' +p5744 +tp5745 +bsa(dp5746 +g4 +g5 +(g6 +(I0 +tp5747 +g8 +tp5748 +Rp5749 +(I1 +(I4 +tp5750 +g15 +I00 +S'\x01\x00\x00\x00' +p5751 +tp5752 +bsa(dp5753 +g4 +g5 +(g6 +(I0 +tp5754 +g8 +tp5755 +Rp5756 +(I1 +(I4 +tp5757 +g15 +I00 +S'\x00\x01\x00\x01' +p5758 +tp5759 +bsa(dp5760 +g4 +g5 +(g6 +(I0 +tp5761 +g8 +tp5762 +Rp5763 +(I1 +(I4 +tp5764 +g15 +I00 +S'\x01\x00\x01\x00' +p5765 +tp5766 +bsa(dp5767 +g4 +g5 +(g6 +(I0 +tp5768 +g8 +tp5769 +Rp5770 +(I1 +(I4 +tp5771 +g15 +I00 +S'\x00\x00\x01\x00' +p5772 +tp5773 +bsa(dp5774 +g4 +g5 +(g6 +(I0 +tp5775 +g8 +tp5776 +Rp5777 +(I1 +(I4 +tp5778 +g15 +I00 +S'\x00\x01\x00\x00' +p5779 +tp5780 +bsa(dp5781 +g4 +g5 +(g6 +(I0 +tp5782 +g8 +tp5783 +Rp5784 +(I1 +(I4 +tp5785 +g15 +I00 +S'\x01\x00\x00\x00' +p5786 +tp5787 +bsa(dp5788 +g4 +g5 +(g6 +(I0 +tp5789 +g8 +tp5790 +Rp5791 +(I1 +(I4 +tp5792 +g15 +I00 +S'\x00\x01\x00\x00' +p5793 +tp5794 +bsa(dp5795 +g4 +g5 +(g6 +(I0 +tp5796 +g8 +tp5797 +Rp5798 +(I1 +(I4 +tp5799 +g15 +I00 +S'\x00\x00\x00\x00' +p5800 +tp5801 +bsa(dp5802 +g4 +g5 +(g6 +(I0 +tp5803 +g8 +tp5804 +Rp5805 +(I1 +(I4 +tp5806 +g15 +I00 +S'\x00\x01\x00\x01' +p5807 +tp5808 +bsa(dp5809 +g4 +g5 +(g6 +(I0 +tp5810 +g8 +tp5811 +Rp5812 +(I1 +(I4 +tp5813 +g15 +I00 +S'\x00\x01\x00\x00' +p5814 +tp5815 +bsa(dp5816 +g4 +g5 +(g6 +(I0 +tp5817 +g8 +tp5818 +Rp5819 +(I1 +(I4 +tp5820 +g15 +I00 +S'\x00\x00\x00\x00' +p5821 +tp5822 +bsa(dp5823 +g4 +g5 +(g6 +(I0 +tp5824 +g8 +tp5825 +Rp5826 +(I1 +(I4 +tp5827 +g15 +I00 +S'\x00\x01\x00\x00' +p5828 +tp5829 +bsa(dp5830 +g4 +g5 +(g6 +(I0 +tp5831 +g8 +tp5832 +Rp5833 +(I1 +(I4 +tp5834 +g15 +I00 +S'\x01\x01\x00\x00' +p5835 +tp5836 +bsa(dp5837 +g4 +g5 +(g6 +(I0 +tp5838 +g8 +tp5839 +Rp5840 +(I1 +(I4 +tp5841 +g15 +I00 +S'\x00\x01\x00\x00' +p5842 +tp5843 +bsa(dp5844 +g4 +g5 +(g6 +(I0 +tp5845 +g8 +tp5846 +Rp5847 +(I1 +(I4 +tp5848 +g15 +I00 +S'\x00\x01\x00\x00' +p5849 +tp5850 +bsa(dp5851 +g4 +g5 +(g6 +(I0 +tp5852 +g8 +tp5853 +Rp5854 +(I1 +(I4 +tp5855 +g15 +I00 +S'\x00\x01\x00\x00' +p5856 +tp5857 +bsa(dp5858 +g4 +g5 +(g6 +(I0 +tp5859 +g8 +tp5860 +Rp5861 +(I1 +(I4 +tp5862 +g15 +I00 +S'\x01\x00\x01\x00' +p5863 +tp5864 +bsa(dp5865 +g4 +g5 +(g6 +(I0 +tp5866 +g8 +tp5867 +Rp5868 +(I1 +(I4 +tp5869 +g15 +I00 +S'\x00\x01\x00\x01' +p5870 +tp5871 +bsa(dp5872 +g4 +g5 +(g6 +(I0 +tp5873 +g8 +tp5874 +Rp5875 +(I1 +(I4 +tp5876 +g15 +I00 +S'\x00\x01\x00\x00' +p5877 +tp5878 +bsa(dp5879 +g4 +g5 +(g6 +(I0 +tp5880 +g8 +tp5881 +Rp5882 +(I1 +(I4 +tp5883 +g15 +I00 +S'\x01\x00\x00\x00' +p5884 +tp5885 +bsa(dp5886 +g4 +g5 +(g6 +(I0 +tp5887 +g8 +tp5888 +Rp5889 +(I1 +(I4 +tp5890 +g15 +I00 +S'\x00\x01\x00\x00' +p5891 +tp5892 +bsa(dp5893 +g4 +g5 +(g6 +(I0 +tp5894 +g8 +tp5895 +Rp5896 +(I1 +(I4 +tp5897 +g15 +I00 +S'\x01\x00\x01\x00' +p5898 +tp5899 +bsa(dp5900 +g4 +g5 +(g6 +(I0 +tp5901 +g8 +tp5902 +Rp5903 +(I1 +(I4 +tp5904 +g15 +I00 +S'\x00\x00\x00\x00' +p5905 +tp5906 +bsa(dp5907 +g4 +g5 +(g6 +(I0 +tp5908 +g8 +tp5909 +Rp5910 +(I1 +(I4 +tp5911 +g15 +I00 +S'\x00\x01\x00\x01' +p5912 +tp5913 +bsa(dp5914 +g4 +g5 +(g6 +(I0 +tp5915 +g8 +tp5916 +Rp5917 +(I1 +(I4 +tp5918 +g15 +I00 +S'\x00\x01\x00\x00' +p5919 +tp5920 +bsa(dp5921 +g4 +g5 +(g6 +(I0 +tp5922 +g8 +tp5923 +Rp5924 +(I1 +(I4 +tp5925 +g15 +I00 +S'\x00\x01\x00\x00' +p5926 +tp5927 +bsa(dp5928 +g4 +g5 +(g6 +(I0 +tp5929 +g8 +tp5930 +Rp5931 +(I1 +(I4 +tp5932 +g15 +I00 +S'\x00\x01\x00\x01' +p5933 +tp5934 +bsa(dp5935 +g4 +g5 +(g6 +(I0 +tp5936 +g8 +tp5937 +Rp5938 +(I1 +(I4 +tp5939 +g15 +I00 +S'\x01\x01\x00\x00' +p5940 +tp5941 +bsa(dp5942 +g4 +g5 +(g6 +(I0 +tp5943 +g8 +tp5944 +Rp5945 +(I1 +(I4 +tp5946 +g15 +I00 +S'\x00\x01\x00\x00' +p5947 +tp5948 +bsa(dp5949 +g4 +g5 +(g6 +(I0 +tp5950 +g8 +tp5951 +Rp5952 +(I1 +(I4 +tp5953 +g15 +I00 +S'\x00\x01\x00\x00' +p5954 +tp5955 +bsa(dp5956 +g4 +g5 +(g6 +(I0 +tp5957 +g8 +tp5958 +Rp5959 +(I1 +(I4 +tp5960 +g15 +I00 +S'\x00\x01\x00\x01' +p5961 +tp5962 +bsa(dp5963 +g4 +g5 +(g6 +(I0 +tp5964 +g8 +tp5965 +Rp5966 +(I1 +(I4 +tp5967 +g15 +I00 +S'\x00\x01\x00\x01' +p5968 +tp5969 +bsa(dp5970 +g4 +g5 +(g6 +(I0 +tp5971 +g8 +tp5972 +Rp5973 +(I1 +(I4 +tp5974 +g15 +I00 +S'\x00\x01\x00\x01' +p5975 +tp5976 +bsa(dp5977 +g4 +g5 +(g6 +(I0 +tp5978 +g8 +tp5979 +Rp5980 +(I1 +(I4 +tp5981 +g15 +I00 +S'\x01\x00\x00\x00' +p5982 +tp5983 +bsa(dp5984 +g4 +g5 +(g6 +(I0 +tp5985 +g8 +tp5986 +Rp5987 +(I1 +(I4 +tp5988 +g15 +I00 +S'\x00\x01\x00\x00' +p5989 +tp5990 +bsa(dp5991 +g4 +g5 +(g6 +(I0 +tp5992 +g8 +tp5993 +Rp5994 +(I1 +(I4 +tp5995 +g15 +I00 +S'\x00\x01\x00\x01' +p5996 +tp5997 +bsa(dp5998 +g4 +g5 +(g6 +(I0 +tp5999 +g8 +tp6000 +Rp6001 +(I1 +(I4 +tp6002 +g15 +I00 +S'\x00\x01\x00\x00' +p6003 +tp6004 +bsa(dp6005 +g4 +g5 +(g6 +(I0 +tp6006 +g8 +tp6007 +Rp6008 +(I1 +(I4 +tp6009 +g15 +I00 +S'\x00\x01\x00\x01' +p6010 +tp6011 +bsa(dp6012 +g4 +g5 +(g6 +(I0 +tp6013 +g8 +tp6014 +Rp6015 +(I1 +(I4 +tp6016 +g15 +I00 +S'\x00\x01\x00\x01' +p6017 +tp6018 +bsa(dp6019 +g4 +g5 +(g6 +(I0 +tp6020 +g8 +tp6021 +Rp6022 +(I1 +(I4 +tp6023 +g15 +I00 +S'\x00\x01\x00\x00' +p6024 +tp6025 +bsa(dp6026 +g4 +g5 +(g6 +(I0 +tp6027 +g8 +tp6028 +Rp6029 +(I1 +(I4 +tp6030 +g15 +I00 +S'\x00\x01\x00\x01' +p6031 +tp6032 +bsa(dp6033 +g4 +g5 +(g6 +(I0 +tp6034 +g8 +tp6035 +Rp6036 +(I1 +(I4 +tp6037 +g15 +I00 +S'\x01\x00\x00\x00' +p6038 +tp6039 +bsa(dp6040 +g4 +g5 +(g6 +(I0 +tp6041 +g8 +tp6042 +Rp6043 +(I1 +(I4 +tp6044 +g15 +I00 +S'\x00\x01\x00\x00' +p6045 +tp6046 +bsa(dp6047 +g4 +g5 +(g6 +(I0 +tp6048 +g8 +tp6049 +Rp6050 +(I1 +(I4 +tp6051 +g15 +I00 +S'\x00\x01\x00\x00' +p6052 +tp6053 +bsa(dp6054 +g4 +g5 +(g6 +(I0 +tp6055 +g8 +tp6056 +Rp6057 +(I1 +(I4 +tp6058 +g15 +I00 +S'\x00\x01\x00\x00' +p6059 +tp6060 +bsa(dp6061 +g4 +g5 +(g6 +(I0 +tp6062 +g8 +tp6063 +Rp6064 +(I1 +(I4 +tp6065 +g15 +I00 +S'\x01\x00\x01\x00' +p6066 +tp6067 +bsa(dp6068 +g4 +g5 +(g6 +(I0 +tp6069 +g8 +tp6070 +Rp6071 +(I1 +(I4 +tp6072 +g15 +I00 +S'\x00\x00\x00\x00' +p6073 +tp6074 +bsa(dp6075 +g4 +g5 +(g6 +(I0 +tp6076 +g8 +tp6077 +Rp6078 +(I1 +(I4 +tp6079 +g15 +I00 +S'\x01\x01\x00\x00' +p6080 +tp6081 +bsa(dp6082 +g4 +g5 +(g6 +(I0 +tp6083 +g8 +tp6084 +Rp6085 +(I1 +(I4 +tp6086 +g15 +I00 +S'\x00\x01\x00\x00' +p6087 +tp6088 +bsa(dp6089 +g4 +g5 +(g6 +(I0 +tp6090 +g8 +tp6091 +Rp6092 +(I1 +(I4 +tp6093 +g15 +I00 +S'\x00\x01\x00\x00' +p6094 +tp6095 +bsa(dp6096 +g4 +g5 +(g6 +(I0 +tp6097 +g8 +tp6098 +Rp6099 +(I1 +(I4 +tp6100 +g15 +I00 +S'\x00\x00\x00\x01' +p6101 +tp6102 +bsa(dp6103 +g4 +g5 +(g6 +(I0 +tp6104 +g8 +tp6105 +Rp6106 +(I1 +(I4 +tp6107 +g15 +I00 +S'\x00\x00\x01\x00' +p6108 +tp6109 +bsa(dp6110 +g4 +g5 +(g6 +(I0 +tp6111 +g8 +tp6112 +Rp6113 +(I1 +(I4 +tp6114 +g15 +I00 +S'\x00\x01\x00\x00' +p6115 +tp6116 +bsa(dp6117 +g4 +g5 +(g6 +(I0 +tp6118 +g8 +tp6119 +Rp6120 +(I1 +(I4 +tp6121 +g15 +I00 +S'\x00\x00\x00\x00' +p6122 +tp6123 +bsa(dp6124 +g4 +g5 +(g6 +(I0 +tp6125 +g8 +tp6126 +Rp6127 +(I1 +(I4 +tp6128 +g15 +I00 +S'\x00\x01\x00\x00' +p6129 +tp6130 +bsa(dp6131 +g4 +g5 +(g6 +(I0 +tp6132 +g8 +tp6133 +Rp6134 +(I1 +(I4 +tp6135 +g15 +I00 +S'\x00\x01\x00\x00' +p6136 +tp6137 +bsa(dp6138 +g4 +g5 +(g6 +(I0 +tp6139 +g8 +tp6140 +Rp6141 +(I1 +(I4 +tp6142 +g15 +I00 +S'\x00\x01\x00\x01' +p6143 +tp6144 +bsa(dp6145 +g4 +g5 +(g6 +(I0 +tp6146 +g8 +tp6147 +Rp6148 +(I1 +(I4 +tp6149 +g15 +I00 +S'\x00\x01\x00\x01' +p6150 +tp6151 +bsa(dp6152 +g4 +g5 +(g6 +(I0 +tp6153 +g8 +tp6154 +Rp6155 +(I1 +(I4 +tp6156 +g15 +I00 +S'\x00\x01\x00\x01' +p6157 +tp6158 +bsa(dp6159 +g4 +g5 +(g6 +(I0 +tp6160 +g8 +tp6161 +Rp6162 +(I1 +(I4 +tp6163 +g15 +I00 +S'\x00\x01\x00\x00' +p6164 +tp6165 +bsa(dp6166 +g4 +g5 +(g6 +(I0 +tp6167 +g8 +tp6168 +Rp6169 +(I1 +(I4 +tp6170 +g15 +I00 +S'\x00\x01\x00\x01' +p6171 +tp6172 +bsa(dp6173 +g4 +g5 +(g6 +(I0 +tp6174 +g8 +tp6175 +Rp6176 +(I1 +(I4 +tp6177 +g15 +I00 +S'\x00\x01\x00\x00' +p6178 +tp6179 +bsa(dp6180 +g4 +g5 +(g6 +(I0 +tp6181 +g8 +tp6182 +Rp6183 +(I1 +(I4 +tp6184 +g15 +I00 +S'\x00\x01\x00\x00' +p6185 +tp6186 +bsa(dp6187 +g4 +g5 +(g6 +(I0 +tp6188 +g8 +tp6189 +Rp6190 +(I1 +(I4 +tp6191 +g15 +I00 +S'\x00\x01\x00\x00' +p6192 +tp6193 +bsa(dp6194 +g4 +g5 +(g6 +(I0 +tp6195 +g8 +tp6196 +Rp6197 +(I1 +(I4 +tp6198 +g15 +I00 +S'\x00\x00\x00\x00' +p6199 +tp6200 +bsa(dp6201 +g4 +g5 +(g6 +(I0 +tp6202 +g8 +tp6203 +Rp6204 +(I1 +(I4 +tp6205 +g15 +I00 +S'\x00\x00\x00\x01' +p6206 +tp6207 +bsa(dp6208 +g4 +g5 +(g6 +(I0 +tp6209 +g8 +tp6210 +Rp6211 +(I1 +(I4 +tp6212 +g15 +I00 +S'\x01\x00\x00\x00' +p6213 +tp6214 +bsa(dp6215 +g4 +g5 +(g6 +(I0 +tp6216 +g8 +tp6217 +Rp6218 +(I1 +(I4 +tp6219 +g15 +I00 +S'\x00\x01\x00\x01' +p6220 +tp6221 +bsa(dp6222 +g4 +g5 +(g6 +(I0 +tp6223 +g8 +tp6224 +Rp6225 +(I1 +(I4 +tp6226 +g15 +I00 +S'\x00\x00\x01\x01' +p6227 +tp6228 +bsa(dp6229 +g4 +g5 +(g6 +(I0 +tp6230 +g8 +tp6231 +Rp6232 +(I1 +(I4 +tp6233 +g15 +I00 +S'\x00\x01\x00\x01' +p6234 +tp6235 +bsa(dp6236 +g4 +g5 +(g6 +(I0 +tp6237 +g8 +tp6238 +Rp6239 +(I1 +(I4 +tp6240 +g15 +I00 +S'\x00\x00\x00\x01' +p6241 +tp6242 +bsa(dp6243 +g4 +g5 +(g6 +(I0 +tp6244 +g8 +tp6245 +Rp6246 +(I1 +(I4 +tp6247 +g15 +I00 +S'\x01\x00\x01\x00' +p6248 +tp6249 +bsa(dp6250 +g4 +g5 +(g6 +(I0 +tp6251 +g8 +tp6252 +Rp6253 +(I1 +(I4 +tp6254 +g15 +I00 +S'\x01\x00\x00\x00' +p6255 +tp6256 +bsa(dp6257 +g4 +g5 +(g6 +(I0 +tp6258 +g8 +tp6259 +Rp6260 +(I1 +(I4 +tp6261 +g15 +I00 +S'\x00\x01\x00\x00' +p6262 +tp6263 +bsa(dp6264 +g4 +g5 +(g6 +(I0 +tp6265 +g8 +tp6266 +Rp6267 +(I1 +(I4 +tp6268 +g15 +I00 +S'\x00\x01\x00\x00' +p6269 +tp6270 +bsa(dp6271 +g4 +g5 +(g6 +(I0 +tp6272 +g8 +tp6273 +Rp6274 +(I1 +(I4 +tp6275 +g15 +I00 +S'\x01\x00\x00\x00' +p6276 +tp6277 +bsa(dp6278 +g4 +g5 +(g6 +(I0 +tp6279 +g8 +tp6280 +Rp6281 +(I1 +(I4 +tp6282 +g15 +I00 +S'\x00\x00\x00\x00' +p6283 +tp6284 +bsa(dp6285 +g4 +g5 +(g6 +(I0 +tp6286 +g8 +tp6287 +Rp6288 +(I1 +(I4 +tp6289 +g15 +I00 +S'\x01\x00\x00\x00' +p6290 +tp6291 +bsa(dp6292 +g4 +g5 +(g6 +(I0 +tp6293 +g8 +tp6294 +Rp6295 +(I1 +(I4 +tp6296 +g15 +I00 +S'\x01\x00\x01\x00' +p6297 +tp6298 +bsa(dp6299 +g4 +g5 +(g6 +(I0 +tp6300 +g8 +tp6301 +Rp6302 +(I1 +(I4 +tp6303 +g15 +I00 +S'\x00\x01\x00\x01' +p6304 +tp6305 +bsa(dp6306 +g4 +g5 +(g6 +(I0 +tp6307 +g8 +tp6308 +Rp6309 +(I1 +(I4 +tp6310 +g15 +I00 +S'\x00\x01\x00\x00' +p6311 +tp6312 +bsa(dp6313 +g4 +g5 +(g6 +(I0 +tp6314 +g8 +tp6315 +Rp6316 +(I1 +(I4 +tp6317 +g15 +I00 +S'\x00\x01\x00\x00' +p6318 +tp6319 +bsa(dp6320 +g4 +g5 +(g6 +(I0 +tp6321 +g8 +tp6322 +Rp6323 +(I1 +(I4 +tp6324 +g15 +I00 +S'\x00\x01\x00\x00' +p6325 +tp6326 +bsa(dp6327 +g4 +g5 +(g6 +(I0 +tp6328 +g8 +tp6329 +Rp6330 +(I1 +(I4 +tp6331 +g15 +I00 +S'\x01\x00\x00\x00' +p6332 +tp6333 +bsa(dp6334 +g4 +g5 +(g6 +(I0 +tp6335 +g8 +tp6336 +Rp6337 +(I1 +(I4 +tp6338 +g15 +I00 +S'\x00\x01\x00\x00' +p6339 +tp6340 +bsa(dp6341 +g4 +g5 +(g6 +(I0 +tp6342 +g8 +tp6343 +Rp6344 +(I1 +(I4 +tp6345 +g15 +I00 +S'\x00\x00\x00\x00' +p6346 +tp6347 +bsa(dp6348 +g4 +g5 +(g6 +(I0 +tp6349 +g8 +tp6350 +Rp6351 +(I1 +(I4 +tp6352 +g15 +I00 +S'\x00\x01\x00\x01' +p6353 +tp6354 +bsa(dp6355 +g4 +g5 +(g6 +(I0 +tp6356 +g8 +tp6357 +Rp6358 +(I1 +(I4 +tp6359 +g15 +I00 +S'\x00\x01\x00\x00' +p6360 +tp6361 +bsa(dp6362 +g4 +g5 +(g6 +(I0 +tp6363 +g8 +tp6364 +Rp6365 +(I1 +(I4 +tp6366 +g15 +I00 +S'\x00\x01\x00\x00' +p6367 +tp6368 +bsa(dp6369 +g4 +g5 +(g6 +(I0 +tp6370 +g8 +tp6371 +Rp6372 +(I1 +(I4 +tp6373 +g15 +I00 +S'\x00\x01\x00\x00' +p6374 +tp6375 +bsa(dp6376 +g4 +g5 +(g6 +(I0 +tp6377 +g8 +tp6378 +Rp6379 +(I1 +(I4 +tp6380 +g15 +I00 +S'\x00\x01\x00\x01' +p6381 +tp6382 +bsa(dp6383 +g4 +g5 +(g6 +(I0 +tp6384 +g8 +tp6385 +Rp6386 +(I1 +(I4 +tp6387 +g15 +I00 +S'\x00\x01\x00\x00' +p6388 +tp6389 +bsa(dp6390 +g4 +g5 +(g6 +(I0 +tp6391 +g8 +tp6392 +Rp6393 +(I1 +(I4 +tp6394 +g15 +I00 +S'\x00\x01\x00\x00' +p6395 +tp6396 +bsa(dp6397 +g4 +g5 +(g6 +(I0 +tp6398 +g8 +tp6399 +Rp6400 +(I1 +(I4 +tp6401 +g15 +I00 +S'\x00\x01\x00\x01' +p6402 +tp6403 +bsa(dp6404 +g4 +g5 +(g6 +(I0 +tp6405 +g8 +tp6406 +Rp6407 +(I1 +(I4 +tp6408 +g15 +I00 +S'\x00\x01\x00\x01' +p6409 +tp6410 +bsa(dp6411 +g4 +g5 +(g6 +(I0 +tp6412 +g8 +tp6413 +Rp6414 +(I1 +(I4 +tp6415 +g15 +I00 +S'\x00\x01\x00\x00' +p6416 +tp6417 +bsa(dp6418 +g4 +g5 +(g6 +(I0 +tp6419 +g8 +tp6420 +Rp6421 +(I1 +(I4 +tp6422 +g15 +I00 +S'\x00\x01\x00\x00' +p6423 +tp6424 +bsa(dp6425 +g4 +g5 +(g6 +(I0 +tp6426 +g8 +tp6427 +Rp6428 +(I1 +(I4 +tp6429 +g15 +I00 +S'\x00\x01\x00\x00' +p6430 +tp6431 +bsa(dp6432 +g4 +g5 +(g6 +(I0 +tp6433 +g8 +tp6434 +Rp6435 +(I1 +(I4 +tp6436 +g15 +I00 +S'\x00\x01\x00\x00' +p6437 +tp6438 +bsa(dp6439 +g4 +g5 +(g6 +(I0 +tp6440 +g8 +tp6441 +Rp6442 +(I1 +(I4 +tp6443 +g15 +I00 +S'\x00\x01\x00\x00' +p6444 +tp6445 +bsa(dp6446 +g4 +g5 +(g6 +(I0 +tp6447 +g8 +tp6448 +Rp6449 +(I1 +(I4 +tp6450 +g15 +I00 +S'\x00\x01\x00\x01' +p6451 +tp6452 +bsa(dp6453 +g4 +g5 +(g6 +(I0 +tp6454 +g8 +tp6455 +Rp6456 +(I1 +(I4 +tp6457 +g15 +I00 +S'\x00\x00\x01\x00' +p6458 +tp6459 +bsa(dp6460 +g4 +g5 +(g6 +(I0 +tp6461 +g8 +tp6462 +Rp6463 +(I1 +(I4 +tp6464 +g15 +I00 +S'\x00\x01\x00\x00' +p6465 +tp6466 +bsa(dp6467 +g4 +g5 +(g6 +(I0 +tp6468 +g8 +tp6469 +Rp6470 +(I1 +(I4 +tp6471 +g15 +I00 +S'\x00\x00\x00\x01' +p6472 +tp6473 +bsa(dp6474 +g4 +g5 +(g6 +(I0 +tp6475 +g8 +tp6476 +Rp6477 +(I1 +(I4 +tp6478 +g15 +I00 +S'\x00\x01\x00\x00' +p6479 +tp6480 +bsa(dp6481 +g4 +g5 +(g6 +(I0 +tp6482 +g8 +tp6483 +Rp6484 +(I1 +(I4 +tp6485 +g15 +I00 +S'\x00\x01\x00\x01' +p6486 +tp6487 +bsa(dp6488 +g4 +g5 +(g6 +(I0 +tp6489 +g8 +tp6490 +Rp6491 +(I1 +(I4 +tp6492 +g15 +I00 +S'\x01\x00\x00\x00' +p6493 +tp6494 +bsa(dp6495 +g4 +g5 +(g6 +(I0 +tp6496 +g8 +tp6497 +Rp6498 +(I1 +(I4 +tp6499 +g15 +I00 +S'\x00\x01\x00\x00' +p6500 +tp6501 +bsa(dp6502 +g4 +g5 +(g6 +(I0 +tp6503 +g8 +tp6504 +Rp6505 +(I1 +(I4 +tp6506 +g15 +I00 +S'\x00\x01\x00\x01' +p6507 +tp6508 +bsa(dp6509 +g4 +g5 +(g6 +(I0 +tp6510 +g8 +tp6511 +Rp6512 +(I1 +(I4 +tp6513 +g15 +I00 +S'\x00\x01\x00\x01' +p6514 +tp6515 +bsa(dp6516 +g4 +g5 +(g6 +(I0 +tp6517 +g8 +tp6518 +Rp6519 +(I1 +(I4 +tp6520 +g15 +I00 +S'\x00\x01\x00\x00' +p6521 +tp6522 +bsa(dp6523 +g4 +g5 +(g6 +(I0 +tp6524 +g8 +tp6525 +Rp6526 +(I1 +(I4 +tp6527 +g15 +I00 +S'\x01\x00\x00\x00' +p6528 +tp6529 +bsa(dp6530 +g4 +g5 +(g6 +(I0 +tp6531 +g8 +tp6532 +Rp6533 +(I1 +(I4 +tp6534 +g15 +I00 +S'\x00\x00\x00\x01' +p6535 +tp6536 +bsa(dp6537 +g4 +g5 +(g6 +(I0 +tp6538 +g8 +tp6539 +Rp6540 +(I1 +(I4 +tp6541 +g15 +I00 +S'\x00\x01\x00\x01' +p6542 +tp6543 +bsa(dp6544 +g4 +g5 +(g6 +(I0 +tp6545 +g8 +tp6546 +Rp6547 +(I1 +(I4 +tp6548 +g15 +I00 +S'\x00\x00\x00\x01' +p6549 +tp6550 +bsa(dp6551 +g4 +g5 +(g6 +(I0 +tp6552 +g8 +tp6553 +Rp6554 +(I1 +(I4 +tp6555 +g15 +I00 +S'\x00\x01\x00\x00' +p6556 +tp6557 +bsa(dp6558 +g4 +g5 +(g6 +(I0 +tp6559 +g8 +tp6560 +Rp6561 +(I1 +(I4 +tp6562 +g15 +I00 +S'\x00\x01\x00\x01' +p6563 +tp6564 +bsa(dp6565 +g4 +g5 +(g6 +(I0 +tp6566 +g8 +tp6567 +Rp6568 +(I1 +(I4 +tp6569 +g15 +I00 +S'\x01\x01\x00\x00' +p6570 +tp6571 +bsa(dp6572 +g4 +g5 +(g6 +(I0 +tp6573 +g8 +tp6574 +Rp6575 +(I1 +(I4 +tp6576 +g15 +I00 +S'\x01\x00\x01\x00' +p6577 +tp6578 +bsa(dp6579 +g4 +g5 +(g6 +(I0 +tp6580 +g8 +tp6581 +Rp6582 +(I1 +(I4 +tp6583 +g15 +I00 +S'\x00\x01\x00\x01' +p6584 +tp6585 +bsa(dp6586 +g4 +g5 +(g6 +(I0 +tp6587 +g8 +tp6588 +Rp6589 +(I1 +(I4 +tp6590 +g15 +I00 +S'\x00\x01\x00\x01' +p6591 +tp6592 +bsa(dp6593 +g4 +g5 +(g6 +(I0 +tp6594 +g8 +tp6595 +Rp6596 +(I1 +(I4 +tp6597 +g15 +I00 +S'\x00\x01\x00\x00' +p6598 +tp6599 +bsa(dp6600 +g4 +g5 +(g6 +(I0 +tp6601 +g8 +tp6602 +Rp6603 +(I1 +(I4 +tp6604 +g15 +I00 +S'\x00\x01\x00\x00' +p6605 +tp6606 +bsa(dp6607 +g4 +g5 +(g6 +(I0 +tp6608 +g8 +tp6609 +Rp6610 +(I1 +(I4 +tp6611 +g15 +I00 +S'\x00\x01\x00\x00' +p6612 +tp6613 +bsa(dp6614 +g4 +g5 +(g6 +(I0 +tp6615 +g8 +tp6616 +Rp6617 +(I1 +(I4 +tp6618 +g15 +I00 +S'\x00\x00\x00\x00' +p6619 +tp6620 +bsa(dp6621 +g4 +g5 +(g6 +(I0 +tp6622 +g8 +tp6623 +Rp6624 +(I1 +(I4 +tp6625 +g15 +I00 +S'\x00\x01\x00\x00' +p6626 +tp6627 +bsa(dp6628 +g4 +g5 +(g6 +(I0 +tp6629 +g8 +tp6630 +Rp6631 +(I1 +(I4 +tp6632 +g15 +I00 +S'\x00\x01\x00\x01' +p6633 +tp6634 +bsa(dp6635 +g4 +g5 +(g6 +(I0 +tp6636 +g8 +tp6637 +Rp6638 +(I1 +(I4 +tp6639 +g15 +I00 +S'\x01\x00\x00\x00' +p6640 +tp6641 +bsa(dp6642 +g4 +g5 +(g6 +(I0 +tp6643 +g8 +tp6644 +Rp6645 +(I1 +(I4 +tp6646 +g15 +I00 +S'\x00\x01\x00\x00' +p6647 +tp6648 +bsa(dp6649 +g4 +g5 +(g6 +(I0 +tp6650 +g8 +tp6651 +Rp6652 +(I1 +(I4 +tp6653 +g15 +I00 +S'\x00\x00\x01\x00' +p6654 +tp6655 +bsa(dp6656 +g4 +g5 +(g6 +(I0 +tp6657 +g8 +tp6658 +Rp6659 +(I1 +(I4 +tp6660 +g15 +I00 +S'\x01\x00\x00\x00' +p6661 +tp6662 +bsa(dp6663 +g4 +g5 +(g6 +(I0 +tp6664 +g8 +tp6665 +Rp6666 +(I1 +(I4 +tp6667 +g15 +I00 +S'\x00\x00\x00\x00' +p6668 +tp6669 +bsa(dp6670 +g4 +g5 +(g6 +(I0 +tp6671 +g8 +tp6672 +Rp6673 +(I1 +(I4 +tp6674 +g15 +I00 +S'\x00\x00\x00\x00' +p6675 +tp6676 +bsa(dp6677 +g4 +g5 +(g6 +(I0 +tp6678 +g8 +tp6679 +Rp6680 +(I1 +(I4 +tp6681 +g15 +I00 +S'\x00\x01\x00\x00' +p6682 +tp6683 +bsa(dp6684 +g4 +g5 +(g6 +(I0 +tp6685 +g8 +tp6686 +Rp6687 +(I1 +(I4 +tp6688 +g15 +I00 +S'\x00\x01\x00\x00' +p6689 +tp6690 +bsa(dp6691 +g4 +g5 +(g6 +(I0 +tp6692 +g8 +tp6693 +Rp6694 +(I1 +(I4 +tp6695 +g15 +I00 +S'\x00\x01\x00\x00' +p6696 +tp6697 +bsa(dp6698 +g4 +g5 +(g6 +(I0 +tp6699 +g8 +tp6700 +Rp6701 +(I1 +(I4 +tp6702 +g15 +I00 +S'\x00\x01\x00\x01' +p6703 +tp6704 +bsa(dp6705 +g4 +g5 +(g6 +(I0 +tp6706 +g8 +tp6707 +Rp6708 +(I1 +(I4 +tp6709 +g15 +I00 +S'\x00\x01\x00\x00' +p6710 +tp6711 +bsa(dp6712 +g4 +g5 +(g6 +(I0 +tp6713 +g8 +tp6714 +Rp6715 +(I1 +(I4 +tp6716 +g15 +I00 +S'\x00\x01\x00\x01' +p6717 +tp6718 +bsa(dp6719 +g4 +g5 +(g6 +(I0 +tp6720 +g8 +tp6721 +Rp6722 +(I1 +(I4 +tp6723 +g15 +I00 +S'\x00\x01\x00\x00' +p6724 +tp6725 +bsa(dp6726 +g4 +g5 +(g6 +(I0 +tp6727 +g8 +tp6728 +Rp6729 +(I1 +(I4 +tp6730 +g15 +I00 +S'\x01\x00\x00\x00' +p6731 +tp6732 +bsa(dp6733 +g4 +g5 +(g6 +(I0 +tp6734 +g8 +tp6735 +Rp6736 +(I1 +(I4 +tp6737 +g15 +I00 +S'\x00\x01\x00\x01' +p6738 +tp6739 +bsa(dp6740 +g4 +g5 +(g6 +(I0 +tp6741 +g8 +tp6742 +Rp6743 +(I1 +(I4 +tp6744 +g15 +I00 +S'\x01\x00\x00\x00' +p6745 +tp6746 +bsa(dp6747 +g4 +g5 +(g6 +(I0 +tp6748 +g8 +tp6749 +Rp6750 +(I1 +(I4 +tp6751 +g15 +I00 +S'\x00\x01\x00\x01' +p6752 +tp6753 +bsa(dp6754 +g4 +g5 +(g6 +(I0 +tp6755 +g8 +tp6756 +Rp6757 +(I1 +(I4 +tp6758 +g15 +I00 +S'\x00\x00\x01\x01' +p6759 +tp6760 +bsa(dp6761 +g4 +g5 +(g6 +(I0 +tp6762 +g8 +tp6763 +Rp6764 +(I1 +(I4 +tp6765 +g15 +I00 +S'\x01\x00\x00\x00' +p6766 +tp6767 +bsa(dp6768 +g4 +g5 +(g6 +(I0 +tp6769 +g8 +tp6770 +Rp6771 +(I1 +(I4 +tp6772 +g15 +I00 +S'\x00\x01\x00\x00' +p6773 +tp6774 +bsa(dp6775 +g4 +g5 +(g6 +(I0 +tp6776 +g8 +tp6777 +Rp6778 +(I1 +(I4 +tp6779 +g15 +I00 +S'\x00\x01\x00\x01' +p6780 +tp6781 +bsa(dp6782 +g4 +g5 +(g6 +(I0 +tp6783 +g8 +tp6784 +Rp6785 +(I1 +(I4 +tp6786 +g15 +I00 +S'\x01\x00\x01\x00' +p6787 +tp6788 +bsa(dp6789 +g4 +g5 +(g6 +(I0 +tp6790 +g8 +tp6791 +Rp6792 +(I1 +(I4 +tp6793 +g15 +I00 +S'\x00\x01\x00\x01' +p6794 +tp6795 +bsa(dp6796 +g4 +g5 +(g6 +(I0 +tp6797 +g8 +tp6798 +Rp6799 +(I1 +(I4 +tp6800 +g15 +I00 +S'\x01\x00\x00\x00' +p6801 +tp6802 +bsa(dp6803 +g4 +g5 +(g6 +(I0 +tp6804 +g8 +tp6805 +Rp6806 +(I1 +(I4 +tp6807 +g15 +I00 +S'\x00\x00\x00\x01' +p6808 +tp6809 +bsa(dp6810 +g4 +g5 +(g6 +(I0 +tp6811 +g8 +tp6812 +Rp6813 +(I1 +(I4 +tp6814 +g15 +I00 +S'\x00\x01\x00\x00' +p6815 +tp6816 +bsa(dp6817 +g4 +g5 +(g6 +(I0 +tp6818 +g8 +tp6819 +Rp6820 +(I1 +(I4 +tp6821 +g15 +I00 +S'\x00\x00\x00\x00' +p6822 +tp6823 +bsa(dp6824 +g4 +g5 +(g6 +(I0 +tp6825 +g8 +tp6826 +Rp6827 +(I1 +(I4 +tp6828 +g15 +I00 +S'\x00\x01\x00\x01' +p6829 +tp6830 +bsa(dp6831 +g4 +g5 +(g6 +(I0 +tp6832 +g8 +tp6833 +Rp6834 +(I1 +(I4 +tp6835 +g15 +I00 +S'\x00\x01\x00\x00' +p6836 +tp6837 +bsa(dp6838 +g4 +g5 +(g6 +(I0 +tp6839 +g8 +tp6840 +Rp6841 +(I1 +(I4 +tp6842 +g15 +I00 +S'\x01\x00\x01\x00' +p6843 +tp6844 +bsa(dp6845 +g4 +g5 +(g6 +(I0 +tp6846 +g8 +tp6847 +Rp6848 +(I1 +(I4 +tp6849 +g15 +I00 +S'\x00\x01\x00\x00' +p6850 +tp6851 +bsa(dp6852 +g4 +g5 +(g6 +(I0 +tp6853 +g8 +tp6854 +Rp6855 +(I1 +(I4 +tp6856 +g15 +I00 +S'\x01\x00\x01\x00' +p6857 +tp6858 +bsa(dp6859 +g4 +g5 +(g6 +(I0 +tp6860 +g8 +tp6861 +Rp6862 +(I1 +(I4 +tp6863 +g15 +I00 +S'\x00\x01\x00\x00' +p6864 +tp6865 +bsa(dp6866 +g4 +g5 +(g6 +(I0 +tp6867 +g8 +tp6868 +Rp6869 +(I1 +(I4 +tp6870 +g15 +I00 +S'\x00\x01\x00\x00' +p6871 +tp6872 +bsa(dp6873 +g4 +g5 +(g6 +(I0 +tp6874 +g8 +tp6875 +Rp6876 +(I1 +(I4 +tp6877 +g15 +I00 +S'\x00\x00\x00\x01' +p6878 +tp6879 +bsa(dp6880 +g4 +g5 +(g6 +(I0 +tp6881 +g8 +tp6882 +Rp6883 +(I1 +(I4 +tp6884 +g15 +I00 +S'\x00\x01\x00\x01' +p6885 +tp6886 +bsa(dp6887 +g4 +g5 +(g6 +(I0 +tp6888 +g8 +tp6889 +Rp6890 +(I1 +(I4 +tp6891 +g15 +I00 +S'\x00\x01\x00\x01' +p6892 +tp6893 +bsa(dp6894 +g4 +g5 +(g6 +(I0 +tp6895 +g8 +tp6896 +Rp6897 +(I1 +(I4 +tp6898 +g15 +I00 +S'\x00\x01\x00\x01' +p6899 +tp6900 +bsa(dp6901 +g4 +g5 +(g6 +(I0 +tp6902 +g8 +tp6903 +Rp6904 +(I1 +(I4 +tp6905 +g15 +I00 +S'\x01\x00\x01\x00' +p6906 +tp6907 +bsa(dp6908 +g4 +g5 +(g6 +(I0 +tp6909 +g8 +tp6910 +Rp6911 +(I1 +(I4 +tp6912 +g15 +I00 +S'\x00\x01\x00\x01' +p6913 +tp6914 +bsa(dp6915 +g4 +g5 +(g6 +(I0 +tp6916 +g8 +tp6917 +Rp6918 +(I1 +(I4 +tp6919 +g15 +I00 +S'\x00\x01\x00\x00' +p6920 +tp6921 +bsa(dp6922 +g4 +g5 +(g6 +(I0 +tp6923 +g8 +tp6924 +Rp6925 +(I1 +(I4 +tp6926 +g15 +I00 +S'\x00\x01\x00\x01' +p6927 +tp6928 +bsa(dp6929 +g4 +g5 +(g6 +(I0 +tp6930 +g8 +tp6931 +Rp6932 +(I1 +(I4 +tp6933 +g15 +I00 +S'\x00\x01\x00\x01' +p6934 +tp6935 +bsa(dp6936 +g4 +g5 +(g6 +(I0 +tp6937 +g8 +tp6938 +Rp6939 +(I1 +(I4 +tp6940 +g15 +I00 +S'\x00\x01\x00\x01' +p6941 +tp6942 +bsa(dp6943 +g4 +g5 +(g6 +(I0 +tp6944 +g8 +tp6945 +Rp6946 +(I1 +(I4 +tp6947 +g15 +I00 +S'\x00\x00\x00\x00' +p6948 +tp6949 +bsa(dp6950 +g4 +g5 +(g6 +(I0 +tp6951 +g8 +tp6952 +Rp6953 +(I1 +(I4 +tp6954 +g15 +I00 +S'\x01\x00\x00\x00' +p6955 +tp6956 +bsa(dp6957 +g4 +g5 +(g6 +(I0 +tp6958 +g8 +tp6959 +Rp6960 +(I1 +(I4 +tp6961 +g15 +I00 +S'\x00\x01\x00\x01' +p6962 +tp6963 +bsa(dp6964 +g4 +g5 +(g6 +(I0 +tp6965 +g8 +tp6966 +Rp6967 +(I1 +(I4 +tp6968 +g15 +I00 +S'\x00\x01\x00\x01' +p6969 +tp6970 +bsa(dp6971 +g4 +g5 +(g6 +(I0 +tp6972 +g8 +tp6973 +Rp6974 +(I1 +(I4 +tp6975 +g15 +I00 +S'\x00\x00\x00\x01' +p6976 +tp6977 +bsa(dp6978 +g4 +g5 +(g6 +(I0 +tp6979 +g8 +tp6980 +Rp6981 +(I1 +(I4 +tp6982 +g15 +I00 +S'\x00\x01\x00\x01' +p6983 +tp6984 +bsa(dp6985 +g4 +g5 +(g6 +(I0 +tp6986 +g8 +tp6987 +Rp6988 +(I1 +(I4 +tp6989 +g15 +I00 +S'\x00\x01\x00\x00' +p6990 +tp6991 +bsa(dp6992 +g4 +g5 +(g6 +(I0 +tp6993 +g8 +tp6994 +Rp6995 +(I1 +(I4 +tp6996 +g15 +I00 +S'\x00\x01\x00\x01' +p6997 +tp6998 +bsa(dp6999 +g4 +g5 +(g6 +(I0 +tp7000 +g8 +tp7001 +Rp7002 +(I1 +(I4 +tp7003 +g15 +I00 +S'\x00\x01\x00\x01' +p7004 +tp7005 +bsa(dp7006 +g4 +g5 +(g6 +(I0 +tp7007 +g8 +tp7008 +Rp7009 +(I1 +(I4 +tp7010 +g15 +I00 +S'\x00\x00\x00\x01' +p7011 +tp7012 +bsa(dp7013 +g4 +g5 +(g6 +(I0 +tp7014 +g8 +tp7015 +Rp7016 +(I1 +(I4 +tp7017 +g15 +I00 +S'\x00\x00\x00\x00' +p7018 +tp7019 +bsa(dp7020 +g4 +g5 +(g6 +(I0 +tp7021 +g8 +tp7022 +Rp7023 +(I1 +(I4 +tp7024 +g15 +I00 +S'\x00\x01\x00\x00' +p7025 +tp7026 +bsa(dp7027 +g4 +g5 +(g6 +(I0 +tp7028 +g8 +tp7029 +Rp7030 +(I1 +(I4 +tp7031 +g15 +I00 +S'\x01\x00\x01\x00' +p7032 +tp7033 +bsa(dp7034 +g4 +g5 +(g6 +(I0 +tp7035 +g8 +tp7036 +Rp7037 +(I1 +(I4 +tp7038 +g15 +I00 +S'\x00\x00\x00\x01' +p7039 +tp7040 +bsa(dp7041 +g4 +g5 +(g6 +(I0 +tp7042 +g8 +tp7043 +Rp7044 +(I1 +(I4 +tp7045 +g15 +I00 +S'\x00\x01\x00\x01' +p7046 +tp7047 +bsa(dp7048 +g4 +g5 +(g6 +(I0 +tp7049 +g8 +tp7050 +Rp7051 +(I1 +(I4 +tp7052 +g15 +I00 +S'\x01\x00\x00\x00' +p7053 +tp7054 +bsa(dp7055 +g4 +g5 +(g6 +(I0 +tp7056 +g8 +tp7057 +Rp7058 +(I1 +(I4 +tp7059 +g15 +I00 +S'\x00\x00\x00\x01' +p7060 +tp7061 +bsa(dp7062 +g4 +g5 +(g6 +(I0 +tp7063 +g8 +tp7064 +Rp7065 +(I1 +(I4 +tp7066 +g15 +I00 +S'\x00\x00\x00\x00' +p7067 +tp7068 +bsa(dp7069 +g4 +g5 +(g6 +(I0 +tp7070 +g8 +tp7071 +Rp7072 +(I1 +(I4 +tp7073 +g15 +I00 +S'\x00\x01\x00\x00' +p7074 +tp7075 +bsa(dp7076 +g4 +g5 +(g6 +(I0 +tp7077 +g8 +tp7078 +Rp7079 +(I1 +(I4 +tp7080 +g15 +I00 +S'\x00\x01\x00\x00' +p7081 +tp7082 +bsa(dp7083 +g4 +g5 +(g6 +(I0 +tp7084 +g8 +tp7085 +Rp7086 +(I1 +(I4 +tp7087 +g15 +I00 +S'\x00\x01\x00\x00' +p7088 +tp7089 +bsa(dp7090 +g4 +g5 +(g6 +(I0 +tp7091 +g8 +tp7092 +Rp7093 +(I1 +(I4 +tp7094 +g15 +I00 +S'\x00\x01\x00\x01' +p7095 +tp7096 +bsasS'texts' +p7097 +(lp7098 +V@jaimd929 i know!! #swimming #beachvolleyball epic weekend!!!! +p7099 +aVpanic over. rebecca tunney is back on the floor doing her routine, v elegantly too to say she's only 4ft 11" the girl is all leg +p7100 +aV coach: i refuse to swallow my pride. the last thing i need in my diet right now is more empty calories. +p7101 +aVgymnastics previews all done. here's something i wrote about @bethtweddlenews yesterday http://www1.skysports.com/news/12040/7937986\u2026 #paolympics +p7102 +aVthe olympics begin today, but i'm still waiting for these girls on sunday!!! #fierce5 #london201 http://instagr.am/p/nledg0p5mh/ +p7103 +aVthis is me right now #anticipation #olympics #swimming #trackandfield http://via.me/-3gp77ci +p7104 +aVi can't wait for part in the #olympics ever since #makeitorbreakit i've loved watching gymnastics lol +p7105 +aVwatching the #olympics2012 #teamgb love it :) +p7106 +aVin addition to hd, bbc x-ray vision would further heighten my enjoyment of some olympic events. #diving #cycling #swimming +p7107 +aV.@t0kii re. 8,652 positive opinions http://j.mp/8ermak? vs. 1,557 negative http://j.mp/7qngig? +p7108 +aVthose japanese handstands are insane. pierre yves beny is gonna be pissed about that stumble #london2012 +p7109 +aVbloody hell epke zonderland! after all that drama you are indeed showing your class. #london2012 #nl +p7110 +aVcan't believe mens @teamgb have qualified ahead of china amazing #proudtobebritish +p7111 +aVthe gymnastics has been so impressive, don't get why even the top gymnasts earn next to nothing. #teamgb +p7112 +aV@bendykenndy his story is unbelievable. you could see in his interview how much it meant to him #teamireland #olympics +p7113 +aVgosh i love watching men's. it's just so interesting and thrilling #olympics +p7114 +aVgb in second place #2012londonolympics woo! +p7115 +aVvery impressed with all these gymnastics. sasaki junior was fantastic on those bars. #olympics +p7116 +aVboth korea and japan are dissapointing this year. what happened? #london2012 +p7117 +aV looks so great! i'm just admiring those men and their muscels. #london2012 +p7118 +aVwant something to read while you're waiting for #olympic to return? the perfect score - all romance ebooks: http://bit.ly/lz241a +p7119 +aVthe are amazing to watch! so close to being #superhumans you could get! #olympics2012 +p7120 +aVso excited for the olympics #teamgabby +p7121 +aVfantastic morning at men's gymnastics. team gb excellent performance, esp ls on pommel & whitlock floor. #london2012 #emptyseats +p7122 +aV@onfitness we love them all, but our office favorites are #swimming #athletics #equestrian +p7123 +aV#olympics mind blowing, the male russian gymnast who was just on the floor their - amazing. germans on the bars - astounding. +p7124 +aVbloody hell tell me someone saw that guy fall off the bar!! ouch.. #olympics +p7125 +aVbest thing about gymnastics is that in the background there is always someone casually doing a handstand. feet waggling away. +p7126 +aV"@bernie129: is it wrong to like men's gymnastics so much #olymics2012 " nope =] loving it! +p7127 +aVrings. that's a man's sport. always think horse a bit daft. but rings. blimey +p7128 +aVhow can you see a clear 6 pack through their tops #motivation +p7129 +aV@thedazgerrard how about that then?! #teamgb #louissmith +p7130 +aVmust remember monday and wednesday to finish work at 4pm or the men's finals #olympics2012 #london2012 +p7131 +aV@haylehudson if i'm reading the online sched correctly, r on 2nite! i'll be choreographing in the box, mon., no doubt about it! +p7132 +aVomg cant even cope hahahahahahaha #jay #olympics #haha #cantcope #loveit @jaythewanted http://instagr.am/p/nprfifudvt/ +p7133 +aVi like watching gymnastics. :3 #olympics +p7134 +aVthese chinese men on the high bar are no joke #olympics can't wait for usa +p7135 +aVthe way he just bent over > +p7136 +aVwhy are all these men so sexy?!? this needs to stop! +p7137 +aV\u201c@notsostoic: these white boy's so fucking fine, but they so short! wtf! \u201d lmao too true +p7138 +aVeven though most of these guys are probably gay, they're really cute :) lol #2012olympics +p7139 +aVmy fav of the olympics is the but it is a lil stressful to watch. #usa #usa #usa +p7140 +aVi don't like attractive guys like him falling off the bars and being embarrassed. hehe. #olympics +p7141 +aVdammnnn black guy has game! #2012olymics +p7142 +aVi love john orazco! what an inspiration #olympics2012 +p7143 +aV@johnw_orozco puertorrican representing #teamusa yeaaah! #proud #boricua! +p7144 +aV@quarternotelife his story was so inspirational too! #goteamusa +p7145 +aV@nbcolympics why do the women do the floor to music and the men don't? #olympics #deepthoughts +p7146 +aVnot sure if the bars or the floor routines impress me more.. think it's both. #olympics +p7147 +aV\u201c@nbcolympics: coming up next in primetime: more men's #olympics\u201d the men make everything look so effortless! #teamusa +p7148 +aVi like the way you land it, yo diggity. #olympics #merrica +p7149 +aVwatching =] the best part (in my opinion) of the #olympicsgames +p7150 +aVmen's pommel horse is like the most boring thing to watch right now and i like the gymnastics! #london2012 +p7151 +aVjohn orozco's story is awesome. and his mom looking so nervous and so proud is too cute. #olympics #london2012 +p7152 +aV@olympicstatman wow! fascinating statistic! and now we have gb men in finals of vault and pommels!!! +p7153 +aVso excited to watch @hannahkwhelan and @rebecca_tunney this afternoon! good luck girls, were all rooting for you! go @teamgb!!! +p7154 +aVlauren mitchell was huge on the floor given she was injured! #london2012 #olympics +p7155 +aV#london2012 any reason why our girls are wearing robo cop type outfits??? +p7156 +aV@teamgb @london2012 dry, cozy and warm for #northgreenwicharena funny but it looks just like the o2?!pic.twitter.com/jnyweuwr +p7157 +aV\u201c@teamgb: the gymnastics events will start at 14:45 for @teamgb women, can they replicate the men and qualify? \u201d hell yeah! woo! +p7158 +aVanyone else is following ? its a cut throat competition for individual rankings. +p7159 +aVthere was so many empty seats at the not gooood! #olympics +p7160 +aV@shawnjohnson have you and @nastialiukin seen each other yet in @london2012. +p7161 +aVi don't care if there are #emptyseats as long as no one is sitting in my spot at the #olympics. pic.twitter.com/2x5vrkwb +p7162 +aVwatched gymnastics all morning and now going to watch it all afternoon. #londonolympics2012 +p7163 +aVshannon miller and this other guy are a teriffic reprieve from tim dagget and elfi schlegal. #olympics #nbcwin +p7164 +aVnot that it means anything in , but i think @victoriamoors is really pretty. +p7165 +aVwho and what events you should not miss sunday in the #2012londonolympics: http://wapo.st/ovmoqr #swimming #roadcycling +p7166 +aV#teamgb your all looking hot!!! #loveit +p7167 +aVwow the judges here are really down to business. they're making the girls earn every tenth. +p7168 +aV@kyla_ross96 peforming to ''phantom of the opera'' for her floor routine?! endless respect. #teamusa +p7169 +aVbeth tweddle just makes me stare in amazement #olympics +p7170 +aVtears in my eyes after tweddle's bars and wieber's floor! #london2012 #olympics +p7171 +aVlooking at the female gymnasts, you'll find more tit on a male dog. #olympics +p7172 +aVi can't even do a forward roll! #shameful #london2012 +p7173 +aVand @aly_raisman is top on floor at the moment! well-earned!! #london2012 +p7174 +aVwatching the ! i honestly don't understand how they can flip that high?! +p7175 +aV@aly_raisman, you deserve it! what a stunning performance! #olympicstoday #usa #olympics +p7176 +aVmy two words to sum up what just happened: holy. sh*t. #london2012 +p7177 +aVolympic gymnastics is outstanding. love beth tweddle #olympics #teamgb +p7178 +aV2 days into the competition and some very interesting stories are unfolding...expecting fig to make changes again... +p7179 +aVwatching gymnastics a day late...literally how do people even do this? my mind is blown! #usa #olympics2012 #london +p7180 +aV@nbcolympics nice.now that you told us the results, we don't have to watch 2nite or whenever you show it. :( #epicfail #nbc +p7181 +aVowwwww that had to hurt. =[ #olympiics +p7182 +aV:o the back or this girls head and forehead are parallel to eachother! how is that even possible? #olympics2012 +p7183 +aVbloody hell! beth tweddle's good, isn't she?!! #london2012 +p7184 +aVtime for the russians and chinese to show them how to do it #teamrussia #teamchina +p7185 +aVgrishina smacked her feet on the bar on her jaeger. only a 14.033. worse than raisman. lol, oh russia #london2012 +p7186 +aValmost broke her neck :/ \u201c@funkymadridista: ouch the chinese girl! terrible landing. \u201d +p7187 +aVthose 3d cameras are way too cool. #london2012 +p7188 +aVkomova- gorgeous arabian. wobbles on punch front and side somi. amazing double arabian dismount. freaking nailed it. #london2012 +p7189 +aVafan!! strong beam. russia looks so happy. they are the most gorgeous team here (well, except vault), i love them. #london2012 +p7190 +aVoh, how i miss ):pic.twitter.com/nlfs5vqm +p7191 +aVcatalina!! in beam finals!! #hazzah #london2012 +p7192 +aVlazy day watching the olympics!!!! #usa +p7193 +aVlondon 2012 rooting for @aly_raisman this year #unbelieveabletalent +p7194 +aVlet's goo!! bout to watch my girl @mckaylamaroney +p7195 +aVpumped to watch @gabrielledoug kill it tonight ! #olympics #usa +p7196 +aVwhy are they wearing purple? where's the red, white and blue? +p7197 +aVthe fact that i already know what happens here is not going to make it any less heartbreaking. #olympics +p7198 +aV#teamusa 's team is incredible. +p7199 +aVpart of me wants to get my still awake daughter from bed so she can watch the gymnasts. #olmpics +p7200 +aVewwww all of them ugly feet .. +p7201 +aVwatching my favorite olympic event!! #usa +p7202 +aVtheir warmups would be the death of me #fabfive #teamusa #olympics #london2012 +p7203 +aVomg the mother is hilarious! +p7204 +aValy's parents are insane hahaha. #olympics +p7205 +aVmy jr olympic students better be ready for a hard week of work after watching all this amazing talent #teamusa #2012olympicgames +p7206 +aVwatching woman's gymnastics with my daughters...again! +p7207 +aVgabby douglas is my girl! #flyingsquirrel +p7208 +aVi love how all of these gymnasts are my height. #loveit #shortpeoplearethebomb +p7209 +aVhonestly, i don't understand the floor routine. it's like kindergarten choreography + crazy ass flips and shit. #olympics +p7210 +aVoh goodness. im not a fan of gabby douglas. but her releases and flys are perfect. #unevenbars +p7211 +aVno, i do not wanna watch swimming especially when i gotta wake up and work with young gymnasts tomorrow. put back on please +p7212 +aVgabby >>> #olympics #teamusa shout out to her foreal +p7213 +aVwatching the beam and bar give me serious anxiety #favolympicsport #usa +p7214 +aVdon't understand why the commentators are always whispering?! lol #olympics +p7215 +aVi'd be so irritated if the music for the floor exercise started while i was doing my routine on the beam. #teamusa #idfalloff +p7216 +aV@gabrielledoug is absolutely adorable! she is such a hard worker! #londonolympics +p7217 +aV"@swimswamnews: "those toes could crack walnuts". #wouldliketoseethat " new olympic sport? #toewalnutcracking +p7218 +aVwatching and #swimming! my 2 favorites! if only i was cool like @geuder and could fast forward through commercials! #olympics! +p7219 +aVanyone else feel like they can breathe a bit now that floor routine is last? #olympics +p7220 +aVomg phantom of the opera floor routine. spectacular #olympics +p7221 +aVoh no, gabby! major step out of bounds in the floor exercise. full point deduction. #teamusa +p7222 +aVi really enjoy watching the #olympics even +p7223 +aVjordyn you just killed it on floor!!! #proudamerican #olympics +p7224 +aVhow the heck do you even do that.. #olympics2012 +p7225 +aVare you #teamgabby, here are 10 things you didn't know about the 16 year-old http://bit.ly/mnnozs #2012summerolympics +p7226 +aVoh the agony of defeat.... +p7227 +aVit's not "almost" a shame. it is a shame. all 3 girls deserve to move on. #london2012 #usa @nbcolympics +p7228 +aVthis one chick is a sore loser #olympics2012 +p7229 +aVthat awkward moment when they're interviewing aly raisman & jordyn wieber is crying in the background. #olympics #sadtweet +p7230 +aVaww i feel so bad for jordyn wieber. #olympics +p7231 +aVjordan will always be my favorite no matter what #olympics +p7232 +aVomg jordyn is crying so much.... ): +p7233 +aVnbc should be ashamed bothering this poor girl after being devastated. #olympics2012 +p7234 +aV@aly_raisman way to represent ma! the 508 got your back #teamaly #teamusa +p7235 +aVbela's mustache is furious!!!!! +p7236 +aVthey should pick the top 24 over all not the top 2 from each country. lame. #olympics +p7237 +aVthis vasiliki millousi is good! i love her poise and confidence. #olympics2012 +p7238 +aVaa top 24 should make it @jordyn_wieber is being robbed of her dreams +p7239 +aVstupid gymnastics rules & judges piss me off!! #olympics +p7240 +aVi'm offended by the statement that female gymnasts are divas. pretty sure they're olympic athletes, asswad. #nbcfail #feminism +p7241 +aVthere should be a dedicated bela karolyi channel. #olympics +p7242 +aVhow do they do it? +p7243 +aVyazz russia. so much more graceful. werkin it like at the bolshoi #olympics #bunhead +p7244 +aVseeing russia and china struggle puts. smile on my face. i'm a terrible person. #teamusa +p7245 +aVshazam team canada!! shazam! :o) #london2012 http://www.windsorstar.com/touch/sports/2010wintergames/story.html?id=7008671\u2026 +p7246 +aVthe joy of spraying your hair w/ glitter hairspray before gymnastic meets will be something only a gymnast can understand.. +p7247 +aVthese commentators are dickheads to anyone who isn't american #olympics +p7248 +aVmusty and vika's bars are pretty rad too. dear usa, let's get better on bars next quad. it's my favorite to watch. #london2012 +p7249 +aVdamn this was a tough qualifier for #teamusa. damn these unfair rules. i'm so sorry jordyn wieber. i know what it feels like. +p7250 +aVjordan weiber is one class act. broke my heart to see that kind of disappointment #olympics +p7251 +aVwatching parents cringe during the is hilarious. who wants to bet they are as crazy as beauty pageant parents? +p7252 +aVstill really bummed that @nastialiukin and @shawnjohnson aren't representing us this time around. #teamusa #olympics +p7253 +aVbut these girls still totally freak me out. +p7254 +aVso far, the u.s. is killing it #olympics +p7255 +aVwow. these parents scare me--really scare me. like type a on meth and coke. #olympics #london2012 +p7256 +aVthe play-by-play announcer for the events is so annoying. could he be more negative in his commentary? ugh. +p7257 +aV#olympics ugh canada you can do better +p7258 +aVgabby's finna kill it here on bars. +p7259 +aVi'm sitting here yelling at my tv "stick it.....stick it" as if i'm the one competing lol ..ahhh stressful #fab5 #olympics +p7260 +aVthat "extra-springy" floor is making me mad. #usa #2012olympics #teamusa #london2012 #gabby #kyla #jordyn +p7261 +aV are always my fave thing to watch in the olympics, the girls make it look absolutely effortless... #jealous #iwish +p7262 +aVam kind of disappointed that usa team isn't sporting make it or break it braids. #isitjustme? +p7263 +aVtime for bed, but just can't stop watching . #london2012 +p7264 +aVreally wishing there was a standard floor. everyone should be used to the same level of springy-ness. #olympics +p7265 +aVcongrats 2 aly raisman and gabby douglas for making it 2 the all-around. def feel badly 4 poor jordyn wieber. :( @nbcolympics +p7266 +aVzebra print. stage mom alert. #olympics +p7267 +aVi miss shawn johnson and nastia liukin in the olympic gymnastic events. #olympics +p7268 +aVway to redeem yourself china #olympics2012 +p7269 +aV\u201c@phillipmottaz: every time that beep goes off during the , i think it's bleeping out swearing.\u201dhaha me too! +p7270 +aVum at this time last night my alarm went off to get up and watch the olympics. my sleeping schedule is so messed up. #londontime +p7271 +aVcould watch tweddle all day... such a talent!!! @bethtweddlenews #london2012 +p7272 +aVi about cried when jordyn weiber didn't get all-around final. she's been one of my fave outta the whole competition.. #olympics +p7273 +aV@nbcolympics coverage of shows 2 other gymnasts in prime time other than usa. were we the only ones competing in that rotation?? +p7274 +aVthe passion, determination and self control needed for this sport, . i have such admiration for these athletes. #respect +p7275 +aVnow that i'm sure everyone has seen it, my heart is breaking for jordan wieber. all-around rules completely unfair+maybe sexist. +p7276 +aVbut taxation > diving sigh. since tomorrow night will be wasted by watching team finals. so now study first ): sacrifice diving. +p7277 +aVmen's gymnastics next, bums and arms mmmmm #teamgb #london2012 +p7278 +aVlouis smith is gorgeous!! #olympics +p7279 +aVhow the fuck can you do that #olympic2012 +p7280 +aV"@salliiee_xo: \u201c@yourgirlsudanny: louis smith is gorgeous!! #olympics\u201d he is mine" lol can't we share? he's big enough! ;] +p7281 +aVliving #olymics2012 today! now for the #mensfinals . good luck #teamgb and @louissmith1989 :) x +p7282 +aVsome of these gymnasts would make sick pro wrestlers. #london2012 +p7283 +aVok, so sadly #diving didn't quite go to plan, let's see if goes better #london2012 +p7284 +aVevery event is an impressive thing to behold! strength, power, agility, body control... it really is incredible! #teamgb +p7285 +aVphilipp boy from germany omfg. +p7286 +aVhis hair though. why :( #teamgb #olympics #london2012 +p7287 +aVrings still amaze me! the strength these men have is ridiculous! #teamgb +p7288 +aV gotta be my fave sport to watch #fitmen +p7289 +aV@andreahannon_ true enough. is going amazingly though! loving the #london2012 coverage on @bbcone +p7290 +aVcasually watching the gymnastics and realising there strength and agility is immense! +p7291 +aV#teamgb 2nd at the end of round 1 of the #london2012 +p7292 +aV"just know you're not alone cause i'm gonna make this place your home" perfect song for the #fabfive #london2012 #teamusa +p7293 +aVgermany are *really* impressing me. #imthejudge #olympics2012 +p7294 +aValso why is team gb's gear red and white only? where's the blue? it looks weird. +p7295 +aVi do like the not just for pervy purposes but those guys/girls are so impressive #london2012 +p7296 +aVjonathan horton. good to see him back at the olympics. #usa +p7297 +aVoh hello beautiful chocolate man #london2012 +p7298 +aVholy crap! christian thomas on the vault! wow! #teamgb #olympics +p7299 +aV having a laugh our bum off http://x.co/mswl +p7300 +aVthey're all so proper like everything is perfect #olympics2012 +p7301 +aV@ianhwatkins the arms, the arms i can't believe the arms. +p7302 +aV@davebeesley64 just confessing in advance that you'll find us both glued to the telly when you get in #olympics #teamgb +p7303 +aVchina are gonna take this final and they're going to do it in style. pleasing & effortless to watch with top scores. +p7304 +aVhush russia. usa sucking major ass too. #londonolympics2012 +p7305 +aVmen's you got this! #fireup #olympics +p7306 +aVsit-ups. plank and press-ups whilst watching #inspiration #olympicsbody +p7307 +aVit's annoying that the high bar keeps squeaking. stop it, bar +p7308 +aVaww i hate it when try don't do well and they look sad :( +p7309 +aVoh no, feel so sorry for john ozorco! #olympics +p7310 +aV#japan, you never disappoint me! #london2012 +p7311 +aV@abbiesarmy goes to #london2012 tomorrow. go #teamgb women :) abbie spent more time on her hands than her feet! so excited! +p7312 +aVsomething about hearing the commentator calling the japanese male gymnast "silky" squicks me out. #olympic +p7313 +aVwish i had a japanese hairstyle at times. +p7314 +aVi need a girl that does +p7315 +aVaw just missed my ginger because of the stupid arse i love with distracted me #teamgb +p7316 +aVhang on - what ; bbc not in control of which pictures being broadcast\u2026on bbc? so we miss brits? #london2012 #olympics2012 +p7317 +aV@teamgb come on lads. so close to an unlikely medal. +p7318 +aVsam fell off tho :'( x +p7319 +aVthomas, you astound me. #beauty +p7320 +aVseriously can't get enough of @teamgb at the #olympics loving the right now #comeonteamgb! +p7321 +aVc'mon #teamgb you can do it!!! +p7322 +aVwoahhhhhh that hot guy from hungary is insane of the pommel!!! this is so much better than the tennis. +p7323 +aVhambuchen!! awesome high bar, he's pumped. hope he kills it in all around finals #london2012 +p7324 +aVimagine sitting in the arena and all of a sudden wills and harry pitch up and sit beside you! +p7325 +aVcome on @teamgb in the woo! +p7326 +aVat least the royals are using their free corporate tickets at the . bravo, boys. #olympics +p7327 +aVhere we go for highly unlikely #bronze in men's final - lying in 4th 0.24 behind #ukraine - just 'floor' to go #eltog +p7328 +aVi'm frustrated by the lack of coverage show more #teamgb !! #olympics +p7329 +aV@teamgb eeeeek indeed!! everything crossed - fingers, toes, arms, legs, hair, wires, you name it!! +p7330 +aVloving matt baker's commentary on the gymnastics, bubbling over with enthusiasm! #london2012 +p7331 +aVchina get gold. sucks to be usa. now let's get that bronze #teamgb +p7332 +aVyikes. the gymnastics is tense!!! come on @teamgb #london2012 +p7333 +aVcome on #teamgb gymnastics team! it's there for the taking! #comeonboys +p7334 +aVi'm sooooo anxious! come on gb!!!!!! +p7335 +aVway to redeem yourself on both the pbars and high bar @johnw_orozco! #teamusa ... who doesn't like cheering for a comeback? +p7336 +aV@teamgb i'm not sure i can cope with this much tension & anticipation! +p7337 +aVbloody hell. dan purvis is an astounding human being. +p7338 +aVoh my god! dan purvis was immense there! :) +p7339 +aVmy dad is crying at the . i\u2019m so amused. come on @teamgb #ourgreatestteam +p7340 +aVdan pervis was unbelievable then! brilliant! +p7341 +aVmy god this is so tense! #comeonteamgb +p7342 +aVcmon thomas you big bastard! #olympics +p7343 +aVshould i be watching the though? is it really that entertaining? because i must admit i'm quite enjoying the #waterpolo +p7344 +aVkristian thomas is indeed incredible! i can barely muster a roly poly... these guys are astonishing! #london2012 +p7345 +aVreading @hughbon's #olympics tweets crack me up. audio-only updates must be incredibly amusing. +p7346 +aVbronze get in there!!!!!!!!!!!! #london2012olympics +p7347 +aVyes yes yes! congrats boys!! #teamgb #olympic2012 +p7348 +aVso matt baker exploded without confirmation of the results. the fuck is going on. +p7349 +aVsilver for @teamgb well done boys! #london2012 +p7350 +aVyessss! well done team gb so happy!!! silver!! +p7351 +aVwell done we have a silver yeayyyyyyyyy!!!! wohoooo +p7352 +aVreferees on disgrace again +p7353 +aVnot grumpy anymore! fantastic silver medal! beautiful! #olympics2012 +p7354 +aVno wait it's silver! omfg! yes, mens this is amazing, i am actually crying! this is unbelievable! :') +p7355 +aV ! men's gb team first olympic medal for 100 years and they get silver! fantastic! brilliant! +p7356 +aVsilver in the men's team is ours!! can't believe it. well done boys! amazing! amazing! #london2012 #olympics +p7357 +aVshannon miller's voice gives me mono. she sounds like she is in a pageant. +p7358 +aVsilver for gb yeaaah! #olympic2012 +p7359 +aVyes! well done @teamgb men's with the silver medal! just screamed my house down! massive well done lads!!! +p7360 +aVsilver in the gymnastics!! amazing #goteamgb #olympics +p7361 +aVyayyyyyy :) what cuties #teamgb b e a u t i f u l +p7362 +aVnoo we'll go back to bronze if the inquiry is approved :( +p7363 +aVjeez, this is nail biting! +p7364 +aVjapan lodge appeal against dismount deduction on final pommel. japan may get bronze here... let's hope not silver! #london2012 +p7365 +aVoh no the little ukrainian's face.. :( +p7366 +aVhonestly didn't think you guys could do it but i'm gladly proven wrong <3 i'm sooooo proud of you boyssssss <3 <3 #china +p7367 +aVjust let us keep the silver #olympic2012 #tense +p7368 +aVthe tension of the appeal by japan is immense. either way @teamgb did us proud #ourgreatestteam - but i'm holding my breathe +p7369 +aVsilver metal great britain !! yayyyyyy +p7370 +aVnot sure i can handle the gymnastics tension... #olympic2012 +p7371 +aVit was so close...but it's such an amazing achievement #teamgb +p7372 +aVthat was a horrible 5 minutes, still got bronze, fantastic achievement making history. #teamgb +p7373 +aVhahahahahaha silver medal for japan. japan jumps from 4th to 2nd... @teamgb gets bronze & ukraine is out. #london2012 +p7374 +aVit could be worse. we could be ukraine and not get any medal at all after the japanese cried about it. #london2012 +p7375 +aVwhat a disappointment for #teamgb and ukraine. i'm sure they'll still be pleased with a bronze. +p7376 +aVnow i feel for ukraine, i'm a soft bastard i really am #olympics +p7377 +aV! high drama- brilliant with the bronze! xx +p7378 +aVwhy the hell did they accept the inquiry, gb would have won the sliver, stress. #olympics2012 +p7379 +aVi can't believe that #london2012 +p7380 +aVwhat a bloody disgrace! the tamogotchi wankers +p7381 +aVukraine heartbroken. talk about emotional roller coaster. #london2012 +p7382 +aVa bronze is still an incredible achievement @teamgb the boys should be proud +p7383 +aVphil fish was right #london2012 +p7384 +aVfeel cheated like silvers been stolen from us when i was initially ecstatic with bronze! #ourgreatestteam +p7385 +aVbronze is still good i suppose, but aw poor ukraine :( #london2012 +p7386 +aVbooo hiss. no one in gb likes japan right now. #outrage +p7387 +aVhey...at least we beat the russian dudes. #olympics #brightside +p7388 +aVwell i am confused by this , but well done lads, bronze is blooming brilliant! *cancels booking at japanese restaurant* +p7389 +aVi feel very sorry for ukraine though. they were amazing and have come away with nothing. #olympics +p7390 +aVit took 100 years for british gymnasts to go from bronze to silver. it took 8 minutes for them to go back down again. #upset +p7391 +aV@teamgb proud of them shame it wasn't the silver medal pretty damn annoyed with japan right now seems very unfair +p7392 +aVmajor congratulations are due to everyone who competed in men's . #olympics +p7393 +aVkristian thomas is some guy #teamgb #hero +p7394 +aVdon't know whether to be pleased for the bronze or gutted because of missing the silver #olympics +p7395 +aVthat wasn't a very classy dismount though, was it? he fell off. #olympics +p7396 +aVimagine if fuck you japan trended? #london2012 +p7397 +aV#rage gb should well have got silver, they did amazing!! still golden to us boys! #teamgb +p7398 +aVjapan are jammy gits funny that one of the judges was japanese! bronze however is still such an achievement #ourgreatestteam +p7399 +aVwell done sam, daniel, louis, kristian and max!!! go on #teamgb =d xx +p7400 +aVnice one chaps...how lovely! +p7401 +aVso young! so well done :) #londonolympics2012 #proudtobebritish +p7402 +aVoh what a wonderful sight!such a proud moment;enjoy it guys you earned that!!! @teamgb @louissmith amazing! #london2012 +p7403 +aVcan't believe japan got extra points for falling off the pommel horse with style. #disgrace +p7404 +aVdisappointed we go back down to bronze in the and sad for ukraine. don't know how the judges could change their mind like that! +p7405 +aVwe are a sporting nation. applause for japan. heads held very high for an amazing accomplishment #teamgb +p7406 +aV#olympics #ourgreatestteam so incredibly proud right now, whether it be bronze, silver or gold you did amazing boys!!! +p7407 +aV #teamgb awesome job boys fantastic we are all so proud. +p7408 +aV"they're so heavy" one of our boys says as he takes the bronze. #teamgb proud. +p7409 +aVyay! so chuffed for the #teamgb boys (won't say what i screamed at the telly when japan won their appeal though...) #london2012 +p7410 +aVso proud and amazed of @teamgb ! #ourgreatestteam!!! +p7411 +aVshame about gb missing out on the silver. still, bronze! well in! +p7412 +aVthink i love max whitlock #olympics +p7413 +aVdaylight robbery by the japanese #teamgb we're proud whitlock purvis & thomas.. #olympics +p7414 +aVcue sadly-predictable tabloid headlines along the lines of "nipped at the post" #fb +p7415 +aVwow what a fantastic performance guys! literally breath-taking performance! +p7416 +aVjust read the results of men's today- interesting! looking forward to watching it tonight. #london2012 +p7417 +aVstill annoyed about gymnastics shakajzjqkhwnsb #olympics +p7418 +aV what a competition! #swimming i feel as if i'm swimming every length with them! stilled gripped #olympicfever +p7419 +aVwhat? bronze now >:( #teamgb #olympicshttp://www.telegraph.co.uk/sport/olympics/gymnastics/9439509/team-gb-gymnasts-win-historic-bronze-after-narrowly-missing-silver.html\u2026 +p7420 +aVall the girls on the team are all living that a cup lifestyle lol +p7421 +aV@teamgb amazing performance by dan, louis, sam, kristian & max this evening, especially your fantastic floor work! well done +p7422 +aV"lord of the rings, all hail" #teamchina +p7423 +aV:( not this time! congrats china, japan and great britain. http://goo.gl/jcdti #olympics, +p7424 +aVi need to see this "graceful" fall by japan. +p7425 +aVstill really pissed off about the men's gymnastics bronze/silver affair #olympics +p7426 +aVstill so psyched up x333 #olympics +p7427 +aV used to be my life #stilloveit @tess_6 +p7428 +aV@adoreboutiques @lindseychester absolutely! my favorites: #swimming & you? #olympics2012 +p7429 +aVi was buzzing but screwing about daylight robbery.. wish i was olympic gymnast. #pickardrio2016 bet you're buzzing in general! \u201d +p7430 +aVlook at this guy doing a japanese dismount http://youtu.be/suyyjqwwg8c via @youtube #london2012 +p7431 +aVi've watched the about 4 times now this evening but it still doesn't get old #bronzemedal #ourgreatestteam +p7432 +aVwatched this afternoon & most impressed by @teamgb team's performance. well done chaps. a medal so well deserved. great work +p7433 +aV was immense, the upper body strength is scary +p7434 +aVwhat a cutie kristian thomas is ! japan may of stole our silver, but so proud of our boys today, brilliant :d #teamgb +p7435 +aVstill annoyed with the results, just cos the guy from japan spat his dummy out for not getting his own way, we get bronze!! +p7436 +aV kaira is unquestionably a new prick. he put up the recording in porntube. such a good rear end. http://is.gd/5rfhxq?rk3oyv +p7437 +aVhuge congratulations to @teamgb for their inspirational performance today! #ourgreatestteam +p7438 +aV@niallofficial i get so worried when i watch the i keep on thinking there going to get injured hahaha what do you think :)xx +p7439 +aVi wonder what my life would have been if i had gone down that path. i could have been a better athlete. i miss the thrill of +p7440 +aVoops. phone tweet fail. ...i teach gymnastics. +p7441 +aVwhat's up with that floor? #teamusa +p7442 +aVoh my god jake dalton is gorgeous.. #olympics2012 +p7443 +aVusa mens yes just yes ahsjfkfhahsjs :3 #olympics +p7444 +aVhe needs a new haircut..before the next rotation. +p7445 +aVcan't wait to watch the team usa girls compete tomorrow on my laptop because i'm not about to wait until prime time +p7446 +aVfollowing the men's final on twitter was so exciting. nbc has managed to strip it of all of it's excitement. where is the drama? +p7447 +aVtim - gbr didn't need to "punch their tickets'. they live here!!!!!!!!! #facepalm #olympics +p7448 +aVaw yay cute british guys!! #olympics2012 +p7449 +aVthose are the germans! note the grooming! #olympics +p7450 +aVno, the asian with the money in his hand doesn't look suspicious at all. +p7451 +aVjapan is stunned #appeal \u201c@updateolympics: what a amazing job by gb .\u201d +p7452 +aVjapanese kris jenner got spooked by the applause and screwed up his dismount - that's a little sad #london2012 +p7453 +aVugh. come on dannell. you cannot do this in the finals! grr. #olympics +p7454 +aVit appears japan brought enough cash to secure the silver. and that's not even a false statement. #london2012 #sketchy +p7455 +aVway to kick ass uk +p7456 +aVi think the judges should drink heavily before scoring, so gymnasts & fans will be even more confused. #london2012 +p7457 +aVthe cash worked! this is too much. #olympics +p7458 +aV omfg! i was surprised that this really is rear! http://x.co/mqzg?ojgk0c +p7459 +aVthese guys are beasty!! #olympics #teamusa +p7460 +aVwhoo! go canada! rt @miss604 @victoriamoors: team finals tomorrow! #london2012 #gocanada +p7461 +aVbritish men's , actually gasped in amazement. check out that weird handstand thingy! +p7462 +aVawww!!! john orozco, don't cry!!!! :'( we're still very proud of youu!! #olympics2012 +p7463 +aVi am still stunned by the boys gymnastics last night! you did us proud! amazing!!! +p7464 +aVhope beth tweddle can do the business here. looking forward to the highlights. +p7465 +aVhopefully #teamgb will get an #olympic gold soon! in the meantime we should most definetely be satisfied with the bronze! +p7466 +aVstill proud of the men's team. let's hope the ladies can get it done and #takehomethegold ! #london2012 #olympics +p7467 +aVi can't for tonight, when the fab 5 compete! #olympics +p7468 +aV@theeconomist have you not seen #theaquaticcentre (packed) #threedayevent #rowing (packed) (packed) this is total rubbish #fools +p7469 +aVliking the google page today :d pic.twitter.com/ierorjue +p7470 +aV@johnw_orozco ...you've already won gold!! you're heart is made of gold!! that's perfection!! #teamusa \ue50c #london2012 +p7471 +aVis it bad that i find olympic drama another exciting part of the olympics? #controversy #korea #fencing #japan #london2012 +p7472 +aVtime for the women's team final. *deep breath* not ready for the stress this will cause me. oh dear. do bestest (my!) girlies! +p7473 +aVlet's go #usa kick ass girls! #bringhomethegold #olympics +p7474 +aVit was 16yrs ago i watched the magnificent seven conquer the stage and i wonder if the "fab five" have what it takes. #olypmics +p7475 +aVi watch the olympics because i dreamed big as a kid. #watchingdreamsontv #crushed +p7476 +aVcome on girls let's get it done #teamgb #ourgreatestteam +p7477 +aV coach june deeley on how @bethtweddlenews started out: http://bit.ly/pw8ctf essential info for aspiring #gymnasts +p7478 +aVan average of ~16 on vault #gousa +p7479 +aVooph, that was a biiiig step to the side. +p7480 +aV #2012londonolympics chinese girls so small adorable +p7481 +aVim fuming at the amount of empty seats in the womens gymnastics final. looks bad on britain and bad for the athletes #london2012 +p7482 +aVthe amount of sugar they would have to eat to spin like that must be unreal! #london2012 +p7483 +aV@ohsheglows thank you! figured it out this morning! i was rushing over the website too quickly yesterday! go ! +p7484 +aVthat beam is ridiculously thin, i bet my foot is wider than that. +p7485 +aVrussia's jackets are hideous #justsaying #london2012 +p7486 +aVwow... china fell off the beam?! #ouch #teamusa +p7487 +aVjennifer pinches from gb looks so chuffed! i'm so happy for her! you did great! +p7488 +aVnerdfighter gang sign from jenny pinches! dftba! #olympics +p7489 +aVctv seriously. why did you feel the need to cut to beam right when kyla was on bars!?!? i need to know what happened! #teamusa +p7490 +aVwomen gymnasts in such a rush to do routines. either want to be home for neighbours or too much sunny delight +p7491 +aVkyla ross usa scores 14.933 on ub. usa needs every tenth on bars, so she will be pleased. #london2012 +p7492 +aVi'm almost yelling at my computer. i should not be allowed to stream this shit. #olympics +p7493 +aVgymnasts are actually amazing , so much admiration for them right now! #olympics +p7494 +aV #teamgb come on girls!! bring it back! x +p7495 +aVwhy are these gymnasts tarted up like judy garland during her crack-whore phase? do the judges have a weakness for blush? +p7496 +aV #olympics #teamusa those photographers are all in her face when she tried to sit down... #gabby +p7497 +aVthe chinese ladies are so solid on their floor work, gabrielle douglas stunning on the beam 2. loving it #lo2012 #2012olympics +p7498 +aVso #channel9, another night of not showing one of the most popular sports in the #olympics - :/ #nothappyjan +p7499 +aVfor real #romania? i just don't believe these ages. i don't care what anyone says. #olympics +p7500 +aVloved diana's floor routine. smiling all the way through, as well :') #olympics2012 +p7501 +aVmatt baker just called a 16 year old girl 'perky' +p7502 +aVoh your dismount vika!! sadness. i gasped. #london2012 +p7503 +aVi would normally never wish ill upon those with such great eyebrows...but stumble more russia! #olympics +p7504 +aV#olympics is dangerous! all contestants are bandaged up! where is the elegance? #ban +p7505 +aVsandra raluca izbasa was literally the most amazing person on floor +p7506 +aVinteresting music choice by russian gymnast. she might be trying to scare the judges into giving her points #london2012 +p7507 +aVthe men's team a gymnastics is coming down to the wire for a bronze. so exciting, come on team gb! #2012olympics +p7508 +aVi honestly don't know how they do it. i struggle to step on/off a boat 1 foot from the side. awe-inspiring #olympics +p7509 +aVouchh. feel awful for russia :( is brutal. +p7510 +aVas much as i wanted russia to fail, that poor girl's face makes me so sad! #olympics #london2012 +p7511 +aVand afanaseva fell! :o +p7512 +aVanybody else watching the waitin for @inbetweenerneil @inbetweensimon and @inbetweenwill to come on lol +p7513 +aVthe usa is just awesome at everything. #swimming #volleyball #rowing #proudtobeanamerican +p7514 +aVwhy can the men just get on with throwing themselves about the floor yet the women have to faff with pageant-like dance filler? +p7515 +aVthe us women are two hit floor routines away from olympic gold after russia crumbles. cannot control my excitement!! #usa +p7516 +aVgabby douglas just rocked it on the floor! #teamusa #olympics +p7517 +aVgabby just went 4 for 4!!! and to think gabby was the one, we worried about the most. #olympics most. +p7518 +aVamazing routine by gabrielle douglas most upbeat song i heard so far ha #teamusa #london2012 +p7519 +aV\u201c@shawnjohnson: gabby. hit!! #olympicstoday\u201d solid routine. i believe we have a gold! #flyingsquirrel #olympic2012 +p7520 +aVhow are you not showing us tweddle right now?! #london2012 +p7521 +aVbeth tweddle on asymmetric bars is something else entirely... :-) #applause #olympics +p7522 +aVbeth tweddle is just on a different planet with those bars!! :o #unbelievable #teamgb +p7523 +aValy raisman was nearly flawless. and all the kids are crying. #usa +p7524 +aVwhy the hell are the commentators so excited about usa winning? but #teamgb girls sadly ur just not as good as the boys :-( +p7525 +aVaw china crying :( #olympics +p7526 +aVthe russians are crying because now they they have to go back to their electric fenced pen and do somersaults 18hours a day. +p7527 +aVeveryone knew that usa would win the gold, and they didn't disappoint, what an amazing performance! #olympics #london2012 +p7528 +aVso glad usa beat china! #olympics #olympics2012 +p7529 +aVand here, seconds later, all smiles. i'm totally geeked out right now. #olympicspic.twitter.com/ol3z41rs +p7530 +aVchalk, grip, fear, flying http://bit.ly/m0okyy (new post!) +p7531 +aV#olympics: is unforgiving, but arbitrary rules should not a #champion make!!! http://www.chicagonow.com/the-athletes-sports-experience-making-a-difference/2012/07/olympics-gymnastics-is-unforgiving-but-arbitrary-rules-should-not-a-champion-make/\u2026 #raisman #wieber #douglas +p7532 +aVcongratulation girls! @aly_raisman @jordyn_wieber @mckaylamaroney @gabrielledoug @kyla_ross96 #teamusa #olympics +p7533 +aVnot going to spoil it for everyone waiting for the stupid @nbc tape delay.. but wow #olympics2012 +p7534 +aV#olympics 2012: the u.s. women\u2019s team winning the olympic title for the first time since 1996. +p7535 +aVspoiler alert: usa girls gymnastics team wins team gold!!! first time since 1996!! #usa #gold +p7536 +aVahh team usa rocked it!!!! #olympics2012 +p7537 +aVway to fucking represent!!! gooooooold!! #teamusa womens #stoked +p7538 +aVthese all-around finals rules remind me of the annoying #bcs "of old"- time for reform. glad jordyn got a gold. #teamusa +p7539 +aVavoided twitter and coverage all day at work only to have @nbc ruin the #women's #olympic finals anyway. thanks #sarcasm +p7540 +aVi love how people comment on gymnastics like they know what they're on about #olympics #fools +p7541 +aVgreat job #teamusa well deserved win! they brought it today. congrats canada for getting as far as you did! +p7542 +aVi do worry about these girls' wombles and the bashing they take on the bars #london2012 +p7543 +aVblimey you don't see that very often russian falling over on floor #olymicslondon2012 +p7544 +aVawkward time of the day when the olympic sports that no one really cares to watch are on. #bringmevolleyball #swimming +p7545 +aV#olympics: is unforgiving, but arbitrary rules should not a #champion make http://www.chicagonow.com/the-athletes-sports-experience-making-a-difference/2012/07/olympics-gymnastics-is-unforgiving-but-arbitrary-rules-should-not-a-champion-make/\u2026 #batc #raisman #wieber #usa +p7546 +aV#talktuesday in other #news, the #olympics roundup includes #michaelphelps & #teamusa ! http://london2012.compic.twitter.com/0lojfc6h +p7547 +aVwoohoo #canada! 3 more medals plus an excellent showing in ladies #judo #synchrodiving #weightlifting #london2012 #ctvolympics +p7548 +aVomg! finally "make it or break it" seasson 3 on netflix! #freakingout +p7549 +aVi hope jordyn kicks butt tonight. #jordynwieber +p7550 +aVcan't believe i'm miss my girls kick some major butt at the olympics tonight #grr #fabfive #olympics2012 +p7551 +aVdrama w/ @kristynburtt @buckhollywood & @stuartbrazell, is available to watch via @spreecast http://www.spreecast.com/events/london-games-gymnastics-drama\u2026 #london2012 +p7552 +aVdang! i loveee the us gymnasts leotards! soooo cute! #olympics +p7553 +aVwohoooo. let's go team usa. ^.^ +p7554 +aVi really like our girls uniforms #olympics +p7555 +aVnailed it! way to go jordyn! #gousa +p7556 +aVyeah jordyn. way to start it off. #olympics +p7557 +aVi'm yelling at team usa like i yell at the shox. #teamusa +p7558 +aVwhoo that girl is damn good on the vault!!! #olympics +p7559 +aVwhoa. mckayla has total bitch face. #usa #olympicfever +p7560 +aVmaroney's vault was amazzzzing! #teamusa +p7561 +aVour girls are doing amazing #london2012 +p7562 +aVthese announcers are a-holes, which is pretty funny. #olympicsnbc #thatsnotevenmediocre +p7563 +aVi only watch the olympics for gymnastics.. they can just skip the other sports. #sorry ismysport +p7564 +aV\u201c@jencook: love watching already knowing the outcome. it does wonders for my anxiety level. #olympics\u201d so true. +p7565 +aVthese girls look so much younger than they really are! #2012olympics +p7566 +aVi love the noise it makes when they jump on the balance beam #olympics2012 +p7567 +aVi'm always so amazed with balance beam routines. #olympics +p7568 +aVuneven bars are the stuff! highly entertaining. +p7569 +aVi gotta say...i am loving the glitter hairspray. (is anyone really surprised by that statement?) #olympic +p7570 +aVwatching olympics makes me nervous... #london #random +p7571 +aVjordyn wieber is all muscle....after she did her weiler kips on low bar she struggled, but just pulled her handstand back. +p7572 +aVeither this audience has terrible rhythm or the broadcasting authority is throwing in fake clapping. #olympics #paintitblack +p7573 +aVtime delayed or not (i don't already know the results), this is intense! go usa!!!! outstanding performances so far! #olympic +p7574 +aVgymnastics yeaaah! jordyn! jordyn! #olympics2012 +p7575 +aVare aly raisman's parents from jersey? # wreckonize #2012olympics +p7576 +aV@nbcolympics uh, way to ruin the results for us watching it on your delayed program. at least wait until after usa has seen it. +p7577 +aVrussia's warm up jackets are pretty fly. how do i get my hands on one of those? #olympics +p7578 +aVthis delayed gratification programming schedule is brutal on the nerves! #olympics +p7579 +aV@nbc switching between and #swimming is giving me heart palpitations #olympics +p7580 +aVi'm getting so frustrated with these judges, these girls deserve higher scores #olympics +p7581 +aVremember when russia was the dominate force in .... well, that is the past folks.... +p7582 +aVeyeliner and glitter won't make you a better gymnast. #justsayin' #2012londonolympics +p7583 +aVhey russian gymnasts, you better hope that your government isn't rationing tears. #americafyeah #olympics +p7584 +aVpoor russia on the beam... :-( i only feel 40% sorry for them. lol #usa #usa #fabfive +p7585 +aVthis little russian bitch, who i keep calling mufasa, i'll slap that attitude right out of you. #olympics2012 +p7586 +aVwatching gymnasts fall out of their turns is like watching basketball players miss free throws #noexcuses +p7587 +aVdamn she messed up but she had mad energy #olympics +p7588 +aVwas it that bad? it was catastrophic. thanks announcers for your on point humor #olympics +p7589 +aVthat paranorman commercial was great. #pommelhorse +p7590 +aV"would you go for the knockout blow if your opponent was sobbing?" america would mr. announcer #merica +p7591 +aVbhahaha russia messed up!!! #teamusa +p7592 +aVadding russian makes anything sound 11x more brutal. meltdown: bad. russian meltdown: forget it. #london2012 +p7593 +aVno wonder the russians are crying.. id be scared to death to confront their coach too! +p7594 +aVo.m.g my puppy is actually watching the girls do their routine. +p7595 +aVdislike people laughing at the russian's tears #youdbesadtoofuckers #olympics +p7596 +aVi can go to bed soundly (and earlier than planned) thx to @twitter and up to date news on who wins #london2012 +p7597 +aVdamn @gabrielledoug was on fire on the floor!! wohoooo way to go!!!!!!!! #teamgabby #teamusa #olympics #2012olympics +p7598 +aVi'd be smiling too if i were dancing to an upbeat italian hip hop song too. #olympics +p7599 +aVdid he just get all mlk over gymnastics? ..."from the abyss to the mountaintop!" lolol #ampedcomentators #olympics +p7600 +aV@yvonnechasela love this!! how exciting to see so much young talent. pefection. #usa #gold +p7601 +aVthese girls are unbelievable on this balance beam #olympics #london2012 +p7602 +aVthe fab five gets the gold!!!!!!!! #olympics +p7603 +aVusa usa usa usa usa usa #olympics #america +p7604 +aVomg i'm crying for them like no joke #teamusa +p7605 +aVusa women's gymnastics gets the gold!!!!! #hellyeah #teamusa #olympics +p7606 +aVi already knew they won and i was still holding my breath in anticipation. #usa #gold +p7607 +aVthey put the camera on shawn when they won #2cute #usa +p7608 +aVpretty sure i just cried like a baby for team usa gymnastics.. #olympics #teamusa #goldmedal +p7609 +aV#fabfive #usa #olympics yes yes yes i am literally so excited +p7610 +aVi almost started crying when the fab five won it for us. #usa #proudtobeanamerican #olympics #teamusa +p7611 +aVwhen i hear my mom yelling at the tv.. "stick it! come'on ambur could of did that damn it" lmfaoo. +p7612 +aVvictory for the us women's gymnastics team! #tearsofjoy #fabfive +p7613 +aVand tothink i was trolling the internet at 15/16 while these young ladies are out winning gold medals at the #olympics! #teamusa +p7614 +aVnothing better than the star spangled banner playing during the medal ceremony at the #olympics #usa +p7615 +aVlmfao the girl in the middle +p7616 +aVphotos: #fab5 dreams become reality with #olympic gold in women's final: http://nbco.ly/m1ni5k #way2go +p7617 +aVday three of the olympics and third day in a row usa has made me tear up #swimming #amazing +p7618 +aVi feel like i know these girls... #olympics #golden +p7619 +aVi love watching these girls kick ass at gymnastics! #wishi'dstucktoit #jordanwieber +p7620 +aVbob costas, please shut up. start with how she just won gold instead of a disappointment 2 days ago. #olympics +p7621 +aVholy cow mckayla maroney. #2012londonolympics #teamusa +p7622 +aVomg, these girls are super cute! #fabfive #love +p7623 +aVgabby douglas, mckayla maroney, kyla ross, jordan wieber, & my all time fave aly raisman i'm truly inspires by you all #fab5 +p7624 +aVoh my gosh i'm so proud and happy for #teamusa! & #swimming was incredible! we were screaming and grabbing each other, so scary! +p7625 +aVmother russia does not tolerate failure. feed them to the pigs. #russianolympiccredo +p7626 +aVhilarious how everyone all of a sudden has #olympic ambitions! the kids are going on a diet to prepare for 2016 #haaahaaa +p7627 +aVthose russian girls aren't bad... +p7628 +aV #gogabby ur amazing gabby , u need 2 get ur props qualifying in all 4 events , bravo @nbcolympics #teamusa +p7629 +aVi am so terribly sad that i didn't get to watch tonight. +p7630 +aVwow, these girls r bb (beyond belief!) #teamusa - congrats on the #oro +p7631 +aVis there a gymnast that looks more graceful, confident, and elegant than catalina ponor of romania? #olympics #balancebeam +p7632 +aVcan someone please, for the love of all that is good and true in the world, tell tim daggett to stfu! thanks. #london2012 +p7633 +aVteam russia is outfitted by bosco #olympics http://www.youtube.com/watch?v=lyefiauqyge&feature=youtube_gdata_player\u2026 +p7634 +aVdamn almost had that michael phelps!! #london let's go girls were rooting for you!!! #olympics +p7635 +aV haha. how f'n hilarious...! http://x.co/mswl +p7636 +aVour girls are doing amazing!!! i wish the judging wasn't whack. #teamusa +p7637 +aVi love how supportive these girls are of each other. #olympics2012 #usa +p7638 +aVkomonova has an eating disorder, imo. yeah, i said it. #olympics2012 +p7639 +aVcan we all just take a moment to admire sheer awesome? we can? cool! here you go: http://www.youtube.com/watch?v=6rws1i6p060&feature=plcp\u2026 #london2012 +p7640 +aVwhere do i get one of those fresh team russia - tommy bahama wind breakers? #olympics +p7641 +aVspeechless at jordyan wieber performance ! +p7642 +aVwoohoo ! team usa :) +p7643 +aVyayyyyyy team usa :') #london2012 +p7644 +aV<---- d-lib-r-tly stayes of twitter cus i wanted the outcome of #teamusa #womens #fab5 to be a surprise! #gold baaby!!! waaaan +p7645 +aVadd another gold medal to our list usa with the gold #olympics +p7646 +aVthat little girl #gabbydouglas is beasty!! #olympics #london2012 +p7647 +aVso beyond proud of the usa women's team! you go girls!!!!! #proudtobeanamerican +p7648 +aVgood job team #usa girls made me proud!!:) #olympics2012 +p7649 +aVmost joyful moment of women's #gold win was just after coach saying "now turn around and wave" #olympics @mckaylamaroney +p7650 +aV whoa. this is crazy! http://x.co/mslv?zbkza0 +p7651 +aV i'm a sex addict lalalalal http://2.gp/p79q?jw5bxk +p7652 +aVlondon olympics day 4 highlights include michael phelps, ye shiwen, u.s. women's http://bit.ly/t2vm6h #highlights #include +p7653 +aV@clinkhostels congratulation on #british men's and women's olympic 'teams. great work! +p7654 +aVgymnastics: women's team final - gymnastics slideshows | nbc o... http://hashonomy.com/vtgc/ #olympic #way2go (via @nbcolympics) +p7655 +aVabout to watch @kristian_thomas in the individuals final! #london2012 i'll try to remain calm... unlikely... (he so fiiiine...) +p7656 +aVgood luck in the all round gymnastics finals @teamgb #ourgreatestteam +p7657 +aVhow comes men don't use music on the floor ay? +p7658 +aVwhy isn't the north greenwich arena absolutely rammed? this makes me furious! #artisticgymnastics +p7659 +aV@nbcolympics: congrats on #gold #fab5 dreams become reality with #olympic gold in women's final: http://nbco.ly/m1ni5k #way2go +p7660 +aVwhat a sigh of relief after kristian thomas nailed the pommel! #phew #teamgb +p7661 +aVstill waiting to hear about the american's step dad, matt baker. :( someone be a dear and remind him. @london2012 +p7662 +aV@teamwales #olympic inspires next generation of male gymnasts discover welsh students #london2012 #legacy http://bbc.in/pijmod +p7663 +aVthe golden girls: u.s. women\u2019s gymnastics team shines http://j.mp/mbns5j #olympics +p7664 +aVhaha @mayoroflondon watching the @emmaallen_ +p7665 +aV@kristian_thomas nails the rings too!!! he's doing everything he can to sneak a medal here! #london2012 +p7666 +aVlove kristian thomas, he seems like such a nice guy and is incredibly talented. come on team gb +p7667 +aVjohn orozco. i feel for you man. no medals for you +p7668 +aVi admit i have no idea what is happening in the but these guys are amazing #teamgb +p7669 +aVam loving so much.... both @kristian_thomas and @purvisdanny putting in great performances! #goteamgb +p7670 +aVthe vault scores are ridiculous! #olympics +p7671 +aV@andre_p_griffin yes his floor was dazzling #olympics +p7672 +aVow. i really hate it when people balls it up. i feel so sick for them +p7673 +aV#london2012 live : @danelljleyva at the #vault scores 15.566! #goleyva +p7674 +aVkristian thomas stumbled! first #olympic mistake! no! bring it back #teamgb boys... #olympics2012 #london2012 +p7675 +aVaww no kristian :'( but the vault has a huge start value.. +p7676 +aVnew gymnast crush david belyavskiy from russia - also an amzing gymnast #olympics pic.twitter.com/7ewvh1sw +p7677 +aVpiss off sue barker, bring the back! +p7678 +aVolympic commentators blaming #mediawork for our chap losing grip on horse +p7679 +aVoh god why is gotye playing in the background i can't get away from that sooooooong. #olympics +p7680 +aVrt @jerimdash: i just tried to do a japanese handstand! i think you all know the outcome. #epicfail >>> she still in the lead #olympics #usa +p7913 +aVmckayla wants to send her ass to the grinder. #olympics +p7914 +aVmikayla with the silver(: #ilobeyou #olympics2012 +p7915 +aVi had to mute those fools. #olympics +p7916 +aV@nbcolympics @mckaylamaroney what an upset?! but mckayla is still the best in the world! #teamusa +p7917 +aVwhat horrible sportsmanship from mckayla maroney. seriously. terrible. #olympics +p7918 +aVrt @truelitist: mckayla gave ole girl that death stare! that hug was sooo pressed. #icequeen +p7919 +aV@misskaygreen she was such a horrible sport to that romanian girl. romania deserved 2 win vault tbh. #poorsportsmanship #teamusa +p7920 +aVmaroney needs #sportsmanship lessons. i'm embarrassed for how she acted. #olympics #london2012 +p7921 +aVit's only accepted to yell #stickit during +p7922 +aVi hate how calm and reserved the asians are. jump up and down scream do something dammit! #olympics +p7923 +aV"this is possible but he has to be better than he ever has in his entire life" bahaha #soundsimpossible #olympics #nbc +p7924 +aVi much preferred the pre-glitter at the #olympics +p7925 +aVwomen's individual event finals. #beauty. #power. #flexibility. #control. amazing. <3 #olympics +p7926 +aVi like #vault & #balancebeam because of the drama. i literally hold my breath. #olympics +p7927 +aVthe russians look so russian! #olympic2012 +p7928 +aVyibing scores a 15.800 on rings. #toughtobeat #olympics #london2012 +p7929 +aVhehe the russian dude is tiny! #mensrings #london2012 +p7930 +aVbrazil's national anthem's upbeat! #olympics2012 +p7931 +aVwomen's uneven bars final. you go gabby! =d xxx #olympics +p7932 +aVnow liverpool's beth tweddle is up soon on bars. hopefully she can smash it and bring home a medal. #olympics +p7933 +aVi used to hate the state my hands would be in after being on bars :(:( #blisters #ripped #sore +p7934 +aVtweddle's releases! wow! will that landing stumble knock her back? +p7935 +aVi'd take a bronze! #2012olympics +p7936 +aVbeth is gonna lose out - been cheated out of a medal!! #outrage +p7937 +aVgaby douglas doesn't look too thrilled after her routine - will she knock tweddle out of medals? #olympics +p7938 +aVi doubt douglas will not medal after that. quite a struggle. #olympics #london2012 #unevenbars +p7939 +aVa bronze medal for beth tweddle in the . takes #teamgb medal tally to 16 golds & 38 in total. #olympics http://ow.ly/cgqu2 +p7940 +aVwell done beth tweddle! +p7941 +aVtweth beddle wins a bronze medal! +p7942 +aVwell done @bethtweddlenews on getting bronze! very well deserved +p7943 +aVactually screamed, so emotional and ecstatic for beth to get a medal after years of competing #wonderfulmoment #olympics +p7944 +aV@bethtweddlenews deserves that medal! #teamgb +p7945 +aV#teamgb go tweddle! bronze medal in uneven bars final, so chuffed for her! #bethtweddle #goatface +p7946 +aVcongrats to beth well done hun x +p7947 +aVtonight i look into what happened everywhere else in ecac and eagl this weekend, tomorrow the rest of the country. +p7948 +aVso relieved that beth tweddle got the bronze! watching those final 2 gymnasts was tense! #olympics +p7949 +aVchristian thomas and louis smith #swoon #london2012 +p7950 +aVthomas falls to third overall. sense he might not make medals #olympics +p7951 +aVoh dear @teamgb kristian thomas he is blow out!! still give him a respect and big applause #proudofbritish +p7952 +aVvault is such an unnatural apparatus i think it's becoming too difficult to look elegant & tidy anymore. +p7953 +aVflip flap flip flop boom +p7954 +aV - enough said!! woiii!! #london2012 +p7955 +aV@teamgb great jumps from kristian, but what a fantastic competition. best vaulting i've ever watched. +p7956 +aVbut a stuck landing on a 7.0 vault is going to knock him out. great vault by chilean gymnast! #london2012 +p7957 +aVmy #taxi driver is watching some #olympic while he drives. super safe. at least he has good tast http://instagr.am/p/n_eldbmtxq/ +p7958 +aVwhy did team usa choose non-patriotic uniforms for the #olympics this year? #tracksuits where's the pride? +p7959 +aVi just like doing standing back pikes on the beach #backflip #cheer #beach #waves #ocean http://instagr.am/p/n_-ipbkd5q/ +p7960 +aVgreat early kidney anniversary & #olympic day out my hero/my mum hope she liked the et al xpic.twitter.com/xzehdvnn +p7961 +aV@nolegsmike @onedirection stfu you moron lol i caught myself thank you very much! i must have mad skills! +p7962 +aVi'm pretty sure it was just her roommates cheering for her, but it sounded kind of menacing. #london2012 +p7963 +aVisn't having the guy there to catch you so you won't die kinda cheating? #needsasharktank #olympics +p7964 +aVstaying up late for the olympics but also have to get up early to go to work! ugh but its totally worth it!! #gogabby! +p7965 +aVgabby douglas may have lost tonight, but she still has that contagious smile. : ) #usa #london2012 +p7966 +aVgabby is just class class class!! love this girl!! "just happy to make it to bar finals." #perfection #teamusa #gabby +p7967 +aVthese people are crazy strong #rings #superhumans +p7968 +aVeverybody is in disbelief, but when so many do so, so well...the judges can only choose one & that can be difficult. +p7969 +aVlol this guy. between the mustache and his weird run i don't know what to laugh at more. +p7970 +aV#gabbydouglas always has a pageant response, but it's adorable #olympics +p7971 +aVfloor event finals tonight.... #golauren #olympics #londonolympics australia #visa http://instagr.am/p/obdcifq1tj/ +p7972 +aVjordan jovchev is. the. man. #theend #olympics +p7973 +aVtomas gonzalez... his mustache. his secret is his mustache. #vault #london2012 #olympics +p7974 +aVi love @samuelmikulak not only because of his but also his sportsmanship and humor. good stuff on vt! #london2012 +p7975 +aVlast day of . it's been a fun ride :') +p7976 +aVmen's bars finals is a pure delight. #london2012 #olympics +p7977 +aVi don't care that marcel nguyen is german. he's so fine #olympics +p7978 +aVbig, warm cheerful handshakes and hugs and smiles #goodsportsmanship :') #toocute #london2012 +p7979 +aVwohoooo & da wird die deutsche flagge hochgezogen #proud #olympia +p7980 +aVeeeek raisman, komova, douglas, ponor, the battle commences!!! #olympic2012 #olympics +p7981 +aVoh, comm just pointed out that the 8 finalists for the beam are all from china, romania, usa and russia. 2 per country. huh. +p7982 +aVi used to struggle walking across the beam, never mind doing all these jumps and flips. amazing. #beamfinal +p7983 +aVi would be so embarrassed if i fell off the beam thing #olympics +p7984 +aVno one will remember this routine for gabby. she nailed it in prime time at the big events! she is all good! love you gabs! +p7985 +aVaww poor gabby. don't worry you got that all-around gold! #olympics +p7986 +aVquote of the day "god, when everyone fucks up, we ain't in it!" #teamgb @amazingmrrogers +p7987 +aVsurprised romania sub'd in larisa iordache if still injured? wonderful #beam skills, pity re form #london2012 #olympics #bbc2012 +p7988 +aVeven the leads deng and ponor look so depressed..very strange #olympics +p7989 +aVdear komova there are these things called humility, positivity and good team spirit. you may want to look into them love, me +p7990 +aVlove seeing how gutted they are after falling off the beam, is komova going to cry or whaatt? +p7991 +aVmatt baker just keeps on inventing new ways of saying nguyen hahaa bless him.. +p7992 +aV#london2012olympics #bbc2012 i've had to turn the lady commentator down as she is so irritating - hard voice & 2 much talk! +p7993 +aVdodgy scoring if i ever seen it #olympics +p7994 +aVawww i really wanted aly raisman to get this +p7995 +aVso unfair. that medal belongs to catalina ponor +p7996 +aVi missed the score adjustment!! yess!!!!!!!!! #olympics +p7997 +aVlooking forward to some dazzling hb routines ..... & then it is aussie lauren on floor! #olympics +p7998 +aVleyva and horton, let's do this! #highbar #olympics +p7999 +aVthe 2 chinese girls 1st and 2nd on beam in the event final! alexandra reisman ties, wins bronze! #olympics #london2012 +p8000 +aVzou kai has such ugly feet on high bar- strange to see a chinese gymnast with such bad form. #olympics +p8001 +aVif you want someone to perform under pressure, pick a german. #london2012 +p8002 +aVdon't know how they don't get dizzy swinging around the bars #olympics +p8003 +aVthese male gymnasts are unreal!!!! amazed every time i watch them! #olympics2012 +p8004 +aVcan we not call the gymnastic stadium "a cauldron of emotion"? #olympics +p8005 +aVmust admit im getting into the olympics +p8006 +aVthe only thing more interesting than watching a high bar final is being a part of it. +p8007 +aVthe men's horizontal bar final is probably one of the best things i've watched in the olympics +p8008 +aV\u201c@bladeofglory: alright people. it's lauren time! i hope you're all watching the ! #aussiealert #london2012\u201d ugh should be asleep +p8009 +aVi don't care what sport it is as long as #teamusa gets the gold. #waterpolo #synchronizedswimming #volleyball #swimming #ect. +p8010 +aVwomen's floor final!! jordyn and aly! babies! #olympics +p8011 +aVi'm majorly excited to see jordyn wieber's floor routine again in a few minutes. love it you go girl! #london2012 +p8012 +aVlove that enthusiasm and excitrment from fabian, truly a remarkable performance. all that air time. #soproud #london2012 +p8013 +aValy just nailed that routine! there's absolutely no way she won't medal. and right now, it's gold by a mile. #floor #olympics +p8014 +aVgold for aly in floor! good job girl. =d xxx #olympics #teamusa +p8015 +aVi enjoy the betchiness though. it creates more tension. +p8016 +aVand the last podium of the olympic games is one where everyone looks content: aliya mustafina pleased... http://fb.me/1xg7gsoy1 +p8017 +aVwhat i love most about the is how much work #mustafina has clearly put in working out her best angles for the photos #floor +p8018 +aV@shutupbuck i was really worried! i missed your fabulous commentary! +p8019 +aVfloor final! yay! my fave event to watch!!! +p8020 +aVwow, this guy truly needs to be commended #olympics >> : grimacing jovtchev relieved it's over http://www.chicagotribune.com/sports/olympics/sns-rt-us-oly-gymn-gamrin-jovtchevbre875100-20120806,0,4208827.story\u2026 +p8021 +aV#way2go #alyraisman a bronze then turn back around and got a gold!!! #olympics #london2012 +p8022 +aVthis young lady is beyond belief talented!! #teamgabby #us #olympic2012 #london #straight #beast http://instagr.am/p/ocpfz3opoh/ +p8023 +aVanyone else really tired of the #nbcolympics theme song for the women's coverage? so boring and lame. #youcandobetter +p8024 +aVnbcolympics: on now: @aly_raisman & @gabrielledoug in the women\u2019s beam final! #olympics http://on.wkyc.com/qe1trj +p8025 +aVthose chinese gymnasts really just set the bar! they were soooo graceful, clean, and executed beautifully! #olympics +p8026 +aV@kelleylcarter they're so *short*, though! that helps! #london2012 #olympics +p8027 +aVgabby douglas is up!! #olympics +p8028 +aVi hate to blame leotards - but that usa white leotard was bad luck for anyone who wore it! #olympics #hotpink +p8029 +aVthe balance beam is not even as wide as this tweet. unreal. #olympics +p8030 +aV@aly_raisman stepped up @ the london olympics. pride, grace & humility.. a truly admirable athlete. congratulations! #london2012 +p8031 +aVyou're still the best & don't forget it!!!! #gabby757 @gabrielledoug you've rocked the world @nbcolympics +p8032 +aV@daniddiva they're all so young, and they're just getting started. i cannot be prouder of these girls! #olympics #teamusa +p8033 +aVi love @aly_raisman beam final leotard! #olympics #teamusa +p8034 +aV@beautyeditornyc i honestly can not believe is *still* going on. it's lasting like the whole #olympics. +p8035 +aVuh oh. anger by the coach. this isn't good. aly should've scored far higher than she did. expected silver. #london2012 +p8036 +aVdang. bela caroli aint no joke! (sp) #olympics #teamusa +p8037 +aVinquiry filed! what is going on? #olympics #beam +p8038 +aV#supportive @celia_trippiedi: during aly's beam routine you can hear @jordyn_weiber in the background cheering her on +p8039 +aVyes baby! #olympics gurl u betta snatch the shit outta that metal! +p8040 +aVolympics! stop making me so emotional!! #gousa #goaly +p8041 +aValy raisman gets another tie? this girl needs to stop doing gymnastics. #olympics +p8042 +aVglad bela was in the crowd because the new coach was just gonna accept the defeat. #usa +p8043 +aVyay aly raisman! sad gabby didn't win but i'm still proud of her! #olympics +p8044 +aV@harrykay4 we know from the past that the longer it takes for the score the bigger the deduction #overusedcommentator +p8045 +aV'real coach?' @jillfay bela karolyi is going nuts in the stands right now over the injustice of raisman's beam score! #olympics +p8046 +aVseriously...even knowing the results i am still anxious and tearing up? i am such an #emotionalbasketcase #pathetic +p8047 +aVmb just said 'i don't care if the romanian gets the bronze b/c she's almost dead.' (she's 24 yrs old) #usa #olympic +p8048 +aVthere is a loser in a green shirt waving to the camera +p8049 +aVwow. i totally missed the @jordyn_wieber floor routine. bummer. glad to see her on the sidelines cheering though! #teamusa +p8050 +aVour girls are so bad ass! #olympics +p8051 +aVpopping bottles in #london2012 with aly's parents!!!! 4 1 3 +p8052 +aVgood job! she killed it! #teamusa +p8053 +aValy just owned that floor routine!! give her the gold!! #teamusa #olympics +p8054 +aV@aly_raisman floor routine was outstanding...you're amazing<3 #alyraisman #olympics +p8055 +aVdamn that was really good. #olympics +p8056 +aVdang its hard 2tell who gone get gold silver and bronze in these floor routines +p8057 +aVthis chick's one-armed leotard is ugly and distracting. #olympics +p8058 +aVonce again, it must be said, i love catalina ponor's style and grace, especially in defeat. #olympics +p8059 +aVthat russian better not take gold from ally raisman in #floor #eventfinal #teamusa #olympics +p8060 +aVfun fact through. catalina ponor is ten years older than aly raisman. impressive she's still competing at this level. +p8061 +aVholllly #olympics is stressful. that was nuts. #usa prevailssss +p8062 +aVi want to slap mustafina just cause she looks like shes always about to cry +p8063 +aVahahahhaah that bihh took it down !!! lmfao +p8064 +aValy wins the gold!!!!!! #olympics +p8065 +aVaw, damn. i wanted @aly_raisman to win, but that fall for isbaza was unfortunate. #olympics +p8066 +aVyay #alyraisman she is ever so deserving of the olympic gold! #graciousgirl #olympics2012 +p8067 +aVthese niggas freaking shit #olympics #highbar +p8068 +aVjust witnessed the most incredible high bar routine ever... sick from start to finish. #olympics +p8069 +aVthe netherlands is out here. living. #olympics #highbar #wow +p8070 +aVi still gasp everytime they release off the high bar or uneven bars. +p8071 +aVomg rings!! staying in iron cross for those excruciating seconds while world holds breath #teambrazil #olympics +p8072 +aVhere comes the gold.. kayla ,, that kid nailed it!!! #olympics +p8073 +aVwow! i didn't know judges docked points for sultriness. poor catalina ponor! #olympics2012 +p8074 +aVwoo hoo @aly_raisman gets the gold #teamusa +p8075 +aVcan we get another fuckin medal men!!! please !!!!! +p8076 +aVso proud of @aly_raisman! way to finish strong! great inspiration to all my young athletes! #olympics #merica +p8077 +aVdo i have what it takes to make elite? http://tinyurl.com/6nytjrn +p8078 +aVdutch gymnast wows with dazzling horizontal bar routine http://dlvr.it/1z3c9d #uncategorized #gif #sports +p8079 +aVeagle grip skin the cat is back!!! @agatsukbs #mobility #flexibilitypic.twitter.com/7fq3sefd +p8080 +aValy raisman's floor routine was insanity. #usa #olympics +p8081 +aVgoing to a different gym for since the 1 near me is nasty! cant wait for the tour of the new gym tomorrow:) +p8082 +aVso sad is over! what to watch now? #maroneysupervault http://ow.ly/coocm and #epkezonderland http://ow.ly/cqfka #london2012 +p8083 +aV@tigersonic that's a shout-out to francesa jones, seems to be a secret weapon in @teamgb. she is some kind of supple! #olympics +p8084 +aVmy favorite olympic moment: a hairy guy in pink spandex. new blog post: http://colinfalconer.wordpress.com/ #humor +p8085 +aVi'm in love with this girl! #alyrsisman #olympics #heart #love #lol #followme #prettygirl #hater http://instagr.am/p/ohblshwurd/ +p8086 +aV#matteomorandi's shoulders, upper arms and back are out of control. incredible-hulk-level bulging. #olympics +p8087 +aVcried watching floor finals, i adore everything about @aly_raisman #london2012 #olympics #delayedreaction +p8088 +aVwhy do people have problems with how @gabrielledoug does her hair? she looks classy. and the olympics is about sport, not hair. +p8089 +aVmaksymenko "had a fumble with the ribbon beforehand" and heck that fly is going to regret annoying her #26.8 +p8090 +aVthe atmosphere when the #teamgb girls came out, was absolutely unbelievable!!!! well done girls :) standing ovation!! +p8091 +aVwatching the gymnastics coverage again (shocker) so many stuck landings in men's gymnastics, verrry impressive #london2012 +p8092 +aVremember when i was afraid to do a back on the beam ! #oldtime +p8093 +aV"she shows such extreme flexibility." uhm, they all do.... probs #london2012 +p8094 +aVmakayla is not impressed!!!! hahah #thg #thehungergames #hungergames #olympics #effie #awesome #funny...pic.twitter.com/wd3qeema +p8095 +aVstill wish there was more to watch. seriously, i could watch it everyday! #superexciting #powerhouseathletes #amazingmemories +p8096 +aVevery day i find a new way to be thankful for my background in . +p8097 +aVhow the heck can people bend like that?! its amazing - +p8098 +aVsad that maksymenk lost the ball, that was a great routine. #london2012 +p8099 +aV9.9 for artistry!!! blimey!! well done russia! #clubs #london2012 +p8100 +aVoh no, no bronze medal for alina. everyone loves the south korean gymnast who has a very pretty and angelic face #londonolympics +p8101 +aVsince when are they the #fierce5 instead of the #fabfive??!! #olympicstoday +p8102 +aVi want to do #dance and so bad laugh out loud #wish +p8103 +aVoh ffs rhythmic team finals meant to be on tv now - switched over & they're showing men's friggin wrestling. ffs #sexistbbc +p8104 +aV#final gold! russia's women take the last gymnastics gold in the rhythmic group all-around.. #london2012 +p8105 +aVwatching a replay of the women's group all-around rhythmic from today... wondering how ribbon dancing is still a thing... +p8106 +aVfinal gold! russia's women take the last gymnastics gold in the rhythmic group all-around http://l2012.cm/pcxgzd #london2012 +p8107 +aVthe #olympics might be over but you can still get your fix! the perfect score - all romance ebooks https://www.allromanceebooks.com/product-theperfectscore-750767-149.html#.uclbikwrova.twitter\u2026 +p8108 +aVlol my mom had to leave the room cause i'm yelling at the tv. #oops #notsorry +p8109 +aVmy picture of sarah dancing during her floor routine at the 2012 secret u.s. classic. #picoftheday pic.twitter.com/xo2csqks +p8110 +asS'val_ind' +p8111 +(lp8112 +I859 +aI161 +aI892 +aI94 +aI977 +aI31 +aI571 +aI455 +aI957 +aI443 +aI1007 +aI572 +aI456 +aI463 +aI790 +aI416 +aI469 +aI802 +aI933 +aI29 +aI735 +aI67 +aI795 +aI355 +aI159 +aI102 +aI764 +aI408 +aI262 +aI569 +aI182 +aI1006 +aI849 +aI542 +aI163 +aI323 +aI337 +aI97 +aI330 +aI617 +aI269 +aI861 +aI898 +aI600 +aI62 +aI66 +aI312 +aI78 +aI805 +aI555 +asS'test_ind' +p8113 +(lp8114 +I822 +aI272 +aI326 +aI632 +aI1002 +aI373 +aI606 +aI864 +aI988 +aI134 +aI675 +aI633 +aI70 +aI620 +aI437 +aI366 +aI831 +aI567 +aI857 +aI682 +aI715 +aI470 +aI306 +aI983 +aI201 +aI60 +aI893 +aI624 +aI553 +aI447 +aI404 +aI834 +aI20 +aI293 +aI125 +aI93 +aI82 +aI492 +aI771 +aI760 +aI428 +aI369 +aI129 +aI148 +aI14 +aI304 +aI368 +aI328 +aI352 +aI987 +aI95 +aI925 +aI724 +aI994 +aI660 +aI28 +aI504 +aI244 +aI528 +aI345 +aI65 +aI711 +aI361 +aI570 +aI841 +aI38 +aI228 +aI663 +aI718 +aI723 +aI209 +aI580 +aI635 +aI374 +aI783 +aI967 +aI181 +aI934 +aI169 +aI503 +aI259 +aI517 +aI888 +aI254 +aI267 +aI747 +aI296 +aI641 +aI808 +aI186 +aI162 +aI551 +aI554 +aI886 +aI238 +aI388 +aI739 +aI883 +aI457 +aI880 +aI971 +aI573 +aI46 +aI690 +aI611 +aI291 +aI168 +aI219 +aI636 +aI788 +aI439 +aI685 +aI135 +aI948 +aI895 +aI471 +aI843 +aI484 +aI645 +aI658 +aI576 +aI329 +aI353 +aI939 +aI362 +aI906 +aI759 +aI959 +aI19 +aI596 +aI904 +aI84 +aI327 +aI257 +aI695 +aI990 +aI701 +aI697 +aI630 +aI92 +aI902 +aI936 +aI995 +aI377 +aI372 +aI308 +aI827 +aI384 +aI489 +aI639 +aI273 +aI826 +aI196 +aI924 +aI418 +aI206 +aI674 +aI235 +aI414 +aI243 +aI56 +aI175 +aI61 +aI258 +aI303 +aI529 +aI976 +aI477 +aI53 +aI905 +aI98 +aI1000 +aI669 +aI835 +aI501 +aI274 +aI411 +aI1008 +aI938 +aI474 +aI475 +aI481 +aI928 +aI980 +aI34 +aI951 +aI232 +aI982 +aI1005 +aI793 +aI512 +aI77 +aI480 +aI256 +aI873 +aI357 +aI935 +aI676 +aI583 +aI156 +aI846 +aI652 +aI233 +aI128 +aI88 +aI920 +aI154 +aI180 +aI255 +aI379 +aI689 +aI756 +aI595 +aI763 +aI490 +aI824 +aI541 +aI621 +aI43 +aI40 +aI248 +aI594 +aI717 +aI774 +aI441 +aI21 +aI590 +aI746 +aI37 +aI394 +aI733 +aI664 +aI767 +aI270 +aI485 +aI285 +aI109 +aI545 +aI894 +aI417 +aI979 +aI346 +aI597 +aI142 +aI236 +aI535 +aI696 +aI13 +aI651 +aI120 +aI419 +aI538 +aI719 +aI537 +aI12 +aI139 +aI111 +aI281 +aI123 +aI341 +aI999 +aI836 +aI638 +aI460 +aI578 +aI856 +aI998 +aI882 +aI184 +aI86 +aI853 +aI531 +aI566 +aI183 +aI885 +aI39 +aI693 +aI431 +aI277 +aI405 +aI860 +aI153 +aI991 +aI22 +aI637 +aI593 +aI602 +aI370 +aI709 +aI147 +aI844 +aI453 +aI174 +aI754 +aI131 +aI468 +aI725 +aI744 +aI761 +aI577 +aI399 +aI687 +aI757 +aI781 +aI242 +aI858 +aI874 +aI319 +aI782 +aI54 +aI340 +aI1010 +aI252 +aI207 +aI776 +aI954 +aI966 +aI558 +aI422 +aI266 +aI336 +aI798 +aI48 +aI918 +aI557 +aI815 +aI816 +aI647 +aI237 +aI910 +aI931 +aI0 +aI424 +aI403 +aI726 +aI750 +aI549 +aI974 +aI629 +aI758 +aI193 +aI840 +aI801 +aI784 +aI365 +aI371 +aI562 +aI164 +aI211 +aI187 +aI426 +aI402 +aI35 +aI520 +aI127 +aI584 +aI482 +aI5 +aI601 +aI380 +aI294 +aI151 +aI59 +aI251 +aI495 +aI628 +aI604 +aI691 +aI321 +aI511 +aI143 +aI318 +aI1011 +aI445 +aI716 +aI158 +aI461 +aI286 +aI234 +aI106 +aI51 +aI32 +aI901 +aI343 +aI547 +aI263 +aI829 +aI3 +aI240 +aI459 +aI514 +aI975 +aI483 +aI141 +aI863 +aI615 +aI363 +aI435 +aI301 +aI683 +aI276 +aI823 +aI627 +aI381 +aI42 +aI214 +aI218 +aI825 +aI324 +aI198 +aI438 +aI598 +aI973 +aI354 +aI736 +aI533 +aI721 +aI194 +aI45 +aI810 +aI52 +aI530 +aI720 +aI33 +aI212 +aI650 +aI385 +aI140 +aI698 +aI50 +aI989 +aI655 +aI409 +aI322 +aI332 +aI223 +aI6 +aI292 +aI791 +aI315 +aI930 +aI74 +aI556 +aI625 +aI271 +aI124 +aI622 +aI548 +aI279 +aI261 +aI116 +aI506 +aI559 +aI731 +aI659 +aI309 +aI68 +aI427 +aI350 +aI63 +aI943 +aI947 +aI398 +aI550 +aI57 +aI813 +aI780 +aI519 +aI546 +aI526 +aI710 +aI755 +aI649 +aI845 +aI344 +aI10 +aI213 +aI496 +aI619 +aI749 +aI137 +aI509 +aI672 +aI284 +aI105 +aI73 +aI351 +aI295 +aI241 +aI666 +aI307 +aI960 +aI221 +aI681 +aI155 +aI728 +aI942 +aI670 +aI390 +aI616 +aI981 +aI430 +aI360 +aI872 +aI115 +aI202 +aI644 +aI1 +aI818 +aI915 +aI524 +aI765 +aI216 +aI231 +aI467 +aI866 +aI75 +aI626 +aI609 +aI80 +aI968 +aI561 +aI585 +aI287 +aI599 +aI941 +aI532 +aI386 +aI923 +aI603 +aI420 +aI83 +aI138 +aI680 +aI762 +aI518 +aI434 +aI657 +aI297 +aI833 +aI217 +aI101 +aI505 +aI246 +aI614 +aI890 +aI316 +aI684 +aI792 +aI912 +aI500 +aI253 +aI300 +aI382 +aI820 +aI516 +aI173 +aI945 +aI949 +aI476 +aI145 +aI149 +aI889 +aI952 +aI203 +aI146 +aI375 +aI799 +aI932 +aI575 +aI855 +aI30 +aI11 +aI814 +aI713 +aI589 +aI152 +aI623 +aI563 +aI85 +aI993 +aI646 +aI410 +aI290 +aI220 +aI265 +aI2 +aI722 +aI865 +aI222 +aI79 +aI631 +aI436 +aI552 +aI107 +aI58 +aI812 +aI618 +aI770 +aI772 +aI172 +aI640 +aI81 +aI423 +aI393 +aI868 +aI313 +aI748 +aI821 +aI543 +aI185 +aI494 +aI4 +aI565 +aI940 +aI963 +aI786 +aI190 +aI688 +aI642 +aI591 +aI392 +aI900 +aI539 +aI7 +aI899 +aI23 +aI926 +aI678 +aI64 +aI188 +aI742 +aI970 +aI662 +aI919 +aI299 +aI497 +aI907 +aI170 +aI679 +aI536 +aI908 +aI311 +aI197 +aI510 +aI465 +aI376 +aI909 +aI961 +aI367 +aI740 +aI962 +aI99 +aI875 +aI41 +aI769 +aI1009 +aI335 +aI838 +aI564 +aI225 +aI502 +aI800 +aI913 +aI515 +aI929 +aI807 +aI969 +aI540 +aI877 +aI264 +aI937 +aI972 +aI464 +aI36 +aI407 +aI694 +aI498 +aI706 +aI521 +aI229 +aI466 +aI15 +aI179 +aI997 +aI854 +aI9 +aI47 +aI809 +aI278 +aI705 +aI245 +aI314 +aI978 +aI527 +aI656 +aI946 +aI984 +aI260 +aI413 +aI132 +aI280 +aI773 +aI648 +aI903 +aI334 +aI249 +aI851 +aI100 +aI333 +aI230 +aI507 +aI803 +aI27 +aI513 +aI741 +aI283 +aI171 +aI828 +aI574 +aI985 +aI348 +aI703 +aI751 +aI204 +aI958 +aI446 +aI356 +aI794 +aI458 +aI310 +aI112 +aI778 +aI1004 +aI612 +aI881 +aI797 +aI806 +aI862 +aI817 +aI643 +aI488 +aI534 +aI479 +aI122 +aI108 +aI579 +aI607 +aI473 +aI992 +aI743 +aI305 +aI331 +aI847 +aI91 +aI450 +aI444 +aI487 +aI613 +aI189 +aI608 +aI167 +asS'train_ind' +p8115 +(lp8116 +I347 +aI289 +aI775 +aI144 +aI727 +aI668 +aI768 +aI499 +aI789 +aI842 +aI224 +aI870 +aI955 +aI522 +aI712 +aI878 +aI208 +aI96 +aI239 +aI250 +aI302 +aI896 +aI665 +aI415 +aI49 +aI342 +aI133 +aI560 +aI395 +aI150 +aI699 +aI737 +aI911 +aI568 +aI832 +aI700 +aI917 +aI226 +aI686 +aI478 +aI964 +aI927 +aI796 +aI714 +aI523 +aI200 +aI752 +aI440 +aI811 +aI587 +aI165 +aI702 +aI90 +aI745 +aI397 +aI391 +aI850 +aI671 +aI383 +aI884 +aI869 +aI956 +aI421 +aI113 +aI89 +aI401 +aI525 +aI358 +aI996 +aI544 +aI69 +aI787 +aI732 +aI610 +aI667 +aI282 +aI852 +aI582 +aI785 +aI605 +aI387 +aI448 +aI121 +aI588 +aI661 +aI288 +aI839 +aI581 +aI891 +aI157 +aI921 +aI965 +aI876 +aI491 +aI119 +aI192 +aI452 +aI110 +aI176 +aI677 +aI729 +aI320 +aI317 +aI349 +aI734 +aI103 +aI433 +aI454 +aI227 +aI442 +aI24 +aI195 +aI472 +aI191 +aI359 +aI16 +aI708 +aI451 +aI1001 +aI25 +aI26 +aI879 +aI72 +aI950 +aI707 +aI205 +aI166 +aI837 +aI71 +aI136 +aI867 +aI117 +aI887 +aI830 +aI953 +aI944 +aI17 +aI339 +aI819 +aI634 +aI247 +aI160 +aI804 +aI130 +aI493 +aI1003 +aI126 +aI653 +aI777 +aI412 +aI210 +aI364 +aI730 +aI449 +aI753 +aI586 +aI177 +aI118 +aI871 +aI654 +aI704 +aI87 +aI897 +aI44 +aI692 +aI592 +aI8 +aI508 +aI178 +aI432 +aI779 +aI462 +aI199 +aI18 +aI114 +aI378 +aI400 +aI848 +aI104 +aI986 +aI275 +aI916 +aI922 +aI486 +aI425 +aI298 +aI215 +aI338 +aI325 +aI914 +aI76 +aI396 +aI766 +aI406 +aI738 +aI673 +aI389 +aI429 +aI268 +aI55 +as. \ No newline at end of file diff --git a/data/PsychExp/raw.pickle b/data/PsychExp/raw.pickle new file mode 100644 index 0000000..a6c7391 --- /dev/null +++ b/data/PsychExp/raw.pickle @@ -0,0 +1,149638 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +cnumpy.core.multiarray +_reconstruct +p5 +(cnumpy +ndarray +p6 +(I0 +tp7 +S'b' +p8 +tp9 +Rp10 +(I1 +(I7 +tp11 +cnumpy +dtype +p12 +(S'f8' +p13 +I0 +I1 +tp14 +Rp15 +(I3 +S'<' +p16 +NNNI-1 +I-1 +I0 +tp17 +bI00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18 +tp19 +bsa(dp20 +g4 +g5 +(g6 +(I0 +tp21 +g8 +tp22 +Rp23 +(I1 +(I7 +tp24 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25 +tp26 +bsa(dp27 +g4 +g5 +(g6 +(I0 +tp28 +g8 +tp29 +Rp30 +(I1 +(I7 +tp31 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32 +tp33 +bsa(dp34 +g4 +g5 +(g6 +(I0 +tp35 +g8 +tp36 +Rp37 +(I1 +(I7 +tp38 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39 +tp40 +bsa(dp41 +g4 +g5 +(g6 +(I0 +tp42 +g8 +tp43 +Rp44 +(I1 +(I7 +tp45 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46 +tp47 +bsa(dp48 +g4 +g5 +(g6 +(I0 +tp49 +g8 +tp50 +Rp51 +(I1 +(I7 +tp52 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p53 +tp54 +bsa(dp55 +g4 +g5 +(g6 +(I0 +tp56 +g8 +tp57 +Rp58 +(I1 +(I7 +tp59 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p60 +tp61 +bsa(dp62 +g4 +g5 +(g6 +(I0 +tp63 +g8 +tp64 +Rp65 +(I1 +(I7 +tp66 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p67 +tp68 +bsa(dp69 +g4 +g5 +(g6 +(I0 +tp70 +g8 +tp71 +Rp72 +(I1 +(I7 +tp73 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p74 +tp75 +bsa(dp76 +g4 +g5 +(g6 +(I0 +tp77 +g8 +tp78 +Rp79 +(I1 +(I7 +tp80 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p81 +tp82 +bsa(dp83 +g4 +g5 +(g6 +(I0 +tp84 +g8 +tp85 +Rp86 +(I1 +(I7 +tp87 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p88 +tp89 +bsa(dp90 +g4 +g5 +(g6 +(I0 +tp91 +g8 +tp92 +Rp93 +(I1 +(I7 +tp94 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p95 +tp96 +bsa(dp97 +g4 +g5 +(g6 +(I0 +tp98 +g8 +tp99 +Rp100 +(I1 +(I7 +tp101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p102 +tp103 +bsa(dp104 +g4 +g5 +(g6 +(I0 +tp105 +g8 +tp106 +Rp107 +(I1 +(I7 +tp108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p109 +tp110 +bsa(dp111 +g4 +g5 +(g6 +(I0 +tp112 +g8 +tp113 +Rp114 +(I1 +(I7 +tp115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p116 +tp117 +bsa(dp118 +g4 +g5 +(g6 +(I0 +tp119 +g8 +tp120 +Rp121 +(I1 +(I7 +tp122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p123 +tp124 +bsa(dp125 +g4 +g5 +(g6 +(I0 +tp126 +g8 +tp127 +Rp128 +(I1 +(I7 +tp129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p130 +tp131 +bsa(dp132 +g4 +g5 +(g6 +(I0 +tp133 +g8 +tp134 +Rp135 +(I1 +(I7 +tp136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p137 +tp138 +bsa(dp139 +g4 +g5 +(g6 +(I0 +tp140 +g8 +tp141 +Rp142 +(I1 +(I7 +tp143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p144 +tp145 +bsa(dp146 +g4 +g5 +(g6 +(I0 +tp147 +g8 +tp148 +Rp149 +(I1 +(I7 +tp150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p151 +tp152 +bsa(dp153 +g4 +g5 +(g6 +(I0 +tp154 +g8 +tp155 +Rp156 +(I1 +(I7 +tp157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p158 +tp159 +bsa(dp160 +g4 +g5 +(g6 +(I0 +tp161 +g8 +tp162 +Rp163 +(I1 +(I7 +tp164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p165 +tp166 +bsa(dp167 +g4 +g5 +(g6 +(I0 +tp168 +g8 +tp169 +Rp170 +(I1 +(I7 +tp171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p172 +tp173 +bsa(dp174 +g4 +g5 +(g6 +(I0 +tp175 +g8 +tp176 +Rp177 +(I1 +(I7 +tp178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p179 +tp180 +bsa(dp181 +g4 +g5 +(g6 +(I0 +tp182 +g8 +tp183 +Rp184 +(I1 +(I7 +tp185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p186 +tp187 +bsa(dp188 +g4 +g5 +(g6 +(I0 +tp189 +g8 +tp190 +Rp191 +(I1 +(I7 +tp192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p193 +tp194 +bsa(dp195 +g4 +g5 +(g6 +(I0 +tp196 +g8 +tp197 +Rp198 +(I1 +(I7 +tp199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p200 +tp201 +bsa(dp202 +g4 +g5 +(g6 +(I0 +tp203 +g8 +tp204 +Rp205 +(I1 +(I7 +tp206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p207 +tp208 +bsa(dp209 +g4 +g5 +(g6 +(I0 +tp210 +g8 +tp211 +Rp212 +(I1 +(I7 +tp213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p214 +tp215 +bsa(dp216 +g4 +g5 +(g6 +(I0 +tp217 +g8 +tp218 +Rp219 +(I1 +(I7 +tp220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p221 +tp222 +bsa(dp223 +g4 +g5 +(g6 +(I0 +tp224 +g8 +tp225 +Rp226 +(I1 +(I7 +tp227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p228 +tp229 +bsa(dp230 +g4 +g5 +(g6 +(I0 +tp231 +g8 +tp232 +Rp233 +(I1 +(I7 +tp234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p235 +tp236 +bsa(dp237 +g4 +g5 +(g6 +(I0 +tp238 +g8 +tp239 +Rp240 +(I1 +(I7 +tp241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p242 +tp243 +bsa(dp244 +g4 +g5 +(g6 +(I0 +tp245 +g8 +tp246 +Rp247 +(I1 +(I7 +tp248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p249 +tp250 +bsa(dp251 +g4 +g5 +(g6 +(I0 +tp252 +g8 +tp253 +Rp254 +(I1 +(I7 +tp255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p256 +tp257 +bsa(dp258 +g4 +g5 +(g6 +(I0 +tp259 +g8 +tp260 +Rp261 +(I1 +(I7 +tp262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p263 +tp264 +bsa(dp265 +g4 +g5 +(g6 +(I0 +tp266 +g8 +tp267 +Rp268 +(I1 +(I7 +tp269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p270 +tp271 +bsa(dp272 +g4 +g5 +(g6 +(I0 +tp273 +g8 +tp274 +Rp275 +(I1 +(I7 +tp276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p277 +tp278 +bsa(dp279 +g4 +g5 +(g6 +(I0 +tp280 +g8 +tp281 +Rp282 +(I1 +(I7 +tp283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p284 +tp285 +bsa(dp286 +g4 +g5 +(g6 +(I0 +tp287 +g8 +tp288 +Rp289 +(I1 +(I7 +tp290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p291 +tp292 +bsa(dp293 +g4 +g5 +(g6 +(I0 +tp294 +g8 +tp295 +Rp296 +(I1 +(I7 +tp297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p298 +tp299 +bsa(dp300 +g4 +g5 +(g6 +(I0 +tp301 +g8 +tp302 +Rp303 +(I1 +(I7 +tp304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p305 +tp306 +bsa(dp307 +g4 +g5 +(g6 +(I0 +tp308 +g8 +tp309 +Rp310 +(I1 +(I7 +tp311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p312 +tp313 +bsa(dp314 +g4 +g5 +(g6 +(I0 +tp315 +g8 +tp316 +Rp317 +(I1 +(I7 +tp318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p319 +tp320 +bsa(dp321 +g4 +g5 +(g6 +(I0 +tp322 +g8 +tp323 +Rp324 +(I1 +(I7 +tp325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p326 +tp327 +bsa(dp328 +g4 +g5 +(g6 +(I0 +tp329 +g8 +tp330 +Rp331 +(I1 +(I7 +tp332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p333 +tp334 +bsa(dp335 +g4 +g5 +(g6 +(I0 +tp336 +g8 +tp337 +Rp338 +(I1 +(I7 +tp339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p340 +tp341 +bsa(dp342 +g4 +g5 +(g6 +(I0 +tp343 +g8 +tp344 +Rp345 +(I1 +(I7 +tp346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p347 +tp348 +bsa(dp349 +g4 +g5 +(g6 +(I0 +tp350 +g8 +tp351 +Rp352 +(I1 +(I7 +tp353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p354 +tp355 +bsa(dp356 +g4 +g5 +(g6 +(I0 +tp357 +g8 +tp358 +Rp359 +(I1 +(I7 +tp360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p361 +tp362 +bsa(dp363 +g4 +g5 +(g6 +(I0 +tp364 +g8 +tp365 +Rp366 +(I1 +(I7 +tp367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p368 +tp369 +bsa(dp370 +g4 +g5 +(g6 +(I0 +tp371 +g8 +tp372 +Rp373 +(I1 +(I7 +tp374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p375 +tp376 +bsa(dp377 +g4 +g5 +(g6 +(I0 +tp378 +g8 +tp379 +Rp380 +(I1 +(I7 +tp381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p382 +tp383 +bsa(dp384 +g4 +g5 +(g6 +(I0 +tp385 +g8 +tp386 +Rp387 +(I1 +(I7 +tp388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p389 +tp390 +bsa(dp391 +g4 +g5 +(g6 +(I0 +tp392 +g8 +tp393 +Rp394 +(I1 +(I7 +tp395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p396 +tp397 +bsa(dp398 +g4 +g5 +(g6 +(I0 +tp399 +g8 +tp400 +Rp401 +(I1 +(I7 +tp402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p403 +tp404 +bsa(dp405 +g4 +g5 +(g6 +(I0 +tp406 +g8 +tp407 +Rp408 +(I1 +(I7 +tp409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p410 +tp411 +bsa(dp412 +g4 +g5 +(g6 +(I0 +tp413 +g8 +tp414 +Rp415 +(I1 +(I7 +tp416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p417 +tp418 +bsa(dp419 +g4 +g5 +(g6 +(I0 +tp420 +g8 +tp421 +Rp422 +(I1 +(I7 +tp423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p424 +tp425 +bsa(dp426 +g4 +g5 +(g6 +(I0 +tp427 +g8 +tp428 +Rp429 +(I1 +(I7 +tp430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p431 +tp432 +bsa(dp433 +g4 +g5 +(g6 +(I0 +tp434 +g8 +tp435 +Rp436 +(I1 +(I7 +tp437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p438 +tp439 +bsa(dp440 +g4 +g5 +(g6 +(I0 +tp441 +g8 +tp442 +Rp443 +(I1 +(I7 +tp444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p445 +tp446 +bsa(dp447 +g4 +g5 +(g6 +(I0 +tp448 +g8 +tp449 +Rp450 +(I1 +(I7 +tp451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p452 +tp453 +bsa(dp454 +g4 +g5 +(g6 +(I0 +tp455 +g8 +tp456 +Rp457 +(I1 +(I7 +tp458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p459 +tp460 +bsa(dp461 +g4 +g5 +(g6 +(I0 +tp462 +g8 +tp463 +Rp464 +(I1 +(I7 +tp465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p466 +tp467 +bsa(dp468 +g4 +g5 +(g6 +(I0 +tp469 +g8 +tp470 +Rp471 +(I1 +(I7 +tp472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p473 +tp474 +bsa(dp475 +g4 +g5 +(g6 +(I0 +tp476 +g8 +tp477 +Rp478 +(I1 +(I7 +tp479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p480 +tp481 +bsa(dp482 +g4 +g5 +(g6 +(I0 +tp483 +g8 +tp484 +Rp485 +(I1 +(I7 +tp486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p487 +tp488 +bsa(dp489 +g4 +g5 +(g6 +(I0 +tp490 +g8 +tp491 +Rp492 +(I1 +(I7 +tp493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p494 +tp495 +bsa(dp496 +g4 +g5 +(g6 +(I0 +tp497 +g8 +tp498 +Rp499 +(I1 +(I7 +tp500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p501 +tp502 +bsa(dp503 +g4 +g5 +(g6 +(I0 +tp504 +g8 +tp505 +Rp506 +(I1 +(I7 +tp507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p508 +tp509 +bsa(dp510 +g4 +g5 +(g6 +(I0 +tp511 +g8 +tp512 +Rp513 +(I1 +(I7 +tp514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p515 +tp516 +bsa(dp517 +g4 +g5 +(g6 +(I0 +tp518 +g8 +tp519 +Rp520 +(I1 +(I7 +tp521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p522 +tp523 +bsa(dp524 +g4 +g5 +(g6 +(I0 +tp525 +g8 +tp526 +Rp527 +(I1 +(I7 +tp528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p529 +tp530 +bsa(dp531 +g4 +g5 +(g6 +(I0 +tp532 +g8 +tp533 +Rp534 +(I1 +(I7 +tp535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p536 +tp537 +bsa(dp538 +g4 +g5 +(g6 +(I0 +tp539 +g8 +tp540 +Rp541 +(I1 +(I7 +tp542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p543 +tp544 +bsa(dp545 +g4 +g5 +(g6 +(I0 +tp546 +g8 +tp547 +Rp548 +(I1 +(I7 +tp549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p550 +tp551 +bsa(dp552 +g4 +g5 +(g6 +(I0 +tp553 +g8 +tp554 +Rp555 +(I1 +(I7 +tp556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p557 +tp558 +bsa(dp559 +g4 +g5 +(g6 +(I0 +tp560 +g8 +tp561 +Rp562 +(I1 +(I7 +tp563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p564 +tp565 +bsa(dp566 +g4 +g5 +(g6 +(I0 +tp567 +g8 +tp568 +Rp569 +(I1 +(I7 +tp570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p571 +tp572 +bsa(dp573 +g4 +g5 +(g6 +(I0 +tp574 +g8 +tp575 +Rp576 +(I1 +(I7 +tp577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p578 +tp579 +bsa(dp580 +g4 +g5 +(g6 +(I0 +tp581 +g8 +tp582 +Rp583 +(I1 +(I7 +tp584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p585 +tp586 +bsa(dp587 +g4 +g5 +(g6 +(I0 +tp588 +g8 +tp589 +Rp590 +(I1 +(I7 +tp591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p592 +tp593 +bsa(dp594 +g4 +g5 +(g6 +(I0 +tp595 +g8 +tp596 +Rp597 +(I1 +(I7 +tp598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p599 +tp600 +bsa(dp601 +g4 +g5 +(g6 +(I0 +tp602 +g8 +tp603 +Rp604 +(I1 +(I7 +tp605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p606 +tp607 +bsa(dp608 +g4 +g5 +(g6 +(I0 +tp609 +g8 +tp610 +Rp611 +(I1 +(I7 +tp612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p613 +tp614 +bsa(dp615 +g4 +g5 +(g6 +(I0 +tp616 +g8 +tp617 +Rp618 +(I1 +(I7 +tp619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p620 +tp621 +bsa(dp622 +g4 +g5 +(g6 +(I0 +tp623 +g8 +tp624 +Rp625 +(I1 +(I7 +tp626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p627 +tp628 +bsa(dp629 +g4 +g5 +(g6 +(I0 +tp630 +g8 +tp631 +Rp632 +(I1 +(I7 +tp633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p634 +tp635 +bsa(dp636 +g4 +g5 +(g6 +(I0 +tp637 +g8 +tp638 +Rp639 +(I1 +(I7 +tp640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p641 +tp642 +bsa(dp643 +g4 +g5 +(g6 +(I0 +tp644 +g8 +tp645 +Rp646 +(I1 +(I7 +tp647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p648 +tp649 +bsa(dp650 +g4 +g5 +(g6 +(I0 +tp651 +g8 +tp652 +Rp653 +(I1 +(I7 +tp654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p655 +tp656 +bsa(dp657 +g4 +g5 +(g6 +(I0 +tp658 +g8 +tp659 +Rp660 +(I1 +(I7 +tp661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p662 +tp663 +bsa(dp664 +g4 +g5 +(g6 +(I0 +tp665 +g8 +tp666 +Rp667 +(I1 +(I7 +tp668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p669 +tp670 +bsa(dp671 +g4 +g5 +(g6 +(I0 +tp672 +g8 +tp673 +Rp674 +(I1 +(I7 +tp675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p676 +tp677 +bsa(dp678 +g4 +g5 +(g6 +(I0 +tp679 +g8 +tp680 +Rp681 +(I1 +(I7 +tp682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p683 +tp684 +bsa(dp685 +g4 +g5 +(g6 +(I0 +tp686 +g8 +tp687 +Rp688 +(I1 +(I7 +tp689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p690 +tp691 +bsa(dp692 +g4 +g5 +(g6 +(I0 +tp693 +g8 +tp694 +Rp695 +(I1 +(I7 +tp696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p697 +tp698 +bsa(dp699 +g4 +g5 +(g6 +(I0 +tp700 +g8 +tp701 +Rp702 +(I1 +(I7 +tp703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p704 +tp705 +bsa(dp706 +g4 +g5 +(g6 +(I0 +tp707 +g8 +tp708 +Rp709 +(I1 +(I7 +tp710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p711 +tp712 +bsa(dp713 +g4 +g5 +(g6 +(I0 +tp714 +g8 +tp715 +Rp716 +(I1 +(I7 +tp717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p718 +tp719 +bsa(dp720 +g4 +g5 +(g6 +(I0 +tp721 +g8 +tp722 +Rp723 +(I1 +(I7 +tp724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p725 +tp726 +bsa(dp727 +g4 +g5 +(g6 +(I0 +tp728 +g8 +tp729 +Rp730 +(I1 +(I7 +tp731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p732 +tp733 +bsa(dp734 +g4 +g5 +(g6 +(I0 +tp735 +g8 +tp736 +Rp737 +(I1 +(I7 +tp738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p739 +tp740 +bsa(dp741 +g4 +g5 +(g6 +(I0 +tp742 +g8 +tp743 +Rp744 +(I1 +(I7 +tp745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p746 +tp747 +bsa(dp748 +g4 +g5 +(g6 +(I0 +tp749 +g8 +tp750 +Rp751 +(I1 +(I7 +tp752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p753 +tp754 +bsa(dp755 +g4 +g5 +(g6 +(I0 +tp756 +g8 +tp757 +Rp758 +(I1 +(I7 +tp759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p760 +tp761 +bsa(dp762 +g4 +g5 +(g6 +(I0 +tp763 +g8 +tp764 +Rp765 +(I1 +(I7 +tp766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p767 +tp768 +bsa(dp769 +g4 +g5 +(g6 +(I0 +tp770 +g8 +tp771 +Rp772 +(I1 +(I7 +tp773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p774 +tp775 +bsa(dp776 +g4 +g5 +(g6 +(I0 +tp777 +g8 +tp778 +Rp779 +(I1 +(I7 +tp780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p781 +tp782 +bsa(dp783 +g4 +g5 +(g6 +(I0 +tp784 +g8 +tp785 +Rp786 +(I1 +(I7 +tp787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p788 +tp789 +bsa(dp790 +g4 +g5 +(g6 +(I0 +tp791 +g8 +tp792 +Rp793 +(I1 +(I7 +tp794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p795 +tp796 +bsa(dp797 +g4 +g5 +(g6 +(I0 +tp798 +g8 +tp799 +Rp800 +(I1 +(I7 +tp801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p802 +tp803 +bsa(dp804 +g4 +g5 +(g6 +(I0 +tp805 +g8 +tp806 +Rp807 +(I1 +(I7 +tp808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p809 +tp810 +bsa(dp811 +g4 +g5 +(g6 +(I0 +tp812 +g8 +tp813 +Rp814 +(I1 +(I7 +tp815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p816 +tp817 +bsa(dp818 +g4 +g5 +(g6 +(I0 +tp819 +g8 +tp820 +Rp821 +(I1 +(I7 +tp822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p823 +tp824 +bsa(dp825 +g4 +g5 +(g6 +(I0 +tp826 +g8 +tp827 +Rp828 +(I1 +(I7 +tp829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p830 +tp831 +bsa(dp832 +g4 +g5 +(g6 +(I0 +tp833 +g8 +tp834 +Rp835 +(I1 +(I7 +tp836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p837 +tp838 +bsa(dp839 +g4 +g5 +(g6 +(I0 +tp840 +g8 +tp841 +Rp842 +(I1 +(I7 +tp843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p844 +tp845 +bsa(dp846 +g4 +g5 +(g6 +(I0 +tp847 +g8 +tp848 +Rp849 +(I1 +(I7 +tp850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p851 +tp852 +bsa(dp853 +g4 +g5 +(g6 +(I0 +tp854 +g8 +tp855 +Rp856 +(I1 +(I7 +tp857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p858 +tp859 +bsa(dp860 +g4 +g5 +(g6 +(I0 +tp861 +g8 +tp862 +Rp863 +(I1 +(I7 +tp864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p865 +tp866 +bsa(dp867 +g4 +g5 +(g6 +(I0 +tp868 +g8 +tp869 +Rp870 +(I1 +(I7 +tp871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p872 +tp873 +bsa(dp874 +g4 +g5 +(g6 +(I0 +tp875 +g8 +tp876 +Rp877 +(I1 +(I7 +tp878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p879 +tp880 +bsa(dp881 +g4 +g5 +(g6 +(I0 +tp882 +g8 +tp883 +Rp884 +(I1 +(I7 +tp885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p886 +tp887 +bsa(dp888 +g4 +g5 +(g6 +(I0 +tp889 +g8 +tp890 +Rp891 +(I1 +(I7 +tp892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p893 +tp894 +bsa(dp895 +g4 +g5 +(g6 +(I0 +tp896 +g8 +tp897 +Rp898 +(I1 +(I7 +tp899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p900 +tp901 +bsa(dp902 +g4 +g5 +(g6 +(I0 +tp903 +g8 +tp904 +Rp905 +(I1 +(I7 +tp906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p907 +tp908 +bsa(dp909 +g4 +g5 +(g6 +(I0 +tp910 +g8 +tp911 +Rp912 +(I1 +(I7 +tp913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p914 +tp915 +bsa(dp916 +g4 +g5 +(g6 +(I0 +tp917 +g8 +tp918 +Rp919 +(I1 +(I7 +tp920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p921 +tp922 +bsa(dp923 +g4 +g5 +(g6 +(I0 +tp924 +g8 +tp925 +Rp926 +(I1 +(I7 +tp927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p928 +tp929 +bsa(dp930 +g4 +g5 +(g6 +(I0 +tp931 +g8 +tp932 +Rp933 +(I1 +(I7 +tp934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p935 +tp936 +bsa(dp937 +g4 +g5 +(g6 +(I0 +tp938 +g8 +tp939 +Rp940 +(I1 +(I7 +tp941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p942 +tp943 +bsa(dp944 +g4 +g5 +(g6 +(I0 +tp945 +g8 +tp946 +Rp947 +(I1 +(I7 +tp948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p949 +tp950 +bsa(dp951 +g4 +g5 +(g6 +(I0 +tp952 +g8 +tp953 +Rp954 +(I1 +(I7 +tp955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p956 +tp957 +bsa(dp958 +g4 +g5 +(g6 +(I0 +tp959 +g8 +tp960 +Rp961 +(I1 +(I7 +tp962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p963 +tp964 +bsa(dp965 +g4 +g5 +(g6 +(I0 +tp966 +g8 +tp967 +Rp968 +(I1 +(I7 +tp969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p970 +tp971 +bsa(dp972 +g4 +g5 +(g6 +(I0 +tp973 +g8 +tp974 +Rp975 +(I1 +(I7 +tp976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p977 +tp978 +bsa(dp979 +g4 +g5 +(g6 +(I0 +tp980 +g8 +tp981 +Rp982 +(I1 +(I7 +tp983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p984 +tp985 +bsa(dp986 +g4 +g5 +(g6 +(I0 +tp987 +g8 +tp988 +Rp989 +(I1 +(I7 +tp990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p991 +tp992 +bsa(dp993 +g4 +g5 +(g6 +(I0 +tp994 +g8 +tp995 +Rp996 +(I1 +(I7 +tp997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p998 +tp999 +bsa(dp1000 +g4 +g5 +(g6 +(I0 +tp1001 +g8 +tp1002 +Rp1003 +(I1 +(I7 +tp1004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1005 +tp1006 +bsa(dp1007 +g4 +g5 +(g6 +(I0 +tp1008 +g8 +tp1009 +Rp1010 +(I1 +(I7 +tp1011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1012 +tp1013 +bsa(dp1014 +g4 +g5 +(g6 +(I0 +tp1015 +g8 +tp1016 +Rp1017 +(I1 +(I7 +tp1018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1019 +tp1020 +bsa(dp1021 +g4 +g5 +(g6 +(I0 +tp1022 +g8 +tp1023 +Rp1024 +(I1 +(I7 +tp1025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1026 +tp1027 +bsa(dp1028 +g4 +g5 +(g6 +(I0 +tp1029 +g8 +tp1030 +Rp1031 +(I1 +(I7 +tp1032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1033 +tp1034 +bsa(dp1035 +g4 +g5 +(g6 +(I0 +tp1036 +g8 +tp1037 +Rp1038 +(I1 +(I7 +tp1039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1040 +tp1041 +bsa(dp1042 +g4 +g5 +(g6 +(I0 +tp1043 +g8 +tp1044 +Rp1045 +(I1 +(I7 +tp1046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1047 +tp1048 +bsa(dp1049 +g4 +g5 +(g6 +(I0 +tp1050 +g8 +tp1051 +Rp1052 +(I1 +(I7 +tp1053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1054 +tp1055 +bsa(dp1056 +g4 +g5 +(g6 +(I0 +tp1057 +g8 +tp1058 +Rp1059 +(I1 +(I7 +tp1060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1061 +tp1062 +bsa(dp1063 +g4 +g5 +(g6 +(I0 +tp1064 +g8 +tp1065 +Rp1066 +(I1 +(I7 +tp1067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1068 +tp1069 +bsa(dp1070 +g4 +g5 +(g6 +(I0 +tp1071 +g8 +tp1072 +Rp1073 +(I1 +(I7 +tp1074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1075 +tp1076 +bsa(dp1077 +g4 +g5 +(g6 +(I0 +tp1078 +g8 +tp1079 +Rp1080 +(I1 +(I7 +tp1081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1082 +tp1083 +bsa(dp1084 +g4 +g5 +(g6 +(I0 +tp1085 +g8 +tp1086 +Rp1087 +(I1 +(I7 +tp1088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1089 +tp1090 +bsa(dp1091 +g4 +g5 +(g6 +(I0 +tp1092 +g8 +tp1093 +Rp1094 +(I1 +(I7 +tp1095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1096 +tp1097 +bsa(dp1098 +g4 +g5 +(g6 +(I0 +tp1099 +g8 +tp1100 +Rp1101 +(I1 +(I7 +tp1102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1103 +tp1104 +bsa(dp1105 +g4 +g5 +(g6 +(I0 +tp1106 +g8 +tp1107 +Rp1108 +(I1 +(I7 +tp1109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1110 +tp1111 +bsa(dp1112 +g4 +g5 +(g6 +(I0 +tp1113 +g8 +tp1114 +Rp1115 +(I1 +(I7 +tp1116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1117 +tp1118 +bsa(dp1119 +g4 +g5 +(g6 +(I0 +tp1120 +g8 +tp1121 +Rp1122 +(I1 +(I7 +tp1123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1124 +tp1125 +bsa(dp1126 +g4 +g5 +(g6 +(I0 +tp1127 +g8 +tp1128 +Rp1129 +(I1 +(I7 +tp1130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1131 +tp1132 +bsa(dp1133 +g4 +g5 +(g6 +(I0 +tp1134 +g8 +tp1135 +Rp1136 +(I1 +(I7 +tp1137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1138 +tp1139 +bsa(dp1140 +g4 +g5 +(g6 +(I0 +tp1141 +g8 +tp1142 +Rp1143 +(I1 +(I7 +tp1144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1145 +tp1146 +bsa(dp1147 +g4 +g5 +(g6 +(I0 +tp1148 +g8 +tp1149 +Rp1150 +(I1 +(I7 +tp1151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1152 +tp1153 +bsa(dp1154 +g4 +g5 +(g6 +(I0 +tp1155 +g8 +tp1156 +Rp1157 +(I1 +(I7 +tp1158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1159 +tp1160 +bsa(dp1161 +g4 +g5 +(g6 +(I0 +tp1162 +g8 +tp1163 +Rp1164 +(I1 +(I7 +tp1165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1166 +tp1167 +bsa(dp1168 +g4 +g5 +(g6 +(I0 +tp1169 +g8 +tp1170 +Rp1171 +(I1 +(I7 +tp1172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1173 +tp1174 +bsa(dp1175 +g4 +g5 +(g6 +(I0 +tp1176 +g8 +tp1177 +Rp1178 +(I1 +(I7 +tp1179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1180 +tp1181 +bsa(dp1182 +g4 +g5 +(g6 +(I0 +tp1183 +g8 +tp1184 +Rp1185 +(I1 +(I7 +tp1186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1187 +tp1188 +bsa(dp1189 +g4 +g5 +(g6 +(I0 +tp1190 +g8 +tp1191 +Rp1192 +(I1 +(I7 +tp1193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1194 +tp1195 +bsa(dp1196 +g4 +g5 +(g6 +(I0 +tp1197 +g8 +tp1198 +Rp1199 +(I1 +(I7 +tp1200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1201 +tp1202 +bsa(dp1203 +g4 +g5 +(g6 +(I0 +tp1204 +g8 +tp1205 +Rp1206 +(I1 +(I7 +tp1207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1208 +tp1209 +bsa(dp1210 +g4 +g5 +(g6 +(I0 +tp1211 +g8 +tp1212 +Rp1213 +(I1 +(I7 +tp1214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1215 +tp1216 +bsa(dp1217 +g4 +g5 +(g6 +(I0 +tp1218 +g8 +tp1219 +Rp1220 +(I1 +(I7 +tp1221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1222 +tp1223 +bsa(dp1224 +g4 +g5 +(g6 +(I0 +tp1225 +g8 +tp1226 +Rp1227 +(I1 +(I7 +tp1228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1229 +tp1230 +bsa(dp1231 +g4 +g5 +(g6 +(I0 +tp1232 +g8 +tp1233 +Rp1234 +(I1 +(I7 +tp1235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1236 +tp1237 +bsa(dp1238 +g4 +g5 +(g6 +(I0 +tp1239 +g8 +tp1240 +Rp1241 +(I1 +(I7 +tp1242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1243 +tp1244 +bsa(dp1245 +g4 +g5 +(g6 +(I0 +tp1246 +g8 +tp1247 +Rp1248 +(I1 +(I7 +tp1249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1250 +tp1251 +bsa(dp1252 +g4 +g5 +(g6 +(I0 +tp1253 +g8 +tp1254 +Rp1255 +(I1 +(I7 +tp1256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1257 +tp1258 +bsa(dp1259 +g4 +g5 +(g6 +(I0 +tp1260 +g8 +tp1261 +Rp1262 +(I1 +(I7 +tp1263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1264 +tp1265 +bsa(dp1266 +g4 +g5 +(g6 +(I0 +tp1267 +g8 +tp1268 +Rp1269 +(I1 +(I7 +tp1270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1271 +tp1272 +bsa(dp1273 +g4 +g5 +(g6 +(I0 +tp1274 +g8 +tp1275 +Rp1276 +(I1 +(I7 +tp1277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1278 +tp1279 +bsa(dp1280 +g4 +g5 +(g6 +(I0 +tp1281 +g8 +tp1282 +Rp1283 +(I1 +(I7 +tp1284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1285 +tp1286 +bsa(dp1287 +g4 +g5 +(g6 +(I0 +tp1288 +g8 +tp1289 +Rp1290 +(I1 +(I7 +tp1291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1292 +tp1293 +bsa(dp1294 +g4 +g5 +(g6 +(I0 +tp1295 +g8 +tp1296 +Rp1297 +(I1 +(I7 +tp1298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1299 +tp1300 +bsa(dp1301 +g4 +g5 +(g6 +(I0 +tp1302 +g8 +tp1303 +Rp1304 +(I1 +(I7 +tp1305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1306 +tp1307 +bsa(dp1308 +g4 +g5 +(g6 +(I0 +tp1309 +g8 +tp1310 +Rp1311 +(I1 +(I7 +tp1312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1313 +tp1314 +bsa(dp1315 +g4 +g5 +(g6 +(I0 +tp1316 +g8 +tp1317 +Rp1318 +(I1 +(I7 +tp1319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1320 +tp1321 +bsa(dp1322 +g4 +g5 +(g6 +(I0 +tp1323 +g8 +tp1324 +Rp1325 +(I1 +(I7 +tp1326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1327 +tp1328 +bsa(dp1329 +g4 +g5 +(g6 +(I0 +tp1330 +g8 +tp1331 +Rp1332 +(I1 +(I7 +tp1333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1334 +tp1335 +bsa(dp1336 +g4 +g5 +(g6 +(I0 +tp1337 +g8 +tp1338 +Rp1339 +(I1 +(I7 +tp1340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1341 +tp1342 +bsa(dp1343 +g4 +g5 +(g6 +(I0 +tp1344 +g8 +tp1345 +Rp1346 +(I1 +(I7 +tp1347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1348 +tp1349 +bsa(dp1350 +g4 +g5 +(g6 +(I0 +tp1351 +g8 +tp1352 +Rp1353 +(I1 +(I7 +tp1354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1355 +tp1356 +bsa(dp1357 +g4 +g5 +(g6 +(I0 +tp1358 +g8 +tp1359 +Rp1360 +(I1 +(I7 +tp1361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1362 +tp1363 +bsa(dp1364 +g4 +g5 +(g6 +(I0 +tp1365 +g8 +tp1366 +Rp1367 +(I1 +(I7 +tp1368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1369 +tp1370 +bsa(dp1371 +g4 +g5 +(g6 +(I0 +tp1372 +g8 +tp1373 +Rp1374 +(I1 +(I7 +tp1375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1376 +tp1377 +bsa(dp1378 +g4 +g5 +(g6 +(I0 +tp1379 +g8 +tp1380 +Rp1381 +(I1 +(I7 +tp1382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1383 +tp1384 +bsa(dp1385 +g4 +g5 +(g6 +(I0 +tp1386 +g8 +tp1387 +Rp1388 +(I1 +(I7 +tp1389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1390 +tp1391 +bsa(dp1392 +g4 +g5 +(g6 +(I0 +tp1393 +g8 +tp1394 +Rp1395 +(I1 +(I7 +tp1396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1397 +tp1398 +bsa(dp1399 +g4 +g5 +(g6 +(I0 +tp1400 +g8 +tp1401 +Rp1402 +(I1 +(I7 +tp1403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1404 +tp1405 +bsa(dp1406 +g4 +g5 +(g6 +(I0 +tp1407 +g8 +tp1408 +Rp1409 +(I1 +(I7 +tp1410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1411 +tp1412 +bsa(dp1413 +g4 +g5 +(g6 +(I0 +tp1414 +g8 +tp1415 +Rp1416 +(I1 +(I7 +tp1417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1418 +tp1419 +bsa(dp1420 +g4 +g5 +(g6 +(I0 +tp1421 +g8 +tp1422 +Rp1423 +(I1 +(I7 +tp1424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1425 +tp1426 +bsa(dp1427 +g4 +g5 +(g6 +(I0 +tp1428 +g8 +tp1429 +Rp1430 +(I1 +(I7 +tp1431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1432 +tp1433 +bsa(dp1434 +g4 +g5 +(g6 +(I0 +tp1435 +g8 +tp1436 +Rp1437 +(I1 +(I7 +tp1438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1439 +tp1440 +bsa(dp1441 +g4 +g5 +(g6 +(I0 +tp1442 +g8 +tp1443 +Rp1444 +(I1 +(I7 +tp1445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1446 +tp1447 +bsa(dp1448 +g4 +g5 +(g6 +(I0 +tp1449 +g8 +tp1450 +Rp1451 +(I1 +(I7 +tp1452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1453 +tp1454 +bsa(dp1455 +g4 +g5 +(g6 +(I0 +tp1456 +g8 +tp1457 +Rp1458 +(I1 +(I7 +tp1459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1460 +tp1461 +bsa(dp1462 +g4 +g5 +(g6 +(I0 +tp1463 +g8 +tp1464 +Rp1465 +(I1 +(I7 +tp1466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1467 +tp1468 +bsa(dp1469 +g4 +g5 +(g6 +(I0 +tp1470 +g8 +tp1471 +Rp1472 +(I1 +(I7 +tp1473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1474 +tp1475 +bsa(dp1476 +g4 +g5 +(g6 +(I0 +tp1477 +g8 +tp1478 +Rp1479 +(I1 +(I7 +tp1480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1481 +tp1482 +bsa(dp1483 +g4 +g5 +(g6 +(I0 +tp1484 +g8 +tp1485 +Rp1486 +(I1 +(I7 +tp1487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1488 +tp1489 +bsa(dp1490 +g4 +g5 +(g6 +(I0 +tp1491 +g8 +tp1492 +Rp1493 +(I1 +(I7 +tp1494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1495 +tp1496 +bsa(dp1497 +g4 +g5 +(g6 +(I0 +tp1498 +g8 +tp1499 +Rp1500 +(I1 +(I7 +tp1501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1502 +tp1503 +bsa(dp1504 +g4 +g5 +(g6 +(I0 +tp1505 +g8 +tp1506 +Rp1507 +(I1 +(I7 +tp1508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1509 +tp1510 +bsa(dp1511 +g4 +g5 +(g6 +(I0 +tp1512 +g8 +tp1513 +Rp1514 +(I1 +(I7 +tp1515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1516 +tp1517 +bsa(dp1518 +g4 +g5 +(g6 +(I0 +tp1519 +g8 +tp1520 +Rp1521 +(I1 +(I7 +tp1522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1523 +tp1524 +bsa(dp1525 +g4 +g5 +(g6 +(I0 +tp1526 +g8 +tp1527 +Rp1528 +(I1 +(I7 +tp1529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1530 +tp1531 +bsa(dp1532 +g4 +g5 +(g6 +(I0 +tp1533 +g8 +tp1534 +Rp1535 +(I1 +(I7 +tp1536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1537 +tp1538 +bsa(dp1539 +g4 +g5 +(g6 +(I0 +tp1540 +g8 +tp1541 +Rp1542 +(I1 +(I7 +tp1543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1544 +tp1545 +bsa(dp1546 +g4 +g5 +(g6 +(I0 +tp1547 +g8 +tp1548 +Rp1549 +(I1 +(I7 +tp1550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1551 +tp1552 +bsa(dp1553 +g4 +g5 +(g6 +(I0 +tp1554 +g8 +tp1555 +Rp1556 +(I1 +(I7 +tp1557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1558 +tp1559 +bsa(dp1560 +g4 +g5 +(g6 +(I0 +tp1561 +g8 +tp1562 +Rp1563 +(I1 +(I7 +tp1564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1565 +tp1566 +bsa(dp1567 +g4 +g5 +(g6 +(I0 +tp1568 +g8 +tp1569 +Rp1570 +(I1 +(I7 +tp1571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1572 +tp1573 +bsa(dp1574 +g4 +g5 +(g6 +(I0 +tp1575 +g8 +tp1576 +Rp1577 +(I1 +(I7 +tp1578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1579 +tp1580 +bsa(dp1581 +g4 +g5 +(g6 +(I0 +tp1582 +g8 +tp1583 +Rp1584 +(I1 +(I7 +tp1585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1586 +tp1587 +bsa(dp1588 +g4 +g5 +(g6 +(I0 +tp1589 +g8 +tp1590 +Rp1591 +(I1 +(I7 +tp1592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1593 +tp1594 +bsa(dp1595 +g4 +g5 +(g6 +(I0 +tp1596 +g8 +tp1597 +Rp1598 +(I1 +(I7 +tp1599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1600 +tp1601 +bsa(dp1602 +g4 +g5 +(g6 +(I0 +tp1603 +g8 +tp1604 +Rp1605 +(I1 +(I7 +tp1606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1607 +tp1608 +bsa(dp1609 +g4 +g5 +(g6 +(I0 +tp1610 +g8 +tp1611 +Rp1612 +(I1 +(I7 +tp1613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1614 +tp1615 +bsa(dp1616 +g4 +g5 +(g6 +(I0 +tp1617 +g8 +tp1618 +Rp1619 +(I1 +(I7 +tp1620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1621 +tp1622 +bsa(dp1623 +g4 +g5 +(g6 +(I0 +tp1624 +g8 +tp1625 +Rp1626 +(I1 +(I7 +tp1627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1628 +tp1629 +bsa(dp1630 +g4 +g5 +(g6 +(I0 +tp1631 +g8 +tp1632 +Rp1633 +(I1 +(I7 +tp1634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1635 +tp1636 +bsa(dp1637 +g4 +g5 +(g6 +(I0 +tp1638 +g8 +tp1639 +Rp1640 +(I1 +(I7 +tp1641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1642 +tp1643 +bsa(dp1644 +g4 +g5 +(g6 +(I0 +tp1645 +g8 +tp1646 +Rp1647 +(I1 +(I7 +tp1648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1649 +tp1650 +bsa(dp1651 +g4 +g5 +(g6 +(I0 +tp1652 +g8 +tp1653 +Rp1654 +(I1 +(I7 +tp1655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1656 +tp1657 +bsa(dp1658 +g4 +g5 +(g6 +(I0 +tp1659 +g8 +tp1660 +Rp1661 +(I1 +(I7 +tp1662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1663 +tp1664 +bsa(dp1665 +g4 +g5 +(g6 +(I0 +tp1666 +g8 +tp1667 +Rp1668 +(I1 +(I7 +tp1669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1670 +tp1671 +bsa(dp1672 +g4 +g5 +(g6 +(I0 +tp1673 +g8 +tp1674 +Rp1675 +(I1 +(I7 +tp1676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1677 +tp1678 +bsa(dp1679 +g4 +g5 +(g6 +(I0 +tp1680 +g8 +tp1681 +Rp1682 +(I1 +(I7 +tp1683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1684 +tp1685 +bsa(dp1686 +g4 +g5 +(g6 +(I0 +tp1687 +g8 +tp1688 +Rp1689 +(I1 +(I7 +tp1690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1691 +tp1692 +bsa(dp1693 +g4 +g5 +(g6 +(I0 +tp1694 +g8 +tp1695 +Rp1696 +(I1 +(I7 +tp1697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1698 +tp1699 +bsa(dp1700 +g4 +g5 +(g6 +(I0 +tp1701 +g8 +tp1702 +Rp1703 +(I1 +(I7 +tp1704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1705 +tp1706 +bsa(dp1707 +g4 +g5 +(g6 +(I0 +tp1708 +g8 +tp1709 +Rp1710 +(I1 +(I7 +tp1711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1712 +tp1713 +bsa(dp1714 +g4 +g5 +(g6 +(I0 +tp1715 +g8 +tp1716 +Rp1717 +(I1 +(I7 +tp1718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1719 +tp1720 +bsa(dp1721 +g4 +g5 +(g6 +(I0 +tp1722 +g8 +tp1723 +Rp1724 +(I1 +(I7 +tp1725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1726 +tp1727 +bsa(dp1728 +g4 +g5 +(g6 +(I0 +tp1729 +g8 +tp1730 +Rp1731 +(I1 +(I7 +tp1732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1733 +tp1734 +bsa(dp1735 +g4 +g5 +(g6 +(I0 +tp1736 +g8 +tp1737 +Rp1738 +(I1 +(I7 +tp1739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1740 +tp1741 +bsa(dp1742 +g4 +g5 +(g6 +(I0 +tp1743 +g8 +tp1744 +Rp1745 +(I1 +(I7 +tp1746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1747 +tp1748 +bsa(dp1749 +g4 +g5 +(g6 +(I0 +tp1750 +g8 +tp1751 +Rp1752 +(I1 +(I7 +tp1753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1754 +tp1755 +bsa(dp1756 +g4 +g5 +(g6 +(I0 +tp1757 +g8 +tp1758 +Rp1759 +(I1 +(I7 +tp1760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1761 +tp1762 +bsa(dp1763 +g4 +g5 +(g6 +(I0 +tp1764 +g8 +tp1765 +Rp1766 +(I1 +(I7 +tp1767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1768 +tp1769 +bsa(dp1770 +g4 +g5 +(g6 +(I0 +tp1771 +g8 +tp1772 +Rp1773 +(I1 +(I7 +tp1774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1775 +tp1776 +bsa(dp1777 +g4 +g5 +(g6 +(I0 +tp1778 +g8 +tp1779 +Rp1780 +(I1 +(I7 +tp1781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1782 +tp1783 +bsa(dp1784 +g4 +g5 +(g6 +(I0 +tp1785 +g8 +tp1786 +Rp1787 +(I1 +(I7 +tp1788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1789 +tp1790 +bsa(dp1791 +g4 +g5 +(g6 +(I0 +tp1792 +g8 +tp1793 +Rp1794 +(I1 +(I7 +tp1795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1796 +tp1797 +bsa(dp1798 +g4 +g5 +(g6 +(I0 +tp1799 +g8 +tp1800 +Rp1801 +(I1 +(I7 +tp1802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1803 +tp1804 +bsa(dp1805 +g4 +g5 +(g6 +(I0 +tp1806 +g8 +tp1807 +Rp1808 +(I1 +(I7 +tp1809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1810 +tp1811 +bsa(dp1812 +g4 +g5 +(g6 +(I0 +tp1813 +g8 +tp1814 +Rp1815 +(I1 +(I7 +tp1816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1817 +tp1818 +bsa(dp1819 +g4 +g5 +(g6 +(I0 +tp1820 +g8 +tp1821 +Rp1822 +(I1 +(I7 +tp1823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1824 +tp1825 +bsa(dp1826 +g4 +g5 +(g6 +(I0 +tp1827 +g8 +tp1828 +Rp1829 +(I1 +(I7 +tp1830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1831 +tp1832 +bsa(dp1833 +g4 +g5 +(g6 +(I0 +tp1834 +g8 +tp1835 +Rp1836 +(I1 +(I7 +tp1837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1838 +tp1839 +bsa(dp1840 +g4 +g5 +(g6 +(I0 +tp1841 +g8 +tp1842 +Rp1843 +(I1 +(I7 +tp1844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1845 +tp1846 +bsa(dp1847 +g4 +g5 +(g6 +(I0 +tp1848 +g8 +tp1849 +Rp1850 +(I1 +(I7 +tp1851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1852 +tp1853 +bsa(dp1854 +g4 +g5 +(g6 +(I0 +tp1855 +g8 +tp1856 +Rp1857 +(I1 +(I7 +tp1858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1859 +tp1860 +bsa(dp1861 +g4 +g5 +(g6 +(I0 +tp1862 +g8 +tp1863 +Rp1864 +(I1 +(I7 +tp1865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1866 +tp1867 +bsa(dp1868 +g4 +g5 +(g6 +(I0 +tp1869 +g8 +tp1870 +Rp1871 +(I1 +(I7 +tp1872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1873 +tp1874 +bsa(dp1875 +g4 +g5 +(g6 +(I0 +tp1876 +g8 +tp1877 +Rp1878 +(I1 +(I7 +tp1879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1880 +tp1881 +bsa(dp1882 +g4 +g5 +(g6 +(I0 +tp1883 +g8 +tp1884 +Rp1885 +(I1 +(I7 +tp1886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1887 +tp1888 +bsa(dp1889 +g4 +g5 +(g6 +(I0 +tp1890 +g8 +tp1891 +Rp1892 +(I1 +(I7 +tp1893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1894 +tp1895 +bsa(dp1896 +g4 +g5 +(g6 +(I0 +tp1897 +g8 +tp1898 +Rp1899 +(I1 +(I7 +tp1900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1901 +tp1902 +bsa(dp1903 +g4 +g5 +(g6 +(I0 +tp1904 +g8 +tp1905 +Rp1906 +(I1 +(I7 +tp1907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1908 +tp1909 +bsa(dp1910 +g4 +g5 +(g6 +(I0 +tp1911 +g8 +tp1912 +Rp1913 +(I1 +(I7 +tp1914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1915 +tp1916 +bsa(dp1917 +g4 +g5 +(g6 +(I0 +tp1918 +g8 +tp1919 +Rp1920 +(I1 +(I7 +tp1921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1922 +tp1923 +bsa(dp1924 +g4 +g5 +(g6 +(I0 +tp1925 +g8 +tp1926 +Rp1927 +(I1 +(I7 +tp1928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1929 +tp1930 +bsa(dp1931 +g4 +g5 +(g6 +(I0 +tp1932 +g8 +tp1933 +Rp1934 +(I1 +(I7 +tp1935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1936 +tp1937 +bsa(dp1938 +g4 +g5 +(g6 +(I0 +tp1939 +g8 +tp1940 +Rp1941 +(I1 +(I7 +tp1942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1943 +tp1944 +bsa(dp1945 +g4 +g5 +(g6 +(I0 +tp1946 +g8 +tp1947 +Rp1948 +(I1 +(I7 +tp1949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1950 +tp1951 +bsa(dp1952 +g4 +g5 +(g6 +(I0 +tp1953 +g8 +tp1954 +Rp1955 +(I1 +(I7 +tp1956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1957 +tp1958 +bsa(dp1959 +g4 +g5 +(g6 +(I0 +tp1960 +g8 +tp1961 +Rp1962 +(I1 +(I7 +tp1963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1964 +tp1965 +bsa(dp1966 +g4 +g5 +(g6 +(I0 +tp1967 +g8 +tp1968 +Rp1969 +(I1 +(I7 +tp1970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p1971 +tp1972 +bsa(dp1973 +g4 +g5 +(g6 +(I0 +tp1974 +g8 +tp1975 +Rp1976 +(I1 +(I7 +tp1977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p1978 +tp1979 +bsa(dp1980 +g4 +g5 +(g6 +(I0 +tp1981 +g8 +tp1982 +Rp1983 +(I1 +(I7 +tp1984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1985 +tp1986 +bsa(dp1987 +g4 +g5 +(g6 +(I0 +tp1988 +g8 +tp1989 +Rp1990 +(I1 +(I7 +tp1991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1992 +tp1993 +bsa(dp1994 +g4 +g5 +(g6 +(I0 +tp1995 +g8 +tp1996 +Rp1997 +(I1 +(I7 +tp1998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p1999 +tp2000 +bsa(dp2001 +g4 +g5 +(g6 +(I0 +tp2002 +g8 +tp2003 +Rp2004 +(I1 +(I7 +tp2005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2006 +tp2007 +bsa(dp2008 +g4 +g5 +(g6 +(I0 +tp2009 +g8 +tp2010 +Rp2011 +(I1 +(I7 +tp2012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2013 +tp2014 +bsa(dp2015 +g4 +g5 +(g6 +(I0 +tp2016 +g8 +tp2017 +Rp2018 +(I1 +(I7 +tp2019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2020 +tp2021 +bsa(dp2022 +g4 +g5 +(g6 +(I0 +tp2023 +g8 +tp2024 +Rp2025 +(I1 +(I7 +tp2026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2027 +tp2028 +bsa(dp2029 +g4 +g5 +(g6 +(I0 +tp2030 +g8 +tp2031 +Rp2032 +(I1 +(I7 +tp2033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2034 +tp2035 +bsa(dp2036 +g4 +g5 +(g6 +(I0 +tp2037 +g8 +tp2038 +Rp2039 +(I1 +(I7 +tp2040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2041 +tp2042 +bsa(dp2043 +g4 +g5 +(g6 +(I0 +tp2044 +g8 +tp2045 +Rp2046 +(I1 +(I7 +tp2047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2048 +tp2049 +bsa(dp2050 +g4 +g5 +(g6 +(I0 +tp2051 +g8 +tp2052 +Rp2053 +(I1 +(I7 +tp2054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2055 +tp2056 +bsa(dp2057 +g4 +g5 +(g6 +(I0 +tp2058 +g8 +tp2059 +Rp2060 +(I1 +(I7 +tp2061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2062 +tp2063 +bsa(dp2064 +g4 +g5 +(g6 +(I0 +tp2065 +g8 +tp2066 +Rp2067 +(I1 +(I7 +tp2068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2069 +tp2070 +bsa(dp2071 +g4 +g5 +(g6 +(I0 +tp2072 +g8 +tp2073 +Rp2074 +(I1 +(I7 +tp2075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2076 +tp2077 +bsa(dp2078 +g4 +g5 +(g6 +(I0 +tp2079 +g8 +tp2080 +Rp2081 +(I1 +(I7 +tp2082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2083 +tp2084 +bsa(dp2085 +g4 +g5 +(g6 +(I0 +tp2086 +g8 +tp2087 +Rp2088 +(I1 +(I7 +tp2089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2090 +tp2091 +bsa(dp2092 +g4 +g5 +(g6 +(I0 +tp2093 +g8 +tp2094 +Rp2095 +(I1 +(I7 +tp2096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2097 +tp2098 +bsa(dp2099 +g4 +g5 +(g6 +(I0 +tp2100 +g8 +tp2101 +Rp2102 +(I1 +(I7 +tp2103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2104 +tp2105 +bsa(dp2106 +g4 +g5 +(g6 +(I0 +tp2107 +g8 +tp2108 +Rp2109 +(I1 +(I7 +tp2110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2111 +tp2112 +bsa(dp2113 +g4 +g5 +(g6 +(I0 +tp2114 +g8 +tp2115 +Rp2116 +(I1 +(I7 +tp2117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2118 +tp2119 +bsa(dp2120 +g4 +g5 +(g6 +(I0 +tp2121 +g8 +tp2122 +Rp2123 +(I1 +(I7 +tp2124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2125 +tp2126 +bsa(dp2127 +g4 +g5 +(g6 +(I0 +tp2128 +g8 +tp2129 +Rp2130 +(I1 +(I7 +tp2131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2132 +tp2133 +bsa(dp2134 +g4 +g5 +(g6 +(I0 +tp2135 +g8 +tp2136 +Rp2137 +(I1 +(I7 +tp2138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2139 +tp2140 +bsa(dp2141 +g4 +g5 +(g6 +(I0 +tp2142 +g8 +tp2143 +Rp2144 +(I1 +(I7 +tp2145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2146 +tp2147 +bsa(dp2148 +g4 +g5 +(g6 +(I0 +tp2149 +g8 +tp2150 +Rp2151 +(I1 +(I7 +tp2152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2153 +tp2154 +bsa(dp2155 +g4 +g5 +(g6 +(I0 +tp2156 +g8 +tp2157 +Rp2158 +(I1 +(I7 +tp2159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2160 +tp2161 +bsa(dp2162 +g4 +g5 +(g6 +(I0 +tp2163 +g8 +tp2164 +Rp2165 +(I1 +(I7 +tp2166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2167 +tp2168 +bsa(dp2169 +g4 +g5 +(g6 +(I0 +tp2170 +g8 +tp2171 +Rp2172 +(I1 +(I7 +tp2173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2174 +tp2175 +bsa(dp2176 +g4 +g5 +(g6 +(I0 +tp2177 +g8 +tp2178 +Rp2179 +(I1 +(I7 +tp2180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2181 +tp2182 +bsa(dp2183 +g4 +g5 +(g6 +(I0 +tp2184 +g8 +tp2185 +Rp2186 +(I1 +(I7 +tp2187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2188 +tp2189 +bsa(dp2190 +g4 +g5 +(g6 +(I0 +tp2191 +g8 +tp2192 +Rp2193 +(I1 +(I7 +tp2194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2195 +tp2196 +bsa(dp2197 +g4 +g5 +(g6 +(I0 +tp2198 +g8 +tp2199 +Rp2200 +(I1 +(I7 +tp2201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2202 +tp2203 +bsa(dp2204 +g4 +g5 +(g6 +(I0 +tp2205 +g8 +tp2206 +Rp2207 +(I1 +(I7 +tp2208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2209 +tp2210 +bsa(dp2211 +g4 +g5 +(g6 +(I0 +tp2212 +g8 +tp2213 +Rp2214 +(I1 +(I7 +tp2215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2216 +tp2217 +bsa(dp2218 +g4 +g5 +(g6 +(I0 +tp2219 +g8 +tp2220 +Rp2221 +(I1 +(I7 +tp2222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2223 +tp2224 +bsa(dp2225 +g4 +g5 +(g6 +(I0 +tp2226 +g8 +tp2227 +Rp2228 +(I1 +(I7 +tp2229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2230 +tp2231 +bsa(dp2232 +g4 +g5 +(g6 +(I0 +tp2233 +g8 +tp2234 +Rp2235 +(I1 +(I7 +tp2236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2237 +tp2238 +bsa(dp2239 +g4 +g5 +(g6 +(I0 +tp2240 +g8 +tp2241 +Rp2242 +(I1 +(I7 +tp2243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2244 +tp2245 +bsa(dp2246 +g4 +g5 +(g6 +(I0 +tp2247 +g8 +tp2248 +Rp2249 +(I1 +(I7 +tp2250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2251 +tp2252 +bsa(dp2253 +g4 +g5 +(g6 +(I0 +tp2254 +g8 +tp2255 +Rp2256 +(I1 +(I7 +tp2257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2258 +tp2259 +bsa(dp2260 +g4 +g5 +(g6 +(I0 +tp2261 +g8 +tp2262 +Rp2263 +(I1 +(I7 +tp2264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2265 +tp2266 +bsa(dp2267 +g4 +g5 +(g6 +(I0 +tp2268 +g8 +tp2269 +Rp2270 +(I1 +(I7 +tp2271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2272 +tp2273 +bsa(dp2274 +g4 +g5 +(g6 +(I0 +tp2275 +g8 +tp2276 +Rp2277 +(I1 +(I7 +tp2278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2279 +tp2280 +bsa(dp2281 +g4 +g5 +(g6 +(I0 +tp2282 +g8 +tp2283 +Rp2284 +(I1 +(I7 +tp2285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2286 +tp2287 +bsa(dp2288 +g4 +g5 +(g6 +(I0 +tp2289 +g8 +tp2290 +Rp2291 +(I1 +(I7 +tp2292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2293 +tp2294 +bsa(dp2295 +g4 +g5 +(g6 +(I0 +tp2296 +g8 +tp2297 +Rp2298 +(I1 +(I7 +tp2299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2300 +tp2301 +bsa(dp2302 +g4 +g5 +(g6 +(I0 +tp2303 +g8 +tp2304 +Rp2305 +(I1 +(I7 +tp2306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2307 +tp2308 +bsa(dp2309 +g4 +g5 +(g6 +(I0 +tp2310 +g8 +tp2311 +Rp2312 +(I1 +(I7 +tp2313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2314 +tp2315 +bsa(dp2316 +g4 +g5 +(g6 +(I0 +tp2317 +g8 +tp2318 +Rp2319 +(I1 +(I7 +tp2320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2321 +tp2322 +bsa(dp2323 +g4 +g5 +(g6 +(I0 +tp2324 +g8 +tp2325 +Rp2326 +(I1 +(I7 +tp2327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2328 +tp2329 +bsa(dp2330 +g4 +g5 +(g6 +(I0 +tp2331 +g8 +tp2332 +Rp2333 +(I1 +(I7 +tp2334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2335 +tp2336 +bsa(dp2337 +g4 +g5 +(g6 +(I0 +tp2338 +g8 +tp2339 +Rp2340 +(I1 +(I7 +tp2341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2342 +tp2343 +bsa(dp2344 +g4 +g5 +(g6 +(I0 +tp2345 +g8 +tp2346 +Rp2347 +(I1 +(I7 +tp2348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2349 +tp2350 +bsa(dp2351 +g4 +g5 +(g6 +(I0 +tp2352 +g8 +tp2353 +Rp2354 +(I1 +(I7 +tp2355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2356 +tp2357 +bsa(dp2358 +g4 +g5 +(g6 +(I0 +tp2359 +g8 +tp2360 +Rp2361 +(I1 +(I7 +tp2362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2363 +tp2364 +bsa(dp2365 +g4 +g5 +(g6 +(I0 +tp2366 +g8 +tp2367 +Rp2368 +(I1 +(I7 +tp2369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2370 +tp2371 +bsa(dp2372 +g4 +g5 +(g6 +(I0 +tp2373 +g8 +tp2374 +Rp2375 +(I1 +(I7 +tp2376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2377 +tp2378 +bsa(dp2379 +g4 +g5 +(g6 +(I0 +tp2380 +g8 +tp2381 +Rp2382 +(I1 +(I7 +tp2383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2384 +tp2385 +bsa(dp2386 +g4 +g5 +(g6 +(I0 +tp2387 +g8 +tp2388 +Rp2389 +(I1 +(I7 +tp2390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2391 +tp2392 +bsa(dp2393 +g4 +g5 +(g6 +(I0 +tp2394 +g8 +tp2395 +Rp2396 +(I1 +(I7 +tp2397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2398 +tp2399 +bsa(dp2400 +g4 +g5 +(g6 +(I0 +tp2401 +g8 +tp2402 +Rp2403 +(I1 +(I7 +tp2404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2405 +tp2406 +bsa(dp2407 +g4 +g5 +(g6 +(I0 +tp2408 +g8 +tp2409 +Rp2410 +(I1 +(I7 +tp2411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2412 +tp2413 +bsa(dp2414 +g4 +g5 +(g6 +(I0 +tp2415 +g8 +tp2416 +Rp2417 +(I1 +(I7 +tp2418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2419 +tp2420 +bsa(dp2421 +g4 +g5 +(g6 +(I0 +tp2422 +g8 +tp2423 +Rp2424 +(I1 +(I7 +tp2425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2426 +tp2427 +bsa(dp2428 +g4 +g5 +(g6 +(I0 +tp2429 +g8 +tp2430 +Rp2431 +(I1 +(I7 +tp2432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2433 +tp2434 +bsa(dp2435 +g4 +g5 +(g6 +(I0 +tp2436 +g8 +tp2437 +Rp2438 +(I1 +(I7 +tp2439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2440 +tp2441 +bsa(dp2442 +g4 +g5 +(g6 +(I0 +tp2443 +g8 +tp2444 +Rp2445 +(I1 +(I7 +tp2446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2447 +tp2448 +bsa(dp2449 +g4 +g5 +(g6 +(I0 +tp2450 +g8 +tp2451 +Rp2452 +(I1 +(I7 +tp2453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2454 +tp2455 +bsa(dp2456 +g4 +g5 +(g6 +(I0 +tp2457 +g8 +tp2458 +Rp2459 +(I1 +(I7 +tp2460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2461 +tp2462 +bsa(dp2463 +g4 +g5 +(g6 +(I0 +tp2464 +g8 +tp2465 +Rp2466 +(I1 +(I7 +tp2467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2468 +tp2469 +bsa(dp2470 +g4 +g5 +(g6 +(I0 +tp2471 +g8 +tp2472 +Rp2473 +(I1 +(I7 +tp2474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2475 +tp2476 +bsa(dp2477 +g4 +g5 +(g6 +(I0 +tp2478 +g8 +tp2479 +Rp2480 +(I1 +(I7 +tp2481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2482 +tp2483 +bsa(dp2484 +g4 +g5 +(g6 +(I0 +tp2485 +g8 +tp2486 +Rp2487 +(I1 +(I7 +tp2488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2489 +tp2490 +bsa(dp2491 +g4 +g5 +(g6 +(I0 +tp2492 +g8 +tp2493 +Rp2494 +(I1 +(I7 +tp2495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2496 +tp2497 +bsa(dp2498 +g4 +g5 +(g6 +(I0 +tp2499 +g8 +tp2500 +Rp2501 +(I1 +(I7 +tp2502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2503 +tp2504 +bsa(dp2505 +g4 +g5 +(g6 +(I0 +tp2506 +g8 +tp2507 +Rp2508 +(I1 +(I7 +tp2509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2510 +tp2511 +bsa(dp2512 +g4 +g5 +(g6 +(I0 +tp2513 +g8 +tp2514 +Rp2515 +(I1 +(I7 +tp2516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2517 +tp2518 +bsa(dp2519 +g4 +g5 +(g6 +(I0 +tp2520 +g8 +tp2521 +Rp2522 +(I1 +(I7 +tp2523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2524 +tp2525 +bsa(dp2526 +g4 +g5 +(g6 +(I0 +tp2527 +g8 +tp2528 +Rp2529 +(I1 +(I7 +tp2530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2531 +tp2532 +bsa(dp2533 +g4 +g5 +(g6 +(I0 +tp2534 +g8 +tp2535 +Rp2536 +(I1 +(I7 +tp2537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2538 +tp2539 +bsa(dp2540 +g4 +g5 +(g6 +(I0 +tp2541 +g8 +tp2542 +Rp2543 +(I1 +(I7 +tp2544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2545 +tp2546 +bsa(dp2547 +g4 +g5 +(g6 +(I0 +tp2548 +g8 +tp2549 +Rp2550 +(I1 +(I7 +tp2551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2552 +tp2553 +bsa(dp2554 +g4 +g5 +(g6 +(I0 +tp2555 +g8 +tp2556 +Rp2557 +(I1 +(I7 +tp2558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2559 +tp2560 +bsa(dp2561 +g4 +g5 +(g6 +(I0 +tp2562 +g8 +tp2563 +Rp2564 +(I1 +(I7 +tp2565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2566 +tp2567 +bsa(dp2568 +g4 +g5 +(g6 +(I0 +tp2569 +g8 +tp2570 +Rp2571 +(I1 +(I7 +tp2572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2573 +tp2574 +bsa(dp2575 +g4 +g5 +(g6 +(I0 +tp2576 +g8 +tp2577 +Rp2578 +(I1 +(I7 +tp2579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2580 +tp2581 +bsa(dp2582 +g4 +g5 +(g6 +(I0 +tp2583 +g8 +tp2584 +Rp2585 +(I1 +(I7 +tp2586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2587 +tp2588 +bsa(dp2589 +g4 +g5 +(g6 +(I0 +tp2590 +g8 +tp2591 +Rp2592 +(I1 +(I7 +tp2593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2594 +tp2595 +bsa(dp2596 +g4 +g5 +(g6 +(I0 +tp2597 +g8 +tp2598 +Rp2599 +(I1 +(I7 +tp2600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2601 +tp2602 +bsa(dp2603 +g4 +g5 +(g6 +(I0 +tp2604 +g8 +tp2605 +Rp2606 +(I1 +(I7 +tp2607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2608 +tp2609 +bsa(dp2610 +g4 +g5 +(g6 +(I0 +tp2611 +g8 +tp2612 +Rp2613 +(I1 +(I7 +tp2614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2615 +tp2616 +bsa(dp2617 +g4 +g5 +(g6 +(I0 +tp2618 +g8 +tp2619 +Rp2620 +(I1 +(I7 +tp2621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2622 +tp2623 +bsa(dp2624 +g4 +g5 +(g6 +(I0 +tp2625 +g8 +tp2626 +Rp2627 +(I1 +(I7 +tp2628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2629 +tp2630 +bsa(dp2631 +g4 +g5 +(g6 +(I0 +tp2632 +g8 +tp2633 +Rp2634 +(I1 +(I7 +tp2635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2636 +tp2637 +bsa(dp2638 +g4 +g5 +(g6 +(I0 +tp2639 +g8 +tp2640 +Rp2641 +(I1 +(I7 +tp2642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2643 +tp2644 +bsa(dp2645 +g4 +g5 +(g6 +(I0 +tp2646 +g8 +tp2647 +Rp2648 +(I1 +(I7 +tp2649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2650 +tp2651 +bsa(dp2652 +g4 +g5 +(g6 +(I0 +tp2653 +g8 +tp2654 +Rp2655 +(I1 +(I7 +tp2656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2657 +tp2658 +bsa(dp2659 +g4 +g5 +(g6 +(I0 +tp2660 +g8 +tp2661 +Rp2662 +(I1 +(I7 +tp2663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2664 +tp2665 +bsa(dp2666 +g4 +g5 +(g6 +(I0 +tp2667 +g8 +tp2668 +Rp2669 +(I1 +(I7 +tp2670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2671 +tp2672 +bsa(dp2673 +g4 +g5 +(g6 +(I0 +tp2674 +g8 +tp2675 +Rp2676 +(I1 +(I7 +tp2677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2678 +tp2679 +bsa(dp2680 +g4 +g5 +(g6 +(I0 +tp2681 +g8 +tp2682 +Rp2683 +(I1 +(I7 +tp2684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2685 +tp2686 +bsa(dp2687 +g4 +g5 +(g6 +(I0 +tp2688 +g8 +tp2689 +Rp2690 +(I1 +(I7 +tp2691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2692 +tp2693 +bsa(dp2694 +g4 +g5 +(g6 +(I0 +tp2695 +g8 +tp2696 +Rp2697 +(I1 +(I7 +tp2698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2699 +tp2700 +bsa(dp2701 +g4 +g5 +(g6 +(I0 +tp2702 +g8 +tp2703 +Rp2704 +(I1 +(I7 +tp2705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2706 +tp2707 +bsa(dp2708 +g4 +g5 +(g6 +(I0 +tp2709 +g8 +tp2710 +Rp2711 +(I1 +(I7 +tp2712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2713 +tp2714 +bsa(dp2715 +g4 +g5 +(g6 +(I0 +tp2716 +g8 +tp2717 +Rp2718 +(I1 +(I7 +tp2719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2720 +tp2721 +bsa(dp2722 +g4 +g5 +(g6 +(I0 +tp2723 +g8 +tp2724 +Rp2725 +(I1 +(I7 +tp2726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2727 +tp2728 +bsa(dp2729 +g4 +g5 +(g6 +(I0 +tp2730 +g8 +tp2731 +Rp2732 +(I1 +(I7 +tp2733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2734 +tp2735 +bsa(dp2736 +g4 +g5 +(g6 +(I0 +tp2737 +g8 +tp2738 +Rp2739 +(I1 +(I7 +tp2740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2741 +tp2742 +bsa(dp2743 +g4 +g5 +(g6 +(I0 +tp2744 +g8 +tp2745 +Rp2746 +(I1 +(I7 +tp2747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2748 +tp2749 +bsa(dp2750 +g4 +g5 +(g6 +(I0 +tp2751 +g8 +tp2752 +Rp2753 +(I1 +(I7 +tp2754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2755 +tp2756 +bsa(dp2757 +g4 +g5 +(g6 +(I0 +tp2758 +g8 +tp2759 +Rp2760 +(I1 +(I7 +tp2761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2762 +tp2763 +bsa(dp2764 +g4 +g5 +(g6 +(I0 +tp2765 +g8 +tp2766 +Rp2767 +(I1 +(I7 +tp2768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2769 +tp2770 +bsa(dp2771 +g4 +g5 +(g6 +(I0 +tp2772 +g8 +tp2773 +Rp2774 +(I1 +(I7 +tp2775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2776 +tp2777 +bsa(dp2778 +g4 +g5 +(g6 +(I0 +tp2779 +g8 +tp2780 +Rp2781 +(I1 +(I7 +tp2782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2783 +tp2784 +bsa(dp2785 +g4 +g5 +(g6 +(I0 +tp2786 +g8 +tp2787 +Rp2788 +(I1 +(I7 +tp2789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2790 +tp2791 +bsa(dp2792 +g4 +g5 +(g6 +(I0 +tp2793 +g8 +tp2794 +Rp2795 +(I1 +(I7 +tp2796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2797 +tp2798 +bsa(dp2799 +g4 +g5 +(g6 +(I0 +tp2800 +g8 +tp2801 +Rp2802 +(I1 +(I7 +tp2803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2804 +tp2805 +bsa(dp2806 +g4 +g5 +(g6 +(I0 +tp2807 +g8 +tp2808 +Rp2809 +(I1 +(I7 +tp2810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2811 +tp2812 +bsa(dp2813 +g4 +g5 +(g6 +(I0 +tp2814 +g8 +tp2815 +Rp2816 +(I1 +(I7 +tp2817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2818 +tp2819 +bsa(dp2820 +g4 +g5 +(g6 +(I0 +tp2821 +g8 +tp2822 +Rp2823 +(I1 +(I7 +tp2824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2825 +tp2826 +bsa(dp2827 +g4 +g5 +(g6 +(I0 +tp2828 +g8 +tp2829 +Rp2830 +(I1 +(I7 +tp2831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2832 +tp2833 +bsa(dp2834 +g4 +g5 +(g6 +(I0 +tp2835 +g8 +tp2836 +Rp2837 +(I1 +(I7 +tp2838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2839 +tp2840 +bsa(dp2841 +g4 +g5 +(g6 +(I0 +tp2842 +g8 +tp2843 +Rp2844 +(I1 +(I7 +tp2845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2846 +tp2847 +bsa(dp2848 +g4 +g5 +(g6 +(I0 +tp2849 +g8 +tp2850 +Rp2851 +(I1 +(I7 +tp2852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2853 +tp2854 +bsa(dp2855 +g4 +g5 +(g6 +(I0 +tp2856 +g8 +tp2857 +Rp2858 +(I1 +(I7 +tp2859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2860 +tp2861 +bsa(dp2862 +g4 +g5 +(g6 +(I0 +tp2863 +g8 +tp2864 +Rp2865 +(I1 +(I7 +tp2866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2867 +tp2868 +bsa(dp2869 +g4 +g5 +(g6 +(I0 +tp2870 +g8 +tp2871 +Rp2872 +(I1 +(I7 +tp2873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2874 +tp2875 +bsa(dp2876 +g4 +g5 +(g6 +(I0 +tp2877 +g8 +tp2878 +Rp2879 +(I1 +(I7 +tp2880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2881 +tp2882 +bsa(dp2883 +g4 +g5 +(g6 +(I0 +tp2884 +g8 +tp2885 +Rp2886 +(I1 +(I7 +tp2887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2888 +tp2889 +bsa(dp2890 +g4 +g5 +(g6 +(I0 +tp2891 +g8 +tp2892 +Rp2893 +(I1 +(I7 +tp2894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2895 +tp2896 +bsa(dp2897 +g4 +g5 +(g6 +(I0 +tp2898 +g8 +tp2899 +Rp2900 +(I1 +(I7 +tp2901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2902 +tp2903 +bsa(dp2904 +g4 +g5 +(g6 +(I0 +tp2905 +g8 +tp2906 +Rp2907 +(I1 +(I7 +tp2908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2909 +tp2910 +bsa(dp2911 +g4 +g5 +(g6 +(I0 +tp2912 +g8 +tp2913 +Rp2914 +(I1 +(I7 +tp2915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2916 +tp2917 +bsa(dp2918 +g4 +g5 +(g6 +(I0 +tp2919 +g8 +tp2920 +Rp2921 +(I1 +(I7 +tp2922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2923 +tp2924 +bsa(dp2925 +g4 +g5 +(g6 +(I0 +tp2926 +g8 +tp2927 +Rp2928 +(I1 +(I7 +tp2929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2930 +tp2931 +bsa(dp2932 +g4 +g5 +(g6 +(I0 +tp2933 +g8 +tp2934 +Rp2935 +(I1 +(I7 +tp2936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2937 +tp2938 +bsa(dp2939 +g4 +g5 +(g6 +(I0 +tp2940 +g8 +tp2941 +Rp2942 +(I1 +(I7 +tp2943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2944 +tp2945 +bsa(dp2946 +g4 +g5 +(g6 +(I0 +tp2947 +g8 +tp2948 +Rp2949 +(I1 +(I7 +tp2950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2951 +tp2952 +bsa(dp2953 +g4 +g5 +(g6 +(I0 +tp2954 +g8 +tp2955 +Rp2956 +(I1 +(I7 +tp2957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2958 +tp2959 +bsa(dp2960 +g4 +g5 +(g6 +(I0 +tp2961 +g8 +tp2962 +Rp2963 +(I1 +(I7 +tp2964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2965 +tp2966 +bsa(dp2967 +g4 +g5 +(g6 +(I0 +tp2968 +g8 +tp2969 +Rp2970 +(I1 +(I7 +tp2971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2972 +tp2973 +bsa(dp2974 +g4 +g5 +(g6 +(I0 +tp2975 +g8 +tp2976 +Rp2977 +(I1 +(I7 +tp2978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p2979 +tp2980 +bsa(dp2981 +g4 +g5 +(g6 +(I0 +tp2982 +g8 +tp2983 +Rp2984 +(I1 +(I7 +tp2985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p2986 +tp2987 +bsa(dp2988 +g4 +g5 +(g6 +(I0 +tp2989 +g8 +tp2990 +Rp2991 +(I1 +(I7 +tp2992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p2993 +tp2994 +bsa(dp2995 +g4 +g5 +(g6 +(I0 +tp2996 +g8 +tp2997 +Rp2998 +(I1 +(I7 +tp2999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3000 +tp3001 +bsa(dp3002 +g4 +g5 +(g6 +(I0 +tp3003 +g8 +tp3004 +Rp3005 +(I1 +(I7 +tp3006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3007 +tp3008 +bsa(dp3009 +g4 +g5 +(g6 +(I0 +tp3010 +g8 +tp3011 +Rp3012 +(I1 +(I7 +tp3013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3014 +tp3015 +bsa(dp3016 +g4 +g5 +(g6 +(I0 +tp3017 +g8 +tp3018 +Rp3019 +(I1 +(I7 +tp3020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3021 +tp3022 +bsa(dp3023 +g4 +g5 +(g6 +(I0 +tp3024 +g8 +tp3025 +Rp3026 +(I1 +(I7 +tp3027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3028 +tp3029 +bsa(dp3030 +g4 +g5 +(g6 +(I0 +tp3031 +g8 +tp3032 +Rp3033 +(I1 +(I7 +tp3034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3035 +tp3036 +bsa(dp3037 +g4 +g5 +(g6 +(I0 +tp3038 +g8 +tp3039 +Rp3040 +(I1 +(I7 +tp3041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3042 +tp3043 +bsa(dp3044 +g4 +g5 +(g6 +(I0 +tp3045 +g8 +tp3046 +Rp3047 +(I1 +(I7 +tp3048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3049 +tp3050 +bsa(dp3051 +g4 +g5 +(g6 +(I0 +tp3052 +g8 +tp3053 +Rp3054 +(I1 +(I7 +tp3055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3056 +tp3057 +bsa(dp3058 +g4 +g5 +(g6 +(I0 +tp3059 +g8 +tp3060 +Rp3061 +(I1 +(I7 +tp3062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3063 +tp3064 +bsa(dp3065 +g4 +g5 +(g6 +(I0 +tp3066 +g8 +tp3067 +Rp3068 +(I1 +(I7 +tp3069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3070 +tp3071 +bsa(dp3072 +g4 +g5 +(g6 +(I0 +tp3073 +g8 +tp3074 +Rp3075 +(I1 +(I7 +tp3076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3077 +tp3078 +bsa(dp3079 +g4 +g5 +(g6 +(I0 +tp3080 +g8 +tp3081 +Rp3082 +(I1 +(I7 +tp3083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3084 +tp3085 +bsa(dp3086 +g4 +g5 +(g6 +(I0 +tp3087 +g8 +tp3088 +Rp3089 +(I1 +(I7 +tp3090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3091 +tp3092 +bsa(dp3093 +g4 +g5 +(g6 +(I0 +tp3094 +g8 +tp3095 +Rp3096 +(I1 +(I7 +tp3097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3098 +tp3099 +bsa(dp3100 +g4 +g5 +(g6 +(I0 +tp3101 +g8 +tp3102 +Rp3103 +(I1 +(I7 +tp3104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3105 +tp3106 +bsa(dp3107 +g4 +g5 +(g6 +(I0 +tp3108 +g8 +tp3109 +Rp3110 +(I1 +(I7 +tp3111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3112 +tp3113 +bsa(dp3114 +g4 +g5 +(g6 +(I0 +tp3115 +g8 +tp3116 +Rp3117 +(I1 +(I7 +tp3118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3119 +tp3120 +bsa(dp3121 +g4 +g5 +(g6 +(I0 +tp3122 +g8 +tp3123 +Rp3124 +(I1 +(I7 +tp3125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3126 +tp3127 +bsa(dp3128 +g4 +g5 +(g6 +(I0 +tp3129 +g8 +tp3130 +Rp3131 +(I1 +(I7 +tp3132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3133 +tp3134 +bsa(dp3135 +g4 +g5 +(g6 +(I0 +tp3136 +g8 +tp3137 +Rp3138 +(I1 +(I7 +tp3139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3140 +tp3141 +bsa(dp3142 +g4 +g5 +(g6 +(I0 +tp3143 +g8 +tp3144 +Rp3145 +(I1 +(I7 +tp3146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3147 +tp3148 +bsa(dp3149 +g4 +g5 +(g6 +(I0 +tp3150 +g8 +tp3151 +Rp3152 +(I1 +(I7 +tp3153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3154 +tp3155 +bsa(dp3156 +g4 +g5 +(g6 +(I0 +tp3157 +g8 +tp3158 +Rp3159 +(I1 +(I7 +tp3160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3161 +tp3162 +bsa(dp3163 +g4 +g5 +(g6 +(I0 +tp3164 +g8 +tp3165 +Rp3166 +(I1 +(I7 +tp3167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3168 +tp3169 +bsa(dp3170 +g4 +g5 +(g6 +(I0 +tp3171 +g8 +tp3172 +Rp3173 +(I1 +(I7 +tp3174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3175 +tp3176 +bsa(dp3177 +g4 +g5 +(g6 +(I0 +tp3178 +g8 +tp3179 +Rp3180 +(I1 +(I7 +tp3181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3182 +tp3183 +bsa(dp3184 +g4 +g5 +(g6 +(I0 +tp3185 +g8 +tp3186 +Rp3187 +(I1 +(I7 +tp3188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3189 +tp3190 +bsa(dp3191 +g4 +g5 +(g6 +(I0 +tp3192 +g8 +tp3193 +Rp3194 +(I1 +(I7 +tp3195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3196 +tp3197 +bsa(dp3198 +g4 +g5 +(g6 +(I0 +tp3199 +g8 +tp3200 +Rp3201 +(I1 +(I7 +tp3202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3203 +tp3204 +bsa(dp3205 +g4 +g5 +(g6 +(I0 +tp3206 +g8 +tp3207 +Rp3208 +(I1 +(I7 +tp3209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3210 +tp3211 +bsa(dp3212 +g4 +g5 +(g6 +(I0 +tp3213 +g8 +tp3214 +Rp3215 +(I1 +(I7 +tp3216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3217 +tp3218 +bsa(dp3219 +g4 +g5 +(g6 +(I0 +tp3220 +g8 +tp3221 +Rp3222 +(I1 +(I7 +tp3223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3224 +tp3225 +bsa(dp3226 +g4 +g5 +(g6 +(I0 +tp3227 +g8 +tp3228 +Rp3229 +(I1 +(I7 +tp3230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3231 +tp3232 +bsa(dp3233 +g4 +g5 +(g6 +(I0 +tp3234 +g8 +tp3235 +Rp3236 +(I1 +(I7 +tp3237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3238 +tp3239 +bsa(dp3240 +g4 +g5 +(g6 +(I0 +tp3241 +g8 +tp3242 +Rp3243 +(I1 +(I7 +tp3244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3245 +tp3246 +bsa(dp3247 +g4 +g5 +(g6 +(I0 +tp3248 +g8 +tp3249 +Rp3250 +(I1 +(I7 +tp3251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3252 +tp3253 +bsa(dp3254 +g4 +g5 +(g6 +(I0 +tp3255 +g8 +tp3256 +Rp3257 +(I1 +(I7 +tp3258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3259 +tp3260 +bsa(dp3261 +g4 +g5 +(g6 +(I0 +tp3262 +g8 +tp3263 +Rp3264 +(I1 +(I7 +tp3265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3266 +tp3267 +bsa(dp3268 +g4 +g5 +(g6 +(I0 +tp3269 +g8 +tp3270 +Rp3271 +(I1 +(I7 +tp3272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3273 +tp3274 +bsa(dp3275 +g4 +g5 +(g6 +(I0 +tp3276 +g8 +tp3277 +Rp3278 +(I1 +(I7 +tp3279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3280 +tp3281 +bsa(dp3282 +g4 +g5 +(g6 +(I0 +tp3283 +g8 +tp3284 +Rp3285 +(I1 +(I7 +tp3286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3287 +tp3288 +bsa(dp3289 +g4 +g5 +(g6 +(I0 +tp3290 +g8 +tp3291 +Rp3292 +(I1 +(I7 +tp3293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3294 +tp3295 +bsa(dp3296 +g4 +g5 +(g6 +(I0 +tp3297 +g8 +tp3298 +Rp3299 +(I1 +(I7 +tp3300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3301 +tp3302 +bsa(dp3303 +g4 +g5 +(g6 +(I0 +tp3304 +g8 +tp3305 +Rp3306 +(I1 +(I7 +tp3307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3308 +tp3309 +bsa(dp3310 +g4 +g5 +(g6 +(I0 +tp3311 +g8 +tp3312 +Rp3313 +(I1 +(I7 +tp3314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3315 +tp3316 +bsa(dp3317 +g4 +g5 +(g6 +(I0 +tp3318 +g8 +tp3319 +Rp3320 +(I1 +(I7 +tp3321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3322 +tp3323 +bsa(dp3324 +g4 +g5 +(g6 +(I0 +tp3325 +g8 +tp3326 +Rp3327 +(I1 +(I7 +tp3328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3329 +tp3330 +bsa(dp3331 +g4 +g5 +(g6 +(I0 +tp3332 +g8 +tp3333 +Rp3334 +(I1 +(I7 +tp3335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3336 +tp3337 +bsa(dp3338 +g4 +g5 +(g6 +(I0 +tp3339 +g8 +tp3340 +Rp3341 +(I1 +(I7 +tp3342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3343 +tp3344 +bsa(dp3345 +g4 +g5 +(g6 +(I0 +tp3346 +g8 +tp3347 +Rp3348 +(I1 +(I7 +tp3349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3350 +tp3351 +bsa(dp3352 +g4 +g5 +(g6 +(I0 +tp3353 +g8 +tp3354 +Rp3355 +(I1 +(I7 +tp3356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3357 +tp3358 +bsa(dp3359 +g4 +g5 +(g6 +(I0 +tp3360 +g8 +tp3361 +Rp3362 +(I1 +(I7 +tp3363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3364 +tp3365 +bsa(dp3366 +g4 +g5 +(g6 +(I0 +tp3367 +g8 +tp3368 +Rp3369 +(I1 +(I7 +tp3370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3371 +tp3372 +bsa(dp3373 +g4 +g5 +(g6 +(I0 +tp3374 +g8 +tp3375 +Rp3376 +(I1 +(I7 +tp3377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3378 +tp3379 +bsa(dp3380 +g4 +g5 +(g6 +(I0 +tp3381 +g8 +tp3382 +Rp3383 +(I1 +(I7 +tp3384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3385 +tp3386 +bsa(dp3387 +g4 +g5 +(g6 +(I0 +tp3388 +g8 +tp3389 +Rp3390 +(I1 +(I7 +tp3391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3392 +tp3393 +bsa(dp3394 +g4 +g5 +(g6 +(I0 +tp3395 +g8 +tp3396 +Rp3397 +(I1 +(I7 +tp3398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3399 +tp3400 +bsa(dp3401 +g4 +g5 +(g6 +(I0 +tp3402 +g8 +tp3403 +Rp3404 +(I1 +(I7 +tp3405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3406 +tp3407 +bsa(dp3408 +g4 +g5 +(g6 +(I0 +tp3409 +g8 +tp3410 +Rp3411 +(I1 +(I7 +tp3412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3413 +tp3414 +bsa(dp3415 +g4 +g5 +(g6 +(I0 +tp3416 +g8 +tp3417 +Rp3418 +(I1 +(I7 +tp3419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3420 +tp3421 +bsa(dp3422 +g4 +g5 +(g6 +(I0 +tp3423 +g8 +tp3424 +Rp3425 +(I1 +(I7 +tp3426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3427 +tp3428 +bsa(dp3429 +g4 +g5 +(g6 +(I0 +tp3430 +g8 +tp3431 +Rp3432 +(I1 +(I7 +tp3433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3434 +tp3435 +bsa(dp3436 +g4 +g5 +(g6 +(I0 +tp3437 +g8 +tp3438 +Rp3439 +(I1 +(I7 +tp3440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3441 +tp3442 +bsa(dp3443 +g4 +g5 +(g6 +(I0 +tp3444 +g8 +tp3445 +Rp3446 +(I1 +(I7 +tp3447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3448 +tp3449 +bsa(dp3450 +g4 +g5 +(g6 +(I0 +tp3451 +g8 +tp3452 +Rp3453 +(I1 +(I7 +tp3454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3455 +tp3456 +bsa(dp3457 +g4 +g5 +(g6 +(I0 +tp3458 +g8 +tp3459 +Rp3460 +(I1 +(I7 +tp3461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3462 +tp3463 +bsa(dp3464 +g4 +g5 +(g6 +(I0 +tp3465 +g8 +tp3466 +Rp3467 +(I1 +(I7 +tp3468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3469 +tp3470 +bsa(dp3471 +g4 +g5 +(g6 +(I0 +tp3472 +g8 +tp3473 +Rp3474 +(I1 +(I7 +tp3475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3476 +tp3477 +bsa(dp3478 +g4 +g5 +(g6 +(I0 +tp3479 +g8 +tp3480 +Rp3481 +(I1 +(I7 +tp3482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3483 +tp3484 +bsa(dp3485 +g4 +g5 +(g6 +(I0 +tp3486 +g8 +tp3487 +Rp3488 +(I1 +(I7 +tp3489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3490 +tp3491 +bsa(dp3492 +g4 +g5 +(g6 +(I0 +tp3493 +g8 +tp3494 +Rp3495 +(I1 +(I7 +tp3496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3497 +tp3498 +bsa(dp3499 +g4 +g5 +(g6 +(I0 +tp3500 +g8 +tp3501 +Rp3502 +(I1 +(I7 +tp3503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3504 +tp3505 +bsa(dp3506 +g4 +g5 +(g6 +(I0 +tp3507 +g8 +tp3508 +Rp3509 +(I1 +(I7 +tp3510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3511 +tp3512 +bsa(dp3513 +g4 +g5 +(g6 +(I0 +tp3514 +g8 +tp3515 +Rp3516 +(I1 +(I7 +tp3517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3518 +tp3519 +bsa(dp3520 +g4 +g5 +(g6 +(I0 +tp3521 +g8 +tp3522 +Rp3523 +(I1 +(I7 +tp3524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3525 +tp3526 +bsa(dp3527 +g4 +g5 +(g6 +(I0 +tp3528 +g8 +tp3529 +Rp3530 +(I1 +(I7 +tp3531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3532 +tp3533 +bsa(dp3534 +g4 +g5 +(g6 +(I0 +tp3535 +g8 +tp3536 +Rp3537 +(I1 +(I7 +tp3538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3539 +tp3540 +bsa(dp3541 +g4 +g5 +(g6 +(I0 +tp3542 +g8 +tp3543 +Rp3544 +(I1 +(I7 +tp3545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3546 +tp3547 +bsa(dp3548 +g4 +g5 +(g6 +(I0 +tp3549 +g8 +tp3550 +Rp3551 +(I1 +(I7 +tp3552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3553 +tp3554 +bsa(dp3555 +g4 +g5 +(g6 +(I0 +tp3556 +g8 +tp3557 +Rp3558 +(I1 +(I7 +tp3559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3560 +tp3561 +bsa(dp3562 +g4 +g5 +(g6 +(I0 +tp3563 +g8 +tp3564 +Rp3565 +(I1 +(I7 +tp3566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3567 +tp3568 +bsa(dp3569 +g4 +g5 +(g6 +(I0 +tp3570 +g8 +tp3571 +Rp3572 +(I1 +(I7 +tp3573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3574 +tp3575 +bsa(dp3576 +g4 +g5 +(g6 +(I0 +tp3577 +g8 +tp3578 +Rp3579 +(I1 +(I7 +tp3580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3581 +tp3582 +bsa(dp3583 +g4 +g5 +(g6 +(I0 +tp3584 +g8 +tp3585 +Rp3586 +(I1 +(I7 +tp3587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3588 +tp3589 +bsa(dp3590 +g4 +g5 +(g6 +(I0 +tp3591 +g8 +tp3592 +Rp3593 +(I1 +(I7 +tp3594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3595 +tp3596 +bsa(dp3597 +g4 +g5 +(g6 +(I0 +tp3598 +g8 +tp3599 +Rp3600 +(I1 +(I7 +tp3601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3602 +tp3603 +bsa(dp3604 +g4 +g5 +(g6 +(I0 +tp3605 +g8 +tp3606 +Rp3607 +(I1 +(I7 +tp3608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3609 +tp3610 +bsa(dp3611 +g4 +g5 +(g6 +(I0 +tp3612 +g8 +tp3613 +Rp3614 +(I1 +(I7 +tp3615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3616 +tp3617 +bsa(dp3618 +g4 +g5 +(g6 +(I0 +tp3619 +g8 +tp3620 +Rp3621 +(I1 +(I7 +tp3622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3623 +tp3624 +bsa(dp3625 +g4 +g5 +(g6 +(I0 +tp3626 +g8 +tp3627 +Rp3628 +(I1 +(I7 +tp3629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3630 +tp3631 +bsa(dp3632 +g4 +g5 +(g6 +(I0 +tp3633 +g8 +tp3634 +Rp3635 +(I1 +(I7 +tp3636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3637 +tp3638 +bsa(dp3639 +g4 +g5 +(g6 +(I0 +tp3640 +g8 +tp3641 +Rp3642 +(I1 +(I7 +tp3643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3644 +tp3645 +bsa(dp3646 +g4 +g5 +(g6 +(I0 +tp3647 +g8 +tp3648 +Rp3649 +(I1 +(I7 +tp3650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3651 +tp3652 +bsa(dp3653 +g4 +g5 +(g6 +(I0 +tp3654 +g8 +tp3655 +Rp3656 +(I1 +(I7 +tp3657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3658 +tp3659 +bsa(dp3660 +g4 +g5 +(g6 +(I0 +tp3661 +g8 +tp3662 +Rp3663 +(I1 +(I7 +tp3664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3665 +tp3666 +bsa(dp3667 +g4 +g5 +(g6 +(I0 +tp3668 +g8 +tp3669 +Rp3670 +(I1 +(I7 +tp3671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3672 +tp3673 +bsa(dp3674 +g4 +g5 +(g6 +(I0 +tp3675 +g8 +tp3676 +Rp3677 +(I1 +(I7 +tp3678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3679 +tp3680 +bsa(dp3681 +g4 +g5 +(g6 +(I0 +tp3682 +g8 +tp3683 +Rp3684 +(I1 +(I7 +tp3685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3686 +tp3687 +bsa(dp3688 +g4 +g5 +(g6 +(I0 +tp3689 +g8 +tp3690 +Rp3691 +(I1 +(I7 +tp3692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3693 +tp3694 +bsa(dp3695 +g4 +g5 +(g6 +(I0 +tp3696 +g8 +tp3697 +Rp3698 +(I1 +(I7 +tp3699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3700 +tp3701 +bsa(dp3702 +g4 +g5 +(g6 +(I0 +tp3703 +g8 +tp3704 +Rp3705 +(I1 +(I7 +tp3706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3707 +tp3708 +bsa(dp3709 +g4 +g5 +(g6 +(I0 +tp3710 +g8 +tp3711 +Rp3712 +(I1 +(I7 +tp3713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3714 +tp3715 +bsa(dp3716 +g4 +g5 +(g6 +(I0 +tp3717 +g8 +tp3718 +Rp3719 +(I1 +(I7 +tp3720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3721 +tp3722 +bsa(dp3723 +g4 +g5 +(g6 +(I0 +tp3724 +g8 +tp3725 +Rp3726 +(I1 +(I7 +tp3727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3728 +tp3729 +bsa(dp3730 +g4 +g5 +(g6 +(I0 +tp3731 +g8 +tp3732 +Rp3733 +(I1 +(I7 +tp3734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3735 +tp3736 +bsa(dp3737 +g4 +g5 +(g6 +(I0 +tp3738 +g8 +tp3739 +Rp3740 +(I1 +(I7 +tp3741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3742 +tp3743 +bsa(dp3744 +g4 +g5 +(g6 +(I0 +tp3745 +g8 +tp3746 +Rp3747 +(I1 +(I7 +tp3748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3749 +tp3750 +bsa(dp3751 +g4 +g5 +(g6 +(I0 +tp3752 +g8 +tp3753 +Rp3754 +(I1 +(I7 +tp3755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3756 +tp3757 +bsa(dp3758 +g4 +g5 +(g6 +(I0 +tp3759 +g8 +tp3760 +Rp3761 +(I1 +(I7 +tp3762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3763 +tp3764 +bsa(dp3765 +g4 +g5 +(g6 +(I0 +tp3766 +g8 +tp3767 +Rp3768 +(I1 +(I7 +tp3769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3770 +tp3771 +bsa(dp3772 +g4 +g5 +(g6 +(I0 +tp3773 +g8 +tp3774 +Rp3775 +(I1 +(I7 +tp3776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3777 +tp3778 +bsa(dp3779 +g4 +g5 +(g6 +(I0 +tp3780 +g8 +tp3781 +Rp3782 +(I1 +(I7 +tp3783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3784 +tp3785 +bsa(dp3786 +g4 +g5 +(g6 +(I0 +tp3787 +g8 +tp3788 +Rp3789 +(I1 +(I7 +tp3790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3791 +tp3792 +bsa(dp3793 +g4 +g5 +(g6 +(I0 +tp3794 +g8 +tp3795 +Rp3796 +(I1 +(I7 +tp3797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3798 +tp3799 +bsa(dp3800 +g4 +g5 +(g6 +(I0 +tp3801 +g8 +tp3802 +Rp3803 +(I1 +(I7 +tp3804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3805 +tp3806 +bsa(dp3807 +g4 +g5 +(g6 +(I0 +tp3808 +g8 +tp3809 +Rp3810 +(I1 +(I7 +tp3811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3812 +tp3813 +bsa(dp3814 +g4 +g5 +(g6 +(I0 +tp3815 +g8 +tp3816 +Rp3817 +(I1 +(I7 +tp3818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3819 +tp3820 +bsa(dp3821 +g4 +g5 +(g6 +(I0 +tp3822 +g8 +tp3823 +Rp3824 +(I1 +(I7 +tp3825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3826 +tp3827 +bsa(dp3828 +g4 +g5 +(g6 +(I0 +tp3829 +g8 +tp3830 +Rp3831 +(I1 +(I7 +tp3832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3833 +tp3834 +bsa(dp3835 +g4 +g5 +(g6 +(I0 +tp3836 +g8 +tp3837 +Rp3838 +(I1 +(I7 +tp3839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3840 +tp3841 +bsa(dp3842 +g4 +g5 +(g6 +(I0 +tp3843 +g8 +tp3844 +Rp3845 +(I1 +(I7 +tp3846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3847 +tp3848 +bsa(dp3849 +g4 +g5 +(g6 +(I0 +tp3850 +g8 +tp3851 +Rp3852 +(I1 +(I7 +tp3853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3854 +tp3855 +bsa(dp3856 +g4 +g5 +(g6 +(I0 +tp3857 +g8 +tp3858 +Rp3859 +(I1 +(I7 +tp3860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3861 +tp3862 +bsa(dp3863 +g4 +g5 +(g6 +(I0 +tp3864 +g8 +tp3865 +Rp3866 +(I1 +(I7 +tp3867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3868 +tp3869 +bsa(dp3870 +g4 +g5 +(g6 +(I0 +tp3871 +g8 +tp3872 +Rp3873 +(I1 +(I7 +tp3874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3875 +tp3876 +bsa(dp3877 +g4 +g5 +(g6 +(I0 +tp3878 +g8 +tp3879 +Rp3880 +(I1 +(I7 +tp3881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3882 +tp3883 +bsa(dp3884 +g4 +g5 +(g6 +(I0 +tp3885 +g8 +tp3886 +Rp3887 +(I1 +(I7 +tp3888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3889 +tp3890 +bsa(dp3891 +g4 +g5 +(g6 +(I0 +tp3892 +g8 +tp3893 +Rp3894 +(I1 +(I7 +tp3895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3896 +tp3897 +bsa(dp3898 +g4 +g5 +(g6 +(I0 +tp3899 +g8 +tp3900 +Rp3901 +(I1 +(I7 +tp3902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3903 +tp3904 +bsa(dp3905 +g4 +g5 +(g6 +(I0 +tp3906 +g8 +tp3907 +Rp3908 +(I1 +(I7 +tp3909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3910 +tp3911 +bsa(dp3912 +g4 +g5 +(g6 +(I0 +tp3913 +g8 +tp3914 +Rp3915 +(I1 +(I7 +tp3916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3917 +tp3918 +bsa(dp3919 +g4 +g5 +(g6 +(I0 +tp3920 +g8 +tp3921 +Rp3922 +(I1 +(I7 +tp3923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3924 +tp3925 +bsa(dp3926 +g4 +g5 +(g6 +(I0 +tp3927 +g8 +tp3928 +Rp3929 +(I1 +(I7 +tp3930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3931 +tp3932 +bsa(dp3933 +g4 +g5 +(g6 +(I0 +tp3934 +g8 +tp3935 +Rp3936 +(I1 +(I7 +tp3937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p3938 +tp3939 +bsa(dp3940 +g4 +g5 +(g6 +(I0 +tp3941 +g8 +tp3942 +Rp3943 +(I1 +(I7 +tp3944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p3945 +tp3946 +bsa(dp3947 +g4 +g5 +(g6 +(I0 +tp3948 +g8 +tp3949 +Rp3950 +(I1 +(I7 +tp3951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3952 +tp3953 +bsa(dp3954 +g4 +g5 +(g6 +(I0 +tp3955 +g8 +tp3956 +Rp3957 +(I1 +(I7 +tp3958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3959 +tp3960 +bsa(dp3961 +g4 +g5 +(g6 +(I0 +tp3962 +g8 +tp3963 +Rp3964 +(I1 +(I7 +tp3965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3966 +tp3967 +bsa(dp3968 +g4 +g5 +(g6 +(I0 +tp3969 +g8 +tp3970 +Rp3971 +(I1 +(I7 +tp3972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3973 +tp3974 +bsa(dp3975 +g4 +g5 +(g6 +(I0 +tp3976 +g8 +tp3977 +Rp3978 +(I1 +(I7 +tp3979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3980 +tp3981 +bsa(dp3982 +g4 +g5 +(g6 +(I0 +tp3983 +g8 +tp3984 +Rp3985 +(I1 +(I7 +tp3986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3987 +tp3988 +bsa(dp3989 +g4 +g5 +(g6 +(I0 +tp3990 +g8 +tp3991 +Rp3992 +(I1 +(I7 +tp3993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p3994 +tp3995 +bsa(dp3996 +g4 +g5 +(g6 +(I0 +tp3997 +g8 +tp3998 +Rp3999 +(I1 +(I7 +tp4000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4001 +tp4002 +bsa(dp4003 +g4 +g5 +(g6 +(I0 +tp4004 +g8 +tp4005 +Rp4006 +(I1 +(I7 +tp4007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4008 +tp4009 +bsa(dp4010 +g4 +g5 +(g6 +(I0 +tp4011 +g8 +tp4012 +Rp4013 +(I1 +(I7 +tp4014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4015 +tp4016 +bsa(dp4017 +g4 +g5 +(g6 +(I0 +tp4018 +g8 +tp4019 +Rp4020 +(I1 +(I7 +tp4021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4022 +tp4023 +bsa(dp4024 +g4 +g5 +(g6 +(I0 +tp4025 +g8 +tp4026 +Rp4027 +(I1 +(I7 +tp4028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4029 +tp4030 +bsa(dp4031 +g4 +g5 +(g6 +(I0 +tp4032 +g8 +tp4033 +Rp4034 +(I1 +(I7 +tp4035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4036 +tp4037 +bsa(dp4038 +g4 +g5 +(g6 +(I0 +tp4039 +g8 +tp4040 +Rp4041 +(I1 +(I7 +tp4042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4043 +tp4044 +bsa(dp4045 +g4 +g5 +(g6 +(I0 +tp4046 +g8 +tp4047 +Rp4048 +(I1 +(I7 +tp4049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4050 +tp4051 +bsa(dp4052 +g4 +g5 +(g6 +(I0 +tp4053 +g8 +tp4054 +Rp4055 +(I1 +(I7 +tp4056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4057 +tp4058 +bsa(dp4059 +g4 +g5 +(g6 +(I0 +tp4060 +g8 +tp4061 +Rp4062 +(I1 +(I7 +tp4063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4064 +tp4065 +bsa(dp4066 +g4 +g5 +(g6 +(I0 +tp4067 +g8 +tp4068 +Rp4069 +(I1 +(I7 +tp4070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4071 +tp4072 +bsa(dp4073 +g4 +g5 +(g6 +(I0 +tp4074 +g8 +tp4075 +Rp4076 +(I1 +(I7 +tp4077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4078 +tp4079 +bsa(dp4080 +g4 +g5 +(g6 +(I0 +tp4081 +g8 +tp4082 +Rp4083 +(I1 +(I7 +tp4084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4085 +tp4086 +bsa(dp4087 +g4 +g5 +(g6 +(I0 +tp4088 +g8 +tp4089 +Rp4090 +(I1 +(I7 +tp4091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4092 +tp4093 +bsa(dp4094 +g4 +g5 +(g6 +(I0 +tp4095 +g8 +tp4096 +Rp4097 +(I1 +(I7 +tp4098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4099 +tp4100 +bsa(dp4101 +g4 +g5 +(g6 +(I0 +tp4102 +g8 +tp4103 +Rp4104 +(I1 +(I7 +tp4105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4106 +tp4107 +bsa(dp4108 +g4 +g5 +(g6 +(I0 +tp4109 +g8 +tp4110 +Rp4111 +(I1 +(I7 +tp4112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4113 +tp4114 +bsa(dp4115 +g4 +g5 +(g6 +(I0 +tp4116 +g8 +tp4117 +Rp4118 +(I1 +(I7 +tp4119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4120 +tp4121 +bsa(dp4122 +g4 +g5 +(g6 +(I0 +tp4123 +g8 +tp4124 +Rp4125 +(I1 +(I7 +tp4126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4127 +tp4128 +bsa(dp4129 +g4 +g5 +(g6 +(I0 +tp4130 +g8 +tp4131 +Rp4132 +(I1 +(I7 +tp4133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4134 +tp4135 +bsa(dp4136 +g4 +g5 +(g6 +(I0 +tp4137 +g8 +tp4138 +Rp4139 +(I1 +(I7 +tp4140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4141 +tp4142 +bsa(dp4143 +g4 +g5 +(g6 +(I0 +tp4144 +g8 +tp4145 +Rp4146 +(I1 +(I7 +tp4147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4148 +tp4149 +bsa(dp4150 +g4 +g5 +(g6 +(I0 +tp4151 +g8 +tp4152 +Rp4153 +(I1 +(I7 +tp4154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4155 +tp4156 +bsa(dp4157 +g4 +g5 +(g6 +(I0 +tp4158 +g8 +tp4159 +Rp4160 +(I1 +(I7 +tp4161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4162 +tp4163 +bsa(dp4164 +g4 +g5 +(g6 +(I0 +tp4165 +g8 +tp4166 +Rp4167 +(I1 +(I7 +tp4168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4169 +tp4170 +bsa(dp4171 +g4 +g5 +(g6 +(I0 +tp4172 +g8 +tp4173 +Rp4174 +(I1 +(I7 +tp4175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4176 +tp4177 +bsa(dp4178 +g4 +g5 +(g6 +(I0 +tp4179 +g8 +tp4180 +Rp4181 +(I1 +(I7 +tp4182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4183 +tp4184 +bsa(dp4185 +g4 +g5 +(g6 +(I0 +tp4186 +g8 +tp4187 +Rp4188 +(I1 +(I7 +tp4189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4190 +tp4191 +bsa(dp4192 +g4 +g5 +(g6 +(I0 +tp4193 +g8 +tp4194 +Rp4195 +(I1 +(I7 +tp4196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4197 +tp4198 +bsa(dp4199 +g4 +g5 +(g6 +(I0 +tp4200 +g8 +tp4201 +Rp4202 +(I1 +(I7 +tp4203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4204 +tp4205 +bsa(dp4206 +g4 +g5 +(g6 +(I0 +tp4207 +g8 +tp4208 +Rp4209 +(I1 +(I7 +tp4210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4211 +tp4212 +bsa(dp4213 +g4 +g5 +(g6 +(I0 +tp4214 +g8 +tp4215 +Rp4216 +(I1 +(I7 +tp4217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4218 +tp4219 +bsa(dp4220 +g4 +g5 +(g6 +(I0 +tp4221 +g8 +tp4222 +Rp4223 +(I1 +(I7 +tp4224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4225 +tp4226 +bsa(dp4227 +g4 +g5 +(g6 +(I0 +tp4228 +g8 +tp4229 +Rp4230 +(I1 +(I7 +tp4231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4232 +tp4233 +bsa(dp4234 +g4 +g5 +(g6 +(I0 +tp4235 +g8 +tp4236 +Rp4237 +(I1 +(I7 +tp4238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4239 +tp4240 +bsa(dp4241 +g4 +g5 +(g6 +(I0 +tp4242 +g8 +tp4243 +Rp4244 +(I1 +(I7 +tp4245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4246 +tp4247 +bsa(dp4248 +g4 +g5 +(g6 +(I0 +tp4249 +g8 +tp4250 +Rp4251 +(I1 +(I7 +tp4252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4253 +tp4254 +bsa(dp4255 +g4 +g5 +(g6 +(I0 +tp4256 +g8 +tp4257 +Rp4258 +(I1 +(I7 +tp4259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4260 +tp4261 +bsa(dp4262 +g4 +g5 +(g6 +(I0 +tp4263 +g8 +tp4264 +Rp4265 +(I1 +(I7 +tp4266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4267 +tp4268 +bsa(dp4269 +g4 +g5 +(g6 +(I0 +tp4270 +g8 +tp4271 +Rp4272 +(I1 +(I7 +tp4273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4274 +tp4275 +bsa(dp4276 +g4 +g5 +(g6 +(I0 +tp4277 +g8 +tp4278 +Rp4279 +(I1 +(I7 +tp4280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4281 +tp4282 +bsa(dp4283 +g4 +g5 +(g6 +(I0 +tp4284 +g8 +tp4285 +Rp4286 +(I1 +(I7 +tp4287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4288 +tp4289 +bsa(dp4290 +g4 +g5 +(g6 +(I0 +tp4291 +g8 +tp4292 +Rp4293 +(I1 +(I7 +tp4294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4295 +tp4296 +bsa(dp4297 +g4 +g5 +(g6 +(I0 +tp4298 +g8 +tp4299 +Rp4300 +(I1 +(I7 +tp4301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4302 +tp4303 +bsa(dp4304 +g4 +g5 +(g6 +(I0 +tp4305 +g8 +tp4306 +Rp4307 +(I1 +(I7 +tp4308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4309 +tp4310 +bsa(dp4311 +g4 +g5 +(g6 +(I0 +tp4312 +g8 +tp4313 +Rp4314 +(I1 +(I7 +tp4315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4316 +tp4317 +bsa(dp4318 +g4 +g5 +(g6 +(I0 +tp4319 +g8 +tp4320 +Rp4321 +(I1 +(I7 +tp4322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4323 +tp4324 +bsa(dp4325 +g4 +g5 +(g6 +(I0 +tp4326 +g8 +tp4327 +Rp4328 +(I1 +(I7 +tp4329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4330 +tp4331 +bsa(dp4332 +g4 +g5 +(g6 +(I0 +tp4333 +g8 +tp4334 +Rp4335 +(I1 +(I7 +tp4336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4337 +tp4338 +bsa(dp4339 +g4 +g5 +(g6 +(I0 +tp4340 +g8 +tp4341 +Rp4342 +(I1 +(I7 +tp4343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4344 +tp4345 +bsa(dp4346 +g4 +g5 +(g6 +(I0 +tp4347 +g8 +tp4348 +Rp4349 +(I1 +(I7 +tp4350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4351 +tp4352 +bsa(dp4353 +g4 +g5 +(g6 +(I0 +tp4354 +g8 +tp4355 +Rp4356 +(I1 +(I7 +tp4357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4358 +tp4359 +bsa(dp4360 +g4 +g5 +(g6 +(I0 +tp4361 +g8 +tp4362 +Rp4363 +(I1 +(I7 +tp4364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4365 +tp4366 +bsa(dp4367 +g4 +g5 +(g6 +(I0 +tp4368 +g8 +tp4369 +Rp4370 +(I1 +(I7 +tp4371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4372 +tp4373 +bsa(dp4374 +g4 +g5 +(g6 +(I0 +tp4375 +g8 +tp4376 +Rp4377 +(I1 +(I7 +tp4378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4379 +tp4380 +bsa(dp4381 +g4 +g5 +(g6 +(I0 +tp4382 +g8 +tp4383 +Rp4384 +(I1 +(I7 +tp4385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4386 +tp4387 +bsa(dp4388 +g4 +g5 +(g6 +(I0 +tp4389 +g8 +tp4390 +Rp4391 +(I1 +(I7 +tp4392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4393 +tp4394 +bsa(dp4395 +g4 +g5 +(g6 +(I0 +tp4396 +g8 +tp4397 +Rp4398 +(I1 +(I7 +tp4399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4400 +tp4401 +bsa(dp4402 +g4 +g5 +(g6 +(I0 +tp4403 +g8 +tp4404 +Rp4405 +(I1 +(I7 +tp4406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4407 +tp4408 +bsa(dp4409 +g4 +g5 +(g6 +(I0 +tp4410 +g8 +tp4411 +Rp4412 +(I1 +(I7 +tp4413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4414 +tp4415 +bsa(dp4416 +g4 +g5 +(g6 +(I0 +tp4417 +g8 +tp4418 +Rp4419 +(I1 +(I7 +tp4420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4421 +tp4422 +bsa(dp4423 +g4 +g5 +(g6 +(I0 +tp4424 +g8 +tp4425 +Rp4426 +(I1 +(I7 +tp4427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4428 +tp4429 +bsa(dp4430 +g4 +g5 +(g6 +(I0 +tp4431 +g8 +tp4432 +Rp4433 +(I1 +(I7 +tp4434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4435 +tp4436 +bsa(dp4437 +g4 +g5 +(g6 +(I0 +tp4438 +g8 +tp4439 +Rp4440 +(I1 +(I7 +tp4441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4442 +tp4443 +bsa(dp4444 +g4 +g5 +(g6 +(I0 +tp4445 +g8 +tp4446 +Rp4447 +(I1 +(I7 +tp4448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4449 +tp4450 +bsa(dp4451 +g4 +g5 +(g6 +(I0 +tp4452 +g8 +tp4453 +Rp4454 +(I1 +(I7 +tp4455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4456 +tp4457 +bsa(dp4458 +g4 +g5 +(g6 +(I0 +tp4459 +g8 +tp4460 +Rp4461 +(I1 +(I7 +tp4462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4463 +tp4464 +bsa(dp4465 +g4 +g5 +(g6 +(I0 +tp4466 +g8 +tp4467 +Rp4468 +(I1 +(I7 +tp4469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4470 +tp4471 +bsa(dp4472 +g4 +g5 +(g6 +(I0 +tp4473 +g8 +tp4474 +Rp4475 +(I1 +(I7 +tp4476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4477 +tp4478 +bsa(dp4479 +g4 +g5 +(g6 +(I0 +tp4480 +g8 +tp4481 +Rp4482 +(I1 +(I7 +tp4483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4484 +tp4485 +bsa(dp4486 +g4 +g5 +(g6 +(I0 +tp4487 +g8 +tp4488 +Rp4489 +(I1 +(I7 +tp4490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4491 +tp4492 +bsa(dp4493 +g4 +g5 +(g6 +(I0 +tp4494 +g8 +tp4495 +Rp4496 +(I1 +(I7 +tp4497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4498 +tp4499 +bsa(dp4500 +g4 +g5 +(g6 +(I0 +tp4501 +g8 +tp4502 +Rp4503 +(I1 +(I7 +tp4504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4505 +tp4506 +bsa(dp4507 +g4 +g5 +(g6 +(I0 +tp4508 +g8 +tp4509 +Rp4510 +(I1 +(I7 +tp4511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4512 +tp4513 +bsa(dp4514 +g4 +g5 +(g6 +(I0 +tp4515 +g8 +tp4516 +Rp4517 +(I1 +(I7 +tp4518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4519 +tp4520 +bsa(dp4521 +g4 +g5 +(g6 +(I0 +tp4522 +g8 +tp4523 +Rp4524 +(I1 +(I7 +tp4525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4526 +tp4527 +bsa(dp4528 +g4 +g5 +(g6 +(I0 +tp4529 +g8 +tp4530 +Rp4531 +(I1 +(I7 +tp4532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4533 +tp4534 +bsa(dp4535 +g4 +g5 +(g6 +(I0 +tp4536 +g8 +tp4537 +Rp4538 +(I1 +(I7 +tp4539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4540 +tp4541 +bsa(dp4542 +g4 +g5 +(g6 +(I0 +tp4543 +g8 +tp4544 +Rp4545 +(I1 +(I7 +tp4546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4547 +tp4548 +bsa(dp4549 +g4 +g5 +(g6 +(I0 +tp4550 +g8 +tp4551 +Rp4552 +(I1 +(I7 +tp4553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4554 +tp4555 +bsa(dp4556 +g4 +g5 +(g6 +(I0 +tp4557 +g8 +tp4558 +Rp4559 +(I1 +(I7 +tp4560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4561 +tp4562 +bsa(dp4563 +g4 +g5 +(g6 +(I0 +tp4564 +g8 +tp4565 +Rp4566 +(I1 +(I7 +tp4567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4568 +tp4569 +bsa(dp4570 +g4 +g5 +(g6 +(I0 +tp4571 +g8 +tp4572 +Rp4573 +(I1 +(I7 +tp4574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4575 +tp4576 +bsa(dp4577 +g4 +g5 +(g6 +(I0 +tp4578 +g8 +tp4579 +Rp4580 +(I1 +(I7 +tp4581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4582 +tp4583 +bsa(dp4584 +g4 +g5 +(g6 +(I0 +tp4585 +g8 +tp4586 +Rp4587 +(I1 +(I7 +tp4588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4589 +tp4590 +bsa(dp4591 +g4 +g5 +(g6 +(I0 +tp4592 +g8 +tp4593 +Rp4594 +(I1 +(I7 +tp4595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4596 +tp4597 +bsa(dp4598 +g4 +g5 +(g6 +(I0 +tp4599 +g8 +tp4600 +Rp4601 +(I1 +(I7 +tp4602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4603 +tp4604 +bsa(dp4605 +g4 +g5 +(g6 +(I0 +tp4606 +g8 +tp4607 +Rp4608 +(I1 +(I7 +tp4609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4610 +tp4611 +bsa(dp4612 +g4 +g5 +(g6 +(I0 +tp4613 +g8 +tp4614 +Rp4615 +(I1 +(I7 +tp4616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4617 +tp4618 +bsa(dp4619 +g4 +g5 +(g6 +(I0 +tp4620 +g8 +tp4621 +Rp4622 +(I1 +(I7 +tp4623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4624 +tp4625 +bsa(dp4626 +g4 +g5 +(g6 +(I0 +tp4627 +g8 +tp4628 +Rp4629 +(I1 +(I7 +tp4630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4631 +tp4632 +bsa(dp4633 +g4 +g5 +(g6 +(I0 +tp4634 +g8 +tp4635 +Rp4636 +(I1 +(I7 +tp4637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4638 +tp4639 +bsa(dp4640 +g4 +g5 +(g6 +(I0 +tp4641 +g8 +tp4642 +Rp4643 +(I1 +(I7 +tp4644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4645 +tp4646 +bsa(dp4647 +g4 +g5 +(g6 +(I0 +tp4648 +g8 +tp4649 +Rp4650 +(I1 +(I7 +tp4651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4652 +tp4653 +bsa(dp4654 +g4 +g5 +(g6 +(I0 +tp4655 +g8 +tp4656 +Rp4657 +(I1 +(I7 +tp4658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4659 +tp4660 +bsa(dp4661 +g4 +g5 +(g6 +(I0 +tp4662 +g8 +tp4663 +Rp4664 +(I1 +(I7 +tp4665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4666 +tp4667 +bsa(dp4668 +g4 +g5 +(g6 +(I0 +tp4669 +g8 +tp4670 +Rp4671 +(I1 +(I7 +tp4672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4673 +tp4674 +bsa(dp4675 +g4 +g5 +(g6 +(I0 +tp4676 +g8 +tp4677 +Rp4678 +(I1 +(I7 +tp4679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4680 +tp4681 +bsa(dp4682 +g4 +g5 +(g6 +(I0 +tp4683 +g8 +tp4684 +Rp4685 +(I1 +(I7 +tp4686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4687 +tp4688 +bsa(dp4689 +g4 +g5 +(g6 +(I0 +tp4690 +g8 +tp4691 +Rp4692 +(I1 +(I7 +tp4693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4694 +tp4695 +bsa(dp4696 +g4 +g5 +(g6 +(I0 +tp4697 +g8 +tp4698 +Rp4699 +(I1 +(I7 +tp4700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4701 +tp4702 +bsa(dp4703 +g4 +g5 +(g6 +(I0 +tp4704 +g8 +tp4705 +Rp4706 +(I1 +(I7 +tp4707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4708 +tp4709 +bsa(dp4710 +g4 +g5 +(g6 +(I0 +tp4711 +g8 +tp4712 +Rp4713 +(I1 +(I7 +tp4714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4715 +tp4716 +bsa(dp4717 +g4 +g5 +(g6 +(I0 +tp4718 +g8 +tp4719 +Rp4720 +(I1 +(I7 +tp4721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4722 +tp4723 +bsa(dp4724 +g4 +g5 +(g6 +(I0 +tp4725 +g8 +tp4726 +Rp4727 +(I1 +(I7 +tp4728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4729 +tp4730 +bsa(dp4731 +g4 +g5 +(g6 +(I0 +tp4732 +g8 +tp4733 +Rp4734 +(I1 +(I7 +tp4735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4736 +tp4737 +bsa(dp4738 +g4 +g5 +(g6 +(I0 +tp4739 +g8 +tp4740 +Rp4741 +(I1 +(I7 +tp4742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4743 +tp4744 +bsa(dp4745 +g4 +g5 +(g6 +(I0 +tp4746 +g8 +tp4747 +Rp4748 +(I1 +(I7 +tp4749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4750 +tp4751 +bsa(dp4752 +g4 +g5 +(g6 +(I0 +tp4753 +g8 +tp4754 +Rp4755 +(I1 +(I7 +tp4756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4757 +tp4758 +bsa(dp4759 +g4 +g5 +(g6 +(I0 +tp4760 +g8 +tp4761 +Rp4762 +(I1 +(I7 +tp4763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4764 +tp4765 +bsa(dp4766 +g4 +g5 +(g6 +(I0 +tp4767 +g8 +tp4768 +Rp4769 +(I1 +(I7 +tp4770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4771 +tp4772 +bsa(dp4773 +g4 +g5 +(g6 +(I0 +tp4774 +g8 +tp4775 +Rp4776 +(I1 +(I7 +tp4777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4778 +tp4779 +bsa(dp4780 +g4 +g5 +(g6 +(I0 +tp4781 +g8 +tp4782 +Rp4783 +(I1 +(I7 +tp4784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4785 +tp4786 +bsa(dp4787 +g4 +g5 +(g6 +(I0 +tp4788 +g8 +tp4789 +Rp4790 +(I1 +(I7 +tp4791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4792 +tp4793 +bsa(dp4794 +g4 +g5 +(g6 +(I0 +tp4795 +g8 +tp4796 +Rp4797 +(I1 +(I7 +tp4798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4799 +tp4800 +bsa(dp4801 +g4 +g5 +(g6 +(I0 +tp4802 +g8 +tp4803 +Rp4804 +(I1 +(I7 +tp4805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4806 +tp4807 +bsa(dp4808 +g4 +g5 +(g6 +(I0 +tp4809 +g8 +tp4810 +Rp4811 +(I1 +(I7 +tp4812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4813 +tp4814 +bsa(dp4815 +g4 +g5 +(g6 +(I0 +tp4816 +g8 +tp4817 +Rp4818 +(I1 +(I7 +tp4819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4820 +tp4821 +bsa(dp4822 +g4 +g5 +(g6 +(I0 +tp4823 +g8 +tp4824 +Rp4825 +(I1 +(I7 +tp4826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4827 +tp4828 +bsa(dp4829 +g4 +g5 +(g6 +(I0 +tp4830 +g8 +tp4831 +Rp4832 +(I1 +(I7 +tp4833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4834 +tp4835 +bsa(dp4836 +g4 +g5 +(g6 +(I0 +tp4837 +g8 +tp4838 +Rp4839 +(I1 +(I7 +tp4840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4841 +tp4842 +bsa(dp4843 +g4 +g5 +(g6 +(I0 +tp4844 +g8 +tp4845 +Rp4846 +(I1 +(I7 +tp4847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4848 +tp4849 +bsa(dp4850 +g4 +g5 +(g6 +(I0 +tp4851 +g8 +tp4852 +Rp4853 +(I1 +(I7 +tp4854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4855 +tp4856 +bsa(dp4857 +g4 +g5 +(g6 +(I0 +tp4858 +g8 +tp4859 +Rp4860 +(I1 +(I7 +tp4861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4862 +tp4863 +bsa(dp4864 +g4 +g5 +(g6 +(I0 +tp4865 +g8 +tp4866 +Rp4867 +(I1 +(I7 +tp4868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4869 +tp4870 +bsa(dp4871 +g4 +g5 +(g6 +(I0 +tp4872 +g8 +tp4873 +Rp4874 +(I1 +(I7 +tp4875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4876 +tp4877 +bsa(dp4878 +g4 +g5 +(g6 +(I0 +tp4879 +g8 +tp4880 +Rp4881 +(I1 +(I7 +tp4882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4883 +tp4884 +bsa(dp4885 +g4 +g5 +(g6 +(I0 +tp4886 +g8 +tp4887 +Rp4888 +(I1 +(I7 +tp4889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4890 +tp4891 +bsa(dp4892 +g4 +g5 +(g6 +(I0 +tp4893 +g8 +tp4894 +Rp4895 +(I1 +(I7 +tp4896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4897 +tp4898 +bsa(dp4899 +g4 +g5 +(g6 +(I0 +tp4900 +g8 +tp4901 +Rp4902 +(I1 +(I7 +tp4903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4904 +tp4905 +bsa(dp4906 +g4 +g5 +(g6 +(I0 +tp4907 +g8 +tp4908 +Rp4909 +(I1 +(I7 +tp4910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4911 +tp4912 +bsa(dp4913 +g4 +g5 +(g6 +(I0 +tp4914 +g8 +tp4915 +Rp4916 +(I1 +(I7 +tp4917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4918 +tp4919 +bsa(dp4920 +g4 +g5 +(g6 +(I0 +tp4921 +g8 +tp4922 +Rp4923 +(I1 +(I7 +tp4924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4925 +tp4926 +bsa(dp4927 +g4 +g5 +(g6 +(I0 +tp4928 +g8 +tp4929 +Rp4930 +(I1 +(I7 +tp4931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4932 +tp4933 +bsa(dp4934 +g4 +g5 +(g6 +(I0 +tp4935 +g8 +tp4936 +Rp4937 +(I1 +(I7 +tp4938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4939 +tp4940 +bsa(dp4941 +g4 +g5 +(g6 +(I0 +tp4942 +g8 +tp4943 +Rp4944 +(I1 +(I7 +tp4945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4946 +tp4947 +bsa(dp4948 +g4 +g5 +(g6 +(I0 +tp4949 +g8 +tp4950 +Rp4951 +(I1 +(I7 +tp4952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4953 +tp4954 +bsa(dp4955 +g4 +g5 +(g6 +(I0 +tp4956 +g8 +tp4957 +Rp4958 +(I1 +(I7 +tp4959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4960 +tp4961 +bsa(dp4962 +g4 +g5 +(g6 +(I0 +tp4963 +g8 +tp4964 +Rp4965 +(I1 +(I7 +tp4966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4967 +tp4968 +bsa(dp4969 +g4 +g5 +(g6 +(I0 +tp4970 +g8 +tp4971 +Rp4972 +(I1 +(I7 +tp4973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4974 +tp4975 +bsa(dp4976 +g4 +g5 +(g6 +(I0 +tp4977 +g8 +tp4978 +Rp4979 +(I1 +(I7 +tp4980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p4981 +tp4982 +bsa(dp4983 +g4 +g5 +(g6 +(I0 +tp4984 +g8 +tp4985 +Rp4986 +(I1 +(I7 +tp4987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p4988 +tp4989 +bsa(dp4990 +g4 +g5 +(g6 +(I0 +tp4991 +g8 +tp4992 +Rp4993 +(I1 +(I7 +tp4994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p4995 +tp4996 +bsa(dp4997 +g4 +g5 +(g6 +(I0 +tp4998 +g8 +tp4999 +Rp5000 +(I1 +(I7 +tp5001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5002 +tp5003 +bsa(dp5004 +g4 +g5 +(g6 +(I0 +tp5005 +g8 +tp5006 +Rp5007 +(I1 +(I7 +tp5008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5009 +tp5010 +bsa(dp5011 +g4 +g5 +(g6 +(I0 +tp5012 +g8 +tp5013 +Rp5014 +(I1 +(I7 +tp5015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5016 +tp5017 +bsa(dp5018 +g4 +g5 +(g6 +(I0 +tp5019 +g8 +tp5020 +Rp5021 +(I1 +(I7 +tp5022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5023 +tp5024 +bsa(dp5025 +g4 +g5 +(g6 +(I0 +tp5026 +g8 +tp5027 +Rp5028 +(I1 +(I7 +tp5029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5030 +tp5031 +bsa(dp5032 +g4 +g5 +(g6 +(I0 +tp5033 +g8 +tp5034 +Rp5035 +(I1 +(I7 +tp5036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5037 +tp5038 +bsa(dp5039 +g4 +g5 +(g6 +(I0 +tp5040 +g8 +tp5041 +Rp5042 +(I1 +(I7 +tp5043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5044 +tp5045 +bsa(dp5046 +g4 +g5 +(g6 +(I0 +tp5047 +g8 +tp5048 +Rp5049 +(I1 +(I7 +tp5050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5051 +tp5052 +bsa(dp5053 +g4 +g5 +(g6 +(I0 +tp5054 +g8 +tp5055 +Rp5056 +(I1 +(I7 +tp5057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5058 +tp5059 +bsa(dp5060 +g4 +g5 +(g6 +(I0 +tp5061 +g8 +tp5062 +Rp5063 +(I1 +(I7 +tp5064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5065 +tp5066 +bsa(dp5067 +g4 +g5 +(g6 +(I0 +tp5068 +g8 +tp5069 +Rp5070 +(I1 +(I7 +tp5071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5072 +tp5073 +bsa(dp5074 +g4 +g5 +(g6 +(I0 +tp5075 +g8 +tp5076 +Rp5077 +(I1 +(I7 +tp5078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5079 +tp5080 +bsa(dp5081 +g4 +g5 +(g6 +(I0 +tp5082 +g8 +tp5083 +Rp5084 +(I1 +(I7 +tp5085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5086 +tp5087 +bsa(dp5088 +g4 +g5 +(g6 +(I0 +tp5089 +g8 +tp5090 +Rp5091 +(I1 +(I7 +tp5092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5093 +tp5094 +bsa(dp5095 +g4 +g5 +(g6 +(I0 +tp5096 +g8 +tp5097 +Rp5098 +(I1 +(I7 +tp5099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5100 +tp5101 +bsa(dp5102 +g4 +g5 +(g6 +(I0 +tp5103 +g8 +tp5104 +Rp5105 +(I1 +(I7 +tp5106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5107 +tp5108 +bsa(dp5109 +g4 +g5 +(g6 +(I0 +tp5110 +g8 +tp5111 +Rp5112 +(I1 +(I7 +tp5113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5114 +tp5115 +bsa(dp5116 +g4 +g5 +(g6 +(I0 +tp5117 +g8 +tp5118 +Rp5119 +(I1 +(I7 +tp5120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5121 +tp5122 +bsa(dp5123 +g4 +g5 +(g6 +(I0 +tp5124 +g8 +tp5125 +Rp5126 +(I1 +(I7 +tp5127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5128 +tp5129 +bsa(dp5130 +g4 +g5 +(g6 +(I0 +tp5131 +g8 +tp5132 +Rp5133 +(I1 +(I7 +tp5134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5135 +tp5136 +bsa(dp5137 +g4 +g5 +(g6 +(I0 +tp5138 +g8 +tp5139 +Rp5140 +(I1 +(I7 +tp5141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5142 +tp5143 +bsa(dp5144 +g4 +g5 +(g6 +(I0 +tp5145 +g8 +tp5146 +Rp5147 +(I1 +(I7 +tp5148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5149 +tp5150 +bsa(dp5151 +g4 +g5 +(g6 +(I0 +tp5152 +g8 +tp5153 +Rp5154 +(I1 +(I7 +tp5155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5156 +tp5157 +bsa(dp5158 +g4 +g5 +(g6 +(I0 +tp5159 +g8 +tp5160 +Rp5161 +(I1 +(I7 +tp5162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5163 +tp5164 +bsa(dp5165 +g4 +g5 +(g6 +(I0 +tp5166 +g8 +tp5167 +Rp5168 +(I1 +(I7 +tp5169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5170 +tp5171 +bsa(dp5172 +g4 +g5 +(g6 +(I0 +tp5173 +g8 +tp5174 +Rp5175 +(I1 +(I7 +tp5176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5177 +tp5178 +bsa(dp5179 +g4 +g5 +(g6 +(I0 +tp5180 +g8 +tp5181 +Rp5182 +(I1 +(I7 +tp5183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5184 +tp5185 +bsa(dp5186 +g4 +g5 +(g6 +(I0 +tp5187 +g8 +tp5188 +Rp5189 +(I1 +(I7 +tp5190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5191 +tp5192 +bsa(dp5193 +g4 +g5 +(g6 +(I0 +tp5194 +g8 +tp5195 +Rp5196 +(I1 +(I7 +tp5197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5198 +tp5199 +bsa(dp5200 +g4 +g5 +(g6 +(I0 +tp5201 +g8 +tp5202 +Rp5203 +(I1 +(I7 +tp5204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5205 +tp5206 +bsa(dp5207 +g4 +g5 +(g6 +(I0 +tp5208 +g8 +tp5209 +Rp5210 +(I1 +(I7 +tp5211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5212 +tp5213 +bsa(dp5214 +g4 +g5 +(g6 +(I0 +tp5215 +g8 +tp5216 +Rp5217 +(I1 +(I7 +tp5218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5219 +tp5220 +bsa(dp5221 +g4 +g5 +(g6 +(I0 +tp5222 +g8 +tp5223 +Rp5224 +(I1 +(I7 +tp5225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5226 +tp5227 +bsa(dp5228 +g4 +g5 +(g6 +(I0 +tp5229 +g8 +tp5230 +Rp5231 +(I1 +(I7 +tp5232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5233 +tp5234 +bsa(dp5235 +g4 +g5 +(g6 +(I0 +tp5236 +g8 +tp5237 +Rp5238 +(I1 +(I7 +tp5239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5240 +tp5241 +bsa(dp5242 +g4 +g5 +(g6 +(I0 +tp5243 +g8 +tp5244 +Rp5245 +(I1 +(I7 +tp5246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5247 +tp5248 +bsa(dp5249 +g4 +g5 +(g6 +(I0 +tp5250 +g8 +tp5251 +Rp5252 +(I1 +(I7 +tp5253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5254 +tp5255 +bsa(dp5256 +g4 +g5 +(g6 +(I0 +tp5257 +g8 +tp5258 +Rp5259 +(I1 +(I7 +tp5260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5261 +tp5262 +bsa(dp5263 +g4 +g5 +(g6 +(I0 +tp5264 +g8 +tp5265 +Rp5266 +(I1 +(I7 +tp5267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5268 +tp5269 +bsa(dp5270 +g4 +g5 +(g6 +(I0 +tp5271 +g8 +tp5272 +Rp5273 +(I1 +(I7 +tp5274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5275 +tp5276 +bsa(dp5277 +g4 +g5 +(g6 +(I0 +tp5278 +g8 +tp5279 +Rp5280 +(I1 +(I7 +tp5281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5282 +tp5283 +bsa(dp5284 +g4 +g5 +(g6 +(I0 +tp5285 +g8 +tp5286 +Rp5287 +(I1 +(I7 +tp5288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5289 +tp5290 +bsa(dp5291 +g4 +g5 +(g6 +(I0 +tp5292 +g8 +tp5293 +Rp5294 +(I1 +(I7 +tp5295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5296 +tp5297 +bsa(dp5298 +g4 +g5 +(g6 +(I0 +tp5299 +g8 +tp5300 +Rp5301 +(I1 +(I7 +tp5302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5303 +tp5304 +bsa(dp5305 +g4 +g5 +(g6 +(I0 +tp5306 +g8 +tp5307 +Rp5308 +(I1 +(I7 +tp5309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5310 +tp5311 +bsa(dp5312 +g4 +g5 +(g6 +(I0 +tp5313 +g8 +tp5314 +Rp5315 +(I1 +(I7 +tp5316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5317 +tp5318 +bsa(dp5319 +g4 +g5 +(g6 +(I0 +tp5320 +g8 +tp5321 +Rp5322 +(I1 +(I7 +tp5323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5324 +tp5325 +bsa(dp5326 +g4 +g5 +(g6 +(I0 +tp5327 +g8 +tp5328 +Rp5329 +(I1 +(I7 +tp5330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5331 +tp5332 +bsa(dp5333 +g4 +g5 +(g6 +(I0 +tp5334 +g8 +tp5335 +Rp5336 +(I1 +(I7 +tp5337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5338 +tp5339 +bsa(dp5340 +g4 +g5 +(g6 +(I0 +tp5341 +g8 +tp5342 +Rp5343 +(I1 +(I7 +tp5344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5345 +tp5346 +bsa(dp5347 +g4 +g5 +(g6 +(I0 +tp5348 +g8 +tp5349 +Rp5350 +(I1 +(I7 +tp5351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5352 +tp5353 +bsa(dp5354 +g4 +g5 +(g6 +(I0 +tp5355 +g8 +tp5356 +Rp5357 +(I1 +(I7 +tp5358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5359 +tp5360 +bsa(dp5361 +g4 +g5 +(g6 +(I0 +tp5362 +g8 +tp5363 +Rp5364 +(I1 +(I7 +tp5365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5366 +tp5367 +bsa(dp5368 +g4 +g5 +(g6 +(I0 +tp5369 +g8 +tp5370 +Rp5371 +(I1 +(I7 +tp5372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5373 +tp5374 +bsa(dp5375 +g4 +g5 +(g6 +(I0 +tp5376 +g8 +tp5377 +Rp5378 +(I1 +(I7 +tp5379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5380 +tp5381 +bsa(dp5382 +g4 +g5 +(g6 +(I0 +tp5383 +g8 +tp5384 +Rp5385 +(I1 +(I7 +tp5386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5387 +tp5388 +bsa(dp5389 +g4 +g5 +(g6 +(I0 +tp5390 +g8 +tp5391 +Rp5392 +(I1 +(I7 +tp5393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5394 +tp5395 +bsa(dp5396 +g4 +g5 +(g6 +(I0 +tp5397 +g8 +tp5398 +Rp5399 +(I1 +(I7 +tp5400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5401 +tp5402 +bsa(dp5403 +g4 +g5 +(g6 +(I0 +tp5404 +g8 +tp5405 +Rp5406 +(I1 +(I7 +tp5407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5408 +tp5409 +bsa(dp5410 +g4 +g5 +(g6 +(I0 +tp5411 +g8 +tp5412 +Rp5413 +(I1 +(I7 +tp5414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5415 +tp5416 +bsa(dp5417 +g4 +g5 +(g6 +(I0 +tp5418 +g8 +tp5419 +Rp5420 +(I1 +(I7 +tp5421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5422 +tp5423 +bsa(dp5424 +g4 +g5 +(g6 +(I0 +tp5425 +g8 +tp5426 +Rp5427 +(I1 +(I7 +tp5428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5429 +tp5430 +bsa(dp5431 +g4 +g5 +(g6 +(I0 +tp5432 +g8 +tp5433 +Rp5434 +(I1 +(I7 +tp5435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5436 +tp5437 +bsa(dp5438 +g4 +g5 +(g6 +(I0 +tp5439 +g8 +tp5440 +Rp5441 +(I1 +(I7 +tp5442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5443 +tp5444 +bsa(dp5445 +g4 +g5 +(g6 +(I0 +tp5446 +g8 +tp5447 +Rp5448 +(I1 +(I7 +tp5449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5450 +tp5451 +bsa(dp5452 +g4 +g5 +(g6 +(I0 +tp5453 +g8 +tp5454 +Rp5455 +(I1 +(I7 +tp5456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5457 +tp5458 +bsa(dp5459 +g4 +g5 +(g6 +(I0 +tp5460 +g8 +tp5461 +Rp5462 +(I1 +(I7 +tp5463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5464 +tp5465 +bsa(dp5466 +g4 +g5 +(g6 +(I0 +tp5467 +g8 +tp5468 +Rp5469 +(I1 +(I7 +tp5470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5471 +tp5472 +bsa(dp5473 +g4 +g5 +(g6 +(I0 +tp5474 +g8 +tp5475 +Rp5476 +(I1 +(I7 +tp5477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5478 +tp5479 +bsa(dp5480 +g4 +g5 +(g6 +(I0 +tp5481 +g8 +tp5482 +Rp5483 +(I1 +(I7 +tp5484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5485 +tp5486 +bsa(dp5487 +g4 +g5 +(g6 +(I0 +tp5488 +g8 +tp5489 +Rp5490 +(I1 +(I7 +tp5491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5492 +tp5493 +bsa(dp5494 +g4 +g5 +(g6 +(I0 +tp5495 +g8 +tp5496 +Rp5497 +(I1 +(I7 +tp5498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5499 +tp5500 +bsa(dp5501 +g4 +g5 +(g6 +(I0 +tp5502 +g8 +tp5503 +Rp5504 +(I1 +(I7 +tp5505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5506 +tp5507 +bsa(dp5508 +g4 +g5 +(g6 +(I0 +tp5509 +g8 +tp5510 +Rp5511 +(I1 +(I7 +tp5512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5513 +tp5514 +bsa(dp5515 +g4 +g5 +(g6 +(I0 +tp5516 +g8 +tp5517 +Rp5518 +(I1 +(I7 +tp5519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5520 +tp5521 +bsa(dp5522 +g4 +g5 +(g6 +(I0 +tp5523 +g8 +tp5524 +Rp5525 +(I1 +(I7 +tp5526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5527 +tp5528 +bsa(dp5529 +g4 +g5 +(g6 +(I0 +tp5530 +g8 +tp5531 +Rp5532 +(I1 +(I7 +tp5533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5534 +tp5535 +bsa(dp5536 +g4 +g5 +(g6 +(I0 +tp5537 +g8 +tp5538 +Rp5539 +(I1 +(I7 +tp5540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5541 +tp5542 +bsa(dp5543 +g4 +g5 +(g6 +(I0 +tp5544 +g8 +tp5545 +Rp5546 +(I1 +(I7 +tp5547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5548 +tp5549 +bsa(dp5550 +g4 +g5 +(g6 +(I0 +tp5551 +g8 +tp5552 +Rp5553 +(I1 +(I7 +tp5554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5555 +tp5556 +bsa(dp5557 +g4 +g5 +(g6 +(I0 +tp5558 +g8 +tp5559 +Rp5560 +(I1 +(I7 +tp5561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5562 +tp5563 +bsa(dp5564 +g4 +g5 +(g6 +(I0 +tp5565 +g8 +tp5566 +Rp5567 +(I1 +(I7 +tp5568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5569 +tp5570 +bsa(dp5571 +g4 +g5 +(g6 +(I0 +tp5572 +g8 +tp5573 +Rp5574 +(I1 +(I7 +tp5575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5576 +tp5577 +bsa(dp5578 +g4 +g5 +(g6 +(I0 +tp5579 +g8 +tp5580 +Rp5581 +(I1 +(I7 +tp5582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5583 +tp5584 +bsa(dp5585 +g4 +g5 +(g6 +(I0 +tp5586 +g8 +tp5587 +Rp5588 +(I1 +(I7 +tp5589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5590 +tp5591 +bsa(dp5592 +g4 +g5 +(g6 +(I0 +tp5593 +g8 +tp5594 +Rp5595 +(I1 +(I7 +tp5596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5597 +tp5598 +bsa(dp5599 +g4 +g5 +(g6 +(I0 +tp5600 +g8 +tp5601 +Rp5602 +(I1 +(I7 +tp5603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5604 +tp5605 +bsa(dp5606 +g4 +g5 +(g6 +(I0 +tp5607 +g8 +tp5608 +Rp5609 +(I1 +(I7 +tp5610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5611 +tp5612 +bsa(dp5613 +g4 +g5 +(g6 +(I0 +tp5614 +g8 +tp5615 +Rp5616 +(I1 +(I7 +tp5617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5618 +tp5619 +bsa(dp5620 +g4 +g5 +(g6 +(I0 +tp5621 +g8 +tp5622 +Rp5623 +(I1 +(I7 +tp5624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5625 +tp5626 +bsa(dp5627 +g4 +g5 +(g6 +(I0 +tp5628 +g8 +tp5629 +Rp5630 +(I1 +(I7 +tp5631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5632 +tp5633 +bsa(dp5634 +g4 +g5 +(g6 +(I0 +tp5635 +g8 +tp5636 +Rp5637 +(I1 +(I7 +tp5638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5639 +tp5640 +bsa(dp5641 +g4 +g5 +(g6 +(I0 +tp5642 +g8 +tp5643 +Rp5644 +(I1 +(I7 +tp5645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5646 +tp5647 +bsa(dp5648 +g4 +g5 +(g6 +(I0 +tp5649 +g8 +tp5650 +Rp5651 +(I1 +(I7 +tp5652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5653 +tp5654 +bsa(dp5655 +g4 +g5 +(g6 +(I0 +tp5656 +g8 +tp5657 +Rp5658 +(I1 +(I7 +tp5659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5660 +tp5661 +bsa(dp5662 +g4 +g5 +(g6 +(I0 +tp5663 +g8 +tp5664 +Rp5665 +(I1 +(I7 +tp5666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5667 +tp5668 +bsa(dp5669 +g4 +g5 +(g6 +(I0 +tp5670 +g8 +tp5671 +Rp5672 +(I1 +(I7 +tp5673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5674 +tp5675 +bsa(dp5676 +g4 +g5 +(g6 +(I0 +tp5677 +g8 +tp5678 +Rp5679 +(I1 +(I7 +tp5680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5681 +tp5682 +bsa(dp5683 +g4 +g5 +(g6 +(I0 +tp5684 +g8 +tp5685 +Rp5686 +(I1 +(I7 +tp5687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5688 +tp5689 +bsa(dp5690 +g4 +g5 +(g6 +(I0 +tp5691 +g8 +tp5692 +Rp5693 +(I1 +(I7 +tp5694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5695 +tp5696 +bsa(dp5697 +g4 +g5 +(g6 +(I0 +tp5698 +g8 +tp5699 +Rp5700 +(I1 +(I7 +tp5701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5702 +tp5703 +bsa(dp5704 +g4 +g5 +(g6 +(I0 +tp5705 +g8 +tp5706 +Rp5707 +(I1 +(I7 +tp5708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5709 +tp5710 +bsa(dp5711 +g4 +g5 +(g6 +(I0 +tp5712 +g8 +tp5713 +Rp5714 +(I1 +(I7 +tp5715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5716 +tp5717 +bsa(dp5718 +g4 +g5 +(g6 +(I0 +tp5719 +g8 +tp5720 +Rp5721 +(I1 +(I7 +tp5722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5723 +tp5724 +bsa(dp5725 +g4 +g5 +(g6 +(I0 +tp5726 +g8 +tp5727 +Rp5728 +(I1 +(I7 +tp5729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5730 +tp5731 +bsa(dp5732 +g4 +g5 +(g6 +(I0 +tp5733 +g8 +tp5734 +Rp5735 +(I1 +(I7 +tp5736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5737 +tp5738 +bsa(dp5739 +g4 +g5 +(g6 +(I0 +tp5740 +g8 +tp5741 +Rp5742 +(I1 +(I7 +tp5743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5744 +tp5745 +bsa(dp5746 +g4 +g5 +(g6 +(I0 +tp5747 +g8 +tp5748 +Rp5749 +(I1 +(I7 +tp5750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5751 +tp5752 +bsa(dp5753 +g4 +g5 +(g6 +(I0 +tp5754 +g8 +tp5755 +Rp5756 +(I1 +(I7 +tp5757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5758 +tp5759 +bsa(dp5760 +g4 +g5 +(g6 +(I0 +tp5761 +g8 +tp5762 +Rp5763 +(I1 +(I7 +tp5764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5765 +tp5766 +bsa(dp5767 +g4 +g5 +(g6 +(I0 +tp5768 +g8 +tp5769 +Rp5770 +(I1 +(I7 +tp5771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5772 +tp5773 +bsa(dp5774 +g4 +g5 +(g6 +(I0 +tp5775 +g8 +tp5776 +Rp5777 +(I1 +(I7 +tp5778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5779 +tp5780 +bsa(dp5781 +g4 +g5 +(g6 +(I0 +tp5782 +g8 +tp5783 +Rp5784 +(I1 +(I7 +tp5785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5786 +tp5787 +bsa(dp5788 +g4 +g5 +(g6 +(I0 +tp5789 +g8 +tp5790 +Rp5791 +(I1 +(I7 +tp5792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5793 +tp5794 +bsa(dp5795 +g4 +g5 +(g6 +(I0 +tp5796 +g8 +tp5797 +Rp5798 +(I1 +(I7 +tp5799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5800 +tp5801 +bsa(dp5802 +g4 +g5 +(g6 +(I0 +tp5803 +g8 +tp5804 +Rp5805 +(I1 +(I7 +tp5806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5807 +tp5808 +bsa(dp5809 +g4 +g5 +(g6 +(I0 +tp5810 +g8 +tp5811 +Rp5812 +(I1 +(I7 +tp5813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5814 +tp5815 +bsa(dp5816 +g4 +g5 +(g6 +(I0 +tp5817 +g8 +tp5818 +Rp5819 +(I1 +(I7 +tp5820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5821 +tp5822 +bsa(dp5823 +g4 +g5 +(g6 +(I0 +tp5824 +g8 +tp5825 +Rp5826 +(I1 +(I7 +tp5827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5828 +tp5829 +bsa(dp5830 +g4 +g5 +(g6 +(I0 +tp5831 +g8 +tp5832 +Rp5833 +(I1 +(I7 +tp5834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5835 +tp5836 +bsa(dp5837 +g4 +g5 +(g6 +(I0 +tp5838 +g8 +tp5839 +Rp5840 +(I1 +(I7 +tp5841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5842 +tp5843 +bsa(dp5844 +g4 +g5 +(g6 +(I0 +tp5845 +g8 +tp5846 +Rp5847 +(I1 +(I7 +tp5848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5849 +tp5850 +bsa(dp5851 +g4 +g5 +(g6 +(I0 +tp5852 +g8 +tp5853 +Rp5854 +(I1 +(I7 +tp5855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5856 +tp5857 +bsa(dp5858 +g4 +g5 +(g6 +(I0 +tp5859 +g8 +tp5860 +Rp5861 +(I1 +(I7 +tp5862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5863 +tp5864 +bsa(dp5865 +g4 +g5 +(g6 +(I0 +tp5866 +g8 +tp5867 +Rp5868 +(I1 +(I7 +tp5869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5870 +tp5871 +bsa(dp5872 +g4 +g5 +(g6 +(I0 +tp5873 +g8 +tp5874 +Rp5875 +(I1 +(I7 +tp5876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5877 +tp5878 +bsa(dp5879 +g4 +g5 +(g6 +(I0 +tp5880 +g8 +tp5881 +Rp5882 +(I1 +(I7 +tp5883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5884 +tp5885 +bsa(dp5886 +g4 +g5 +(g6 +(I0 +tp5887 +g8 +tp5888 +Rp5889 +(I1 +(I7 +tp5890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5891 +tp5892 +bsa(dp5893 +g4 +g5 +(g6 +(I0 +tp5894 +g8 +tp5895 +Rp5896 +(I1 +(I7 +tp5897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5898 +tp5899 +bsa(dp5900 +g4 +g5 +(g6 +(I0 +tp5901 +g8 +tp5902 +Rp5903 +(I1 +(I7 +tp5904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5905 +tp5906 +bsa(dp5907 +g4 +g5 +(g6 +(I0 +tp5908 +g8 +tp5909 +Rp5910 +(I1 +(I7 +tp5911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5912 +tp5913 +bsa(dp5914 +g4 +g5 +(g6 +(I0 +tp5915 +g8 +tp5916 +Rp5917 +(I1 +(I7 +tp5918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5919 +tp5920 +bsa(dp5921 +g4 +g5 +(g6 +(I0 +tp5922 +g8 +tp5923 +Rp5924 +(I1 +(I7 +tp5925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5926 +tp5927 +bsa(dp5928 +g4 +g5 +(g6 +(I0 +tp5929 +g8 +tp5930 +Rp5931 +(I1 +(I7 +tp5932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5933 +tp5934 +bsa(dp5935 +g4 +g5 +(g6 +(I0 +tp5936 +g8 +tp5937 +Rp5938 +(I1 +(I7 +tp5939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5940 +tp5941 +bsa(dp5942 +g4 +g5 +(g6 +(I0 +tp5943 +g8 +tp5944 +Rp5945 +(I1 +(I7 +tp5946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5947 +tp5948 +bsa(dp5949 +g4 +g5 +(g6 +(I0 +tp5950 +g8 +tp5951 +Rp5952 +(I1 +(I7 +tp5953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5954 +tp5955 +bsa(dp5956 +g4 +g5 +(g6 +(I0 +tp5957 +g8 +tp5958 +Rp5959 +(I1 +(I7 +tp5960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5961 +tp5962 +bsa(dp5963 +g4 +g5 +(g6 +(I0 +tp5964 +g8 +tp5965 +Rp5966 +(I1 +(I7 +tp5967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5968 +tp5969 +bsa(dp5970 +g4 +g5 +(g6 +(I0 +tp5971 +g8 +tp5972 +Rp5973 +(I1 +(I7 +tp5974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5975 +tp5976 +bsa(dp5977 +g4 +g5 +(g6 +(I0 +tp5978 +g8 +tp5979 +Rp5980 +(I1 +(I7 +tp5981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p5982 +tp5983 +bsa(dp5984 +g4 +g5 +(g6 +(I0 +tp5985 +g8 +tp5986 +Rp5987 +(I1 +(I7 +tp5988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p5989 +tp5990 +bsa(dp5991 +g4 +g5 +(g6 +(I0 +tp5992 +g8 +tp5993 +Rp5994 +(I1 +(I7 +tp5995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p5996 +tp5997 +bsa(dp5998 +g4 +g5 +(g6 +(I0 +tp5999 +g8 +tp6000 +Rp6001 +(I1 +(I7 +tp6002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6003 +tp6004 +bsa(dp6005 +g4 +g5 +(g6 +(I0 +tp6006 +g8 +tp6007 +Rp6008 +(I1 +(I7 +tp6009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6010 +tp6011 +bsa(dp6012 +g4 +g5 +(g6 +(I0 +tp6013 +g8 +tp6014 +Rp6015 +(I1 +(I7 +tp6016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6017 +tp6018 +bsa(dp6019 +g4 +g5 +(g6 +(I0 +tp6020 +g8 +tp6021 +Rp6022 +(I1 +(I7 +tp6023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6024 +tp6025 +bsa(dp6026 +g4 +g5 +(g6 +(I0 +tp6027 +g8 +tp6028 +Rp6029 +(I1 +(I7 +tp6030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6031 +tp6032 +bsa(dp6033 +g4 +g5 +(g6 +(I0 +tp6034 +g8 +tp6035 +Rp6036 +(I1 +(I7 +tp6037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6038 +tp6039 +bsa(dp6040 +g4 +g5 +(g6 +(I0 +tp6041 +g8 +tp6042 +Rp6043 +(I1 +(I7 +tp6044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6045 +tp6046 +bsa(dp6047 +g4 +g5 +(g6 +(I0 +tp6048 +g8 +tp6049 +Rp6050 +(I1 +(I7 +tp6051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6052 +tp6053 +bsa(dp6054 +g4 +g5 +(g6 +(I0 +tp6055 +g8 +tp6056 +Rp6057 +(I1 +(I7 +tp6058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6059 +tp6060 +bsa(dp6061 +g4 +g5 +(g6 +(I0 +tp6062 +g8 +tp6063 +Rp6064 +(I1 +(I7 +tp6065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6066 +tp6067 +bsa(dp6068 +g4 +g5 +(g6 +(I0 +tp6069 +g8 +tp6070 +Rp6071 +(I1 +(I7 +tp6072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6073 +tp6074 +bsa(dp6075 +g4 +g5 +(g6 +(I0 +tp6076 +g8 +tp6077 +Rp6078 +(I1 +(I7 +tp6079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6080 +tp6081 +bsa(dp6082 +g4 +g5 +(g6 +(I0 +tp6083 +g8 +tp6084 +Rp6085 +(I1 +(I7 +tp6086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6087 +tp6088 +bsa(dp6089 +g4 +g5 +(g6 +(I0 +tp6090 +g8 +tp6091 +Rp6092 +(I1 +(I7 +tp6093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6094 +tp6095 +bsa(dp6096 +g4 +g5 +(g6 +(I0 +tp6097 +g8 +tp6098 +Rp6099 +(I1 +(I7 +tp6100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6101 +tp6102 +bsa(dp6103 +g4 +g5 +(g6 +(I0 +tp6104 +g8 +tp6105 +Rp6106 +(I1 +(I7 +tp6107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6108 +tp6109 +bsa(dp6110 +g4 +g5 +(g6 +(I0 +tp6111 +g8 +tp6112 +Rp6113 +(I1 +(I7 +tp6114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6115 +tp6116 +bsa(dp6117 +g4 +g5 +(g6 +(I0 +tp6118 +g8 +tp6119 +Rp6120 +(I1 +(I7 +tp6121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6122 +tp6123 +bsa(dp6124 +g4 +g5 +(g6 +(I0 +tp6125 +g8 +tp6126 +Rp6127 +(I1 +(I7 +tp6128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6129 +tp6130 +bsa(dp6131 +g4 +g5 +(g6 +(I0 +tp6132 +g8 +tp6133 +Rp6134 +(I1 +(I7 +tp6135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6136 +tp6137 +bsa(dp6138 +g4 +g5 +(g6 +(I0 +tp6139 +g8 +tp6140 +Rp6141 +(I1 +(I7 +tp6142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6143 +tp6144 +bsa(dp6145 +g4 +g5 +(g6 +(I0 +tp6146 +g8 +tp6147 +Rp6148 +(I1 +(I7 +tp6149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6150 +tp6151 +bsa(dp6152 +g4 +g5 +(g6 +(I0 +tp6153 +g8 +tp6154 +Rp6155 +(I1 +(I7 +tp6156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6157 +tp6158 +bsa(dp6159 +g4 +g5 +(g6 +(I0 +tp6160 +g8 +tp6161 +Rp6162 +(I1 +(I7 +tp6163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6164 +tp6165 +bsa(dp6166 +g4 +g5 +(g6 +(I0 +tp6167 +g8 +tp6168 +Rp6169 +(I1 +(I7 +tp6170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6171 +tp6172 +bsa(dp6173 +g4 +g5 +(g6 +(I0 +tp6174 +g8 +tp6175 +Rp6176 +(I1 +(I7 +tp6177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6178 +tp6179 +bsa(dp6180 +g4 +g5 +(g6 +(I0 +tp6181 +g8 +tp6182 +Rp6183 +(I1 +(I7 +tp6184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6185 +tp6186 +bsa(dp6187 +g4 +g5 +(g6 +(I0 +tp6188 +g8 +tp6189 +Rp6190 +(I1 +(I7 +tp6191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6192 +tp6193 +bsa(dp6194 +g4 +g5 +(g6 +(I0 +tp6195 +g8 +tp6196 +Rp6197 +(I1 +(I7 +tp6198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6199 +tp6200 +bsa(dp6201 +g4 +g5 +(g6 +(I0 +tp6202 +g8 +tp6203 +Rp6204 +(I1 +(I7 +tp6205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6206 +tp6207 +bsa(dp6208 +g4 +g5 +(g6 +(I0 +tp6209 +g8 +tp6210 +Rp6211 +(I1 +(I7 +tp6212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6213 +tp6214 +bsa(dp6215 +g4 +g5 +(g6 +(I0 +tp6216 +g8 +tp6217 +Rp6218 +(I1 +(I7 +tp6219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6220 +tp6221 +bsa(dp6222 +g4 +g5 +(g6 +(I0 +tp6223 +g8 +tp6224 +Rp6225 +(I1 +(I7 +tp6226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6227 +tp6228 +bsa(dp6229 +g4 +g5 +(g6 +(I0 +tp6230 +g8 +tp6231 +Rp6232 +(I1 +(I7 +tp6233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6234 +tp6235 +bsa(dp6236 +g4 +g5 +(g6 +(I0 +tp6237 +g8 +tp6238 +Rp6239 +(I1 +(I7 +tp6240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6241 +tp6242 +bsa(dp6243 +g4 +g5 +(g6 +(I0 +tp6244 +g8 +tp6245 +Rp6246 +(I1 +(I7 +tp6247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6248 +tp6249 +bsa(dp6250 +g4 +g5 +(g6 +(I0 +tp6251 +g8 +tp6252 +Rp6253 +(I1 +(I7 +tp6254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6255 +tp6256 +bsa(dp6257 +g4 +g5 +(g6 +(I0 +tp6258 +g8 +tp6259 +Rp6260 +(I1 +(I7 +tp6261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6262 +tp6263 +bsa(dp6264 +g4 +g5 +(g6 +(I0 +tp6265 +g8 +tp6266 +Rp6267 +(I1 +(I7 +tp6268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6269 +tp6270 +bsa(dp6271 +g4 +g5 +(g6 +(I0 +tp6272 +g8 +tp6273 +Rp6274 +(I1 +(I7 +tp6275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6276 +tp6277 +bsa(dp6278 +g4 +g5 +(g6 +(I0 +tp6279 +g8 +tp6280 +Rp6281 +(I1 +(I7 +tp6282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6283 +tp6284 +bsa(dp6285 +g4 +g5 +(g6 +(I0 +tp6286 +g8 +tp6287 +Rp6288 +(I1 +(I7 +tp6289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6290 +tp6291 +bsa(dp6292 +g4 +g5 +(g6 +(I0 +tp6293 +g8 +tp6294 +Rp6295 +(I1 +(I7 +tp6296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6297 +tp6298 +bsa(dp6299 +g4 +g5 +(g6 +(I0 +tp6300 +g8 +tp6301 +Rp6302 +(I1 +(I7 +tp6303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6304 +tp6305 +bsa(dp6306 +g4 +g5 +(g6 +(I0 +tp6307 +g8 +tp6308 +Rp6309 +(I1 +(I7 +tp6310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6311 +tp6312 +bsa(dp6313 +g4 +g5 +(g6 +(I0 +tp6314 +g8 +tp6315 +Rp6316 +(I1 +(I7 +tp6317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6318 +tp6319 +bsa(dp6320 +g4 +g5 +(g6 +(I0 +tp6321 +g8 +tp6322 +Rp6323 +(I1 +(I7 +tp6324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6325 +tp6326 +bsa(dp6327 +g4 +g5 +(g6 +(I0 +tp6328 +g8 +tp6329 +Rp6330 +(I1 +(I7 +tp6331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6332 +tp6333 +bsa(dp6334 +g4 +g5 +(g6 +(I0 +tp6335 +g8 +tp6336 +Rp6337 +(I1 +(I7 +tp6338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6339 +tp6340 +bsa(dp6341 +g4 +g5 +(g6 +(I0 +tp6342 +g8 +tp6343 +Rp6344 +(I1 +(I7 +tp6345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6346 +tp6347 +bsa(dp6348 +g4 +g5 +(g6 +(I0 +tp6349 +g8 +tp6350 +Rp6351 +(I1 +(I7 +tp6352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6353 +tp6354 +bsa(dp6355 +g4 +g5 +(g6 +(I0 +tp6356 +g8 +tp6357 +Rp6358 +(I1 +(I7 +tp6359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6360 +tp6361 +bsa(dp6362 +g4 +g5 +(g6 +(I0 +tp6363 +g8 +tp6364 +Rp6365 +(I1 +(I7 +tp6366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6367 +tp6368 +bsa(dp6369 +g4 +g5 +(g6 +(I0 +tp6370 +g8 +tp6371 +Rp6372 +(I1 +(I7 +tp6373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6374 +tp6375 +bsa(dp6376 +g4 +g5 +(g6 +(I0 +tp6377 +g8 +tp6378 +Rp6379 +(I1 +(I7 +tp6380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6381 +tp6382 +bsa(dp6383 +g4 +g5 +(g6 +(I0 +tp6384 +g8 +tp6385 +Rp6386 +(I1 +(I7 +tp6387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6388 +tp6389 +bsa(dp6390 +g4 +g5 +(g6 +(I0 +tp6391 +g8 +tp6392 +Rp6393 +(I1 +(I7 +tp6394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6395 +tp6396 +bsa(dp6397 +g4 +g5 +(g6 +(I0 +tp6398 +g8 +tp6399 +Rp6400 +(I1 +(I7 +tp6401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6402 +tp6403 +bsa(dp6404 +g4 +g5 +(g6 +(I0 +tp6405 +g8 +tp6406 +Rp6407 +(I1 +(I7 +tp6408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6409 +tp6410 +bsa(dp6411 +g4 +g5 +(g6 +(I0 +tp6412 +g8 +tp6413 +Rp6414 +(I1 +(I7 +tp6415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6416 +tp6417 +bsa(dp6418 +g4 +g5 +(g6 +(I0 +tp6419 +g8 +tp6420 +Rp6421 +(I1 +(I7 +tp6422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6423 +tp6424 +bsa(dp6425 +g4 +g5 +(g6 +(I0 +tp6426 +g8 +tp6427 +Rp6428 +(I1 +(I7 +tp6429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6430 +tp6431 +bsa(dp6432 +g4 +g5 +(g6 +(I0 +tp6433 +g8 +tp6434 +Rp6435 +(I1 +(I7 +tp6436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6437 +tp6438 +bsa(dp6439 +g4 +g5 +(g6 +(I0 +tp6440 +g8 +tp6441 +Rp6442 +(I1 +(I7 +tp6443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6444 +tp6445 +bsa(dp6446 +g4 +g5 +(g6 +(I0 +tp6447 +g8 +tp6448 +Rp6449 +(I1 +(I7 +tp6450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6451 +tp6452 +bsa(dp6453 +g4 +g5 +(g6 +(I0 +tp6454 +g8 +tp6455 +Rp6456 +(I1 +(I7 +tp6457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6458 +tp6459 +bsa(dp6460 +g4 +g5 +(g6 +(I0 +tp6461 +g8 +tp6462 +Rp6463 +(I1 +(I7 +tp6464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6465 +tp6466 +bsa(dp6467 +g4 +g5 +(g6 +(I0 +tp6468 +g8 +tp6469 +Rp6470 +(I1 +(I7 +tp6471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6472 +tp6473 +bsa(dp6474 +g4 +g5 +(g6 +(I0 +tp6475 +g8 +tp6476 +Rp6477 +(I1 +(I7 +tp6478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6479 +tp6480 +bsa(dp6481 +g4 +g5 +(g6 +(I0 +tp6482 +g8 +tp6483 +Rp6484 +(I1 +(I7 +tp6485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6486 +tp6487 +bsa(dp6488 +g4 +g5 +(g6 +(I0 +tp6489 +g8 +tp6490 +Rp6491 +(I1 +(I7 +tp6492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6493 +tp6494 +bsa(dp6495 +g4 +g5 +(g6 +(I0 +tp6496 +g8 +tp6497 +Rp6498 +(I1 +(I7 +tp6499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6500 +tp6501 +bsa(dp6502 +g4 +g5 +(g6 +(I0 +tp6503 +g8 +tp6504 +Rp6505 +(I1 +(I7 +tp6506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6507 +tp6508 +bsa(dp6509 +g4 +g5 +(g6 +(I0 +tp6510 +g8 +tp6511 +Rp6512 +(I1 +(I7 +tp6513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6514 +tp6515 +bsa(dp6516 +g4 +g5 +(g6 +(I0 +tp6517 +g8 +tp6518 +Rp6519 +(I1 +(I7 +tp6520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6521 +tp6522 +bsa(dp6523 +g4 +g5 +(g6 +(I0 +tp6524 +g8 +tp6525 +Rp6526 +(I1 +(I7 +tp6527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6528 +tp6529 +bsa(dp6530 +g4 +g5 +(g6 +(I0 +tp6531 +g8 +tp6532 +Rp6533 +(I1 +(I7 +tp6534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6535 +tp6536 +bsa(dp6537 +g4 +g5 +(g6 +(I0 +tp6538 +g8 +tp6539 +Rp6540 +(I1 +(I7 +tp6541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6542 +tp6543 +bsa(dp6544 +g4 +g5 +(g6 +(I0 +tp6545 +g8 +tp6546 +Rp6547 +(I1 +(I7 +tp6548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6549 +tp6550 +bsa(dp6551 +g4 +g5 +(g6 +(I0 +tp6552 +g8 +tp6553 +Rp6554 +(I1 +(I7 +tp6555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6556 +tp6557 +bsa(dp6558 +g4 +g5 +(g6 +(I0 +tp6559 +g8 +tp6560 +Rp6561 +(I1 +(I7 +tp6562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6563 +tp6564 +bsa(dp6565 +g4 +g5 +(g6 +(I0 +tp6566 +g8 +tp6567 +Rp6568 +(I1 +(I7 +tp6569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6570 +tp6571 +bsa(dp6572 +g4 +g5 +(g6 +(I0 +tp6573 +g8 +tp6574 +Rp6575 +(I1 +(I7 +tp6576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6577 +tp6578 +bsa(dp6579 +g4 +g5 +(g6 +(I0 +tp6580 +g8 +tp6581 +Rp6582 +(I1 +(I7 +tp6583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6584 +tp6585 +bsa(dp6586 +g4 +g5 +(g6 +(I0 +tp6587 +g8 +tp6588 +Rp6589 +(I1 +(I7 +tp6590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6591 +tp6592 +bsa(dp6593 +g4 +g5 +(g6 +(I0 +tp6594 +g8 +tp6595 +Rp6596 +(I1 +(I7 +tp6597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6598 +tp6599 +bsa(dp6600 +g4 +g5 +(g6 +(I0 +tp6601 +g8 +tp6602 +Rp6603 +(I1 +(I7 +tp6604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6605 +tp6606 +bsa(dp6607 +g4 +g5 +(g6 +(I0 +tp6608 +g8 +tp6609 +Rp6610 +(I1 +(I7 +tp6611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6612 +tp6613 +bsa(dp6614 +g4 +g5 +(g6 +(I0 +tp6615 +g8 +tp6616 +Rp6617 +(I1 +(I7 +tp6618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6619 +tp6620 +bsa(dp6621 +g4 +g5 +(g6 +(I0 +tp6622 +g8 +tp6623 +Rp6624 +(I1 +(I7 +tp6625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6626 +tp6627 +bsa(dp6628 +g4 +g5 +(g6 +(I0 +tp6629 +g8 +tp6630 +Rp6631 +(I1 +(I7 +tp6632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6633 +tp6634 +bsa(dp6635 +g4 +g5 +(g6 +(I0 +tp6636 +g8 +tp6637 +Rp6638 +(I1 +(I7 +tp6639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6640 +tp6641 +bsa(dp6642 +g4 +g5 +(g6 +(I0 +tp6643 +g8 +tp6644 +Rp6645 +(I1 +(I7 +tp6646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6647 +tp6648 +bsa(dp6649 +g4 +g5 +(g6 +(I0 +tp6650 +g8 +tp6651 +Rp6652 +(I1 +(I7 +tp6653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6654 +tp6655 +bsa(dp6656 +g4 +g5 +(g6 +(I0 +tp6657 +g8 +tp6658 +Rp6659 +(I1 +(I7 +tp6660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6661 +tp6662 +bsa(dp6663 +g4 +g5 +(g6 +(I0 +tp6664 +g8 +tp6665 +Rp6666 +(I1 +(I7 +tp6667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6668 +tp6669 +bsa(dp6670 +g4 +g5 +(g6 +(I0 +tp6671 +g8 +tp6672 +Rp6673 +(I1 +(I7 +tp6674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6675 +tp6676 +bsa(dp6677 +g4 +g5 +(g6 +(I0 +tp6678 +g8 +tp6679 +Rp6680 +(I1 +(I7 +tp6681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6682 +tp6683 +bsa(dp6684 +g4 +g5 +(g6 +(I0 +tp6685 +g8 +tp6686 +Rp6687 +(I1 +(I7 +tp6688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6689 +tp6690 +bsa(dp6691 +g4 +g5 +(g6 +(I0 +tp6692 +g8 +tp6693 +Rp6694 +(I1 +(I7 +tp6695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6696 +tp6697 +bsa(dp6698 +g4 +g5 +(g6 +(I0 +tp6699 +g8 +tp6700 +Rp6701 +(I1 +(I7 +tp6702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6703 +tp6704 +bsa(dp6705 +g4 +g5 +(g6 +(I0 +tp6706 +g8 +tp6707 +Rp6708 +(I1 +(I7 +tp6709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6710 +tp6711 +bsa(dp6712 +g4 +g5 +(g6 +(I0 +tp6713 +g8 +tp6714 +Rp6715 +(I1 +(I7 +tp6716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6717 +tp6718 +bsa(dp6719 +g4 +g5 +(g6 +(I0 +tp6720 +g8 +tp6721 +Rp6722 +(I1 +(I7 +tp6723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6724 +tp6725 +bsa(dp6726 +g4 +g5 +(g6 +(I0 +tp6727 +g8 +tp6728 +Rp6729 +(I1 +(I7 +tp6730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6731 +tp6732 +bsa(dp6733 +g4 +g5 +(g6 +(I0 +tp6734 +g8 +tp6735 +Rp6736 +(I1 +(I7 +tp6737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6738 +tp6739 +bsa(dp6740 +g4 +g5 +(g6 +(I0 +tp6741 +g8 +tp6742 +Rp6743 +(I1 +(I7 +tp6744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6745 +tp6746 +bsa(dp6747 +g4 +g5 +(g6 +(I0 +tp6748 +g8 +tp6749 +Rp6750 +(I1 +(I7 +tp6751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6752 +tp6753 +bsa(dp6754 +g4 +g5 +(g6 +(I0 +tp6755 +g8 +tp6756 +Rp6757 +(I1 +(I7 +tp6758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6759 +tp6760 +bsa(dp6761 +g4 +g5 +(g6 +(I0 +tp6762 +g8 +tp6763 +Rp6764 +(I1 +(I7 +tp6765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6766 +tp6767 +bsa(dp6768 +g4 +g5 +(g6 +(I0 +tp6769 +g8 +tp6770 +Rp6771 +(I1 +(I7 +tp6772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6773 +tp6774 +bsa(dp6775 +g4 +g5 +(g6 +(I0 +tp6776 +g8 +tp6777 +Rp6778 +(I1 +(I7 +tp6779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6780 +tp6781 +bsa(dp6782 +g4 +g5 +(g6 +(I0 +tp6783 +g8 +tp6784 +Rp6785 +(I1 +(I7 +tp6786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6787 +tp6788 +bsa(dp6789 +g4 +g5 +(g6 +(I0 +tp6790 +g8 +tp6791 +Rp6792 +(I1 +(I7 +tp6793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6794 +tp6795 +bsa(dp6796 +g4 +g5 +(g6 +(I0 +tp6797 +g8 +tp6798 +Rp6799 +(I1 +(I7 +tp6800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6801 +tp6802 +bsa(dp6803 +g4 +g5 +(g6 +(I0 +tp6804 +g8 +tp6805 +Rp6806 +(I1 +(I7 +tp6807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6808 +tp6809 +bsa(dp6810 +g4 +g5 +(g6 +(I0 +tp6811 +g8 +tp6812 +Rp6813 +(I1 +(I7 +tp6814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6815 +tp6816 +bsa(dp6817 +g4 +g5 +(g6 +(I0 +tp6818 +g8 +tp6819 +Rp6820 +(I1 +(I7 +tp6821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6822 +tp6823 +bsa(dp6824 +g4 +g5 +(g6 +(I0 +tp6825 +g8 +tp6826 +Rp6827 +(I1 +(I7 +tp6828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6829 +tp6830 +bsa(dp6831 +g4 +g5 +(g6 +(I0 +tp6832 +g8 +tp6833 +Rp6834 +(I1 +(I7 +tp6835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6836 +tp6837 +bsa(dp6838 +g4 +g5 +(g6 +(I0 +tp6839 +g8 +tp6840 +Rp6841 +(I1 +(I7 +tp6842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6843 +tp6844 +bsa(dp6845 +g4 +g5 +(g6 +(I0 +tp6846 +g8 +tp6847 +Rp6848 +(I1 +(I7 +tp6849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6850 +tp6851 +bsa(dp6852 +g4 +g5 +(g6 +(I0 +tp6853 +g8 +tp6854 +Rp6855 +(I1 +(I7 +tp6856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6857 +tp6858 +bsa(dp6859 +g4 +g5 +(g6 +(I0 +tp6860 +g8 +tp6861 +Rp6862 +(I1 +(I7 +tp6863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6864 +tp6865 +bsa(dp6866 +g4 +g5 +(g6 +(I0 +tp6867 +g8 +tp6868 +Rp6869 +(I1 +(I7 +tp6870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6871 +tp6872 +bsa(dp6873 +g4 +g5 +(g6 +(I0 +tp6874 +g8 +tp6875 +Rp6876 +(I1 +(I7 +tp6877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6878 +tp6879 +bsa(dp6880 +g4 +g5 +(g6 +(I0 +tp6881 +g8 +tp6882 +Rp6883 +(I1 +(I7 +tp6884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6885 +tp6886 +bsa(dp6887 +g4 +g5 +(g6 +(I0 +tp6888 +g8 +tp6889 +Rp6890 +(I1 +(I7 +tp6891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6892 +tp6893 +bsa(dp6894 +g4 +g5 +(g6 +(I0 +tp6895 +g8 +tp6896 +Rp6897 +(I1 +(I7 +tp6898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6899 +tp6900 +bsa(dp6901 +g4 +g5 +(g6 +(I0 +tp6902 +g8 +tp6903 +Rp6904 +(I1 +(I7 +tp6905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6906 +tp6907 +bsa(dp6908 +g4 +g5 +(g6 +(I0 +tp6909 +g8 +tp6910 +Rp6911 +(I1 +(I7 +tp6912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6913 +tp6914 +bsa(dp6915 +g4 +g5 +(g6 +(I0 +tp6916 +g8 +tp6917 +Rp6918 +(I1 +(I7 +tp6919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6920 +tp6921 +bsa(dp6922 +g4 +g5 +(g6 +(I0 +tp6923 +g8 +tp6924 +Rp6925 +(I1 +(I7 +tp6926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6927 +tp6928 +bsa(dp6929 +g4 +g5 +(g6 +(I0 +tp6930 +g8 +tp6931 +Rp6932 +(I1 +(I7 +tp6933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6934 +tp6935 +bsa(dp6936 +g4 +g5 +(g6 +(I0 +tp6937 +g8 +tp6938 +Rp6939 +(I1 +(I7 +tp6940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6941 +tp6942 +bsa(dp6943 +g4 +g5 +(g6 +(I0 +tp6944 +g8 +tp6945 +Rp6946 +(I1 +(I7 +tp6947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6948 +tp6949 +bsa(dp6950 +g4 +g5 +(g6 +(I0 +tp6951 +g8 +tp6952 +Rp6953 +(I1 +(I7 +tp6954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6955 +tp6956 +bsa(dp6957 +g4 +g5 +(g6 +(I0 +tp6958 +g8 +tp6959 +Rp6960 +(I1 +(I7 +tp6961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p6962 +tp6963 +bsa(dp6964 +g4 +g5 +(g6 +(I0 +tp6965 +g8 +tp6966 +Rp6967 +(I1 +(I7 +tp6968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p6969 +tp6970 +bsa(dp6971 +g4 +g5 +(g6 +(I0 +tp6972 +g8 +tp6973 +Rp6974 +(I1 +(I7 +tp6975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6976 +tp6977 +bsa(dp6978 +g4 +g5 +(g6 +(I0 +tp6979 +g8 +tp6980 +Rp6981 +(I1 +(I7 +tp6982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6983 +tp6984 +bsa(dp6985 +g4 +g5 +(g6 +(I0 +tp6986 +g8 +tp6987 +Rp6988 +(I1 +(I7 +tp6989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6990 +tp6991 +bsa(dp6992 +g4 +g5 +(g6 +(I0 +tp6993 +g8 +tp6994 +Rp6995 +(I1 +(I7 +tp6996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p6997 +tp6998 +bsa(dp6999 +g4 +g5 +(g6 +(I0 +tp7000 +g8 +tp7001 +Rp7002 +(I1 +(I7 +tp7003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7004 +tp7005 +bsa(dp7006 +g4 +g5 +(g6 +(I0 +tp7007 +g8 +tp7008 +Rp7009 +(I1 +(I7 +tp7010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7011 +tp7012 +bsa(dp7013 +g4 +g5 +(g6 +(I0 +tp7014 +g8 +tp7015 +Rp7016 +(I1 +(I7 +tp7017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7018 +tp7019 +bsa(dp7020 +g4 +g5 +(g6 +(I0 +tp7021 +g8 +tp7022 +Rp7023 +(I1 +(I7 +tp7024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7025 +tp7026 +bsa(dp7027 +g4 +g5 +(g6 +(I0 +tp7028 +g8 +tp7029 +Rp7030 +(I1 +(I7 +tp7031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7032 +tp7033 +bsa(dp7034 +g4 +g5 +(g6 +(I0 +tp7035 +g8 +tp7036 +Rp7037 +(I1 +(I7 +tp7038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7039 +tp7040 +bsa(dp7041 +g4 +g5 +(g6 +(I0 +tp7042 +g8 +tp7043 +Rp7044 +(I1 +(I7 +tp7045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7046 +tp7047 +bsa(dp7048 +g4 +g5 +(g6 +(I0 +tp7049 +g8 +tp7050 +Rp7051 +(I1 +(I7 +tp7052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7053 +tp7054 +bsa(dp7055 +g4 +g5 +(g6 +(I0 +tp7056 +g8 +tp7057 +Rp7058 +(I1 +(I7 +tp7059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7060 +tp7061 +bsa(dp7062 +g4 +g5 +(g6 +(I0 +tp7063 +g8 +tp7064 +Rp7065 +(I1 +(I7 +tp7066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7067 +tp7068 +bsa(dp7069 +g4 +g5 +(g6 +(I0 +tp7070 +g8 +tp7071 +Rp7072 +(I1 +(I7 +tp7073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7074 +tp7075 +bsa(dp7076 +g4 +g5 +(g6 +(I0 +tp7077 +g8 +tp7078 +Rp7079 +(I1 +(I7 +tp7080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7081 +tp7082 +bsa(dp7083 +g4 +g5 +(g6 +(I0 +tp7084 +g8 +tp7085 +Rp7086 +(I1 +(I7 +tp7087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7088 +tp7089 +bsa(dp7090 +g4 +g5 +(g6 +(I0 +tp7091 +g8 +tp7092 +Rp7093 +(I1 +(I7 +tp7094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7095 +tp7096 +bsa(dp7097 +g4 +g5 +(g6 +(I0 +tp7098 +g8 +tp7099 +Rp7100 +(I1 +(I7 +tp7101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7102 +tp7103 +bsa(dp7104 +g4 +g5 +(g6 +(I0 +tp7105 +g8 +tp7106 +Rp7107 +(I1 +(I7 +tp7108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7109 +tp7110 +bsa(dp7111 +g4 +g5 +(g6 +(I0 +tp7112 +g8 +tp7113 +Rp7114 +(I1 +(I7 +tp7115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7116 +tp7117 +bsa(dp7118 +g4 +g5 +(g6 +(I0 +tp7119 +g8 +tp7120 +Rp7121 +(I1 +(I7 +tp7122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7123 +tp7124 +bsa(dp7125 +g4 +g5 +(g6 +(I0 +tp7126 +g8 +tp7127 +Rp7128 +(I1 +(I7 +tp7129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7130 +tp7131 +bsa(dp7132 +g4 +g5 +(g6 +(I0 +tp7133 +g8 +tp7134 +Rp7135 +(I1 +(I7 +tp7136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7137 +tp7138 +bsa(dp7139 +g4 +g5 +(g6 +(I0 +tp7140 +g8 +tp7141 +Rp7142 +(I1 +(I7 +tp7143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7144 +tp7145 +bsa(dp7146 +g4 +g5 +(g6 +(I0 +tp7147 +g8 +tp7148 +Rp7149 +(I1 +(I7 +tp7150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7151 +tp7152 +bsa(dp7153 +g4 +g5 +(g6 +(I0 +tp7154 +g8 +tp7155 +Rp7156 +(I1 +(I7 +tp7157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7158 +tp7159 +bsa(dp7160 +g4 +g5 +(g6 +(I0 +tp7161 +g8 +tp7162 +Rp7163 +(I1 +(I7 +tp7164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7165 +tp7166 +bsa(dp7167 +g4 +g5 +(g6 +(I0 +tp7168 +g8 +tp7169 +Rp7170 +(I1 +(I7 +tp7171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7172 +tp7173 +bsa(dp7174 +g4 +g5 +(g6 +(I0 +tp7175 +g8 +tp7176 +Rp7177 +(I1 +(I7 +tp7178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7179 +tp7180 +bsa(dp7181 +g4 +g5 +(g6 +(I0 +tp7182 +g8 +tp7183 +Rp7184 +(I1 +(I7 +tp7185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7186 +tp7187 +bsa(dp7188 +g4 +g5 +(g6 +(I0 +tp7189 +g8 +tp7190 +Rp7191 +(I1 +(I7 +tp7192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7193 +tp7194 +bsa(dp7195 +g4 +g5 +(g6 +(I0 +tp7196 +g8 +tp7197 +Rp7198 +(I1 +(I7 +tp7199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7200 +tp7201 +bsa(dp7202 +g4 +g5 +(g6 +(I0 +tp7203 +g8 +tp7204 +Rp7205 +(I1 +(I7 +tp7206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7207 +tp7208 +bsa(dp7209 +g4 +g5 +(g6 +(I0 +tp7210 +g8 +tp7211 +Rp7212 +(I1 +(I7 +tp7213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7214 +tp7215 +bsa(dp7216 +g4 +g5 +(g6 +(I0 +tp7217 +g8 +tp7218 +Rp7219 +(I1 +(I7 +tp7220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7221 +tp7222 +bsa(dp7223 +g4 +g5 +(g6 +(I0 +tp7224 +g8 +tp7225 +Rp7226 +(I1 +(I7 +tp7227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7228 +tp7229 +bsa(dp7230 +g4 +g5 +(g6 +(I0 +tp7231 +g8 +tp7232 +Rp7233 +(I1 +(I7 +tp7234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7235 +tp7236 +bsa(dp7237 +g4 +g5 +(g6 +(I0 +tp7238 +g8 +tp7239 +Rp7240 +(I1 +(I7 +tp7241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7242 +tp7243 +bsa(dp7244 +g4 +g5 +(g6 +(I0 +tp7245 +g8 +tp7246 +Rp7247 +(I1 +(I7 +tp7248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7249 +tp7250 +bsa(dp7251 +g4 +g5 +(g6 +(I0 +tp7252 +g8 +tp7253 +Rp7254 +(I1 +(I7 +tp7255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7256 +tp7257 +bsa(dp7258 +g4 +g5 +(g6 +(I0 +tp7259 +g8 +tp7260 +Rp7261 +(I1 +(I7 +tp7262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7263 +tp7264 +bsa(dp7265 +g4 +g5 +(g6 +(I0 +tp7266 +g8 +tp7267 +Rp7268 +(I1 +(I7 +tp7269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7270 +tp7271 +bsa(dp7272 +g4 +g5 +(g6 +(I0 +tp7273 +g8 +tp7274 +Rp7275 +(I1 +(I7 +tp7276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7277 +tp7278 +bsa(dp7279 +g4 +g5 +(g6 +(I0 +tp7280 +g8 +tp7281 +Rp7282 +(I1 +(I7 +tp7283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7284 +tp7285 +bsa(dp7286 +g4 +g5 +(g6 +(I0 +tp7287 +g8 +tp7288 +Rp7289 +(I1 +(I7 +tp7290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7291 +tp7292 +bsa(dp7293 +g4 +g5 +(g6 +(I0 +tp7294 +g8 +tp7295 +Rp7296 +(I1 +(I7 +tp7297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7298 +tp7299 +bsa(dp7300 +g4 +g5 +(g6 +(I0 +tp7301 +g8 +tp7302 +Rp7303 +(I1 +(I7 +tp7304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7305 +tp7306 +bsa(dp7307 +g4 +g5 +(g6 +(I0 +tp7308 +g8 +tp7309 +Rp7310 +(I1 +(I7 +tp7311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7312 +tp7313 +bsa(dp7314 +g4 +g5 +(g6 +(I0 +tp7315 +g8 +tp7316 +Rp7317 +(I1 +(I7 +tp7318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7319 +tp7320 +bsa(dp7321 +g4 +g5 +(g6 +(I0 +tp7322 +g8 +tp7323 +Rp7324 +(I1 +(I7 +tp7325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7326 +tp7327 +bsa(dp7328 +g4 +g5 +(g6 +(I0 +tp7329 +g8 +tp7330 +Rp7331 +(I1 +(I7 +tp7332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7333 +tp7334 +bsa(dp7335 +g4 +g5 +(g6 +(I0 +tp7336 +g8 +tp7337 +Rp7338 +(I1 +(I7 +tp7339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7340 +tp7341 +bsa(dp7342 +g4 +g5 +(g6 +(I0 +tp7343 +g8 +tp7344 +Rp7345 +(I1 +(I7 +tp7346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7347 +tp7348 +bsa(dp7349 +g4 +g5 +(g6 +(I0 +tp7350 +g8 +tp7351 +Rp7352 +(I1 +(I7 +tp7353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7354 +tp7355 +bsa(dp7356 +g4 +g5 +(g6 +(I0 +tp7357 +g8 +tp7358 +Rp7359 +(I1 +(I7 +tp7360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7361 +tp7362 +bsa(dp7363 +g4 +g5 +(g6 +(I0 +tp7364 +g8 +tp7365 +Rp7366 +(I1 +(I7 +tp7367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7368 +tp7369 +bsa(dp7370 +g4 +g5 +(g6 +(I0 +tp7371 +g8 +tp7372 +Rp7373 +(I1 +(I7 +tp7374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7375 +tp7376 +bsa(dp7377 +g4 +g5 +(g6 +(I0 +tp7378 +g8 +tp7379 +Rp7380 +(I1 +(I7 +tp7381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7382 +tp7383 +bsa(dp7384 +g4 +g5 +(g6 +(I0 +tp7385 +g8 +tp7386 +Rp7387 +(I1 +(I7 +tp7388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7389 +tp7390 +bsa(dp7391 +g4 +g5 +(g6 +(I0 +tp7392 +g8 +tp7393 +Rp7394 +(I1 +(I7 +tp7395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7396 +tp7397 +bsa(dp7398 +g4 +g5 +(g6 +(I0 +tp7399 +g8 +tp7400 +Rp7401 +(I1 +(I7 +tp7402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7403 +tp7404 +bsa(dp7405 +g4 +g5 +(g6 +(I0 +tp7406 +g8 +tp7407 +Rp7408 +(I1 +(I7 +tp7409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7410 +tp7411 +bsa(dp7412 +g4 +g5 +(g6 +(I0 +tp7413 +g8 +tp7414 +Rp7415 +(I1 +(I7 +tp7416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7417 +tp7418 +bsa(dp7419 +g4 +g5 +(g6 +(I0 +tp7420 +g8 +tp7421 +Rp7422 +(I1 +(I7 +tp7423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7424 +tp7425 +bsa(dp7426 +g4 +g5 +(g6 +(I0 +tp7427 +g8 +tp7428 +Rp7429 +(I1 +(I7 +tp7430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7431 +tp7432 +bsa(dp7433 +g4 +g5 +(g6 +(I0 +tp7434 +g8 +tp7435 +Rp7436 +(I1 +(I7 +tp7437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7438 +tp7439 +bsa(dp7440 +g4 +g5 +(g6 +(I0 +tp7441 +g8 +tp7442 +Rp7443 +(I1 +(I7 +tp7444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7445 +tp7446 +bsa(dp7447 +g4 +g5 +(g6 +(I0 +tp7448 +g8 +tp7449 +Rp7450 +(I1 +(I7 +tp7451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7452 +tp7453 +bsa(dp7454 +g4 +g5 +(g6 +(I0 +tp7455 +g8 +tp7456 +Rp7457 +(I1 +(I7 +tp7458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7459 +tp7460 +bsa(dp7461 +g4 +g5 +(g6 +(I0 +tp7462 +g8 +tp7463 +Rp7464 +(I1 +(I7 +tp7465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7466 +tp7467 +bsa(dp7468 +g4 +g5 +(g6 +(I0 +tp7469 +g8 +tp7470 +Rp7471 +(I1 +(I7 +tp7472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7473 +tp7474 +bsa(dp7475 +g4 +g5 +(g6 +(I0 +tp7476 +g8 +tp7477 +Rp7478 +(I1 +(I7 +tp7479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7480 +tp7481 +bsa(dp7482 +g4 +g5 +(g6 +(I0 +tp7483 +g8 +tp7484 +Rp7485 +(I1 +(I7 +tp7486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7487 +tp7488 +bsa(dp7489 +g4 +g5 +(g6 +(I0 +tp7490 +g8 +tp7491 +Rp7492 +(I1 +(I7 +tp7493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7494 +tp7495 +bsa(dp7496 +g4 +g5 +(g6 +(I0 +tp7497 +g8 +tp7498 +Rp7499 +(I1 +(I7 +tp7500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7501 +tp7502 +bsa(dp7503 +g4 +g5 +(g6 +(I0 +tp7504 +g8 +tp7505 +Rp7506 +(I1 +(I7 +tp7507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7508 +tp7509 +bsa(dp7510 +g4 +g5 +(g6 +(I0 +tp7511 +g8 +tp7512 +Rp7513 +(I1 +(I7 +tp7514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7515 +tp7516 +bsa(dp7517 +g4 +g5 +(g6 +(I0 +tp7518 +g8 +tp7519 +Rp7520 +(I1 +(I7 +tp7521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7522 +tp7523 +bsa(dp7524 +g4 +g5 +(g6 +(I0 +tp7525 +g8 +tp7526 +Rp7527 +(I1 +(I7 +tp7528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7529 +tp7530 +bsa(dp7531 +g4 +g5 +(g6 +(I0 +tp7532 +g8 +tp7533 +Rp7534 +(I1 +(I7 +tp7535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7536 +tp7537 +bsa(dp7538 +g4 +g5 +(g6 +(I0 +tp7539 +g8 +tp7540 +Rp7541 +(I1 +(I7 +tp7542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7543 +tp7544 +bsa(dp7545 +g4 +g5 +(g6 +(I0 +tp7546 +g8 +tp7547 +Rp7548 +(I1 +(I7 +tp7549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7550 +tp7551 +bsa(dp7552 +g4 +g5 +(g6 +(I0 +tp7553 +g8 +tp7554 +Rp7555 +(I1 +(I7 +tp7556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7557 +tp7558 +bsa(dp7559 +g4 +g5 +(g6 +(I0 +tp7560 +g8 +tp7561 +Rp7562 +(I1 +(I7 +tp7563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7564 +tp7565 +bsa(dp7566 +g4 +g5 +(g6 +(I0 +tp7567 +g8 +tp7568 +Rp7569 +(I1 +(I7 +tp7570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7571 +tp7572 +bsa(dp7573 +g4 +g5 +(g6 +(I0 +tp7574 +g8 +tp7575 +Rp7576 +(I1 +(I7 +tp7577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7578 +tp7579 +bsa(dp7580 +g4 +g5 +(g6 +(I0 +tp7581 +g8 +tp7582 +Rp7583 +(I1 +(I7 +tp7584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7585 +tp7586 +bsa(dp7587 +g4 +g5 +(g6 +(I0 +tp7588 +g8 +tp7589 +Rp7590 +(I1 +(I7 +tp7591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7592 +tp7593 +bsa(dp7594 +g4 +g5 +(g6 +(I0 +tp7595 +g8 +tp7596 +Rp7597 +(I1 +(I7 +tp7598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7599 +tp7600 +bsa(dp7601 +g4 +g5 +(g6 +(I0 +tp7602 +g8 +tp7603 +Rp7604 +(I1 +(I7 +tp7605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7606 +tp7607 +bsa(dp7608 +g4 +g5 +(g6 +(I0 +tp7609 +g8 +tp7610 +Rp7611 +(I1 +(I7 +tp7612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7613 +tp7614 +bsa(dp7615 +g4 +g5 +(g6 +(I0 +tp7616 +g8 +tp7617 +Rp7618 +(I1 +(I7 +tp7619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7620 +tp7621 +bsa(dp7622 +g4 +g5 +(g6 +(I0 +tp7623 +g8 +tp7624 +Rp7625 +(I1 +(I7 +tp7626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7627 +tp7628 +bsa(dp7629 +g4 +g5 +(g6 +(I0 +tp7630 +g8 +tp7631 +Rp7632 +(I1 +(I7 +tp7633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7634 +tp7635 +bsa(dp7636 +g4 +g5 +(g6 +(I0 +tp7637 +g8 +tp7638 +Rp7639 +(I1 +(I7 +tp7640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7641 +tp7642 +bsa(dp7643 +g4 +g5 +(g6 +(I0 +tp7644 +g8 +tp7645 +Rp7646 +(I1 +(I7 +tp7647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7648 +tp7649 +bsa(dp7650 +g4 +g5 +(g6 +(I0 +tp7651 +g8 +tp7652 +Rp7653 +(I1 +(I7 +tp7654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7655 +tp7656 +bsa(dp7657 +g4 +g5 +(g6 +(I0 +tp7658 +g8 +tp7659 +Rp7660 +(I1 +(I7 +tp7661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7662 +tp7663 +bsa(dp7664 +g4 +g5 +(g6 +(I0 +tp7665 +g8 +tp7666 +Rp7667 +(I1 +(I7 +tp7668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7669 +tp7670 +bsa(dp7671 +g4 +g5 +(g6 +(I0 +tp7672 +g8 +tp7673 +Rp7674 +(I1 +(I7 +tp7675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7676 +tp7677 +bsa(dp7678 +g4 +g5 +(g6 +(I0 +tp7679 +g8 +tp7680 +Rp7681 +(I1 +(I7 +tp7682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7683 +tp7684 +bsa(dp7685 +g4 +g5 +(g6 +(I0 +tp7686 +g8 +tp7687 +Rp7688 +(I1 +(I7 +tp7689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7690 +tp7691 +bsa(dp7692 +g4 +g5 +(g6 +(I0 +tp7693 +g8 +tp7694 +Rp7695 +(I1 +(I7 +tp7696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7697 +tp7698 +bsa(dp7699 +g4 +g5 +(g6 +(I0 +tp7700 +g8 +tp7701 +Rp7702 +(I1 +(I7 +tp7703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7704 +tp7705 +bsa(dp7706 +g4 +g5 +(g6 +(I0 +tp7707 +g8 +tp7708 +Rp7709 +(I1 +(I7 +tp7710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7711 +tp7712 +bsa(dp7713 +g4 +g5 +(g6 +(I0 +tp7714 +g8 +tp7715 +Rp7716 +(I1 +(I7 +tp7717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7718 +tp7719 +bsa(dp7720 +g4 +g5 +(g6 +(I0 +tp7721 +g8 +tp7722 +Rp7723 +(I1 +(I7 +tp7724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7725 +tp7726 +bsa(dp7727 +g4 +g5 +(g6 +(I0 +tp7728 +g8 +tp7729 +Rp7730 +(I1 +(I7 +tp7731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7732 +tp7733 +bsa(dp7734 +g4 +g5 +(g6 +(I0 +tp7735 +g8 +tp7736 +Rp7737 +(I1 +(I7 +tp7738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7739 +tp7740 +bsa(dp7741 +g4 +g5 +(g6 +(I0 +tp7742 +g8 +tp7743 +Rp7744 +(I1 +(I7 +tp7745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7746 +tp7747 +bsa(dp7748 +g4 +g5 +(g6 +(I0 +tp7749 +g8 +tp7750 +Rp7751 +(I1 +(I7 +tp7752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7753 +tp7754 +bsa(dp7755 +g4 +g5 +(g6 +(I0 +tp7756 +g8 +tp7757 +Rp7758 +(I1 +(I7 +tp7759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7760 +tp7761 +bsa(dp7762 +g4 +g5 +(g6 +(I0 +tp7763 +g8 +tp7764 +Rp7765 +(I1 +(I7 +tp7766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7767 +tp7768 +bsa(dp7769 +g4 +g5 +(g6 +(I0 +tp7770 +g8 +tp7771 +Rp7772 +(I1 +(I7 +tp7773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7774 +tp7775 +bsa(dp7776 +g4 +g5 +(g6 +(I0 +tp7777 +g8 +tp7778 +Rp7779 +(I1 +(I7 +tp7780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7781 +tp7782 +bsa(dp7783 +g4 +g5 +(g6 +(I0 +tp7784 +g8 +tp7785 +Rp7786 +(I1 +(I7 +tp7787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7788 +tp7789 +bsa(dp7790 +g4 +g5 +(g6 +(I0 +tp7791 +g8 +tp7792 +Rp7793 +(I1 +(I7 +tp7794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7795 +tp7796 +bsa(dp7797 +g4 +g5 +(g6 +(I0 +tp7798 +g8 +tp7799 +Rp7800 +(I1 +(I7 +tp7801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7802 +tp7803 +bsa(dp7804 +g4 +g5 +(g6 +(I0 +tp7805 +g8 +tp7806 +Rp7807 +(I1 +(I7 +tp7808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7809 +tp7810 +bsa(dp7811 +g4 +g5 +(g6 +(I0 +tp7812 +g8 +tp7813 +Rp7814 +(I1 +(I7 +tp7815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7816 +tp7817 +bsa(dp7818 +g4 +g5 +(g6 +(I0 +tp7819 +g8 +tp7820 +Rp7821 +(I1 +(I7 +tp7822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7823 +tp7824 +bsa(dp7825 +g4 +g5 +(g6 +(I0 +tp7826 +g8 +tp7827 +Rp7828 +(I1 +(I7 +tp7829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7830 +tp7831 +bsa(dp7832 +g4 +g5 +(g6 +(I0 +tp7833 +g8 +tp7834 +Rp7835 +(I1 +(I7 +tp7836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7837 +tp7838 +bsa(dp7839 +g4 +g5 +(g6 +(I0 +tp7840 +g8 +tp7841 +Rp7842 +(I1 +(I7 +tp7843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7844 +tp7845 +bsa(dp7846 +g4 +g5 +(g6 +(I0 +tp7847 +g8 +tp7848 +Rp7849 +(I1 +(I7 +tp7850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7851 +tp7852 +bsa(dp7853 +g4 +g5 +(g6 +(I0 +tp7854 +g8 +tp7855 +Rp7856 +(I1 +(I7 +tp7857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7858 +tp7859 +bsa(dp7860 +g4 +g5 +(g6 +(I0 +tp7861 +g8 +tp7862 +Rp7863 +(I1 +(I7 +tp7864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7865 +tp7866 +bsa(dp7867 +g4 +g5 +(g6 +(I0 +tp7868 +g8 +tp7869 +Rp7870 +(I1 +(I7 +tp7871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7872 +tp7873 +bsa(dp7874 +g4 +g5 +(g6 +(I0 +tp7875 +g8 +tp7876 +Rp7877 +(I1 +(I7 +tp7878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7879 +tp7880 +bsa(dp7881 +g4 +g5 +(g6 +(I0 +tp7882 +g8 +tp7883 +Rp7884 +(I1 +(I7 +tp7885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7886 +tp7887 +bsa(dp7888 +g4 +g5 +(g6 +(I0 +tp7889 +g8 +tp7890 +Rp7891 +(I1 +(I7 +tp7892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7893 +tp7894 +bsa(dp7895 +g4 +g5 +(g6 +(I0 +tp7896 +g8 +tp7897 +Rp7898 +(I1 +(I7 +tp7899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7900 +tp7901 +bsa(dp7902 +g4 +g5 +(g6 +(I0 +tp7903 +g8 +tp7904 +Rp7905 +(I1 +(I7 +tp7906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7907 +tp7908 +bsa(dp7909 +g4 +g5 +(g6 +(I0 +tp7910 +g8 +tp7911 +Rp7912 +(I1 +(I7 +tp7913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7914 +tp7915 +bsa(dp7916 +g4 +g5 +(g6 +(I0 +tp7917 +g8 +tp7918 +Rp7919 +(I1 +(I7 +tp7920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7921 +tp7922 +bsa(dp7923 +g4 +g5 +(g6 +(I0 +tp7924 +g8 +tp7925 +Rp7926 +(I1 +(I7 +tp7927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7928 +tp7929 +bsa(dp7930 +g4 +g5 +(g6 +(I0 +tp7931 +g8 +tp7932 +Rp7933 +(I1 +(I7 +tp7934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7935 +tp7936 +bsa(dp7937 +g4 +g5 +(g6 +(I0 +tp7938 +g8 +tp7939 +Rp7940 +(I1 +(I7 +tp7941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7942 +tp7943 +bsa(dp7944 +g4 +g5 +(g6 +(I0 +tp7945 +g8 +tp7946 +Rp7947 +(I1 +(I7 +tp7948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7949 +tp7950 +bsa(dp7951 +g4 +g5 +(g6 +(I0 +tp7952 +g8 +tp7953 +Rp7954 +(I1 +(I7 +tp7955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7956 +tp7957 +bsa(dp7958 +g4 +g5 +(g6 +(I0 +tp7959 +g8 +tp7960 +Rp7961 +(I1 +(I7 +tp7962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p7963 +tp7964 +bsa(dp7965 +g4 +g5 +(g6 +(I0 +tp7966 +g8 +tp7967 +Rp7968 +(I1 +(I7 +tp7969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7970 +tp7971 +bsa(dp7972 +g4 +g5 +(g6 +(I0 +tp7973 +g8 +tp7974 +Rp7975 +(I1 +(I7 +tp7976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7977 +tp7978 +bsa(dp7979 +g4 +g5 +(g6 +(I0 +tp7980 +g8 +tp7981 +Rp7982 +(I1 +(I7 +tp7983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7984 +tp7985 +bsa(dp7986 +g4 +g5 +(g6 +(I0 +tp7987 +g8 +tp7988 +Rp7989 +(I1 +(I7 +tp7990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p7991 +tp7992 +bsa(dp7993 +g4 +g5 +(g6 +(I0 +tp7994 +g8 +tp7995 +Rp7996 +(I1 +(I7 +tp7997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p7998 +tp7999 +bsa(dp8000 +g4 +g5 +(g6 +(I0 +tp8001 +g8 +tp8002 +Rp8003 +(I1 +(I7 +tp8004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8005 +tp8006 +bsa(dp8007 +g4 +g5 +(g6 +(I0 +tp8008 +g8 +tp8009 +Rp8010 +(I1 +(I7 +tp8011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8012 +tp8013 +bsa(dp8014 +g4 +g5 +(g6 +(I0 +tp8015 +g8 +tp8016 +Rp8017 +(I1 +(I7 +tp8018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8019 +tp8020 +bsa(dp8021 +g4 +g5 +(g6 +(I0 +tp8022 +g8 +tp8023 +Rp8024 +(I1 +(I7 +tp8025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8026 +tp8027 +bsa(dp8028 +g4 +g5 +(g6 +(I0 +tp8029 +g8 +tp8030 +Rp8031 +(I1 +(I7 +tp8032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8033 +tp8034 +bsa(dp8035 +g4 +g5 +(g6 +(I0 +tp8036 +g8 +tp8037 +Rp8038 +(I1 +(I7 +tp8039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8040 +tp8041 +bsa(dp8042 +g4 +g5 +(g6 +(I0 +tp8043 +g8 +tp8044 +Rp8045 +(I1 +(I7 +tp8046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8047 +tp8048 +bsa(dp8049 +g4 +g5 +(g6 +(I0 +tp8050 +g8 +tp8051 +Rp8052 +(I1 +(I7 +tp8053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8054 +tp8055 +bsa(dp8056 +g4 +g5 +(g6 +(I0 +tp8057 +g8 +tp8058 +Rp8059 +(I1 +(I7 +tp8060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8061 +tp8062 +bsa(dp8063 +g4 +g5 +(g6 +(I0 +tp8064 +g8 +tp8065 +Rp8066 +(I1 +(I7 +tp8067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8068 +tp8069 +bsa(dp8070 +g4 +g5 +(g6 +(I0 +tp8071 +g8 +tp8072 +Rp8073 +(I1 +(I7 +tp8074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8075 +tp8076 +bsa(dp8077 +g4 +g5 +(g6 +(I0 +tp8078 +g8 +tp8079 +Rp8080 +(I1 +(I7 +tp8081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8082 +tp8083 +bsa(dp8084 +g4 +g5 +(g6 +(I0 +tp8085 +g8 +tp8086 +Rp8087 +(I1 +(I7 +tp8088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8089 +tp8090 +bsa(dp8091 +g4 +g5 +(g6 +(I0 +tp8092 +g8 +tp8093 +Rp8094 +(I1 +(I7 +tp8095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8096 +tp8097 +bsa(dp8098 +g4 +g5 +(g6 +(I0 +tp8099 +g8 +tp8100 +Rp8101 +(I1 +(I7 +tp8102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8103 +tp8104 +bsa(dp8105 +g4 +g5 +(g6 +(I0 +tp8106 +g8 +tp8107 +Rp8108 +(I1 +(I7 +tp8109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8110 +tp8111 +bsa(dp8112 +g4 +g5 +(g6 +(I0 +tp8113 +g8 +tp8114 +Rp8115 +(I1 +(I7 +tp8116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8117 +tp8118 +bsa(dp8119 +g4 +g5 +(g6 +(I0 +tp8120 +g8 +tp8121 +Rp8122 +(I1 +(I7 +tp8123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8124 +tp8125 +bsa(dp8126 +g4 +g5 +(g6 +(I0 +tp8127 +g8 +tp8128 +Rp8129 +(I1 +(I7 +tp8130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8131 +tp8132 +bsa(dp8133 +g4 +g5 +(g6 +(I0 +tp8134 +g8 +tp8135 +Rp8136 +(I1 +(I7 +tp8137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8138 +tp8139 +bsa(dp8140 +g4 +g5 +(g6 +(I0 +tp8141 +g8 +tp8142 +Rp8143 +(I1 +(I7 +tp8144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8145 +tp8146 +bsa(dp8147 +g4 +g5 +(g6 +(I0 +tp8148 +g8 +tp8149 +Rp8150 +(I1 +(I7 +tp8151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8152 +tp8153 +bsa(dp8154 +g4 +g5 +(g6 +(I0 +tp8155 +g8 +tp8156 +Rp8157 +(I1 +(I7 +tp8158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8159 +tp8160 +bsa(dp8161 +g4 +g5 +(g6 +(I0 +tp8162 +g8 +tp8163 +Rp8164 +(I1 +(I7 +tp8165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8166 +tp8167 +bsa(dp8168 +g4 +g5 +(g6 +(I0 +tp8169 +g8 +tp8170 +Rp8171 +(I1 +(I7 +tp8172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8173 +tp8174 +bsa(dp8175 +g4 +g5 +(g6 +(I0 +tp8176 +g8 +tp8177 +Rp8178 +(I1 +(I7 +tp8179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8180 +tp8181 +bsa(dp8182 +g4 +g5 +(g6 +(I0 +tp8183 +g8 +tp8184 +Rp8185 +(I1 +(I7 +tp8186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8187 +tp8188 +bsa(dp8189 +g4 +g5 +(g6 +(I0 +tp8190 +g8 +tp8191 +Rp8192 +(I1 +(I7 +tp8193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8194 +tp8195 +bsa(dp8196 +g4 +g5 +(g6 +(I0 +tp8197 +g8 +tp8198 +Rp8199 +(I1 +(I7 +tp8200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8201 +tp8202 +bsa(dp8203 +g4 +g5 +(g6 +(I0 +tp8204 +g8 +tp8205 +Rp8206 +(I1 +(I7 +tp8207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8208 +tp8209 +bsa(dp8210 +g4 +g5 +(g6 +(I0 +tp8211 +g8 +tp8212 +Rp8213 +(I1 +(I7 +tp8214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8215 +tp8216 +bsa(dp8217 +g4 +g5 +(g6 +(I0 +tp8218 +g8 +tp8219 +Rp8220 +(I1 +(I7 +tp8221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8222 +tp8223 +bsa(dp8224 +g4 +g5 +(g6 +(I0 +tp8225 +g8 +tp8226 +Rp8227 +(I1 +(I7 +tp8228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8229 +tp8230 +bsa(dp8231 +g4 +g5 +(g6 +(I0 +tp8232 +g8 +tp8233 +Rp8234 +(I1 +(I7 +tp8235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8236 +tp8237 +bsa(dp8238 +g4 +g5 +(g6 +(I0 +tp8239 +g8 +tp8240 +Rp8241 +(I1 +(I7 +tp8242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8243 +tp8244 +bsa(dp8245 +g4 +g5 +(g6 +(I0 +tp8246 +g8 +tp8247 +Rp8248 +(I1 +(I7 +tp8249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8250 +tp8251 +bsa(dp8252 +g4 +g5 +(g6 +(I0 +tp8253 +g8 +tp8254 +Rp8255 +(I1 +(I7 +tp8256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8257 +tp8258 +bsa(dp8259 +g4 +g5 +(g6 +(I0 +tp8260 +g8 +tp8261 +Rp8262 +(I1 +(I7 +tp8263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8264 +tp8265 +bsa(dp8266 +g4 +g5 +(g6 +(I0 +tp8267 +g8 +tp8268 +Rp8269 +(I1 +(I7 +tp8270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8271 +tp8272 +bsa(dp8273 +g4 +g5 +(g6 +(I0 +tp8274 +g8 +tp8275 +Rp8276 +(I1 +(I7 +tp8277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8278 +tp8279 +bsa(dp8280 +g4 +g5 +(g6 +(I0 +tp8281 +g8 +tp8282 +Rp8283 +(I1 +(I7 +tp8284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8285 +tp8286 +bsa(dp8287 +g4 +g5 +(g6 +(I0 +tp8288 +g8 +tp8289 +Rp8290 +(I1 +(I7 +tp8291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8292 +tp8293 +bsa(dp8294 +g4 +g5 +(g6 +(I0 +tp8295 +g8 +tp8296 +Rp8297 +(I1 +(I7 +tp8298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8299 +tp8300 +bsa(dp8301 +g4 +g5 +(g6 +(I0 +tp8302 +g8 +tp8303 +Rp8304 +(I1 +(I7 +tp8305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8306 +tp8307 +bsa(dp8308 +g4 +g5 +(g6 +(I0 +tp8309 +g8 +tp8310 +Rp8311 +(I1 +(I7 +tp8312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8313 +tp8314 +bsa(dp8315 +g4 +g5 +(g6 +(I0 +tp8316 +g8 +tp8317 +Rp8318 +(I1 +(I7 +tp8319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8320 +tp8321 +bsa(dp8322 +g4 +g5 +(g6 +(I0 +tp8323 +g8 +tp8324 +Rp8325 +(I1 +(I7 +tp8326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8327 +tp8328 +bsa(dp8329 +g4 +g5 +(g6 +(I0 +tp8330 +g8 +tp8331 +Rp8332 +(I1 +(I7 +tp8333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8334 +tp8335 +bsa(dp8336 +g4 +g5 +(g6 +(I0 +tp8337 +g8 +tp8338 +Rp8339 +(I1 +(I7 +tp8340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8341 +tp8342 +bsa(dp8343 +g4 +g5 +(g6 +(I0 +tp8344 +g8 +tp8345 +Rp8346 +(I1 +(I7 +tp8347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8348 +tp8349 +bsa(dp8350 +g4 +g5 +(g6 +(I0 +tp8351 +g8 +tp8352 +Rp8353 +(I1 +(I7 +tp8354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8355 +tp8356 +bsa(dp8357 +g4 +g5 +(g6 +(I0 +tp8358 +g8 +tp8359 +Rp8360 +(I1 +(I7 +tp8361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8362 +tp8363 +bsa(dp8364 +g4 +g5 +(g6 +(I0 +tp8365 +g8 +tp8366 +Rp8367 +(I1 +(I7 +tp8368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8369 +tp8370 +bsa(dp8371 +g4 +g5 +(g6 +(I0 +tp8372 +g8 +tp8373 +Rp8374 +(I1 +(I7 +tp8375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8376 +tp8377 +bsa(dp8378 +g4 +g5 +(g6 +(I0 +tp8379 +g8 +tp8380 +Rp8381 +(I1 +(I7 +tp8382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8383 +tp8384 +bsa(dp8385 +g4 +g5 +(g6 +(I0 +tp8386 +g8 +tp8387 +Rp8388 +(I1 +(I7 +tp8389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8390 +tp8391 +bsa(dp8392 +g4 +g5 +(g6 +(I0 +tp8393 +g8 +tp8394 +Rp8395 +(I1 +(I7 +tp8396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8397 +tp8398 +bsa(dp8399 +g4 +g5 +(g6 +(I0 +tp8400 +g8 +tp8401 +Rp8402 +(I1 +(I7 +tp8403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8404 +tp8405 +bsa(dp8406 +g4 +g5 +(g6 +(I0 +tp8407 +g8 +tp8408 +Rp8409 +(I1 +(I7 +tp8410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8411 +tp8412 +bsa(dp8413 +g4 +g5 +(g6 +(I0 +tp8414 +g8 +tp8415 +Rp8416 +(I1 +(I7 +tp8417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8418 +tp8419 +bsa(dp8420 +g4 +g5 +(g6 +(I0 +tp8421 +g8 +tp8422 +Rp8423 +(I1 +(I7 +tp8424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8425 +tp8426 +bsa(dp8427 +g4 +g5 +(g6 +(I0 +tp8428 +g8 +tp8429 +Rp8430 +(I1 +(I7 +tp8431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8432 +tp8433 +bsa(dp8434 +g4 +g5 +(g6 +(I0 +tp8435 +g8 +tp8436 +Rp8437 +(I1 +(I7 +tp8438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8439 +tp8440 +bsa(dp8441 +g4 +g5 +(g6 +(I0 +tp8442 +g8 +tp8443 +Rp8444 +(I1 +(I7 +tp8445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8446 +tp8447 +bsa(dp8448 +g4 +g5 +(g6 +(I0 +tp8449 +g8 +tp8450 +Rp8451 +(I1 +(I7 +tp8452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8453 +tp8454 +bsa(dp8455 +g4 +g5 +(g6 +(I0 +tp8456 +g8 +tp8457 +Rp8458 +(I1 +(I7 +tp8459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8460 +tp8461 +bsa(dp8462 +g4 +g5 +(g6 +(I0 +tp8463 +g8 +tp8464 +Rp8465 +(I1 +(I7 +tp8466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8467 +tp8468 +bsa(dp8469 +g4 +g5 +(g6 +(I0 +tp8470 +g8 +tp8471 +Rp8472 +(I1 +(I7 +tp8473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8474 +tp8475 +bsa(dp8476 +g4 +g5 +(g6 +(I0 +tp8477 +g8 +tp8478 +Rp8479 +(I1 +(I7 +tp8480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8481 +tp8482 +bsa(dp8483 +g4 +g5 +(g6 +(I0 +tp8484 +g8 +tp8485 +Rp8486 +(I1 +(I7 +tp8487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8488 +tp8489 +bsa(dp8490 +g4 +g5 +(g6 +(I0 +tp8491 +g8 +tp8492 +Rp8493 +(I1 +(I7 +tp8494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8495 +tp8496 +bsa(dp8497 +g4 +g5 +(g6 +(I0 +tp8498 +g8 +tp8499 +Rp8500 +(I1 +(I7 +tp8501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8502 +tp8503 +bsa(dp8504 +g4 +g5 +(g6 +(I0 +tp8505 +g8 +tp8506 +Rp8507 +(I1 +(I7 +tp8508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8509 +tp8510 +bsa(dp8511 +g4 +g5 +(g6 +(I0 +tp8512 +g8 +tp8513 +Rp8514 +(I1 +(I7 +tp8515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8516 +tp8517 +bsa(dp8518 +g4 +g5 +(g6 +(I0 +tp8519 +g8 +tp8520 +Rp8521 +(I1 +(I7 +tp8522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8523 +tp8524 +bsa(dp8525 +g4 +g5 +(g6 +(I0 +tp8526 +g8 +tp8527 +Rp8528 +(I1 +(I7 +tp8529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8530 +tp8531 +bsa(dp8532 +g4 +g5 +(g6 +(I0 +tp8533 +g8 +tp8534 +Rp8535 +(I1 +(I7 +tp8536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8537 +tp8538 +bsa(dp8539 +g4 +g5 +(g6 +(I0 +tp8540 +g8 +tp8541 +Rp8542 +(I1 +(I7 +tp8543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8544 +tp8545 +bsa(dp8546 +g4 +g5 +(g6 +(I0 +tp8547 +g8 +tp8548 +Rp8549 +(I1 +(I7 +tp8550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8551 +tp8552 +bsa(dp8553 +g4 +g5 +(g6 +(I0 +tp8554 +g8 +tp8555 +Rp8556 +(I1 +(I7 +tp8557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8558 +tp8559 +bsa(dp8560 +g4 +g5 +(g6 +(I0 +tp8561 +g8 +tp8562 +Rp8563 +(I1 +(I7 +tp8564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8565 +tp8566 +bsa(dp8567 +g4 +g5 +(g6 +(I0 +tp8568 +g8 +tp8569 +Rp8570 +(I1 +(I7 +tp8571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8572 +tp8573 +bsa(dp8574 +g4 +g5 +(g6 +(I0 +tp8575 +g8 +tp8576 +Rp8577 +(I1 +(I7 +tp8578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8579 +tp8580 +bsa(dp8581 +g4 +g5 +(g6 +(I0 +tp8582 +g8 +tp8583 +Rp8584 +(I1 +(I7 +tp8585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8586 +tp8587 +bsa(dp8588 +g4 +g5 +(g6 +(I0 +tp8589 +g8 +tp8590 +Rp8591 +(I1 +(I7 +tp8592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8593 +tp8594 +bsa(dp8595 +g4 +g5 +(g6 +(I0 +tp8596 +g8 +tp8597 +Rp8598 +(I1 +(I7 +tp8599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8600 +tp8601 +bsa(dp8602 +g4 +g5 +(g6 +(I0 +tp8603 +g8 +tp8604 +Rp8605 +(I1 +(I7 +tp8606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8607 +tp8608 +bsa(dp8609 +g4 +g5 +(g6 +(I0 +tp8610 +g8 +tp8611 +Rp8612 +(I1 +(I7 +tp8613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8614 +tp8615 +bsa(dp8616 +g4 +g5 +(g6 +(I0 +tp8617 +g8 +tp8618 +Rp8619 +(I1 +(I7 +tp8620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8621 +tp8622 +bsa(dp8623 +g4 +g5 +(g6 +(I0 +tp8624 +g8 +tp8625 +Rp8626 +(I1 +(I7 +tp8627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8628 +tp8629 +bsa(dp8630 +g4 +g5 +(g6 +(I0 +tp8631 +g8 +tp8632 +Rp8633 +(I1 +(I7 +tp8634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8635 +tp8636 +bsa(dp8637 +g4 +g5 +(g6 +(I0 +tp8638 +g8 +tp8639 +Rp8640 +(I1 +(I7 +tp8641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8642 +tp8643 +bsa(dp8644 +g4 +g5 +(g6 +(I0 +tp8645 +g8 +tp8646 +Rp8647 +(I1 +(I7 +tp8648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8649 +tp8650 +bsa(dp8651 +g4 +g5 +(g6 +(I0 +tp8652 +g8 +tp8653 +Rp8654 +(I1 +(I7 +tp8655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8656 +tp8657 +bsa(dp8658 +g4 +g5 +(g6 +(I0 +tp8659 +g8 +tp8660 +Rp8661 +(I1 +(I7 +tp8662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8663 +tp8664 +bsa(dp8665 +g4 +g5 +(g6 +(I0 +tp8666 +g8 +tp8667 +Rp8668 +(I1 +(I7 +tp8669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8670 +tp8671 +bsa(dp8672 +g4 +g5 +(g6 +(I0 +tp8673 +g8 +tp8674 +Rp8675 +(I1 +(I7 +tp8676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8677 +tp8678 +bsa(dp8679 +g4 +g5 +(g6 +(I0 +tp8680 +g8 +tp8681 +Rp8682 +(I1 +(I7 +tp8683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8684 +tp8685 +bsa(dp8686 +g4 +g5 +(g6 +(I0 +tp8687 +g8 +tp8688 +Rp8689 +(I1 +(I7 +tp8690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8691 +tp8692 +bsa(dp8693 +g4 +g5 +(g6 +(I0 +tp8694 +g8 +tp8695 +Rp8696 +(I1 +(I7 +tp8697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8698 +tp8699 +bsa(dp8700 +g4 +g5 +(g6 +(I0 +tp8701 +g8 +tp8702 +Rp8703 +(I1 +(I7 +tp8704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8705 +tp8706 +bsa(dp8707 +g4 +g5 +(g6 +(I0 +tp8708 +g8 +tp8709 +Rp8710 +(I1 +(I7 +tp8711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8712 +tp8713 +bsa(dp8714 +g4 +g5 +(g6 +(I0 +tp8715 +g8 +tp8716 +Rp8717 +(I1 +(I7 +tp8718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8719 +tp8720 +bsa(dp8721 +g4 +g5 +(g6 +(I0 +tp8722 +g8 +tp8723 +Rp8724 +(I1 +(I7 +tp8725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8726 +tp8727 +bsa(dp8728 +g4 +g5 +(g6 +(I0 +tp8729 +g8 +tp8730 +Rp8731 +(I1 +(I7 +tp8732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8733 +tp8734 +bsa(dp8735 +g4 +g5 +(g6 +(I0 +tp8736 +g8 +tp8737 +Rp8738 +(I1 +(I7 +tp8739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8740 +tp8741 +bsa(dp8742 +g4 +g5 +(g6 +(I0 +tp8743 +g8 +tp8744 +Rp8745 +(I1 +(I7 +tp8746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8747 +tp8748 +bsa(dp8749 +g4 +g5 +(g6 +(I0 +tp8750 +g8 +tp8751 +Rp8752 +(I1 +(I7 +tp8753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8754 +tp8755 +bsa(dp8756 +g4 +g5 +(g6 +(I0 +tp8757 +g8 +tp8758 +Rp8759 +(I1 +(I7 +tp8760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8761 +tp8762 +bsa(dp8763 +g4 +g5 +(g6 +(I0 +tp8764 +g8 +tp8765 +Rp8766 +(I1 +(I7 +tp8767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8768 +tp8769 +bsa(dp8770 +g4 +g5 +(g6 +(I0 +tp8771 +g8 +tp8772 +Rp8773 +(I1 +(I7 +tp8774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8775 +tp8776 +bsa(dp8777 +g4 +g5 +(g6 +(I0 +tp8778 +g8 +tp8779 +Rp8780 +(I1 +(I7 +tp8781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8782 +tp8783 +bsa(dp8784 +g4 +g5 +(g6 +(I0 +tp8785 +g8 +tp8786 +Rp8787 +(I1 +(I7 +tp8788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8789 +tp8790 +bsa(dp8791 +g4 +g5 +(g6 +(I0 +tp8792 +g8 +tp8793 +Rp8794 +(I1 +(I7 +tp8795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8796 +tp8797 +bsa(dp8798 +g4 +g5 +(g6 +(I0 +tp8799 +g8 +tp8800 +Rp8801 +(I1 +(I7 +tp8802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8803 +tp8804 +bsa(dp8805 +g4 +g5 +(g6 +(I0 +tp8806 +g8 +tp8807 +Rp8808 +(I1 +(I7 +tp8809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8810 +tp8811 +bsa(dp8812 +g4 +g5 +(g6 +(I0 +tp8813 +g8 +tp8814 +Rp8815 +(I1 +(I7 +tp8816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8817 +tp8818 +bsa(dp8819 +g4 +g5 +(g6 +(I0 +tp8820 +g8 +tp8821 +Rp8822 +(I1 +(I7 +tp8823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8824 +tp8825 +bsa(dp8826 +g4 +g5 +(g6 +(I0 +tp8827 +g8 +tp8828 +Rp8829 +(I1 +(I7 +tp8830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8831 +tp8832 +bsa(dp8833 +g4 +g5 +(g6 +(I0 +tp8834 +g8 +tp8835 +Rp8836 +(I1 +(I7 +tp8837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8838 +tp8839 +bsa(dp8840 +g4 +g5 +(g6 +(I0 +tp8841 +g8 +tp8842 +Rp8843 +(I1 +(I7 +tp8844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8845 +tp8846 +bsa(dp8847 +g4 +g5 +(g6 +(I0 +tp8848 +g8 +tp8849 +Rp8850 +(I1 +(I7 +tp8851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8852 +tp8853 +bsa(dp8854 +g4 +g5 +(g6 +(I0 +tp8855 +g8 +tp8856 +Rp8857 +(I1 +(I7 +tp8858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8859 +tp8860 +bsa(dp8861 +g4 +g5 +(g6 +(I0 +tp8862 +g8 +tp8863 +Rp8864 +(I1 +(I7 +tp8865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8866 +tp8867 +bsa(dp8868 +g4 +g5 +(g6 +(I0 +tp8869 +g8 +tp8870 +Rp8871 +(I1 +(I7 +tp8872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8873 +tp8874 +bsa(dp8875 +g4 +g5 +(g6 +(I0 +tp8876 +g8 +tp8877 +Rp8878 +(I1 +(I7 +tp8879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8880 +tp8881 +bsa(dp8882 +g4 +g5 +(g6 +(I0 +tp8883 +g8 +tp8884 +Rp8885 +(I1 +(I7 +tp8886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8887 +tp8888 +bsa(dp8889 +g4 +g5 +(g6 +(I0 +tp8890 +g8 +tp8891 +Rp8892 +(I1 +(I7 +tp8893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8894 +tp8895 +bsa(dp8896 +g4 +g5 +(g6 +(I0 +tp8897 +g8 +tp8898 +Rp8899 +(I1 +(I7 +tp8900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8901 +tp8902 +bsa(dp8903 +g4 +g5 +(g6 +(I0 +tp8904 +g8 +tp8905 +Rp8906 +(I1 +(I7 +tp8907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8908 +tp8909 +bsa(dp8910 +g4 +g5 +(g6 +(I0 +tp8911 +g8 +tp8912 +Rp8913 +(I1 +(I7 +tp8914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8915 +tp8916 +bsa(dp8917 +g4 +g5 +(g6 +(I0 +tp8918 +g8 +tp8919 +Rp8920 +(I1 +(I7 +tp8921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8922 +tp8923 +bsa(dp8924 +g4 +g5 +(g6 +(I0 +tp8925 +g8 +tp8926 +Rp8927 +(I1 +(I7 +tp8928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8929 +tp8930 +bsa(dp8931 +g4 +g5 +(g6 +(I0 +tp8932 +g8 +tp8933 +Rp8934 +(I1 +(I7 +tp8935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8936 +tp8937 +bsa(dp8938 +g4 +g5 +(g6 +(I0 +tp8939 +g8 +tp8940 +Rp8941 +(I1 +(I7 +tp8942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8943 +tp8944 +bsa(dp8945 +g4 +g5 +(g6 +(I0 +tp8946 +g8 +tp8947 +Rp8948 +(I1 +(I7 +tp8949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8950 +tp8951 +bsa(dp8952 +g4 +g5 +(g6 +(I0 +tp8953 +g8 +tp8954 +Rp8955 +(I1 +(I7 +tp8956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8957 +tp8958 +bsa(dp8959 +g4 +g5 +(g6 +(I0 +tp8960 +g8 +tp8961 +Rp8962 +(I1 +(I7 +tp8963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8964 +tp8965 +bsa(dp8966 +g4 +g5 +(g6 +(I0 +tp8967 +g8 +tp8968 +Rp8969 +(I1 +(I7 +tp8970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p8971 +tp8972 +bsa(dp8973 +g4 +g5 +(g6 +(I0 +tp8974 +g8 +tp8975 +Rp8976 +(I1 +(I7 +tp8977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p8978 +tp8979 +bsa(dp8980 +g4 +g5 +(g6 +(I0 +tp8981 +g8 +tp8982 +Rp8983 +(I1 +(I7 +tp8984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8985 +tp8986 +bsa(dp8987 +g4 +g5 +(g6 +(I0 +tp8988 +g8 +tp8989 +Rp8990 +(I1 +(I7 +tp8991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8992 +tp8993 +bsa(dp8994 +g4 +g5 +(g6 +(I0 +tp8995 +g8 +tp8996 +Rp8997 +(I1 +(I7 +tp8998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p8999 +tp9000 +bsa(dp9001 +g4 +g5 +(g6 +(I0 +tp9002 +g8 +tp9003 +Rp9004 +(I1 +(I7 +tp9005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9006 +tp9007 +bsa(dp9008 +g4 +g5 +(g6 +(I0 +tp9009 +g8 +tp9010 +Rp9011 +(I1 +(I7 +tp9012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9013 +tp9014 +bsa(dp9015 +g4 +g5 +(g6 +(I0 +tp9016 +g8 +tp9017 +Rp9018 +(I1 +(I7 +tp9019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9020 +tp9021 +bsa(dp9022 +g4 +g5 +(g6 +(I0 +tp9023 +g8 +tp9024 +Rp9025 +(I1 +(I7 +tp9026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9027 +tp9028 +bsa(dp9029 +g4 +g5 +(g6 +(I0 +tp9030 +g8 +tp9031 +Rp9032 +(I1 +(I7 +tp9033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9034 +tp9035 +bsa(dp9036 +g4 +g5 +(g6 +(I0 +tp9037 +g8 +tp9038 +Rp9039 +(I1 +(I7 +tp9040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9041 +tp9042 +bsa(dp9043 +g4 +g5 +(g6 +(I0 +tp9044 +g8 +tp9045 +Rp9046 +(I1 +(I7 +tp9047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9048 +tp9049 +bsa(dp9050 +g4 +g5 +(g6 +(I0 +tp9051 +g8 +tp9052 +Rp9053 +(I1 +(I7 +tp9054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9055 +tp9056 +bsa(dp9057 +g4 +g5 +(g6 +(I0 +tp9058 +g8 +tp9059 +Rp9060 +(I1 +(I7 +tp9061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9062 +tp9063 +bsa(dp9064 +g4 +g5 +(g6 +(I0 +tp9065 +g8 +tp9066 +Rp9067 +(I1 +(I7 +tp9068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9069 +tp9070 +bsa(dp9071 +g4 +g5 +(g6 +(I0 +tp9072 +g8 +tp9073 +Rp9074 +(I1 +(I7 +tp9075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9076 +tp9077 +bsa(dp9078 +g4 +g5 +(g6 +(I0 +tp9079 +g8 +tp9080 +Rp9081 +(I1 +(I7 +tp9082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9083 +tp9084 +bsa(dp9085 +g4 +g5 +(g6 +(I0 +tp9086 +g8 +tp9087 +Rp9088 +(I1 +(I7 +tp9089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9090 +tp9091 +bsa(dp9092 +g4 +g5 +(g6 +(I0 +tp9093 +g8 +tp9094 +Rp9095 +(I1 +(I7 +tp9096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9097 +tp9098 +bsa(dp9099 +g4 +g5 +(g6 +(I0 +tp9100 +g8 +tp9101 +Rp9102 +(I1 +(I7 +tp9103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9104 +tp9105 +bsa(dp9106 +g4 +g5 +(g6 +(I0 +tp9107 +g8 +tp9108 +Rp9109 +(I1 +(I7 +tp9110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9111 +tp9112 +bsa(dp9113 +g4 +g5 +(g6 +(I0 +tp9114 +g8 +tp9115 +Rp9116 +(I1 +(I7 +tp9117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9118 +tp9119 +bsa(dp9120 +g4 +g5 +(g6 +(I0 +tp9121 +g8 +tp9122 +Rp9123 +(I1 +(I7 +tp9124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9125 +tp9126 +bsa(dp9127 +g4 +g5 +(g6 +(I0 +tp9128 +g8 +tp9129 +Rp9130 +(I1 +(I7 +tp9131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9132 +tp9133 +bsa(dp9134 +g4 +g5 +(g6 +(I0 +tp9135 +g8 +tp9136 +Rp9137 +(I1 +(I7 +tp9138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9139 +tp9140 +bsa(dp9141 +g4 +g5 +(g6 +(I0 +tp9142 +g8 +tp9143 +Rp9144 +(I1 +(I7 +tp9145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9146 +tp9147 +bsa(dp9148 +g4 +g5 +(g6 +(I0 +tp9149 +g8 +tp9150 +Rp9151 +(I1 +(I7 +tp9152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9153 +tp9154 +bsa(dp9155 +g4 +g5 +(g6 +(I0 +tp9156 +g8 +tp9157 +Rp9158 +(I1 +(I7 +tp9159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9160 +tp9161 +bsa(dp9162 +g4 +g5 +(g6 +(I0 +tp9163 +g8 +tp9164 +Rp9165 +(I1 +(I7 +tp9166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9167 +tp9168 +bsa(dp9169 +g4 +g5 +(g6 +(I0 +tp9170 +g8 +tp9171 +Rp9172 +(I1 +(I7 +tp9173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9174 +tp9175 +bsa(dp9176 +g4 +g5 +(g6 +(I0 +tp9177 +g8 +tp9178 +Rp9179 +(I1 +(I7 +tp9180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9181 +tp9182 +bsa(dp9183 +g4 +g5 +(g6 +(I0 +tp9184 +g8 +tp9185 +Rp9186 +(I1 +(I7 +tp9187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9188 +tp9189 +bsa(dp9190 +g4 +g5 +(g6 +(I0 +tp9191 +g8 +tp9192 +Rp9193 +(I1 +(I7 +tp9194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9195 +tp9196 +bsa(dp9197 +g4 +g5 +(g6 +(I0 +tp9198 +g8 +tp9199 +Rp9200 +(I1 +(I7 +tp9201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9202 +tp9203 +bsa(dp9204 +g4 +g5 +(g6 +(I0 +tp9205 +g8 +tp9206 +Rp9207 +(I1 +(I7 +tp9208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9209 +tp9210 +bsa(dp9211 +g4 +g5 +(g6 +(I0 +tp9212 +g8 +tp9213 +Rp9214 +(I1 +(I7 +tp9215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9216 +tp9217 +bsa(dp9218 +g4 +g5 +(g6 +(I0 +tp9219 +g8 +tp9220 +Rp9221 +(I1 +(I7 +tp9222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9223 +tp9224 +bsa(dp9225 +g4 +g5 +(g6 +(I0 +tp9226 +g8 +tp9227 +Rp9228 +(I1 +(I7 +tp9229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9230 +tp9231 +bsa(dp9232 +g4 +g5 +(g6 +(I0 +tp9233 +g8 +tp9234 +Rp9235 +(I1 +(I7 +tp9236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9237 +tp9238 +bsa(dp9239 +g4 +g5 +(g6 +(I0 +tp9240 +g8 +tp9241 +Rp9242 +(I1 +(I7 +tp9243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9244 +tp9245 +bsa(dp9246 +g4 +g5 +(g6 +(I0 +tp9247 +g8 +tp9248 +Rp9249 +(I1 +(I7 +tp9250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9251 +tp9252 +bsa(dp9253 +g4 +g5 +(g6 +(I0 +tp9254 +g8 +tp9255 +Rp9256 +(I1 +(I7 +tp9257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9258 +tp9259 +bsa(dp9260 +g4 +g5 +(g6 +(I0 +tp9261 +g8 +tp9262 +Rp9263 +(I1 +(I7 +tp9264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9265 +tp9266 +bsa(dp9267 +g4 +g5 +(g6 +(I0 +tp9268 +g8 +tp9269 +Rp9270 +(I1 +(I7 +tp9271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9272 +tp9273 +bsa(dp9274 +g4 +g5 +(g6 +(I0 +tp9275 +g8 +tp9276 +Rp9277 +(I1 +(I7 +tp9278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9279 +tp9280 +bsa(dp9281 +g4 +g5 +(g6 +(I0 +tp9282 +g8 +tp9283 +Rp9284 +(I1 +(I7 +tp9285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9286 +tp9287 +bsa(dp9288 +g4 +g5 +(g6 +(I0 +tp9289 +g8 +tp9290 +Rp9291 +(I1 +(I7 +tp9292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9293 +tp9294 +bsa(dp9295 +g4 +g5 +(g6 +(I0 +tp9296 +g8 +tp9297 +Rp9298 +(I1 +(I7 +tp9299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9300 +tp9301 +bsa(dp9302 +g4 +g5 +(g6 +(I0 +tp9303 +g8 +tp9304 +Rp9305 +(I1 +(I7 +tp9306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9307 +tp9308 +bsa(dp9309 +g4 +g5 +(g6 +(I0 +tp9310 +g8 +tp9311 +Rp9312 +(I1 +(I7 +tp9313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9314 +tp9315 +bsa(dp9316 +g4 +g5 +(g6 +(I0 +tp9317 +g8 +tp9318 +Rp9319 +(I1 +(I7 +tp9320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9321 +tp9322 +bsa(dp9323 +g4 +g5 +(g6 +(I0 +tp9324 +g8 +tp9325 +Rp9326 +(I1 +(I7 +tp9327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9328 +tp9329 +bsa(dp9330 +g4 +g5 +(g6 +(I0 +tp9331 +g8 +tp9332 +Rp9333 +(I1 +(I7 +tp9334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9335 +tp9336 +bsa(dp9337 +g4 +g5 +(g6 +(I0 +tp9338 +g8 +tp9339 +Rp9340 +(I1 +(I7 +tp9341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9342 +tp9343 +bsa(dp9344 +g4 +g5 +(g6 +(I0 +tp9345 +g8 +tp9346 +Rp9347 +(I1 +(I7 +tp9348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9349 +tp9350 +bsa(dp9351 +g4 +g5 +(g6 +(I0 +tp9352 +g8 +tp9353 +Rp9354 +(I1 +(I7 +tp9355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9356 +tp9357 +bsa(dp9358 +g4 +g5 +(g6 +(I0 +tp9359 +g8 +tp9360 +Rp9361 +(I1 +(I7 +tp9362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9363 +tp9364 +bsa(dp9365 +g4 +g5 +(g6 +(I0 +tp9366 +g8 +tp9367 +Rp9368 +(I1 +(I7 +tp9369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9370 +tp9371 +bsa(dp9372 +g4 +g5 +(g6 +(I0 +tp9373 +g8 +tp9374 +Rp9375 +(I1 +(I7 +tp9376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9377 +tp9378 +bsa(dp9379 +g4 +g5 +(g6 +(I0 +tp9380 +g8 +tp9381 +Rp9382 +(I1 +(I7 +tp9383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9384 +tp9385 +bsa(dp9386 +g4 +g5 +(g6 +(I0 +tp9387 +g8 +tp9388 +Rp9389 +(I1 +(I7 +tp9390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9391 +tp9392 +bsa(dp9393 +g4 +g5 +(g6 +(I0 +tp9394 +g8 +tp9395 +Rp9396 +(I1 +(I7 +tp9397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9398 +tp9399 +bsa(dp9400 +g4 +g5 +(g6 +(I0 +tp9401 +g8 +tp9402 +Rp9403 +(I1 +(I7 +tp9404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9405 +tp9406 +bsa(dp9407 +g4 +g5 +(g6 +(I0 +tp9408 +g8 +tp9409 +Rp9410 +(I1 +(I7 +tp9411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9412 +tp9413 +bsa(dp9414 +g4 +g5 +(g6 +(I0 +tp9415 +g8 +tp9416 +Rp9417 +(I1 +(I7 +tp9418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9419 +tp9420 +bsa(dp9421 +g4 +g5 +(g6 +(I0 +tp9422 +g8 +tp9423 +Rp9424 +(I1 +(I7 +tp9425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9426 +tp9427 +bsa(dp9428 +g4 +g5 +(g6 +(I0 +tp9429 +g8 +tp9430 +Rp9431 +(I1 +(I7 +tp9432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9433 +tp9434 +bsa(dp9435 +g4 +g5 +(g6 +(I0 +tp9436 +g8 +tp9437 +Rp9438 +(I1 +(I7 +tp9439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9440 +tp9441 +bsa(dp9442 +g4 +g5 +(g6 +(I0 +tp9443 +g8 +tp9444 +Rp9445 +(I1 +(I7 +tp9446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9447 +tp9448 +bsa(dp9449 +g4 +g5 +(g6 +(I0 +tp9450 +g8 +tp9451 +Rp9452 +(I1 +(I7 +tp9453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9454 +tp9455 +bsa(dp9456 +g4 +g5 +(g6 +(I0 +tp9457 +g8 +tp9458 +Rp9459 +(I1 +(I7 +tp9460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9461 +tp9462 +bsa(dp9463 +g4 +g5 +(g6 +(I0 +tp9464 +g8 +tp9465 +Rp9466 +(I1 +(I7 +tp9467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9468 +tp9469 +bsa(dp9470 +g4 +g5 +(g6 +(I0 +tp9471 +g8 +tp9472 +Rp9473 +(I1 +(I7 +tp9474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9475 +tp9476 +bsa(dp9477 +g4 +g5 +(g6 +(I0 +tp9478 +g8 +tp9479 +Rp9480 +(I1 +(I7 +tp9481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9482 +tp9483 +bsa(dp9484 +g4 +g5 +(g6 +(I0 +tp9485 +g8 +tp9486 +Rp9487 +(I1 +(I7 +tp9488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9489 +tp9490 +bsa(dp9491 +g4 +g5 +(g6 +(I0 +tp9492 +g8 +tp9493 +Rp9494 +(I1 +(I7 +tp9495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9496 +tp9497 +bsa(dp9498 +g4 +g5 +(g6 +(I0 +tp9499 +g8 +tp9500 +Rp9501 +(I1 +(I7 +tp9502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9503 +tp9504 +bsa(dp9505 +g4 +g5 +(g6 +(I0 +tp9506 +g8 +tp9507 +Rp9508 +(I1 +(I7 +tp9509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9510 +tp9511 +bsa(dp9512 +g4 +g5 +(g6 +(I0 +tp9513 +g8 +tp9514 +Rp9515 +(I1 +(I7 +tp9516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9517 +tp9518 +bsa(dp9519 +g4 +g5 +(g6 +(I0 +tp9520 +g8 +tp9521 +Rp9522 +(I1 +(I7 +tp9523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9524 +tp9525 +bsa(dp9526 +g4 +g5 +(g6 +(I0 +tp9527 +g8 +tp9528 +Rp9529 +(I1 +(I7 +tp9530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9531 +tp9532 +bsa(dp9533 +g4 +g5 +(g6 +(I0 +tp9534 +g8 +tp9535 +Rp9536 +(I1 +(I7 +tp9537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9538 +tp9539 +bsa(dp9540 +g4 +g5 +(g6 +(I0 +tp9541 +g8 +tp9542 +Rp9543 +(I1 +(I7 +tp9544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9545 +tp9546 +bsa(dp9547 +g4 +g5 +(g6 +(I0 +tp9548 +g8 +tp9549 +Rp9550 +(I1 +(I7 +tp9551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9552 +tp9553 +bsa(dp9554 +g4 +g5 +(g6 +(I0 +tp9555 +g8 +tp9556 +Rp9557 +(I1 +(I7 +tp9558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9559 +tp9560 +bsa(dp9561 +g4 +g5 +(g6 +(I0 +tp9562 +g8 +tp9563 +Rp9564 +(I1 +(I7 +tp9565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9566 +tp9567 +bsa(dp9568 +g4 +g5 +(g6 +(I0 +tp9569 +g8 +tp9570 +Rp9571 +(I1 +(I7 +tp9572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9573 +tp9574 +bsa(dp9575 +g4 +g5 +(g6 +(I0 +tp9576 +g8 +tp9577 +Rp9578 +(I1 +(I7 +tp9579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9580 +tp9581 +bsa(dp9582 +g4 +g5 +(g6 +(I0 +tp9583 +g8 +tp9584 +Rp9585 +(I1 +(I7 +tp9586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9587 +tp9588 +bsa(dp9589 +g4 +g5 +(g6 +(I0 +tp9590 +g8 +tp9591 +Rp9592 +(I1 +(I7 +tp9593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9594 +tp9595 +bsa(dp9596 +g4 +g5 +(g6 +(I0 +tp9597 +g8 +tp9598 +Rp9599 +(I1 +(I7 +tp9600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9601 +tp9602 +bsa(dp9603 +g4 +g5 +(g6 +(I0 +tp9604 +g8 +tp9605 +Rp9606 +(I1 +(I7 +tp9607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9608 +tp9609 +bsa(dp9610 +g4 +g5 +(g6 +(I0 +tp9611 +g8 +tp9612 +Rp9613 +(I1 +(I7 +tp9614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9615 +tp9616 +bsa(dp9617 +g4 +g5 +(g6 +(I0 +tp9618 +g8 +tp9619 +Rp9620 +(I1 +(I7 +tp9621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9622 +tp9623 +bsa(dp9624 +g4 +g5 +(g6 +(I0 +tp9625 +g8 +tp9626 +Rp9627 +(I1 +(I7 +tp9628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9629 +tp9630 +bsa(dp9631 +g4 +g5 +(g6 +(I0 +tp9632 +g8 +tp9633 +Rp9634 +(I1 +(I7 +tp9635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9636 +tp9637 +bsa(dp9638 +g4 +g5 +(g6 +(I0 +tp9639 +g8 +tp9640 +Rp9641 +(I1 +(I7 +tp9642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9643 +tp9644 +bsa(dp9645 +g4 +g5 +(g6 +(I0 +tp9646 +g8 +tp9647 +Rp9648 +(I1 +(I7 +tp9649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9650 +tp9651 +bsa(dp9652 +g4 +g5 +(g6 +(I0 +tp9653 +g8 +tp9654 +Rp9655 +(I1 +(I7 +tp9656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9657 +tp9658 +bsa(dp9659 +g4 +g5 +(g6 +(I0 +tp9660 +g8 +tp9661 +Rp9662 +(I1 +(I7 +tp9663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9664 +tp9665 +bsa(dp9666 +g4 +g5 +(g6 +(I0 +tp9667 +g8 +tp9668 +Rp9669 +(I1 +(I7 +tp9670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9671 +tp9672 +bsa(dp9673 +g4 +g5 +(g6 +(I0 +tp9674 +g8 +tp9675 +Rp9676 +(I1 +(I7 +tp9677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9678 +tp9679 +bsa(dp9680 +g4 +g5 +(g6 +(I0 +tp9681 +g8 +tp9682 +Rp9683 +(I1 +(I7 +tp9684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9685 +tp9686 +bsa(dp9687 +g4 +g5 +(g6 +(I0 +tp9688 +g8 +tp9689 +Rp9690 +(I1 +(I7 +tp9691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9692 +tp9693 +bsa(dp9694 +g4 +g5 +(g6 +(I0 +tp9695 +g8 +tp9696 +Rp9697 +(I1 +(I7 +tp9698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9699 +tp9700 +bsa(dp9701 +g4 +g5 +(g6 +(I0 +tp9702 +g8 +tp9703 +Rp9704 +(I1 +(I7 +tp9705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9706 +tp9707 +bsa(dp9708 +g4 +g5 +(g6 +(I0 +tp9709 +g8 +tp9710 +Rp9711 +(I1 +(I7 +tp9712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9713 +tp9714 +bsa(dp9715 +g4 +g5 +(g6 +(I0 +tp9716 +g8 +tp9717 +Rp9718 +(I1 +(I7 +tp9719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9720 +tp9721 +bsa(dp9722 +g4 +g5 +(g6 +(I0 +tp9723 +g8 +tp9724 +Rp9725 +(I1 +(I7 +tp9726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9727 +tp9728 +bsa(dp9729 +g4 +g5 +(g6 +(I0 +tp9730 +g8 +tp9731 +Rp9732 +(I1 +(I7 +tp9733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9734 +tp9735 +bsa(dp9736 +g4 +g5 +(g6 +(I0 +tp9737 +g8 +tp9738 +Rp9739 +(I1 +(I7 +tp9740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9741 +tp9742 +bsa(dp9743 +g4 +g5 +(g6 +(I0 +tp9744 +g8 +tp9745 +Rp9746 +(I1 +(I7 +tp9747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9748 +tp9749 +bsa(dp9750 +g4 +g5 +(g6 +(I0 +tp9751 +g8 +tp9752 +Rp9753 +(I1 +(I7 +tp9754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9755 +tp9756 +bsa(dp9757 +g4 +g5 +(g6 +(I0 +tp9758 +g8 +tp9759 +Rp9760 +(I1 +(I7 +tp9761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9762 +tp9763 +bsa(dp9764 +g4 +g5 +(g6 +(I0 +tp9765 +g8 +tp9766 +Rp9767 +(I1 +(I7 +tp9768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9769 +tp9770 +bsa(dp9771 +g4 +g5 +(g6 +(I0 +tp9772 +g8 +tp9773 +Rp9774 +(I1 +(I7 +tp9775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9776 +tp9777 +bsa(dp9778 +g4 +g5 +(g6 +(I0 +tp9779 +g8 +tp9780 +Rp9781 +(I1 +(I7 +tp9782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9783 +tp9784 +bsa(dp9785 +g4 +g5 +(g6 +(I0 +tp9786 +g8 +tp9787 +Rp9788 +(I1 +(I7 +tp9789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9790 +tp9791 +bsa(dp9792 +g4 +g5 +(g6 +(I0 +tp9793 +g8 +tp9794 +Rp9795 +(I1 +(I7 +tp9796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9797 +tp9798 +bsa(dp9799 +g4 +g5 +(g6 +(I0 +tp9800 +g8 +tp9801 +Rp9802 +(I1 +(I7 +tp9803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9804 +tp9805 +bsa(dp9806 +g4 +g5 +(g6 +(I0 +tp9807 +g8 +tp9808 +Rp9809 +(I1 +(I7 +tp9810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9811 +tp9812 +bsa(dp9813 +g4 +g5 +(g6 +(I0 +tp9814 +g8 +tp9815 +Rp9816 +(I1 +(I7 +tp9817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9818 +tp9819 +bsa(dp9820 +g4 +g5 +(g6 +(I0 +tp9821 +g8 +tp9822 +Rp9823 +(I1 +(I7 +tp9824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9825 +tp9826 +bsa(dp9827 +g4 +g5 +(g6 +(I0 +tp9828 +g8 +tp9829 +Rp9830 +(I1 +(I7 +tp9831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9832 +tp9833 +bsa(dp9834 +g4 +g5 +(g6 +(I0 +tp9835 +g8 +tp9836 +Rp9837 +(I1 +(I7 +tp9838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9839 +tp9840 +bsa(dp9841 +g4 +g5 +(g6 +(I0 +tp9842 +g8 +tp9843 +Rp9844 +(I1 +(I7 +tp9845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9846 +tp9847 +bsa(dp9848 +g4 +g5 +(g6 +(I0 +tp9849 +g8 +tp9850 +Rp9851 +(I1 +(I7 +tp9852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9853 +tp9854 +bsa(dp9855 +g4 +g5 +(g6 +(I0 +tp9856 +g8 +tp9857 +Rp9858 +(I1 +(I7 +tp9859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9860 +tp9861 +bsa(dp9862 +g4 +g5 +(g6 +(I0 +tp9863 +g8 +tp9864 +Rp9865 +(I1 +(I7 +tp9866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9867 +tp9868 +bsa(dp9869 +g4 +g5 +(g6 +(I0 +tp9870 +g8 +tp9871 +Rp9872 +(I1 +(I7 +tp9873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9874 +tp9875 +bsa(dp9876 +g4 +g5 +(g6 +(I0 +tp9877 +g8 +tp9878 +Rp9879 +(I1 +(I7 +tp9880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9881 +tp9882 +bsa(dp9883 +g4 +g5 +(g6 +(I0 +tp9884 +g8 +tp9885 +Rp9886 +(I1 +(I7 +tp9887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9888 +tp9889 +bsa(dp9890 +g4 +g5 +(g6 +(I0 +tp9891 +g8 +tp9892 +Rp9893 +(I1 +(I7 +tp9894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9895 +tp9896 +bsa(dp9897 +g4 +g5 +(g6 +(I0 +tp9898 +g8 +tp9899 +Rp9900 +(I1 +(I7 +tp9901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9902 +tp9903 +bsa(dp9904 +g4 +g5 +(g6 +(I0 +tp9905 +g8 +tp9906 +Rp9907 +(I1 +(I7 +tp9908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9909 +tp9910 +bsa(dp9911 +g4 +g5 +(g6 +(I0 +tp9912 +g8 +tp9913 +Rp9914 +(I1 +(I7 +tp9915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9916 +tp9917 +bsa(dp9918 +g4 +g5 +(g6 +(I0 +tp9919 +g8 +tp9920 +Rp9921 +(I1 +(I7 +tp9922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9923 +tp9924 +bsa(dp9925 +g4 +g5 +(g6 +(I0 +tp9926 +g8 +tp9927 +Rp9928 +(I1 +(I7 +tp9929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9930 +tp9931 +bsa(dp9932 +g4 +g5 +(g6 +(I0 +tp9933 +g8 +tp9934 +Rp9935 +(I1 +(I7 +tp9936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9937 +tp9938 +bsa(dp9939 +g4 +g5 +(g6 +(I0 +tp9940 +g8 +tp9941 +Rp9942 +(I1 +(I7 +tp9943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9944 +tp9945 +bsa(dp9946 +g4 +g5 +(g6 +(I0 +tp9947 +g8 +tp9948 +Rp9949 +(I1 +(I7 +tp9950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9951 +tp9952 +bsa(dp9953 +g4 +g5 +(g6 +(I0 +tp9954 +g8 +tp9955 +Rp9956 +(I1 +(I7 +tp9957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9958 +tp9959 +bsa(dp9960 +g4 +g5 +(g6 +(I0 +tp9961 +g8 +tp9962 +Rp9963 +(I1 +(I7 +tp9964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9965 +tp9966 +bsa(dp9967 +g4 +g5 +(g6 +(I0 +tp9968 +g8 +tp9969 +Rp9970 +(I1 +(I7 +tp9971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9972 +tp9973 +bsa(dp9974 +g4 +g5 +(g6 +(I0 +tp9975 +g8 +tp9976 +Rp9977 +(I1 +(I7 +tp9978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p9979 +tp9980 +bsa(dp9981 +g4 +g5 +(g6 +(I0 +tp9982 +g8 +tp9983 +Rp9984 +(I1 +(I7 +tp9985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p9986 +tp9987 +bsa(dp9988 +g4 +g5 +(g6 +(I0 +tp9989 +g8 +tp9990 +Rp9991 +(I1 +(I7 +tp9992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p9993 +tp9994 +bsa(dp9995 +g4 +g5 +(g6 +(I0 +tp9996 +g8 +tp9997 +Rp9998 +(I1 +(I7 +tp9999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10000 +tp10001 +bsa(dp10002 +g4 +g5 +(g6 +(I0 +tp10003 +g8 +tp10004 +Rp10005 +(I1 +(I7 +tp10006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10007 +tp10008 +bsa(dp10009 +g4 +g5 +(g6 +(I0 +tp10010 +g8 +tp10011 +Rp10012 +(I1 +(I7 +tp10013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10014 +tp10015 +bsa(dp10016 +g4 +g5 +(g6 +(I0 +tp10017 +g8 +tp10018 +Rp10019 +(I1 +(I7 +tp10020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10021 +tp10022 +bsa(dp10023 +g4 +g5 +(g6 +(I0 +tp10024 +g8 +tp10025 +Rp10026 +(I1 +(I7 +tp10027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10028 +tp10029 +bsa(dp10030 +g4 +g5 +(g6 +(I0 +tp10031 +g8 +tp10032 +Rp10033 +(I1 +(I7 +tp10034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10035 +tp10036 +bsa(dp10037 +g4 +g5 +(g6 +(I0 +tp10038 +g8 +tp10039 +Rp10040 +(I1 +(I7 +tp10041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10042 +tp10043 +bsa(dp10044 +g4 +g5 +(g6 +(I0 +tp10045 +g8 +tp10046 +Rp10047 +(I1 +(I7 +tp10048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10049 +tp10050 +bsa(dp10051 +g4 +g5 +(g6 +(I0 +tp10052 +g8 +tp10053 +Rp10054 +(I1 +(I7 +tp10055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10056 +tp10057 +bsa(dp10058 +g4 +g5 +(g6 +(I0 +tp10059 +g8 +tp10060 +Rp10061 +(I1 +(I7 +tp10062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10063 +tp10064 +bsa(dp10065 +g4 +g5 +(g6 +(I0 +tp10066 +g8 +tp10067 +Rp10068 +(I1 +(I7 +tp10069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10070 +tp10071 +bsa(dp10072 +g4 +g5 +(g6 +(I0 +tp10073 +g8 +tp10074 +Rp10075 +(I1 +(I7 +tp10076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10077 +tp10078 +bsa(dp10079 +g4 +g5 +(g6 +(I0 +tp10080 +g8 +tp10081 +Rp10082 +(I1 +(I7 +tp10083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10084 +tp10085 +bsa(dp10086 +g4 +g5 +(g6 +(I0 +tp10087 +g8 +tp10088 +Rp10089 +(I1 +(I7 +tp10090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10091 +tp10092 +bsa(dp10093 +g4 +g5 +(g6 +(I0 +tp10094 +g8 +tp10095 +Rp10096 +(I1 +(I7 +tp10097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10098 +tp10099 +bsa(dp10100 +g4 +g5 +(g6 +(I0 +tp10101 +g8 +tp10102 +Rp10103 +(I1 +(I7 +tp10104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10105 +tp10106 +bsa(dp10107 +g4 +g5 +(g6 +(I0 +tp10108 +g8 +tp10109 +Rp10110 +(I1 +(I7 +tp10111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10112 +tp10113 +bsa(dp10114 +g4 +g5 +(g6 +(I0 +tp10115 +g8 +tp10116 +Rp10117 +(I1 +(I7 +tp10118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10119 +tp10120 +bsa(dp10121 +g4 +g5 +(g6 +(I0 +tp10122 +g8 +tp10123 +Rp10124 +(I1 +(I7 +tp10125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10126 +tp10127 +bsa(dp10128 +g4 +g5 +(g6 +(I0 +tp10129 +g8 +tp10130 +Rp10131 +(I1 +(I7 +tp10132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10133 +tp10134 +bsa(dp10135 +g4 +g5 +(g6 +(I0 +tp10136 +g8 +tp10137 +Rp10138 +(I1 +(I7 +tp10139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10140 +tp10141 +bsa(dp10142 +g4 +g5 +(g6 +(I0 +tp10143 +g8 +tp10144 +Rp10145 +(I1 +(I7 +tp10146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10147 +tp10148 +bsa(dp10149 +g4 +g5 +(g6 +(I0 +tp10150 +g8 +tp10151 +Rp10152 +(I1 +(I7 +tp10153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10154 +tp10155 +bsa(dp10156 +g4 +g5 +(g6 +(I0 +tp10157 +g8 +tp10158 +Rp10159 +(I1 +(I7 +tp10160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10161 +tp10162 +bsa(dp10163 +g4 +g5 +(g6 +(I0 +tp10164 +g8 +tp10165 +Rp10166 +(I1 +(I7 +tp10167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10168 +tp10169 +bsa(dp10170 +g4 +g5 +(g6 +(I0 +tp10171 +g8 +tp10172 +Rp10173 +(I1 +(I7 +tp10174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10175 +tp10176 +bsa(dp10177 +g4 +g5 +(g6 +(I0 +tp10178 +g8 +tp10179 +Rp10180 +(I1 +(I7 +tp10181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10182 +tp10183 +bsa(dp10184 +g4 +g5 +(g6 +(I0 +tp10185 +g8 +tp10186 +Rp10187 +(I1 +(I7 +tp10188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10189 +tp10190 +bsa(dp10191 +g4 +g5 +(g6 +(I0 +tp10192 +g8 +tp10193 +Rp10194 +(I1 +(I7 +tp10195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10196 +tp10197 +bsa(dp10198 +g4 +g5 +(g6 +(I0 +tp10199 +g8 +tp10200 +Rp10201 +(I1 +(I7 +tp10202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10203 +tp10204 +bsa(dp10205 +g4 +g5 +(g6 +(I0 +tp10206 +g8 +tp10207 +Rp10208 +(I1 +(I7 +tp10209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10210 +tp10211 +bsa(dp10212 +g4 +g5 +(g6 +(I0 +tp10213 +g8 +tp10214 +Rp10215 +(I1 +(I7 +tp10216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10217 +tp10218 +bsa(dp10219 +g4 +g5 +(g6 +(I0 +tp10220 +g8 +tp10221 +Rp10222 +(I1 +(I7 +tp10223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10224 +tp10225 +bsa(dp10226 +g4 +g5 +(g6 +(I0 +tp10227 +g8 +tp10228 +Rp10229 +(I1 +(I7 +tp10230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10231 +tp10232 +bsa(dp10233 +g4 +g5 +(g6 +(I0 +tp10234 +g8 +tp10235 +Rp10236 +(I1 +(I7 +tp10237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10238 +tp10239 +bsa(dp10240 +g4 +g5 +(g6 +(I0 +tp10241 +g8 +tp10242 +Rp10243 +(I1 +(I7 +tp10244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10245 +tp10246 +bsa(dp10247 +g4 +g5 +(g6 +(I0 +tp10248 +g8 +tp10249 +Rp10250 +(I1 +(I7 +tp10251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10252 +tp10253 +bsa(dp10254 +g4 +g5 +(g6 +(I0 +tp10255 +g8 +tp10256 +Rp10257 +(I1 +(I7 +tp10258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10259 +tp10260 +bsa(dp10261 +g4 +g5 +(g6 +(I0 +tp10262 +g8 +tp10263 +Rp10264 +(I1 +(I7 +tp10265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10266 +tp10267 +bsa(dp10268 +g4 +g5 +(g6 +(I0 +tp10269 +g8 +tp10270 +Rp10271 +(I1 +(I7 +tp10272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10273 +tp10274 +bsa(dp10275 +g4 +g5 +(g6 +(I0 +tp10276 +g8 +tp10277 +Rp10278 +(I1 +(I7 +tp10279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10280 +tp10281 +bsa(dp10282 +g4 +g5 +(g6 +(I0 +tp10283 +g8 +tp10284 +Rp10285 +(I1 +(I7 +tp10286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10287 +tp10288 +bsa(dp10289 +g4 +g5 +(g6 +(I0 +tp10290 +g8 +tp10291 +Rp10292 +(I1 +(I7 +tp10293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10294 +tp10295 +bsa(dp10296 +g4 +g5 +(g6 +(I0 +tp10297 +g8 +tp10298 +Rp10299 +(I1 +(I7 +tp10300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10301 +tp10302 +bsa(dp10303 +g4 +g5 +(g6 +(I0 +tp10304 +g8 +tp10305 +Rp10306 +(I1 +(I7 +tp10307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10308 +tp10309 +bsa(dp10310 +g4 +g5 +(g6 +(I0 +tp10311 +g8 +tp10312 +Rp10313 +(I1 +(I7 +tp10314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10315 +tp10316 +bsa(dp10317 +g4 +g5 +(g6 +(I0 +tp10318 +g8 +tp10319 +Rp10320 +(I1 +(I7 +tp10321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10322 +tp10323 +bsa(dp10324 +g4 +g5 +(g6 +(I0 +tp10325 +g8 +tp10326 +Rp10327 +(I1 +(I7 +tp10328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10329 +tp10330 +bsa(dp10331 +g4 +g5 +(g6 +(I0 +tp10332 +g8 +tp10333 +Rp10334 +(I1 +(I7 +tp10335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10336 +tp10337 +bsa(dp10338 +g4 +g5 +(g6 +(I0 +tp10339 +g8 +tp10340 +Rp10341 +(I1 +(I7 +tp10342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10343 +tp10344 +bsa(dp10345 +g4 +g5 +(g6 +(I0 +tp10346 +g8 +tp10347 +Rp10348 +(I1 +(I7 +tp10349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10350 +tp10351 +bsa(dp10352 +g4 +g5 +(g6 +(I0 +tp10353 +g8 +tp10354 +Rp10355 +(I1 +(I7 +tp10356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10357 +tp10358 +bsa(dp10359 +g4 +g5 +(g6 +(I0 +tp10360 +g8 +tp10361 +Rp10362 +(I1 +(I7 +tp10363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10364 +tp10365 +bsa(dp10366 +g4 +g5 +(g6 +(I0 +tp10367 +g8 +tp10368 +Rp10369 +(I1 +(I7 +tp10370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10371 +tp10372 +bsa(dp10373 +g4 +g5 +(g6 +(I0 +tp10374 +g8 +tp10375 +Rp10376 +(I1 +(I7 +tp10377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10378 +tp10379 +bsa(dp10380 +g4 +g5 +(g6 +(I0 +tp10381 +g8 +tp10382 +Rp10383 +(I1 +(I7 +tp10384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10385 +tp10386 +bsa(dp10387 +g4 +g5 +(g6 +(I0 +tp10388 +g8 +tp10389 +Rp10390 +(I1 +(I7 +tp10391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10392 +tp10393 +bsa(dp10394 +g4 +g5 +(g6 +(I0 +tp10395 +g8 +tp10396 +Rp10397 +(I1 +(I7 +tp10398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10399 +tp10400 +bsa(dp10401 +g4 +g5 +(g6 +(I0 +tp10402 +g8 +tp10403 +Rp10404 +(I1 +(I7 +tp10405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10406 +tp10407 +bsa(dp10408 +g4 +g5 +(g6 +(I0 +tp10409 +g8 +tp10410 +Rp10411 +(I1 +(I7 +tp10412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10413 +tp10414 +bsa(dp10415 +g4 +g5 +(g6 +(I0 +tp10416 +g8 +tp10417 +Rp10418 +(I1 +(I7 +tp10419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10420 +tp10421 +bsa(dp10422 +g4 +g5 +(g6 +(I0 +tp10423 +g8 +tp10424 +Rp10425 +(I1 +(I7 +tp10426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10427 +tp10428 +bsa(dp10429 +g4 +g5 +(g6 +(I0 +tp10430 +g8 +tp10431 +Rp10432 +(I1 +(I7 +tp10433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10434 +tp10435 +bsa(dp10436 +g4 +g5 +(g6 +(I0 +tp10437 +g8 +tp10438 +Rp10439 +(I1 +(I7 +tp10440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10441 +tp10442 +bsa(dp10443 +g4 +g5 +(g6 +(I0 +tp10444 +g8 +tp10445 +Rp10446 +(I1 +(I7 +tp10447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10448 +tp10449 +bsa(dp10450 +g4 +g5 +(g6 +(I0 +tp10451 +g8 +tp10452 +Rp10453 +(I1 +(I7 +tp10454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10455 +tp10456 +bsa(dp10457 +g4 +g5 +(g6 +(I0 +tp10458 +g8 +tp10459 +Rp10460 +(I1 +(I7 +tp10461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10462 +tp10463 +bsa(dp10464 +g4 +g5 +(g6 +(I0 +tp10465 +g8 +tp10466 +Rp10467 +(I1 +(I7 +tp10468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10469 +tp10470 +bsa(dp10471 +g4 +g5 +(g6 +(I0 +tp10472 +g8 +tp10473 +Rp10474 +(I1 +(I7 +tp10475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10476 +tp10477 +bsa(dp10478 +g4 +g5 +(g6 +(I0 +tp10479 +g8 +tp10480 +Rp10481 +(I1 +(I7 +tp10482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10483 +tp10484 +bsa(dp10485 +g4 +g5 +(g6 +(I0 +tp10486 +g8 +tp10487 +Rp10488 +(I1 +(I7 +tp10489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10490 +tp10491 +bsa(dp10492 +g4 +g5 +(g6 +(I0 +tp10493 +g8 +tp10494 +Rp10495 +(I1 +(I7 +tp10496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10497 +tp10498 +bsa(dp10499 +g4 +g5 +(g6 +(I0 +tp10500 +g8 +tp10501 +Rp10502 +(I1 +(I7 +tp10503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10504 +tp10505 +bsa(dp10506 +g4 +g5 +(g6 +(I0 +tp10507 +g8 +tp10508 +Rp10509 +(I1 +(I7 +tp10510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10511 +tp10512 +bsa(dp10513 +g4 +g5 +(g6 +(I0 +tp10514 +g8 +tp10515 +Rp10516 +(I1 +(I7 +tp10517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10518 +tp10519 +bsa(dp10520 +g4 +g5 +(g6 +(I0 +tp10521 +g8 +tp10522 +Rp10523 +(I1 +(I7 +tp10524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10525 +tp10526 +bsa(dp10527 +g4 +g5 +(g6 +(I0 +tp10528 +g8 +tp10529 +Rp10530 +(I1 +(I7 +tp10531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10532 +tp10533 +bsa(dp10534 +g4 +g5 +(g6 +(I0 +tp10535 +g8 +tp10536 +Rp10537 +(I1 +(I7 +tp10538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10539 +tp10540 +bsa(dp10541 +g4 +g5 +(g6 +(I0 +tp10542 +g8 +tp10543 +Rp10544 +(I1 +(I7 +tp10545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10546 +tp10547 +bsa(dp10548 +g4 +g5 +(g6 +(I0 +tp10549 +g8 +tp10550 +Rp10551 +(I1 +(I7 +tp10552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10553 +tp10554 +bsa(dp10555 +g4 +g5 +(g6 +(I0 +tp10556 +g8 +tp10557 +Rp10558 +(I1 +(I7 +tp10559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10560 +tp10561 +bsa(dp10562 +g4 +g5 +(g6 +(I0 +tp10563 +g8 +tp10564 +Rp10565 +(I1 +(I7 +tp10566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10567 +tp10568 +bsa(dp10569 +g4 +g5 +(g6 +(I0 +tp10570 +g8 +tp10571 +Rp10572 +(I1 +(I7 +tp10573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10574 +tp10575 +bsa(dp10576 +g4 +g5 +(g6 +(I0 +tp10577 +g8 +tp10578 +Rp10579 +(I1 +(I7 +tp10580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10581 +tp10582 +bsa(dp10583 +g4 +g5 +(g6 +(I0 +tp10584 +g8 +tp10585 +Rp10586 +(I1 +(I7 +tp10587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10588 +tp10589 +bsa(dp10590 +g4 +g5 +(g6 +(I0 +tp10591 +g8 +tp10592 +Rp10593 +(I1 +(I7 +tp10594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10595 +tp10596 +bsa(dp10597 +g4 +g5 +(g6 +(I0 +tp10598 +g8 +tp10599 +Rp10600 +(I1 +(I7 +tp10601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10602 +tp10603 +bsa(dp10604 +g4 +g5 +(g6 +(I0 +tp10605 +g8 +tp10606 +Rp10607 +(I1 +(I7 +tp10608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10609 +tp10610 +bsa(dp10611 +g4 +g5 +(g6 +(I0 +tp10612 +g8 +tp10613 +Rp10614 +(I1 +(I7 +tp10615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10616 +tp10617 +bsa(dp10618 +g4 +g5 +(g6 +(I0 +tp10619 +g8 +tp10620 +Rp10621 +(I1 +(I7 +tp10622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10623 +tp10624 +bsa(dp10625 +g4 +g5 +(g6 +(I0 +tp10626 +g8 +tp10627 +Rp10628 +(I1 +(I7 +tp10629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10630 +tp10631 +bsa(dp10632 +g4 +g5 +(g6 +(I0 +tp10633 +g8 +tp10634 +Rp10635 +(I1 +(I7 +tp10636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10637 +tp10638 +bsa(dp10639 +g4 +g5 +(g6 +(I0 +tp10640 +g8 +tp10641 +Rp10642 +(I1 +(I7 +tp10643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10644 +tp10645 +bsa(dp10646 +g4 +g5 +(g6 +(I0 +tp10647 +g8 +tp10648 +Rp10649 +(I1 +(I7 +tp10650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10651 +tp10652 +bsa(dp10653 +g4 +g5 +(g6 +(I0 +tp10654 +g8 +tp10655 +Rp10656 +(I1 +(I7 +tp10657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10658 +tp10659 +bsa(dp10660 +g4 +g5 +(g6 +(I0 +tp10661 +g8 +tp10662 +Rp10663 +(I1 +(I7 +tp10664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10665 +tp10666 +bsa(dp10667 +g4 +g5 +(g6 +(I0 +tp10668 +g8 +tp10669 +Rp10670 +(I1 +(I7 +tp10671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10672 +tp10673 +bsa(dp10674 +g4 +g5 +(g6 +(I0 +tp10675 +g8 +tp10676 +Rp10677 +(I1 +(I7 +tp10678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10679 +tp10680 +bsa(dp10681 +g4 +g5 +(g6 +(I0 +tp10682 +g8 +tp10683 +Rp10684 +(I1 +(I7 +tp10685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10686 +tp10687 +bsa(dp10688 +g4 +g5 +(g6 +(I0 +tp10689 +g8 +tp10690 +Rp10691 +(I1 +(I7 +tp10692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10693 +tp10694 +bsa(dp10695 +g4 +g5 +(g6 +(I0 +tp10696 +g8 +tp10697 +Rp10698 +(I1 +(I7 +tp10699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10700 +tp10701 +bsa(dp10702 +g4 +g5 +(g6 +(I0 +tp10703 +g8 +tp10704 +Rp10705 +(I1 +(I7 +tp10706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10707 +tp10708 +bsa(dp10709 +g4 +g5 +(g6 +(I0 +tp10710 +g8 +tp10711 +Rp10712 +(I1 +(I7 +tp10713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10714 +tp10715 +bsa(dp10716 +g4 +g5 +(g6 +(I0 +tp10717 +g8 +tp10718 +Rp10719 +(I1 +(I7 +tp10720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10721 +tp10722 +bsa(dp10723 +g4 +g5 +(g6 +(I0 +tp10724 +g8 +tp10725 +Rp10726 +(I1 +(I7 +tp10727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10728 +tp10729 +bsa(dp10730 +g4 +g5 +(g6 +(I0 +tp10731 +g8 +tp10732 +Rp10733 +(I1 +(I7 +tp10734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10735 +tp10736 +bsa(dp10737 +g4 +g5 +(g6 +(I0 +tp10738 +g8 +tp10739 +Rp10740 +(I1 +(I7 +tp10741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10742 +tp10743 +bsa(dp10744 +g4 +g5 +(g6 +(I0 +tp10745 +g8 +tp10746 +Rp10747 +(I1 +(I7 +tp10748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10749 +tp10750 +bsa(dp10751 +g4 +g5 +(g6 +(I0 +tp10752 +g8 +tp10753 +Rp10754 +(I1 +(I7 +tp10755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10756 +tp10757 +bsa(dp10758 +g4 +g5 +(g6 +(I0 +tp10759 +g8 +tp10760 +Rp10761 +(I1 +(I7 +tp10762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10763 +tp10764 +bsa(dp10765 +g4 +g5 +(g6 +(I0 +tp10766 +g8 +tp10767 +Rp10768 +(I1 +(I7 +tp10769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10770 +tp10771 +bsa(dp10772 +g4 +g5 +(g6 +(I0 +tp10773 +g8 +tp10774 +Rp10775 +(I1 +(I7 +tp10776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10777 +tp10778 +bsa(dp10779 +g4 +g5 +(g6 +(I0 +tp10780 +g8 +tp10781 +Rp10782 +(I1 +(I7 +tp10783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10784 +tp10785 +bsa(dp10786 +g4 +g5 +(g6 +(I0 +tp10787 +g8 +tp10788 +Rp10789 +(I1 +(I7 +tp10790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10791 +tp10792 +bsa(dp10793 +g4 +g5 +(g6 +(I0 +tp10794 +g8 +tp10795 +Rp10796 +(I1 +(I7 +tp10797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10798 +tp10799 +bsa(dp10800 +g4 +g5 +(g6 +(I0 +tp10801 +g8 +tp10802 +Rp10803 +(I1 +(I7 +tp10804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10805 +tp10806 +bsa(dp10807 +g4 +g5 +(g6 +(I0 +tp10808 +g8 +tp10809 +Rp10810 +(I1 +(I7 +tp10811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10812 +tp10813 +bsa(dp10814 +g4 +g5 +(g6 +(I0 +tp10815 +g8 +tp10816 +Rp10817 +(I1 +(I7 +tp10818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10819 +tp10820 +bsa(dp10821 +g4 +g5 +(g6 +(I0 +tp10822 +g8 +tp10823 +Rp10824 +(I1 +(I7 +tp10825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10826 +tp10827 +bsa(dp10828 +g4 +g5 +(g6 +(I0 +tp10829 +g8 +tp10830 +Rp10831 +(I1 +(I7 +tp10832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10833 +tp10834 +bsa(dp10835 +g4 +g5 +(g6 +(I0 +tp10836 +g8 +tp10837 +Rp10838 +(I1 +(I7 +tp10839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10840 +tp10841 +bsa(dp10842 +g4 +g5 +(g6 +(I0 +tp10843 +g8 +tp10844 +Rp10845 +(I1 +(I7 +tp10846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10847 +tp10848 +bsa(dp10849 +g4 +g5 +(g6 +(I0 +tp10850 +g8 +tp10851 +Rp10852 +(I1 +(I7 +tp10853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10854 +tp10855 +bsa(dp10856 +g4 +g5 +(g6 +(I0 +tp10857 +g8 +tp10858 +Rp10859 +(I1 +(I7 +tp10860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10861 +tp10862 +bsa(dp10863 +g4 +g5 +(g6 +(I0 +tp10864 +g8 +tp10865 +Rp10866 +(I1 +(I7 +tp10867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10868 +tp10869 +bsa(dp10870 +g4 +g5 +(g6 +(I0 +tp10871 +g8 +tp10872 +Rp10873 +(I1 +(I7 +tp10874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10875 +tp10876 +bsa(dp10877 +g4 +g5 +(g6 +(I0 +tp10878 +g8 +tp10879 +Rp10880 +(I1 +(I7 +tp10881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10882 +tp10883 +bsa(dp10884 +g4 +g5 +(g6 +(I0 +tp10885 +g8 +tp10886 +Rp10887 +(I1 +(I7 +tp10888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10889 +tp10890 +bsa(dp10891 +g4 +g5 +(g6 +(I0 +tp10892 +g8 +tp10893 +Rp10894 +(I1 +(I7 +tp10895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10896 +tp10897 +bsa(dp10898 +g4 +g5 +(g6 +(I0 +tp10899 +g8 +tp10900 +Rp10901 +(I1 +(I7 +tp10902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10903 +tp10904 +bsa(dp10905 +g4 +g5 +(g6 +(I0 +tp10906 +g8 +tp10907 +Rp10908 +(I1 +(I7 +tp10909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10910 +tp10911 +bsa(dp10912 +g4 +g5 +(g6 +(I0 +tp10913 +g8 +tp10914 +Rp10915 +(I1 +(I7 +tp10916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10917 +tp10918 +bsa(dp10919 +g4 +g5 +(g6 +(I0 +tp10920 +g8 +tp10921 +Rp10922 +(I1 +(I7 +tp10923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10924 +tp10925 +bsa(dp10926 +g4 +g5 +(g6 +(I0 +tp10927 +g8 +tp10928 +Rp10929 +(I1 +(I7 +tp10930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10931 +tp10932 +bsa(dp10933 +g4 +g5 +(g6 +(I0 +tp10934 +g8 +tp10935 +Rp10936 +(I1 +(I7 +tp10937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10938 +tp10939 +bsa(dp10940 +g4 +g5 +(g6 +(I0 +tp10941 +g8 +tp10942 +Rp10943 +(I1 +(I7 +tp10944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10945 +tp10946 +bsa(dp10947 +g4 +g5 +(g6 +(I0 +tp10948 +g8 +tp10949 +Rp10950 +(I1 +(I7 +tp10951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10952 +tp10953 +bsa(dp10954 +g4 +g5 +(g6 +(I0 +tp10955 +g8 +tp10956 +Rp10957 +(I1 +(I7 +tp10958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10959 +tp10960 +bsa(dp10961 +g4 +g5 +(g6 +(I0 +tp10962 +g8 +tp10963 +Rp10964 +(I1 +(I7 +tp10965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p10966 +tp10967 +bsa(dp10968 +g4 +g5 +(g6 +(I0 +tp10969 +g8 +tp10970 +Rp10971 +(I1 +(I7 +tp10972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p10973 +tp10974 +bsa(dp10975 +g4 +g5 +(g6 +(I0 +tp10976 +g8 +tp10977 +Rp10978 +(I1 +(I7 +tp10979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10980 +tp10981 +bsa(dp10982 +g4 +g5 +(g6 +(I0 +tp10983 +g8 +tp10984 +Rp10985 +(I1 +(I7 +tp10986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10987 +tp10988 +bsa(dp10989 +g4 +g5 +(g6 +(I0 +tp10990 +g8 +tp10991 +Rp10992 +(I1 +(I7 +tp10993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p10994 +tp10995 +bsa(dp10996 +g4 +g5 +(g6 +(I0 +tp10997 +g8 +tp10998 +Rp10999 +(I1 +(I7 +tp11000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11001 +tp11002 +bsa(dp11003 +g4 +g5 +(g6 +(I0 +tp11004 +g8 +tp11005 +Rp11006 +(I1 +(I7 +tp11007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11008 +tp11009 +bsa(dp11010 +g4 +g5 +(g6 +(I0 +tp11011 +g8 +tp11012 +Rp11013 +(I1 +(I7 +tp11014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11015 +tp11016 +bsa(dp11017 +g4 +g5 +(g6 +(I0 +tp11018 +g8 +tp11019 +Rp11020 +(I1 +(I7 +tp11021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11022 +tp11023 +bsa(dp11024 +g4 +g5 +(g6 +(I0 +tp11025 +g8 +tp11026 +Rp11027 +(I1 +(I7 +tp11028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11029 +tp11030 +bsa(dp11031 +g4 +g5 +(g6 +(I0 +tp11032 +g8 +tp11033 +Rp11034 +(I1 +(I7 +tp11035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11036 +tp11037 +bsa(dp11038 +g4 +g5 +(g6 +(I0 +tp11039 +g8 +tp11040 +Rp11041 +(I1 +(I7 +tp11042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11043 +tp11044 +bsa(dp11045 +g4 +g5 +(g6 +(I0 +tp11046 +g8 +tp11047 +Rp11048 +(I1 +(I7 +tp11049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11050 +tp11051 +bsa(dp11052 +g4 +g5 +(g6 +(I0 +tp11053 +g8 +tp11054 +Rp11055 +(I1 +(I7 +tp11056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11057 +tp11058 +bsa(dp11059 +g4 +g5 +(g6 +(I0 +tp11060 +g8 +tp11061 +Rp11062 +(I1 +(I7 +tp11063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11064 +tp11065 +bsa(dp11066 +g4 +g5 +(g6 +(I0 +tp11067 +g8 +tp11068 +Rp11069 +(I1 +(I7 +tp11070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11071 +tp11072 +bsa(dp11073 +g4 +g5 +(g6 +(I0 +tp11074 +g8 +tp11075 +Rp11076 +(I1 +(I7 +tp11077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11078 +tp11079 +bsa(dp11080 +g4 +g5 +(g6 +(I0 +tp11081 +g8 +tp11082 +Rp11083 +(I1 +(I7 +tp11084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11085 +tp11086 +bsa(dp11087 +g4 +g5 +(g6 +(I0 +tp11088 +g8 +tp11089 +Rp11090 +(I1 +(I7 +tp11091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11092 +tp11093 +bsa(dp11094 +g4 +g5 +(g6 +(I0 +tp11095 +g8 +tp11096 +Rp11097 +(I1 +(I7 +tp11098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11099 +tp11100 +bsa(dp11101 +g4 +g5 +(g6 +(I0 +tp11102 +g8 +tp11103 +Rp11104 +(I1 +(I7 +tp11105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11106 +tp11107 +bsa(dp11108 +g4 +g5 +(g6 +(I0 +tp11109 +g8 +tp11110 +Rp11111 +(I1 +(I7 +tp11112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11113 +tp11114 +bsa(dp11115 +g4 +g5 +(g6 +(I0 +tp11116 +g8 +tp11117 +Rp11118 +(I1 +(I7 +tp11119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11120 +tp11121 +bsa(dp11122 +g4 +g5 +(g6 +(I0 +tp11123 +g8 +tp11124 +Rp11125 +(I1 +(I7 +tp11126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11127 +tp11128 +bsa(dp11129 +g4 +g5 +(g6 +(I0 +tp11130 +g8 +tp11131 +Rp11132 +(I1 +(I7 +tp11133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11134 +tp11135 +bsa(dp11136 +g4 +g5 +(g6 +(I0 +tp11137 +g8 +tp11138 +Rp11139 +(I1 +(I7 +tp11140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11141 +tp11142 +bsa(dp11143 +g4 +g5 +(g6 +(I0 +tp11144 +g8 +tp11145 +Rp11146 +(I1 +(I7 +tp11147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11148 +tp11149 +bsa(dp11150 +g4 +g5 +(g6 +(I0 +tp11151 +g8 +tp11152 +Rp11153 +(I1 +(I7 +tp11154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11155 +tp11156 +bsa(dp11157 +g4 +g5 +(g6 +(I0 +tp11158 +g8 +tp11159 +Rp11160 +(I1 +(I7 +tp11161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11162 +tp11163 +bsa(dp11164 +g4 +g5 +(g6 +(I0 +tp11165 +g8 +tp11166 +Rp11167 +(I1 +(I7 +tp11168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11169 +tp11170 +bsa(dp11171 +g4 +g5 +(g6 +(I0 +tp11172 +g8 +tp11173 +Rp11174 +(I1 +(I7 +tp11175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11176 +tp11177 +bsa(dp11178 +g4 +g5 +(g6 +(I0 +tp11179 +g8 +tp11180 +Rp11181 +(I1 +(I7 +tp11182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11183 +tp11184 +bsa(dp11185 +g4 +g5 +(g6 +(I0 +tp11186 +g8 +tp11187 +Rp11188 +(I1 +(I7 +tp11189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11190 +tp11191 +bsa(dp11192 +g4 +g5 +(g6 +(I0 +tp11193 +g8 +tp11194 +Rp11195 +(I1 +(I7 +tp11196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11197 +tp11198 +bsa(dp11199 +g4 +g5 +(g6 +(I0 +tp11200 +g8 +tp11201 +Rp11202 +(I1 +(I7 +tp11203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11204 +tp11205 +bsa(dp11206 +g4 +g5 +(g6 +(I0 +tp11207 +g8 +tp11208 +Rp11209 +(I1 +(I7 +tp11210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11211 +tp11212 +bsa(dp11213 +g4 +g5 +(g6 +(I0 +tp11214 +g8 +tp11215 +Rp11216 +(I1 +(I7 +tp11217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11218 +tp11219 +bsa(dp11220 +g4 +g5 +(g6 +(I0 +tp11221 +g8 +tp11222 +Rp11223 +(I1 +(I7 +tp11224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11225 +tp11226 +bsa(dp11227 +g4 +g5 +(g6 +(I0 +tp11228 +g8 +tp11229 +Rp11230 +(I1 +(I7 +tp11231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11232 +tp11233 +bsa(dp11234 +g4 +g5 +(g6 +(I0 +tp11235 +g8 +tp11236 +Rp11237 +(I1 +(I7 +tp11238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11239 +tp11240 +bsa(dp11241 +g4 +g5 +(g6 +(I0 +tp11242 +g8 +tp11243 +Rp11244 +(I1 +(I7 +tp11245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11246 +tp11247 +bsa(dp11248 +g4 +g5 +(g6 +(I0 +tp11249 +g8 +tp11250 +Rp11251 +(I1 +(I7 +tp11252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11253 +tp11254 +bsa(dp11255 +g4 +g5 +(g6 +(I0 +tp11256 +g8 +tp11257 +Rp11258 +(I1 +(I7 +tp11259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11260 +tp11261 +bsa(dp11262 +g4 +g5 +(g6 +(I0 +tp11263 +g8 +tp11264 +Rp11265 +(I1 +(I7 +tp11266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11267 +tp11268 +bsa(dp11269 +g4 +g5 +(g6 +(I0 +tp11270 +g8 +tp11271 +Rp11272 +(I1 +(I7 +tp11273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11274 +tp11275 +bsa(dp11276 +g4 +g5 +(g6 +(I0 +tp11277 +g8 +tp11278 +Rp11279 +(I1 +(I7 +tp11280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11281 +tp11282 +bsa(dp11283 +g4 +g5 +(g6 +(I0 +tp11284 +g8 +tp11285 +Rp11286 +(I1 +(I7 +tp11287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11288 +tp11289 +bsa(dp11290 +g4 +g5 +(g6 +(I0 +tp11291 +g8 +tp11292 +Rp11293 +(I1 +(I7 +tp11294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11295 +tp11296 +bsa(dp11297 +g4 +g5 +(g6 +(I0 +tp11298 +g8 +tp11299 +Rp11300 +(I1 +(I7 +tp11301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11302 +tp11303 +bsa(dp11304 +g4 +g5 +(g6 +(I0 +tp11305 +g8 +tp11306 +Rp11307 +(I1 +(I7 +tp11308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11309 +tp11310 +bsa(dp11311 +g4 +g5 +(g6 +(I0 +tp11312 +g8 +tp11313 +Rp11314 +(I1 +(I7 +tp11315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11316 +tp11317 +bsa(dp11318 +g4 +g5 +(g6 +(I0 +tp11319 +g8 +tp11320 +Rp11321 +(I1 +(I7 +tp11322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11323 +tp11324 +bsa(dp11325 +g4 +g5 +(g6 +(I0 +tp11326 +g8 +tp11327 +Rp11328 +(I1 +(I7 +tp11329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11330 +tp11331 +bsa(dp11332 +g4 +g5 +(g6 +(I0 +tp11333 +g8 +tp11334 +Rp11335 +(I1 +(I7 +tp11336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11337 +tp11338 +bsa(dp11339 +g4 +g5 +(g6 +(I0 +tp11340 +g8 +tp11341 +Rp11342 +(I1 +(I7 +tp11343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11344 +tp11345 +bsa(dp11346 +g4 +g5 +(g6 +(I0 +tp11347 +g8 +tp11348 +Rp11349 +(I1 +(I7 +tp11350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11351 +tp11352 +bsa(dp11353 +g4 +g5 +(g6 +(I0 +tp11354 +g8 +tp11355 +Rp11356 +(I1 +(I7 +tp11357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11358 +tp11359 +bsa(dp11360 +g4 +g5 +(g6 +(I0 +tp11361 +g8 +tp11362 +Rp11363 +(I1 +(I7 +tp11364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11365 +tp11366 +bsa(dp11367 +g4 +g5 +(g6 +(I0 +tp11368 +g8 +tp11369 +Rp11370 +(I1 +(I7 +tp11371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11372 +tp11373 +bsa(dp11374 +g4 +g5 +(g6 +(I0 +tp11375 +g8 +tp11376 +Rp11377 +(I1 +(I7 +tp11378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11379 +tp11380 +bsa(dp11381 +g4 +g5 +(g6 +(I0 +tp11382 +g8 +tp11383 +Rp11384 +(I1 +(I7 +tp11385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11386 +tp11387 +bsa(dp11388 +g4 +g5 +(g6 +(I0 +tp11389 +g8 +tp11390 +Rp11391 +(I1 +(I7 +tp11392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11393 +tp11394 +bsa(dp11395 +g4 +g5 +(g6 +(I0 +tp11396 +g8 +tp11397 +Rp11398 +(I1 +(I7 +tp11399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11400 +tp11401 +bsa(dp11402 +g4 +g5 +(g6 +(I0 +tp11403 +g8 +tp11404 +Rp11405 +(I1 +(I7 +tp11406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11407 +tp11408 +bsa(dp11409 +g4 +g5 +(g6 +(I0 +tp11410 +g8 +tp11411 +Rp11412 +(I1 +(I7 +tp11413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11414 +tp11415 +bsa(dp11416 +g4 +g5 +(g6 +(I0 +tp11417 +g8 +tp11418 +Rp11419 +(I1 +(I7 +tp11420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11421 +tp11422 +bsa(dp11423 +g4 +g5 +(g6 +(I0 +tp11424 +g8 +tp11425 +Rp11426 +(I1 +(I7 +tp11427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11428 +tp11429 +bsa(dp11430 +g4 +g5 +(g6 +(I0 +tp11431 +g8 +tp11432 +Rp11433 +(I1 +(I7 +tp11434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11435 +tp11436 +bsa(dp11437 +g4 +g5 +(g6 +(I0 +tp11438 +g8 +tp11439 +Rp11440 +(I1 +(I7 +tp11441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11442 +tp11443 +bsa(dp11444 +g4 +g5 +(g6 +(I0 +tp11445 +g8 +tp11446 +Rp11447 +(I1 +(I7 +tp11448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11449 +tp11450 +bsa(dp11451 +g4 +g5 +(g6 +(I0 +tp11452 +g8 +tp11453 +Rp11454 +(I1 +(I7 +tp11455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11456 +tp11457 +bsa(dp11458 +g4 +g5 +(g6 +(I0 +tp11459 +g8 +tp11460 +Rp11461 +(I1 +(I7 +tp11462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11463 +tp11464 +bsa(dp11465 +g4 +g5 +(g6 +(I0 +tp11466 +g8 +tp11467 +Rp11468 +(I1 +(I7 +tp11469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11470 +tp11471 +bsa(dp11472 +g4 +g5 +(g6 +(I0 +tp11473 +g8 +tp11474 +Rp11475 +(I1 +(I7 +tp11476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11477 +tp11478 +bsa(dp11479 +g4 +g5 +(g6 +(I0 +tp11480 +g8 +tp11481 +Rp11482 +(I1 +(I7 +tp11483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11484 +tp11485 +bsa(dp11486 +g4 +g5 +(g6 +(I0 +tp11487 +g8 +tp11488 +Rp11489 +(I1 +(I7 +tp11490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11491 +tp11492 +bsa(dp11493 +g4 +g5 +(g6 +(I0 +tp11494 +g8 +tp11495 +Rp11496 +(I1 +(I7 +tp11497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11498 +tp11499 +bsa(dp11500 +g4 +g5 +(g6 +(I0 +tp11501 +g8 +tp11502 +Rp11503 +(I1 +(I7 +tp11504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11505 +tp11506 +bsa(dp11507 +g4 +g5 +(g6 +(I0 +tp11508 +g8 +tp11509 +Rp11510 +(I1 +(I7 +tp11511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11512 +tp11513 +bsa(dp11514 +g4 +g5 +(g6 +(I0 +tp11515 +g8 +tp11516 +Rp11517 +(I1 +(I7 +tp11518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11519 +tp11520 +bsa(dp11521 +g4 +g5 +(g6 +(I0 +tp11522 +g8 +tp11523 +Rp11524 +(I1 +(I7 +tp11525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11526 +tp11527 +bsa(dp11528 +g4 +g5 +(g6 +(I0 +tp11529 +g8 +tp11530 +Rp11531 +(I1 +(I7 +tp11532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11533 +tp11534 +bsa(dp11535 +g4 +g5 +(g6 +(I0 +tp11536 +g8 +tp11537 +Rp11538 +(I1 +(I7 +tp11539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11540 +tp11541 +bsa(dp11542 +g4 +g5 +(g6 +(I0 +tp11543 +g8 +tp11544 +Rp11545 +(I1 +(I7 +tp11546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11547 +tp11548 +bsa(dp11549 +g4 +g5 +(g6 +(I0 +tp11550 +g8 +tp11551 +Rp11552 +(I1 +(I7 +tp11553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11554 +tp11555 +bsa(dp11556 +g4 +g5 +(g6 +(I0 +tp11557 +g8 +tp11558 +Rp11559 +(I1 +(I7 +tp11560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11561 +tp11562 +bsa(dp11563 +g4 +g5 +(g6 +(I0 +tp11564 +g8 +tp11565 +Rp11566 +(I1 +(I7 +tp11567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11568 +tp11569 +bsa(dp11570 +g4 +g5 +(g6 +(I0 +tp11571 +g8 +tp11572 +Rp11573 +(I1 +(I7 +tp11574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11575 +tp11576 +bsa(dp11577 +g4 +g5 +(g6 +(I0 +tp11578 +g8 +tp11579 +Rp11580 +(I1 +(I7 +tp11581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11582 +tp11583 +bsa(dp11584 +g4 +g5 +(g6 +(I0 +tp11585 +g8 +tp11586 +Rp11587 +(I1 +(I7 +tp11588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11589 +tp11590 +bsa(dp11591 +g4 +g5 +(g6 +(I0 +tp11592 +g8 +tp11593 +Rp11594 +(I1 +(I7 +tp11595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11596 +tp11597 +bsa(dp11598 +g4 +g5 +(g6 +(I0 +tp11599 +g8 +tp11600 +Rp11601 +(I1 +(I7 +tp11602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11603 +tp11604 +bsa(dp11605 +g4 +g5 +(g6 +(I0 +tp11606 +g8 +tp11607 +Rp11608 +(I1 +(I7 +tp11609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11610 +tp11611 +bsa(dp11612 +g4 +g5 +(g6 +(I0 +tp11613 +g8 +tp11614 +Rp11615 +(I1 +(I7 +tp11616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11617 +tp11618 +bsa(dp11619 +g4 +g5 +(g6 +(I0 +tp11620 +g8 +tp11621 +Rp11622 +(I1 +(I7 +tp11623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11624 +tp11625 +bsa(dp11626 +g4 +g5 +(g6 +(I0 +tp11627 +g8 +tp11628 +Rp11629 +(I1 +(I7 +tp11630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11631 +tp11632 +bsa(dp11633 +g4 +g5 +(g6 +(I0 +tp11634 +g8 +tp11635 +Rp11636 +(I1 +(I7 +tp11637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11638 +tp11639 +bsa(dp11640 +g4 +g5 +(g6 +(I0 +tp11641 +g8 +tp11642 +Rp11643 +(I1 +(I7 +tp11644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11645 +tp11646 +bsa(dp11647 +g4 +g5 +(g6 +(I0 +tp11648 +g8 +tp11649 +Rp11650 +(I1 +(I7 +tp11651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11652 +tp11653 +bsa(dp11654 +g4 +g5 +(g6 +(I0 +tp11655 +g8 +tp11656 +Rp11657 +(I1 +(I7 +tp11658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11659 +tp11660 +bsa(dp11661 +g4 +g5 +(g6 +(I0 +tp11662 +g8 +tp11663 +Rp11664 +(I1 +(I7 +tp11665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11666 +tp11667 +bsa(dp11668 +g4 +g5 +(g6 +(I0 +tp11669 +g8 +tp11670 +Rp11671 +(I1 +(I7 +tp11672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11673 +tp11674 +bsa(dp11675 +g4 +g5 +(g6 +(I0 +tp11676 +g8 +tp11677 +Rp11678 +(I1 +(I7 +tp11679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11680 +tp11681 +bsa(dp11682 +g4 +g5 +(g6 +(I0 +tp11683 +g8 +tp11684 +Rp11685 +(I1 +(I7 +tp11686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11687 +tp11688 +bsa(dp11689 +g4 +g5 +(g6 +(I0 +tp11690 +g8 +tp11691 +Rp11692 +(I1 +(I7 +tp11693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11694 +tp11695 +bsa(dp11696 +g4 +g5 +(g6 +(I0 +tp11697 +g8 +tp11698 +Rp11699 +(I1 +(I7 +tp11700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11701 +tp11702 +bsa(dp11703 +g4 +g5 +(g6 +(I0 +tp11704 +g8 +tp11705 +Rp11706 +(I1 +(I7 +tp11707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11708 +tp11709 +bsa(dp11710 +g4 +g5 +(g6 +(I0 +tp11711 +g8 +tp11712 +Rp11713 +(I1 +(I7 +tp11714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11715 +tp11716 +bsa(dp11717 +g4 +g5 +(g6 +(I0 +tp11718 +g8 +tp11719 +Rp11720 +(I1 +(I7 +tp11721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11722 +tp11723 +bsa(dp11724 +g4 +g5 +(g6 +(I0 +tp11725 +g8 +tp11726 +Rp11727 +(I1 +(I7 +tp11728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11729 +tp11730 +bsa(dp11731 +g4 +g5 +(g6 +(I0 +tp11732 +g8 +tp11733 +Rp11734 +(I1 +(I7 +tp11735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11736 +tp11737 +bsa(dp11738 +g4 +g5 +(g6 +(I0 +tp11739 +g8 +tp11740 +Rp11741 +(I1 +(I7 +tp11742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11743 +tp11744 +bsa(dp11745 +g4 +g5 +(g6 +(I0 +tp11746 +g8 +tp11747 +Rp11748 +(I1 +(I7 +tp11749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11750 +tp11751 +bsa(dp11752 +g4 +g5 +(g6 +(I0 +tp11753 +g8 +tp11754 +Rp11755 +(I1 +(I7 +tp11756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11757 +tp11758 +bsa(dp11759 +g4 +g5 +(g6 +(I0 +tp11760 +g8 +tp11761 +Rp11762 +(I1 +(I7 +tp11763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11764 +tp11765 +bsa(dp11766 +g4 +g5 +(g6 +(I0 +tp11767 +g8 +tp11768 +Rp11769 +(I1 +(I7 +tp11770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11771 +tp11772 +bsa(dp11773 +g4 +g5 +(g6 +(I0 +tp11774 +g8 +tp11775 +Rp11776 +(I1 +(I7 +tp11777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11778 +tp11779 +bsa(dp11780 +g4 +g5 +(g6 +(I0 +tp11781 +g8 +tp11782 +Rp11783 +(I1 +(I7 +tp11784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11785 +tp11786 +bsa(dp11787 +g4 +g5 +(g6 +(I0 +tp11788 +g8 +tp11789 +Rp11790 +(I1 +(I7 +tp11791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11792 +tp11793 +bsa(dp11794 +g4 +g5 +(g6 +(I0 +tp11795 +g8 +tp11796 +Rp11797 +(I1 +(I7 +tp11798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11799 +tp11800 +bsa(dp11801 +g4 +g5 +(g6 +(I0 +tp11802 +g8 +tp11803 +Rp11804 +(I1 +(I7 +tp11805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11806 +tp11807 +bsa(dp11808 +g4 +g5 +(g6 +(I0 +tp11809 +g8 +tp11810 +Rp11811 +(I1 +(I7 +tp11812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11813 +tp11814 +bsa(dp11815 +g4 +g5 +(g6 +(I0 +tp11816 +g8 +tp11817 +Rp11818 +(I1 +(I7 +tp11819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11820 +tp11821 +bsa(dp11822 +g4 +g5 +(g6 +(I0 +tp11823 +g8 +tp11824 +Rp11825 +(I1 +(I7 +tp11826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11827 +tp11828 +bsa(dp11829 +g4 +g5 +(g6 +(I0 +tp11830 +g8 +tp11831 +Rp11832 +(I1 +(I7 +tp11833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11834 +tp11835 +bsa(dp11836 +g4 +g5 +(g6 +(I0 +tp11837 +g8 +tp11838 +Rp11839 +(I1 +(I7 +tp11840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11841 +tp11842 +bsa(dp11843 +g4 +g5 +(g6 +(I0 +tp11844 +g8 +tp11845 +Rp11846 +(I1 +(I7 +tp11847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11848 +tp11849 +bsa(dp11850 +g4 +g5 +(g6 +(I0 +tp11851 +g8 +tp11852 +Rp11853 +(I1 +(I7 +tp11854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11855 +tp11856 +bsa(dp11857 +g4 +g5 +(g6 +(I0 +tp11858 +g8 +tp11859 +Rp11860 +(I1 +(I7 +tp11861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11862 +tp11863 +bsa(dp11864 +g4 +g5 +(g6 +(I0 +tp11865 +g8 +tp11866 +Rp11867 +(I1 +(I7 +tp11868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11869 +tp11870 +bsa(dp11871 +g4 +g5 +(g6 +(I0 +tp11872 +g8 +tp11873 +Rp11874 +(I1 +(I7 +tp11875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11876 +tp11877 +bsa(dp11878 +g4 +g5 +(g6 +(I0 +tp11879 +g8 +tp11880 +Rp11881 +(I1 +(I7 +tp11882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11883 +tp11884 +bsa(dp11885 +g4 +g5 +(g6 +(I0 +tp11886 +g8 +tp11887 +Rp11888 +(I1 +(I7 +tp11889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11890 +tp11891 +bsa(dp11892 +g4 +g5 +(g6 +(I0 +tp11893 +g8 +tp11894 +Rp11895 +(I1 +(I7 +tp11896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11897 +tp11898 +bsa(dp11899 +g4 +g5 +(g6 +(I0 +tp11900 +g8 +tp11901 +Rp11902 +(I1 +(I7 +tp11903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11904 +tp11905 +bsa(dp11906 +g4 +g5 +(g6 +(I0 +tp11907 +g8 +tp11908 +Rp11909 +(I1 +(I7 +tp11910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11911 +tp11912 +bsa(dp11913 +g4 +g5 +(g6 +(I0 +tp11914 +g8 +tp11915 +Rp11916 +(I1 +(I7 +tp11917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11918 +tp11919 +bsa(dp11920 +g4 +g5 +(g6 +(I0 +tp11921 +g8 +tp11922 +Rp11923 +(I1 +(I7 +tp11924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11925 +tp11926 +bsa(dp11927 +g4 +g5 +(g6 +(I0 +tp11928 +g8 +tp11929 +Rp11930 +(I1 +(I7 +tp11931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11932 +tp11933 +bsa(dp11934 +g4 +g5 +(g6 +(I0 +tp11935 +g8 +tp11936 +Rp11937 +(I1 +(I7 +tp11938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11939 +tp11940 +bsa(dp11941 +g4 +g5 +(g6 +(I0 +tp11942 +g8 +tp11943 +Rp11944 +(I1 +(I7 +tp11945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11946 +tp11947 +bsa(dp11948 +g4 +g5 +(g6 +(I0 +tp11949 +g8 +tp11950 +Rp11951 +(I1 +(I7 +tp11952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11953 +tp11954 +bsa(dp11955 +g4 +g5 +(g6 +(I0 +tp11956 +g8 +tp11957 +Rp11958 +(I1 +(I7 +tp11959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11960 +tp11961 +bsa(dp11962 +g4 +g5 +(g6 +(I0 +tp11963 +g8 +tp11964 +Rp11965 +(I1 +(I7 +tp11966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11967 +tp11968 +bsa(dp11969 +g4 +g5 +(g6 +(I0 +tp11970 +g8 +tp11971 +Rp11972 +(I1 +(I7 +tp11973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11974 +tp11975 +bsa(dp11976 +g4 +g5 +(g6 +(I0 +tp11977 +g8 +tp11978 +Rp11979 +(I1 +(I7 +tp11980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p11981 +tp11982 +bsa(dp11983 +g4 +g5 +(g6 +(I0 +tp11984 +g8 +tp11985 +Rp11986 +(I1 +(I7 +tp11987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p11988 +tp11989 +bsa(dp11990 +g4 +g5 +(g6 +(I0 +tp11991 +g8 +tp11992 +Rp11993 +(I1 +(I7 +tp11994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p11995 +tp11996 +bsa(dp11997 +g4 +g5 +(g6 +(I0 +tp11998 +g8 +tp11999 +Rp12000 +(I1 +(I7 +tp12001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12002 +tp12003 +bsa(dp12004 +g4 +g5 +(g6 +(I0 +tp12005 +g8 +tp12006 +Rp12007 +(I1 +(I7 +tp12008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12009 +tp12010 +bsa(dp12011 +g4 +g5 +(g6 +(I0 +tp12012 +g8 +tp12013 +Rp12014 +(I1 +(I7 +tp12015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12016 +tp12017 +bsa(dp12018 +g4 +g5 +(g6 +(I0 +tp12019 +g8 +tp12020 +Rp12021 +(I1 +(I7 +tp12022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12023 +tp12024 +bsa(dp12025 +g4 +g5 +(g6 +(I0 +tp12026 +g8 +tp12027 +Rp12028 +(I1 +(I7 +tp12029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12030 +tp12031 +bsa(dp12032 +g4 +g5 +(g6 +(I0 +tp12033 +g8 +tp12034 +Rp12035 +(I1 +(I7 +tp12036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12037 +tp12038 +bsa(dp12039 +g4 +g5 +(g6 +(I0 +tp12040 +g8 +tp12041 +Rp12042 +(I1 +(I7 +tp12043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12044 +tp12045 +bsa(dp12046 +g4 +g5 +(g6 +(I0 +tp12047 +g8 +tp12048 +Rp12049 +(I1 +(I7 +tp12050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12051 +tp12052 +bsa(dp12053 +g4 +g5 +(g6 +(I0 +tp12054 +g8 +tp12055 +Rp12056 +(I1 +(I7 +tp12057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12058 +tp12059 +bsa(dp12060 +g4 +g5 +(g6 +(I0 +tp12061 +g8 +tp12062 +Rp12063 +(I1 +(I7 +tp12064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12065 +tp12066 +bsa(dp12067 +g4 +g5 +(g6 +(I0 +tp12068 +g8 +tp12069 +Rp12070 +(I1 +(I7 +tp12071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12072 +tp12073 +bsa(dp12074 +g4 +g5 +(g6 +(I0 +tp12075 +g8 +tp12076 +Rp12077 +(I1 +(I7 +tp12078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12079 +tp12080 +bsa(dp12081 +g4 +g5 +(g6 +(I0 +tp12082 +g8 +tp12083 +Rp12084 +(I1 +(I7 +tp12085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12086 +tp12087 +bsa(dp12088 +g4 +g5 +(g6 +(I0 +tp12089 +g8 +tp12090 +Rp12091 +(I1 +(I7 +tp12092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12093 +tp12094 +bsa(dp12095 +g4 +g5 +(g6 +(I0 +tp12096 +g8 +tp12097 +Rp12098 +(I1 +(I7 +tp12099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12100 +tp12101 +bsa(dp12102 +g4 +g5 +(g6 +(I0 +tp12103 +g8 +tp12104 +Rp12105 +(I1 +(I7 +tp12106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12107 +tp12108 +bsa(dp12109 +g4 +g5 +(g6 +(I0 +tp12110 +g8 +tp12111 +Rp12112 +(I1 +(I7 +tp12113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12114 +tp12115 +bsa(dp12116 +g4 +g5 +(g6 +(I0 +tp12117 +g8 +tp12118 +Rp12119 +(I1 +(I7 +tp12120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12121 +tp12122 +bsa(dp12123 +g4 +g5 +(g6 +(I0 +tp12124 +g8 +tp12125 +Rp12126 +(I1 +(I7 +tp12127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12128 +tp12129 +bsa(dp12130 +g4 +g5 +(g6 +(I0 +tp12131 +g8 +tp12132 +Rp12133 +(I1 +(I7 +tp12134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12135 +tp12136 +bsa(dp12137 +g4 +g5 +(g6 +(I0 +tp12138 +g8 +tp12139 +Rp12140 +(I1 +(I7 +tp12141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12142 +tp12143 +bsa(dp12144 +g4 +g5 +(g6 +(I0 +tp12145 +g8 +tp12146 +Rp12147 +(I1 +(I7 +tp12148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12149 +tp12150 +bsa(dp12151 +g4 +g5 +(g6 +(I0 +tp12152 +g8 +tp12153 +Rp12154 +(I1 +(I7 +tp12155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12156 +tp12157 +bsa(dp12158 +g4 +g5 +(g6 +(I0 +tp12159 +g8 +tp12160 +Rp12161 +(I1 +(I7 +tp12162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12163 +tp12164 +bsa(dp12165 +g4 +g5 +(g6 +(I0 +tp12166 +g8 +tp12167 +Rp12168 +(I1 +(I7 +tp12169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12170 +tp12171 +bsa(dp12172 +g4 +g5 +(g6 +(I0 +tp12173 +g8 +tp12174 +Rp12175 +(I1 +(I7 +tp12176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12177 +tp12178 +bsa(dp12179 +g4 +g5 +(g6 +(I0 +tp12180 +g8 +tp12181 +Rp12182 +(I1 +(I7 +tp12183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12184 +tp12185 +bsa(dp12186 +g4 +g5 +(g6 +(I0 +tp12187 +g8 +tp12188 +Rp12189 +(I1 +(I7 +tp12190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12191 +tp12192 +bsa(dp12193 +g4 +g5 +(g6 +(I0 +tp12194 +g8 +tp12195 +Rp12196 +(I1 +(I7 +tp12197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12198 +tp12199 +bsa(dp12200 +g4 +g5 +(g6 +(I0 +tp12201 +g8 +tp12202 +Rp12203 +(I1 +(I7 +tp12204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12205 +tp12206 +bsa(dp12207 +g4 +g5 +(g6 +(I0 +tp12208 +g8 +tp12209 +Rp12210 +(I1 +(I7 +tp12211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12212 +tp12213 +bsa(dp12214 +g4 +g5 +(g6 +(I0 +tp12215 +g8 +tp12216 +Rp12217 +(I1 +(I7 +tp12218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12219 +tp12220 +bsa(dp12221 +g4 +g5 +(g6 +(I0 +tp12222 +g8 +tp12223 +Rp12224 +(I1 +(I7 +tp12225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12226 +tp12227 +bsa(dp12228 +g4 +g5 +(g6 +(I0 +tp12229 +g8 +tp12230 +Rp12231 +(I1 +(I7 +tp12232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12233 +tp12234 +bsa(dp12235 +g4 +g5 +(g6 +(I0 +tp12236 +g8 +tp12237 +Rp12238 +(I1 +(I7 +tp12239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12240 +tp12241 +bsa(dp12242 +g4 +g5 +(g6 +(I0 +tp12243 +g8 +tp12244 +Rp12245 +(I1 +(I7 +tp12246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12247 +tp12248 +bsa(dp12249 +g4 +g5 +(g6 +(I0 +tp12250 +g8 +tp12251 +Rp12252 +(I1 +(I7 +tp12253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12254 +tp12255 +bsa(dp12256 +g4 +g5 +(g6 +(I0 +tp12257 +g8 +tp12258 +Rp12259 +(I1 +(I7 +tp12260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12261 +tp12262 +bsa(dp12263 +g4 +g5 +(g6 +(I0 +tp12264 +g8 +tp12265 +Rp12266 +(I1 +(I7 +tp12267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12268 +tp12269 +bsa(dp12270 +g4 +g5 +(g6 +(I0 +tp12271 +g8 +tp12272 +Rp12273 +(I1 +(I7 +tp12274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12275 +tp12276 +bsa(dp12277 +g4 +g5 +(g6 +(I0 +tp12278 +g8 +tp12279 +Rp12280 +(I1 +(I7 +tp12281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12282 +tp12283 +bsa(dp12284 +g4 +g5 +(g6 +(I0 +tp12285 +g8 +tp12286 +Rp12287 +(I1 +(I7 +tp12288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12289 +tp12290 +bsa(dp12291 +g4 +g5 +(g6 +(I0 +tp12292 +g8 +tp12293 +Rp12294 +(I1 +(I7 +tp12295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12296 +tp12297 +bsa(dp12298 +g4 +g5 +(g6 +(I0 +tp12299 +g8 +tp12300 +Rp12301 +(I1 +(I7 +tp12302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12303 +tp12304 +bsa(dp12305 +g4 +g5 +(g6 +(I0 +tp12306 +g8 +tp12307 +Rp12308 +(I1 +(I7 +tp12309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12310 +tp12311 +bsa(dp12312 +g4 +g5 +(g6 +(I0 +tp12313 +g8 +tp12314 +Rp12315 +(I1 +(I7 +tp12316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12317 +tp12318 +bsa(dp12319 +g4 +g5 +(g6 +(I0 +tp12320 +g8 +tp12321 +Rp12322 +(I1 +(I7 +tp12323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12324 +tp12325 +bsa(dp12326 +g4 +g5 +(g6 +(I0 +tp12327 +g8 +tp12328 +Rp12329 +(I1 +(I7 +tp12330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12331 +tp12332 +bsa(dp12333 +g4 +g5 +(g6 +(I0 +tp12334 +g8 +tp12335 +Rp12336 +(I1 +(I7 +tp12337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12338 +tp12339 +bsa(dp12340 +g4 +g5 +(g6 +(I0 +tp12341 +g8 +tp12342 +Rp12343 +(I1 +(I7 +tp12344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12345 +tp12346 +bsa(dp12347 +g4 +g5 +(g6 +(I0 +tp12348 +g8 +tp12349 +Rp12350 +(I1 +(I7 +tp12351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12352 +tp12353 +bsa(dp12354 +g4 +g5 +(g6 +(I0 +tp12355 +g8 +tp12356 +Rp12357 +(I1 +(I7 +tp12358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12359 +tp12360 +bsa(dp12361 +g4 +g5 +(g6 +(I0 +tp12362 +g8 +tp12363 +Rp12364 +(I1 +(I7 +tp12365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12366 +tp12367 +bsa(dp12368 +g4 +g5 +(g6 +(I0 +tp12369 +g8 +tp12370 +Rp12371 +(I1 +(I7 +tp12372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12373 +tp12374 +bsa(dp12375 +g4 +g5 +(g6 +(I0 +tp12376 +g8 +tp12377 +Rp12378 +(I1 +(I7 +tp12379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12380 +tp12381 +bsa(dp12382 +g4 +g5 +(g6 +(I0 +tp12383 +g8 +tp12384 +Rp12385 +(I1 +(I7 +tp12386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12387 +tp12388 +bsa(dp12389 +g4 +g5 +(g6 +(I0 +tp12390 +g8 +tp12391 +Rp12392 +(I1 +(I7 +tp12393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12394 +tp12395 +bsa(dp12396 +g4 +g5 +(g6 +(I0 +tp12397 +g8 +tp12398 +Rp12399 +(I1 +(I7 +tp12400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12401 +tp12402 +bsa(dp12403 +g4 +g5 +(g6 +(I0 +tp12404 +g8 +tp12405 +Rp12406 +(I1 +(I7 +tp12407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12408 +tp12409 +bsa(dp12410 +g4 +g5 +(g6 +(I0 +tp12411 +g8 +tp12412 +Rp12413 +(I1 +(I7 +tp12414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12415 +tp12416 +bsa(dp12417 +g4 +g5 +(g6 +(I0 +tp12418 +g8 +tp12419 +Rp12420 +(I1 +(I7 +tp12421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12422 +tp12423 +bsa(dp12424 +g4 +g5 +(g6 +(I0 +tp12425 +g8 +tp12426 +Rp12427 +(I1 +(I7 +tp12428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12429 +tp12430 +bsa(dp12431 +g4 +g5 +(g6 +(I0 +tp12432 +g8 +tp12433 +Rp12434 +(I1 +(I7 +tp12435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12436 +tp12437 +bsa(dp12438 +g4 +g5 +(g6 +(I0 +tp12439 +g8 +tp12440 +Rp12441 +(I1 +(I7 +tp12442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12443 +tp12444 +bsa(dp12445 +g4 +g5 +(g6 +(I0 +tp12446 +g8 +tp12447 +Rp12448 +(I1 +(I7 +tp12449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12450 +tp12451 +bsa(dp12452 +g4 +g5 +(g6 +(I0 +tp12453 +g8 +tp12454 +Rp12455 +(I1 +(I7 +tp12456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12457 +tp12458 +bsa(dp12459 +g4 +g5 +(g6 +(I0 +tp12460 +g8 +tp12461 +Rp12462 +(I1 +(I7 +tp12463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12464 +tp12465 +bsa(dp12466 +g4 +g5 +(g6 +(I0 +tp12467 +g8 +tp12468 +Rp12469 +(I1 +(I7 +tp12470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12471 +tp12472 +bsa(dp12473 +g4 +g5 +(g6 +(I0 +tp12474 +g8 +tp12475 +Rp12476 +(I1 +(I7 +tp12477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12478 +tp12479 +bsa(dp12480 +g4 +g5 +(g6 +(I0 +tp12481 +g8 +tp12482 +Rp12483 +(I1 +(I7 +tp12484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12485 +tp12486 +bsa(dp12487 +g4 +g5 +(g6 +(I0 +tp12488 +g8 +tp12489 +Rp12490 +(I1 +(I7 +tp12491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12492 +tp12493 +bsa(dp12494 +g4 +g5 +(g6 +(I0 +tp12495 +g8 +tp12496 +Rp12497 +(I1 +(I7 +tp12498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12499 +tp12500 +bsa(dp12501 +g4 +g5 +(g6 +(I0 +tp12502 +g8 +tp12503 +Rp12504 +(I1 +(I7 +tp12505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12506 +tp12507 +bsa(dp12508 +g4 +g5 +(g6 +(I0 +tp12509 +g8 +tp12510 +Rp12511 +(I1 +(I7 +tp12512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12513 +tp12514 +bsa(dp12515 +g4 +g5 +(g6 +(I0 +tp12516 +g8 +tp12517 +Rp12518 +(I1 +(I7 +tp12519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12520 +tp12521 +bsa(dp12522 +g4 +g5 +(g6 +(I0 +tp12523 +g8 +tp12524 +Rp12525 +(I1 +(I7 +tp12526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12527 +tp12528 +bsa(dp12529 +g4 +g5 +(g6 +(I0 +tp12530 +g8 +tp12531 +Rp12532 +(I1 +(I7 +tp12533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12534 +tp12535 +bsa(dp12536 +g4 +g5 +(g6 +(I0 +tp12537 +g8 +tp12538 +Rp12539 +(I1 +(I7 +tp12540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12541 +tp12542 +bsa(dp12543 +g4 +g5 +(g6 +(I0 +tp12544 +g8 +tp12545 +Rp12546 +(I1 +(I7 +tp12547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12548 +tp12549 +bsa(dp12550 +g4 +g5 +(g6 +(I0 +tp12551 +g8 +tp12552 +Rp12553 +(I1 +(I7 +tp12554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12555 +tp12556 +bsa(dp12557 +g4 +g5 +(g6 +(I0 +tp12558 +g8 +tp12559 +Rp12560 +(I1 +(I7 +tp12561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12562 +tp12563 +bsa(dp12564 +g4 +g5 +(g6 +(I0 +tp12565 +g8 +tp12566 +Rp12567 +(I1 +(I7 +tp12568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12569 +tp12570 +bsa(dp12571 +g4 +g5 +(g6 +(I0 +tp12572 +g8 +tp12573 +Rp12574 +(I1 +(I7 +tp12575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12576 +tp12577 +bsa(dp12578 +g4 +g5 +(g6 +(I0 +tp12579 +g8 +tp12580 +Rp12581 +(I1 +(I7 +tp12582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12583 +tp12584 +bsa(dp12585 +g4 +g5 +(g6 +(I0 +tp12586 +g8 +tp12587 +Rp12588 +(I1 +(I7 +tp12589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12590 +tp12591 +bsa(dp12592 +g4 +g5 +(g6 +(I0 +tp12593 +g8 +tp12594 +Rp12595 +(I1 +(I7 +tp12596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12597 +tp12598 +bsa(dp12599 +g4 +g5 +(g6 +(I0 +tp12600 +g8 +tp12601 +Rp12602 +(I1 +(I7 +tp12603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12604 +tp12605 +bsa(dp12606 +g4 +g5 +(g6 +(I0 +tp12607 +g8 +tp12608 +Rp12609 +(I1 +(I7 +tp12610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12611 +tp12612 +bsa(dp12613 +g4 +g5 +(g6 +(I0 +tp12614 +g8 +tp12615 +Rp12616 +(I1 +(I7 +tp12617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12618 +tp12619 +bsa(dp12620 +g4 +g5 +(g6 +(I0 +tp12621 +g8 +tp12622 +Rp12623 +(I1 +(I7 +tp12624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12625 +tp12626 +bsa(dp12627 +g4 +g5 +(g6 +(I0 +tp12628 +g8 +tp12629 +Rp12630 +(I1 +(I7 +tp12631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12632 +tp12633 +bsa(dp12634 +g4 +g5 +(g6 +(I0 +tp12635 +g8 +tp12636 +Rp12637 +(I1 +(I7 +tp12638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12639 +tp12640 +bsa(dp12641 +g4 +g5 +(g6 +(I0 +tp12642 +g8 +tp12643 +Rp12644 +(I1 +(I7 +tp12645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12646 +tp12647 +bsa(dp12648 +g4 +g5 +(g6 +(I0 +tp12649 +g8 +tp12650 +Rp12651 +(I1 +(I7 +tp12652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12653 +tp12654 +bsa(dp12655 +g4 +g5 +(g6 +(I0 +tp12656 +g8 +tp12657 +Rp12658 +(I1 +(I7 +tp12659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12660 +tp12661 +bsa(dp12662 +g4 +g5 +(g6 +(I0 +tp12663 +g8 +tp12664 +Rp12665 +(I1 +(I7 +tp12666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12667 +tp12668 +bsa(dp12669 +g4 +g5 +(g6 +(I0 +tp12670 +g8 +tp12671 +Rp12672 +(I1 +(I7 +tp12673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12674 +tp12675 +bsa(dp12676 +g4 +g5 +(g6 +(I0 +tp12677 +g8 +tp12678 +Rp12679 +(I1 +(I7 +tp12680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12681 +tp12682 +bsa(dp12683 +g4 +g5 +(g6 +(I0 +tp12684 +g8 +tp12685 +Rp12686 +(I1 +(I7 +tp12687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12688 +tp12689 +bsa(dp12690 +g4 +g5 +(g6 +(I0 +tp12691 +g8 +tp12692 +Rp12693 +(I1 +(I7 +tp12694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12695 +tp12696 +bsa(dp12697 +g4 +g5 +(g6 +(I0 +tp12698 +g8 +tp12699 +Rp12700 +(I1 +(I7 +tp12701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12702 +tp12703 +bsa(dp12704 +g4 +g5 +(g6 +(I0 +tp12705 +g8 +tp12706 +Rp12707 +(I1 +(I7 +tp12708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12709 +tp12710 +bsa(dp12711 +g4 +g5 +(g6 +(I0 +tp12712 +g8 +tp12713 +Rp12714 +(I1 +(I7 +tp12715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12716 +tp12717 +bsa(dp12718 +g4 +g5 +(g6 +(I0 +tp12719 +g8 +tp12720 +Rp12721 +(I1 +(I7 +tp12722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12723 +tp12724 +bsa(dp12725 +g4 +g5 +(g6 +(I0 +tp12726 +g8 +tp12727 +Rp12728 +(I1 +(I7 +tp12729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12730 +tp12731 +bsa(dp12732 +g4 +g5 +(g6 +(I0 +tp12733 +g8 +tp12734 +Rp12735 +(I1 +(I7 +tp12736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12737 +tp12738 +bsa(dp12739 +g4 +g5 +(g6 +(I0 +tp12740 +g8 +tp12741 +Rp12742 +(I1 +(I7 +tp12743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12744 +tp12745 +bsa(dp12746 +g4 +g5 +(g6 +(I0 +tp12747 +g8 +tp12748 +Rp12749 +(I1 +(I7 +tp12750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12751 +tp12752 +bsa(dp12753 +g4 +g5 +(g6 +(I0 +tp12754 +g8 +tp12755 +Rp12756 +(I1 +(I7 +tp12757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12758 +tp12759 +bsa(dp12760 +g4 +g5 +(g6 +(I0 +tp12761 +g8 +tp12762 +Rp12763 +(I1 +(I7 +tp12764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12765 +tp12766 +bsa(dp12767 +g4 +g5 +(g6 +(I0 +tp12768 +g8 +tp12769 +Rp12770 +(I1 +(I7 +tp12771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12772 +tp12773 +bsa(dp12774 +g4 +g5 +(g6 +(I0 +tp12775 +g8 +tp12776 +Rp12777 +(I1 +(I7 +tp12778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12779 +tp12780 +bsa(dp12781 +g4 +g5 +(g6 +(I0 +tp12782 +g8 +tp12783 +Rp12784 +(I1 +(I7 +tp12785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12786 +tp12787 +bsa(dp12788 +g4 +g5 +(g6 +(I0 +tp12789 +g8 +tp12790 +Rp12791 +(I1 +(I7 +tp12792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12793 +tp12794 +bsa(dp12795 +g4 +g5 +(g6 +(I0 +tp12796 +g8 +tp12797 +Rp12798 +(I1 +(I7 +tp12799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12800 +tp12801 +bsa(dp12802 +g4 +g5 +(g6 +(I0 +tp12803 +g8 +tp12804 +Rp12805 +(I1 +(I7 +tp12806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12807 +tp12808 +bsa(dp12809 +g4 +g5 +(g6 +(I0 +tp12810 +g8 +tp12811 +Rp12812 +(I1 +(I7 +tp12813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12814 +tp12815 +bsa(dp12816 +g4 +g5 +(g6 +(I0 +tp12817 +g8 +tp12818 +Rp12819 +(I1 +(I7 +tp12820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12821 +tp12822 +bsa(dp12823 +g4 +g5 +(g6 +(I0 +tp12824 +g8 +tp12825 +Rp12826 +(I1 +(I7 +tp12827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12828 +tp12829 +bsa(dp12830 +g4 +g5 +(g6 +(I0 +tp12831 +g8 +tp12832 +Rp12833 +(I1 +(I7 +tp12834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12835 +tp12836 +bsa(dp12837 +g4 +g5 +(g6 +(I0 +tp12838 +g8 +tp12839 +Rp12840 +(I1 +(I7 +tp12841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12842 +tp12843 +bsa(dp12844 +g4 +g5 +(g6 +(I0 +tp12845 +g8 +tp12846 +Rp12847 +(I1 +(I7 +tp12848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12849 +tp12850 +bsa(dp12851 +g4 +g5 +(g6 +(I0 +tp12852 +g8 +tp12853 +Rp12854 +(I1 +(I7 +tp12855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12856 +tp12857 +bsa(dp12858 +g4 +g5 +(g6 +(I0 +tp12859 +g8 +tp12860 +Rp12861 +(I1 +(I7 +tp12862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12863 +tp12864 +bsa(dp12865 +g4 +g5 +(g6 +(I0 +tp12866 +g8 +tp12867 +Rp12868 +(I1 +(I7 +tp12869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12870 +tp12871 +bsa(dp12872 +g4 +g5 +(g6 +(I0 +tp12873 +g8 +tp12874 +Rp12875 +(I1 +(I7 +tp12876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12877 +tp12878 +bsa(dp12879 +g4 +g5 +(g6 +(I0 +tp12880 +g8 +tp12881 +Rp12882 +(I1 +(I7 +tp12883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12884 +tp12885 +bsa(dp12886 +g4 +g5 +(g6 +(I0 +tp12887 +g8 +tp12888 +Rp12889 +(I1 +(I7 +tp12890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12891 +tp12892 +bsa(dp12893 +g4 +g5 +(g6 +(I0 +tp12894 +g8 +tp12895 +Rp12896 +(I1 +(I7 +tp12897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12898 +tp12899 +bsa(dp12900 +g4 +g5 +(g6 +(I0 +tp12901 +g8 +tp12902 +Rp12903 +(I1 +(I7 +tp12904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12905 +tp12906 +bsa(dp12907 +g4 +g5 +(g6 +(I0 +tp12908 +g8 +tp12909 +Rp12910 +(I1 +(I7 +tp12911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12912 +tp12913 +bsa(dp12914 +g4 +g5 +(g6 +(I0 +tp12915 +g8 +tp12916 +Rp12917 +(I1 +(I7 +tp12918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12919 +tp12920 +bsa(dp12921 +g4 +g5 +(g6 +(I0 +tp12922 +g8 +tp12923 +Rp12924 +(I1 +(I7 +tp12925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12926 +tp12927 +bsa(dp12928 +g4 +g5 +(g6 +(I0 +tp12929 +g8 +tp12930 +Rp12931 +(I1 +(I7 +tp12932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12933 +tp12934 +bsa(dp12935 +g4 +g5 +(g6 +(I0 +tp12936 +g8 +tp12937 +Rp12938 +(I1 +(I7 +tp12939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12940 +tp12941 +bsa(dp12942 +g4 +g5 +(g6 +(I0 +tp12943 +g8 +tp12944 +Rp12945 +(I1 +(I7 +tp12946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12947 +tp12948 +bsa(dp12949 +g4 +g5 +(g6 +(I0 +tp12950 +g8 +tp12951 +Rp12952 +(I1 +(I7 +tp12953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12954 +tp12955 +bsa(dp12956 +g4 +g5 +(g6 +(I0 +tp12957 +g8 +tp12958 +Rp12959 +(I1 +(I7 +tp12960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12961 +tp12962 +bsa(dp12963 +g4 +g5 +(g6 +(I0 +tp12964 +g8 +tp12965 +Rp12966 +(I1 +(I7 +tp12967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12968 +tp12969 +bsa(dp12970 +g4 +g5 +(g6 +(I0 +tp12971 +g8 +tp12972 +Rp12973 +(I1 +(I7 +tp12974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p12975 +tp12976 +bsa(dp12977 +g4 +g5 +(g6 +(I0 +tp12978 +g8 +tp12979 +Rp12980 +(I1 +(I7 +tp12981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p12982 +tp12983 +bsa(dp12984 +g4 +g5 +(g6 +(I0 +tp12985 +g8 +tp12986 +Rp12987 +(I1 +(I7 +tp12988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12989 +tp12990 +bsa(dp12991 +g4 +g5 +(g6 +(I0 +tp12992 +g8 +tp12993 +Rp12994 +(I1 +(I7 +tp12995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p12996 +tp12997 +bsa(dp12998 +g4 +g5 +(g6 +(I0 +tp12999 +g8 +tp13000 +Rp13001 +(I1 +(I7 +tp13002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13003 +tp13004 +bsa(dp13005 +g4 +g5 +(g6 +(I0 +tp13006 +g8 +tp13007 +Rp13008 +(I1 +(I7 +tp13009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13010 +tp13011 +bsa(dp13012 +g4 +g5 +(g6 +(I0 +tp13013 +g8 +tp13014 +Rp13015 +(I1 +(I7 +tp13016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13017 +tp13018 +bsa(dp13019 +g4 +g5 +(g6 +(I0 +tp13020 +g8 +tp13021 +Rp13022 +(I1 +(I7 +tp13023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13024 +tp13025 +bsa(dp13026 +g4 +g5 +(g6 +(I0 +tp13027 +g8 +tp13028 +Rp13029 +(I1 +(I7 +tp13030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13031 +tp13032 +bsa(dp13033 +g4 +g5 +(g6 +(I0 +tp13034 +g8 +tp13035 +Rp13036 +(I1 +(I7 +tp13037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13038 +tp13039 +bsa(dp13040 +g4 +g5 +(g6 +(I0 +tp13041 +g8 +tp13042 +Rp13043 +(I1 +(I7 +tp13044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13045 +tp13046 +bsa(dp13047 +g4 +g5 +(g6 +(I0 +tp13048 +g8 +tp13049 +Rp13050 +(I1 +(I7 +tp13051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13052 +tp13053 +bsa(dp13054 +g4 +g5 +(g6 +(I0 +tp13055 +g8 +tp13056 +Rp13057 +(I1 +(I7 +tp13058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13059 +tp13060 +bsa(dp13061 +g4 +g5 +(g6 +(I0 +tp13062 +g8 +tp13063 +Rp13064 +(I1 +(I7 +tp13065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13066 +tp13067 +bsa(dp13068 +g4 +g5 +(g6 +(I0 +tp13069 +g8 +tp13070 +Rp13071 +(I1 +(I7 +tp13072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13073 +tp13074 +bsa(dp13075 +g4 +g5 +(g6 +(I0 +tp13076 +g8 +tp13077 +Rp13078 +(I1 +(I7 +tp13079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13080 +tp13081 +bsa(dp13082 +g4 +g5 +(g6 +(I0 +tp13083 +g8 +tp13084 +Rp13085 +(I1 +(I7 +tp13086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13087 +tp13088 +bsa(dp13089 +g4 +g5 +(g6 +(I0 +tp13090 +g8 +tp13091 +Rp13092 +(I1 +(I7 +tp13093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13094 +tp13095 +bsa(dp13096 +g4 +g5 +(g6 +(I0 +tp13097 +g8 +tp13098 +Rp13099 +(I1 +(I7 +tp13100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13101 +tp13102 +bsa(dp13103 +g4 +g5 +(g6 +(I0 +tp13104 +g8 +tp13105 +Rp13106 +(I1 +(I7 +tp13107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13108 +tp13109 +bsa(dp13110 +g4 +g5 +(g6 +(I0 +tp13111 +g8 +tp13112 +Rp13113 +(I1 +(I7 +tp13114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13115 +tp13116 +bsa(dp13117 +g4 +g5 +(g6 +(I0 +tp13118 +g8 +tp13119 +Rp13120 +(I1 +(I7 +tp13121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13122 +tp13123 +bsa(dp13124 +g4 +g5 +(g6 +(I0 +tp13125 +g8 +tp13126 +Rp13127 +(I1 +(I7 +tp13128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13129 +tp13130 +bsa(dp13131 +g4 +g5 +(g6 +(I0 +tp13132 +g8 +tp13133 +Rp13134 +(I1 +(I7 +tp13135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13136 +tp13137 +bsa(dp13138 +g4 +g5 +(g6 +(I0 +tp13139 +g8 +tp13140 +Rp13141 +(I1 +(I7 +tp13142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13143 +tp13144 +bsa(dp13145 +g4 +g5 +(g6 +(I0 +tp13146 +g8 +tp13147 +Rp13148 +(I1 +(I7 +tp13149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13150 +tp13151 +bsa(dp13152 +g4 +g5 +(g6 +(I0 +tp13153 +g8 +tp13154 +Rp13155 +(I1 +(I7 +tp13156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13157 +tp13158 +bsa(dp13159 +g4 +g5 +(g6 +(I0 +tp13160 +g8 +tp13161 +Rp13162 +(I1 +(I7 +tp13163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13164 +tp13165 +bsa(dp13166 +g4 +g5 +(g6 +(I0 +tp13167 +g8 +tp13168 +Rp13169 +(I1 +(I7 +tp13170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13171 +tp13172 +bsa(dp13173 +g4 +g5 +(g6 +(I0 +tp13174 +g8 +tp13175 +Rp13176 +(I1 +(I7 +tp13177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13178 +tp13179 +bsa(dp13180 +g4 +g5 +(g6 +(I0 +tp13181 +g8 +tp13182 +Rp13183 +(I1 +(I7 +tp13184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13185 +tp13186 +bsa(dp13187 +g4 +g5 +(g6 +(I0 +tp13188 +g8 +tp13189 +Rp13190 +(I1 +(I7 +tp13191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13192 +tp13193 +bsa(dp13194 +g4 +g5 +(g6 +(I0 +tp13195 +g8 +tp13196 +Rp13197 +(I1 +(I7 +tp13198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13199 +tp13200 +bsa(dp13201 +g4 +g5 +(g6 +(I0 +tp13202 +g8 +tp13203 +Rp13204 +(I1 +(I7 +tp13205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13206 +tp13207 +bsa(dp13208 +g4 +g5 +(g6 +(I0 +tp13209 +g8 +tp13210 +Rp13211 +(I1 +(I7 +tp13212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13213 +tp13214 +bsa(dp13215 +g4 +g5 +(g6 +(I0 +tp13216 +g8 +tp13217 +Rp13218 +(I1 +(I7 +tp13219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13220 +tp13221 +bsa(dp13222 +g4 +g5 +(g6 +(I0 +tp13223 +g8 +tp13224 +Rp13225 +(I1 +(I7 +tp13226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13227 +tp13228 +bsa(dp13229 +g4 +g5 +(g6 +(I0 +tp13230 +g8 +tp13231 +Rp13232 +(I1 +(I7 +tp13233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13234 +tp13235 +bsa(dp13236 +g4 +g5 +(g6 +(I0 +tp13237 +g8 +tp13238 +Rp13239 +(I1 +(I7 +tp13240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13241 +tp13242 +bsa(dp13243 +g4 +g5 +(g6 +(I0 +tp13244 +g8 +tp13245 +Rp13246 +(I1 +(I7 +tp13247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13248 +tp13249 +bsa(dp13250 +g4 +g5 +(g6 +(I0 +tp13251 +g8 +tp13252 +Rp13253 +(I1 +(I7 +tp13254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13255 +tp13256 +bsa(dp13257 +g4 +g5 +(g6 +(I0 +tp13258 +g8 +tp13259 +Rp13260 +(I1 +(I7 +tp13261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13262 +tp13263 +bsa(dp13264 +g4 +g5 +(g6 +(I0 +tp13265 +g8 +tp13266 +Rp13267 +(I1 +(I7 +tp13268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13269 +tp13270 +bsa(dp13271 +g4 +g5 +(g6 +(I0 +tp13272 +g8 +tp13273 +Rp13274 +(I1 +(I7 +tp13275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13276 +tp13277 +bsa(dp13278 +g4 +g5 +(g6 +(I0 +tp13279 +g8 +tp13280 +Rp13281 +(I1 +(I7 +tp13282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13283 +tp13284 +bsa(dp13285 +g4 +g5 +(g6 +(I0 +tp13286 +g8 +tp13287 +Rp13288 +(I1 +(I7 +tp13289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13290 +tp13291 +bsa(dp13292 +g4 +g5 +(g6 +(I0 +tp13293 +g8 +tp13294 +Rp13295 +(I1 +(I7 +tp13296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13297 +tp13298 +bsa(dp13299 +g4 +g5 +(g6 +(I0 +tp13300 +g8 +tp13301 +Rp13302 +(I1 +(I7 +tp13303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13304 +tp13305 +bsa(dp13306 +g4 +g5 +(g6 +(I0 +tp13307 +g8 +tp13308 +Rp13309 +(I1 +(I7 +tp13310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13311 +tp13312 +bsa(dp13313 +g4 +g5 +(g6 +(I0 +tp13314 +g8 +tp13315 +Rp13316 +(I1 +(I7 +tp13317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13318 +tp13319 +bsa(dp13320 +g4 +g5 +(g6 +(I0 +tp13321 +g8 +tp13322 +Rp13323 +(I1 +(I7 +tp13324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13325 +tp13326 +bsa(dp13327 +g4 +g5 +(g6 +(I0 +tp13328 +g8 +tp13329 +Rp13330 +(I1 +(I7 +tp13331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13332 +tp13333 +bsa(dp13334 +g4 +g5 +(g6 +(I0 +tp13335 +g8 +tp13336 +Rp13337 +(I1 +(I7 +tp13338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13339 +tp13340 +bsa(dp13341 +g4 +g5 +(g6 +(I0 +tp13342 +g8 +tp13343 +Rp13344 +(I1 +(I7 +tp13345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13346 +tp13347 +bsa(dp13348 +g4 +g5 +(g6 +(I0 +tp13349 +g8 +tp13350 +Rp13351 +(I1 +(I7 +tp13352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13353 +tp13354 +bsa(dp13355 +g4 +g5 +(g6 +(I0 +tp13356 +g8 +tp13357 +Rp13358 +(I1 +(I7 +tp13359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13360 +tp13361 +bsa(dp13362 +g4 +g5 +(g6 +(I0 +tp13363 +g8 +tp13364 +Rp13365 +(I1 +(I7 +tp13366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13367 +tp13368 +bsa(dp13369 +g4 +g5 +(g6 +(I0 +tp13370 +g8 +tp13371 +Rp13372 +(I1 +(I7 +tp13373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13374 +tp13375 +bsa(dp13376 +g4 +g5 +(g6 +(I0 +tp13377 +g8 +tp13378 +Rp13379 +(I1 +(I7 +tp13380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13381 +tp13382 +bsa(dp13383 +g4 +g5 +(g6 +(I0 +tp13384 +g8 +tp13385 +Rp13386 +(I1 +(I7 +tp13387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13388 +tp13389 +bsa(dp13390 +g4 +g5 +(g6 +(I0 +tp13391 +g8 +tp13392 +Rp13393 +(I1 +(I7 +tp13394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13395 +tp13396 +bsa(dp13397 +g4 +g5 +(g6 +(I0 +tp13398 +g8 +tp13399 +Rp13400 +(I1 +(I7 +tp13401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13402 +tp13403 +bsa(dp13404 +g4 +g5 +(g6 +(I0 +tp13405 +g8 +tp13406 +Rp13407 +(I1 +(I7 +tp13408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13409 +tp13410 +bsa(dp13411 +g4 +g5 +(g6 +(I0 +tp13412 +g8 +tp13413 +Rp13414 +(I1 +(I7 +tp13415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13416 +tp13417 +bsa(dp13418 +g4 +g5 +(g6 +(I0 +tp13419 +g8 +tp13420 +Rp13421 +(I1 +(I7 +tp13422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13423 +tp13424 +bsa(dp13425 +g4 +g5 +(g6 +(I0 +tp13426 +g8 +tp13427 +Rp13428 +(I1 +(I7 +tp13429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13430 +tp13431 +bsa(dp13432 +g4 +g5 +(g6 +(I0 +tp13433 +g8 +tp13434 +Rp13435 +(I1 +(I7 +tp13436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13437 +tp13438 +bsa(dp13439 +g4 +g5 +(g6 +(I0 +tp13440 +g8 +tp13441 +Rp13442 +(I1 +(I7 +tp13443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13444 +tp13445 +bsa(dp13446 +g4 +g5 +(g6 +(I0 +tp13447 +g8 +tp13448 +Rp13449 +(I1 +(I7 +tp13450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13451 +tp13452 +bsa(dp13453 +g4 +g5 +(g6 +(I0 +tp13454 +g8 +tp13455 +Rp13456 +(I1 +(I7 +tp13457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13458 +tp13459 +bsa(dp13460 +g4 +g5 +(g6 +(I0 +tp13461 +g8 +tp13462 +Rp13463 +(I1 +(I7 +tp13464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13465 +tp13466 +bsa(dp13467 +g4 +g5 +(g6 +(I0 +tp13468 +g8 +tp13469 +Rp13470 +(I1 +(I7 +tp13471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13472 +tp13473 +bsa(dp13474 +g4 +g5 +(g6 +(I0 +tp13475 +g8 +tp13476 +Rp13477 +(I1 +(I7 +tp13478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13479 +tp13480 +bsa(dp13481 +g4 +g5 +(g6 +(I0 +tp13482 +g8 +tp13483 +Rp13484 +(I1 +(I7 +tp13485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13486 +tp13487 +bsa(dp13488 +g4 +g5 +(g6 +(I0 +tp13489 +g8 +tp13490 +Rp13491 +(I1 +(I7 +tp13492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13493 +tp13494 +bsa(dp13495 +g4 +g5 +(g6 +(I0 +tp13496 +g8 +tp13497 +Rp13498 +(I1 +(I7 +tp13499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13500 +tp13501 +bsa(dp13502 +g4 +g5 +(g6 +(I0 +tp13503 +g8 +tp13504 +Rp13505 +(I1 +(I7 +tp13506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13507 +tp13508 +bsa(dp13509 +g4 +g5 +(g6 +(I0 +tp13510 +g8 +tp13511 +Rp13512 +(I1 +(I7 +tp13513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13514 +tp13515 +bsa(dp13516 +g4 +g5 +(g6 +(I0 +tp13517 +g8 +tp13518 +Rp13519 +(I1 +(I7 +tp13520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13521 +tp13522 +bsa(dp13523 +g4 +g5 +(g6 +(I0 +tp13524 +g8 +tp13525 +Rp13526 +(I1 +(I7 +tp13527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13528 +tp13529 +bsa(dp13530 +g4 +g5 +(g6 +(I0 +tp13531 +g8 +tp13532 +Rp13533 +(I1 +(I7 +tp13534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13535 +tp13536 +bsa(dp13537 +g4 +g5 +(g6 +(I0 +tp13538 +g8 +tp13539 +Rp13540 +(I1 +(I7 +tp13541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13542 +tp13543 +bsa(dp13544 +g4 +g5 +(g6 +(I0 +tp13545 +g8 +tp13546 +Rp13547 +(I1 +(I7 +tp13548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13549 +tp13550 +bsa(dp13551 +g4 +g5 +(g6 +(I0 +tp13552 +g8 +tp13553 +Rp13554 +(I1 +(I7 +tp13555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13556 +tp13557 +bsa(dp13558 +g4 +g5 +(g6 +(I0 +tp13559 +g8 +tp13560 +Rp13561 +(I1 +(I7 +tp13562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13563 +tp13564 +bsa(dp13565 +g4 +g5 +(g6 +(I0 +tp13566 +g8 +tp13567 +Rp13568 +(I1 +(I7 +tp13569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13570 +tp13571 +bsa(dp13572 +g4 +g5 +(g6 +(I0 +tp13573 +g8 +tp13574 +Rp13575 +(I1 +(I7 +tp13576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13577 +tp13578 +bsa(dp13579 +g4 +g5 +(g6 +(I0 +tp13580 +g8 +tp13581 +Rp13582 +(I1 +(I7 +tp13583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13584 +tp13585 +bsa(dp13586 +g4 +g5 +(g6 +(I0 +tp13587 +g8 +tp13588 +Rp13589 +(I1 +(I7 +tp13590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13591 +tp13592 +bsa(dp13593 +g4 +g5 +(g6 +(I0 +tp13594 +g8 +tp13595 +Rp13596 +(I1 +(I7 +tp13597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13598 +tp13599 +bsa(dp13600 +g4 +g5 +(g6 +(I0 +tp13601 +g8 +tp13602 +Rp13603 +(I1 +(I7 +tp13604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13605 +tp13606 +bsa(dp13607 +g4 +g5 +(g6 +(I0 +tp13608 +g8 +tp13609 +Rp13610 +(I1 +(I7 +tp13611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13612 +tp13613 +bsa(dp13614 +g4 +g5 +(g6 +(I0 +tp13615 +g8 +tp13616 +Rp13617 +(I1 +(I7 +tp13618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13619 +tp13620 +bsa(dp13621 +g4 +g5 +(g6 +(I0 +tp13622 +g8 +tp13623 +Rp13624 +(I1 +(I7 +tp13625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13626 +tp13627 +bsa(dp13628 +g4 +g5 +(g6 +(I0 +tp13629 +g8 +tp13630 +Rp13631 +(I1 +(I7 +tp13632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13633 +tp13634 +bsa(dp13635 +g4 +g5 +(g6 +(I0 +tp13636 +g8 +tp13637 +Rp13638 +(I1 +(I7 +tp13639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13640 +tp13641 +bsa(dp13642 +g4 +g5 +(g6 +(I0 +tp13643 +g8 +tp13644 +Rp13645 +(I1 +(I7 +tp13646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13647 +tp13648 +bsa(dp13649 +g4 +g5 +(g6 +(I0 +tp13650 +g8 +tp13651 +Rp13652 +(I1 +(I7 +tp13653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13654 +tp13655 +bsa(dp13656 +g4 +g5 +(g6 +(I0 +tp13657 +g8 +tp13658 +Rp13659 +(I1 +(I7 +tp13660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13661 +tp13662 +bsa(dp13663 +g4 +g5 +(g6 +(I0 +tp13664 +g8 +tp13665 +Rp13666 +(I1 +(I7 +tp13667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13668 +tp13669 +bsa(dp13670 +g4 +g5 +(g6 +(I0 +tp13671 +g8 +tp13672 +Rp13673 +(I1 +(I7 +tp13674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13675 +tp13676 +bsa(dp13677 +g4 +g5 +(g6 +(I0 +tp13678 +g8 +tp13679 +Rp13680 +(I1 +(I7 +tp13681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13682 +tp13683 +bsa(dp13684 +g4 +g5 +(g6 +(I0 +tp13685 +g8 +tp13686 +Rp13687 +(I1 +(I7 +tp13688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13689 +tp13690 +bsa(dp13691 +g4 +g5 +(g6 +(I0 +tp13692 +g8 +tp13693 +Rp13694 +(I1 +(I7 +tp13695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13696 +tp13697 +bsa(dp13698 +g4 +g5 +(g6 +(I0 +tp13699 +g8 +tp13700 +Rp13701 +(I1 +(I7 +tp13702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13703 +tp13704 +bsa(dp13705 +g4 +g5 +(g6 +(I0 +tp13706 +g8 +tp13707 +Rp13708 +(I1 +(I7 +tp13709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13710 +tp13711 +bsa(dp13712 +g4 +g5 +(g6 +(I0 +tp13713 +g8 +tp13714 +Rp13715 +(I1 +(I7 +tp13716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13717 +tp13718 +bsa(dp13719 +g4 +g5 +(g6 +(I0 +tp13720 +g8 +tp13721 +Rp13722 +(I1 +(I7 +tp13723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13724 +tp13725 +bsa(dp13726 +g4 +g5 +(g6 +(I0 +tp13727 +g8 +tp13728 +Rp13729 +(I1 +(I7 +tp13730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13731 +tp13732 +bsa(dp13733 +g4 +g5 +(g6 +(I0 +tp13734 +g8 +tp13735 +Rp13736 +(I1 +(I7 +tp13737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13738 +tp13739 +bsa(dp13740 +g4 +g5 +(g6 +(I0 +tp13741 +g8 +tp13742 +Rp13743 +(I1 +(I7 +tp13744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13745 +tp13746 +bsa(dp13747 +g4 +g5 +(g6 +(I0 +tp13748 +g8 +tp13749 +Rp13750 +(I1 +(I7 +tp13751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13752 +tp13753 +bsa(dp13754 +g4 +g5 +(g6 +(I0 +tp13755 +g8 +tp13756 +Rp13757 +(I1 +(I7 +tp13758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13759 +tp13760 +bsa(dp13761 +g4 +g5 +(g6 +(I0 +tp13762 +g8 +tp13763 +Rp13764 +(I1 +(I7 +tp13765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13766 +tp13767 +bsa(dp13768 +g4 +g5 +(g6 +(I0 +tp13769 +g8 +tp13770 +Rp13771 +(I1 +(I7 +tp13772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13773 +tp13774 +bsa(dp13775 +g4 +g5 +(g6 +(I0 +tp13776 +g8 +tp13777 +Rp13778 +(I1 +(I7 +tp13779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13780 +tp13781 +bsa(dp13782 +g4 +g5 +(g6 +(I0 +tp13783 +g8 +tp13784 +Rp13785 +(I1 +(I7 +tp13786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13787 +tp13788 +bsa(dp13789 +g4 +g5 +(g6 +(I0 +tp13790 +g8 +tp13791 +Rp13792 +(I1 +(I7 +tp13793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13794 +tp13795 +bsa(dp13796 +g4 +g5 +(g6 +(I0 +tp13797 +g8 +tp13798 +Rp13799 +(I1 +(I7 +tp13800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13801 +tp13802 +bsa(dp13803 +g4 +g5 +(g6 +(I0 +tp13804 +g8 +tp13805 +Rp13806 +(I1 +(I7 +tp13807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13808 +tp13809 +bsa(dp13810 +g4 +g5 +(g6 +(I0 +tp13811 +g8 +tp13812 +Rp13813 +(I1 +(I7 +tp13814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13815 +tp13816 +bsa(dp13817 +g4 +g5 +(g6 +(I0 +tp13818 +g8 +tp13819 +Rp13820 +(I1 +(I7 +tp13821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13822 +tp13823 +bsa(dp13824 +g4 +g5 +(g6 +(I0 +tp13825 +g8 +tp13826 +Rp13827 +(I1 +(I7 +tp13828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13829 +tp13830 +bsa(dp13831 +g4 +g5 +(g6 +(I0 +tp13832 +g8 +tp13833 +Rp13834 +(I1 +(I7 +tp13835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13836 +tp13837 +bsa(dp13838 +g4 +g5 +(g6 +(I0 +tp13839 +g8 +tp13840 +Rp13841 +(I1 +(I7 +tp13842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13843 +tp13844 +bsa(dp13845 +g4 +g5 +(g6 +(I0 +tp13846 +g8 +tp13847 +Rp13848 +(I1 +(I7 +tp13849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13850 +tp13851 +bsa(dp13852 +g4 +g5 +(g6 +(I0 +tp13853 +g8 +tp13854 +Rp13855 +(I1 +(I7 +tp13856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13857 +tp13858 +bsa(dp13859 +g4 +g5 +(g6 +(I0 +tp13860 +g8 +tp13861 +Rp13862 +(I1 +(I7 +tp13863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13864 +tp13865 +bsa(dp13866 +g4 +g5 +(g6 +(I0 +tp13867 +g8 +tp13868 +Rp13869 +(I1 +(I7 +tp13870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13871 +tp13872 +bsa(dp13873 +g4 +g5 +(g6 +(I0 +tp13874 +g8 +tp13875 +Rp13876 +(I1 +(I7 +tp13877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13878 +tp13879 +bsa(dp13880 +g4 +g5 +(g6 +(I0 +tp13881 +g8 +tp13882 +Rp13883 +(I1 +(I7 +tp13884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13885 +tp13886 +bsa(dp13887 +g4 +g5 +(g6 +(I0 +tp13888 +g8 +tp13889 +Rp13890 +(I1 +(I7 +tp13891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13892 +tp13893 +bsa(dp13894 +g4 +g5 +(g6 +(I0 +tp13895 +g8 +tp13896 +Rp13897 +(I1 +(I7 +tp13898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13899 +tp13900 +bsa(dp13901 +g4 +g5 +(g6 +(I0 +tp13902 +g8 +tp13903 +Rp13904 +(I1 +(I7 +tp13905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13906 +tp13907 +bsa(dp13908 +g4 +g5 +(g6 +(I0 +tp13909 +g8 +tp13910 +Rp13911 +(I1 +(I7 +tp13912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13913 +tp13914 +bsa(dp13915 +g4 +g5 +(g6 +(I0 +tp13916 +g8 +tp13917 +Rp13918 +(I1 +(I7 +tp13919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13920 +tp13921 +bsa(dp13922 +g4 +g5 +(g6 +(I0 +tp13923 +g8 +tp13924 +Rp13925 +(I1 +(I7 +tp13926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13927 +tp13928 +bsa(dp13929 +g4 +g5 +(g6 +(I0 +tp13930 +g8 +tp13931 +Rp13932 +(I1 +(I7 +tp13933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13934 +tp13935 +bsa(dp13936 +g4 +g5 +(g6 +(I0 +tp13937 +g8 +tp13938 +Rp13939 +(I1 +(I7 +tp13940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13941 +tp13942 +bsa(dp13943 +g4 +g5 +(g6 +(I0 +tp13944 +g8 +tp13945 +Rp13946 +(I1 +(I7 +tp13947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13948 +tp13949 +bsa(dp13950 +g4 +g5 +(g6 +(I0 +tp13951 +g8 +tp13952 +Rp13953 +(I1 +(I7 +tp13954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p13955 +tp13956 +bsa(dp13957 +g4 +g5 +(g6 +(I0 +tp13958 +g8 +tp13959 +Rp13960 +(I1 +(I7 +tp13961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p13962 +tp13963 +bsa(dp13964 +g4 +g5 +(g6 +(I0 +tp13965 +g8 +tp13966 +Rp13967 +(I1 +(I7 +tp13968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13969 +tp13970 +bsa(dp13971 +g4 +g5 +(g6 +(I0 +tp13972 +g8 +tp13973 +Rp13974 +(I1 +(I7 +tp13975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13976 +tp13977 +bsa(dp13978 +g4 +g5 +(g6 +(I0 +tp13979 +g8 +tp13980 +Rp13981 +(I1 +(I7 +tp13982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13983 +tp13984 +bsa(dp13985 +g4 +g5 +(g6 +(I0 +tp13986 +g8 +tp13987 +Rp13988 +(I1 +(I7 +tp13989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13990 +tp13991 +bsa(dp13992 +g4 +g5 +(g6 +(I0 +tp13993 +g8 +tp13994 +Rp13995 +(I1 +(I7 +tp13996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p13997 +tp13998 +bsa(dp13999 +g4 +g5 +(g6 +(I0 +tp14000 +g8 +tp14001 +Rp14002 +(I1 +(I7 +tp14003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14004 +tp14005 +bsa(dp14006 +g4 +g5 +(g6 +(I0 +tp14007 +g8 +tp14008 +Rp14009 +(I1 +(I7 +tp14010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14011 +tp14012 +bsa(dp14013 +g4 +g5 +(g6 +(I0 +tp14014 +g8 +tp14015 +Rp14016 +(I1 +(I7 +tp14017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14018 +tp14019 +bsa(dp14020 +g4 +g5 +(g6 +(I0 +tp14021 +g8 +tp14022 +Rp14023 +(I1 +(I7 +tp14024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14025 +tp14026 +bsa(dp14027 +g4 +g5 +(g6 +(I0 +tp14028 +g8 +tp14029 +Rp14030 +(I1 +(I7 +tp14031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14032 +tp14033 +bsa(dp14034 +g4 +g5 +(g6 +(I0 +tp14035 +g8 +tp14036 +Rp14037 +(I1 +(I7 +tp14038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14039 +tp14040 +bsa(dp14041 +g4 +g5 +(g6 +(I0 +tp14042 +g8 +tp14043 +Rp14044 +(I1 +(I7 +tp14045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14046 +tp14047 +bsa(dp14048 +g4 +g5 +(g6 +(I0 +tp14049 +g8 +tp14050 +Rp14051 +(I1 +(I7 +tp14052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14053 +tp14054 +bsa(dp14055 +g4 +g5 +(g6 +(I0 +tp14056 +g8 +tp14057 +Rp14058 +(I1 +(I7 +tp14059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14060 +tp14061 +bsa(dp14062 +g4 +g5 +(g6 +(I0 +tp14063 +g8 +tp14064 +Rp14065 +(I1 +(I7 +tp14066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14067 +tp14068 +bsa(dp14069 +g4 +g5 +(g6 +(I0 +tp14070 +g8 +tp14071 +Rp14072 +(I1 +(I7 +tp14073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14074 +tp14075 +bsa(dp14076 +g4 +g5 +(g6 +(I0 +tp14077 +g8 +tp14078 +Rp14079 +(I1 +(I7 +tp14080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14081 +tp14082 +bsa(dp14083 +g4 +g5 +(g6 +(I0 +tp14084 +g8 +tp14085 +Rp14086 +(I1 +(I7 +tp14087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14088 +tp14089 +bsa(dp14090 +g4 +g5 +(g6 +(I0 +tp14091 +g8 +tp14092 +Rp14093 +(I1 +(I7 +tp14094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14095 +tp14096 +bsa(dp14097 +g4 +g5 +(g6 +(I0 +tp14098 +g8 +tp14099 +Rp14100 +(I1 +(I7 +tp14101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14102 +tp14103 +bsa(dp14104 +g4 +g5 +(g6 +(I0 +tp14105 +g8 +tp14106 +Rp14107 +(I1 +(I7 +tp14108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14109 +tp14110 +bsa(dp14111 +g4 +g5 +(g6 +(I0 +tp14112 +g8 +tp14113 +Rp14114 +(I1 +(I7 +tp14115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14116 +tp14117 +bsa(dp14118 +g4 +g5 +(g6 +(I0 +tp14119 +g8 +tp14120 +Rp14121 +(I1 +(I7 +tp14122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14123 +tp14124 +bsa(dp14125 +g4 +g5 +(g6 +(I0 +tp14126 +g8 +tp14127 +Rp14128 +(I1 +(I7 +tp14129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14130 +tp14131 +bsa(dp14132 +g4 +g5 +(g6 +(I0 +tp14133 +g8 +tp14134 +Rp14135 +(I1 +(I7 +tp14136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14137 +tp14138 +bsa(dp14139 +g4 +g5 +(g6 +(I0 +tp14140 +g8 +tp14141 +Rp14142 +(I1 +(I7 +tp14143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14144 +tp14145 +bsa(dp14146 +g4 +g5 +(g6 +(I0 +tp14147 +g8 +tp14148 +Rp14149 +(I1 +(I7 +tp14150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14151 +tp14152 +bsa(dp14153 +g4 +g5 +(g6 +(I0 +tp14154 +g8 +tp14155 +Rp14156 +(I1 +(I7 +tp14157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14158 +tp14159 +bsa(dp14160 +g4 +g5 +(g6 +(I0 +tp14161 +g8 +tp14162 +Rp14163 +(I1 +(I7 +tp14164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14165 +tp14166 +bsa(dp14167 +g4 +g5 +(g6 +(I0 +tp14168 +g8 +tp14169 +Rp14170 +(I1 +(I7 +tp14171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14172 +tp14173 +bsa(dp14174 +g4 +g5 +(g6 +(I0 +tp14175 +g8 +tp14176 +Rp14177 +(I1 +(I7 +tp14178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14179 +tp14180 +bsa(dp14181 +g4 +g5 +(g6 +(I0 +tp14182 +g8 +tp14183 +Rp14184 +(I1 +(I7 +tp14185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14186 +tp14187 +bsa(dp14188 +g4 +g5 +(g6 +(I0 +tp14189 +g8 +tp14190 +Rp14191 +(I1 +(I7 +tp14192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14193 +tp14194 +bsa(dp14195 +g4 +g5 +(g6 +(I0 +tp14196 +g8 +tp14197 +Rp14198 +(I1 +(I7 +tp14199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14200 +tp14201 +bsa(dp14202 +g4 +g5 +(g6 +(I0 +tp14203 +g8 +tp14204 +Rp14205 +(I1 +(I7 +tp14206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14207 +tp14208 +bsa(dp14209 +g4 +g5 +(g6 +(I0 +tp14210 +g8 +tp14211 +Rp14212 +(I1 +(I7 +tp14213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14214 +tp14215 +bsa(dp14216 +g4 +g5 +(g6 +(I0 +tp14217 +g8 +tp14218 +Rp14219 +(I1 +(I7 +tp14220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14221 +tp14222 +bsa(dp14223 +g4 +g5 +(g6 +(I0 +tp14224 +g8 +tp14225 +Rp14226 +(I1 +(I7 +tp14227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14228 +tp14229 +bsa(dp14230 +g4 +g5 +(g6 +(I0 +tp14231 +g8 +tp14232 +Rp14233 +(I1 +(I7 +tp14234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14235 +tp14236 +bsa(dp14237 +g4 +g5 +(g6 +(I0 +tp14238 +g8 +tp14239 +Rp14240 +(I1 +(I7 +tp14241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14242 +tp14243 +bsa(dp14244 +g4 +g5 +(g6 +(I0 +tp14245 +g8 +tp14246 +Rp14247 +(I1 +(I7 +tp14248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14249 +tp14250 +bsa(dp14251 +g4 +g5 +(g6 +(I0 +tp14252 +g8 +tp14253 +Rp14254 +(I1 +(I7 +tp14255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14256 +tp14257 +bsa(dp14258 +g4 +g5 +(g6 +(I0 +tp14259 +g8 +tp14260 +Rp14261 +(I1 +(I7 +tp14262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14263 +tp14264 +bsa(dp14265 +g4 +g5 +(g6 +(I0 +tp14266 +g8 +tp14267 +Rp14268 +(I1 +(I7 +tp14269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14270 +tp14271 +bsa(dp14272 +g4 +g5 +(g6 +(I0 +tp14273 +g8 +tp14274 +Rp14275 +(I1 +(I7 +tp14276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14277 +tp14278 +bsa(dp14279 +g4 +g5 +(g6 +(I0 +tp14280 +g8 +tp14281 +Rp14282 +(I1 +(I7 +tp14283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14284 +tp14285 +bsa(dp14286 +g4 +g5 +(g6 +(I0 +tp14287 +g8 +tp14288 +Rp14289 +(I1 +(I7 +tp14290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14291 +tp14292 +bsa(dp14293 +g4 +g5 +(g6 +(I0 +tp14294 +g8 +tp14295 +Rp14296 +(I1 +(I7 +tp14297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14298 +tp14299 +bsa(dp14300 +g4 +g5 +(g6 +(I0 +tp14301 +g8 +tp14302 +Rp14303 +(I1 +(I7 +tp14304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14305 +tp14306 +bsa(dp14307 +g4 +g5 +(g6 +(I0 +tp14308 +g8 +tp14309 +Rp14310 +(I1 +(I7 +tp14311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14312 +tp14313 +bsa(dp14314 +g4 +g5 +(g6 +(I0 +tp14315 +g8 +tp14316 +Rp14317 +(I1 +(I7 +tp14318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14319 +tp14320 +bsa(dp14321 +g4 +g5 +(g6 +(I0 +tp14322 +g8 +tp14323 +Rp14324 +(I1 +(I7 +tp14325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14326 +tp14327 +bsa(dp14328 +g4 +g5 +(g6 +(I0 +tp14329 +g8 +tp14330 +Rp14331 +(I1 +(I7 +tp14332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14333 +tp14334 +bsa(dp14335 +g4 +g5 +(g6 +(I0 +tp14336 +g8 +tp14337 +Rp14338 +(I1 +(I7 +tp14339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14340 +tp14341 +bsa(dp14342 +g4 +g5 +(g6 +(I0 +tp14343 +g8 +tp14344 +Rp14345 +(I1 +(I7 +tp14346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14347 +tp14348 +bsa(dp14349 +g4 +g5 +(g6 +(I0 +tp14350 +g8 +tp14351 +Rp14352 +(I1 +(I7 +tp14353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14354 +tp14355 +bsa(dp14356 +g4 +g5 +(g6 +(I0 +tp14357 +g8 +tp14358 +Rp14359 +(I1 +(I7 +tp14360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14361 +tp14362 +bsa(dp14363 +g4 +g5 +(g6 +(I0 +tp14364 +g8 +tp14365 +Rp14366 +(I1 +(I7 +tp14367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14368 +tp14369 +bsa(dp14370 +g4 +g5 +(g6 +(I0 +tp14371 +g8 +tp14372 +Rp14373 +(I1 +(I7 +tp14374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14375 +tp14376 +bsa(dp14377 +g4 +g5 +(g6 +(I0 +tp14378 +g8 +tp14379 +Rp14380 +(I1 +(I7 +tp14381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14382 +tp14383 +bsa(dp14384 +g4 +g5 +(g6 +(I0 +tp14385 +g8 +tp14386 +Rp14387 +(I1 +(I7 +tp14388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14389 +tp14390 +bsa(dp14391 +g4 +g5 +(g6 +(I0 +tp14392 +g8 +tp14393 +Rp14394 +(I1 +(I7 +tp14395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14396 +tp14397 +bsa(dp14398 +g4 +g5 +(g6 +(I0 +tp14399 +g8 +tp14400 +Rp14401 +(I1 +(I7 +tp14402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14403 +tp14404 +bsa(dp14405 +g4 +g5 +(g6 +(I0 +tp14406 +g8 +tp14407 +Rp14408 +(I1 +(I7 +tp14409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14410 +tp14411 +bsa(dp14412 +g4 +g5 +(g6 +(I0 +tp14413 +g8 +tp14414 +Rp14415 +(I1 +(I7 +tp14416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14417 +tp14418 +bsa(dp14419 +g4 +g5 +(g6 +(I0 +tp14420 +g8 +tp14421 +Rp14422 +(I1 +(I7 +tp14423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14424 +tp14425 +bsa(dp14426 +g4 +g5 +(g6 +(I0 +tp14427 +g8 +tp14428 +Rp14429 +(I1 +(I7 +tp14430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14431 +tp14432 +bsa(dp14433 +g4 +g5 +(g6 +(I0 +tp14434 +g8 +tp14435 +Rp14436 +(I1 +(I7 +tp14437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14438 +tp14439 +bsa(dp14440 +g4 +g5 +(g6 +(I0 +tp14441 +g8 +tp14442 +Rp14443 +(I1 +(I7 +tp14444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14445 +tp14446 +bsa(dp14447 +g4 +g5 +(g6 +(I0 +tp14448 +g8 +tp14449 +Rp14450 +(I1 +(I7 +tp14451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14452 +tp14453 +bsa(dp14454 +g4 +g5 +(g6 +(I0 +tp14455 +g8 +tp14456 +Rp14457 +(I1 +(I7 +tp14458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14459 +tp14460 +bsa(dp14461 +g4 +g5 +(g6 +(I0 +tp14462 +g8 +tp14463 +Rp14464 +(I1 +(I7 +tp14465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14466 +tp14467 +bsa(dp14468 +g4 +g5 +(g6 +(I0 +tp14469 +g8 +tp14470 +Rp14471 +(I1 +(I7 +tp14472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14473 +tp14474 +bsa(dp14475 +g4 +g5 +(g6 +(I0 +tp14476 +g8 +tp14477 +Rp14478 +(I1 +(I7 +tp14479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14480 +tp14481 +bsa(dp14482 +g4 +g5 +(g6 +(I0 +tp14483 +g8 +tp14484 +Rp14485 +(I1 +(I7 +tp14486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14487 +tp14488 +bsa(dp14489 +g4 +g5 +(g6 +(I0 +tp14490 +g8 +tp14491 +Rp14492 +(I1 +(I7 +tp14493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14494 +tp14495 +bsa(dp14496 +g4 +g5 +(g6 +(I0 +tp14497 +g8 +tp14498 +Rp14499 +(I1 +(I7 +tp14500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14501 +tp14502 +bsa(dp14503 +g4 +g5 +(g6 +(I0 +tp14504 +g8 +tp14505 +Rp14506 +(I1 +(I7 +tp14507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14508 +tp14509 +bsa(dp14510 +g4 +g5 +(g6 +(I0 +tp14511 +g8 +tp14512 +Rp14513 +(I1 +(I7 +tp14514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14515 +tp14516 +bsa(dp14517 +g4 +g5 +(g6 +(I0 +tp14518 +g8 +tp14519 +Rp14520 +(I1 +(I7 +tp14521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14522 +tp14523 +bsa(dp14524 +g4 +g5 +(g6 +(I0 +tp14525 +g8 +tp14526 +Rp14527 +(I1 +(I7 +tp14528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14529 +tp14530 +bsa(dp14531 +g4 +g5 +(g6 +(I0 +tp14532 +g8 +tp14533 +Rp14534 +(I1 +(I7 +tp14535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14536 +tp14537 +bsa(dp14538 +g4 +g5 +(g6 +(I0 +tp14539 +g8 +tp14540 +Rp14541 +(I1 +(I7 +tp14542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14543 +tp14544 +bsa(dp14545 +g4 +g5 +(g6 +(I0 +tp14546 +g8 +tp14547 +Rp14548 +(I1 +(I7 +tp14549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14550 +tp14551 +bsa(dp14552 +g4 +g5 +(g6 +(I0 +tp14553 +g8 +tp14554 +Rp14555 +(I1 +(I7 +tp14556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14557 +tp14558 +bsa(dp14559 +g4 +g5 +(g6 +(I0 +tp14560 +g8 +tp14561 +Rp14562 +(I1 +(I7 +tp14563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14564 +tp14565 +bsa(dp14566 +g4 +g5 +(g6 +(I0 +tp14567 +g8 +tp14568 +Rp14569 +(I1 +(I7 +tp14570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14571 +tp14572 +bsa(dp14573 +g4 +g5 +(g6 +(I0 +tp14574 +g8 +tp14575 +Rp14576 +(I1 +(I7 +tp14577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14578 +tp14579 +bsa(dp14580 +g4 +g5 +(g6 +(I0 +tp14581 +g8 +tp14582 +Rp14583 +(I1 +(I7 +tp14584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14585 +tp14586 +bsa(dp14587 +g4 +g5 +(g6 +(I0 +tp14588 +g8 +tp14589 +Rp14590 +(I1 +(I7 +tp14591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14592 +tp14593 +bsa(dp14594 +g4 +g5 +(g6 +(I0 +tp14595 +g8 +tp14596 +Rp14597 +(I1 +(I7 +tp14598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14599 +tp14600 +bsa(dp14601 +g4 +g5 +(g6 +(I0 +tp14602 +g8 +tp14603 +Rp14604 +(I1 +(I7 +tp14605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14606 +tp14607 +bsa(dp14608 +g4 +g5 +(g6 +(I0 +tp14609 +g8 +tp14610 +Rp14611 +(I1 +(I7 +tp14612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14613 +tp14614 +bsa(dp14615 +g4 +g5 +(g6 +(I0 +tp14616 +g8 +tp14617 +Rp14618 +(I1 +(I7 +tp14619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14620 +tp14621 +bsa(dp14622 +g4 +g5 +(g6 +(I0 +tp14623 +g8 +tp14624 +Rp14625 +(I1 +(I7 +tp14626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14627 +tp14628 +bsa(dp14629 +g4 +g5 +(g6 +(I0 +tp14630 +g8 +tp14631 +Rp14632 +(I1 +(I7 +tp14633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14634 +tp14635 +bsa(dp14636 +g4 +g5 +(g6 +(I0 +tp14637 +g8 +tp14638 +Rp14639 +(I1 +(I7 +tp14640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14641 +tp14642 +bsa(dp14643 +g4 +g5 +(g6 +(I0 +tp14644 +g8 +tp14645 +Rp14646 +(I1 +(I7 +tp14647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14648 +tp14649 +bsa(dp14650 +g4 +g5 +(g6 +(I0 +tp14651 +g8 +tp14652 +Rp14653 +(I1 +(I7 +tp14654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14655 +tp14656 +bsa(dp14657 +g4 +g5 +(g6 +(I0 +tp14658 +g8 +tp14659 +Rp14660 +(I1 +(I7 +tp14661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14662 +tp14663 +bsa(dp14664 +g4 +g5 +(g6 +(I0 +tp14665 +g8 +tp14666 +Rp14667 +(I1 +(I7 +tp14668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14669 +tp14670 +bsa(dp14671 +g4 +g5 +(g6 +(I0 +tp14672 +g8 +tp14673 +Rp14674 +(I1 +(I7 +tp14675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14676 +tp14677 +bsa(dp14678 +g4 +g5 +(g6 +(I0 +tp14679 +g8 +tp14680 +Rp14681 +(I1 +(I7 +tp14682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14683 +tp14684 +bsa(dp14685 +g4 +g5 +(g6 +(I0 +tp14686 +g8 +tp14687 +Rp14688 +(I1 +(I7 +tp14689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14690 +tp14691 +bsa(dp14692 +g4 +g5 +(g6 +(I0 +tp14693 +g8 +tp14694 +Rp14695 +(I1 +(I7 +tp14696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14697 +tp14698 +bsa(dp14699 +g4 +g5 +(g6 +(I0 +tp14700 +g8 +tp14701 +Rp14702 +(I1 +(I7 +tp14703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14704 +tp14705 +bsa(dp14706 +g4 +g5 +(g6 +(I0 +tp14707 +g8 +tp14708 +Rp14709 +(I1 +(I7 +tp14710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14711 +tp14712 +bsa(dp14713 +g4 +g5 +(g6 +(I0 +tp14714 +g8 +tp14715 +Rp14716 +(I1 +(I7 +tp14717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14718 +tp14719 +bsa(dp14720 +g4 +g5 +(g6 +(I0 +tp14721 +g8 +tp14722 +Rp14723 +(I1 +(I7 +tp14724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14725 +tp14726 +bsa(dp14727 +g4 +g5 +(g6 +(I0 +tp14728 +g8 +tp14729 +Rp14730 +(I1 +(I7 +tp14731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14732 +tp14733 +bsa(dp14734 +g4 +g5 +(g6 +(I0 +tp14735 +g8 +tp14736 +Rp14737 +(I1 +(I7 +tp14738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14739 +tp14740 +bsa(dp14741 +g4 +g5 +(g6 +(I0 +tp14742 +g8 +tp14743 +Rp14744 +(I1 +(I7 +tp14745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14746 +tp14747 +bsa(dp14748 +g4 +g5 +(g6 +(I0 +tp14749 +g8 +tp14750 +Rp14751 +(I1 +(I7 +tp14752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14753 +tp14754 +bsa(dp14755 +g4 +g5 +(g6 +(I0 +tp14756 +g8 +tp14757 +Rp14758 +(I1 +(I7 +tp14759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14760 +tp14761 +bsa(dp14762 +g4 +g5 +(g6 +(I0 +tp14763 +g8 +tp14764 +Rp14765 +(I1 +(I7 +tp14766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14767 +tp14768 +bsa(dp14769 +g4 +g5 +(g6 +(I0 +tp14770 +g8 +tp14771 +Rp14772 +(I1 +(I7 +tp14773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14774 +tp14775 +bsa(dp14776 +g4 +g5 +(g6 +(I0 +tp14777 +g8 +tp14778 +Rp14779 +(I1 +(I7 +tp14780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14781 +tp14782 +bsa(dp14783 +g4 +g5 +(g6 +(I0 +tp14784 +g8 +tp14785 +Rp14786 +(I1 +(I7 +tp14787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14788 +tp14789 +bsa(dp14790 +g4 +g5 +(g6 +(I0 +tp14791 +g8 +tp14792 +Rp14793 +(I1 +(I7 +tp14794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14795 +tp14796 +bsa(dp14797 +g4 +g5 +(g6 +(I0 +tp14798 +g8 +tp14799 +Rp14800 +(I1 +(I7 +tp14801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14802 +tp14803 +bsa(dp14804 +g4 +g5 +(g6 +(I0 +tp14805 +g8 +tp14806 +Rp14807 +(I1 +(I7 +tp14808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14809 +tp14810 +bsa(dp14811 +g4 +g5 +(g6 +(I0 +tp14812 +g8 +tp14813 +Rp14814 +(I1 +(I7 +tp14815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14816 +tp14817 +bsa(dp14818 +g4 +g5 +(g6 +(I0 +tp14819 +g8 +tp14820 +Rp14821 +(I1 +(I7 +tp14822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14823 +tp14824 +bsa(dp14825 +g4 +g5 +(g6 +(I0 +tp14826 +g8 +tp14827 +Rp14828 +(I1 +(I7 +tp14829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14830 +tp14831 +bsa(dp14832 +g4 +g5 +(g6 +(I0 +tp14833 +g8 +tp14834 +Rp14835 +(I1 +(I7 +tp14836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14837 +tp14838 +bsa(dp14839 +g4 +g5 +(g6 +(I0 +tp14840 +g8 +tp14841 +Rp14842 +(I1 +(I7 +tp14843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14844 +tp14845 +bsa(dp14846 +g4 +g5 +(g6 +(I0 +tp14847 +g8 +tp14848 +Rp14849 +(I1 +(I7 +tp14850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14851 +tp14852 +bsa(dp14853 +g4 +g5 +(g6 +(I0 +tp14854 +g8 +tp14855 +Rp14856 +(I1 +(I7 +tp14857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14858 +tp14859 +bsa(dp14860 +g4 +g5 +(g6 +(I0 +tp14861 +g8 +tp14862 +Rp14863 +(I1 +(I7 +tp14864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14865 +tp14866 +bsa(dp14867 +g4 +g5 +(g6 +(I0 +tp14868 +g8 +tp14869 +Rp14870 +(I1 +(I7 +tp14871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14872 +tp14873 +bsa(dp14874 +g4 +g5 +(g6 +(I0 +tp14875 +g8 +tp14876 +Rp14877 +(I1 +(I7 +tp14878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14879 +tp14880 +bsa(dp14881 +g4 +g5 +(g6 +(I0 +tp14882 +g8 +tp14883 +Rp14884 +(I1 +(I7 +tp14885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14886 +tp14887 +bsa(dp14888 +g4 +g5 +(g6 +(I0 +tp14889 +g8 +tp14890 +Rp14891 +(I1 +(I7 +tp14892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14893 +tp14894 +bsa(dp14895 +g4 +g5 +(g6 +(I0 +tp14896 +g8 +tp14897 +Rp14898 +(I1 +(I7 +tp14899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14900 +tp14901 +bsa(dp14902 +g4 +g5 +(g6 +(I0 +tp14903 +g8 +tp14904 +Rp14905 +(I1 +(I7 +tp14906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14907 +tp14908 +bsa(dp14909 +g4 +g5 +(g6 +(I0 +tp14910 +g8 +tp14911 +Rp14912 +(I1 +(I7 +tp14913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14914 +tp14915 +bsa(dp14916 +g4 +g5 +(g6 +(I0 +tp14917 +g8 +tp14918 +Rp14919 +(I1 +(I7 +tp14920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14921 +tp14922 +bsa(dp14923 +g4 +g5 +(g6 +(I0 +tp14924 +g8 +tp14925 +Rp14926 +(I1 +(I7 +tp14927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14928 +tp14929 +bsa(dp14930 +g4 +g5 +(g6 +(I0 +tp14931 +g8 +tp14932 +Rp14933 +(I1 +(I7 +tp14934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14935 +tp14936 +bsa(dp14937 +g4 +g5 +(g6 +(I0 +tp14938 +g8 +tp14939 +Rp14940 +(I1 +(I7 +tp14941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14942 +tp14943 +bsa(dp14944 +g4 +g5 +(g6 +(I0 +tp14945 +g8 +tp14946 +Rp14947 +(I1 +(I7 +tp14948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14949 +tp14950 +bsa(dp14951 +g4 +g5 +(g6 +(I0 +tp14952 +g8 +tp14953 +Rp14954 +(I1 +(I7 +tp14955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14956 +tp14957 +bsa(dp14958 +g4 +g5 +(g6 +(I0 +tp14959 +g8 +tp14960 +Rp14961 +(I1 +(I7 +tp14962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14963 +tp14964 +bsa(dp14965 +g4 +g5 +(g6 +(I0 +tp14966 +g8 +tp14967 +Rp14968 +(I1 +(I7 +tp14969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14970 +tp14971 +bsa(dp14972 +g4 +g5 +(g6 +(I0 +tp14973 +g8 +tp14974 +Rp14975 +(I1 +(I7 +tp14976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14977 +tp14978 +bsa(dp14979 +g4 +g5 +(g6 +(I0 +tp14980 +g8 +tp14981 +Rp14982 +(I1 +(I7 +tp14983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p14984 +tp14985 +bsa(dp14986 +g4 +g5 +(g6 +(I0 +tp14987 +g8 +tp14988 +Rp14989 +(I1 +(I7 +tp14990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p14991 +tp14992 +bsa(dp14993 +g4 +g5 +(g6 +(I0 +tp14994 +g8 +tp14995 +Rp14996 +(I1 +(I7 +tp14997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p14998 +tp14999 +bsa(dp15000 +g4 +g5 +(g6 +(I0 +tp15001 +g8 +tp15002 +Rp15003 +(I1 +(I7 +tp15004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15005 +tp15006 +bsa(dp15007 +g4 +g5 +(g6 +(I0 +tp15008 +g8 +tp15009 +Rp15010 +(I1 +(I7 +tp15011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15012 +tp15013 +bsa(dp15014 +g4 +g5 +(g6 +(I0 +tp15015 +g8 +tp15016 +Rp15017 +(I1 +(I7 +tp15018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15019 +tp15020 +bsa(dp15021 +g4 +g5 +(g6 +(I0 +tp15022 +g8 +tp15023 +Rp15024 +(I1 +(I7 +tp15025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15026 +tp15027 +bsa(dp15028 +g4 +g5 +(g6 +(I0 +tp15029 +g8 +tp15030 +Rp15031 +(I1 +(I7 +tp15032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15033 +tp15034 +bsa(dp15035 +g4 +g5 +(g6 +(I0 +tp15036 +g8 +tp15037 +Rp15038 +(I1 +(I7 +tp15039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15040 +tp15041 +bsa(dp15042 +g4 +g5 +(g6 +(I0 +tp15043 +g8 +tp15044 +Rp15045 +(I1 +(I7 +tp15046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15047 +tp15048 +bsa(dp15049 +g4 +g5 +(g6 +(I0 +tp15050 +g8 +tp15051 +Rp15052 +(I1 +(I7 +tp15053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15054 +tp15055 +bsa(dp15056 +g4 +g5 +(g6 +(I0 +tp15057 +g8 +tp15058 +Rp15059 +(I1 +(I7 +tp15060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15061 +tp15062 +bsa(dp15063 +g4 +g5 +(g6 +(I0 +tp15064 +g8 +tp15065 +Rp15066 +(I1 +(I7 +tp15067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15068 +tp15069 +bsa(dp15070 +g4 +g5 +(g6 +(I0 +tp15071 +g8 +tp15072 +Rp15073 +(I1 +(I7 +tp15074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15075 +tp15076 +bsa(dp15077 +g4 +g5 +(g6 +(I0 +tp15078 +g8 +tp15079 +Rp15080 +(I1 +(I7 +tp15081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15082 +tp15083 +bsa(dp15084 +g4 +g5 +(g6 +(I0 +tp15085 +g8 +tp15086 +Rp15087 +(I1 +(I7 +tp15088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15089 +tp15090 +bsa(dp15091 +g4 +g5 +(g6 +(I0 +tp15092 +g8 +tp15093 +Rp15094 +(I1 +(I7 +tp15095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15096 +tp15097 +bsa(dp15098 +g4 +g5 +(g6 +(I0 +tp15099 +g8 +tp15100 +Rp15101 +(I1 +(I7 +tp15102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15103 +tp15104 +bsa(dp15105 +g4 +g5 +(g6 +(I0 +tp15106 +g8 +tp15107 +Rp15108 +(I1 +(I7 +tp15109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15110 +tp15111 +bsa(dp15112 +g4 +g5 +(g6 +(I0 +tp15113 +g8 +tp15114 +Rp15115 +(I1 +(I7 +tp15116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15117 +tp15118 +bsa(dp15119 +g4 +g5 +(g6 +(I0 +tp15120 +g8 +tp15121 +Rp15122 +(I1 +(I7 +tp15123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15124 +tp15125 +bsa(dp15126 +g4 +g5 +(g6 +(I0 +tp15127 +g8 +tp15128 +Rp15129 +(I1 +(I7 +tp15130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15131 +tp15132 +bsa(dp15133 +g4 +g5 +(g6 +(I0 +tp15134 +g8 +tp15135 +Rp15136 +(I1 +(I7 +tp15137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15138 +tp15139 +bsa(dp15140 +g4 +g5 +(g6 +(I0 +tp15141 +g8 +tp15142 +Rp15143 +(I1 +(I7 +tp15144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15145 +tp15146 +bsa(dp15147 +g4 +g5 +(g6 +(I0 +tp15148 +g8 +tp15149 +Rp15150 +(I1 +(I7 +tp15151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15152 +tp15153 +bsa(dp15154 +g4 +g5 +(g6 +(I0 +tp15155 +g8 +tp15156 +Rp15157 +(I1 +(I7 +tp15158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15159 +tp15160 +bsa(dp15161 +g4 +g5 +(g6 +(I0 +tp15162 +g8 +tp15163 +Rp15164 +(I1 +(I7 +tp15165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15166 +tp15167 +bsa(dp15168 +g4 +g5 +(g6 +(I0 +tp15169 +g8 +tp15170 +Rp15171 +(I1 +(I7 +tp15172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15173 +tp15174 +bsa(dp15175 +g4 +g5 +(g6 +(I0 +tp15176 +g8 +tp15177 +Rp15178 +(I1 +(I7 +tp15179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15180 +tp15181 +bsa(dp15182 +g4 +g5 +(g6 +(I0 +tp15183 +g8 +tp15184 +Rp15185 +(I1 +(I7 +tp15186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15187 +tp15188 +bsa(dp15189 +g4 +g5 +(g6 +(I0 +tp15190 +g8 +tp15191 +Rp15192 +(I1 +(I7 +tp15193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15194 +tp15195 +bsa(dp15196 +g4 +g5 +(g6 +(I0 +tp15197 +g8 +tp15198 +Rp15199 +(I1 +(I7 +tp15200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15201 +tp15202 +bsa(dp15203 +g4 +g5 +(g6 +(I0 +tp15204 +g8 +tp15205 +Rp15206 +(I1 +(I7 +tp15207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15208 +tp15209 +bsa(dp15210 +g4 +g5 +(g6 +(I0 +tp15211 +g8 +tp15212 +Rp15213 +(I1 +(I7 +tp15214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15215 +tp15216 +bsa(dp15217 +g4 +g5 +(g6 +(I0 +tp15218 +g8 +tp15219 +Rp15220 +(I1 +(I7 +tp15221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15222 +tp15223 +bsa(dp15224 +g4 +g5 +(g6 +(I0 +tp15225 +g8 +tp15226 +Rp15227 +(I1 +(I7 +tp15228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15229 +tp15230 +bsa(dp15231 +g4 +g5 +(g6 +(I0 +tp15232 +g8 +tp15233 +Rp15234 +(I1 +(I7 +tp15235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15236 +tp15237 +bsa(dp15238 +g4 +g5 +(g6 +(I0 +tp15239 +g8 +tp15240 +Rp15241 +(I1 +(I7 +tp15242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15243 +tp15244 +bsa(dp15245 +g4 +g5 +(g6 +(I0 +tp15246 +g8 +tp15247 +Rp15248 +(I1 +(I7 +tp15249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15250 +tp15251 +bsa(dp15252 +g4 +g5 +(g6 +(I0 +tp15253 +g8 +tp15254 +Rp15255 +(I1 +(I7 +tp15256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15257 +tp15258 +bsa(dp15259 +g4 +g5 +(g6 +(I0 +tp15260 +g8 +tp15261 +Rp15262 +(I1 +(I7 +tp15263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15264 +tp15265 +bsa(dp15266 +g4 +g5 +(g6 +(I0 +tp15267 +g8 +tp15268 +Rp15269 +(I1 +(I7 +tp15270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15271 +tp15272 +bsa(dp15273 +g4 +g5 +(g6 +(I0 +tp15274 +g8 +tp15275 +Rp15276 +(I1 +(I7 +tp15277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15278 +tp15279 +bsa(dp15280 +g4 +g5 +(g6 +(I0 +tp15281 +g8 +tp15282 +Rp15283 +(I1 +(I7 +tp15284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15285 +tp15286 +bsa(dp15287 +g4 +g5 +(g6 +(I0 +tp15288 +g8 +tp15289 +Rp15290 +(I1 +(I7 +tp15291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15292 +tp15293 +bsa(dp15294 +g4 +g5 +(g6 +(I0 +tp15295 +g8 +tp15296 +Rp15297 +(I1 +(I7 +tp15298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15299 +tp15300 +bsa(dp15301 +g4 +g5 +(g6 +(I0 +tp15302 +g8 +tp15303 +Rp15304 +(I1 +(I7 +tp15305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15306 +tp15307 +bsa(dp15308 +g4 +g5 +(g6 +(I0 +tp15309 +g8 +tp15310 +Rp15311 +(I1 +(I7 +tp15312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15313 +tp15314 +bsa(dp15315 +g4 +g5 +(g6 +(I0 +tp15316 +g8 +tp15317 +Rp15318 +(I1 +(I7 +tp15319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15320 +tp15321 +bsa(dp15322 +g4 +g5 +(g6 +(I0 +tp15323 +g8 +tp15324 +Rp15325 +(I1 +(I7 +tp15326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15327 +tp15328 +bsa(dp15329 +g4 +g5 +(g6 +(I0 +tp15330 +g8 +tp15331 +Rp15332 +(I1 +(I7 +tp15333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15334 +tp15335 +bsa(dp15336 +g4 +g5 +(g6 +(I0 +tp15337 +g8 +tp15338 +Rp15339 +(I1 +(I7 +tp15340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15341 +tp15342 +bsa(dp15343 +g4 +g5 +(g6 +(I0 +tp15344 +g8 +tp15345 +Rp15346 +(I1 +(I7 +tp15347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15348 +tp15349 +bsa(dp15350 +g4 +g5 +(g6 +(I0 +tp15351 +g8 +tp15352 +Rp15353 +(I1 +(I7 +tp15354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15355 +tp15356 +bsa(dp15357 +g4 +g5 +(g6 +(I0 +tp15358 +g8 +tp15359 +Rp15360 +(I1 +(I7 +tp15361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15362 +tp15363 +bsa(dp15364 +g4 +g5 +(g6 +(I0 +tp15365 +g8 +tp15366 +Rp15367 +(I1 +(I7 +tp15368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15369 +tp15370 +bsa(dp15371 +g4 +g5 +(g6 +(I0 +tp15372 +g8 +tp15373 +Rp15374 +(I1 +(I7 +tp15375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15376 +tp15377 +bsa(dp15378 +g4 +g5 +(g6 +(I0 +tp15379 +g8 +tp15380 +Rp15381 +(I1 +(I7 +tp15382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15383 +tp15384 +bsa(dp15385 +g4 +g5 +(g6 +(I0 +tp15386 +g8 +tp15387 +Rp15388 +(I1 +(I7 +tp15389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15390 +tp15391 +bsa(dp15392 +g4 +g5 +(g6 +(I0 +tp15393 +g8 +tp15394 +Rp15395 +(I1 +(I7 +tp15396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15397 +tp15398 +bsa(dp15399 +g4 +g5 +(g6 +(I0 +tp15400 +g8 +tp15401 +Rp15402 +(I1 +(I7 +tp15403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15404 +tp15405 +bsa(dp15406 +g4 +g5 +(g6 +(I0 +tp15407 +g8 +tp15408 +Rp15409 +(I1 +(I7 +tp15410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15411 +tp15412 +bsa(dp15413 +g4 +g5 +(g6 +(I0 +tp15414 +g8 +tp15415 +Rp15416 +(I1 +(I7 +tp15417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15418 +tp15419 +bsa(dp15420 +g4 +g5 +(g6 +(I0 +tp15421 +g8 +tp15422 +Rp15423 +(I1 +(I7 +tp15424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15425 +tp15426 +bsa(dp15427 +g4 +g5 +(g6 +(I0 +tp15428 +g8 +tp15429 +Rp15430 +(I1 +(I7 +tp15431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15432 +tp15433 +bsa(dp15434 +g4 +g5 +(g6 +(I0 +tp15435 +g8 +tp15436 +Rp15437 +(I1 +(I7 +tp15438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15439 +tp15440 +bsa(dp15441 +g4 +g5 +(g6 +(I0 +tp15442 +g8 +tp15443 +Rp15444 +(I1 +(I7 +tp15445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15446 +tp15447 +bsa(dp15448 +g4 +g5 +(g6 +(I0 +tp15449 +g8 +tp15450 +Rp15451 +(I1 +(I7 +tp15452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15453 +tp15454 +bsa(dp15455 +g4 +g5 +(g6 +(I0 +tp15456 +g8 +tp15457 +Rp15458 +(I1 +(I7 +tp15459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15460 +tp15461 +bsa(dp15462 +g4 +g5 +(g6 +(I0 +tp15463 +g8 +tp15464 +Rp15465 +(I1 +(I7 +tp15466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15467 +tp15468 +bsa(dp15469 +g4 +g5 +(g6 +(I0 +tp15470 +g8 +tp15471 +Rp15472 +(I1 +(I7 +tp15473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15474 +tp15475 +bsa(dp15476 +g4 +g5 +(g6 +(I0 +tp15477 +g8 +tp15478 +Rp15479 +(I1 +(I7 +tp15480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15481 +tp15482 +bsa(dp15483 +g4 +g5 +(g6 +(I0 +tp15484 +g8 +tp15485 +Rp15486 +(I1 +(I7 +tp15487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15488 +tp15489 +bsa(dp15490 +g4 +g5 +(g6 +(I0 +tp15491 +g8 +tp15492 +Rp15493 +(I1 +(I7 +tp15494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15495 +tp15496 +bsa(dp15497 +g4 +g5 +(g6 +(I0 +tp15498 +g8 +tp15499 +Rp15500 +(I1 +(I7 +tp15501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15502 +tp15503 +bsa(dp15504 +g4 +g5 +(g6 +(I0 +tp15505 +g8 +tp15506 +Rp15507 +(I1 +(I7 +tp15508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15509 +tp15510 +bsa(dp15511 +g4 +g5 +(g6 +(I0 +tp15512 +g8 +tp15513 +Rp15514 +(I1 +(I7 +tp15515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15516 +tp15517 +bsa(dp15518 +g4 +g5 +(g6 +(I0 +tp15519 +g8 +tp15520 +Rp15521 +(I1 +(I7 +tp15522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15523 +tp15524 +bsa(dp15525 +g4 +g5 +(g6 +(I0 +tp15526 +g8 +tp15527 +Rp15528 +(I1 +(I7 +tp15529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15530 +tp15531 +bsa(dp15532 +g4 +g5 +(g6 +(I0 +tp15533 +g8 +tp15534 +Rp15535 +(I1 +(I7 +tp15536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15537 +tp15538 +bsa(dp15539 +g4 +g5 +(g6 +(I0 +tp15540 +g8 +tp15541 +Rp15542 +(I1 +(I7 +tp15543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15544 +tp15545 +bsa(dp15546 +g4 +g5 +(g6 +(I0 +tp15547 +g8 +tp15548 +Rp15549 +(I1 +(I7 +tp15550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15551 +tp15552 +bsa(dp15553 +g4 +g5 +(g6 +(I0 +tp15554 +g8 +tp15555 +Rp15556 +(I1 +(I7 +tp15557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15558 +tp15559 +bsa(dp15560 +g4 +g5 +(g6 +(I0 +tp15561 +g8 +tp15562 +Rp15563 +(I1 +(I7 +tp15564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15565 +tp15566 +bsa(dp15567 +g4 +g5 +(g6 +(I0 +tp15568 +g8 +tp15569 +Rp15570 +(I1 +(I7 +tp15571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15572 +tp15573 +bsa(dp15574 +g4 +g5 +(g6 +(I0 +tp15575 +g8 +tp15576 +Rp15577 +(I1 +(I7 +tp15578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15579 +tp15580 +bsa(dp15581 +g4 +g5 +(g6 +(I0 +tp15582 +g8 +tp15583 +Rp15584 +(I1 +(I7 +tp15585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15586 +tp15587 +bsa(dp15588 +g4 +g5 +(g6 +(I0 +tp15589 +g8 +tp15590 +Rp15591 +(I1 +(I7 +tp15592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15593 +tp15594 +bsa(dp15595 +g4 +g5 +(g6 +(I0 +tp15596 +g8 +tp15597 +Rp15598 +(I1 +(I7 +tp15599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15600 +tp15601 +bsa(dp15602 +g4 +g5 +(g6 +(I0 +tp15603 +g8 +tp15604 +Rp15605 +(I1 +(I7 +tp15606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15607 +tp15608 +bsa(dp15609 +g4 +g5 +(g6 +(I0 +tp15610 +g8 +tp15611 +Rp15612 +(I1 +(I7 +tp15613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15614 +tp15615 +bsa(dp15616 +g4 +g5 +(g6 +(I0 +tp15617 +g8 +tp15618 +Rp15619 +(I1 +(I7 +tp15620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15621 +tp15622 +bsa(dp15623 +g4 +g5 +(g6 +(I0 +tp15624 +g8 +tp15625 +Rp15626 +(I1 +(I7 +tp15627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15628 +tp15629 +bsa(dp15630 +g4 +g5 +(g6 +(I0 +tp15631 +g8 +tp15632 +Rp15633 +(I1 +(I7 +tp15634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15635 +tp15636 +bsa(dp15637 +g4 +g5 +(g6 +(I0 +tp15638 +g8 +tp15639 +Rp15640 +(I1 +(I7 +tp15641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15642 +tp15643 +bsa(dp15644 +g4 +g5 +(g6 +(I0 +tp15645 +g8 +tp15646 +Rp15647 +(I1 +(I7 +tp15648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15649 +tp15650 +bsa(dp15651 +g4 +g5 +(g6 +(I0 +tp15652 +g8 +tp15653 +Rp15654 +(I1 +(I7 +tp15655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15656 +tp15657 +bsa(dp15658 +g4 +g5 +(g6 +(I0 +tp15659 +g8 +tp15660 +Rp15661 +(I1 +(I7 +tp15662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15663 +tp15664 +bsa(dp15665 +g4 +g5 +(g6 +(I0 +tp15666 +g8 +tp15667 +Rp15668 +(I1 +(I7 +tp15669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15670 +tp15671 +bsa(dp15672 +g4 +g5 +(g6 +(I0 +tp15673 +g8 +tp15674 +Rp15675 +(I1 +(I7 +tp15676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15677 +tp15678 +bsa(dp15679 +g4 +g5 +(g6 +(I0 +tp15680 +g8 +tp15681 +Rp15682 +(I1 +(I7 +tp15683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15684 +tp15685 +bsa(dp15686 +g4 +g5 +(g6 +(I0 +tp15687 +g8 +tp15688 +Rp15689 +(I1 +(I7 +tp15690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15691 +tp15692 +bsa(dp15693 +g4 +g5 +(g6 +(I0 +tp15694 +g8 +tp15695 +Rp15696 +(I1 +(I7 +tp15697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15698 +tp15699 +bsa(dp15700 +g4 +g5 +(g6 +(I0 +tp15701 +g8 +tp15702 +Rp15703 +(I1 +(I7 +tp15704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15705 +tp15706 +bsa(dp15707 +g4 +g5 +(g6 +(I0 +tp15708 +g8 +tp15709 +Rp15710 +(I1 +(I7 +tp15711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15712 +tp15713 +bsa(dp15714 +g4 +g5 +(g6 +(I0 +tp15715 +g8 +tp15716 +Rp15717 +(I1 +(I7 +tp15718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15719 +tp15720 +bsa(dp15721 +g4 +g5 +(g6 +(I0 +tp15722 +g8 +tp15723 +Rp15724 +(I1 +(I7 +tp15725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15726 +tp15727 +bsa(dp15728 +g4 +g5 +(g6 +(I0 +tp15729 +g8 +tp15730 +Rp15731 +(I1 +(I7 +tp15732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15733 +tp15734 +bsa(dp15735 +g4 +g5 +(g6 +(I0 +tp15736 +g8 +tp15737 +Rp15738 +(I1 +(I7 +tp15739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15740 +tp15741 +bsa(dp15742 +g4 +g5 +(g6 +(I0 +tp15743 +g8 +tp15744 +Rp15745 +(I1 +(I7 +tp15746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15747 +tp15748 +bsa(dp15749 +g4 +g5 +(g6 +(I0 +tp15750 +g8 +tp15751 +Rp15752 +(I1 +(I7 +tp15753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15754 +tp15755 +bsa(dp15756 +g4 +g5 +(g6 +(I0 +tp15757 +g8 +tp15758 +Rp15759 +(I1 +(I7 +tp15760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15761 +tp15762 +bsa(dp15763 +g4 +g5 +(g6 +(I0 +tp15764 +g8 +tp15765 +Rp15766 +(I1 +(I7 +tp15767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15768 +tp15769 +bsa(dp15770 +g4 +g5 +(g6 +(I0 +tp15771 +g8 +tp15772 +Rp15773 +(I1 +(I7 +tp15774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15775 +tp15776 +bsa(dp15777 +g4 +g5 +(g6 +(I0 +tp15778 +g8 +tp15779 +Rp15780 +(I1 +(I7 +tp15781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15782 +tp15783 +bsa(dp15784 +g4 +g5 +(g6 +(I0 +tp15785 +g8 +tp15786 +Rp15787 +(I1 +(I7 +tp15788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15789 +tp15790 +bsa(dp15791 +g4 +g5 +(g6 +(I0 +tp15792 +g8 +tp15793 +Rp15794 +(I1 +(I7 +tp15795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15796 +tp15797 +bsa(dp15798 +g4 +g5 +(g6 +(I0 +tp15799 +g8 +tp15800 +Rp15801 +(I1 +(I7 +tp15802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15803 +tp15804 +bsa(dp15805 +g4 +g5 +(g6 +(I0 +tp15806 +g8 +tp15807 +Rp15808 +(I1 +(I7 +tp15809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15810 +tp15811 +bsa(dp15812 +g4 +g5 +(g6 +(I0 +tp15813 +g8 +tp15814 +Rp15815 +(I1 +(I7 +tp15816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15817 +tp15818 +bsa(dp15819 +g4 +g5 +(g6 +(I0 +tp15820 +g8 +tp15821 +Rp15822 +(I1 +(I7 +tp15823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15824 +tp15825 +bsa(dp15826 +g4 +g5 +(g6 +(I0 +tp15827 +g8 +tp15828 +Rp15829 +(I1 +(I7 +tp15830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15831 +tp15832 +bsa(dp15833 +g4 +g5 +(g6 +(I0 +tp15834 +g8 +tp15835 +Rp15836 +(I1 +(I7 +tp15837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15838 +tp15839 +bsa(dp15840 +g4 +g5 +(g6 +(I0 +tp15841 +g8 +tp15842 +Rp15843 +(I1 +(I7 +tp15844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15845 +tp15846 +bsa(dp15847 +g4 +g5 +(g6 +(I0 +tp15848 +g8 +tp15849 +Rp15850 +(I1 +(I7 +tp15851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15852 +tp15853 +bsa(dp15854 +g4 +g5 +(g6 +(I0 +tp15855 +g8 +tp15856 +Rp15857 +(I1 +(I7 +tp15858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15859 +tp15860 +bsa(dp15861 +g4 +g5 +(g6 +(I0 +tp15862 +g8 +tp15863 +Rp15864 +(I1 +(I7 +tp15865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15866 +tp15867 +bsa(dp15868 +g4 +g5 +(g6 +(I0 +tp15869 +g8 +tp15870 +Rp15871 +(I1 +(I7 +tp15872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15873 +tp15874 +bsa(dp15875 +g4 +g5 +(g6 +(I0 +tp15876 +g8 +tp15877 +Rp15878 +(I1 +(I7 +tp15879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15880 +tp15881 +bsa(dp15882 +g4 +g5 +(g6 +(I0 +tp15883 +g8 +tp15884 +Rp15885 +(I1 +(I7 +tp15886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15887 +tp15888 +bsa(dp15889 +g4 +g5 +(g6 +(I0 +tp15890 +g8 +tp15891 +Rp15892 +(I1 +(I7 +tp15893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15894 +tp15895 +bsa(dp15896 +g4 +g5 +(g6 +(I0 +tp15897 +g8 +tp15898 +Rp15899 +(I1 +(I7 +tp15900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15901 +tp15902 +bsa(dp15903 +g4 +g5 +(g6 +(I0 +tp15904 +g8 +tp15905 +Rp15906 +(I1 +(I7 +tp15907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15908 +tp15909 +bsa(dp15910 +g4 +g5 +(g6 +(I0 +tp15911 +g8 +tp15912 +Rp15913 +(I1 +(I7 +tp15914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15915 +tp15916 +bsa(dp15917 +g4 +g5 +(g6 +(I0 +tp15918 +g8 +tp15919 +Rp15920 +(I1 +(I7 +tp15921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15922 +tp15923 +bsa(dp15924 +g4 +g5 +(g6 +(I0 +tp15925 +g8 +tp15926 +Rp15927 +(I1 +(I7 +tp15928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15929 +tp15930 +bsa(dp15931 +g4 +g5 +(g6 +(I0 +tp15932 +g8 +tp15933 +Rp15934 +(I1 +(I7 +tp15935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15936 +tp15937 +bsa(dp15938 +g4 +g5 +(g6 +(I0 +tp15939 +g8 +tp15940 +Rp15941 +(I1 +(I7 +tp15942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15943 +tp15944 +bsa(dp15945 +g4 +g5 +(g6 +(I0 +tp15946 +g8 +tp15947 +Rp15948 +(I1 +(I7 +tp15949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15950 +tp15951 +bsa(dp15952 +g4 +g5 +(g6 +(I0 +tp15953 +g8 +tp15954 +Rp15955 +(I1 +(I7 +tp15956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15957 +tp15958 +bsa(dp15959 +g4 +g5 +(g6 +(I0 +tp15960 +g8 +tp15961 +Rp15962 +(I1 +(I7 +tp15963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15964 +tp15965 +bsa(dp15966 +g4 +g5 +(g6 +(I0 +tp15967 +g8 +tp15968 +Rp15969 +(I1 +(I7 +tp15970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15971 +tp15972 +bsa(dp15973 +g4 +g5 +(g6 +(I0 +tp15974 +g8 +tp15975 +Rp15976 +(I1 +(I7 +tp15977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p15978 +tp15979 +bsa(dp15980 +g4 +g5 +(g6 +(I0 +tp15981 +g8 +tp15982 +Rp15983 +(I1 +(I7 +tp15984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p15985 +tp15986 +bsa(dp15987 +g4 +g5 +(g6 +(I0 +tp15988 +g8 +tp15989 +Rp15990 +(I1 +(I7 +tp15991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15992 +tp15993 +bsa(dp15994 +g4 +g5 +(g6 +(I0 +tp15995 +g8 +tp15996 +Rp15997 +(I1 +(I7 +tp15998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p15999 +tp16000 +bsa(dp16001 +g4 +g5 +(g6 +(I0 +tp16002 +g8 +tp16003 +Rp16004 +(I1 +(I7 +tp16005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16006 +tp16007 +bsa(dp16008 +g4 +g5 +(g6 +(I0 +tp16009 +g8 +tp16010 +Rp16011 +(I1 +(I7 +tp16012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16013 +tp16014 +bsa(dp16015 +g4 +g5 +(g6 +(I0 +tp16016 +g8 +tp16017 +Rp16018 +(I1 +(I7 +tp16019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16020 +tp16021 +bsa(dp16022 +g4 +g5 +(g6 +(I0 +tp16023 +g8 +tp16024 +Rp16025 +(I1 +(I7 +tp16026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16027 +tp16028 +bsa(dp16029 +g4 +g5 +(g6 +(I0 +tp16030 +g8 +tp16031 +Rp16032 +(I1 +(I7 +tp16033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16034 +tp16035 +bsa(dp16036 +g4 +g5 +(g6 +(I0 +tp16037 +g8 +tp16038 +Rp16039 +(I1 +(I7 +tp16040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16041 +tp16042 +bsa(dp16043 +g4 +g5 +(g6 +(I0 +tp16044 +g8 +tp16045 +Rp16046 +(I1 +(I7 +tp16047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16048 +tp16049 +bsa(dp16050 +g4 +g5 +(g6 +(I0 +tp16051 +g8 +tp16052 +Rp16053 +(I1 +(I7 +tp16054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16055 +tp16056 +bsa(dp16057 +g4 +g5 +(g6 +(I0 +tp16058 +g8 +tp16059 +Rp16060 +(I1 +(I7 +tp16061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16062 +tp16063 +bsa(dp16064 +g4 +g5 +(g6 +(I0 +tp16065 +g8 +tp16066 +Rp16067 +(I1 +(I7 +tp16068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16069 +tp16070 +bsa(dp16071 +g4 +g5 +(g6 +(I0 +tp16072 +g8 +tp16073 +Rp16074 +(I1 +(I7 +tp16075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16076 +tp16077 +bsa(dp16078 +g4 +g5 +(g6 +(I0 +tp16079 +g8 +tp16080 +Rp16081 +(I1 +(I7 +tp16082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16083 +tp16084 +bsa(dp16085 +g4 +g5 +(g6 +(I0 +tp16086 +g8 +tp16087 +Rp16088 +(I1 +(I7 +tp16089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16090 +tp16091 +bsa(dp16092 +g4 +g5 +(g6 +(I0 +tp16093 +g8 +tp16094 +Rp16095 +(I1 +(I7 +tp16096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16097 +tp16098 +bsa(dp16099 +g4 +g5 +(g6 +(I0 +tp16100 +g8 +tp16101 +Rp16102 +(I1 +(I7 +tp16103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16104 +tp16105 +bsa(dp16106 +g4 +g5 +(g6 +(I0 +tp16107 +g8 +tp16108 +Rp16109 +(I1 +(I7 +tp16110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16111 +tp16112 +bsa(dp16113 +g4 +g5 +(g6 +(I0 +tp16114 +g8 +tp16115 +Rp16116 +(I1 +(I7 +tp16117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16118 +tp16119 +bsa(dp16120 +g4 +g5 +(g6 +(I0 +tp16121 +g8 +tp16122 +Rp16123 +(I1 +(I7 +tp16124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16125 +tp16126 +bsa(dp16127 +g4 +g5 +(g6 +(I0 +tp16128 +g8 +tp16129 +Rp16130 +(I1 +(I7 +tp16131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16132 +tp16133 +bsa(dp16134 +g4 +g5 +(g6 +(I0 +tp16135 +g8 +tp16136 +Rp16137 +(I1 +(I7 +tp16138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16139 +tp16140 +bsa(dp16141 +g4 +g5 +(g6 +(I0 +tp16142 +g8 +tp16143 +Rp16144 +(I1 +(I7 +tp16145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16146 +tp16147 +bsa(dp16148 +g4 +g5 +(g6 +(I0 +tp16149 +g8 +tp16150 +Rp16151 +(I1 +(I7 +tp16152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16153 +tp16154 +bsa(dp16155 +g4 +g5 +(g6 +(I0 +tp16156 +g8 +tp16157 +Rp16158 +(I1 +(I7 +tp16159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16160 +tp16161 +bsa(dp16162 +g4 +g5 +(g6 +(I0 +tp16163 +g8 +tp16164 +Rp16165 +(I1 +(I7 +tp16166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16167 +tp16168 +bsa(dp16169 +g4 +g5 +(g6 +(I0 +tp16170 +g8 +tp16171 +Rp16172 +(I1 +(I7 +tp16173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16174 +tp16175 +bsa(dp16176 +g4 +g5 +(g6 +(I0 +tp16177 +g8 +tp16178 +Rp16179 +(I1 +(I7 +tp16180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16181 +tp16182 +bsa(dp16183 +g4 +g5 +(g6 +(I0 +tp16184 +g8 +tp16185 +Rp16186 +(I1 +(I7 +tp16187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16188 +tp16189 +bsa(dp16190 +g4 +g5 +(g6 +(I0 +tp16191 +g8 +tp16192 +Rp16193 +(I1 +(I7 +tp16194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16195 +tp16196 +bsa(dp16197 +g4 +g5 +(g6 +(I0 +tp16198 +g8 +tp16199 +Rp16200 +(I1 +(I7 +tp16201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16202 +tp16203 +bsa(dp16204 +g4 +g5 +(g6 +(I0 +tp16205 +g8 +tp16206 +Rp16207 +(I1 +(I7 +tp16208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16209 +tp16210 +bsa(dp16211 +g4 +g5 +(g6 +(I0 +tp16212 +g8 +tp16213 +Rp16214 +(I1 +(I7 +tp16215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16216 +tp16217 +bsa(dp16218 +g4 +g5 +(g6 +(I0 +tp16219 +g8 +tp16220 +Rp16221 +(I1 +(I7 +tp16222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16223 +tp16224 +bsa(dp16225 +g4 +g5 +(g6 +(I0 +tp16226 +g8 +tp16227 +Rp16228 +(I1 +(I7 +tp16229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16230 +tp16231 +bsa(dp16232 +g4 +g5 +(g6 +(I0 +tp16233 +g8 +tp16234 +Rp16235 +(I1 +(I7 +tp16236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16237 +tp16238 +bsa(dp16239 +g4 +g5 +(g6 +(I0 +tp16240 +g8 +tp16241 +Rp16242 +(I1 +(I7 +tp16243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16244 +tp16245 +bsa(dp16246 +g4 +g5 +(g6 +(I0 +tp16247 +g8 +tp16248 +Rp16249 +(I1 +(I7 +tp16250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16251 +tp16252 +bsa(dp16253 +g4 +g5 +(g6 +(I0 +tp16254 +g8 +tp16255 +Rp16256 +(I1 +(I7 +tp16257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16258 +tp16259 +bsa(dp16260 +g4 +g5 +(g6 +(I0 +tp16261 +g8 +tp16262 +Rp16263 +(I1 +(I7 +tp16264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16265 +tp16266 +bsa(dp16267 +g4 +g5 +(g6 +(I0 +tp16268 +g8 +tp16269 +Rp16270 +(I1 +(I7 +tp16271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16272 +tp16273 +bsa(dp16274 +g4 +g5 +(g6 +(I0 +tp16275 +g8 +tp16276 +Rp16277 +(I1 +(I7 +tp16278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16279 +tp16280 +bsa(dp16281 +g4 +g5 +(g6 +(I0 +tp16282 +g8 +tp16283 +Rp16284 +(I1 +(I7 +tp16285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16286 +tp16287 +bsa(dp16288 +g4 +g5 +(g6 +(I0 +tp16289 +g8 +tp16290 +Rp16291 +(I1 +(I7 +tp16292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16293 +tp16294 +bsa(dp16295 +g4 +g5 +(g6 +(I0 +tp16296 +g8 +tp16297 +Rp16298 +(I1 +(I7 +tp16299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16300 +tp16301 +bsa(dp16302 +g4 +g5 +(g6 +(I0 +tp16303 +g8 +tp16304 +Rp16305 +(I1 +(I7 +tp16306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16307 +tp16308 +bsa(dp16309 +g4 +g5 +(g6 +(I0 +tp16310 +g8 +tp16311 +Rp16312 +(I1 +(I7 +tp16313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16314 +tp16315 +bsa(dp16316 +g4 +g5 +(g6 +(I0 +tp16317 +g8 +tp16318 +Rp16319 +(I1 +(I7 +tp16320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16321 +tp16322 +bsa(dp16323 +g4 +g5 +(g6 +(I0 +tp16324 +g8 +tp16325 +Rp16326 +(I1 +(I7 +tp16327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16328 +tp16329 +bsa(dp16330 +g4 +g5 +(g6 +(I0 +tp16331 +g8 +tp16332 +Rp16333 +(I1 +(I7 +tp16334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16335 +tp16336 +bsa(dp16337 +g4 +g5 +(g6 +(I0 +tp16338 +g8 +tp16339 +Rp16340 +(I1 +(I7 +tp16341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16342 +tp16343 +bsa(dp16344 +g4 +g5 +(g6 +(I0 +tp16345 +g8 +tp16346 +Rp16347 +(I1 +(I7 +tp16348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16349 +tp16350 +bsa(dp16351 +g4 +g5 +(g6 +(I0 +tp16352 +g8 +tp16353 +Rp16354 +(I1 +(I7 +tp16355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16356 +tp16357 +bsa(dp16358 +g4 +g5 +(g6 +(I0 +tp16359 +g8 +tp16360 +Rp16361 +(I1 +(I7 +tp16362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16363 +tp16364 +bsa(dp16365 +g4 +g5 +(g6 +(I0 +tp16366 +g8 +tp16367 +Rp16368 +(I1 +(I7 +tp16369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16370 +tp16371 +bsa(dp16372 +g4 +g5 +(g6 +(I0 +tp16373 +g8 +tp16374 +Rp16375 +(I1 +(I7 +tp16376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16377 +tp16378 +bsa(dp16379 +g4 +g5 +(g6 +(I0 +tp16380 +g8 +tp16381 +Rp16382 +(I1 +(I7 +tp16383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16384 +tp16385 +bsa(dp16386 +g4 +g5 +(g6 +(I0 +tp16387 +g8 +tp16388 +Rp16389 +(I1 +(I7 +tp16390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16391 +tp16392 +bsa(dp16393 +g4 +g5 +(g6 +(I0 +tp16394 +g8 +tp16395 +Rp16396 +(I1 +(I7 +tp16397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16398 +tp16399 +bsa(dp16400 +g4 +g5 +(g6 +(I0 +tp16401 +g8 +tp16402 +Rp16403 +(I1 +(I7 +tp16404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16405 +tp16406 +bsa(dp16407 +g4 +g5 +(g6 +(I0 +tp16408 +g8 +tp16409 +Rp16410 +(I1 +(I7 +tp16411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16412 +tp16413 +bsa(dp16414 +g4 +g5 +(g6 +(I0 +tp16415 +g8 +tp16416 +Rp16417 +(I1 +(I7 +tp16418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16419 +tp16420 +bsa(dp16421 +g4 +g5 +(g6 +(I0 +tp16422 +g8 +tp16423 +Rp16424 +(I1 +(I7 +tp16425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16426 +tp16427 +bsa(dp16428 +g4 +g5 +(g6 +(I0 +tp16429 +g8 +tp16430 +Rp16431 +(I1 +(I7 +tp16432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16433 +tp16434 +bsa(dp16435 +g4 +g5 +(g6 +(I0 +tp16436 +g8 +tp16437 +Rp16438 +(I1 +(I7 +tp16439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16440 +tp16441 +bsa(dp16442 +g4 +g5 +(g6 +(I0 +tp16443 +g8 +tp16444 +Rp16445 +(I1 +(I7 +tp16446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16447 +tp16448 +bsa(dp16449 +g4 +g5 +(g6 +(I0 +tp16450 +g8 +tp16451 +Rp16452 +(I1 +(I7 +tp16453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16454 +tp16455 +bsa(dp16456 +g4 +g5 +(g6 +(I0 +tp16457 +g8 +tp16458 +Rp16459 +(I1 +(I7 +tp16460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16461 +tp16462 +bsa(dp16463 +g4 +g5 +(g6 +(I0 +tp16464 +g8 +tp16465 +Rp16466 +(I1 +(I7 +tp16467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16468 +tp16469 +bsa(dp16470 +g4 +g5 +(g6 +(I0 +tp16471 +g8 +tp16472 +Rp16473 +(I1 +(I7 +tp16474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16475 +tp16476 +bsa(dp16477 +g4 +g5 +(g6 +(I0 +tp16478 +g8 +tp16479 +Rp16480 +(I1 +(I7 +tp16481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16482 +tp16483 +bsa(dp16484 +g4 +g5 +(g6 +(I0 +tp16485 +g8 +tp16486 +Rp16487 +(I1 +(I7 +tp16488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16489 +tp16490 +bsa(dp16491 +g4 +g5 +(g6 +(I0 +tp16492 +g8 +tp16493 +Rp16494 +(I1 +(I7 +tp16495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16496 +tp16497 +bsa(dp16498 +g4 +g5 +(g6 +(I0 +tp16499 +g8 +tp16500 +Rp16501 +(I1 +(I7 +tp16502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16503 +tp16504 +bsa(dp16505 +g4 +g5 +(g6 +(I0 +tp16506 +g8 +tp16507 +Rp16508 +(I1 +(I7 +tp16509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16510 +tp16511 +bsa(dp16512 +g4 +g5 +(g6 +(I0 +tp16513 +g8 +tp16514 +Rp16515 +(I1 +(I7 +tp16516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16517 +tp16518 +bsa(dp16519 +g4 +g5 +(g6 +(I0 +tp16520 +g8 +tp16521 +Rp16522 +(I1 +(I7 +tp16523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16524 +tp16525 +bsa(dp16526 +g4 +g5 +(g6 +(I0 +tp16527 +g8 +tp16528 +Rp16529 +(I1 +(I7 +tp16530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16531 +tp16532 +bsa(dp16533 +g4 +g5 +(g6 +(I0 +tp16534 +g8 +tp16535 +Rp16536 +(I1 +(I7 +tp16537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16538 +tp16539 +bsa(dp16540 +g4 +g5 +(g6 +(I0 +tp16541 +g8 +tp16542 +Rp16543 +(I1 +(I7 +tp16544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16545 +tp16546 +bsa(dp16547 +g4 +g5 +(g6 +(I0 +tp16548 +g8 +tp16549 +Rp16550 +(I1 +(I7 +tp16551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16552 +tp16553 +bsa(dp16554 +g4 +g5 +(g6 +(I0 +tp16555 +g8 +tp16556 +Rp16557 +(I1 +(I7 +tp16558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16559 +tp16560 +bsa(dp16561 +g4 +g5 +(g6 +(I0 +tp16562 +g8 +tp16563 +Rp16564 +(I1 +(I7 +tp16565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16566 +tp16567 +bsa(dp16568 +g4 +g5 +(g6 +(I0 +tp16569 +g8 +tp16570 +Rp16571 +(I1 +(I7 +tp16572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16573 +tp16574 +bsa(dp16575 +g4 +g5 +(g6 +(I0 +tp16576 +g8 +tp16577 +Rp16578 +(I1 +(I7 +tp16579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16580 +tp16581 +bsa(dp16582 +g4 +g5 +(g6 +(I0 +tp16583 +g8 +tp16584 +Rp16585 +(I1 +(I7 +tp16586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16587 +tp16588 +bsa(dp16589 +g4 +g5 +(g6 +(I0 +tp16590 +g8 +tp16591 +Rp16592 +(I1 +(I7 +tp16593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16594 +tp16595 +bsa(dp16596 +g4 +g5 +(g6 +(I0 +tp16597 +g8 +tp16598 +Rp16599 +(I1 +(I7 +tp16600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16601 +tp16602 +bsa(dp16603 +g4 +g5 +(g6 +(I0 +tp16604 +g8 +tp16605 +Rp16606 +(I1 +(I7 +tp16607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16608 +tp16609 +bsa(dp16610 +g4 +g5 +(g6 +(I0 +tp16611 +g8 +tp16612 +Rp16613 +(I1 +(I7 +tp16614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16615 +tp16616 +bsa(dp16617 +g4 +g5 +(g6 +(I0 +tp16618 +g8 +tp16619 +Rp16620 +(I1 +(I7 +tp16621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16622 +tp16623 +bsa(dp16624 +g4 +g5 +(g6 +(I0 +tp16625 +g8 +tp16626 +Rp16627 +(I1 +(I7 +tp16628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16629 +tp16630 +bsa(dp16631 +g4 +g5 +(g6 +(I0 +tp16632 +g8 +tp16633 +Rp16634 +(I1 +(I7 +tp16635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16636 +tp16637 +bsa(dp16638 +g4 +g5 +(g6 +(I0 +tp16639 +g8 +tp16640 +Rp16641 +(I1 +(I7 +tp16642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16643 +tp16644 +bsa(dp16645 +g4 +g5 +(g6 +(I0 +tp16646 +g8 +tp16647 +Rp16648 +(I1 +(I7 +tp16649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16650 +tp16651 +bsa(dp16652 +g4 +g5 +(g6 +(I0 +tp16653 +g8 +tp16654 +Rp16655 +(I1 +(I7 +tp16656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16657 +tp16658 +bsa(dp16659 +g4 +g5 +(g6 +(I0 +tp16660 +g8 +tp16661 +Rp16662 +(I1 +(I7 +tp16663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16664 +tp16665 +bsa(dp16666 +g4 +g5 +(g6 +(I0 +tp16667 +g8 +tp16668 +Rp16669 +(I1 +(I7 +tp16670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16671 +tp16672 +bsa(dp16673 +g4 +g5 +(g6 +(I0 +tp16674 +g8 +tp16675 +Rp16676 +(I1 +(I7 +tp16677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16678 +tp16679 +bsa(dp16680 +g4 +g5 +(g6 +(I0 +tp16681 +g8 +tp16682 +Rp16683 +(I1 +(I7 +tp16684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16685 +tp16686 +bsa(dp16687 +g4 +g5 +(g6 +(I0 +tp16688 +g8 +tp16689 +Rp16690 +(I1 +(I7 +tp16691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16692 +tp16693 +bsa(dp16694 +g4 +g5 +(g6 +(I0 +tp16695 +g8 +tp16696 +Rp16697 +(I1 +(I7 +tp16698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16699 +tp16700 +bsa(dp16701 +g4 +g5 +(g6 +(I0 +tp16702 +g8 +tp16703 +Rp16704 +(I1 +(I7 +tp16705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16706 +tp16707 +bsa(dp16708 +g4 +g5 +(g6 +(I0 +tp16709 +g8 +tp16710 +Rp16711 +(I1 +(I7 +tp16712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16713 +tp16714 +bsa(dp16715 +g4 +g5 +(g6 +(I0 +tp16716 +g8 +tp16717 +Rp16718 +(I1 +(I7 +tp16719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16720 +tp16721 +bsa(dp16722 +g4 +g5 +(g6 +(I0 +tp16723 +g8 +tp16724 +Rp16725 +(I1 +(I7 +tp16726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16727 +tp16728 +bsa(dp16729 +g4 +g5 +(g6 +(I0 +tp16730 +g8 +tp16731 +Rp16732 +(I1 +(I7 +tp16733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16734 +tp16735 +bsa(dp16736 +g4 +g5 +(g6 +(I0 +tp16737 +g8 +tp16738 +Rp16739 +(I1 +(I7 +tp16740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16741 +tp16742 +bsa(dp16743 +g4 +g5 +(g6 +(I0 +tp16744 +g8 +tp16745 +Rp16746 +(I1 +(I7 +tp16747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16748 +tp16749 +bsa(dp16750 +g4 +g5 +(g6 +(I0 +tp16751 +g8 +tp16752 +Rp16753 +(I1 +(I7 +tp16754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16755 +tp16756 +bsa(dp16757 +g4 +g5 +(g6 +(I0 +tp16758 +g8 +tp16759 +Rp16760 +(I1 +(I7 +tp16761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16762 +tp16763 +bsa(dp16764 +g4 +g5 +(g6 +(I0 +tp16765 +g8 +tp16766 +Rp16767 +(I1 +(I7 +tp16768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16769 +tp16770 +bsa(dp16771 +g4 +g5 +(g6 +(I0 +tp16772 +g8 +tp16773 +Rp16774 +(I1 +(I7 +tp16775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16776 +tp16777 +bsa(dp16778 +g4 +g5 +(g6 +(I0 +tp16779 +g8 +tp16780 +Rp16781 +(I1 +(I7 +tp16782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16783 +tp16784 +bsa(dp16785 +g4 +g5 +(g6 +(I0 +tp16786 +g8 +tp16787 +Rp16788 +(I1 +(I7 +tp16789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16790 +tp16791 +bsa(dp16792 +g4 +g5 +(g6 +(I0 +tp16793 +g8 +tp16794 +Rp16795 +(I1 +(I7 +tp16796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16797 +tp16798 +bsa(dp16799 +g4 +g5 +(g6 +(I0 +tp16800 +g8 +tp16801 +Rp16802 +(I1 +(I7 +tp16803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16804 +tp16805 +bsa(dp16806 +g4 +g5 +(g6 +(I0 +tp16807 +g8 +tp16808 +Rp16809 +(I1 +(I7 +tp16810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16811 +tp16812 +bsa(dp16813 +g4 +g5 +(g6 +(I0 +tp16814 +g8 +tp16815 +Rp16816 +(I1 +(I7 +tp16817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16818 +tp16819 +bsa(dp16820 +g4 +g5 +(g6 +(I0 +tp16821 +g8 +tp16822 +Rp16823 +(I1 +(I7 +tp16824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16825 +tp16826 +bsa(dp16827 +g4 +g5 +(g6 +(I0 +tp16828 +g8 +tp16829 +Rp16830 +(I1 +(I7 +tp16831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16832 +tp16833 +bsa(dp16834 +g4 +g5 +(g6 +(I0 +tp16835 +g8 +tp16836 +Rp16837 +(I1 +(I7 +tp16838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16839 +tp16840 +bsa(dp16841 +g4 +g5 +(g6 +(I0 +tp16842 +g8 +tp16843 +Rp16844 +(I1 +(I7 +tp16845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16846 +tp16847 +bsa(dp16848 +g4 +g5 +(g6 +(I0 +tp16849 +g8 +tp16850 +Rp16851 +(I1 +(I7 +tp16852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16853 +tp16854 +bsa(dp16855 +g4 +g5 +(g6 +(I0 +tp16856 +g8 +tp16857 +Rp16858 +(I1 +(I7 +tp16859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16860 +tp16861 +bsa(dp16862 +g4 +g5 +(g6 +(I0 +tp16863 +g8 +tp16864 +Rp16865 +(I1 +(I7 +tp16866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16867 +tp16868 +bsa(dp16869 +g4 +g5 +(g6 +(I0 +tp16870 +g8 +tp16871 +Rp16872 +(I1 +(I7 +tp16873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16874 +tp16875 +bsa(dp16876 +g4 +g5 +(g6 +(I0 +tp16877 +g8 +tp16878 +Rp16879 +(I1 +(I7 +tp16880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16881 +tp16882 +bsa(dp16883 +g4 +g5 +(g6 +(I0 +tp16884 +g8 +tp16885 +Rp16886 +(I1 +(I7 +tp16887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16888 +tp16889 +bsa(dp16890 +g4 +g5 +(g6 +(I0 +tp16891 +g8 +tp16892 +Rp16893 +(I1 +(I7 +tp16894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16895 +tp16896 +bsa(dp16897 +g4 +g5 +(g6 +(I0 +tp16898 +g8 +tp16899 +Rp16900 +(I1 +(I7 +tp16901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16902 +tp16903 +bsa(dp16904 +g4 +g5 +(g6 +(I0 +tp16905 +g8 +tp16906 +Rp16907 +(I1 +(I7 +tp16908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16909 +tp16910 +bsa(dp16911 +g4 +g5 +(g6 +(I0 +tp16912 +g8 +tp16913 +Rp16914 +(I1 +(I7 +tp16915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16916 +tp16917 +bsa(dp16918 +g4 +g5 +(g6 +(I0 +tp16919 +g8 +tp16920 +Rp16921 +(I1 +(I7 +tp16922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16923 +tp16924 +bsa(dp16925 +g4 +g5 +(g6 +(I0 +tp16926 +g8 +tp16927 +Rp16928 +(I1 +(I7 +tp16929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16930 +tp16931 +bsa(dp16932 +g4 +g5 +(g6 +(I0 +tp16933 +g8 +tp16934 +Rp16935 +(I1 +(I7 +tp16936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16937 +tp16938 +bsa(dp16939 +g4 +g5 +(g6 +(I0 +tp16940 +g8 +tp16941 +Rp16942 +(I1 +(I7 +tp16943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16944 +tp16945 +bsa(dp16946 +g4 +g5 +(g6 +(I0 +tp16947 +g8 +tp16948 +Rp16949 +(I1 +(I7 +tp16950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16951 +tp16952 +bsa(dp16953 +g4 +g5 +(g6 +(I0 +tp16954 +g8 +tp16955 +Rp16956 +(I1 +(I7 +tp16957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16958 +tp16959 +bsa(dp16960 +g4 +g5 +(g6 +(I0 +tp16961 +g8 +tp16962 +Rp16963 +(I1 +(I7 +tp16964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16965 +tp16966 +bsa(dp16967 +g4 +g5 +(g6 +(I0 +tp16968 +g8 +tp16969 +Rp16970 +(I1 +(I7 +tp16971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p16972 +tp16973 +bsa(dp16974 +g4 +g5 +(g6 +(I0 +tp16975 +g8 +tp16976 +Rp16977 +(I1 +(I7 +tp16978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p16979 +tp16980 +bsa(dp16981 +g4 +g5 +(g6 +(I0 +tp16982 +g8 +tp16983 +Rp16984 +(I1 +(I7 +tp16985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16986 +tp16987 +bsa(dp16988 +g4 +g5 +(g6 +(I0 +tp16989 +g8 +tp16990 +Rp16991 +(I1 +(I7 +tp16992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p16993 +tp16994 +bsa(dp16995 +g4 +g5 +(g6 +(I0 +tp16996 +g8 +tp16997 +Rp16998 +(I1 +(I7 +tp16999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17000 +tp17001 +bsa(dp17002 +g4 +g5 +(g6 +(I0 +tp17003 +g8 +tp17004 +Rp17005 +(I1 +(I7 +tp17006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17007 +tp17008 +bsa(dp17009 +g4 +g5 +(g6 +(I0 +tp17010 +g8 +tp17011 +Rp17012 +(I1 +(I7 +tp17013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17014 +tp17015 +bsa(dp17016 +g4 +g5 +(g6 +(I0 +tp17017 +g8 +tp17018 +Rp17019 +(I1 +(I7 +tp17020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17021 +tp17022 +bsa(dp17023 +g4 +g5 +(g6 +(I0 +tp17024 +g8 +tp17025 +Rp17026 +(I1 +(I7 +tp17027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17028 +tp17029 +bsa(dp17030 +g4 +g5 +(g6 +(I0 +tp17031 +g8 +tp17032 +Rp17033 +(I1 +(I7 +tp17034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17035 +tp17036 +bsa(dp17037 +g4 +g5 +(g6 +(I0 +tp17038 +g8 +tp17039 +Rp17040 +(I1 +(I7 +tp17041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17042 +tp17043 +bsa(dp17044 +g4 +g5 +(g6 +(I0 +tp17045 +g8 +tp17046 +Rp17047 +(I1 +(I7 +tp17048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17049 +tp17050 +bsa(dp17051 +g4 +g5 +(g6 +(I0 +tp17052 +g8 +tp17053 +Rp17054 +(I1 +(I7 +tp17055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17056 +tp17057 +bsa(dp17058 +g4 +g5 +(g6 +(I0 +tp17059 +g8 +tp17060 +Rp17061 +(I1 +(I7 +tp17062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17063 +tp17064 +bsa(dp17065 +g4 +g5 +(g6 +(I0 +tp17066 +g8 +tp17067 +Rp17068 +(I1 +(I7 +tp17069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17070 +tp17071 +bsa(dp17072 +g4 +g5 +(g6 +(I0 +tp17073 +g8 +tp17074 +Rp17075 +(I1 +(I7 +tp17076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17077 +tp17078 +bsa(dp17079 +g4 +g5 +(g6 +(I0 +tp17080 +g8 +tp17081 +Rp17082 +(I1 +(I7 +tp17083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17084 +tp17085 +bsa(dp17086 +g4 +g5 +(g6 +(I0 +tp17087 +g8 +tp17088 +Rp17089 +(I1 +(I7 +tp17090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17091 +tp17092 +bsa(dp17093 +g4 +g5 +(g6 +(I0 +tp17094 +g8 +tp17095 +Rp17096 +(I1 +(I7 +tp17097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17098 +tp17099 +bsa(dp17100 +g4 +g5 +(g6 +(I0 +tp17101 +g8 +tp17102 +Rp17103 +(I1 +(I7 +tp17104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17105 +tp17106 +bsa(dp17107 +g4 +g5 +(g6 +(I0 +tp17108 +g8 +tp17109 +Rp17110 +(I1 +(I7 +tp17111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17112 +tp17113 +bsa(dp17114 +g4 +g5 +(g6 +(I0 +tp17115 +g8 +tp17116 +Rp17117 +(I1 +(I7 +tp17118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17119 +tp17120 +bsa(dp17121 +g4 +g5 +(g6 +(I0 +tp17122 +g8 +tp17123 +Rp17124 +(I1 +(I7 +tp17125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17126 +tp17127 +bsa(dp17128 +g4 +g5 +(g6 +(I0 +tp17129 +g8 +tp17130 +Rp17131 +(I1 +(I7 +tp17132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17133 +tp17134 +bsa(dp17135 +g4 +g5 +(g6 +(I0 +tp17136 +g8 +tp17137 +Rp17138 +(I1 +(I7 +tp17139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17140 +tp17141 +bsa(dp17142 +g4 +g5 +(g6 +(I0 +tp17143 +g8 +tp17144 +Rp17145 +(I1 +(I7 +tp17146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17147 +tp17148 +bsa(dp17149 +g4 +g5 +(g6 +(I0 +tp17150 +g8 +tp17151 +Rp17152 +(I1 +(I7 +tp17153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17154 +tp17155 +bsa(dp17156 +g4 +g5 +(g6 +(I0 +tp17157 +g8 +tp17158 +Rp17159 +(I1 +(I7 +tp17160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17161 +tp17162 +bsa(dp17163 +g4 +g5 +(g6 +(I0 +tp17164 +g8 +tp17165 +Rp17166 +(I1 +(I7 +tp17167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17168 +tp17169 +bsa(dp17170 +g4 +g5 +(g6 +(I0 +tp17171 +g8 +tp17172 +Rp17173 +(I1 +(I7 +tp17174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17175 +tp17176 +bsa(dp17177 +g4 +g5 +(g6 +(I0 +tp17178 +g8 +tp17179 +Rp17180 +(I1 +(I7 +tp17181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17182 +tp17183 +bsa(dp17184 +g4 +g5 +(g6 +(I0 +tp17185 +g8 +tp17186 +Rp17187 +(I1 +(I7 +tp17188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17189 +tp17190 +bsa(dp17191 +g4 +g5 +(g6 +(I0 +tp17192 +g8 +tp17193 +Rp17194 +(I1 +(I7 +tp17195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17196 +tp17197 +bsa(dp17198 +g4 +g5 +(g6 +(I0 +tp17199 +g8 +tp17200 +Rp17201 +(I1 +(I7 +tp17202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17203 +tp17204 +bsa(dp17205 +g4 +g5 +(g6 +(I0 +tp17206 +g8 +tp17207 +Rp17208 +(I1 +(I7 +tp17209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17210 +tp17211 +bsa(dp17212 +g4 +g5 +(g6 +(I0 +tp17213 +g8 +tp17214 +Rp17215 +(I1 +(I7 +tp17216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17217 +tp17218 +bsa(dp17219 +g4 +g5 +(g6 +(I0 +tp17220 +g8 +tp17221 +Rp17222 +(I1 +(I7 +tp17223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17224 +tp17225 +bsa(dp17226 +g4 +g5 +(g6 +(I0 +tp17227 +g8 +tp17228 +Rp17229 +(I1 +(I7 +tp17230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17231 +tp17232 +bsa(dp17233 +g4 +g5 +(g6 +(I0 +tp17234 +g8 +tp17235 +Rp17236 +(I1 +(I7 +tp17237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17238 +tp17239 +bsa(dp17240 +g4 +g5 +(g6 +(I0 +tp17241 +g8 +tp17242 +Rp17243 +(I1 +(I7 +tp17244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17245 +tp17246 +bsa(dp17247 +g4 +g5 +(g6 +(I0 +tp17248 +g8 +tp17249 +Rp17250 +(I1 +(I7 +tp17251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17252 +tp17253 +bsa(dp17254 +g4 +g5 +(g6 +(I0 +tp17255 +g8 +tp17256 +Rp17257 +(I1 +(I7 +tp17258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17259 +tp17260 +bsa(dp17261 +g4 +g5 +(g6 +(I0 +tp17262 +g8 +tp17263 +Rp17264 +(I1 +(I7 +tp17265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17266 +tp17267 +bsa(dp17268 +g4 +g5 +(g6 +(I0 +tp17269 +g8 +tp17270 +Rp17271 +(I1 +(I7 +tp17272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17273 +tp17274 +bsa(dp17275 +g4 +g5 +(g6 +(I0 +tp17276 +g8 +tp17277 +Rp17278 +(I1 +(I7 +tp17279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17280 +tp17281 +bsa(dp17282 +g4 +g5 +(g6 +(I0 +tp17283 +g8 +tp17284 +Rp17285 +(I1 +(I7 +tp17286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17287 +tp17288 +bsa(dp17289 +g4 +g5 +(g6 +(I0 +tp17290 +g8 +tp17291 +Rp17292 +(I1 +(I7 +tp17293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17294 +tp17295 +bsa(dp17296 +g4 +g5 +(g6 +(I0 +tp17297 +g8 +tp17298 +Rp17299 +(I1 +(I7 +tp17300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17301 +tp17302 +bsa(dp17303 +g4 +g5 +(g6 +(I0 +tp17304 +g8 +tp17305 +Rp17306 +(I1 +(I7 +tp17307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17308 +tp17309 +bsa(dp17310 +g4 +g5 +(g6 +(I0 +tp17311 +g8 +tp17312 +Rp17313 +(I1 +(I7 +tp17314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17315 +tp17316 +bsa(dp17317 +g4 +g5 +(g6 +(I0 +tp17318 +g8 +tp17319 +Rp17320 +(I1 +(I7 +tp17321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17322 +tp17323 +bsa(dp17324 +g4 +g5 +(g6 +(I0 +tp17325 +g8 +tp17326 +Rp17327 +(I1 +(I7 +tp17328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17329 +tp17330 +bsa(dp17331 +g4 +g5 +(g6 +(I0 +tp17332 +g8 +tp17333 +Rp17334 +(I1 +(I7 +tp17335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17336 +tp17337 +bsa(dp17338 +g4 +g5 +(g6 +(I0 +tp17339 +g8 +tp17340 +Rp17341 +(I1 +(I7 +tp17342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17343 +tp17344 +bsa(dp17345 +g4 +g5 +(g6 +(I0 +tp17346 +g8 +tp17347 +Rp17348 +(I1 +(I7 +tp17349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17350 +tp17351 +bsa(dp17352 +g4 +g5 +(g6 +(I0 +tp17353 +g8 +tp17354 +Rp17355 +(I1 +(I7 +tp17356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17357 +tp17358 +bsa(dp17359 +g4 +g5 +(g6 +(I0 +tp17360 +g8 +tp17361 +Rp17362 +(I1 +(I7 +tp17363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17364 +tp17365 +bsa(dp17366 +g4 +g5 +(g6 +(I0 +tp17367 +g8 +tp17368 +Rp17369 +(I1 +(I7 +tp17370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17371 +tp17372 +bsa(dp17373 +g4 +g5 +(g6 +(I0 +tp17374 +g8 +tp17375 +Rp17376 +(I1 +(I7 +tp17377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17378 +tp17379 +bsa(dp17380 +g4 +g5 +(g6 +(I0 +tp17381 +g8 +tp17382 +Rp17383 +(I1 +(I7 +tp17384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17385 +tp17386 +bsa(dp17387 +g4 +g5 +(g6 +(I0 +tp17388 +g8 +tp17389 +Rp17390 +(I1 +(I7 +tp17391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17392 +tp17393 +bsa(dp17394 +g4 +g5 +(g6 +(I0 +tp17395 +g8 +tp17396 +Rp17397 +(I1 +(I7 +tp17398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17399 +tp17400 +bsa(dp17401 +g4 +g5 +(g6 +(I0 +tp17402 +g8 +tp17403 +Rp17404 +(I1 +(I7 +tp17405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17406 +tp17407 +bsa(dp17408 +g4 +g5 +(g6 +(I0 +tp17409 +g8 +tp17410 +Rp17411 +(I1 +(I7 +tp17412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17413 +tp17414 +bsa(dp17415 +g4 +g5 +(g6 +(I0 +tp17416 +g8 +tp17417 +Rp17418 +(I1 +(I7 +tp17419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17420 +tp17421 +bsa(dp17422 +g4 +g5 +(g6 +(I0 +tp17423 +g8 +tp17424 +Rp17425 +(I1 +(I7 +tp17426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17427 +tp17428 +bsa(dp17429 +g4 +g5 +(g6 +(I0 +tp17430 +g8 +tp17431 +Rp17432 +(I1 +(I7 +tp17433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17434 +tp17435 +bsa(dp17436 +g4 +g5 +(g6 +(I0 +tp17437 +g8 +tp17438 +Rp17439 +(I1 +(I7 +tp17440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17441 +tp17442 +bsa(dp17443 +g4 +g5 +(g6 +(I0 +tp17444 +g8 +tp17445 +Rp17446 +(I1 +(I7 +tp17447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17448 +tp17449 +bsa(dp17450 +g4 +g5 +(g6 +(I0 +tp17451 +g8 +tp17452 +Rp17453 +(I1 +(I7 +tp17454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17455 +tp17456 +bsa(dp17457 +g4 +g5 +(g6 +(I0 +tp17458 +g8 +tp17459 +Rp17460 +(I1 +(I7 +tp17461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17462 +tp17463 +bsa(dp17464 +g4 +g5 +(g6 +(I0 +tp17465 +g8 +tp17466 +Rp17467 +(I1 +(I7 +tp17468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17469 +tp17470 +bsa(dp17471 +g4 +g5 +(g6 +(I0 +tp17472 +g8 +tp17473 +Rp17474 +(I1 +(I7 +tp17475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17476 +tp17477 +bsa(dp17478 +g4 +g5 +(g6 +(I0 +tp17479 +g8 +tp17480 +Rp17481 +(I1 +(I7 +tp17482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17483 +tp17484 +bsa(dp17485 +g4 +g5 +(g6 +(I0 +tp17486 +g8 +tp17487 +Rp17488 +(I1 +(I7 +tp17489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17490 +tp17491 +bsa(dp17492 +g4 +g5 +(g6 +(I0 +tp17493 +g8 +tp17494 +Rp17495 +(I1 +(I7 +tp17496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17497 +tp17498 +bsa(dp17499 +g4 +g5 +(g6 +(I0 +tp17500 +g8 +tp17501 +Rp17502 +(I1 +(I7 +tp17503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17504 +tp17505 +bsa(dp17506 +g4 +g5 +(g6 +(I0 +tp17507 +g8 +tp17508 +Rp17509 +(I1 +(I7 +tp17510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17511 +tp17512 +bsa(dp17513 +g4 +g5 +(g6 +(I0 +tp17514 +g8 +tp17515 +Rp17516 +(I1 +(I7 +tp17517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17518 +tp17519 +bsa(dp17520 +g4 +g5 +(g6 +(I0 +tp17521 +g8 +tp17522 +Rp17523 +(I1 +(I7 +tp17524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17525 +tp17526 +bsa(dp17527 +g4 +g5 +(g6 +(I0 +tp17528 +g8 +tp17529 +Rp17530 +(I1 +(I7 +tp17531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17532 +tp17533 +bsa(dp17534 +g4 +g5 +(g6 +(I0 +tp17535 +g8 +tp17536 +Rp17537 +(I1 +(I7 +tp17538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17539 +tp17540 +bsa(dp17541 +g4 +g5 +(g6 +(I0 +tp17542 +g8 +tp17543 +Rp17544 +(I1 +(I7 +tp17545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17546 +tp17547 +bsa(dp17548 +g4 +g5 +(g6 +(I0 +tp17549 +g8 +tp17550 +Rp17551 +(I1 +(I7 +tp17552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17553 +tp17554 +bsa(dp17555 +g4 +g5 +(g6 +(I0 +tp17556 +g8 +tp17557 +Rp17558 +(I1 +(I7 +tp17559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17560 +tp17561 +bsa(dp17562 +g4 +g5 +(g6 +(I0 +tp17563 +g8 +tp17564 +Rp17565 +(I1 +(I7 +tp17566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17567 +tp17568 +bsa(dp17569 +g4 +g5 +(g6 +(I0 +tp17570 +g8 +tp17571 +Rp17572 +(I1 +(I7 +tp17573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17574 +tp17575 +bsa(dp17576 +g4 +g5 +(g6 +(I0 +tp17577 +g8 +tp17578 +Rp17579 +(I1 +(I7 +tp17580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17581 +tp17582 +bsa(dp17583 +g4 +g5 +(g6 +(I0 +tp17584 +g8 +tp17585 +Rp17586 +(I1 +(I7 +tp17587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17588 +tp17589 +bsa(dp17590 +g4 +g5 +(g6 +(I0 +tp17591 +g8 +tp17592 +Rp17593 +(I1 +(I7 +tp17594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17595 +tp17596 +bsa(dp17597 +g4 +g5 +(g6 +(I0 +tp17598 +g8 +tp17599 +Rp17600 +(I1 +(I7 +tp17601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17602 +tp17603 +bsa(dp17604 +g4 +g5 +(g6 +(I0 +tp17605 +g8 +tp17606 +Rp17607 +(I1 +(I7 +tp17608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17609 +tp17610 +bsa(dp17611 +g4 +g5 +(g6 +(I0 +tp17612 +g8 +tp17613 +Rp17614 +(I1 +(I7 +tp17615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17616 +tp17617 +bsa(dp17618 +g4 +g5 +(g6 +(I0 +tp17619 +g8 +tp17620 +Rp17621 +(I1 +(I7 +tp17622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17623 +tp17624 +bsa(dp17625 +g4 +g5 +(g6 +(I0 +tp17626 +g8 +tp17627 +Rp17628 +(I1 +(I7 +tp17629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17630 +tp17631 +bsa(dp17632 +g4 +g5 +(g6 +(I0 +tp17633 +g8 +tp17634 +Rp17635 +(I1 +(I7 +tp17636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17637 +tp17638 +bsa(dp17639 +g4 +g5 +(g6 +(I0 +tp17640 +g8 +tp17641 +Rp17642 +(I1 +(I7 +tp17643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17644 +tp17645 +bsa(dp17646 +g4 +g5 +(g6 +(I0 +tp17647 +g8 +tp17648 +Rp17649 +(I1 +(I7 +tp17650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17651 +tp17652 +bsa(dp17653 +g4 +g5 +(g6 +(I0 +tp17654 +g8 +tp17655 +Rp17656 +(I1 +(I7 +tp17657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17658 +tp17659 +bsa(dp17660 +g4 +g5 +(g6 +(I0 +tp17661 +g8 +tp17662 +Rp17663 +(I1 +(I7 +tp17664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17665 +tp17666 +bsa(dp17667 +g4 +g5 +(g6 +(I0 +tp17668 +g8 +tp17669 +Rp17670 +(I1 +(I7 +tp17671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17672 +tp17673 +bsa(dp17674 +g4 +g5 +(g6 +(I0 +tp17675 +g8 +tp17676 +Rp17677 +(I1 +(I7 +tp17678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17679 +tp17680 +bsa(dp17681 +g4 +g5 +(g6 +(I0 +tp17682 +g8 +tp17683 +Rp17684 +(I1 +(I7 +tp17685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17686 +tp17687 +bsa(dp17688 +g4 +g5 +(g6 +(I0 +tp17689 +g8 +tp17690 +Rp17691 +(I1 +(I7 +tp17692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17693 +tp17694 +bsa(dp17695 +g4 +g5 +(g6 +(I0 +tp17696 +g8 +tp17697 +Rp17698 +(I1 +(I7 +tp17699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17700 +tp17701 +bsa(dp17702 +g4 +g5 +(g6 +(I0 +tp17703 +g8 +tp17704 +Rp17705 +(I1 +(I7 +tp17706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17707 +tp17708 +bsa(dp17709 +g4 +g5 +(g6 +(I0 +tp17710 +g8 +tp17711 +Rp17712 +(I1 +(I7 +tp17713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17714 +tp17715 +bsa(dp17716 +g4 +g5 +(g6 +(I0 +tp17717 +g8 +tp17718 +Rp17719 +(I1 +(I7 +tp17720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17721 +tp17722 +bsa(dp17723 +g4 +g5 +(g6 +(I0 +tp17724 +g8 +tp17725 +Rp17726 +(I1 +(I7 +tp17727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17728 +tp17729 +bsa(dp17730 +g4 +g5 +(g6 +(I0 +tp17731 +g8 +tp17732 +Rp17733 +(I1 +(I7 +tp17734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17735 +tp17736 +bsa(dp17737 +g4 +g5 +(g6 +(I0 +tp17738 +g8 +tp17739 +Rp17740 +(I1 +(I7 +tp17741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17742 +tp17743 +bsa(dp17744 +g4 +g5 +(g6 +(I0 +tp17745 +g8 +tp17746 +Rp17747 +(I1 +(I7 +tp17748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17749 +tp17750 +bsa(dp17751 +g4 +g5 +(g6 +(I0 +tp17752 +g8 +tp17753 +Rp17754 +(I1 +(I7 +tp17755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17756 +tp17757 +bsa(dp17758 +g4 +g5 +(g6 +(I0 +tp17759 +g8 +tp17760 +Rp17761 +(I1 +(I7 +tp17762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17763 +tp17764 +bsa(dp17765 +g4 +g5 +(g6 +(I0 +tp17766 +g8 +tp17767 +Rp17768 +(I1 +(I7 +tp17769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17770 +tp17771 +bsa(dp17772 +g4 +g5 +(g6 +(I0 +tp17773 +g8 +tp17774 +Rp17775 +(I1 +(I7 +tp17776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17777 +tp17778 +bsa(dp17779 +g4 +g5 +(g6 +(I0 +tp17780 +g8 +tp17781 +Rp17782 +(I1 +(I7 +tp17783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17784 +tp17785 +bsa(dp17786 +g4 +g5 +(g6 +(I0 +tp17787 +g8 +tp17788 +Rp17789 +(I1 +(I7 +tp17790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17791 +tp17792 +bsa(dp17793 +g4 +g5 +(g6 +(I0 +tp17794 +g8 +tp17795 +Rp17796 +(I1 +(I7 +tp17797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17798 +tp17799 +bsa(dp17800 +g4 +g5 +(g6 +(I0 +tp17801 +g8 +tp17802 +Rp17803 +(I1 +(I7 +tp17804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17805 +tp17806 +bsa(dp17807 +g4 +g5 +(g6 +(I0 +tp17808 +g8 +tp17809 +Rp17810 +(I1 +(I7 +tp17811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17812 +tp17813 +bsa(dp17814 +g4 +g5 +(g6 +(I0 +tp17815 +g8 +tp17816 +Rp17817 +(I1 +(I7 +tp17818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17819 +tp17820 +bsa(dp17821 +g4 +g5 +(g6 +(I0 +tp17822 +g8 +tp17823 +Rp17824 +(I1 +(I7 +tp17825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17826 +tp17827 +bsa(dp17828 +g4 +g5 +(g6 +(I0 +tp17829 +g8 +tp17830 +Rp17831 +(I1 +(I7 +tp17832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17833 +tp17834 +bsa(dp17835 +g4 +g5 +(g6 +(I0 +tp17836 +g8 +tp17837 +Rp17838 +(I1 +(I7 +tp17839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17840 +tp17841 +bsa(dp17842 +g4 +g5 +(g6 +(I0 +tp17843 +g8 +tp17844 +Rp17845 +(I1 +(I7 +tp17846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17847 +tp17848 +bsa(dp17849 +g4 +g5 +(g6 +(I0 +tp17850 +g8 +tp17851 +Rp17852 +(I1 +(I7 +tp17853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17854 +tp17855 +bsa(dp17856 +g4 +g5 +(g6 +(I0 +tp17857 +g8 +tp17858 +Rp17859 +(I1 +(I7 +tp17860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17861 +tp17862 +bsa(dp17863 +g4 +g5 +(g6 +(I0 +tp17864 +g8 +tp17865 +Rp17866 +(I1 +(I7 +tp17867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17868 +tp17869 +bsa(dp17870 +g4 +g5 +(g6 +(I0 +tp17871 +g8 +tp17872 +Rp17873 +(I1 +(I7 +tp17874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17875 +tp17876 +bsa(dp17877 +g4 +g5 +(g6 +(I0 +tp17878 +g8 +tp17879 +Rp17880 +(I1 +(I7 +tp17881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17882 +tp17883 +bsa(dp17884 +g4 +g5 +(g6 +(I0 +tp17885 +g8 +tp17886 +Rp17887 +(I1 +(I7 +tp17888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17889 +tp17890 +bsa(dp17891 +g4 +g5 +(g6 +(I0 +tp17892 +g8 +tp17893 +Rp17894 +(I1 +(I7 +tp17895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17896 +tp17897 +bsa(dp17898 +g4 +g5 +(g6 +(I0 +tp17899 +g8 +tp17900 +Rp17901 +(I1 +(I7 +tp17902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17903 +tp17904 +bsa(dp17905 +g4 +g5 +(g6 +(I0 +tp17906 +g8 +tp17907 +Rp17908 +(I1 +(I7 +tp17909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17910 +tp17911 +bsa(dp17912 +g4 +g5 +(g6 +(I0 +tp17913 +g8 +tp17914 +Rp17915 +(I1 +(I7 +tp17916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17917 +tp17918 +bsa(dp17919 +g4 +g5 +(g6 +(I0 +tp17920 +g8 +tp17921 +Rp17922 +(I1 +(I7 +tp17923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17924 +tp17925 +bsa(dp17926 +g4 +g5 +(g6 +(I0 +tp17927 +g8 +tp17928 +Rp17929 +(I1 +(I7 +tp17930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17931 +tp17932 +bsa(dp17933 +g4 +g5 +(g6 +(I0 +tp17934 +g8 +tp17935 +Rp17936 +(I1 +(I7 +tp17937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17938 +tp17939 +bsa(dp17940 +g4 +g5 +(g6 +(I0 +tp17941 +g8 +tp17942 +Rp17943 +(I1 +(I7 +tp17944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17945 +tp17946 +bsa(dp17947 +g4 +g5 +(g6 +(I0 +tp17948 +g8 +tp17949 +Rp17950 +(I1 +(I7 +tp17951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17952 +tp17953 +bsa(dp17954 +g4 +g5 +(g6 +(I0 +tp17955 +g8 +tp17956 +Rp17957 +(I1 +(I7 +tp17958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17959 +tp17960 +bsa(dp17961 +g4 +g5 +(g6 +(I0 +tp17962 +g8 +tp17963 +Rp17964 +(I1 +(I7 +tp17965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17966 +tp17967 +bsa(dp17968 +g4 +g5 +(g6 +(I0 +tp17969 +g8 +tp17970 +Rp17971 +(I1 +(I7 +tp17972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17973 +tp17974 +bsa(dp17975 +g4 +g5 +(g6 +(I0 +tp17976 +g8 +tp17977 +Rp17978 +(I1 +(I7 +tp17979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p17980 +tp17981 +bsa(dp17982 +g4 +g5 +(g6 +(I0 +tp17983 +g8 +tp17984 +Rp17985 +(I1 +(I7 +tp17986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p17987 +tp17988 +bsa(dp17989 +g4 +g5 +(g6 +(I0 +tp17990 +g8 +tp17991 +Rp17992 +(I1 +(I7 +tp17993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p17994 +tp17995 +bsa(dp17996 +g4 +g5 +(g6 +(I0 +tp17997 +g8 +tp17998 +Rp17999 +(I1 +(I7 +tp18000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18001 +tp18002 +bsa(dp18003 +g4 +g5 +(g6 +(I0 +tp18004 +g8 +tp18005 +Rp18006 +(I1 +(I7 +tp18007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18008 +tp18009 +bsa(dp18010 +g4 +g5 +(g6 +(I0 +tp18011 +g8 +tp18012 +Rp18013 +(I1 +(I7 +tp18014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18015 +tp18016 +bsa(dp18017 +g4 +g5 +(g6 +(I0 +tp18018 +g8 +tp18019 +Rp18020 +(I1 +(I7 +tp18021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18022 +tp18023 +bsa(dp18024 +g4 +g5 +(g6 +(I0 +tp18025 +g8 +tp18026 +Rp18027 +(I1 +(I7 +tp18028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18029 +tp18030 +bsa(dp18031 +g4 +g5 +(g6 +(I0 +tp18032 +g8 +tp18033 +Rp18034 +(I1 +(I7 +tp18035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18036 +tp18037 +bsa(dp18038 +g4 +g5 +(g6 +(I0 +tp18039 +g8 +tp18040 +Rp18041 +(I1 +(I7 +tp18042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18043 +tp18044 +bsa(dp18045 +g4 +g5 +(g6 +(I0 +tp18046 +g8 +tp18047 +Rp18048 +(I1 +(I7 +tp18049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18050 +tp18051 +bsa(dp18052 +g4 +g5 +(g6 +(I0 +tp18053 +g8 +tp18054 +Rp18055 +(I1 +(I7 +tp18056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18057 +tp18058 +bsa(dp18059 +g4 +g5 +(g6 +(I0 +tp18060 +g8 +tp18061 +Rp18062 +(I1 +(I7 +tp18063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18064 +tp18065 +bsa(dp18066 +g4 +g5 +(g6 +(I0 +tp18067 +g8 +tp18068 +Rp18069 +(I1 +(I7 +tp18070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18071 +tp18072 +bsa(dp18073 +g4 +g5 +(g6 +(I0 +tp18074 +g8 +tp18075 +Rp18076 +(I1 +(I7 +tp18077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18078 +tp18079 +bsa(dp18080 +g4 +g5 +(g6 +(I0 +tp18081 +g8 +tp18082 +Rp18083 +(I1 +(I7 +tp18084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18085 +tp18086 +bsa(dp18087 +g4 +g5 +(g6 +(I0 +tp18088 +g8 +tp18089 +Rp18090 +(I1 +(I7 +tp18091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18092 +tp18093 +bsa(dp18094 +g4 +g5 +(g6 +(I0 +tp18095 +g8 +tp18096 +Rp18097 +(I1 +(I7 +tp18098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18099 +tp18100 +bsa(dp18101 +g4 +g5 +(g6 +(I0 +tp18102 +g8 +tp18103 +Rp18104 +(I1 +(I7 +tp18105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18106 +tp18107 +bsa(dp18108 +g4 +g5 +(g6 +(I0 +tp18109 +g8 +tp18110 +Rp18111 +(I1 +(I7 +tp18112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18113 +tp18114 +bsa(dp18115 +g4 +g5 +(g6 +(I0 +tp18116 +g8 +tp18117 +Rp18118 +(I1 +(I7 +tp18119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18120 +tp18121 +bsa(dp18122 +g4 +g5 +(g6 +(I0 +tp18123 +g8 +tp18124 +Rp18125 +(I1 +(I7 +tp18126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18127 +tp18128 +bsa(dp18129 +g4 +g5 +(g6 +(I0 +tp18130 +g8 +tp18131 +Rp18132 +(I1 +(I7 +tp18133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18134 +tp18135 +bsa(dp18136 +g4 +g5 +(g6 +(I0 +tp18137 +g8 +tp18138 +Rp18139 +(I1 +(I7 +tp18140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18141 +tp18142 +bsa(dp18143 +g4 +g5 +(g6 +(I0 +tp18144 +g8 +tp18145 +Rp18146 +(I1 +(I7 +tp18147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18148 +tp18149 +bsa(dp18150 +g4 +g5 +(g6 +(I0 +tp18151 +g8 +tp18152 +Rp18153 +(I1 +(I7 +tp18154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18155 +tp18156 +bsa(dp18157 +g4 +g5 +(g6 +(I0 +tp18158 +g8 +tp18159 +Rp18160 +(I1 +(I7 +tp18161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18162 +tp18163 +bsa(dp18164 +g4 +g5 +(g6 +(I0 +tp18165 +g8 +tp18166 +Rp18167 +(I1 +(I7 +tp18168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18169 +tp18170 +bsa(dp18171 +g4 +g5 +(g6 +(I0 +tp18172 +g8 +tp18173 +Rp18174 +(I1 +(I7 +tp18175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18176 +tp18177 +bsa(dp18178 +g4 +g5 +(g6 +(I0 +tp18179 +g8 +tp18180 +Rp18181 +(I1 +(I7 +tp18182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18183 +tp18184 +bsa(dp18185 +g4 +g5 +(g6 +(I0 +tp18186 +g8 +tp18187 +Rp18188 +(I1 +(I7 +tp18189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18190 +tp18191 +bsa(dp18192 +g4 +g5 +(g6 +(I0 +tp18193 +g8 +tp18194 +Rp18195 +(I1 +(I7 +tp18196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18197 +tp18198 +bsa(dp18199 +g4 +g5 +(g6 +(I0 +tp18200 +g8 +tp18201 +Rp18202 +(I1 +(I7 +tp18203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18204 +tp18205 +bsa(dp18206 +g4 +g5 +(g6 +(I0 +tp18207 +g8 +tp18208 +Rp18209 +(I1 +(I7 +tp18210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18211 +tp18212 +bsa(dp18213 +g4 +g5 +(g6 +(I0 +tp18214 +g8 +tp18215 +Rp18216 +(I1 +(I7 +tp18217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18218 +tp18219 +bsa(dp18220 +g4 +g5 +(g6 +(I0 +tp18221 +g8 +tp18222 +Rp18223 +(I1 +(I7 +tp18224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18225 +tp18226 +bsa(dp18227 +g4 +g5 +(g6 +(I0 +tp18228 +g8 +tp18229 +Rp18230 +(I1 +(I7 +tp18231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18232 +tp18233 +bsa(dp18234 +g4 +g5 +(g6 +(I0 +tp18235 +g8 +tp18236 +Rp18237 +(I1 +(I7 +tp18238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18239 +tp18240 +bsa(dp18241 +g4 +g5 +(g6 +(I0 +tp18242 +g8 +tp18243 +Rp18244 +(I1 +(I7 +tp18245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18246 +tp18247 +bsa(dp18248 +g4 +g5 +(g6 +(I0 +tp18249 +g8 +tp18250 +Rp18251 +(I1 +(I7 +tp18252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18253 +tp18254 +bsa(dp18255 +g4 +g5 +(g6 +(I0 +tp18256 +g8 +tp18257 +Rp18258 +(I1 +(I7 +tp18259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18260 +tp18261 +bsa(dp18262 +g4 +g5 +(g6 +(I0 +tp18263 +g8 +tp18264 +Rp18265 +(I1 +(I7 +tp18266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18267 +tp18268 +bsa(dp18269 +g4 +g5 +(g6 +(I0 +tp18270 +g8 +tp18271 +Rp18272 +(I1 +(I7 +tp18273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18274 +tp18275 +bsa(dp18276 +g4 +g5 +(g6 +(I0 +tp18277 +g8 +tp18278 +Rp18279 +(I1 +(I7 +tp18280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18281 +tp18282 +bsa(dp18283 +g4 +g5 +(g6 +(I0 +tp18284 +g8 +tp18285 +Rp18286 +(I1 +(I7 +tp18287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18288 +tp18289 +bsa(dp18290 +g4 +g5 +(g6 +(I0 +tp18291 +g8 +tp18292 +Rp18293 +(I1 +(I7 +tp18294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18295 +tp18296 +bsa(dp18297 +g4 +g5 +(g6 +(I0 +tp18298 +g8 +tp18299 +Rp18300 +(I1 +(I7 +tp18301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18302 +tp18303 +bsa(dp18304 +g4 +g5 +(g6 +(I0 +tp18305 +g8 +tp18306 +Rp18307 +(I1 +(I7 +tp18308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18309 +tp18310 +bsa(dp18311 +g4 +g5 +(g6 +(I0 +tp18312 +g8 +tp18313 +Rp18314 +(I1 +(I7 +tp18315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18316 +tp18317 +bsa(dp18318 +g4 +g5 +(g6 +(I0 +tp18319 +g8 +tp18320 +Rp18321 +(I1 +(I7 +tp18322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18323 +tp18324 +bsa(dp18325 +g4 +g5 +(g6 +(I0 +tp18326 +g8 +tp18327 +Rp18328 +(I1 +(I7 +tp18329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18330 +tp18331 +bsa(dp18332 +g4 +g5 +(g6 +(I0 +tp18333 +g8 +tp18334 +Rp18335 +(I1 +(I7 +tp18336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18337 +tp18338 +bsa(dp18339 +g4 +g5 +(g6 +(I0 +tp18340 +g8 +tp18341 +Rp18342 +(I1 +(I7 +tp18343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18344 +tp18345 +bsa(dp18346 +g4 +g5 +(g6 +(I0 +tp18347 +g8 +tp18348 +Rp18349 +(I1 +(I7 +tp18350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18351 +tp18352 +bsa(dp18353 +g4 +g5 +(g6 +(I0 +tp18354 +g8 +tp18355 +Rp18356 +(I1 +(I7 +tp18357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18358 +tp18359 +bsa(dp18360 +g4 +g5 +(g6 +(I0 +tp18361 +g8 +tp18362 +Rp18363 +(I1 +(I7 +tp18364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18365 +tp18366 +bsa(dp18367 +g4 +g5 +(g6 +(I0 +tp18368 +g8 +tp18369 +Rp18370 +(I1 +(I7 +tp18371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18372 +tp18373 +bsa(dp18374 +g4 +g5 +(g6 +(I0 +tp18375 +g8 +tp18376 +Rp18377 +(I1 +(I7 +tp18378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18379 +tp18380 +bsa(dp18381 +g4 +g5 +(g6 +(I0 +tp18382 +g8 +tp18383 +Rp18384 +(I1 +(I7 +tp18385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18386 +tp18387 +bsa(dp18388 +g4 +g5 +(g6 +(I0 +tp18389 +g8 +tp18390 +Rp18391 +(I1 +(I7 +tp18392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18393 +tp18394 +bsa(dp18395 +g4 +g5 +(g6 +(I0 +tp18396 +g8 +tp18397 +Rp18398 +(I1 +(I7 +tp18399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18400 +tp18401 +bsa(dp18402 +g4 +g5 +(g6 +(I0 +tp18403 +g8 +tp18404 +Rp18405 +(I1 +(I7 +tp18406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18407 +tp18408 +bsa(dp18409 +g4 +g5 +(g6 +(I0 +tp18410 +g8 +tp18411 +Rp18412 +(I1 +(I7 +tp18413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18414 +tp18415 +bsa(dp18416 +g4 +g5 +(g6 +(I0 +tp18417 +g8 +tp18418 +Rp18419 +(I1 +(I7 +tp18420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18421 +tp18422 +bsa(dp18423 +g4 +g5 +(g6 +(I0 +tp18424 +g8 +tp18425 +Rp18426 +(I1 +(I7 +tp18427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18428 +tp18429 +bsa(dp18430 +g4 +g5 +(g6 +(I0 +tp18431 +g8 +tp18432 +Rp18433 +(I1 +(I7 +tp18434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18435 +tp18436 +bsa(dp18437 +g4 +g5 +(g6 +(I0 +tp18438 +g8 +tp18439 +Rp18440 +(I1 +(I7 +tp18441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18442 +tp18443 +bsa(dp18444 +g4 +g5 +(g6 +(I0 +tp18445 +g8 +tp18446 +Rp18447 +(I1 +(I7 +tp18448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18449 +tp18450 +bsa(dp18451 +g4 +g5 +(g6 +(I0 +tp18452 +g8 +tp18453 +Rp18454 +(I1 +(I7 +tp18455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18456 +tp18457 +bsa(dp18458 +g4 +g5 +(g6 +(I0 +tp18459 +g8 +tp18460 +Rp18461 +(I1 +(I7 +tp18462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18463 +tp18464 +bsa(dp18465 +g4 +g5 +(g6 +(I0 +tp18466 +g8 +tp18467 +Rp18468 +(I1 +(I7 +tp18469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18470 +tp18471 +bsa(dp18472 +g4 +g5 +(g6 +(I0 +tp18473 +g8 +tp18474 +Rp18475 +(I1 +(I7 +tp18476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18477 +tp18478 +bsa(dp18479 +g4 +g5 +(g6 +(I0 +tp18480 +g8 +tp18481 +Rp18482 +(I1 +(I7 +tp18483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18484 +tp18485 +bsa(dp18486 +g4 +g5 +(g6 +(I0 +tp18487 +g8 +tp18488 +Rp18489 +(I1 +(I7 +tp18490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18491 +tp18492 +bsa(dp18493 +g4 +g5 +(g6 +(I0 +tp18494 +g8 +tp18495 +Rp18496 +(I1 +(I7 +tp18497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18498 +tp18499 +bsa(dp18500 +g4 +g5 +(g6 +(I0 +tp18501 +g8 +tp18502 +Rp18503 +(I1 +(I7 +tp18504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18505 +tp18506 +bsa(dp18507 +g4 +g5 +(g6 +(I0 +tp18508 +g8 +tp18509 +Rp18510 +(I1 +(I7 +tp18511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18512 +tp18513 +bsa(dp18514 +g4 +g5 +(g6 +(I0 +tp18515 +g8 +tp18516 +Rp18517 +(I1 +(I7 +tp18518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18519 +tp18520 +bsa(dp18521 +g4 +g5 +(g6 +(I0 +tp18522 +g8 +tp18523 +Rp18524 +(I1 +(I7 +tp18525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18526 +tp18527 +bsa(dp18528 +g4 +g5 +(g6 +(I0 +tp18529 +g8 +tp18530 +Rp18531 +(I1 +(I7 +tp18532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18533 +tp18534 +bsa(dp18535 +g4 +g5 +(g6 +(I0 +tp18536 +g8 +tp18537 +Rp18538 +(I1 +(I7 +tp18539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18540 +tp18541 +bsa(dp18542 +g4 +g5 +(g6 +(I0 +tp18543 +g8 +tp18544 +Rp18545 +(I1 +(I7 +tp18546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18547 +tp18548 +bsa(dp18549 +g4 +g5 +(g6 +(I0 +tp18550 +g8 +tp18551 +Rp18552 +(I1 +(I7 +tp18553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18554 +tp18555 +bsa(dp18556 +g4 +g5 +(g6 +(I0 +tp18557 +g8 +tp18558 +Rp18559 +(I1 +(I7 +tp18560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18561 +tp18562 +bsa(dp18563 +g4 +g5 +(g6 +(I0 +tp18564 +g8 +tp18565 +Rp18566 +(I1 +(I7 +tp18567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18568 +tp18569 +bsa(dp18570 +g4 +g5 +(g6 +(I0 +tp18571 +g8 +tp18572 +Rp18573 +(I1 +(I7 +tp18574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18575 +tp18576 +bsa(dp18577 +g4 +g5 +(g6 +(I0 +tp18578 +g8 +tp18579 +Rp18580 +(I1 +(I7 +tp18581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18582 +tp18583 +bsa(dp18584 +g4 +g5 +(g6 +(I0 +tp18585 +g8 +tp18586 +Rp18587 +(I1 +(I7 +tp18588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18589 +tp18590 +bsa(dp18591 +g4 +g5 +(g6 +(I0 +tp18592 +g8 +tp18593 +Rp18594 +(I1 +(I7 +tp18595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18596 +tp18597 +bsa(dp18598 +g4 +g5 +(g6 +(I0 +tp18599 +g8 +tp18600 +Rp18601 +(I1 +(I7 +tp18602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18603 +tp18604 +bsa(dp18605 +g4 +g5 +(g6 +(I0 +tp18606 +g8 +tp18607 +Rp18608 +(I1 +(I7 +tp18609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18610 +tp18611 +bsa(dp18612 +g4 +g5 +(g6 +(I0 +tp18613 +g8 +tp18614 +Rp18615 +(I1 +(I7 +tp18616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18617 +tp18618 +bsa(dp18619 +g4 +g5 +(g6 +(I0 +tp18620 +g8 +tp18621 +Rp18622 +(I1 +(I7 +tp18623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18624 +tp18625 +bsa(dp18626 +g4 +g5 +(g6 +(I0 +tp18627 +g8 +tp18628 +Rp18629 +(I1 +(I7 +tp18630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18631 +tp18632 +bsa(dp18633 +g4 +g5 +(g6 +(I0 +tp18634 +g8 +tp18635 +Rp18636 +(I1 +(I7 +tp18637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18638 +tp18639 +bsa(dp18640 +g4 +g5 +(g6 +(I0 +tp18641 +g8 +tp18642 +Rp18643 +(I1 +(I7 +tp18644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18645 +tp18646 +bsa(dp18647 +g4 +g5 +(g6 +(I0 +tp18648 +g8 +tp18649 +Rp18650 +(I1 +(I7 +tp18651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18652 +tp18653 +bsa(dp18654 +g4 +g5 +(g6 +(I0 +tp18655 +g8 +tp18656 +Rp18657 +(I1 +(I7 +tp18658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18659 +tp18660 +bsa(dp18661 +g4 +g5 +(g6 +(I0 +tp18662 +g8 +tp18663 +Rp18664 +(I1 +(I7 +tp18665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18666 +tp18667 +bsa(dp18668 +g4 +g5 +(g6 +(I0 +tp18669 +g8 +tp18670 +Rp18671 +(I1 +(I7 +tp18672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18673 +tp18674 +bsa(dp18675 +g4 +g5 +(g6 +(I0 +tp18676 +g8 +tp18677 +Rp18678 +(I1 +(I7 +tp18679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18680 +tp18681 +bsa(dp18682 +g4 +g5 +(g6 +(I0 +tp18683 +g8 +tp18684 +Rp18685 +(I1 +(I7 +tp18686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18687 +tp18688 +bsa(dp18689 +g4 +g5 +(g6 +(I0 +tp18690 +g8 +tp18691 +Rp18692 +(I1 +(I7 +tp18693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18694 +tp18695 +bsa(dp18696 +g4 +g5 +(g6 +(I0 +tp18697 +g8 +tp18698 +Rp18699 +(I1 +(I7 +tp18700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18701 +tp18702 +bsa(dp18703 +g4 +g5 +(g6 +(I0 +tp18704 +g8 +tp18705 +Rp18706 +(I1 +(I7 +tp18707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18708 +tp18709 +bsa(dp18710 +g4 +g5 +(g6 +(I0 +tp18711 +g8 +tp18712 +Rp18713 +(I1 +(I7 +tp18714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18715 +tp18716 +bsa(dp18717 +g4 +g5 +(g6 +(I0 +tp18718 +g8 +tp18719 +Rp18720 +(I1 +(I7 +tp18721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18722 +tp18723 +bsa(dp18724 +g4 +g5 +(g6 +(I0 +tp18725 +g8 +tp18726 +Rp18727 +(I1 +(I7 +tp18728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18729 +tp18730 +bsa(dp18731 +g4 +g5 +(g6 +(I0 +tp18732 +g8 +tp18733 +Rp18734 +(I1 +(I7 +tp18735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18736 +tp18737 +bsa(dp18738 +g4 +g5 +(g6 +(I0 +tp18739 +g8 +tp18740 +Rp18741 +(I1 +(I7 +tp18742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18743 +tp18744 +bsa(dp18745 +g4 +g5 +(g6 +(I0 +tp18746 +g8 +tp18747 +Rp18748 +(I1 +(I7 +tp18749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18750 +tp18751 +bsa(dp18752 +g4 +g5 +(g6 +(I0 +tp18753 +g8 +tp18754 +Rp18755 +(I1 +(I7 +tp18756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18757 +tp18758 +bsa(dp18759 +g4 +g5 +(g6 +(I0 +tp18760 +g8 +tp18761 +Rp18762 +(I1 +(I7 +tp18763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18764 +tp18765 +bsa(dp18766 +g4 +g5 +(g6 +(I0 +tp18767 +g8 +tp18768 +Rp18769 +(I1 +(I7 +tp18770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18771 +tp18772 +bsa(dp18773 +g4 +g5 +(g6 +(I0 +tp18774 +g8 +tp18775 +Rp18776 +(I1 +(I7 +tp18777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18778 +tp18779 +bsa(dp18780 +g4 +g5 +(g6 +(I0 +tp18781 +g8 +tp18782 +Rp18783 +(I1 +(I7 +tp18784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18785 +tp18786 +bsa(dp18787 +g4 +g5 +(g6 +(I0 +tp18788 +g8 +tp18789 +Rp18790 +(I1 +(I7 +tp18791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18792 +tp18793 +bsa(dp18794 +g4 +g5 +(g6 +(I0 +tp18795 +g8 +tp18796 +Rp18797 +(I1 +(I7 +tp18798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18799 +tp18800 +bsa(dp18801 +g4 +g5 +(g6 +(I0 +tp18802 +g8 +tp18803 +Rp18804 +(I1 +(I7 +tp18805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18806 +tp18807 +bsa(dp18808 +g4 +g5 +(g6 +(I0 +tp18809 +g8 +tp18810 +Rp18811 +(I1 +(I7 +tp18812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18813 +tp18814 +bsa(dp18815 +g4 +g5 +(g6 +(I0 +tp18816 +g8 +tp18817 +Rp18818 +(I1 +(I7 +tp18819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18820 +tp18821 +bsa(dp18822 +g4 +g5 +(g6 +(I0 +tp18823 +g8 +tp18824 +Rp18825 +(I1 +(I7 +tp18826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18827 +tp18828 +bsa(dp18829 +g4 +g5 +(g6 +(I0 +tp18830 +g8 +tp18831 +Rp18832 +(I1 +(I7 +tp18833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18834 +tp18835 +bsa(dp18836 +g4 +g5 +(g6 +(I0 +tp18837 +g8 +tp18838 +Rp18839 +(I1 +(I7 +tp18840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18841 +tp18842 +bsa(dp18843 +g4 +g5 +(g6 +(I0 +tp18844 +g8 +tp18845 +Rp18846 +(I1 +(I7 +tp18847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18848 +tp18849 +bsa(dp18850 +g4 +g5 +(g6 +(I0 +tp18851 +g8 +tp18852 +Rp18853 +(I1 +(I7 +tp18854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18855 +tp18856 +bsa(dp18857 +g4 +g5 +(g6 +(I0 +tp18858 +g8 +tp18859 +Rp18860 +(I1 +(I7 +tp18861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18862 +tp18863 +bsa(dp18864 +g4 +g5 +(g6 +(I0 +tp18865 +g8 +tp18866 +Rp18867 +(I1 +(I7 +tp18868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18869 +tp18870 +bsa(dp18871 +g4 +g5 +(g6 +(I0 +tp18872 +g8 +tp18873 +Rp18874 +(I1 +(I7 +tp18875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18876 +tp18877 +bsa(dp18878 +g4 +g5 +(g6 +(I0 +tp18879 +g8 +tp18880 +Rp18881 +(I1 +(I7 +tp18882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18883 +tp18884 +bsa(dp18885 +g4 +g5 +(g6 +(I0 +tp18886 +g8 +tp18887 +Rp18888 +(I1 +(I7 +tp18889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18890 +tp18891 +bsa(dp18892 +g4 +g5 +(g6 +(I0 +tp18893 +g8 +tp18894 +Rp18895 +(I1 +(I7 +tp18896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18897 +tp18898 +bsa(dp18899 +g4 +g5 +(g6 +(I0 +tp18900 +g8 +tp18901 +Rp18902 +(I1 +(I7 +tp18903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18904 +tp18905 +bsa(dp18906 +g4 +g5 +(g6 +(I0 +tp18907 +g8 +tp18908 +Rp18909 +(I1 +(I7 +tp18910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18911 +tp18912 +bsa(dp18913 +g4 +g5 +(g6 +(I0 +tp18914 +g8 +tp18915 +Rp18916 +(I1 +(I7 +tp18917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18918 +tp18919 +bsa(dp18920 +g4 +g5 +(g6 +(I0 +tp18921 +g8 +tp18922 +Rp18923 +(I1 +(I7 +tp18924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18925 +tp18926 +bsa(dp18927 +g4 +g5 +(g6 +(I0 +tp18928 +g8 +tp18929 +Rp18930 +(I1 +(I7 +tp18931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18932 +tp18933 +bsa(dp18934 +g4 +g5 +(g6 +(I0 +tp18935 +g8 +tp18936 +Rp18937 +(I1 +(I7 +tp18938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18939 +tp18940 +bsa(dp18941 +g4 +g5 +(g6 +(I0 +tp18942 +g8 +tp18943 +Rp18944 +(I1 +(I7 +tp18945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18946 +tp18947 +bsa(dp18948 +g4 +g5 +(g6 +(I0 +tp18949 +g8 +tp18950 +Rp18951 +(I1 +(I7 +tp18952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18953 +tp18954 +bsa(dp18955 +g4 +g5 +(g6 +(I0 +tp18956 +g8 +tp18957 +Rp18958 +(I1 +(I7 +tp18959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18960 +tp18961 +bsa(dp18962 +g4 +g5 +(g6 +(I0 +tp18963 +g8 +tp18964 +Rp18965 +(I1 +(I7 +tp18966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p18967 +tp18968 +bsa(dp18969 +g4 +g5 +(g6 +(I0 +tp18970 +g8 +tp18971 +Rp18972 +(I1 +(I7 +tp18973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p18974 +tp18975 +bsa(dp18976 +g4 +g5 +(g6 +(I0 +tp18977 +g8 +tp18978 +Rp18979 +(I1 +(I7 +tp18980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18981 +tp18982 +bsa(dp18983 +g4 +g5 +(g6 +(I0 +tp18984 +g8 +tp18985 +Rp18986 +(I1 +(I7 +tp18987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18988 +tp18989 +bsa(dp18990 +g4 +g5 +(g6 +(I0 +tp18991 +g8 +tp18992 +Rp18993 +(I1 +(I7 +tp18994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p18995 +tp18996 +bsa(dp18997 +g4 +g5 +(g6 +(I0 +tp18998 +g8 +tp18999 +Rp19000 +(I1 +(I7 +tp19001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19002 +tp19003 +bsa(dp19004 +g4 +g5 +(g6 +(I0 +tp19005 +g8 +tp19006 +Rp19007 +(I1 +(I7 +tp19008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19009 +tp19010 +bsa(dp19011 +g4 +g5 +(g6 +(I0 +tp19012 +g8 +tp19013 +Rp19014 +(I1 +(I7 +tp19015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19016 +tp19017 +bsa(dp19018 +g4 +g5 +(g6 +(I0 +tp19019 +g8 +tp19020 +Rp19021 +(I1 +(I7 +tp19022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19023 +tp19024 +bsa(dp19025 +g4 +g5 +(g6 +(I0 +tp19026 +g8 +tp19027 +Rp19028 +(I1 +(I7 +tp19029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19030 +tp19031 +bsa(dp19032 +g4 +g5 +(g6 +(I0 +tp19033 +g8 +tp19034 +Rp19035 +(I1 +(I7 +tp19036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19037 +tp19038 +bsa(dp19039 +g4 +g5 +(g6 +(I0 +tp19040 +g8 +tp19041 +Rp19042 +(I1 +(I7 +tp19043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19044 +tp19045 +bsa(dp19046 +g4 +g5 +(g6 +(I0 +tp19047 +g8 +tp19048 +Rp19049 +(I1 +(I7 +tp19050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19051 +tp19052 +bsa(dp19053 +g4 +g5 +(g6 +(I0 +tp19054 +g8 +tp19055 +Rp19056 +(I1 +(I7 +tp19057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19058 +tp19059 +bsa(dp19060 +g4 +g5 +(g6 +(I0 +tp19061 +g8 +tp19062 +Rp19063 +(I1 +(I7 +tp19064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19065 +tp19066 +bsa(dp19067 +g4 +g5 +(g6 +(I0 +tp19068 +g8 +tp19069 +Rp19070 +(I1 +(I7 +tp19071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19072 +tp19073 +bsa(dp19074 +g4 +g5 +(g6 +(I0 +tp19075 +g8 +tp19076 +Rp19077 +(I1 +(I7 +tp19078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19079 +tp19080 +bsa(dp19081 +g4 +g5 +(g6 +(I0 +tp19082 +g8 +tp19083 +Rp19084 +(I1 +(I7 +tp19085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19086 +tp19087 +bsa(dp19088 +g4 +g5 +(g6 +(I0 +tp19089 +g8 +tp19090 +Rp19091 +(I1 +(I7 +tp19092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19093 +tp19094 +bsa(dp19095 +g4 +g5 +(g6 +(I0 +tp19096 +g8 +tp19097 +Rp19098 +(I1 +(I7 +tp19099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19100 +tp19101 +bsa(dp19102 +g4 +g5 +(g6 +(I0 +tp19103 +g8 +tp19104 +Rp19105 +(I1 +(I7 +tp19106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19107 +tp19108 +bsa(dp19109 +g4 +g5 +(g6 +(I0 +tp19110 +g8 +tp19111 +Rp19112 +(I1 +(I7 +tp19113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19114 +tp19115 +bsa(dp19116 +g4 +g5 +(g6 +(I0 +tp19117 +g8 +tp19118 +Rp19119 +(I1 +(I7 +tp19120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19121 +tp19122 +bsa(dp19123 +g4 +g5 +(g6 +(I0 +tp19124 +g8 +tp19125 +Rp19126 +(I1 +(I7 +tp19127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19128 +tp19129 +bsa(dp19130 +g4 +g5 +(g6 +(I0 +tp19131 +g8 +tp19132 +Rp19133 +(I1 +(I7 +tp19134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19135 +tp19136 +bsa(dp19137 +g4 +g5 +(g6 +(I0 +tp19138 +g8 +tp19139 +Rp19140 +(I1 +(I7 +tp19141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19142 +tp19143 +bsa(dp19144 +g4 +g5 +(g6 +(I0 +tp19145 +g8 +tp19146 +Rp19147 +(I1 +(I7 +tp19148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19149 +tp19150 +bsa(dp19151 +g4 +g5 +(g6 +(I0 +tp19152 +g8 +tp19153 +Rp19154 +(I1 +(I7 +tp19155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19156 +tp19157 +bsa(dp19158 +g4 +g5 +(g6 +(I0 +tp19159 +g8 +tp19160 +Rp19161 +(I1 +(I7 +tp19162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19163 +tp19164 +bsa(dp19165 +g4 +g5 +(g6 +(I0 +tp19166 +g8 +tp19167 +Rp19168 +(I1 +(I7 +tp19169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19170 +tp19171 +bsa(dp19172 +g4 +g5 +(g6 +(I0 +tp19173 +g8 +tp19174 +Rp19175 +(I1 +(I7 +tp19176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19177 +tp19178 +bsa(dp19179 +g4 +g5 +(g6 +(I0 +tp19180 +g8 +tp19181 +Rp19182 +(I1 +(I7 +tp19183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19184 +tp19185 +bsa(dp19186 +g4 +g5 +(g6 +(I0 +tp19187 +g8 +tp19188 +Rp19189 +(I1 +(I7 +tp19190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19191 +tp19192 +bsa(dp19193 +g4 +g5 +(g6 +(I0 +tp19194 +g8 +tp19195 +Rp19196 +(I1 +(I7 +tp19197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19198 +tp19199 +bsa(dp19200 +g4 +g5 +(g6 +(I0 +tp19201 +g8 +tp19202 +Rp19203 +(I1 +(I7 +tp19204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19205 +tp19206 +bsa(dp19207 +g4 +g5 +(g6 +(I0 +tp19208 +g8 +tp19209 +Rp19210 +(I1 +(I7 +tp19211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19212 +tp19213 +bsa(dp19214 +g4 +g5 +(g6 +(I0 +tp19215 +g8 +tp19216 +Rp19217 +(I1 +(I7 +tp19218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19219 +tp19220 +bsa(dp19221 +g4 +g5 +(g6 +(I0 +tp19222 +g8 +tp19223 +Rp19224 +(I1 +(I7 +tp19225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19226 +tp19227 +bsa(dp19228 +g4 +g5 +(g6 +(I0 +tp19229 +g8 +tp19230 +Rp19231 +(I1 +(I7 +tp19232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19233 +tp19234 +bsa(dp19235 +g4 +g5 +(g6 +(I0 +tp19236 +g8 +tp19237 +Rp19238 +(I1 +(I7 +tp19239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19240 +tp19241 +bsa(dp19242 +g4 +g5 +(g6 +(I0 +tp19243 +g8 +tp19244 +Rp19245 +(I1 +(I7 +tp19246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19247 +tp19248 +bsa(dp19249 +g4 +g5 +(g6 +(I0 +tp19250 +g8 +tp19251 +Rp19252 +(I1 +(I7 +tp19253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19254 +tp19255 +bsa(dp19256 +g4 +g5 +(g6 +(I0 +tp19257 +g8 +tp19258 +Rp19259 +(I1 +(I7 +tp19260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19261 +tp19262 +bsa(dp19263 +g4 +g5 +(g6 +(I0 +tp19264 +g8 +tp19265 +Rp19266 +(I1 +(I7 +tp19267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19268 +tp19269 +bsa(dp19270 +g4 +g5 +(g6 +(I0 +tp19271 +g8 +tp19272 +Rp19273 +(I1 +(I7 +tp19274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19275 +tp19276 +bsa(dp19277 +g4 +g5 +(g6 +(I0 +tp19278 +g8 +tp19279 +Rp19280 +(I1 +(I7 +tp19281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19282 +tp19283 +bsa(dp19284 +g4 +g5 +(g6 +(I0 +tp19285 +g8 +tp19286 +Rp19287 +(I1 +(I7 +tp19288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19289 +tp19290 +bsa(dp19291 +g4 +g5 +(g6 +(I0 +tp19292 +g8 +tp19293 +Rp19294 +(I1 +(I7 +tp19295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19296 +tp19297 +bsa(dp19298 +g4 +g5 +(g6 +(I0 +tp19299 +g8 +tp19300 +Rp19301 +(I1 +(I7 +tp19302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19303 +tp19304 +bsa(dp19305 +g4 +g5 +(g6 +(I0 +tp19306 +g8 +tp19307 +Rp19308 +(I1 +(I7 +tp19309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19310 +tp19311 +bsa(dp19312 +g4 +g5 +(g6 +(I0 +tp19313 +g8 +tp19314 +Rp19315 +(I1 +(I7 +tp19316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19317 +tp19318 +bsa(dp19319 +g4 +g5 +(g6 +(I0 +tp19320 +g8 +tp19321 +Rp19322 +(I1 +(I7 +tp19323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19324 +tp19325 +bsa(dp19326 +g4 +g5 +(g6 +(I0 +tp19327 +g8 +tp19328 +Rp19329 +(I1 +(I7 +tp19330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19331 +tp19332 +bsa(dp19333 +g4 +g5 +(g6 +(I0 +tp19334 +g8 +tp19335 +Rp19336 +(I1 +(I7 +tp19337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19338 +tp19339 +bsa(dp19340 +g4 +g5 +(g6 +(I0 +tp19341 +g8 +tp19342 +Rp19343 +(I1 +(I7 +tp19344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19345 +tp19346 +bsa(dp19347 +g4 +g5 +(g6 +(I0 +tp19348 +g8 +tp19349 +Rp19350 +(I1 +(I7 +tp19351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19352 +tp19353 +bsa(dp19354 +g4 +g5 +(g6 +(I0 +tp19355 +g8 +tp19356 +Rp19357 +(I1 +(I7 +tp19358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19359 +tp19360 +bsa(dp19361 +g4 +g5 +(g6 +(I0 +tp19362 +g8 +tp19363 +Rp19364 +(I1 +(I7 +tp19365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19366 +tp19367 +bsa(dp19368 +g4 +g5 +(g6 +(I0 +tp19369 +g8 +tp19370 +Rp19371 +(I1 +(I7 +tp19372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19373 +tp19374 +bsa(dp19375 +g4 +g5 +(g6 +(I0 +tp19376 +g8 +tp19377 +Rp19378 +(I1 +(I7 +tp19379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19380 +tp19381 +bsa(dp19382 +g4 +g5 +(g6 +(I0 +tp19383 +g8 +tp19384 +Rp19385 +(I1 +(I7 +tp19386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19387 +tp19388 +bsa(dp19389 +g4 +g5 +(g6 +(I0 +tp19390 +g8 +tp19391 +Rp19392 +(I1 +(I7 +tp19393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19394 +tp19395 +bsa(dp19396 +g4 +g5 +(g6 +(I0 +tp19397 +g8 +tp19398 +Rp19399 +(I1 +(I7 +tp19400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19401 +tp19402 +bsa(dp19403 +g4 +g5 +(g6 +(I0 +tp19404 +g8 +tp19405 +Rp19406 +(I1 +(I7 +tp19407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19408 +tp19409 +bsa(dp19410 +g4 +g5 +(g6 +(I0 +tp19411 +g8 +tp19412 +Rp19413 +(I1 +(I7 +tp19414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19415 +tp19416 +bsa(dp19417 +g4 +g5 +(g6 +(I0 +tp19418 +g8 +tp19419 +Rp19420 +(I1 +(I7 +tp19421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19422 +tp19423 +bsa(dp19424 +g4 +g5 +(g6 +(I0 +tp19425 +g8 +tp19426 +Rp19427 +(I1 +(I7 +tp19428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19429 +tp19430 +bsa(dp19431 +g4 +g5 +(g6 +(I0 +tp19432 +g8 +tp19433 +Rp19434 +(I1 +(I7 +tp19435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19436 +tp19437 +bsa(dp19438 +g4 +g5 +(g6 +(I0 +tp19439 +g8 +tp19440 +Rp19441 +(I1 +(I7 +tp19442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19443 +tp19444 +bsa(dp19445 +g4 +g5 +(g6 +(I0 +tp19446 +g8 +tp19447 +Rp19448 +(I1 +(I7 +tp19449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19450 +tp19451 +bsa(dp19452 +g4 +g5 +(g6 +(I0 +tp19453 +g8 +tp19454 +Rp19455 +(I1 +(I7 +tp19456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19457 +tp19458 +bsa(dp19459 +g4 +g5 +(g6 +(I0 +tp19460 +g8 +tp19461 +Rp19462 +(I1 +(I7 +tp19463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19464 +tp19465 +bsa(dp19466 +g4 +g5 +(g6 +(I0 +tp19467 +g8 +tp19468 +Rp19469 +(I1 +(I7 +tp19470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19471 +tp19472 +bsa(dp19473 +g4 +g5 +(g6 +(I0 +tp19474 +g8 +tp19475 +Rp19476 +(I1 +(I7 +tp19477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19478 +tp19479 +bsa(dp19480 +g4 +g5 +(g6 +(I0 +tp19481 +g8 +tp19482 +Rp19483 +(I1 +(I7 +tp19484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19485 +tp19486 +bsa(dp19487 +g4 +g5 +(g6 +(I0 +tp19488 +g8 +tp19489 +Rp19490 +(I1 +(I7 +tp19491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19492 +tp19493 +bsa(dp19494 +g4 +g5 +(g6 +(I0 +tp19495 +g8 +tp19496 +Rp19497 +(I1 +(I7 +tp19498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19499 +tp19500 +bsa(dp19501 +g4 +g5 +(g6 +(I0 +tp19502 +g8 +tp19503 +Rp19504 +(I1 +(I7 +tp19505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19506 +tp19507 +bsa(dp19508 +g4 +g5 +(g6 +(I0 +tp19509 +g8 +tp19510 +Rp19511 +(I1 +(I7 +tp19512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19513 +tp19514 +bsa(dp19515 +g4 +g5 +(g6 +(I0 +tp19516 +g8 +tp19517 +Rp19518 +(I1 +(I7 +tp19519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19520 +tp19521 +bsa(dp19522 +g4 +g5 +(g6 +(I0 +tp19523 +g8 +tp19524 +Rp19525 +(I1 +(I7 +tp19526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19527 +tp19528 +bsa(dp19529 +g4 +g5 +(g6 +(I0 +tp19530 +g8 +tp19531 +Rp19532 +(I1 +(I7 +tp19533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19534 +tp19535 +bsa(dp19536 +g4 +g5 +(g6 +(I0 +tp19537 +g8 +tp19538 +Rp19539 +(I1 +(I7 +tp19540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19541 +tp19542 +bsa(dp19543 +g4 +g5 +(g6 +(I0 +tp19544 +g8 +tp19545 +Rp19546 +(I1 +(I7 +tp19547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19548 +tp19549 +bsa(dp19550 +g4 +g5 +(g6 +(I0 +tp19551 +g8 +tp19552 +Rp19553 +(I1 +(I7 +tp19554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19555 +tp19556 +bsa(dp19557 +g4 +g5 +(g6 +(I0 +tp19558 +g8 +tp19559 +Rp19560 +(I1 +(I7 +tp19561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19562 +tp19563 +bsa(dp19564 +g4 +g5 +(g6 +(I0 +tp19565 +g8 +tp19566 +Rp19567 +(I1 +(I7 +tp19568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19569 +tp19570 +bsa(dp19571 +g4 +g5 +(g6 +(I0 +tp19572 +g8 +tp19573 +Rp19574 +(I1 +(I7 +tp19575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19576 +tp19577 +bsa(dp19578 +g4 +g5 +(g6 +(I0 +tp19579 +g8 +tp19580 +Rp19581 +(I1 +(I7 +tp19582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19583 +tp19584 +bsa(dp19585 +g4 +g5 +(g6 +(I0 +tp19586 +g8 +tp19587 +Rp19588 +(I1 +(I7 +tp19589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19590 +tp19591 +bsa(dp19592 +g4 +g5 +(g6 +(I0 +tp19593 +g8 +tp19594 +Rp19595 +(I1 +(I7 +tp19596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19597 +tp19598 +bsa(dp19599 +g4 +g5 +(g6 +(I0 +tp19600 +g8 +tp19601 +Rp19602 +(I1 +(I7 +tp19603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19604 +tp19605 +bsa(dp19606 +g4 +g5 +(g6 +(I0 +tp19607 +g8 +tp19608 +Rp19609 +(I1 +(I7 +tp19610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19611 +tp19612 +bsa(dp19613 +g4 +g5 +(g6 +(I0 +tp19614 +g8 +tp19615 +Rp19616 +(I1 +(I7 +tp19617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19618 +tp19619 +bsa(dp19620 +g4 +g5 +(g6 +(I0 +tp19621 +g8 +tp19622 +Rp19623 +(I1 +(I7 +tp19624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19625 +tp19626 +bsa(dp19627 +g4 +g5 +(g6 +(I0 +tp19628 +g8 +tp19629 +Rp19630 +(I1 +(I7 +tp19631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19632 +tp19633 +bsa(dp19634 +g4 +g5 +(g6 +(I0 +tp19635 +g8 +tp19636 +Rp19637 +(I1 +(I7 +tp19638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19639 +tp19640 +bsa(dp19641 +g4 +g5 +(g6 +(I0 +tp19642 +g8 +tp19643 +Rp19644 +(I1 +(I7 +tp19645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19646 +tp19647 +bsa(dp19648 +g4 +g5 +(g6 +(I0 +tp19649 +g8 +tp19650 +Rp19651 +(I1 +(I7 +tp19652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19653 +tp19654 +bsa(dp19655 +g4 +g5 +(g6 +(I0 +tp19656 +g8 +tp19657 +Rp19658 +(I1 +(I7 +tp19659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19660 +tp19661 +bsa(dp19662 +g4 +g5 +(g6 +(I0 +tp19663 +g8 +tp19664 +Rp19665 +(I1 +(I7 +tp19666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19667 +tp19668 +bsa(dp19669 +g4 +g5 +(g6 +(I0 +tp19670 +g8 +tp19671 +Rp19672 +(I1 +(I7 +tp19673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19674 +tp19675 +bsa(dp19676 +g4 +g5 +(g6 +(I0 +tp19677 +g8 +tp19678 +Rp19679 +(I1 +(I7 +tp19680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19681 +tp19682 +bsa(dp19683 +g4 +g5 +(g6 +(I0 +tp19684 +g8 +tp19685 +Rp19686 +(I1 +(I7 +tp19687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19688 +tp19689 +bsa(dp19690 +g4 +g5 +(g6 +(I0 +tp19691 +g8 +tp19692 +Rp19693 +(I1 +(I7 +tp19694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19695 +tp19696 +bsa(dp19697 +g4 +g5 +(g6 +(I0 +tp19698 +g8 +tp19699 +Rp19700 +(I1 +(I7 +tp19701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19702 +tp19703 +bsa(dp19704 +g4 +g5 +(g6 +(I0 +tp19705 +g8 +tp19706 +Rp19707 +(I1 +(I7 +tp19708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19709 +tp19710 +bsa(dp19711 +g4 +g5 +(g6 +(I0 +tp19712 +g8 +tp19713 +Rp19714 +(I1 +(I7 +tp19715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19716 +tp19717 +bsa(dp19718 +g4 +g5 +(g6 +(I0 +tp19719 +g8 +tp19720 +Rp19721 +(I1 +(I7 +tp19722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19723 +tp19724 +bsa(dp19725 +g4 +g5 +(g6 +(I0 +tp19726 +g8 +tp19727 +Rp19728 +(I1 +(I7 +tp19729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19730 +tp19731 +bsa(dp19732 +g4 +g5 +(g6 +(I0 +tp19733 +g8 +tp19734 +Rp19735 +(I1 +(I7 +tp19736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19737 +tp19738 +bsa(dp19739 +g4 +g5 +(g6 +(I0 +tp19740 +g8 +tp19741 +Rp19742 +(I1 +(I7 +tp19743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19744 +tp19745 +bsa(dp19746 +g4 +g5 +(g6 +(I0 +tp19747 +g8 +tp19748 +Rp19749 +(I1 +(I7 +tp19750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19751 +tp19752 +bsa(dp19753 +g4 +g5 +(g6 +(I0 +tp19754 +g8 +tp19755 +Rp19756 +(I1 +(I7 +tp19757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19758 +tp19759 +bsa(dp19760 +g4 +g5 +(g6 +(I0 +tp19761 +g8 +tp19762 +Rp19763 +(I1 +(I7 +tp19764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19765 +tp19766 +bsa(dp19767 +g4 +g5 +(g6 +(I0 +tp19768 +g8 +tp19769 +Rp19770 +(I1 +(I7 +tp19771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19772 +tp19773 +bsa(dp19774 +g4 +g5 +(g6 +(I0 +tp19775 +g8 +tp19776 +Rp19777 +(I1 +(I7 +tp19778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19779 +tp19780 +bsa(dp19781 +g4 +g5 +(g6 +(I0 +tp19782 +g8 +tp19783 +Rp19784 +(I1 +(I7 +tp19785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19786 +tp19787 +bsa(dp19788 +g4 +g5 +(g6 +(I0 +tp19789 +g8 +tp19790 +Rp19791 +(I1 +(I7 +tp19792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19793 +tp19794 +bsa(dp19795 +g4 +g5 +(g6 +(I0 +tp19796 +g8 +tp19797 +Rp19798 +(I1 +(I7 +tp19799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19800 +tp19801 +bsa(dp19802 +g4 +g5 +(g6 +(I0 +tp19803 +g8 +tp19804 +Rp19805 +(I1 +(I7 +tp19806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19807 +tp19808 +bsa(dp19809 +g4 +g5 +(g6 +(I0 +tp19810 +g8 +tp19811 +Rp19812 +(I1 +(I7 +tp19813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19814 +tp19815 +bsa(dp19816 +g4 +g5 +(g6 +(I0 +tp19817 +g8 +tp19818 +Rp19819 +(I1 +(I7 +tp19820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19821 +tp19822 +bsa(dp19823 +g4 +g5 +(g6 +(I0 +tp19824 +g8 +tp19825 +Rp19826 +(I1 +(I7 +tp19827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19828 +tp19829 +bsa(dp19830 +g4 +g5 +(g6 +(I0 +tp19831 +g8 +tp19832 +Rp19833 +(I1 +(I7 +tp19834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19835 +tp19836 +bsa(dp19837 +g4 +g5 +(g6 +(I0 +tp19838 +g8 +tp19839 +Rp19840 +(I1 +(I7 +tp19841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19842 +tp19843 +bsa(dp19844 +g4 +g5 +(g6 +(I0 +tp19845 +g8 +tp19846 +Rp19847 +(I1 +(I7 +tp19848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19849 +tp19850 +bsa(dp19851 +g4 +g5 +(g6 +(I0 +tp19852 +g8 +tp19853 +Rp19854 +(I1 +(I7 +tp19855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19856 +tp19857 +bsa(dp19858 +g4 +g5 +(g6 +(I0 +tp19859 +g8 +tp19860 +Rp19861 +(I1 +(I7 +tp19862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19863 +tp19864 +bsa(dp19865 +g4 +g5 +(g6 +(I0 +tp19866 +g8 +tp19867 +Rp19868 +(I1 +(I7 +tp19869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19870 +tp19871 +bsa(dp19872 +g4 +g5 +(g6 +(I0 +tp19873 +g8 +tp19874 +Rp19875 +(I1 +(I7 +tp19876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19877 +tp19878 +bsa(dp19879 +g4 +g5 +(g6 +(I0 +tp19880 +g8 +tp19881 +Rp19882 +(I1 +(I7 +tp19883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19884 +tp19885 +bsa(dp19886 +g4 +g5 +(g6 +(I0 +tp19887 +g8 +tp19888 +Rp19889 +(I1 +(I7 +tp19890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19891 +tp19892 +bsa(dp19893 +g4 +g5 +(g6 +(I0 +tp19894 +g8 +tp19895 +Rp19896 +(I1 +(I7 +tp19897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19898 +tp19899 +bsa(dp19900 +g4 +g5 +(g6 +(I0 +tp19901 +g8 +tp19902 +Rp19903 +(I1 +(I7 +tp19904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19905 +tp19906 +bsa(dp19907 +g4 +g5 +(g6 +(I0 +tp19908 +g8 +tp19909 +Rp19910 +(I1 +(I7 +tp19911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19912 +tp19913 +bsa(dp19914 +g4 +g5 +(g6 +(I0 +tp19915 +g8 +tp19916 +Rp19917 +(I1 +(I7 +tp19918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19919 +tp19920 +bsa(dp19921 +g4 +g5 +(g6 +(I0 +tp19922 +g8 +tp19923 +Rp19924 +(I1 +(I7 +tp19925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19926 +tp19927 +bsa(dp19928 +g4 +g5 +(g6 +(I0 +tp19929 +g8 +tp19930 +Rp19931 +(I1 +(I7 +tp19932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19933 +tp19934 +bsa(dp19935 +g4 +g5 +(g6 +(I0 +tp19936 +g8 +tp19937 +Rp19938 +(I1 +(I7 +tp19939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19940 +tp19941 +bsa(dp19942 +g4 +g5 +(g6 +(I0 +tp19943 +g8 +tp19944 +Rp19945 +(I1 +(I7 +tp19946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19947 +tp19948 +bsa(dp19949 +g4 +g5 +(g6 +(I0 +tp19950 +g8 +tp19951 +Rp19952 +(I1 +(I7 +tp19953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19954 +tp19955 +bsa(dp19956 +g4 +g5 +(g6 +(I0 +tp19957 +g8 +tp19958 +Rp19959 +(I1 +(I7 +tp19960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19961 +tp19962 +bsa(dp19963 +g4 +g5 +(g6 +(I0 +tp19964 +g8 +tp19965 +Rp19966 +(I1 +(I7 +tp19967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19968 +tp19969 +bsa(dp19970 +g4 +g5 +(g6 +(I0 +tp19971 +g8 +tp19972 +Rp19973 +(I1 +(I7 +tp19974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19975 +tp19976 +bsa(dp19977 +g4 +g5 +(g6 +(I0 +tp19978 +g8 +tp19979 +Rp19980 +(I1 +(I7 +tp19981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p19982 +tp19983 +bsa(dp19984 +g4 +g5 +(g6 +(I0 +tp19985 +g8 +tp19986 +Rp19987 +(I1 +(I7 +tp19988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p19989 +tp19990 +bsa(dp19991 +g4 +g5 +(g6 +(I0 +tp19992 +g8 +tp19993 +Rp19994 +(I1 +(I7 +tp19995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p19996 +tp19997 +bsa(dp19998 +g4 +g5 +(g6 +(I0 +tp19999 +g8 +tp20000 +Rp20001 +(I1 +(I7 +tp20002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20003 +tp20004 +bsa(dp20005 +g4 +g5 +(g6 +(I0 +tp20006 +g8 +tp20007 +Rp20008 +(I1 +(I7 +tp20009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20010 +tp20011 +bsa(dp20012 +g4 +g5 +(g6 +(I0 +tp20013 +g8 +tp20014 +Rp20015 +(I1 +(I7 +tp20016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20017 +tp20018 +bsa(dp20019 +g4 +g5 +(g6 +(I0 +tp20020 +g8 +tp20021 +Rp20022 +(I1 +(I7 +tp20023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20024 +tp20025 +bsa(dp20026 +g4 +g5 +(g6 +(I0 +tp20027 +g8 +tp20028 +Rp20029 +(I1 +(I7 +tp20030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20031 +tp20032 +bsa(dp20033 +g4 +g5 +(g6 +(I0 +tp20034 +g8 +tp20035 +Rp20036 +(I1 +(I7 +tp20037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20038 +tp20039 +bsa(dp20040 +g4 +g5 +(g6 +(I0 +tp20041 +g8 +tp20042 +Rp20043 +(I1 +(I7 +tp20044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20045 +tp20046 +bsa(dp20047 +g4 +g5 +(g6 +(I0 +tp20048 +g8 +tp20049 +Rp20050 +(I1 +(I7 +tp20051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20052 +tp20053 +bsa(dp20054 +g4 +g5 +(g6 +(I0 +tp20055 +g8 +tp20056 +Rp20057 +(I1 +(I7 +tp20058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20059 +tp20060 +bsa(dp20061 +g4 +g5 +(g6 +(I0 +tp20062 +g8 +tp20063 +Rp20064 +(I1 +(I7 +tp20065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20066 +tp20067 +bsa(dp20068 +g4 +g5 +(g6 +(I0 +tp20069 +g8 +tp20070 +Rp20071 +(I1 +(I7 +tp20072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20073 +tp20074 +bsa(dp20075 +g4 +g5 +(g6 +(I0 +tp20076 +g8 +tp20077 +Rp20078 +(I1 +(I7 +tp20079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20080 +tp20081 +bsa(dp20082 +g4 +g5 +(g6 +(I0 +tp20083 +g8 +tp20084 +Rp20085 +(I1 +(I7 +tp20086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20087 +tp20088 +bsa(dp20089 +g4 +g5 +(g6 +(I0 +tp20090 +g8 +tp20091 +Rp20092 +(I1 +(I7 +tp20093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20094 +tp20095 +bsa(dp20096 +g4 +g5 +(g6 +(I0 +tp20097 +g8 +tp20098 +Rp20099 +(I1 +(I7 +tp20100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20101 +tp20102 +bsa(dp20103 +g4 +g5 +(g6 +(I0 +tp20104 +g8 +tp20105 +Rp20106 +(I1 +(I7 +tp20107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20108 +tp20109 +bsa(dp20110 +g4 +g5 +(g6 +(I0 +tp20111 +g8 +tp20112 +Rp20113 +(I1 +(I7 +tp20114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20115 +tp20116 +bsa(dp20117 +g4 +g5 +(g6 +(I0 +tp20118 +g8 +tp20119 +Rp20120 +(I1 +(I7 +tp20121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20122 +tp20123 +bsa(dp20124 +g4 +g5 +(g6 +(I0 +tp20125 +g8 +tp20126 +Rp20127 +(I1 +(I7 +tp20128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20129 +tp20130 +bsa(dp20131 +g4 +g5 +(g6 +(I0 +tp20132 +g8 +tp20133 +Rp20134 +(I1 +(I7 +tp20135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20136 +tp20137 +bsa(dp20138 +g4 +g5 +(g6 +(I0 +tp20139 +g8 +tp20140 +Rp20141 +(I1 +(I7 +tp20142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20143 +tp20144 +bsa(dp20145 +g4 +g5 +(g6 +(I0 +tp20146 +g8 +tp20147 +Rp20148 +(I1 +(I7 +tp20149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20150 +tp20151 +bsa(dp20152 +g4 +g5 +(g6 +(I0 +tp20153 +g8 +tp20154 +Rp20155 +(I1 +(I7 +tp20156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20157 +tp20158 +bsa(dp20159 +g4 +g5 +(g6 +(I0 +tp20160 +g8 +tp20161 +Rp20162 +(I1 +(I7 +tp20163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20164 +tp20165 +bsa(dp20166 +g4 +g5 +(g6 +(I0 +tp20167 +g8 +tp20168 +Rp20169 +(I1 +(I7 +tp20170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20171 +tp20172 +bsa(dp20173 +g4 +g5 +(g6 +(I0 +tp20174 +g8 +tp20175 +Rp20176 +(I1 +(I7 +tp20177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20178 +tp20179 +bsa(dp20180 +g4 +g5 +(g6 +(I0 +tp20181 +g8 +tp20182 +Rp20183 +(I1 +(I7 +tp20184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20185 +tp20186 +bsa(dp20187 +g4 +g5 +(g6 +(I0 +tp20188 +g8 +tp20189 +Rp20190 +(I1 +(I7 +tp20191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20192 +tp20193 +bsa(dp20194 +g4 +g5 +(g6 +(I0 +tp20195 +g8 +tp20196 +Rp20197 +(I1 +(I7 +tp20198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20199 +tp20200 +bsa(dp20201 +g4 +g5 +(g6 +(I0 +tp20202 +g8 +tp20203 +Rp20204 +(I1 +(I7 +tp20205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20206 +tp20207 +bsa(dp20208 +g4 +g5 +(g6 +(I0 +tp20209 +g8 +tp20210 +Rp20211 +(I1 +(I7 +tp20212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20213 +tp20214 +bsa(dp20215 +g4 +g5 +(g6 +(I0 +tp20216 +g8 +tp20217 +Rp20218 +(I1 +(I7 +tp20219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20220 +tp20221 +bsa(dp20222 +g4 +g5 +(g6 +(I0 +tp20223 +g8 +tp20224 +Rp20225 +(I1 +(I7 +tp20226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20227 +tp20228 +bsa(dp20229 +g4 +g5 +(g6 +(I0 +tp20230 +g8 +tp20231 +Rp20232 +(I1 +(I7 +tp20233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20234 +tp20235 +bsa(dp20236 +g4 +g5 +(g6 +(I0 +tp20237 +g8 +tp20238 +Rp20239 +(I1 +(I7 +tp20240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20241 +tp20242 +bsa(dp20243 +g4 +g5 +(g6 +(I0 +tp20244 +g8 +tp20245 +Rp20246 +(I1 +(I7 +tp20247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20248 +tp20249 +bsa(dp20250 +g4 +g5 +(g6 +(I0 +tp20251 +g8 +tp20252 +Rp20253 +(I1 +(I7 +tp20254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20255 +tp20256 +bsa(dp20257 +g4 +g5 +(g6 +(I0 +tp20258 +g8 +tp20259 +Rp20260 +(I1 +(I7 +tp20261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20262 +tp20263 +bsa(dp20264 +g4 +g5 +(g6 +(I0 +tp20265 +g8 +tp20266 +Rp20267 +(I1 +(I7 +tp20268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20269 +tp20270 +bsa(dp20271 +g4 +g5 +(g6 +(I0 +tp20272 +g8 +tp20273 +Rp20274 +(I1 +(I7 +tp20275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20276 +tp20277 +bsa(dp20278 +g4 +g5 +(g6 +(I0 +tp20279 +g8 +tp20280 +Rp20281 +(I1 +(I7 +tp20282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20283 +tp20284 +bsa(dp20285 +g4 +g5 +(g6 +(I0 +tp20286 +g8 +tp20287 +Rp20288 +(I1 +(I7 +tp20289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20290 +tp20291 +bsa(dp20292 +g4 +g5 +(g6 +(I0 +tp20293 +g8 +tp20294 +Rp20295 +(I1 +(I7 +tp20296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20297 +tp20298 +bsa(dp20299 +g4 +g5 +(g6 +(I0 +tp20300 +g8 +tp20301 +Rp20302 +(I1 +(I7 +tp20303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20304 +tp20305 +bsa(dp20306 +g4 +g5 +(g6 +(I0 +tp20307 +g8 +tp20308 +Rp20309 +(I1 +(I7 +tp20310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20311 +tp20312 +bsa(dp20313 +g4 +g5 +(g6 +(I0 +tp20314 +g8 +tp20315 +Rp20316 +(I1 +(I7 +tp20317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20318 +tp20319 +bsa(dp20320 +g4 +g5 +(g6 +(I0 +tp20321 +g8 +tp20322 +Rp20323 +(I1 +(I7 +tp20324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20325 +tp20326 +bsa(dp20327 +g4 +g5 +(g6 +(I0 +tp20328 +g8 +tp20329 +Rp20330 +(I1 +(I7 +tp20331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20332 +tp20333 +bsa(dp20334 +g4 +g5 +(g6 +(I0 +tp20335 +g8 +tp20336 +Rp20337 +(I1 +(I7 +tp20338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20339 +tp20340 +bsa(dp20341 +g4 +g5 +(g6 +(I0 +tp20342 +g8 +tp20343 +Rp20344 +(I1 +(I7 +tp20345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20346 +tp20347 +bsa(dp20348 +g4 +g5 +(g6 +(I0 +tp20349 +g8 +tp20350 +Rp20351 +(I1 +(I7 +tp20352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20353 +tp20354 +bsa(dp20355 +g4 +g5 +(g6 +(I0 +tp20356 +g8 +tp20357 +Rp20358 +(I1 +(I7 +tp20359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20360 +tp20361 +bsa(dp20362 +g4 +g5 +(g6 +(I0 +tp20363 +g8 +tp20364 +Rp20365 +(I1 +(I7 +tp20366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20367 +tp20368 +bsa(dp20369 +g4 +g5 +(g6 +(I0 +tp20370 +g8 +tp20371 +Rp20372 +(I1 +(I7 +tp20373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20374 +tp20375 +bsa(dp20376 +g4 +g5 +(g6 +(I0 +tp20377 +g8 +tp20378 +Rp20379 +(I1 +(I7 +tp20380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20381 +tp20382 +bsa(dp20383 +g4 +g5 +(g6 +(I0 +tp20384 +g8 +tp20385 +Rp20386 +(I1 +(I7 +tp20387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20388 +tp20389 +bsa(dp20390 +g4 +g5 +(g6 +(I0 +tp20391 +g8 +tp20392 +Rp20393 +(I1 +(I7 +tp20394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20395 +tp20396 +bsa(dp20397 +g4 +g5 +(g6 +(I0 +tp20398 +g8 +tp20399 +Rp20400 +(I1 +(I7 +tp20401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20402 +tp20403 +bsa(dp20404 +g4 +g5 +(g6 +(I0 +tp20405 +g8 +tp20406 +Rp20407 +(I1 +(I7 +tp20408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20409 +tp20410 +bsa(dp20411 +g4 +g5 +(g6 +(I0 +tp20412 +g8 +tp20413 +Rp20414 +(I1 +(I7 +tp20415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20416 +tp20417 +bsa(dp20418 +g4 +g5 +(g6 +(I0 +tp20419 +g8 +tp20420 +Rp20421 +(I1 +(I7 +tp20422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20423 +tp20424 +bsa(dp20425 +g4 +g5 +(g6 +(I0 +tp20426 +g8 +tp20427 +Rp20428 +(I1 +(I7 +tp20429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20430 +tp20431 +bsa(dp20432 +g4 +g5 +(g6 +(I0 +tp20433 +g8 +tp20434 +Rp20435 +(I1 +(I7 +tp20436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20437 +tp20438 +bsa(dp20439 +g4 +g5 +(g6 +(I0 +tp20440 +g8 +tp20441 +Rp20442 +(I1 +(I7 +tp20443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20444 +tp20445 +bsa(dp20446 +g4 +g5 +(g6 +(I0 +tp20447 +g8 +tp20448 +Rp20449 +(I1 +(I7 +tp20450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20451 +tp20452 +bsa(dp20453 +g4 +g5 +(g6 +(I0 +tp20454 +g8 +tp20455 +Rp20456 +(I1 +(I7 +tp20457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20458 +tp20459 +bsa(dp20460 +g4 +g5 +(g6 +(I0 +tp20461 +g8 +tp20462 +Rp20463 +(I1 +(I7 +tp20464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20465 +tp20466 +bsa(dp20467 +g4 +g5 +(g6 +(I0 +tp20468 +g8 +tp20469 +Rp20470 +(I1 +(I7 +tp20471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20472 +tp20473 +bsa(dp20474 +g4 +g5 +(g6 +(I0 +tp20475 +g8 +tp20476 +Rp20477 +(I1 +(I7 +tp20478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20479 +tp20480 +bsa(dp20481 +g4 +g5 +(g6 +(I0 +tp20482 +g8 +tp20483 +Rp20484 +(I1 +(I7 +tp20485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20486 +tp20487 +bsa(dp20488 +g4 +g5 +(g6 +(I0 +tp20489 +g8 +tp20490 +Rp20491 +(I1 +(I7 +tp20492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20493 +tp20494 +bsa(dp20495 +g4 +g5 +(g6 +(I0 +tp20496 +g8 +tp20497 +Rp20498 +(I1 +(I7 +tp20499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20500 +tp20501 +bsa(dp20502 +g4 +g5 +(g6 +(I0 +tp20503 +g8 +tp20504 +Rp20505 +(I1 +(I7 +tp20506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20507 +tp20508 +bsa(dp20509 +g4 +g5 +(g6 +(I0 +tp20510 +g8 +tp20511 +Rp20512 +(I1 +(I7 +tp20513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20514 +tp20515 +bsa(dp20516 +g4 +g5 +(g6 +(I0 +tp20517 +g8 +tp20518 +Rp20519 +(I1 +(I7 +tp20520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20521 +tp20522 +bsa(dp20523 +g4 +g5 +(g6 +(I0 +tp20524 +g8 +tp20525 +Rp20526 +(I1 +(I7 +tp20527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20528 +tp20529 +bsa(dp20530 +g4 +g5 +(g6 +(I0 +tp20531 +g8 +tp20532 +Rp20533 +(I1 +(I7 +tp20534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20535 +tp20536 +bsa(dp20537 +g4 +g5 +(g6 +(I0 +tp20538 +g8 +tp20539 +Rp20540 +(I1 +(I7 +tp20541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20542 +tp20543 +bsa(dp20544 +g4 +g5 +(g6 +(I0 +tp20545 +g8 +tp20546 +Rp20547 +(I1 +(I7 +tp20548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20549 +tp20550 +bsa(dp20551 +g4 +g5 +(g6 +(I0 +tp20552 +g8 +tp20553 +Rp20554 +(I1 +(I7 +tp20555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20556 +tp20557 +bsa(dp20558 +g4 +g5 +(g6 +(I0 +tp20559 +g8 +tp20560 +Rp20561 +(I1 +(I7 +tp20562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20563 +tp20564 +bsa(dp20565 +g4 +g5 +(g6 +(I0 +tp20566 +g8 +tp20567 +Rp20568 +(I1 +(I7 +tp20569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20570 +tp20571 +bsa(dp20572 +g4 +g5 +(g6 +(I0 +tp20573 +g8 +tp20574 +Rp20575 +(I1 +(I7 +tp20576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20577 +tp20578 +bsa(dp20579 +g4 +g5 +(g6 +(I0 +tp20580 +g8 +tp20581 +Rp20582 +(I1 +(I7 +tp20583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20584 +tp20585 +bsa(dp20586 +g4 +g5 +(g6 +(I0 +tp20587 +g8 +tp20588 +Rp20589 +(I1 +(I7 +tp20590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20591 +tp20592 +bsa(dp20593 +g4 +g5 +(g6 +(I0 +tp20594 +g8 +tp20595 +Rp20596 +(I1 +(I7 +tp20597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20598 +tp20599 +bsa(dp20600 +g4 +g5 +(g6 +(I0 +tp20601 +g8 +tp20602 +Rp20603 +(I1 +(I7 +tp20604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20605 +tp20606 +bsa(dp20607 +g4 +g5 +(g6 +(I0 +tp20608 +g8 +tp20609 +Rp20610 +(I1 +(I7 +tp20611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20612 +tp20613 +bsa(dp20614 +g4 +g5 +(g6 +(I0 +tp20615 +g8 +tp20616 +Rp20617 +(I1 +(I7 +tp20618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20619 +tp20620 +bsa(dp20621 +g4 +g5 +(g6 +(I0 +tp20622 +g8 +tp20623 +Rp20624 +(I1 +(I7 +tp20625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20626 +tp20627 +bsa(dp20628 +g4 +g5 +(g6 +(I0 +tp20629 +g8 +tp20630 +Rp20631 +(I1 +(I7 +tp20632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20633 +tp20634 +bsa(dp20635 +g4 +g5 +(g6 +(I0 +tp20636 +g8 +tp20637 +Rp20638 +(I1 +(I7 +tp20639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20640 +tp20641 +bsa(dp20642 +g4 +g5 +(g6 +(I0 +tp20643 +g8 +tp20644 +Rp20645 +(I1 +(I7 +tp20646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20647 +tp20648 +bsa(dp20649 +g4 +g5 +(g6 +(I0 +tp20650 +g8 +tp20651 +Rp20652 +(I1 +(I7 +tp20653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20654 +tp20655 +bsa(dp20656 +g4 +g5 +(g6 +(I0 +tp20657 +g8 +tp20658 +Rp20659 +(I1 +(I7 +tp20660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20661 +tp20662 +bsa(dp20663 +g4 +g5 +(g6 +(I0 +tp20664 +g8 +tp20665 +Rp20666 +(I1 +(I7 +tp20667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20668 +tp20669 +bsa(dp20670 +g4 +g5 +(g6 +(I0 +tp20671 +g8 +tp20672 +Rp20673 +(I1 +(I7 +tp20674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20675 +tp20676 +bsa(dp20677 +g4 +g5 +(g6 +(I0 +tp20678 +g8 +tp20679 +Rp20680 +(I1 +(I7 +tp20681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20682 +tp20683 +bsa(dp20684 +g4 +g5 +(g6 +(I0 +tp20685 +g8 +tp20686 +Rp20687 +(I1 +(I7 +tp20688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20689 +tp20690 +bsa(dp20691 +g4 +g5 +(g6 +(I0 +tp20692 +g8 +tp20693 +Rp20694 +(I1 +(I7 +tp20695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20696 +tp20697 +bsa(dp20698 +g4 +g5 +(g6 +(I0 +tp20699 +g8 +tp20700 +Rp20701 +(I1 +(I7 +tp20702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20703 +tp20704 +bsa(dp20705 +g4 +g5 +(g6 +(I0 +tp20706 +g8 +tp20707 +Rp20708 +(I1 +(I7 +tp20709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20710 +tp20711 +bsa(dp20712 +g4 +g5 +(g6 +(I0 +tp20713 +g8 +tp20714 +Rp20715 +(I1 +(I7 +tp20716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20717 +tp20718 +bsa(dp20719 +g4 +g5 +(g6 +(I0 +tp20720 +g8 +tp20721 +Rp20722 +(I1 +(I7 +tp20723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20724 +tp20725 +bsa(dp20726 +g4 +g5 +(g6 +(I0 +tp20727 +g8 +tp20728 +Rp20729 +(I1 +(I7 +tp20730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20731 +tp20732 +bsa(dp20733 +g4 +g5 +(g6 +(I0 +tp20734 +g8 +tp20735 +Rp20736 +(I1 +(I7 +tp20737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20738 +tp20739 +bsa(dp20740 +g4 +g5 +(g6 +(I0 +tp20741 +g8 +tp20742 +Rp20743 +(I1 +(I7 +tp20744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20745 +tp20746 +bsa(dp20747 +g4 +g5 +(g6 +(I0 +tp20748 +g8 +tp20749 +Rp20750 +(I1 +(I7 +tp20751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20752 +tp20753 +bsa(dp20754 +g4 +g5 +(g6 +(I0 +tp20755 +g8 +tp20756 +Rp20757 +(I1 +(I7 +tp20758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20759 +tp20760 +bsa(dp20761 +g4 +g5 +(g6 +(I0 +tp20762 +g8 +tp20763 +Rp20764 +(I1 +(I7 +tp20765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20766 +tp20767 +bsa(dp20768 +g4 +g5 +(g6 +(I0 +tp20769 +g8 +tp20770 +Rp20771 +(I1 +(I7 +tp20772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20773 +tp20774 +bsa(dp20775 +g4 +g5 +(g6 +(I0 +tp20776 +g8 +tp20777 +Rp20778 +(I1 +(I7 +tp20779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20780 +tp20781 +bsa(dp20782 +g4 +g5 +(g6 +(I0 +tp20783 +g8 +tp20784 +Rp20785 +(I1 +(I7 +tp20786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20787 +tp20788 +bsa(dp20789 +g4 +g5 +(g6 +(I0 +tp20790 +g8 +tp20791 +Rp20792 +(I1 +(I7 +tp20793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20794 +tp20795 +bsa(dp20796 +g4 +g5 +(g6 +(I0 +tp20797 +g8 +tp20798 +Rp20799 +(I1 +(I7 +tp20800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20801 +tp20802 +bsa(dp20803 +g4 +g5 +(g6 +(I0 +tp20804 +g8 +tp20805 +Rp20806 +(I1 +(I7 +tp20807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20808 +tp20809 +bsa(dp20810 +g4 +g5 +(g6 +(I0 +tp20811 +g8 +tp20812 +Rp20813 +(I1 +(I7 +tp20814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20815 +tp20816 +bsa(dp20817 +g4 +g5 +(g6 +(I0 +tp20818 +g8 +tp20819 +Rp20820 +(I1 +(I7 +tp20821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20822 +tp20823 +bsa(dp20824 +g4 +g5 +(g6 +(I0 +tp20825 +g8 +tp20826 +Rp20827 +(I1 +(I7 +tp20828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20829 +tp20830 +bsa(dp20831 +g4 +g5 +(g6 +(I0 +tp20832 +g8 +tp20833 +Rp20834 +(I1 +(I7 +tp20835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20836 +tp20837 +bsa(dp20838 +g4 +g5 +(g6 +(I0 +tp20839 +g8 +tp20840 +Rp20841 +(I1 +(I7 +tp20842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20843 +tp20844 +bsa(dp20845 +g4 +g5 +(g6 +(I0 +tp20846 +g8 +tp20847 +Rp20848 +(I1 +(I7 +tp20849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20850 +tp20851 +bsa(dp20852 +g4 +g5 +(g6 +(I0 +tp20853 +g8 +tp20854 +Rp20855 +(I1 +(I7 +tp20856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20857 +tp20858 +bsa(dp20859 +g4 +g5 +(g6 +(I0 +tp20860 +g8 +tp20861 +Rp20862 +(I1 +(I7 +tp20863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20864 +tp20865 +bsa(dp20866 +g4 +g5 +(g6 +(I0 +tp20867 +g8 +tp20868 +Rp20869 +(I1 +(I7 +tp20870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20871 +tp20872 +bsa(dp20873 +g4 +g5 +(g6 +(I0 +tp20874 +g8 +tp20875 +Rp20876 +(I1 +(I7 +tp20877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20878 +tp20879 +bsa(dp20880 +g4 +g5 +(g6 +(I0 +tp20881 +g8 +tp20882 +Rp20883 +(I1 +(I7 +tp20884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20885 +tp20886 +bsa(dp20887 +g4 +g5 +(g6 +(I0 +tp20888 +g8 +tp20889 +Rp20890 +(I1 +(I7 +tp20891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20892 +tp20893 +bsa(dp20894 +g4 +g5 +(g6 +(I0 +tp20895 +g8 +tp20896 +Rp20897 +(I1 +(I7 +tp20898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20899 +tp20900 +bsa(dp20901 +g4 +g5 +(g6 +(I0 +tp20902 +g8 +tp20903 +Rp20904 +(I1 +(I7 +tp20905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20906 +tp20907 +bsa(dp20908 +g4 +g5 +(g6 +(I0 +tp20909 +g8 +tp20910 +Rp20911 +(I1 +(I7 +tp20912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20913 +tp20914 +bsa(dp20915 +g4 +g5 +(g6 +(I0 +tp20916 +g8 +tp20917 +Rp20918 +(I1 +(I7 +tp20919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20920 +tp20921 +bsa(dp20922 +g4 +g5 +(g6 +(I0 +tp20923 +g8 +tp20924 +Rp20925 +(I1 +(I7 +tp20926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20927 +tp20928 +bsa(dp20929 +g4 +g5 +(g6 +(I0 +tp20930 +g8 +tp20931 +Rp20932 +(I1 +(I7 +tp20933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20934 +tp20935 +bsa(dp20936 +g4 +g5 +(g6 +(I0 +tp20937 +g8 +tp20938 +Rp20939 +(I1 +(I7 +tp20940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20941 +tp20942 +bsa(dp20943 +g4 +g5 +(g6 +(I0 +tp20944 +g8 +tp20945 +Rp20946 +(I1 +(I7 +tp20947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20948 +tp20949 +bsa(dp20950 +g4 +g5 +(g6 +(I0 +tp20951 +g8 +tp20952 +Rp20953 +(I1 +(I7 +tp20954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20955 +tp20956 +bsa(dp20957 +g4 +g5 +(g6 +(I0 +tp20958 +g8 +tp20959 +Rp20960 +(I1 +(I7 +tp20961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p20962 +tp20963 +bsa(dp20964 +g4 +g5 +(g6 +(I0 +tp20965 +g8 +tp20966 +Rp20967 +(I1 +(I7 +tp20968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p20969 +tp20970 +bsa(dp20971 +g4 +g5 +(g6 +(I0 +tp20972 +g8 +tp20973 +Rp20974 +(I1 +(I7 +tp20975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20976 +tp20977 +bsa(dp20978 +g4 +g5 +(g6 +(I0 +tp20979 +g8 +tp20980 +Rp20981 +(I1 +(I7 +tp20982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20983 +tp20984 +bsa(dp20985 +g4 +g5 +(g6 +(I0 +tp20986 +g8 +tp20987 +Rp20988 +(I1 +(I7 +tp20989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20990 +tp20991 +bsa(dp20992 +g4 +g5 +(g6 +(I0 +tp20993 +g8 +tp20994 +Rp20995 +(I1 +(I7 +tp20996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p20997 +tp20998 +bsa(dp20999 +g4 +g5 +(g6 +(I0 +tp21000 +g8 +tp21001 +Rp21002 +(I1 +(I7 +tp21003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21004 +tp21005 +bsa(dp21006 +g4 +g5 +(g6 +(I0 +tp21007 +g8 +tp21008 +Rp21009 +(I1 +(I7 +tp21010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21011 +tp21012 +bsa(dp21013 +g4 +g5 +(g6 +(I0 +tp21014 +g8 +tp21015 +Rp21016 +(I1 +(I7 +tp21017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21018 +tp21019 +bsa(dp21020 +g4 +g5 +(g6 +(I0 +tp21021 +g8 +tp21022 +Rp21023 +(I1 +(I7 +tp21024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21025 +tp21026 +bsa(dp21027 +g4 +g5 +(g6 +(I0 +tp21028 +g8 +tp21029 +Rp21030 +(I1 +(I7 +tp21031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21032 +tp21033 +bsa(dp21034 +g4 +g5 +(g6 +(I0 +tp21035 +g8 +tp21036 +Rp21037 +(I1 +(I7 +tp21038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21039 +tp21040 +bsa(dp21041 +g4 +g5 +(g6 +(I0 +tp21042 +g8 +tp21043 +Rp21044 +(I1 +(I7 +tp21045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21046 +tp21047 +bsa(dp21048 +g4 +g5 +(g6 +(I0 +tp21049 +g8 +tp21050 +Rp21051 +(I1 +(I7 +tp21052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21053 +tp21054 +bsa(dp21055 +g4 +g5 +(g6 +(I0 +tp21056 +g8 +tp21057 +Rp21058 +(I1 +(I7 +tp21059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21060 +tp21061 +bsa(dp21062 +g4 +g5 +(g6 +(I0 +tp21063 +g8 +tp21064 +Rp21065 +(I1 +(I7 +tp21066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21067 +tp21068 +bsa(dp21069 +g4 +g5 +(g6 +(I0 +tp21070 +g8 +tp21071 +Rp21072 +(I1 +(I7 +tp21073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21074 +tp21075 +bsa(dp21076 +g4 +g5 +(g6 +(I0 +tp21077 +g8 +tp21078 +Rp21079 +(I1 +(I7 +tp21080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21081 +tp21082 +bsa(dp21083 +g4 +g5 +(g6 +(I0 +tp21084 +g8 +tp21085 +Rp21086 +(I1 +(I7 +tp21087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21088 +tp21089 +bsa(dp21090 +g4 +g5 +(g6 +(I0 +tp21091 +g8 +tp21092 +Rp21093 +(I1 +(I7 +tp21094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21095 +tp21096 +bsa(dp21097 +g4 +g5 +(g6 +(I0 +tp21098 +g8 +tp21099 +Rp21100 +(I1 +(I7 +tp21101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21102 +tp21103 +bsa(dp21104 +g4 +g5 +(g6 +(I0 +tp21105 +g8 +tp21106 +Rp21107 +(I1 +(I7 +tp21108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21109 +tp21110 +bsa(dp21111 +g4 +g5 +(g6 +(I0 +tp21112 +g8 +tp21113 +Rp21114 +(I1 +(I7 +tp21115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21116 +tp21117 +bsa(dp21118 +g4 +g5 +(g6 +(I0 +tp21119 +g8 +tp21120 +Rp21121 +(I1 +(I7 +tp21122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21123 +tp21124 +bsa(dp21125 +g4 +g5 +(g6 +(I0 +tp21126 +g8 +tp21127 +Rp21128 +(I1 +(I7 +tp21129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21130 +tp21131 +bsa(dp21132 +g4 +g5 +(g6 +(I0 +tp21133 +g8 +tp21134 +Rp21135 +(I1 +(I7 +tp21136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21137 +tp21138 +bsa(dp21139 +g4 +g5 +(g6 +(I0 +tp21140 +g8 +tp21141 +Rp21142 +(I1 +(I7 +tp21143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21144 +tp21145 +bsa(dp21146 +g4 +g5 +(g6 +(I0 +tp21147 +g8 +tp21148 +Rp21149 +(I1 +(I7 +tp21150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21151 +tp21152 +bsa(dp21153 +g4 +g5 +(g6 +(I0 +tp21154 +g8 +tp21155 +Rp21156 +(I1 +(I7 +tp21157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21158 +tp21159 +bsa(dp21160 +g4 +g5 +(g6 +(I0 +tp21161 +g8 +tp21162 +Rp21163 +(I1 +(I7 +tp21164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21165 +tp21166 +bsa(dp21167 +g4 +g5 +(g6 +(I0 +tp21168 +g8 +tp21169 +Rp21170 +(I1 +(I7 +tp21171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21172 +tp21173 +bsa(dp21174 +g4 +g5 +(g6 +(I0 +tp21175 +g8 +tp21176 +Rp21177 +(I1 +(I7 +tp21178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21179 +tp21180 +bsa(dp21181 +g4 +g5 +(g6 +(I0 +tp21182 +g8 +tp21183 +Rp21184 +(I1 +(I7 +tp21185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21186 +tp21187 +bsa(dp21188 +g4 +g5 +(g6 +(I0 +tp21189 +g8 +tp21190 +Rp21191 +(I1 +(I7 +tp21192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21193 +tp21194 +bsa(dp21195 +g4 +g5 +(g6 +(I0 +tp21196 +g8 +tp21197 +Rp21198 +(I1 +(I7 +tp21199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21200 +tp21201 +bsa(dp21202 +g4 +g5 +(g6 +(I0 +tp21203 +g8 +tp21204 +Rp21205 +(I1 +(I7 +tp21206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21207 +tp21208 +bsa(dp21209 +g4 +g5 +(g6 +(I0 +tp21210 +g8 +tp21211 +Rp21212 +(I1 +(I7 +tp21213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21214 +tp21215 +bsa(dp21216 +g4 +g5 +(g6 +(I0 +tp21217 +g8 +tp21218 +Rp21219 +(I1 +(I7 +tp21220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21221 +tp21222 +bsa(dp21223 +g4 +g5 +(g6 +(I0 +tp21224 +g8 +tp21225 +Rp21226 +(I1 +(I7 +tp21227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21228 +tp21229 +bsa(dp21230 +g4 +g5 +(g6 +(I0 +tp21231 +g8 +tp21232 +Rp21233 +(I1 +(I7 +tp21234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21235 +tp21236 +bsa(dp21237 +g4 +g5 +(g6 +(I0 +tp21238 +g8 +tp21239 +Rp21240 +(I1 +(I7 +tp21241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21242 +tp21243 +bsa(dp21244 +g4 +g5 +(g6 +(I0 +tp21245 +g8 +tp21246 +Rp21247 +(I1 +(I7 +tp21248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21249 +tp21250 +bsa(dp21251 +g4 +g5 +(g6 +(I0 +tp21252 +g8 +tp21253 +Rp21254 +(I1 +(I7 +tp21255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21256 +tp21257 +bsa(dp21258 +g4 +g5 +(g6 +(I0 +tp21259 +g8 +tp21260 +Rp21261 +(I1 +(I7 +tp21262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21263 +tp21264 +bsa(dp21265 +g4 +g5 +(g6 +(I0 +tp21266 +g8 +tp21267 +Rp21268 +(I1 +(I7 +tp21269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21270 +tp21271 +bsa(dp21272 +g4 +g5 +(g6 +(I0 +tp21273 +g8 +tp21274 +Rp21275 +(I1 +(I7 +tp21276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21277 +tp21278 +bsa(dp21279 +g4 +g5 +(g6 +(I0 +tp21280 +g8 +tp21281 +Rp21282 +(I1 +(I7 +tp21283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21284 +tp21285 +bsa(dp21286 +g4 +g5 +(g6 +(I0 +tp21287 +g8 +tp21288 +Rp21289 +(I1 +(I7 +tp21290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21291 +tp21292 +bsa(dp21293 +g4 +g5 +(g6 +(I0 +tp21294 +g8 +tp21295 +Rp21296 +(I1 +(I7 +tp21297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21298 +tp21299 +bsa(dp21300 +g4 +g5 +(g6 +(I0 +tp21301 +g8 +tp21302 +Rp21303 +(I1 +(I7 +tp21304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21305 +tp21306 +bsa(dp21307 +g4 +g5 +(g6 +(I0 +tp21308 +g8 +tp21309 +Rp21310 +(I1 +(I7 +tp21311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21312 +tp21313 +bsa(dp21314 +g4 +g5 +(g6 +(I0 +tp21315 +g8 +tp21316 +Rp21317 +(I1 +(I7 +tp21318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21319 +tp21320 +bsa(dp21321 +g4 +g5 +(g6 +(I0 +tp21322 +g8 +tp21323 +Rp21324 +(I1 +(I7 +tp21325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21326 +tp21327 +bsa(dp21328 +g4 +g5 +(g6 +(I0 +tp21329 +g8 +tp21330 +Rp21331 +(I1 +(I7 +tp21332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21333 +tp21334 +bsa(dp21335 +g4 +g5 +(g6 +(I0 +tp21336 +g8 +tp21337 +Rp21338 +(I1 +(I7 +tp21339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21340 +tp21341 +bsa(dp21342 +g4 +g5 +(g6 +(I0 +tp21343 +g8 +tp21344 +Rp21345 +(I1 +(I7 +tp21346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21347 +tp21348 +bsa(dp21349 +g4 +g5 +(g6 +(I0 +tp21350 +g8 +tp21351 +Rp21352 +(I1 +(I7 +tp21353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21354 +tp21355 +bsa(dp21356 +g4 +g5 +(g6 +(I0 +tp21357 +g8 +tp21358 +Rp21359 +(I1 +(I7 +tp21360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21361 +tp21362 +bsa(dp21363 +g4 +g5 +(g6 +(I0 +tp21364 +g8 +tp21365 +Rp21366 +(I1 +(I7 +tp21367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21368 +tp21369 +bsa(dp21370 +g4 +g5 +(g6 +(I0 +tp21371 +g8 +tp21372 +Rp21373 +(I1 +(I7 +tp21374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21375 +tp21376 +bsa(dp21377 +g4 +g5 +(g6 +(I0 +tp21378 +g8 +tp21379 +Rp21380 +(I1 +(I7 +tp21381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21382 +tp21383 +bsa(dp21384 +g4 +g5 +(g6 +(I0 +tp21385 +g8 +tp21386 +Rp21387 +(I1 +(I7 +tp21388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21389 +tp21390 +bsa(dp21391 +g4 +g5 +(g6 +(I0 +tp21392 +g8 +tp21393 +Rp21394 +(I1 +(I7 +tp21395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21396 +tp21397 +bsa(dp21398 +g4 +g5 +(g6 +(I0 +tp21399 +g8 +tp21400 +Rp21401 +(I1 +(I7 +tp21402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21403 +tp21404 +bsa(dp21405 +g4 +g5 +(g6 +(I0 +tp21406 +g8 +tp21407 +Rp21408 +(I1 +(I7 +tp21409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21410 +tp21411 +bsa(dp21412 +g4 +g5 +(g6 +(I0 +tp21413 +g8 +tp21414 +Rp21415 +(I1 +(I7 +tp21416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21417 +tp21418 +bsa(dp21419 +g4 +g5 +(g6 +(I0 +tp21420 +g8 +tp21421 +Rp21422 +(I1 +(I7 +tp21423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21424 +tp21425 +bsa(dp21426 +g4 +g5 +(g6 +(I0 +tp21427 +g8 +tp21428 +Rp21429 +(I1 +(I7 +tp21430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21431 +tp21432 +bsa(dp21433 +g4 +g5 +(g6 +(I0 +tp21434 +g8 +tp21435 +Rp21436 +(I1 +(I7 +tp21437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21438 +tp21439 +bsa(dp21440 +g4 +g5 +(g6 +(I0 +tp21441 +g8 +tp21442 +Rp21443 +(I1 +(I7 +tp21444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21445 +tp21446 +bsa(dp21447 +g4 +g5 +(g6 +(I0 +tp21448 +g8 +tp21449 +Rp21450 +(I1 +(I7 +tp21451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21452 +tp21453 +bsa(dp21454 +g4 +g5 +(g6 +(I0 +tp21455 +g8 +tp21456 +Rp21457 +(I1 +(I7 +tp21458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21459 +tp21460 +bsa(dp21461 +g4 +g5 +(g6 +(I0 +tp21462 +g8 +tp21463 +Rp21464 +(I1 +(I7 +tp21465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21466 +tp21467 +bsa(dp21468 +g4 +g5 +(g6 +(I0 +tp21469 +g8 +tp21470 +Rp21471 +(I1 +(I7 +tp21472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21473 +tp21474 +bsa(dp21475 +g4 +g5 +(g6 +(I0 +tp21476 +g8 +tp21477 +Rp21478 +(I1 +(I7 +tp21479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21480 +tp21481 +bsa(dp21482 +g4 +g5 +(g6 +(I0 +tp21483 +g8 +tp21484 +Rp21485 +(I1 +(I7 +tp21486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21487 +tp21488 +bsa(dp21489 +g4 +g5 +(g6 +(I0 +tp21490 +g8 +tp21491 +Rp21492 +(I1 +(I7 +tp21493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21494 +tp21495 +bsa(dp21496 +g4 +g5 +(g6 +(I0 +tp21497 +g8 +tp21498 +Rp21499 +(I1 +(I7 +tp21500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21501 +tp21502 +bsa(dp21503 +g4 +g5 +(g6 +(I0 +tp21504 +g8 +tp21505 +Rp21506 +(I1 +(I7 +tp21507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21508 +tp21509 +bsa(dp21510 +g4 +g5 +(g6 +(I0 +tp21511 +g8 +tp21512 +Rp21513 +(I1 +(I7 +tp21514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21515 +tp21516 +bsa(dp21517 +g4 +g5 +(g6 +(I0 +tp21518 +g8 +tp21519 +Rp21520 +(I1 +(I7 +tp21521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21522 +tp21523 +bsa(dp21524 +g4 +g5 +(g6 +(I0 +tp21525 +g8 +tp21526 +Rp21527 +(I1 +(I7 +tp21528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21529 +tp21530 +bsa(dp21531 +g4 +g5 +(g6 +(I0 +tp21532 +g8 +tp21533 +Rp21534 +(I1 +(I7 +tp21535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21536 +tp21537 +bsa(dp21538 +g4 +g5 +(g6 +(I0 +tp21539 +g8 +tp21540 +Rp21541 +(I1 +(I7 +tp21542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21543 +tp21544 +bsa(dp21545 +g4 +g5 +(g6 +(I0 +tp21546 +g8 +tp21547 +Rp21548 +(I1 +(I7 +tp21549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21550 +tp21551 +bsa(dp21552 +g4 +g5 +(g6 +(I0 +tp21553 +g8 +tp21554 +Rp21555 +(I1 +(I7 +tp21556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21557 +tp21558 +bsa(dp21559 +g4 +g5 +(g6 +(I0 +tp21560 +g8 +tp21561 +Rp21562 +(I1 +(I7 +tp21563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21564 +tp21565 +bsa(dp21566 +g4 +g5 +(g6 +(I0 +tp21567 +g8 +tp21568 +Rp21569 +(I1 +(I7 +tp21570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21571 +tp21572 +bsa(dp21573 +g4 +g5 +(g6 +(I0 +tp21574 +g8 +tp21575 +Rp21576 +(I1 +(I7 +tp21577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21578 +tp21579 +bsa(dp21580 +g4 +g5 +(g6 +(I0 +tp21581 +g8 +tp21582 +Rp21583 +(I1 +(I7 +tp21584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21585 +tp21586 +bsa(dp21587 +g4 +g5 +(g6 +(I0 +tp21588 +g8 +tp21589 +Rp21590 +(I1 +(I7 +tp21591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21592 +tp21593 +bsa(dp21594 +g4 +g5 +(g6 +(I0 +tp21595 +g8 +tp21596 +Rp21597 +(I1 +(I7 +tp21598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21599 +tp21600 +bsa(dp21601 +g4 +g5 +(g6 +(I0 +tp21602 +g8 +tp21603 +Rp21604 +(I1 +(I7 +tp21605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21606 +tp21607 +bsa(dp21608 +g4 +g5 +(g6 +(I0 +tp21609 +g8 +tp21610 +Rp21611 +(I1 +(I7 +tp21612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21613 +tp21614 +bsa(dp21615 +g4 +g5 +(g6 +(I0 +tp21616 +g8 +tp21617 +Rp21618 +(I1 +(I7 +tp21619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21620 +tp21621 +bsa(dp21622 +g4 +g5 +(g6 +(I0 +tp21623 +g8 +tp21624 +Rp21625 +(I1 +(I7 +tp21626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21627 +tp21628 +bsa(dp21629 +g4 +g5 +(g6 +(I0 +tp21630 +g8 +tp21631 +Rp21632 +(I1 +(I7 +tp21633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21634 +tp21635 +bsa(dp21636 +g4 +g5 +(g6 +(I0 +tp21637 +g8 +tp21638 +Rp21639 +(I1 +(I7 +tp21640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21641 +tp21642 +bsa(dp21643 +g4 +g5 +(g6 +(I0 +tp21644 +g8 +tp21645 +Rp21646 +(I1 +(I7 +tp21647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21648 +tp21649 +bsa(dp21650 +g4 +g5 +(g6 +(I0 +tp21651 +g8 +tp21652 +Rp21653 +(I1 +(I7 +tp21654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21655 +tp21656 +bsa(dp21657 +g4 +g5 +(g6 +(I0 +tp21658 +g8 +tp21659 +Rp21660 +(I1 +(I7 +tp21661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21662 +tp21663 +bsa(dp21664 +g4 +g5 +(g6 +(I0 +tp21665 +g8 +tp21666 +Rp21667 +(I1 +(I7 +tp21668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21669 +tp21670 +bsa(dp21671 +g4 +g5 +(g6 +(I0 +tp21672 +g8 +tp21673 +Rp21674 +(I1 +(I7 +tp21675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21676 +tp21677 +bsa(dp21678 +g4 +g5 +(g6 +(I0 +tp21679 +g8 +tp21680 +Rp21681 +(I1 +(I7 +tp21682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21683 +tp21684 +bsa(dp21685 +g4 +g5 +(g6 +(I0 +tp21686 +g8 +tp21687 +Rp21688 +(I1 +(I7 +tp21689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21690 +tp21691 +bsa(dp21692 +g4 +g5 +(g6 +(I0 +tp21693 +g8 +tp21694 +Rp21695 +(I1 +(I7 +tp21696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21697 +tp21698 +bsa(dp21699 +g4 +g5 +(g6 +(I0 +tp21700 +g8 +tp21701 +Rp21702 +(I1 +(I7 +tp21703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21704 +tp21705 +bsa(dp21706 +g4 +g5 +(g6 +(I0 +tp21707 +g8 +tp21708 +Rp21709 +(I1 +(I7 +tp21710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21711 +tp21712 +bsa(dp21713 +g4 +g5 +(g6 +(I0 +tp21714 +g8 +tp21715 +Rp21716 +(I1 +(I7 +tp21717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21718 +tp21719 +bsa(dp21720 +g4 +g5 +(g6 +(I0 +tp21721 +g8 +tp21722 +Rp21723 +(I1 +(I7 +tp21724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21725 +tp21726 +bsa(dp21727 +g4 +g5 +(g6 +(I0 +tp21728 +g8 +tp21729 +Rp21730 +(I1 +(I7 +tp21731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21732 +tp21733 +bsa(dp21734 +g4 +g5 +(g6 +(I0 +tp21735 +g8 +tp21736 +Rp21737 +(I1 +(I7 +tp21738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21739 +tp21740 +bsa(dp21741 +g4 +g5 +(g6 +(I0 +tp21742 +g8 +tp21743 +Rp21744 +(I1 +(I7 +tp21745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21746 +tp21747 +bsa(dp21748 +g4 +g5 +(g6 +(I0 +tp21749 +g8 +tp21750 +Rp21751 +(I1 +(I7 +tp21752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21753 +tp21754 +bsa(dp21755 +g4 +g5 +(g6 +(I0 +tp21756 +g8 +tp21757 +Rp21758 +(I1 +(I7 +tp21759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21760 +tp21761 +bsa(dp21762 +g4 +g5 +(g6 +(I0 +tp21763 +g8 +tp21764 +Rp21765 +(I1 +(I7 +tp21766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21767 +tp21768 +bsa(dp21769 +g4 +g5 +(g6 +(I0 +tp21770 +g8 +tp21771 +Rp21772 +(I1 +(I7 +tp21773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21774 +tp21775 +bsa(dp21776 +g4 +g5 +(g6 +(I0 +tp21777 +g8 +tp21778 +Rp21779 +(I1 +(I7 +tp21780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21781 +tp21782 +bsa(dp21783 +g4 +g5 +(g6 +(I0 +tp21784 +g8 +tp21785 +Rp21786 +(I1 +(I7 +tp21787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21788 +tp21789 +bsa(dp21790 +g4 +g5 +(g6 +(I0 +tp21791 +g8 +tp21792 +Rp21793 +(I1 +(I7 +tp21794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21795 +tp21796 +bsa(dp21797 +g4 +g5 +(g6 +(I0 +tp21798 +g8 +tp21799 +Rp21800 +(I1 +(I7 +tp21801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21802 +tp21803 +bsa(dp21804 +g4 +g5 +(g6 +(I0 +tp21805 +g8 +tp21806 +Rp21807 +(I1 +(I7 +tp21808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21809 +tp21810 +bsa(dp21811 +g4 +g5 +(g6 +(I0 +tp21812 +g8 +tp21813 +Rp21814 +(I1 +(I7 +tp21815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21816 +tp21817 +bsa(dp21818 +g4 +g5 +(g6 +(I0 +tp21819 +g8 +tp21820 +Rp21821 +(I1 +(I7 +tp21822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21823 +tp21824 +bsa(dp21825 +g4 +g5 +(g6 +(I0 +tp21826 +g8 +tp21827 +Rp21828 +(I1 +(I7 +tp21829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21830 +tp21831 +bsa(dp21832 +g4 +g5 +(g6 +(I0 +tp21833 +g8 +tp21834 +Rp21835 +(I1 +(I7 +tp21836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21837 +tp21838 +bsa(dp21839 +g4 +g5 +(g6 +(I0 +tp21840 +g8 +tp21841 +Rp21842 +(I1 +(I7 +tp21843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21844 +tp21845 +bsa(dp21846 +g4 +g5 +(g6 +(I0 +tp21847 +g8 +tp21848 +Rp21849 +(I1 +(I7 +tp21850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21851 +tp21852 +bsa(dp21853 +g4 +g5 +(g6 +(I0 +tp21854 +g8 +tp21855 +Rp21856 +(I1 +(I7 +tp21857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21858 +tp21859 +bsa(dp21860 +g4 +g5 +(g6 +(I0 +tp21861 +g8 +tp21862 +Rp21863 +(I1 +(I7 +tp21864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21865 +tp21866 +bsa(dp21867 +g4 +g5 +(g6 +(I0 +tp21868 +g8 +tp21869 +Rp21870 +(I1 +(I7 +tp21871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21872 +tp21873 +bsa(dp21874 +g4 +g5 +(g6 +(I0 +tp21875 +g8 +tp21876 +Rp21877 +(I1 +(I7 +tp21878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21879 +tp21880 +bsa(dp21881 +g4 +g5 +(g6 +(I0 +tp21882 +g8 +tp21883 +Rp21884 +(I1 +(I7 +tp21885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21886 +tp21887 +bsa(dp21888 +g4 +g5 +(g6 +(I0 +tp21889 +g8 +tp21890 +Rp21891 +(I1 +(I7 +tp21892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21893 +tp21894 +bsa(dp21895 +g4 +g5 +(g6 +(I0 +tp21896 +g8 +tp21897 +Rp21898 +(I1 +(I7 +tp21899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21900 +tp21901 +bsa(dp21902 +g4 +g5 +(g6 +(I0 +tp21903 +g8 +tp21904 +Rp21905 +(I1 +(I7 +tp21906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21907 +tp21908 +bsa(dp21909 +g4 +g5 +(g6 +(I0 +tp21910 +g8 +tp21911 +Rp21912 +(I1 +(I7 +tp21913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21914 +tp21915 +bsa(dp21916 +g4 +g5 +(g6 +(I0 +tp21917 +g8 +tp21918 +Rp21919 +(I1 +(I7 +tp21920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21921 +tp21922 +bsa(dp21923 +g4 +g5 +(g6 +(I0 +tp21924 +g8 +tp21925 +Rp21926 +(I1 +(I7 +tp21927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21928 +tp21929 +bsa(dp21930 +g4 +g5 +(g6 +(I0 +tp21931 +g8 +tp21932 +Rp21933 +(I1 +(I7 +tp21934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21935 +tp21936 +bsa(dp21937 +g4 +g5 +(g6 +(I0 +tp21938 +g8 +tp21939 +Rp21940 +(I1 +(I7 +tp21941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21942 +tp21943 +bsa(dp21944 +g4 +g5 +(g6 +(I0 +tp21945 +g8 +tp21946 +Rp21947 +(I1 +(I7 +tp21948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21949 +tp21950 +bsa(dp21951 +g4 +g5 +(g6 +(I0 +tp21952 +g8 +tp21953 +Rp21954 +(I1 +(I7 +tp21955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21956 +tp21957 +bsa(dp21958 +g4 +g5 +(g6 +(I0 +tp21959 +g8 +tp21960 +Rp21961 +(I1 +(I7 +tp21962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21963 +tp21964 +bsa(dp21965 +g4 +g5 +(g6 +(I0 +tp21966 +g8 +tp21967 +Rp21968 +(I1 +(I7 +tp21969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21970 +tp21971 +bsa(dp21972 +g4 +g5 +(g6 +(I0 +tp21973 +g8 +tp21974 +Rp21975 +(I1 +(I7 +tp21976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21977 +tp21978 +bsa(dp21979 +g4 +g5 +(g6 +(I0 +tp21980 +g8 +tp21981 +Rp21982 +(I1 +(I7 +tp21983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p21984 +tp21985 +bsa(dp21986 +g4 +g5 +(g6 +(I0 +tp21987 +g8 +tp21988 +Rp21989 +(I1 +(I7 +tp21990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p21991 +tp21992 +bsa(dp21993 +g4 +g5 +(g6 +(I0 +tp21994 +g8 +tp21995 +Rp21996 +(I1 +(I7 +tp21997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p21998 +tp21999 +bsa(dp22000 +g4 +g5 +(g6 +(I0 +tp22001 +g8 +tp22002 +Rp22003 +(I1 +(I7 +tp22004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22005 +tp22006 +bsa(dp22007 +g4 +g5 +(g6 +(I0 +tp22008 +g8 +tp22009 +Rp22010 +(I1 +(I7 +tp22011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22012 +tp22013 +bsa(dp22014 +g4 +g5 +(g6 +(I0 +tp22015 +g8 +tp22016 +Rp22017 +(I1 +(I7 +tp22018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22019 +tp22020 +bsa(dp22021 +g4 +g5 +(g6 +(I0 +tp22022 +g8 +tp22023 +Rp22024 +(I1 +(I7 +tp22025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22026 +tp22027 +bsa(dp22028 +g4 +g5 +(g6 +(I0 +tp22029 +g8 +tp22030 +Rp22031 +(I1 +(I7 +tp22032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22033 +tp22034 +bsa(dp22035 +g4 +g5 +(g6 +(I0 +tp22036 +g8 +tp22037 +Rp22038 +(I1 +(I7 +tp22039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22040 +tp22041 +bsa(dp22042 +g4 +g5 +(g6 +(I0 +tp22043 +g8 +tp22044 +Rp22045 +(I1 +(I7 +tp22046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22047 +tp22048 +bsa(dp22049 +g4 +g5 +(g6 +(I0 +tp22050 +g8 +tp22051 +Rp22052 +(I1 +(I7 +tp22053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22054 +tp22055 +bsa(dp22056 +g4 +g5 +(g6 +(I0 +tp22057 +g8 +tp22058 +Rp22059 +(I1 +(I7 +tp22060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22061 +tp22062 +bsa(dp22063 +g4 +g5 +(g6 +(I0 +tp22064 +g8 +tp22065 +Rp22066 +(I1 +(I7 +tp22067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22068 +tp22069 +bsa(dp22070 +g4 +g5 +(g6 +(I0 +tp22071 +g8 +tp22072 +Rp22073 +(I1 +(I7 +tp22074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22075 +tp22076 +bsa(dp22077 +g4 +g5 +(g6 +(I0 +tp22078 +g8 +tp22079 +Rp22080 +(I1 +(I7 +tp22081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22082 +tp22083 +bsa(dp22084 +g4 +g5 +(g6 +(I0 +tp22085 +g8 +tp22086 +Rp22087 +(I1 +(I7 +tp22088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22089 +tp22090 +bsa(dp22091 +g4 +g5 +(g6 +(I0 +tp22092 +g8 +tp22093 +Rp22094 +(I1 +(I7 +tp22095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22096 +tp22097 +bsa(dp22098 +g4 +g5 +(g6 +(I0 +tp22099 +g8 +tp22100 +Rp22101 +(I1 +(I7 +tp22102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22103 +tp22104 +bsa(dp22105 +g4 +g5 +(g6 +(I0 +tp22106 +g8 +tp22107 +Rp22108 +(I1 +(I7 +tp22109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22110 +tp22111 +bsa(dp22112 +g4 +g5 +(g6 +(I0 +tp22113 +g8 +tp22114 +Rp22115 +(I1 +(I7 +tp22116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22117 +tp22118 +bsa(dp22119 +g4 +g5 +(g6 +(I0 +tp22120 +g8 +tp22121 +Rp22122 +(I1 +(I7 +tp22123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22124 +tp22125 +bsa(dp22126 +g4 +g5 +(g6 +(I0 +tp22127 +g8 +tp22128 +Rp22129 +(I1 +(I7 +tp22130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22131 +tp22132 +bsa(dp22133 +g4 +g5 +(g6 +(I0 +tp22134 +g8 +tp22135 +Rp22136 +(I1 +(I7 +tp22137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22138 +tp22139 +bsa(dp22140 +g4 +g5 +(g6 +(I0 +tp22141 +g8 +tp22142 +Rp22143 +(I1 +(I7 +tp22144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22145 +tp22146 +bsa(dp22147 +g4 +g5 +(g6 +(I0 +tp22148 +g8 +tp22149 +Rp22150 +(I1 +(I7 +tp22151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22152 +tp22153 +bsa(dp22154 +g4 +g5 +(g6 +(I0 +tp22155 +g8 +tp22156 +Rp22157 +(I1 +(I7 +tp22158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22159 +tp22160 +bsa(dp22161 +g4 +g5 +(g6 +(I0 +tp22162 +g8 +tp22163 +Rp22164 +(I1 +(I7 +tp22165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22166 +tp22167 +bsa(dp22168 +g4 +g5 +(g6 +(I0 +tp22169 +g8 +tp22170 +Rp22171 +(I1 +(I7 +tp22172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22173 +tp22174 +bsa(dp22175 +g4 +g5 +(g6 +(I0 +tp22176 +g8 +tp22177 +Rp22178 +(I1 +(I7 +tp22179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22180 +tp22181 +bsa(dp22182 +g4 +g5 +(g6 +(I0 +tp22183 +g8 +tp22184 +Rp22185 +(I1 +(I7 +tp22186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22187 +tp22188 +bsa(dp22189 +g4 +g5 +(g6 +(I0 +tp22190 +g8 +tp22191 +Rp22192 +(I1 +(I7 +tp22193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22194 +tp22195 +bsa(dp22196 +g4 +g5 +(g6 +(I0 +tp22197 +g8 +tp22198 +Rp22199 +(I1 +(I7 +tp22200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22201 +tp22202 +bsa(dp22203 +g4 +g5 +(g6 +(I0 +tp22204 +g8 +tp22205 +Rp22206 +(I1 +(I7 +tp22207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22208 +tp22209 +bsa(dp22210 +g4 +g5 +(g6 +(I0 +tp22211 +g8 +tp22212 +Rp22213 +(I1 +(I7 +tp22214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22215 +tp22216 +bsa(dp22217 +g4 +g5 +(g6 +(I0 +tp22218 +g8 +tp22219 +Rp22220 +(I1 +(I7 +tp22221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22222 +tp22223 +bsa(dp22224 +g4 +g5 +(g6 +(I0 +tp22225 +g8 +tp22226 +Rp22227 +(I1 +(I7 +tp22228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22229 +tp22230 +bsa(dp22231 +g4 +g5 +(g6 +(I0 +tp22232 +g8 +tp22233 +Rp22234 +(I1 +(I7 +tp22235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22236 +tp22237 +bsa(dp22238 +g4 +g5 +(g6 +(I0 +tp22239 +g8 +tp22240 +Rp22241 +(I1 +(I7 +tp22242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22243 +tp22244 +bsa(dp22245 +g4 +g5 +(g6 +(I0 +tp22246 +g8 +tp22247 +Rp22248 +(I1 +(I7 +tp22249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22250 +tp22251 +bsa(dp22252 +g4 +g5 +(g6 +(I0 +tp22253 +g8 +tp22254 +Rp22255 +(I1 +(I7 +tp22256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22257 +tp22258 +bsa(dp22259 +g4 +g5 +(g6 +(I0 +tp22260 +g8 +tp22261 +Rp22262 +(I1 +(I7 +tp22263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22264 +tp22265 +bsa(dp22266 +g4 +g5 +(g6 +(I0 +tp22267 +g8 +tp22268 +Rp22269 +(I1 +(I7 +tp22270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22271 +tp22272 +bsa(dp22273 +g4 +g5 +(g6 +(I0 +tp22274 +g8 +tp22275 +Rp22276 +(I1 +(I7 +tp22277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22278 +tp22279 +bsa(dp22280 +g4 +g5 +(g6 +(I0 +tp22281 +g8 +tp22282 +Rp22283 +(I1 +(I7 +tp22284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22285 +tp22286 +bsa(dp22287 +g4 +g5 +(g6 +(I0 +tp22288 +g8 +tp22289 +Rp22290 +(I1 +(I7 +tp22291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22292 +tp22293 +bsa(dp22294 +g4 +g5 +(g6 +(I0 +tp22295 +g8 +tp22296 +Rp22297 +(I1 +(I7 +tp22298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22299 +tp22300 +bsa(dp22301 +g4 +g5 +(g6 +(I0 +tp22302 +g8 +tp22303 +Rp22304 +(I1 +(I7 +tp22305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22306 +tp22307 +bsa(dp22308 +g4 +g5 +(g6 +(I0 +tp22309 +g8 +tp22310 +Rp22311 +(I1 +(I7 +tp22312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22313 +tp22314 +bsa(dp22315 +g4 +g5 +(g6 +(I0 +tp22316 +g8 +tp22317 +Rp22318 +(I1 +(I7 +tp22319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22320 +tp22321 +bsa(dp22322 +g4 +g5 +(g6 +(I0 +tp22323 +g8 +tp22324 +Rp22325 +(I1 +(I7 +tp22326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22327 +tp22328 +bsa(dp22329 +g4 +g5 +(g6 +(I0 +tp22330 +g8 +tp22331 +Rp22332 +(I1 +(I7 +tp22333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22334 +tp22335 +bsa(dp22336 +g4 +g5 +(g6 +(I0 +tp22337 +g8 +tp22338 +Rp22339 +(I1 +(I7 +tp22340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22341 +tp22342 +bsa(dp22343 +g4 +g5 +(g6 +(I0 +tp22344 +g8 +tp22345 +Rp22346 +(I1 +(I7 +tp22347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22348 +tp22349 +bsa(dp22350 +g4 +g5 +(g6 +(I0 +tp22351 +g8 +tp22352 +Rp22353 +(I1 +(I7 +tp22354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22355 +tp22356 +bsa(dp22357 +g4 +g5 +(g6 +(I0 +tp22358 +g8 +tp22359 +Rp22360 +(I1 +(I7 +tp22361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22362 +tp22363 +bsa(dp22364 +g4 +g5 +(g6 +(I0 +tp22365 +g8 +tp22366 +Rp22367 +(I1 +(I7 +tp22368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22369 +tp22370 +bsa(dp22371 +g4 +g5 +(g6 +(I0 +tp22372 +g8 +tp22373 +Rp22374 +(I1 +(I7 +tp22375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22376 +tp22377 +bsa(dp22378 +g4 +g5 +(g6 +(I0 +tp22379 +g8 +tp22380 +Rp22381 +(I1 +(I7 +tp22382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22383 +tp22384 +bsa(dp22385 +g4 +g5 +(g6 +(I0 +tp22386 +g8 +tp22387 +Rp22388 +(I1 +(I7 +tp22389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22390 +tp22391 +bsa(dp22392 +g4 +g5 +(g6 +(I0 +tp22393 +g8 +tp22394 +Rp22395 +(I1 +(I7 +tp22396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22397 +tp22398 +bsa(dp22399 +g4 +g5 +(g6 +(I0 +tp22400 +g8 +tp22401 +Rp22402 +(I1 +(I7 +tp22403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22404 +tp22405 +bsa(dp22406 +g4 +g5 +(g6 +(I0 +tp22407 +g8 +tp22408 +Rp22409 +(I1 +(I7 +tp22410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22411 +tp22412 +bsa(dp22413 +g4 +g5 +(g6 +(I0 +tp22414 +g8 +tp22415 +Rp22416 +(I1 +(I7 +tp22417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22418 +tp22419 +bsa(dp22420 +g4 +g5 +(g6 +(I0 +tp22421 +g8 +tp22422 +Rp22423 +(I1 +(I7 +tp22424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22425 +tp22426 +bsa(dp22427 +g4 +g5 +(g6 +(I0 +tp22428 +g8 +tp22429 +Rp22430 +(I1 +(I7 +tp22431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22432 +tp22433 +bsa(dp22434 +g4 +g5 +(g6 +(I0 +tp22435 +g8 +tp22436 +Rp22437 +(I1 +(I7 +tp22438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22439 +tp22440 +bsa(dp22441 +g4 +g5 +(g6 +(I0 +tp22442 +g8 +tp22443 +Rp22444 +(I1 +(I7 +tp22445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22446 +tp22447 +bsa(dp22448 +g4 +g5 +(g6 +(I0 +tp22449 +g8 +tp22450 +Rp22451 +(I1 +(I7 +tp22452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22453 +tp22454 +bsa(dp22455 +g4 +g5 +(g6 +(I0 +tp22456 +g8 +tp22457 +Rp22458 +(I1 +(I7 +tp22459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22460 +tp22461 +bsa(dp22462 +g4 +g5 +(g6 +(I0 +tp22463 +g8 +tp22464 +Rp22465 +(I1 +(I7 +tp22466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22467 +tp22468 +bsa(dp22469 +g4 +g5 +(g6 +(I0 +tp22470 +g8 +tp22471 +Rp22472 +(I1 +(I7 +tp22473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22474 +tp22475 +bsa(dp22476 +g4 +g5 +(g6 +(I0 +tp22477 +g8 +tp22478 +Rp22479 +(I1 +(I7 +tp22480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22481 +tp22482 +bsa(dp22483 +g4 +g5 +(g6 +(I0 +tp22484 +g8 +tp22485 +Rp22486 +(I1 +(I7 +tp22487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22488 +tp22489 +bsa(dp22490 +g4 +g5 +(g6 +(I0 +tp22491 +g8 +tp22492 +Rp22493 +(I1 +(I7 +tp22494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22495 +tp22496 +bsa(dp22497 +g4 +g5 +(g6 +(I0 +tp22498 +g8 +tp22499 +Rp22500 +(I1 +(I7 +tp22501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22502 +tp22503 +bsa(dp22504 +g4 +g5 +(g6 +(I0 +tp22505 +g8 +tp22506 +Rp22507 +(I1 +(I7 +tp22508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22509 +tp22510 +bsa(dp22511 +g4 +g5 +(g6 +(I0 +tp22512 +g8 +tp22513 +Rp22514 +(I1 +(I7 +tp22515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22516 +tp22517 +bsa(dp22518 +g4 +g5 +(g6 +(I0 +tp22519 +g8 +tp22520 +Rp22521 +(I1 +(I7 +tp22522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22523 +tp22524 +bsa(dp22525 +g4 +g5 +(g6 +(I0 +tp22526 +g8 +tp22527 +Rp22528 +(I1 +(I7 +tp22529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22530 +tp22531 +bsa(dp22532 +g4 +g5 +(g6 +(I0 +tp22533 +g8 +tp22534 +Rp22535 +(I1 +(I7 +tp22536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22537 +tp22538 +bsa(dp22539 +g4 +g5 +(g6 +(I0 +tp22540 +g8 +tp22541 +Rp22542 +(I1 +(I7 +tp22543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22544 +tp22545 +bsa(dp22546 +g4 +g5 +(g6 +(I0 +tp22547 +g8 +tp22548 +Rp22549 +(I1 +(I7 +tp22550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22551 +tp22552 +bsa(dp22553 +g4 +g5 +(g6 +(I0 +tp22554 +g8 +tp22555 +Rp22556 +(I1 +(I7 +tp22557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22558 +tp22559 +bsa(dp22560 +g4 +g5 +(g6 +(I0 +tp22561 +g8 +tp22562 +Rp22563 +(I1 +(I7 +tp22564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22565 +tp22566 +bsa(dp22567 +g4 +g5 +(g6 +(I0 +tp22568 +g8 +tp22569 +Rp22570 +(I1 +(I7 +tp22571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22572 +tp22573 +bsa(dp22574 +g4 +g5 +(g6 +(I0 +tp22575 +g8 +tp22576 +Rp22577 +(I1 +(I7 +tp22578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22579 +tp22580 +bsa(dp22581 +g4 +g5 +(g6 +(I0 +tp22582 +g8 +tp22583 +Rp22584 +(I1 +(I7 +tp22585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22586 +tp22587 +bsa(dp22588 +g4 +g5 +(g6 +(I0 +tp22589 +g8 +tp22590 +Rp22591 +(I1 +(I7 +tp22592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22593 +tp22594 +bsa(dp22595 +g4 +g5 +(g6 +(I0 +tp22596 +g8 +tp22597 +Rp22598 +(I1 +(I7 +tp22599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22600 +tp22601 +bsa(dp22602 +g4 +g5 +(g6 +(I0 +tp22603 +g8 +tp22604 +Rp22605 +(I1 +(I7 +tp22606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22607 +tp22608 +bsa(dp22609 +g4 +g5 +(g6 +(I0 +tp22610 +g8 +tp22611 +Rp22612 +(I1 +(I7 +tp22613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22614 +tp22615 +bsa(dp22616 +g4 +g5 +(g6 +(I0 +tp22617 +g8 +tp22618 +Rp22619 +(I1 +(I7 +tp22620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22621 +tp22622 +bsa(dp22623 +g4 +g5 +(g6 +(I0 +tp22624 +g8 +tp22625 +Rp22626 +(I1 +(I7 +tp22627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22628 +tp22629 +bsa(dp22630 +g4 +g5 +(g6 +(I0 +tp22631 +g8 +tp22632 +Rp22633 +(I1 +(I7 +tp22634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22635 +tp22636 +bsa(dp22637 +g4 +g5 +(g6 +(I0 +tp22638 +g8 +tp22639 +Rp22640 +(I1 +(I7 +tp22641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22642 +tp22643 +bsa(dp22644 +g4 +g5 +(g6 +(I0 +tp22645 +g8 +tp22646 +Rp22647 +(I1 +(I7 +tp22648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22649 +tp22650 +bsa(dp22651 +g4 +g5 +(g6 +(I0 +tp22652 +g8 +tp22653 +Rp22654 +(I1 +(I7 +tp22655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22656 +tp22657 +bsa(dp22658 +g4 +g5 +(g6 +(I0 +tp22659 +g8 +tp22660 +Rp22661 +(I1 +(I7 +tp22662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22663 +tp22664 +bsa(dp22665 +g4 +g5 +(g6 +(I0 +tp22666 +g8 +tp22667 +Rp22668 +(I1 +(I7 +tp22669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22670 +tp22671 +bsa(dp22672 +g4 +g5 +(g6 +(I0 +tp22673 +g8 +tp22674 +Rp22675 +(I1 +(I7 +tp22676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22677 +tp22678 +bsa(dp22679 +g4 +g5 +(g6 +(I0 +tp22680 +g8 +tp22681 +Rp22682 +(I1 +(I7 +tp22683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22684 +tp22685 +bsa(dp22686 +g4 +g5 +(g6 +(I0 +tp22687 +g8 +tp22688 +Rp22689 +(I1 +(I7 +tp22690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22691 +tp22692 +bsa(dp22693 +g4 +g5 +(g6 +(I0 +tp22694 +g8 +tp22695 +Rp22696 +(I1 +(I7 +tp22697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22698 +tp22699 +bsa(dp22700 +g4 +g5 +(g6 +(I0 +tp22701 +g8 +tp22702 +Rp22703 +(I1 +(I7 +tp22704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22705 +tp22706 +bsa(dp22707 +g4 +g5 +(g6 +(I0 +tp22708 +g8 +tp22709 +Rp22710 +(I1 +(I7 +tp22711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22712 +tp22713 +bsa(dp22714 +g4 +g5 +(g6 +(I0 +tp22715 +g8 +tp22716 +Rp22717 +(I1 +(I7 +tp22718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22719 +tp22720 +bsa(dp22721 +g4 +g5 +(g6 +(I0 +tp22722 +g8 +tp22723 +Rp22724 +(I1 +(I7 +tp22725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22726 +tp22727 +bsa(dp22728 +g4 +g5 +(g6 +(I0 +tp22729 +g8 +tp22730 +Rp22731 +(I1 +(I7 +tp22732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22733 +tp22734 +bsa(dp22735 +g4 +g5 +(g6 +(I0 +tp22736 +g8 +tp22737 +Rp22738 +(I1 +(I7 +tp22739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22740 +tp22741 +bsa(dp22742 +g4 +g5 +(g6 +(I0 +tp22743 +g8 +tp22744 +Rp22745 +(I1 +(I7 +tp22746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22747 +tp22748 +bsa(dp22749 +g4 +g5 +(g6 +(I0 +tp22750 +g8 +tp22751 +Rp22752 +(I1 +(I7 +tp22753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22754 +tp22755 +bsa(dp22756 +g4 +g5 +(g6 +(I0 +tp22757 +g8 +tp22758 +Rp22759 +(I1 +(I7 +tp22760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22761 +tp22762 +bsa(dp22763 +g4 +g5 +(g6 +(I0 +tp22764 +g8 +tp22765 +Rp22766 +(I1 +(I7 +tp22767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22768 +tp22769 +bsa(dp22770 +g4 +g5 +(g6 +(I0 +tp22771 +g8 +tp22772 +Rp22773 +(I1 +(I7 +tp22774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22775 +tp22776 +bsa(dp22777 +g4 +g5 +(g6 +(I0 +tp22778 +g8 +tp22779 +Rp22780 +(I1 +(I7 +tp22781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22782 +tp22783 +bsa(dp22784 +g4 +g5 +(g6 +(I0 +tp22785 +g8 +tp22786 +Rp22787 +(I1 +(I7 +tp22788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22789 +tp22790 +bsa(dp22791 +g4 +g5 +(g6 +(I0 +tp22792 +g8 +tp22793 +Rp22794 +(I1 +(I7 +tp22795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22796 +tp22797 +bsa(dp22798 +g4 +g5 +(g6 +(I0 +tp22799 +g8 +tp22800 +Rp22801 +(I1 +(I7 +tp22802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22803 +tp22804 +bsa(dp22805 +g4 +g5 +(g6 +(I0 +tp22806 +g8 +tp22807 +Rp22808 +(I1 +(I7 +tp22809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22810 +tp22811 +bsa(dp22812 +g4 +g5 +(g6 +(I0 +tp22813 +g8 +tp22814 +Rp22815 +(I1 +(I7 +tp22816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22817 +tp22818 +bsa(dp22819 +g4 +g5 +(g6 +(I0 +tp22820 +g8 +tp22821 +Rp22822 +(I1 +(I7 +tp22823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22824 +tp22825 +bsa(dp22826 +g4 +g5 +(g6 +(I0 +tp22827 +g8 +tp22828 +Rp22829 +(I1 +(I7 +tp22830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22831 +tp22832 +bsa(dp22833 +g4 +g5 +(g6 +(I0 +tp22834 +g8 +tp22835 +Rp22836 +(I1 +(I7 +tp22837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22838 +tp22839 +bsa(dp22840 +g4 +g5 +(g6 +(I0 +tp22841 +g8 +tp22842 +Rp22843 +(I1 +(I7 +tp22844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22845 +tp22846 +bsa(dp22847 +g4 +g5 +(g6 +(I0 +tp22848 +g8 +tp22849 +Rp22850 +(I1 +(I7 +tp22851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22852 +tp22853 +bsa(dp22854 +g4 +g5 +(g6 +(I0 +tp22855 +g8 +tp22856 +Rp22857 +(I1 +(I7 +tp22858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22859 +tp22860 +bsa(dp22861 +g4 +g5 +(g6 +(I0 +tp22862 +g8 +tp22863 +Rp22864 +(I1 +(I7 +tp22865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22866 +tp22867 +bsa(dp22868 +g4 +g5 +(g6 +(I0 +tp22869 +g8 +tp22870 +Rp22871 +(I1 +(I7 +tp22872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22873 +tp22874 +bsa(dp22875 +g4 +g5 +(g6 +(I0 +tp22876 +g8 +tp22877 +Rp22878 +(I1 +(I7 +tp22879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22880 +tp22881 +bsa(dp22882 +g4 +g5 +(g6 +(I0 +tp22883 +g8 +tp22884 +Rp22885 +(I1 +(I7 +tp22886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22887 +tp22888 +bsa(dp22889 +g4 +g5 +(g6 +(I0 +tp22890 +g8 +tp22891 +Rp22892 +(I1 +(I7 +tp22893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22894 +tp22895 +bsa(dp22896 +g4 +g5 +(g6 +(I0 +tp22897 +g8 +tp22898 +Rp22899 +(I1 +(I7 +tp22900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22901 +tp22902 +bsa(dp22903 +g4 +g5 +(g6 +(I0 +tp22904 +g8 +tp22905 +Rp22906 +(I1 +(I7 +tp22907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22908 +tp22909 +bsa(dp22910 +g4 +g5 +(g6 +(I0 +tp22911 +g8 +tp22912 +Rp22913 +(I1 +(I7 +tp22914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22915 +tp22916 +bsa(dp22917 +g4 +g5 +(g6 +(I0 +tp22918 +g8 +tp22919 +Rp22920 +(I1 +(I7 +tp22921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22922 +tp22923 +bsa(dp22924 +g4 +g5 +(g6 +(I0 +tp22925 +g8 +tp22926 +Rp22927 +(I1 +(I7 +tp22928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22929 +tp22930 +bsa(dp22931 +g4 +g5 +(g6 +(I0 +tp22932 +g8 +tp22933 +Rp22934 +(I1 +(I7 +tp22935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22936 +tp22937 +bsa(dp22938 +g4 +g5 +(g6 +(I0 +tp22939 +g8 +tp22940 +Rp22941 +(I1 +(I7 +tp22942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22943 +tp22944 +bsa(dp22945 +g4 +g5 +(g6 +(I0 +tp22946 +g8 +tp22947 +Rp22948 +(I1 +(I7 +tp22949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22950 +tp22951 +bsa(dp22952 +g4 +g5 +(g6 +(I0 +tp22953 +g8 +tp22954 +Rp22955 +(I1 +(I7 +tp22956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22957 +tp22958 +bsa(dp22959 +g4 +g5 +(g6 +(I0 +tp22960 +g8 +tp22961 +Rp22962 +(I1 +(I7 +tp22963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22964 +tp22965 +bsa(dp22966 +g4 +g5 +(g6 +(I0 +tp22967 +g8 +tp22968 +Rp22969 +(I1 +(I7 +tp22970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22971 +tp22972 +bsa(dp22973 +g4 +g5 +(g6 +(I0 +tp22974 +g8 +tp22975 +Rp22976 +(I1 +(I7 +tp22977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22978 +tp22979 +bsa(dp22980 +g4 +g5 +(g6 +(I0 +tp22981 +g8 +tp22982 +Rp22983 +(I1 +(I7 +tp22984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p22985 +tp22986 +bsa(dp22987 +g4 +g5 +(g6 +(I0 +tp22988 +g8 +tp22989 +Rp22990 +(I1 +(I7 +tp22991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p22992 +tp22993 +bsa(dp22994 +g4 +g5 +(g6 +(I0 +tp22995 +g8 +tp22996 +Rp22997 +(I1 +(I7 +tp22998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p22999 +tp23000 +bsa(dp23001 +g4 +g5 +(g6 +(I0 +tp23002 +g8 +tp23003 +Rp23004 +(I1 +(I7 +tp23005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23006 +tp23007 +bsa(dp23008 +g4 +g5 +(g6 +(I0 +tp23009 +g8 +tp23010 +Rp23011 +(I1 +(I7 +tp23012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23013 +tp23014 +bsa(dp23015 +g4 +g5 +(g6 +(I0 +tp23016 +g8 +tp23017 +Rp23018 +(I1 +(I7 +tp23019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23020 +tp23021 +bsa(dp23022 +g4 +g5 +(g6 +(I0 +tp23023 +g8 +tp23024 +Rp23025 +(I1 +(I7 +tp23026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23027 +tp23028 +bsa(dp23029 +g4 +g5 +(g6 +(I0 +tp23030 +g8 +tp23031 +Rp23032 +(I1 +(I7 +tp23033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23034 +tp23035 +bsa(dp23036 +g4 +g5 +(g6 +(I0 +tp23037 +g8 +tp23038 +Rp23039 +(I1 +(I7 +tp23040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23041 +tp23042 +bsa(dp23043 +g4 +g5 +(g6 +(I0 +tp23044 +g8 +tp23045 +Rp23046 +(I1 +(I7 +tp23047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23048 +tp23049 +bsa(dp23050 +g4 +g5 +(g6 +(I0 +tp23051 +g8 +tp23052 +Rp23053 +(I1 +(I7 +tp23054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23055 +tp23056 +bsa(dp23057 +g4 +g5 +(g6 +(I0 +tp23058 +g8 +tp23059 +Rp23060 +(I1 +(I7 +tp23061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23062 +tp23063 +bsa(dp23064 +g4 +g5 +(g6 +(I0 +tp23065 +g8 +tp23066 +Rp23067 +(I1 +(I7 +tp23068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23069 +tp23070 +bsa(dp23071 +g4 +g5 +(g6 +(I0 +tp23072 +g8 +tp23073 +Rp23074 +(I1 +(I7 +tp23075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23076 +tp23077 +bsa(dp23078 +g4 +g5 +(g6 +(I0 +tp23079 +g8 +tp23080 +Rp23081 +(I1 +(I7 +tp23082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23083 +tp23084 +bsa(dp23085 +g4 +g5 +(g6 +(I0 +tp23086 +g8 +tp23087 +Rp23088 +(I1 +(I7 +tp23089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23090 +tp23091 +bsa(dp23092 +g4 +g5 +(g6 +(I0 +tp23093 +g8 +tp23094 +Rp23095 +(I1 +(I7 +tp23096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23097 +tp23098 +bsa(dp23099 +g4 +g5 +(g6 +(I0 +tp23100 +g8 +tp23101 +Rp23102 +(I1 +(I7 +tp23103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23104 +tp23105 +bsa(dp23106 +g4 +g5 +(g6 +(I0 +tp23107 +g8 +tp23108 +Rp23109 +(I1 +(I7 +tp23110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23111 +tp23112 +bsa(dp23113 +g4 +g5 +(g6 +(I0 +tp23114 +g8 +tp23115 +Rp23116 +(I1 +(I7 +tp23117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23118 +tp23119 +bsa(dp23120 +g4 +g5 +(g6 +(I0 +tp23121 +g8 +tp23122 +Rp23123 +(I1 +(I7 +tp23124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23125 +tp23126 +bsa(dp23127 +g4 +g5 +(g6 +(I0 +tp23128 +g8 +tp23129 +Rp23130 +(I1 +(I7 +tp23131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23132 +tp23133 +bsa(dp23134 +g4 +g5 +(g6 +(I0 +tp23135 +g8 +tp23136 +Rp23137 +(I1 +(I7 +tp23138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23139 +tp23140 +bsa(dp23141 +g4 +g5 +(g6 +(I0 +tp23142 +g8 +tp23143 +Rp23144 +(I1 +(I7 +tp23145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23146 +tp23147 +bsa(dp23148 +g4 +g5 +(g6 +(I0 +tp23149 +g8 +tp23150 +Rp23151 +(I1 +(I7 +tp23152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23153 +tp23154 +bsa(dp23155 +g4 +g5 +(g6 +(I0 +tp23156 +g8 +tp23157 +Rp23158 +(I1 +(I7 +tp23159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23160 +tp23161 +bsa(dp23162 +g4 +g5 +(g6 +(I0 +tp23163 +g8 +tp23164 +Rp23165 +(I1 +(I7 +tp23166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23167 +tp23168 +bsa(dp23169 +g4 +g5 +(g6 +(I0 +tp23170 +g8 +tp23171 +Rp23172 +(I1 +(I7 +tp23173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23174 +tp23175 +bsa(dp23176 +g4 +g5 +(g6 +(I0 +tp23177 +g8 +tp23178 +Rp23179 +(I1 +(I7 +tp23180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23181 +tp23182 +bsa(dp23183 +g4 +g5 +(g6 +(I0 +tp23184 +g8 +tp23185 +Rp23186 +(I1 +(I7 +tp23187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23188 +tp23189 +bsa(dp23190 +g4 +g5 +(g6 +(I0 +tp23191 +g8 +tp23192 +Rp23193 +(I1 +(I7 +tp23194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23195 +tp23196 +bsa(dp23197 +g4 +g5 +(g6 +(I0 +tp23198 +g8 +tp23199 +Rp23200 +(I1 +(I7 +tp23201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23202 +tp23203 +bsa(dp23204 +g4 +g5 +(g6 +(I0 +tp23205 +g8 +tp23206 +Rp23207 +(I1 +(I7 +tp23208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23209 +tp23210 +bsa(dp23211 +g4 +g5 +(g6 +(I0 +tp23212 +g8 +tp23213 +Rp23214 +(I1 +(I7 +tp23215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23216 +tp23217 +bsa(dp23218 +g4 +g5 +(g6 +(I0 +tp23219 +g8 +tp23220 +Rp23221 +(I1 +(I7 +tp23222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23223 +tp23224 +bsa(dp23225 +g4 +g5 +(g6 +(I0 +tp23226 +g8 +tp23227 +Rp23228 +(I1 +(I7 +tp23229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23230 +tp23231 +bsa(dp23232 +g4 +g5 +(g6 +(I0 +tp23233 +g8 +tp23234 +Rp23235 +(I1 +(I7 +tp23236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23237 +tp23238 +bsa(dp23239 +g4 +g5 +(g6 +(I0 +tp23240 +g8 +tp23241 +Rp23242 +(I1 +(I7 +tp23243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23244 +tp23245 +bsa(dp23246 +g4 +g5 +(g6 +(I0 +tp23247 +g8 +tp23248 +Rp23249 +(I1 +(I7 +tp23250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23251 +tp23252 +bsa(dp23253 +g4 +g5 +(g6 +(I0 +tp23254 +g8 +tp23255 +Rp23256 +(I1 +(I7 +tp23257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23258 +tp23259 +bsa(dp23260 +g4 +g5 +(g6 +(I0 +tp23261 +g8 +tp23262 +Rp23263 +(I1 +(I7 +tp23264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23265 +tp23266 +bsa(dp23267 +g4 +g5 +(g6 +(I0 +tp23268 +g8 +tp23269 +Rp23270 +(I1 +(I7 +tp23271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23272 +tp23273 +bsa(dp23274 +g4 +g5 +(g6 +(I0 +tp23275 +g8 +tp23276 +Rp23277 +(I1 +(I7 +tp23278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23279 +tp23280 +bsa(dp23281 +g4 +g5 +(g6 +(I0 +tp23282 +g8 +tp23283 +Rp23284 +(I1 +(I7 +tp23285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23286 +tp23287 +bsa(dp23288 +g4 +g5 +(g6 +(I0 +tp23289 +g8 +tp23290 +Rp23291 +(I1 +(I7 +tp23292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23293 +tp23294 +bsa(dp23295 +g4 +g5 +(g6 +(I0 +tp23296 +g8 +tp23297 +Rp23298 +(I1 +(I7 +tp23299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23300 +tp23301 +bsa(dp23302 +g4 +g5 +(g6 +(I0 +tp23303 +g8 +tp23304 +Rp23305 +(I1 +(I7 +tp23306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23307 +tp23308 +bsa(dp23309 +g4 +g5 +(g6 +(I0 +tp23310 +g8 +tp23311 +Rp23312 +(I1 +(I7 +tp23313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23314 +tp23315 +bsa(dp23316 +g4 +g5 +(g6 +(I0 +tp23317 +g8 +tp23318 +Rp23319 +(I1 +(I7 +tp23320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23321 +tp23322 +bsa(dp23323 +g4 +g5 +(g6 +(I0 +tp23324 +g8 +tp23325 +Rp23326 +(I1 +(I7 +tp23327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23328 +tp23329 +bsa(dp23330 +g4 +g5 +(g6 +(I0 +tp23331 +g8 +tp23332 +Rp23333 +(I1 +(I7 +tp23334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23335 +tp23336 +bsa(dp23337 +g4 +g5 +(g6 +(I0 +tp23338 +g8 +tp23339 +Rp23340 +(I1 +(I7 +tp23341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23342 +tp23343 +bsa(dp23344 +g4 +g5 +(g6 +(I0 +tp23345 +g8 +tp23346 +Rp23347 +(I1 +(I7 +tp23348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23349 +tp23350 +bsa(dp23351 +g4 +g5 +(g6 +(I0 +tp23352 +g8 +tp23353 +Rp23354 +(I1 +(I7 +tp23355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23356 +tp23357 +bsa(dp23358 +g4 +g5 +(g6 +(I0 +tp23359 +g8 +tp23360 +Rp23361 +(I1 +(I7 +tp23362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23363 +tp23364 +bsa(dp23365 +g4 +g5 +(g6 +(I0 +tp23366 +g8 +tp23367 +Rp23368 +(I1 +(I7 +tp23369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23370 +tp23371 +bsa(dp23372 +g4 +g5 +(g6 +(I0 +tp23373 +g8 +tp23374 +Rp23375 +(I1 +(I7 +tp23376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23377 +tp23378 +bsa(dp23379 +g4 +g5 +(g6 +(I0 +tp23380 +g8 +tp23381 +Rp23382 +(I1 +(I7 +tp23383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23384 +tp23385 +bsa(dp23386 +g4 +g5 +(g6 +(I0 +tp23387 +g8 +tp23388 +Rp23389 +(I1 +(I7 +tp23390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23391 +tp23392 +bsa(dp23393 +g4 +g5 +(g6 +(I0 +tp23394 +g8 +tp23395 +Rp23396 +(I1 +(I7 +tp23397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23398 +tp23399 +bsa(dp23400 +g4 +g5 +(g6 +(I0 +tp23401 +g8 +tp23402 +Rp23403 +(I1 +(I7 +tp23404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23405 +tp23406 +bsa(dp23407 +g4 +g5 +(g6 +(I0 +tp23408 +g8 +tp23409 +Rp23410 +(I1 +(I7 +tp23411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23412 +tp23413 +bsa(dp23414 +g4 +g5 +(g6 +(I0 +tp23415 +g8 +tp23416 +Rp23417 +(I1 +(I7 +tp23418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23419 +tp23420 +bsa(dp23421 +g4 +g5 +(g6 +(I0 +tp23422 +g8 +tp23423 +Rp23424 +(I1 +(I7 +tp23425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23426 +tp23427 +bsa(dp23428 +g4 +g5 +(g6 +(I0 +tp23429 +g8 +tp23430 +Rp23431 +(I1 +(I7 +tp23432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23433 +tp23434 +bsa(dp23435 +g4 +g5 +(g6 +(I0 +tp23436 +g8 +tp23437 +Rp23438 +(I1 +(I7 +tp23439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23440 +tp23441 +bsa(dp23442 +g4 +g5 +(g6 +(I0 +tp23443 +g8 +tp23444 +Rp23445 +(I1 +(I7 +tp23446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23447 +tp23448 +bsa(dp23449 +g4 +g5 +(g6 +(I0 +tp23450 +g8 +tp23451 +Rp23452 +(I1 +(I7 +tp23453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23454 +tp23455 +bsa(dp23456 +g4 +g5 +(g6 +(I0 +tp23457 +g8 +tp23458 +Rp23459 +(I1 +(I7 +tp23460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23461 +tp23462 +bsa(dp23463 +g4 +g5 +(g6 +(I0 +tp23464 +g8 +tp23465 +Rp23466 +(I1 +(I7 +tp23467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23468 +tp23469 +bsa(dp23470 +g4 +g5 +(g6 +(I0 +tp23471 +g8 +tp23472 +Rp23473 +(I1 +(I7 +tp23474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23475 +tp23476 +bsa(dp23477 +g4 +g5 +(g6 +(I0 +tp23478 +g8 +tp23479 +Rp23480 +(I1 +(I7 +tp23481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23482 +tp23483 +bsa(dp23484 +g4 +g5 +(g6 +(I0 +tp23485 +g8 +tp23486 +Rp23487 +(I1 +(I7 +tp23488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23489 +tp23490 +bsa(dp23491 +g4 +g5 +(g6 +(I0 +tp23492 +g8 +tp23493 +Rp23494 +(I1 +(I7 +tp23495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23496 +tp23497 +bsa(dp23498 +g4 +g5 +(g6 +(I0 +tp23499 +g8 +tp23500 +Rp23501 +(I1 +(I7 +tp23502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23503 +tp23504 +bsa(dp23505 +g4 +g5 +(g6 +(I0 +tp23506 +g8 +tp23507 +Rp23508 +(I1 +(I7 +tp23509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23510 +tp23511 +bsa(dp23512 +g4 +g5 +(g6 +(I0 +tp23513 +g8 +tp23514 +Rp23515 +(I1 +(I7 +tp23516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23517 +tp23518 +bsa(dp23519 +g4 +g5 +(g6 +(I0 +tp23520 +g8 +tp23521 +Rp23522 +(I1 +(I7 +tp23523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23524 +tp23525 +bsa(dp23526 +g4 +g5 +(g6 +(I0 +tp23527 +g8 +tp23528 +Rp23529 +(I1 +(I7 +tp23530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23531 +tp23532 +bsa(dp23533 +g4 +g5 +(g6 +(I0 +tp23534 +g8 +tp23535 +Rp23536 +(I1 +(I7 +tp23537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23538 +tp23539 +bsa(dp23540 +g4 +g5 +(g6 +(I0 +tp23541 +g8 +tp23542 +Rp23543 +(I1 +(I7 +tp23544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23545 +tp23546 +bsa(dp23547 +g4 +g5 +(g6 +(I0 +tp23548 +g8 +tp23549 +Rp23550 +(I1 +(I7 +tp23551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23552 +tp23553 +bsa(dp23554 +g4 +g5 +(g6 +(I0 +tp23555 +g8 +tp23556 +Rp23557 +(I1 +(I7 +tp23558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23559 +tp23560 +bsa(dp23561 +g4 +g5 +(g6 +(I0 +tp23562 +g8 +tp23563 +Rp23564 +(I1 +(I7 +tp23565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23566 +tp23567 +bsa(dp23568 +g4 +g5 +(g6 +(I0 +tp23569 +g8 +tp23570 +Rp23571 +(I1 +(I7 +tp23572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23573 +tp23574 +bsa(dp23575 +g4 +g5 +(g6 +(I0 +tp23576 +g8 +tp23577 +Rp23578 +(I1 +(I7 +tp23579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23580 +tp23581 +bsa(dp23582 +g4 +g5 +(g6 +(I0 +tp23583 +g8 +tp23584 +Rp23585 +(I1 +(I7 +tp23586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23587 +tp23588 +bsa(dp23589 +g4 +g5 +(g6 +(I0 +tp23590 +g8 +tp23591 +Rp23592 +(I1 +(I7 +tp23593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23594 +tp23595 +bsa(dp23596 +g4 +g5 +(g6 +(I0 +tp23597 +g8 +tp23598 +Rp23599 +(I1 +(I7 +tp23600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23601 +tp23602 +bsa(dp23603 +g4 +g5 +(g6 +(I0 +tp23604 +g8 +tp23605 +Rp23606 +(I1 +(I7 +tp23607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23608 +tp23609 +bsa(dp23610 +g4 +g5 +(g6 +(I0 +tp23611 +g8 +tp23612 +Rp23613 +(I1 +(I7 +tp23614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23615 +tp23616 +bsa(dp23617 +g4 +g5 +(g6 +(I0 +tp23618 +g8 +tp23619 +Rp23620 +(I1 +(I7 +tp23621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23622 +tp23623 +bsa(dp23624 +g4 +g5 +(g6 +(I0 +tp23625 +g8 +tp23626 +Rp23627 +(I1 +(I7 +tp23628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23629 +tp23630 +bsa(dp23631 +g4 +g5 +(g6 +(I0 +tp23632 +g8 +tp23633 +Rp23634 +(I1 +(I7 +tp23635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23636 +tp23637 +bsa(dp23638 +g4 +g5 +(g6 +(I0 +tp23639 +g8 +tp23640 +Rp23641 +(I1 +(I7 +tp23642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23643 +tp23644 +bsa(dp23645 +g4 +g5 +(g6 +(I0 +tp23646 +g8 +tp23647 +Rp23648 +(I1 +(I7 +tp23649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23650 +tp23651 +bsa(dp23652 +g4 +g5 +(g6 +(I0 +tp23653 +g8 +tp23654 +Rp23655 +(I1 +(I7 +tp23656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23657 +tp23658 +bsa(dp23659 +g4 +g5 +(g6 +(I0 +tp23660 +g8 +tp23661 +Rp23662 +(I1 +(I7 +tp23663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23664 +tp23665 +bsa(dp23666 +g4 +g5 +(g6 +(I0 +tp23667 +g8 +tp23668 +Rp23669 +(I1 +(I7 +tp23670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23671 +tp23672 +bsa(dp23673 +g4 +g5 +(g6 +(I0 +tp23674 +g8 +tp23675 +Rp23676 +(I1 +(I7 +tp23677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23678 +tp23679 +bsa(dp23680 +g4 +g5 +(g6 +(I0 +tp23681 +g8 +tp23682 +Rp23683 +(I1 +(I7 +tp23684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23685 +tp23686 +bsa(dp23687 +g4 +g5 +(g6 +(I0 +tp23688 +g8 +tp23689 +Rp23690 +(I1 +(I7 +tp23691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23692 +tp23693 +bsa(dp23694 +g4 +g5 +(g6 +(I0 +tp23695 +g8 +tp23696 +Rp23697 +(I1 +(I7 +tp23698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23699 +tp23700 +bsa(dp23701 +g4 +g5 +(g6 +(I0 +tp23702 +g8 +tp23703 +Rp23704 +(I1 +(I7 +tp23705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23706 +tp23707 +bsa(dp23708 +g4 +g5 +(g6 +(I0 +tp23709 +g8 +tp23710 +Rp23711 +(I1 +(I7 +tp23712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23713 +tp23714 +bsa(dp23715 +g4 +g5 +(g6 +(I0 +tp23716 +g8 +tp23717 +Rp23718 +(I1 +(I7 +tp23719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23720 +tp23721 +bsa(dp23722 +g4 +g5 +(g6 +(I0 +tp23723 +g8 +tp23724 +Rp23725 +(I1 +(I7 +tp23726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23727 +tp23728 +bsa(dp23729 +g4 +g5 +(g6 +(I0 +tp23730 +g8 +tp23731 +Rp23732 +(I1 +(I7 +tp23733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23734 +tp23735 +bsa(dp23736 +g4 +g5 +(g6 +(I0 +tp23737 +g8 +tp23738 +Rp23739 +(I1 +(I7 +tp23740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23741 +tp23742 +bsa(dp23743 +g4 +g5 +(g6 +(I0 +tp23744 +g8 +tp23745 +Rp23746 +(I1 +(I7 +tp23747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23748 +tp23749 +bsa(dp23750 +g4 +g5 +(g6 +(I0 +tp23751 +g8 +tp23752 +Rp23753 +(I1 +(I7 +tp23754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23755 +tp23756 +bsa(dp23757 +g4 +g5 +(g6 +(I0 +tp23758 +g8 +tp23759 +Rp23760 +(I1 +(I7 +tp23761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23762 +tp23763 +bsa(dp23764 +g4 +g5 +(g6 +(I0 +tp23765 +g8 +tp23766 +Rp23767 +(I1 +(I7 +tp23768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23769 +tp23770 +bsa(dp23771 +g4 +g5 +(g6 +(I0 +tp23772 +g8 +tp23773 +Rp23774 +(I1 +(I7 +tp23775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23776 +tp23777 +bsa(dp23778 +g4 +g5 +(g6 +(I0 +tp23779 +g8 +tp23780 +Rp23781 +(I1 +(I7 +tp23782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23783 +tp23784 +bsa(dp23785 +g4 +g5 +(g6 +(I0 +tp23786 +g8 +tp23787 +Rp23788 +(I1 +(I7 +tp23789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23790 +tp23791 +bsa(dp23792 +g4 +g5 +(g6 +(I0 +tp23793 +g8 +tp23794 +Rp23795 +(I1 +(I7 +tp23796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23797 +tp23798 +bsa(dp23799 +g4 +g5 +(g6 +(I0 +tp23800 +g8 +tp23801 +Rp23802 +(I1 +(I7 +tp23803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23804 +tp23805 +bsa(dp23806 +g4 +g5 +(g6 +(I0 +tp23807 +g8 +tp23808 +Rp23809 +(I1 +(I7 +tp23810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23811 +tp23812 +bsa(dp23813 +g4 +g5 +(g6 +(I0 +tp23814 +g8 +tp23815 +Rp23816 +(I1 +(I7 +tp23817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23818 +tp23819 +bsa(dp23820 +g4 +g5 +(g6 +(I0 +tp23821 +g8 +tp23822 +Rp23823 +(I1 +(I7 +tp23824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23825 +tp23826 +bsa(dp23827 +g4 +g5 +(g6 +(I0 +tp23828 +g8 +tp23829 +Rp23830 +(I1 +(I7 +tp23831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23832 +tp23833 +bsa(dp23834 +g4 +g5 +(g6 +(I0 +tp23835 +g8 +tp23836 +Rp23837 +(I1 +(I7 +tp23838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23839 +tp23840 +bsa(dp23841 +g4 +g5 +(g6 +(I0 +tp23842 +g8 +tp23843 +Rp23844 +(I1 +(I7 +tp23845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23846 +tp23847 +bsa(dp23848 +g4 +g5 +(g6 +(I0 +tp23849 +g8 +tp23850 +Rp23851 +(I1 +(I7 +tp23852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23853 +tp23854 +bsa(dp23855 +g4 +g5 +(g6 +(I0 +tp23856 +g8 +tp23857 +Rp23858 +(I1 +(I7 +tp23859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23860 +tp23861 +bsa(dp23862 +g4 +g5 +(g6 +(I0 +tp23863 +g8 +tp23864 +Rp23865 +(I1 +(I7 +tp23866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23867 +tp23868 +bsa(dp23869 +g4 +g5 +(g6 +(I0 +tp23870 +g8 +tp23871 +Rp23872 +(I1 +(I7 +tp23873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23874 +tp23875 +bsa(dp23876 +g4 +g5 +(g6 +(I0 +tp23877 +g8 +tp23878 +Rp23879 +(I1 +(I7 +tp23880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23881 +tp23882 +bsa(dp23883 +g4 +g5 +(g6 +(I0 +tp23884 +g8 +tp23885 +Rp23886 +(I1 +(I7 +tp23887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23888 +tp23889 +bsa(dp23890 +g4 +g5 +(g6 +(I0 +tp23891 +g8 +tp23892 +Rp23893 +(I1 +(I7 +tp23894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23895 +tp23896 +bsa(dp23897 +g4 +g5 +(g6 +(I0 +tp23898 +g8 +tp23899 +Rp23900 +(I1 +(I7 +tp23901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23902 +tp23903 +bsa(dp23904 +g4 +g5 +(g6 +(I0 +tp23905 +g8 +tp23906 +Rp23907 +(I1 +(I7 +tp23908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23909 +tp23910 +bsa(dp23911 +g4 +g5 +(g6 +(I0 +tp23912 +g8 +tp23913 +Rp23914 +(I1 +(I7 +tp23915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23916 +tp23917 +bsa(dp23918 +g4 +g5 +(g6 +(I0 +tp23919 +g8 +tp23920 +Rp23921 +(I1 +(I7 +tp23922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23923 +tp23924 +bsa(dp23925 +g4 +g5 +(g6 +(I0 +tp23926 +g8 +tp23927 +Rp23928 +(I1 +(I7 +tp23929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23930 +tp23931 +bsa(dp23932 +g4 +g5 +(g6 +(I0 +tp23933 +g8 +tp23934 +Rp23935 +(I1 +(I7 +tp23936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23937 +tp23938 +bsa(dp23939 +g4 +g5 +(g6 +(I0 +tp23940 +g8 +tp23941 +Rp23942 +(I1 +(I7 +tp23943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23944 +tp23945 +bsa(dp23946 +g4 +g5 +(g6 +(I0 +tp23947 +g8 +tp23948 +Rp23949 +(I1 +(I7 +tp23950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23951 +tp23952 +bsa(dp23953 +g4 +g5 +(g6 +(I0 +tp23954 +g8 +tp23955 +Rp23956 +(I1 +(I7 +tp23957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p23958 +tp23959 +bsa(dp23960 +g4 +g5 +(g6 +(I0 +tp23961 +g8 +tp23962 +Rp23963 +(I1 +(I7 +tp23964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p23965 +tp23966 +bsa(dp23967 +g4 +g5 +(g6 +(I0 +tp23968 +g8 +tp23969 +Rp23970 +(I1 +(I7 +tp23971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23972 +tp23973 +bsa(dp23974 +g4 +g5 +(g6 +(I0 +tp23975 +g8 +tp23976 +Rp23977 +(I1 +(I7 +tp23978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23979 +tp23980 +bsa(dp23981 +g4 +g5 +(g6 +(I0 +tp23982 +g8 +tp23983 +Rp23984 +(I1 +(I7 +tp23985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23986 +tp23987 +bsa(dp23988 +g4 +g5 +(g6 +(I0 +tp23989 +g8 +tp23990 +Rp23991 +(I1 +(I7 +tp23992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p23993 +tp23994 +bsa(dp23995 +g4 +g5 +(g6 +(I0 +tp23996 +g8 +tp23997 +Rp23998 +(I1 +(I7 +tp23999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24000 +tp24001 +bsa(dp24002 +g4 +g5 +(g6 +(I0 +tp24003 +g8 +tp24004 +Rp24005 +(I1 +(I7 +tp24006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24007 +tp24008 +bsa(dp24009 +g4 +g5 +(g6 +(I0 +tp24010 +g8 +tp24011 +Rp24012 +(I1 +(I7 +tp24013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24014 +tp24015 +bsa(dp24016 +g4 +g5 +(g6 +(I0 +tp24017 +g8 +tp24018 +Rp24019 +(I1 +(I7 +tp24020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24021 +tp24022 +bsa(dp24023 +g4 +g5 +(g6 +(I0 +tp24024 +g8 +tp24025 +Rp24026 +(I1 +(I7 +tp24027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24028 +tp24029 +bsa(dp24030 +g4 +g5 +(g6 +(I0 +tp24031 +g8 +tp24032 +Rp24033 +(I1 +(I7 +tp24034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24035 +tp24036 +bsa(dp24037 +g4 +g5 +(g6 +(I0 +tp24038 +g8 +tp24039 +Rp24040 +(I1 +(I7 +tp24041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24042 +tp24043 +bsa(dp24044 +g4 +g5 +(g6 +(I0 +tp24045 +g8 +tp24046 +Rp24047 +(I1 +(I7 +tp24048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24049 +tp24050 +bsa(dp24051 +g4 +g5 +(g6 +(I0 +tp24052 +g8 +tp24053 +Rp24054 +(I1 +(I7 +tp24055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24056 +tp24057 +bsa(dp24058 +g4 +g5 +(g6 +(I0 +tp24059 +g8 +tp24060 +Rp24061 +(I1 +(I7 +tp24062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24063 +tp24064 +bsa(dp24065 +g4 +g5 +(g6 +(I0 +tp24066 +g8 +tp24067 +Rp24068 +(I1 +(I7 +tp24069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24070 +tp24071 +bsa(dp24072 +g4 +g5 +(g6 +(I0 +tp24073 +g8 +tp24074 +Rp24075 +(I1 +(I7 +tp24076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24077 +tp24078 +bsa(dp24079 +g4 +g5 +(g6 +(I0 +tp24080 +g8 +tp24081 +Rp24082 +(I1 +(I7 +tp24083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24084 +tp24085 +bsa(dp24086 +g4 +g5 +(g6 +(I0 +tp24087 +g8 +tp24088 +Rp24089 +(I1 +(I7 +tp24090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24091 +tp24092 +bsa(dp24093 +g4 +g5 +(g6 +(I0 +tp24094 +g8 +tp24095 +Rp24096 +(I1 +(I7 +tp24097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24098 +tp24099 +bsa(dp24100 +g4 +g5 +(g6 +(I0 +tp24101 +g8 +tp24102 +Rp24103 +(I1 +(I7 +tp24104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24105 +tp24106 +bsa(dp24107 +g4 +g5 +(g6 +(I0 +tp24108 +g8 +tp24109 +Rp24110 +(I1 +(I7 +tp24111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24112 +tp24113 +bsa(dp24114 +g4 +g5 +(g6 +(I0 +tp24115 +g8 +tp24116 +Rp24117 +(I1 +(I7 +tp24118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24119 +tp24120 +bsa(dp24121 +g4 +g5 +(g6 +(I0 +tp24122 +g8 +tp24123 +Rp24124 +(I1 +(I7 +tp24125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24126 +tp24127 +bsa(dp24128 +g4 +g5 +(g6 +(I0 +tp24129 +g8 +tp24130 +Rp24131 +(I1 +(I7 +tp24132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24133 +tp24134 +bsa(dp24135 +g4 +g5 +(g6 +(I0 +tp24136 +g8 +tp24137 +Rp24138 +(I1 +(I7 +tp24139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24140 +tp24141 +bsa(dp24142 +g4 +g5 +(g6 +(I0 +tp24143 +g8 +tp24144 +Rp24145 +(I1 +(I7 +tp24146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24147 +tp24148 +bsa(dp24149 +g4 +g5 +(g6 +(I0 +tp24150 +g8 +tp24151 +Rp24152 +(I1 +(I7 +tp24153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24154 +tp24155 +bsa(dp24156 +g4 +g5 +(g6 +(I0 +tp24157 +g8 +tp24158 +Rp24159 +(I1 +(I7 +tp24160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24161 +tp24162 +bsa(dp24163 +g4 +g5 +(g6 +(I0 +tp24164 +g8 +tp24165 +Rp24166 +(I1 +(I7 +tp24167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24168 +tp24169 +bsa(dp24170 +g4 +g5 +(g6 +(I0 +tp24171 +g8 +tp24172 +Rp24173 +(I1 +(I7 +tp24174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24175 +tp24176 +bsa(dp24177 +g4 +g5 +(g6 +(I0 +tp24178 +g8 +tp24179 +Rp24180 +(I1 +(I7 +tp24181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24182 +tp24183 +bsa(dp24184 +g4 +g5 +(g6 +(I0 +tp24185 +g8 +tp24186 +Rp24187 +(I1 +(I7 +tp24188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24189 +tp24190 +bsa(dp24191 +g4 +g5 +(g6 +(I0 +tp24192 +g8 +tp24193 +Rp24194 +(I1 +(I7 +tp24195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24196 +tp24197 +bsa(dp24198 +g4 +g5 +(g6 +(I0 +tp24199 +g8 +tp24200 +Rp24201 +(I1 +(I7 +tp24202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24203 +tp24204 +bsa(dp24205 +g4 +g5 +(g6 +(I0 +tp24206 +g8 +tp24207 +Rp24208 +(I1 +(I7 +tp24209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24210 +tp24211 +bsa(dp24212 +g4 +g5 +(g6 +(I0 +tp24213 +g8 +tp24214 +Rp24215 +(I1 +(I7 +tp24216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24217 +tp24218 +bsa(dp24219 +g4 +g5 +(g6 +(I0 +tp24220 +g8 +tp24221 +Rp24222 +(I1 +(I7 +tp24223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24224 +tp24225 +bsa(dp24226 +g4 +g5 +(g6 +(I0 +tp24227 +g8 +tp24228 +Rp24229 +(I1 +(I7 +tp24230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24231 +tp24232 +bsa(dp24233 +g4 +g5 +(g6 +(I0 +tp24234 +g8 +tp24235 +Rp24236 +(I1 +(I7 +tp24237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24238 +tp24239 +bsa(dp24240 +g4 +g5 +(g6 +(I0 +tp24241 +g8 +tp24242 +Rp24243 +(I1 +(I7 +tp24244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24245 +tp24246 +bsa(dp24247 +g4 +g5 +(g6 +(I0 +tp24248 +g8 +tp24249 +Rp24250 +(I1 +(I7 +tp24251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24252 +tp24253 +bsa(dp24254 +g4 +g5 +(g6 +(I0 +tp24255 +g8 +tp24256 +Rp24257 +(I1 +(I7 +tp24258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24259 +tp24260 +bsa(dp24261 +g4 +g5 +(g6 +(I0 +tp24262 +g8 +tp24263 +Rp24264 +(I1 +(I7 +tp24265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24266 +tp24267 +bsa(dp24268 +g4 +g5 +(g6 +(I0 +tp24269 +g8 +tp24270 +Rp24271 +(I1 +(I7 +tp24272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24273 +tp24274 +bsa(dp24275 +g4 +g5 +(g6 +(I0 +tp24276 +g8 +tp24277 +Rp24278 +(I1 +(I7 +tp24279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24280 +tp24281 +bsa(dp24282 +g4 +g5 +(g6 +(I0 +tp24283 +g8 +tp24284 +Rp24285 +(I1 +(I7 +tp24286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24287 +tp24288 +bsa(dp24289 +g4 +g5 +(g6 +(I0 +tp24290 +g8 +tp24291 +Rp24292 +(I1 +(I7 +tp24293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24294 +tp24295 +bsa(dp24296 +g4 +g5 +(g6 +(I0 +tp24297 +g8 +tp24298 +Rp24299 +(I1 +(I7 +tp24300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24301 +tp24302 +bsa(dp24303 +g4 +g5 +(g6 +(I0 +tp24304 +g8 +tp24305 +Rp24306 +(I1 +(I7 +tp24307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24308 +tp24309 +bsa(dp24310 +g4 +g5 +(g6 +(I0 +tp24311 +g8 +tp24312 +Rp24313 +(I1 +(I7 +tp24314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24315 +tp24316 +bsa(dp24317 +g4 +g5 +(g6 +(I0 +tp24318 +g8 +tp24319 +Rp24320 +(I1 +(I7 +tp24321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24322 +tp24323 +bsa(dp24324 +g4 +g5 +(g6 +(I0 +tp24325 +g8 +tp24326 +Rp24327 +(I1 +(I7 +tp24328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24329 +tp24330 +bsa(dp24331 +g4 +g5 +(g6 +(I0 +tp24332 +g8 +tp24333 +Rp24334 +(I1 +(I7 +tp24335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24336 +tp24337 +bsa(dp24338 +g4 +g5 +(g6 +(I0 +tp24339 +g8 +tp24340 +Rp24341 +(I1 +(I7 +tp24342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24343 +tp24344 +bsa(dp24345 +g4 +g5 +(g6 +(I0 +tp24346 +g8 +tp24347 +Rp24348 +(I1 +(I7 +tp24349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24350 +tp24351 +bsa(dp24352 +g4 +g5 +(g6 +(I0 +tp24353 +g8 +tp24354 +Rp24355 +(I1 +(I7 +tp24356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24357 +tp24358 +bsa(dp24359 +g4 +g5 +(g6 +(I0 +tp24360 +g8 +tp24361 +Rp24362 +(I1 +(I7 +tp24363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24364 +tp24365 +bsa(dp24366 +g4 +g5 +(g6 +(I0 +tp24367 +g8 +tp24368 +Rp24369 +(I1 +(I7 +tp24370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24371 +tp24372 +bsa(dp24373 +g4 +g5 +(g6 +(I0 +tp24374 +g8 +tp24375 +Rp24376 +(I1 +(I7 +tp24377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24378 +tp24379 +bsa(dp24380 +g4 +g5 +(g6 +(I0 +tp24381 +g8 +tp24382 +Rp24383 +(I1 +(I7 +tp24384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24385 +tp24386 +bsa(dp24387 +g4 +g5 +(g6 +(I0 +tp24388 +g8 +tp24389 +Rp24390 +(I1 +(I7 +tp24391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24392 +tp24393 +bsa(dp24394 +g4 +g5 +(g6 +(I0 +tp24395 +g8 +tp24396 +Rp24397 +(I1 +(I7 +tp24398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24399 +tp24400 +bsa(dp24401 +g4 +g5 +(g6 +(I0 +tp24402 +g8 +tp24403 +Rp24404 +(I1 +(I7 +tp24405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24406 +tp24407 +bsa(dp24408 +g4 +g5 +(g6 +(I0 +tp24409 +g8 +tp24410 +Rp24411 +(I1 +(I7 +tp24412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24413 +tp24414 +bsa(dp24415 +g4 +g5 +(g6 +(I0 +tp24416 +g8 +tp24417 +Rp24418 +(I1 +(I7 +tp24419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24420 +tp24421 +bsa(dp24422 +g4 +g5 +(g6 +(I0 +tp24423 +g8 +tp24424 +Rp24425 +(I1 +(I7 +tp24426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24427 +tp24428 +bsa(dp24429 +g4 +g5 +(g6 +(I0 +tp24430 +g8 +tp24431 +Rp24432 +(I1 +(I7 +tp24433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24434 +tp24435 +bsa(dp24436 +g4 +g5 +(g6 +(I0 +tp24437 +g8 +tp24438 +Rp24439 +(I1 +(I7 +tp24440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24441 +tp24442 +bsa(dp24443 +g4 +g5 +(g6 +(I0 +tp24444 +g8 +tp24445 +Rp24446 +(I1 +(I7 +tp24447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24448 +tp24449 +bsa(dp24450 +g4 +g5 +(g6 +(I0 +tp24451 +g8 +tp24452 +Rp24453 +(I1 +(I7 +tp24454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24455 +tp24456 +bsa(dp24457 +g4 +g5 +(g6 +(I0 +tp24458 +g8 +tp24459 +Rp24460 +(I1 +(I7 +tp24461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24462 +tp24463 +bsa(dp24464 +g4 +g5 +(g6 +(I0 +tp24465 +g8 +tp24466 +Rp24467 +(I1 +(I7 +tp24468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24469 +tp24470 +bsa(dp24471 +g4 +g5 +(g6 +(I0 +tp24472 +g8 +tp24473 +Rp24474 +(I1 +(I7 +tp24475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24476 +tp24477 +bsa(dp24478 +g4 +g5 +(g6 +(I0 +tp24479 +g8 +tp24480 +Rp24481 +(I1 +(I7 +tp24482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24483 +tp24484 +bsa(dp24485 +g4 +g5 +(g6 +(I0 +tp24486 +g8 +tp24487 +Rp24488 +(I1 +(I7 +tp24489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24490 +tp24491 +bsa(dp24492 +g4 +g5 +(g6 +(I0 +tp24493 +g8 +tp24494 +Rp24495 +(I1 +(I7 +tp24496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24497 +tp24498 +bsa(dp24499 +g4 +g5 +(g6 +(I0 +tp24500 +g8 +tp24501 +Rp24502 +(I1 +(I7 +tp24503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24504 +tp24505 +bsa(dp24506 +g4 +g5 +(g6 +(I0 +tp24507 +g8 +tp24508 +Rp24509 +(I1 +(I7 +tp24510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24511 +tp24512 +bsa(dp24513 +g4 +g5 +(g6 +(I0 +tp24514 +g8 +tp24515 +Rp24516 +(I1 +(I7 +tp24517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24518 +tp24519 +bsa(dp24520 +g4 +g5 +(g6 +(I0 +tp24521 +g8 +tp24522 +Rp24523 +(I1 +(I7 +tp24524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24525 +tp24526 +bsa(dp24527 +g4 +g5 +(g6 +(I0 +tp24528 +g8 +tp24529 +Rp24530 +(I1 +(I7 +tp24531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24532 +tp24533 +bsa(dp24534 +g4 +g5 +(g6 +(I0 +tp24535 +g8 +tp24536 +Rp24537 +(I1 +(I7 +tp24538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24539 +tp24540 +bsa(dp24541 +g4 +g5 +(g6 +(I0 +tp24542 +g8 +tp24543 +Rp24544 +(I1 +(I7 +tp24545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24546 +tp24547 +bsa(dp24548 +g4 +g5 +(g6 +(I0 +tp24549 +g8 +tp24550 +Rp24551 +(I1 +(I7 +tp24552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24553 +tp24554 +bsa(dp24555 +g4 +g5 +(g6 +(I0 +tp24556 +g8 +tp24557 +Rp24558 +(I1 +(I7 +tp24559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24560 +tp24561 +bsa(dp24562 +g4 +g5 +(g6 +(I0 +tp24563 +g8 +tp24564 +Rp24565 +(I1 +(I7 +tp24566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24567 +tp24568 +bsa(dp24569 +g4 +g5 +(g6 +(I0 +tp24570 +g8 +tp24571 +Rp24572 +(I1 +(I7 +tp24573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24574 +tp24575 +bsa(dp24576 +g4 +g5 +(g6 +(I0 +tp24577 +g8 +tp24578 +Rp24579 +(I1 +(I7 +tp24580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24581 +tp24582 +bsa(dp24583 +g4 +g5 +(g6 +(I0 +tp24584 +g8 +tp24585 +Rp24586 +(I1 +(I7 +tp24587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24588 +tp24589 +bsa(dp24590 +g4 +g5 +(g6 +(I0 +tp24591 +g8 +tp24592 +Rp24593 +(I1 +(I7 +tp24594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24595 +tp24596 +bsa(dp24597 +g4 +g5 +(g6 +(I0 +tp24598 +g8 +tp24599 +Rp24600 +(I1 +(I7 +tp24601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24602 +tp24603 +bsa(dp24604 +g4 +g5 +(g6 +(I0 +tp24605 +g8 +tp24606 +Rp24607 +(I1 +(I7 +tp24608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24609 +tp24610 +bsa(dp24611 +g4 +g5 +(g6 +(I0 +tp24612 +g8 +tp24613 +Rp24614 +(I1 +(I7 +tp24615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24616 +tp24617 +bsa(dp24618 +g4 +g5 +(g6 +(I0 +tp24619 +g8 +tp24620 +Rp24621 +(I1 +(I7 +tp24622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24623 +tp24624 +bsa(dp24625 +g4 +g5 +(g6 +(I0 +tp24626 +g8 +tp24627 +Rp24628 +(I1 +(I7 +tp24629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24630 +tp24631 +bsa(dp24632 +g4 +g5 +(g6 +(I0 +tp24633 +g8 +tp24634 +Rp24635 +(I1 +(I7 +tp24636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24637 +tp24638 +bsa(dp24639 +g4 +g5 +(g6 +(I0 +tp24640 +g8 +tp24641 +Rp24642 +(I1 +(I7 +tp24643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24644 +tp24645 +bsa(dp24646 +g4 +g5 +(g6 +(I0 +tp24647 +g8 +tp24648 +Rp24649 +(I1 +(I7 +tp24650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24651 +tp24652 +bsa(dp24653 +g4 +g5 +(g6 +(I0 +tp24654 +g8 +tp24655 +Rp24656 +(I1 +(I7 +tp24657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24658 +tp24659 +bsa(dp24660 +g4 +g5 +(g6 +(I0 +tp24661 +g8 +tp24662 +Rp24663 +(I1 +(I7 +tp24664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24665 +tp24666 +bsa(dp24667 +g4 +g5 +(g6 +(I0 +tp24668 +g8 +tp24669 +Rp24670 +(I1 +(I7 +tp24671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24672 +tp24673 +bsa(dp24674 +g4 +g5 +(g6 +(I0 +tp24675 +g8 +tp24676 +Rp24677 +(I1 +(I7 +tp24678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24679 +tp24680 +bsa(dp24681 +g4 +g5 +(g6 +(I0 +tp24682 +g8 +tp24683 +Rp24684 +(I1 +(I7 +tp24685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24686 +tp24687 +bsa(dp24688 +g4 +g5 +(g6 +(I0 +tp24689 +g8 +tp24690 +Rp24691 +(I1 +(I7 +tp24692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24693 +tp24694 +bsa(dp24695 +g4 +g5 +(g6 +(I0 +tp24696 +g8 +tp24697 +Rp24698 +(I1 +(I7 +tp24699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24700 +tp24701 +bsa(dp24702 +g4 +g5 +(g6 +(I0 +tp24703 +g8 +tp24704 +Rp24705 +(I1 +(I7 +tp24706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24707 +tp24708 +bsa(dp24709 +g4 +g5 +(g6 +(I0 +tp24710 +g8 +tp24711 +Rp24712 +(I1 +(I7 +tp24713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24714 +tp24715 +bsa(dp24716 +g4 +g5 +(g6 +(I0 +tp24717 +g8 +tp24718 +Rp24719 +(I1 +(I7 +tp24720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24721 +tp24722 +bsa(dp24723 +g4 +g5 +(g6 +(I0 +tp24724 +g8 +tp24725 +Rp24726 +(I1 +(I7 +tp24727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24728 +tp24729 +bsa(dp24730 +g4 +g5 +(g6 +(I0 +tp24731 +g8 +tp24732 +Rp24733 +(I1 +(I7 +tp24734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24735 +tp24736 +bsa(dp24737 +g4 +g5 +(g6 +(I0 +tp24738 +g8 +tp24739 +Rp24740 +(I1 +(I7 +tp24741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24742 +tp24743 +bsa(dp24744 +g4 +g5 +(g6 +(I0 +tp24745 +g8 +tp24746 +Rp24747 +(I1 +(I7 +tp24748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24749 +tp24750 +bsa(dp24751 +g4 +g5 +(g6 +(I0 +tp24752 +g8 +tp24753 +Rp24754 +(I1 +(I7 +tp24755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24756 +tp24757 +bsa(dp24758 +g4 +g5 +(g6 +(I0 +tp24759 +g8 +tp24760 +Rp24761 +(I1 +(I7 +tp24762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24763 +tp24764 +bsa(dp24765 +g4 +g5 +(g6 +(I0 +tp24766 +g8 +tp24767 +Rp24768 +(I1 +(I7 +tp24769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24770 +tp24771 +bsa(dp24772 +g4 +g5 +(g6 +(I0 +tp24773 +g8 +tp24774 +Rp24775 +(I1 +(I7 +tp24776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24777 +tp24778 +bsa(dp24779 +g4 +g5 +(g6 +(I0 +tp24780 +g8 +tp24781 +Rp24782 +(I1 +(I7 +tp24783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24784 +tp24785 +bsa(dp24786 +g4 +g5 +(g6 +(I0 +tp24787 +g8 +tp24788 +Rp24789 +(I1 +(I7 +tp24790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24791 +tp24792 +bsa(dp24793 +g4 +g5 +(g6 +(I0 +tp24794 +g8 +tp24795 +Rp24796 +(I1 +(I7 +tp24797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24798 +tp24799 +bsa(dp24800 +g4 +g5 +(g6 +(I0 +tp24801 +g8 +tp24802 +Rp24803 +(I1 +(I7 +tp24804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24805 +tp24806 +bsa(dp24807 +g4 +g5 +(g6 +(I0 +tp24808 +g8 +tp24809 +Rp24810 +(I1 +(I7 +tp24811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24812 +tp24813 +bsa(dp24814 +g4 +g5 +(g6 +(I0 +tp24815 +g8 +tp24816 +Rp24817 +(I1 +(I7 +tp24818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24819 +tp24820 +bsa(dp24821 +g4 +g5 +(g6 +(I0 +tp24822 +g8 +tp24823 +Rp24824 +(I1 +(I7 +tp24825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24826 +tp24827 +bsa(dp24828 +g4 +g5 +(g6 +(I0 +tp24829 +g8 +tp24830 +Rp24831 +(I1 +(I7 +tp24832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24833 +tp24834 +bsa(dp24835 +g4 +g5 +(g6 +(I0 +tp24836 +g8 +tp24837 +Rp24838 +(I1 +(I7 +tp24839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24840 +tp24841 +bsa(dp24842 +g4 +g5 +(g6 +(I0 +tp24843 +g8 +tp24844 +Rp24845 +(I1 +(I7 +tp24846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24847 +tp24848 +bsa(dp24849 +g4 +g5 +(g6 +(I0 +tp24850 +g8 +tp24851 +Rp24852 +(I1 +(I7 +tp24853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24854 +tp24855 +bsa(dp24856 +g4 +g5 +(g6 +(I0 +tp24857 +g8 +tp24858 +Rp24859 +(I1 +(I7 +tp24860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24861 +tp24862 +bsa(dp24863 +g4 +g5 +(g6 +(I0 +tp24864 +g8 +tp24865 +Rp24866 +(I1 +(I7 +tp24867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24868 +tp24869 +bsa(dp24870 +g4 +g5 +(g6 +(I0 +tp24871 +g8 +tp24872 +Rp24873 +(I1 +(I7 +tp24874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24875 +tp24876 +bsa(dp24877 +g4 +g5 +(g6 +(I0 +tp24878 +g8 +tp24879 +Rp24880 +(I1 +(I7 +tp24881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24882 +tp24883 +bsa(dp24884 +g4 +g5 +(g6 +(I0 +tp24885 +g8 +tp24886 +Rp24887 +(I1 +(I7 +tp24888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24889 +tp24890 +bsa(dp24891 +g4 +g5 +(g6 +(I0 +tp24892 +g8 +tp24893 +Rp24894 +(I1 +(I7 +tp24895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24896 +tp24897 +bsa(dp24898 +g4 +g5 +(g6 +(I0 +tp24899 +g8 +tp24900 +Rp24901 +(I1 +(I7 +tp24902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24903 +tp24904 +bsa(dp24905 +g4 +g5 +(g6 +(I0 +tp24906 +g8 +tp24907 +Rp24908 +(I1 +(I7 +tp24909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24910 +tp24911 +bsa(dp24912 +g4 +g5 +(g6 +(I0 +tp24913 +g8 +tp24914 +Rp24915 +(I1 +(I7 +tp24916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24917 +tp24918 +bsa(dp24919 +g4 +g5 +(g6 +(I0 +tp24920 +g8 +tp24921 +Rp24922 +(I1 +(I7 +tp24923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24924 +tp24925 +bsa(dp24926 +g4 +g5 +(g6 +(I0 +tp24927 +g8 +tp24928 +Rp24929 +(I1 +(I7 +tp24930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24931 +tp24932 +bsa(dp24933 +g4 +g5 +(g6 +(I0 +tp24934 +g8 +tp24935 +Rp24936 +(I1 +(I7 +tp24937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24938 +tp24939 +bsa(dp24940 +g4 +g5 +(g6 +(I0 +tp24941 +g8 +tp24942 +Rp24943 +(I1 +(I7 +tp24944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24945 +tp24946 +bsa(dp24947 +g4 +g5 +(g6 +(I0 +tp24948 +g8 +tp24949 +Rp24950 +(I1 +(I7 +tp24951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p24952 +tp24953 +bsa(dp24954 +g4 +g5 +(g6 +(I0 +tp24955 +g8 +tp24956 +Rp24957 +(I1 +(I7 +tp24958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p24959 +tp24960 +bsa(dp24961 +g4 +g5 +(g6 +(I0 +tp24962 +g8 +tp24963 +Rp24964 +(I1 +(I7 +tp24965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24966 +tp24967 +bsa(dp24968 +g4 +g5 +(g6 +(I0 +tp24969 +g8 +tp24970 +Rp24971 +(I1 +(I7 +tp24972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24973 +tp24974 +bsa(dp24975 +g4 +g5 +(g6 +(I0 +tp24976 +g8 +tp24977 +Rp24978 +(I1 +(I7 +tp24979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24980 +tp24981 +bsa(dp24982 +g4 +g5 +(g6 +(I0 +tp24983 +g8 +tp24984 +Rp24985 +(I1 +(I7 +tp24986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24987 +tp24988 +bsa(dp24989 +g4 +g5 +(g6 +(I0 +tp24990 +g8 +tp24991 +Rp24992 +(I1 +(I7 +tp24993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p24994 +tp24995 +bsa(dp24996 +g4 +g5 +(g6 +(I0 +tp24997 +g8 +tp24998 +Rp24999 +(I1 +(I7 +tp25000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25001 +tp25002 +bsa(dp25003 +g4 +g5 +(g6 +(I0 +tp25004 +g8 +tp25005 +Rp25006 +(I1 +(I7 +tp25007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25008 +tp25009 +bsa(dp25010 +g4 +g5 +(g6 +(I0 +tp25011 +g8 +tp25012 +Rp25013 +(I1 +(I7 +tp25014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25015 +tp25016 +bsa(dp25017 +g4 +g5 +(g6 +(I0 +tp25018 +g8 +tp25019 +Rp25020 +(I1 +(I7 +tp25021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25022 +tp25023 +bsa(dp25024 +g4 +g5 +(g6 +(I0 +tp25025 +g8 +tp25026 +Rp25027 +(I1 +(I7 +tp25028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25029 +tp25030 +bsa(dp25031 +g4 +g5 +(g6 +(I0 +tp25032 +g8 +tp25033 +Rp25034 +(I1 +(I7 +tp25035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25036 +tp25037 +bsa(dp25038 +g4 +g5 +(g6 +(I0 +tp25039 +g8 +tp25040 +Rp25041 +(I1 +(I7 +tp25042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25043 +tp25044 +bsa(dp25045 +g4 +g5 +(g6 +(I0 +tp25046 +g8 +tp25047 +Rp25048 +(I1 +(I7 +tp25049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25050 +tp25051 +bsa(dp25052 +g4 +g5 +(g6 +(I0 +tp25053 +g8 +tp25054 +Rp25055 +(I1 +(I7 +tp25056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25057 +tp25058 +bsa(dp25059 +g4 +g5 +(g6 +(I0 +tp25060 +g8 +tp25061 +Rp25062 +(I1 +(I7 +tp25063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25064 +tp25065 +bsa(dp25066 +g4 +g5 +(g6 +(I0 +tp25067 +g8 +tp25068 +Rp25069 +(I1 +(I7 +tp25070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25071 +tp25072 +bsa(dp25073 +g4 +g5 +(g6 +(I0 +tp25074 +g8 +tp25075 +Rp25076 +(I1 +(I7 +tp25077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25078 +tp25079 +bsa(dp25080 +g4 +g5 +(g6 +(I0 +tp25081 +g8 +tp25082 +Rp25083 +(I1 +(I7 +tp25084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25085 +tp25086 +bsa(dp25087 +g4 +g5 +(g6 +(I0 +tp25088 +g8 +tp25089 +Rp25090 +(I1 +(I7 +tp25091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25092 +tp25093 +bsa(dp25094 +g4 +g5 +(g6 +(I0 +tp25095 +g8 +tp25096 +Rp25097 +(I1 +(I7 +tp25098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25099 +tp25100 +bsa(dp25101 +g4 +g5 +(g6 +(I0 +tp25102 +g8 +tp25103 +Rp25104 +(I1 +(I7 +tp25105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25106 +tp25107 +bsa(dp25108 +g4 +g5 +(g6 +(I0 +tp25109 +g8 +tp25110 +Rp25111 +(I1 +(I7 +tp25112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25113 +tp25114 +bsa(dp25115 +g4 +g5 +(g6 +(I0 +tp25116 +g8 +tp25117 +Rp25118 +(I1 +(I7 +tp25119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25120 +tp25121 +bsa(dp25122 +g4 +g5 +(g6 +(I0 +tp25123 +g8 +tp25124 +Rp25125 +(I1 +(I7 +tp25126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25127 +tp25128 +bsa(dp25129 +g4 +g5 +(g6 +(I0 +tp25130 +g8 +tp25131 +Rp25132 +(I1 +(I7 +tp25133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25134 +tp25135 +bsa(dp25136 +g4 +g5 +(g6 +(I0 +tp25137 +g8 +tp25138 +Rp25139 +(I1 +(I7 +tp25140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25141 +tp25142 +bsa(dp25143 +g4 +g5 +(g6 +(I0 +tp25144 +g8 +tp25145 +Rp25146 +(I1 +(I7 +tp25147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25148 +tp25149 +bsa(dp25150 +g4 +g5 +(g6 +(I0 +tp25151 +g8 +tp25152 +Rp25153 +(I1 +(I7 +tp25154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25155 +tp25156 +bsa(dp25157 +g4 +g5 +(g6 +(I0 +tp25158 +g8 +tp25159 +Rp25160 +(I1 +(I7 +tp25161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25162 +tp25163 +bsa(dp25164 +g4 +g5 +(g6 +(I0 +tp25165 +g8 +tp25166 +Rp25167 +(I1 +(I7 +tp25168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25169 +tp25170 +bsa(dp25171 +g4 +g5 +(g6 +(I0 +tp25172 +g8 +tp25173 +Rp25174 +(I1 +(I7 +tp25175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25176 +tp25177 +bsa(dp25178 +g4 +g5 +(g6 +(I0 +tp25179 +g8 +tp25180 +Rp25181 +(I1 +(I7 +tp25182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25183 +tp25184 +bsa(dp25185 +g4 +g5 +(g6 +(I0 +tp25186 +g8 +tp25187 +Rp25188 +(I1 +(I7 +tp25189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25190 +tp25191 +bsa(dp25192 +g4 +g5 +(g6 +(I0 +tp25193 +g8 +tp25194 +Rp25195 +(I1 +(I7 +tp25196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25197 +tp25198 +bsa(dp25199 +g4 +g5 +(g6 +(I0 +tp25200 +g8 +tp25201 +Rp25202 +(I1 +(I7 +tp25203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25204 +tp25205 +bsa(dp25206 +g4 +g5 +(g6 +(I0 +tp25207 +g8 +tp25208 +Rp25209 +(I1 +(I7 +tp25210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25211 +tp25212 +bsa(dp25213 +g4 +g5 +(g6 +(I0 +tp25214 +g8 +tp25215 +Rp25216 +(I1 +(I7 +tp25217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25218 +tp25219 +bsa(dp25220 +g4 +g5 +(g6 +(I0 +tp25221 +g8 +tp25222 +Rp25223 +(I1 +(I7 +tp25224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25225 +tp25226 +bsa(dp25227 +g4 +g5 +(g6 +(I0 +tp25228 +g8 +tp25229 +Rp25230 +(I1 +(I7 +tp25231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25232 +tp25233 +bsa(dp25234 +g4 +g5 +(g6 +(I0 +tp25235 +g8 +tp25236 +Rp25237 +(I1 +(I7 +tp25238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25239 +tp25240 +bsa(dp25241 +g4 +g5 +(g6 +(I0 +tp25242 +g8 +tp25243 +Rp25244 +(I1 +(I7 +tp25245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25246 +tp25247 +bsa(dp25248 +g4 +g5 +(g6 +(I0 +tp25249 +g8 +tp25250 +Rp25251 +(I1 +(I7 +tp25252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25253 +tp25254 +bsa(dp25255 +g4 +g5 +(g6 +(I0 +tp25256 +g8 +tp25257 +Rp25258 +(I1 +(I7 +tp25259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25260 +tp25261 +bsa(dp25262 +g4 +g5 +(g6 +(I0 +tp25263 +g8 +tp25264 +Rp25265 +(I1 +(I7 +tp25266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25267 +tp25268 +bsa(dp25269 +g4 +g5 +(g6 +(I0 +tp25270 +g8 +tp25271 +Rp25272 +(I1 +(I7 +tp25273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25274 +tp25275 +bsa(dp25276 +g4 +g5 +(g6 +(I0 +tp25277 +g8 +tp25278 +Rp25279 +(I1 +(I7 +tp25280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25281 +tp25282 +bsa(dp25283 +g4 +g5 +(g6 +(I0 +tp25284 +g8 +tp25285 +Rp25286 +(I1 +(I7 +tp25287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25288 +tp25289 +bsa(dp25290 +g4 +g5 +(g6 +(I0 +tp25291 +g8 +tp25292 +Rp25293 +(I1 +(I7 +tp25294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25295 +tp25296 +bsa(dp25297 +g4 +g5 +(g6 +(I0 +tp25298 +g8 +tp25299 +Rp25300 +(I1 +(I7 +tp25301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25302 +tp25303 +bsa(dp25304 +g4 +g5 +(g6 +(I0 +tp25305 +g8 +tp25306 +Rp25307 +(I1 +(I7 +tp25308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25309 +tp25310 +bsa(dp25311 +g4 +g5 +(g6 +(I0 +tp25312 +g8 +tp25313 +Rp25314 +(I1 +(I7 +tp25315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25316 +tp25317 +bsa(dp25318 +g4 +g5 +(g6 +(I0 +tp25319 +g8 +tp25320 +Rp25321 +(I1 +(I7 +tp25322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25323 +tp25324 +bsa(dp25325 +g4 +g5 +(g6 +(I0 +tp25326 +g8 +tp25327 +Rp25328 +(I1 +(I7 +tp25329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25330 +tp25331 +bsa(dp25332 +g4 +g5 +(g6 +(I0 +tp25333 +g8 +tp25334 +Rp25335 +(I1 +(I7 +tp25336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25337 +tp25338 +bsa(dp25339 +g4 +g5 +(g6 +(I0 +tp25340 +g8 +tp25341 +Rp25342 +(I1 +(I7 +tp25343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25344 +tp25345 +bsa(dp25346 +g4 +g5 +(g6 +(I0 +tp25347 +g8 +tp25348 +Rp25349 +(I1 +(I7 +tp25350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25351 +tp25352 +bsa(dp25353 +g4 +g5 +(g6 +(I0 +tp25354 +g8 +tp25355 +Rp25356 +(I1 +(I7 +tp25357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25358 +tp25359 +bsa(dp25360 +g4 +g5 +(g6 +(I0 +tp25361 +g8 +tp25362 +Rp25363 +(I1 +(I7 +tp25364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25365 +tp25366 +bsa(dp25367 +g4 +g5 +(g6 +(I0 +tp25368 +g8 +tp25369 +Rp25370 +(I1 +(I7 +tp25371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25372 +tp25373 +bsa(dp25374 +g4 +g5 +(g6 +(I0 +tp25375 +g8 +tp25376 +Rp25377 +(I1 +(I7 +tp25378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25379 +tp25380 +bsa(dp25381 +g4 +g5 +(g6 +(I0 +tp25382 +g8 +tp25383 +Rp25384 +(I1 +(I7 +tp25385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25386 +tp25387 +bsa(dp25388 +g4 +g5 +(g6 +(I0 +tp25389 +g8 +tp25390 +Rp25391 +(I1 +(I7 +tp25392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25393 +tp25394 +bsa(dp25395 +g4 +g5 +(g6 +(I0 +tp25396 +g8 +tp25397 +Rp25398 +(I1 +(I7 +tp25399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25400 +tp25401 +bsa(dp25402 +g4 +g5 +(g6 +(I0 +tp25403 +g8 +tp25404 +Rp25405 +(I1 +(I7 +tp25406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25407 +tp25408 +bsa(dp25409 +g4 +g5 +(g6 +(I0 +tp25410 +g8 +tp25411 +Rp25412 +(I1 +(I7 +tp25413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25414 +tp25415 +bsa(dp25416 +g4 +g5 +(g6 +(I0 +tp25417 +g8 +tp25418 +Rp25419 +(I1 +(I7 +tp25420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25421 +tp25422 +bsa(dp25423 +g4 +g5 +(g6 +(I0 +tp25424 +g8 +tp25425 +Rp25426 +(I1 +(I7 +tp25427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25428 +tp25429 +bsa(dp25430 +g4 +g5 +(g6 +(I0 +tp25431 +g8 +tp25432 +Rp25433 +(I1 +(I7 +tp25434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25435 +tp25436 +bsa(dp25437 +g4 +g5 +(g6 +(I0 +tp25438 +g8 +tp25439 +Rp25440 +(I1 +(I7 +tp25441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25442 +tp25443 +bsa(dp25444 +g4 +g5 +(g6 +(I0 +tp25445 +g8 +tp25446 +Rp25447 +(I1 +(I7 +tp25448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25449 +tp25450 +bsa(dp25451 +g4 +g5 +(g6 +(I0 +tp25452 +g8 +tp25453 +Rp25454 +(I1 +(I7 +tp25455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25456 +tp25457 +bsa(dp25458 +g4 +g5 +(g6 +(I0 +tp25459 +g8 +tp25460 +Rp25461 +(I1 +(I7 +tp25462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25463 +tp25464 +bsa(dp25465 +g4 +g5 +(g6 +(I0 +tp25466 +g8 +tp25467 +Rp25468 +(I1 +(I7 +tp25469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25470 +tp25471 +bsa(dp25472 +g4 +g5 +(g6 +(I0 +tp25473 +g8 +tp25474 +Rp25475 +(I1 +(I7 +tp25476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25477 +tp25478 +bsa(dp25479 +g4 +g5 +(g6 +(I0 +tp25480 +g8 +tp25481 +Rp25482 +(I1 +(I7 +tp25483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25484 +tp25485 +bsa(dp25486 +g4 +g5 +(g6 +(I0 +tp25487 +g8 +tp25488 +Rp25489 +(I1 +(I7 +tp25490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25491 +tp25492 +bsa(dp25493 +g4 +g5 +(g6 +(I0 +tp25494 +g8 +tp25495 +Rp25496 +(I1 +(I7 +tp25497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25498 +tp25499 +bsa(dp25500 +g4 +g5 +(g6 +(I0 +tp25501 +g8 +tp25502 +Rp25503 +(I1 +(I7 +tp25504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25505 +tp25506 +bsa(dp25507 +g4 +g5 +(g6 +(I0 +tp25508 +g8 +tp25509 +Rp25510 +(I1 +(I7 +tp25511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25512 +tp25513 +bsa(dp25514 +g4 +g5 +(g6 +(I0 +tp25515 +g8 +tp25516 +Rp25517 +(I1 +(I7 +tp25518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25519 +tp25520 +bsa(dp25521 +g4 +g5 +(g6 +(I0 +tp25522 +g8 +tp25523 +Rp25524 +(I1 +(I7 +tp25525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25526 +tp25527 +bsa(dp25528 +g4 +g5 +(g6 +(I0 +tp25529 +g8 +tp25530 +Rp25531 +(I1 +(I7 +tp25532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25533 +tp25534 +bsa(dp25535 +g4 +g5 +(g6 +(I0 +tp25536 +g8 +tp25537 +Rp25538 +(I1 +(I7 +tp25539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25540 +tp25541 +bsa(dp25542 +g4 +g5 +(g6 +(I0 +tp25543 +g8 +tp25544 +Rp25545 +(I1 +(I7 +tp25546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25547 +tp25548 +bsa(dp25549 +g4 +g5 +(g6 +(I0 +tp25550 +g8 +tp25551 +Rp25552 +(I1 +(I7 +tp25553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25554 +tp25555 +bsa(dp25556 +g4 +g5 +(g6 +(I0 +tp25557 +g8 +tp25558 +Rp25559 +(I1 +(I7 +tp25560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25561 +tp25562 +bsa(dp25563 +g4 +g5 +(g6 +(I0 +tp25564 +g8 +tp25565 +Rp25566 +(I1 +(I7 +tp25567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25568 +tp25569 +bsa(dp25570 +g4 +g5 +(g6 +(I0 +tp25571 +g8 +tp25572 +Rp25573 +(I1 +(I7 +tp25574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25575 +tp25576 +bsa(dp25577 +g4 +g5 +(g6 +(I0 +tp25578 +g8 +tp25579 +Rp25580 +(I1 +(I7 +tp25581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25582 +tp25583 +bsa(dp25584 +g4 +g5 +(g6 +(I0 +tp25585 +g8 +tp25586 +Rp25587 +(I1 +(I7 +tp25588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25589 +tp25590 +bsa(dp25591 +g4 +g5 +(g6 +(I0 +tp25592 +g8 +tp25593 +Rp25594 +(I1 +(I7 +tp25595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25596 +tp25597 +bsa(dp25598 +g4 +g5 +(g6 +(I0 +tp25599 +g8 +tp25600 +Rp25601 +(I1 +(I7 +tp25602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25603 +tp25604 +bsa(dp25605 +g4 +g5 +(g6 +(I0 +tp25606 +g8 +tp25607 +Rp25608 +(I1 +(I7 +tp25609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25610 +tp25611 +bsa(dp25612 +g4 +g5 +(g6 +(I0 +tp25613 +g8 +tp25614 +Rp25615 +(I1 +(I7 +tp25616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25617 +tp25618 +bsa(dp25619 +g4 +g5 +(g6 +(I0 +tp25620 +g8 +tp25621 +Rp25622 +(I1 +(I7 +tp25623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25624 +tp25625 +bsa(dp25626 +g4 +g5 +(g6 +(I0 +tp25627 +g8 +tp25628 +Rp25629 +(I1 +(I7 +tp25630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25631 +tp25632 +bsa(dp25633 +g4 +g5 +(g6 +(I0 +tp25634 +g8 +tp25635 +Rp25636 +(I1 +(I7 +tp25637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25638 +tp25639 +bsa(dp25640 +g4 +g5 +(g6 +(I0 +tp25641 +g8 +tp25642 +Rp25643 +(I1 +(I7 +tp25644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25645 +tp25646 +bsa(dp25647 +g4 +g5 +(g6 +(I0 +tp25648 +g8 +tp25649 +Rp25650 +(I1 +(I7 +tp25651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25652 +tp25653 +bsa(dp25654 +g4 +g5 +(g6 +(I0 +tp25655 +g8 +tp25656 +Rp25657 +(I1 +(I7 +tp25658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25659 +tp25660 +bsa(dp25661 +g4 +g5 +(g6 +(I0 +tp25662 +g8 +tp25663 +Rp25664 +(I1 +(I7 +tp25665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25666 +tp25667 +bsa(dp25668 +g4 +g5 +(g6 +(I0 +tp25669 +g8 +tp25670 +Rp25671 +(I1 +(I7 +tp25672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25673 +tp25674 +bsa(dp25675 +g4 +g5 +(g6 +(I0 +tp25676 +g8 +tp25677 +Rp25678 +(I1 +(I7 +tp25679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25680 +tp25681 +bsa(dp25682 +g4 +g5 +(g6 +(I0 +tp25683 +g8 +tp25684 +Rp25685 +(I1 +(I7 +tp25686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25687 +tp25688 +bsa(dp25689 +g4 +g5 +(g6 +(I0 +tp25690 +g8 +tp25691 +Rp25692 +(I1 +(I7 +tp25693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25694 +tp25695 +bsa(dp25696 +g4 +g5 +(g6 +(I0 +tp25697 +g8 +tp25698 +Rp25699 +(I1 +(I7 +tp25700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25701 +tp25702 +bsa(dp25703 +g4 +g5 +(g6 +(I0 +tp25704 +g8 +tp25705 +Rp25706 +(I1 +(I7 +tp25707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25708 +tp25709 +bsa(dp25710 +g4 +g5 +(g6 +(I0 +tp25711 +g8 +tp25712 +Rp25713 +(I1 +(I7 +tp25714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25715 +tp25716 +bsa(dp25717 +g4 +g5 +(g6 +(I0 +tp25718 +g8 +tp25719 +Rp25720 +(I1 +(I7 +tp25721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25722 +tp25723 +bsa(dp25724 +g4 +g5 +(g6 +(I0 +tp25725 +g8 +tp25726 +Rp25727 +(I1 +(I7 +tp25728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25729 +tp25730 +bsa(dp25731 +g4 +g5 +(g6 +(I0 +tp25732 +g8 +tp25733 +Rp25734 +(I1 +(I7 +tp25735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25736 +tp25737 +bsa(dp25738 +g4 +g5 +(g6 +(I0 +tp25739 +g8 +tp25740 +Rp25741 +(I1 +(I7 +tp25742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25743 +tp25744 +bsa(dp25745 +g4 +g5 +(g6 +(I0 +tp25746 +g8 +tp25747 +Rp25748 +(I1 +(I7 +tp25749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25750 +tp25751 +bsa(dp25752 +g4 +g5 +(g6 +(I0 +tp25753 +g8 +tp25754 +Rp25755 +(I1 +(I7 +tp25756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25757 +tp25758 +bsa(dp25759 +g4 +g5 +(g6 +(I0 +tp25760 +g8 +tp25761 +Rp25762 +(I1 +(I7 +tp25763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25764 +tp25765 +bsa(dp25766 +g4 +g5 +(g6 +(I0 +tp25767 +g8 +tp25768 +Rp25769 +(I1 +(I7 +tp25770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25771 +tp25772 +bsa(dp25773 +g4 +g5 +(g6 +(I0 +tp25774 +g8 +tp25775 +Rp25776 +(I1 +(I7 +tp25777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25778 +tp25779 +bsa(dp25780 +g4 +g5 +(g6 +(I0 +tp25781 +g8 +tp25782 +Rp25783 +(I1 +(I7 +tp25784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25785 +tp25786 +bsa(dp25787 +g4 +g5 +(g6 +(I0 +tp25788 +g8 +tp25789 +Rp25790 +(I1 +(I7 +tp25791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25792 +tp25793 +bsa(dp25794 +g4 +g5 +(g6 +(I0 +tp25795 +g8 +tp25796 +Rp25797 +(I1 +(I7 +tp25798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25799 +tp25800 +bsa(dp25801 +g4 +g5 +(g6 +(I0 +tp25802 +g8 +tp25803 +Rp25804 +(I1 +(I7 +tp25805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25806 +tp25807 +bsa(dp25808 +g4 +g5 +(g6 +(I0 +tp25809 +g8 +tp25810 +Rp25811 +(I1 +(I7 +tp25812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25813 +tp25814 +bsa(dp25815 +g4 +g5 +(g6 +(I0 +tp25816 +g8 +tp25817 +Rp25818 +(I1 +(I7 +tp25819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25820 +tp25821 +bsa(dp25822 +g4 +g5 +(g6 +(I0 +tp25823 +g8 +tp25824 +Rp25825 +(I1 +(I7 +tp25826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25827 +tp25828 +bsa(dp25829 +g4 +g5 +(g6 +(I0 +tp25830 +g8 +tp25831 +Rp25832 +(I1 +(I7 +tp25833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25834 +tp25835 +bsa(dp25836 +g4 +g5 +(g6 +(I0 +tp25837 +g8 +tp25838 +Rp25839 +(I1 +(I7 +tp25840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25841 +tp25842 +bsa(dp25843 +g4 +g5 +(g6 +(I0 +tp25844 +g8 +tp25845 +Rp25846 +(I1 +(I7 +tp25847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25848 +tp25849 +bsa(dp25850 +g4 +g5 +(g6 +(I0 +tp25851 +g8 +tp25852 +Rp25853 +(I1 +(I7 +tp25854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25855 +tp25856 +bsa(dp25857 +g4 +g5 +(g6 +(I0 +tp25858 +g8 +tp25859 +Rp25860 +(I1 +(I7 +tp25861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25862 +tp25863 +bsa(dp25864 +g4 +g5 +(g6 +(I0 +tp25865 +g8 +tp25866 +Rp25867 +(I1 +(I7 +tp25868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25869 +tp25870 +bsa(dp25871 +g4 +g5 +(g6 +(I0 +tp25872 +g8 +tp25873 +Rp25874 +(I1 +(I7 +tp25875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25876 +tp25877 +bsa(dp25878 +g4 +g5 +(g6 +(I0 +tp25879 +g8 +tp25880 +Rp25881 +(I1 +(I7 +tp25882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25883 +tp25884 +bsa(dp25885 +g4 +g5 +(g6 +(I0 +tp25886 +g8 +tp25887 +Rp25888 +(I1 +(I7 +tp25889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25890 +tp25891 +bsa(dp25892 +g4 +g5 +(g6 +(I0 +tp25893 +g8 +tp25894 +Rp25895 +(I1 +(I7 +tp25896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25897 +tp25898 +bsa(dp25899 +g4 +g5 +(g6 +(I0 +tp25900 +g8 +tp25901 +Rp25902 +(I1 +(I7 +tp25903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25904 +tp25905 +bsa(dp25906 +g4 +g5 +(g6 +(I0 +tp25907 +g8 +tp25908 +Rp25909 +(I1 +(I7 +tp25910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25911 +tp25912 +bsa(dp25913 +g4 +g5 +(g6 +(I0 +tp25914 +g8 +tp25915 +Rp25916 +(I1 +(I7 +tp25917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25918 +tp25919 +bsa(dp25920 +g4 +g5 +(g6 +(I0 +tp25921 +g8 +tp25922 +Rp25923 +(I1 +(I7 +tp25924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25925 +tp25926 +bsa(dp25927 +g4 +g5 +(g6 +(I0 +tp25928 +g8 +tp25929 +Rp25930 +(I1 +(I7 +tp25931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25932 +tp25933 +bsa(dp25934 +g4 +g5 +(g6 +(I0 +tp25935 +g8 +tp25936 +Rp25937 +(I1 +(I7 +tp25938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25939 +tp25940 +bsa(dp25941 +g4 +g5 +(g6 +(I0 +tp25942 +g8 +tp25943 +Rp25944 +(I1 +(I7 +tp25945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25946 +tp25947 +bsa(dp25948 +g4 +g5 +(g6 +(I0 +tp25949 +g8 +tp25950 +Rp25951 +(I1 +(I7 +tp25952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25953 +tp25954 +bsa(dp25955 +g4 +g5 +(g6 +(I0 +tp25956 +g8 +tp25957 +Rp25958 +(I1 +(I7 +tp25959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25960 +tp25961 +bsa(dp25962 +g4 +g5 +(g6 +(I0 +tp25963 +g8 +tp25964 +Rp25965 +(I1 +(I7 +tp25966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p25967 +tp25968 +bsa(dp25969 +g4 +g5 +(g6 +(I0 +tp25970 +g8 +tp25971 +Rp25972 +(I1 +(I7 +tp25973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p25974 +tp25975 +bsa(dp25976 +g4 +g5 +(g6 +(I0 +tp25977 +g8 +tp25978 +Rp25979 +(I1 +(I7 +tp25980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25981 +tp25982 +bsa(dp25983 +g4 +g5 +(g6 +(I0 +tp25984 +g8 +tp25985 +Rp25986 +(I1 +(I7 +tp25987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25988 +tp25989 +bsa(dp25990 +g4 +g5 +(g6 +(I0 +tp25991 +g8 +tp25992 +Rp25993 +(I1 +(I7 +tp25994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p25995 +tp25996 +bsa(dp25997 +g4 +g5 +(g6 +(I0 +tp25998 +g8 +tp25999 +Rp26000 +(I1 +(I7 +tp26001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26002 +tp26003 +bsa(dp26004 +g4 +g5 +(g6 +(I0 +tp26005 +g8 +tp26006 +Rp26007 +(I1 +(I7 +tp26008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26009 +tp26010 +bsa(dp26011 +g4 +g5 +(g6 +(I0 +tp26012 +g8 +tp26013 +Rp26014 +(I1 +(I7 +tp26015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26016 +tp26017 +bsa(dp26018 +g4 +g5 +(g6 +(I0 +tp26019 +g8 +tp26020 +Rp26021 +(I1 +(I7 +tp26022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26023 +tp26024 +bsa(dp26025 +g4 +g5 +(g6 +(I0 +tp26026 +g8 +tp26027 +Rp26028 +(I1 +(I7 +tp26029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26030 +tp26031 +bsa(dp26032 +g4 +g5 +(g6 +(I0 +tp26033 +g8 +tp26034 +Rp26035 +(I1 +(I7 +tp26036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26037 +tp26038 +bsa(dp26039 +g4 +g5 +(g6 +(I0 +tp26040 +g8 +tp26041 +Rp26042 +(I1 +(I7 +tp26043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26044 +tp26045 +bsa(dp26046 +g4 +g5 +(g6 +(I0 +tp26047 +g8 +tp26048 +Rp26049 +(I1 +(I7 +tp26050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26051 +tp26052 +bsa(dp26053 +g4 +g5 +(g6 +(I0 +tp26054 +g8 +tp26055 +Rp26056 +(I1 +(I7 +tp26057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26058 +tp26059 +bsa(dp26060 +g4 +g5 +(g6 +(I0 +tp26061 +g8 +tp26062 +Rp26063 +(I1 +(I7 +tp26064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26065 +tp26066 +bsa(dp26067 +g4 +g5 +(g6 +(I0 +tp26068 +g8 +tp26069 +Rp26070 +(I1 +(I7 +tp26071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26072 +tp26073 +bsa(dp26074 +g4 +g5 +(g6 +(I0 +tp26075 +g8 +tp26076 +Rp26077 +(I1 +(I7 +tp26078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26079 +tp26080 +bsa(dp26081 +g4 +g5 +(g6 +(I0 +tp26082 +g8 +tp26083 +Rp26084 +(I1 +(I7 +tp26085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26086 +tp26087 +bsa(dp26088 +g4 +g5 +(g6 +(I0 +tp26089 +g8 +tp26090 +Rp26091 +(I1 +(I7 +tp26092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26093 +tp26094 +bsa(dp26095 +g4 +g5 +(g6 +(I0 +tp26096 +g8 +tp26097 +Rp26098 +(I1 +(I7 +tp26099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26100 +tp26101 +bsa(dp26102 +g4 +g5 +(g6 +(I0 +tp26103 +g8 +tp26104 +Rp26105 +(I1 +(I7 +tp26106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26107 +tp26108 +bsa(dp26109 +g4 +g5 +(g6 +(I0 +tp26110 +g8 +tp26111 +Rp26112 +(I1 +(I7 +tp26113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26114 +tp26115 +bsa(dp26116 +g4 +g5 +(g6 +(I0 +tp26117 +g8 +tp26118 +Rp26119 +(I1 +(I7 +tp26120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26121 +tp26122 +bsa(dp26123 +g4 +g5 +(g6 +(I0 +tp26124 +g8 +tp26125 +Rp26126 +(I1 +(I7 +tp26127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26128 +tp26129 +bsa(dp26130 +g4 +g5 +(g6 +(I0 +tp26131 +g8 +tp26132 +Rp26133 +(I1 +(I7 +tp26134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26135 +tp26136 +bsa(dp26137 +g4 +g5 +(g6 +(I0 +tp26138 +g8 +tp26139 +Rp26140 +(I1 +(I7 +tp26141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26142 +tp26143 +bsa(dp26144 +g4 +g5 +(g6 +(I0 +tp26145 +g8 +tp26146 +Rp26147 +(I1 +(I7 +tp26148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26149 +tp26150 +bsa(dp26151 +g4 +g5 +(g6 +(I0 +tp26152 +g8 +tp26153 +Rp26154 +(I1 +(I7 +tp26155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26156 +tp26157 +bsa(dp26158 +g4 +g5 +(g6 +(I0 +tp26159 +g8 +tp26160 +Rp26161 +(I1 +(I7 +tp26162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26163 +tp26164 +bsa(dp26165 +g4 +g5 +(g6 +(I0 +tp26166 +g8 +tp26167 +Rp26168 +(I1 +(I7 +tp26169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26170 +tp26171 +bsa(dp26172 +g4 +g5 +(g6 +(I0 +tp26173 +g8 +tp26174 +Rp26175 +(I1 +(I7 +tp26176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26177 +tp26178 +bsa(dp26179 +g4 +g5 +(g6 +(I0 +tp26180 +g8 +tp26181 +Rp26182 +(I1 +(I7 +tp26183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26184 +tp26185 +bsa(dp26186 +g4 +g5 +(g6 +(I0 +tp26187 +g8 +tp26188 +Rp26189 +(I1 +(I7 +tp26190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26191 +tp26192 +bsa(dp26193 +g4 +g5 +(g6 +(I0 +tp26194 +g8 +tp26195 +Rp26196 +(I1 +(I7 +tp26197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26198 +tp26199 +bsa(dp26200 +g4 +g5 +(g6 +(I0 +tp26201 +g8 +tp26202 +Rp26203 +(I1 +(I7 +tp26204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26205 +tp26206 +bsa(dp26207 +g4 +g5 +(g6 +(I0 +tp26208 +g8 +tp26209 +Rp26210 +(I1 +(I7 +tp26211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26212 +tp26213 +bsa(dp26214 +g4 +g5 +(g6 +(I0 +tp26215 +g8 +tp26216 +Rp26217 +(I1 +(I7 +tp26218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26219 +tp26220 +bsa(dp26221 +g4 +g5 +(g6 +(I0 +tp26222 +g8 +tp26223 +Rp26224 +(I1 +(I7 +tp26225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26226 +tp26227 +bsa(dp26228 +g4 +g5 +(g6 +(I0 +tp26229 +g8 +tp26230 +Rp26231 +(I1 +(I7 +tp26232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26233 +tp26234 +bsa(dp26235 +g4 +g5 +(g6 +(I0 +tp26236 +g8 +tp26237 +Rp26238 +(I1 +(I7 +tp26239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26240 +tp26241 +bsa(dp26242 +g4 +g5 +(g6 +(I0 +tp26243 +g8 +tp26244 +Rp26245 +(I1 +(I7 +tp26246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26247 +tp26248 +bsa(dp26249 +g4 +g5 +(g6 +(I0 +tp26250 +g8 +tp26251 +Rp26252 +(I1 +(I7 +tp26253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26254 +tp26255 +bsa(dp26256 +g4 +g5 +(g6 +(I0 +tp26257 +g8 +tp26258 +Rp26259 +(I1 +(I7 +tp26260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26261 +tp26262 +bsa(dp26263 +g4 +g5 +(g6 +(I0 +tp26264 +g8 +tp26265 +Rp26266 +(I1 +(I7 +tp26267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26268 +tp26269 +bsa(dp26270 +g4 +g5 +(g6 +(I0 +tp26271 +g8 +tp26272 +Rp26273 +(I1 +(I7 +tp26274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26275 +tp26276 +bsa(dp26277 +g4 +g5 +(g6 +(I0 +tp26278 +g8 +tp26279 +Rp26280 +(I1 +(I7 +tp26281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26282 +tp26283 +bsa(dp26284 +g4 +g5 +(g6 +(I0 +tp26285 +g8 +tp26286 +Rp26287 +(I1 +(I7 +tp26288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26289 +tp26290 +bsa(dp26291 +g4 +g5 +(g6 +(I0 +tp26292 +g8 +tp26293 +Rp26294 +(I1 +(I7 +tp26295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26296 +tp26297 +bsa(dp26298 +g4 +g5 +(g6 +(I0 +tp26299 +g8 +tp26300 +Rp26301 +(I1 +(I7 +tp26302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26303 +tp26304 +bsa(dp26305 +g4 +g5 +(g6 +(I0 +tp26306 +g8 +tp26307 +Rp26308 +(I1 +(I7 +tp26309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26310 +tp26311 +bsa(dp26312 +g4 +g5 +(g6 +(I0 +tp26313 +g8 +tp26314 +Rp26315 +(I1 +(I7 +tp26316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26317 +tp26318 +bsa(dp26319 +g4 +g5 +(g6 +(I0 +tp26320 +g8 +tp26321 +Rp26322 +(I1 +(I7 +tp26323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26324 +tp26325 +bsa(dp26326 +g4 +g5 +(g6 +(I0 +tp26327 +g8 +tp26328 +Rp26329 +(I1 +(I7 +tp26330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26331 +tp26332 +bsa(dp26333 +g4 +g5 +(g6 +(I0 +tp26334 +g8 +tp26335 +Rp26336 +(I1 +(I7 +tp26337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26338 +tp26339 +bsa(dp26340 +g4 +g5 +(g6 +(I0 +tp26341 +g8 +tp26342 +Rp26343 +(I1 +(I7 +tp26344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26345 +tp26346 +bsa(dp26347 +g4 +g5 +(g6 +(I0 +tp26348 +g8 +tp26349 +Rp26350 +(I1 +(I7 +tp26351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26352 +tp26353 +bsa(dp26354 +g4 +g5 +(g6 +(I0 +tp26355 +g8 +tp26356 +Rp26357 +(I1 +(I7 +tp26358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26359 +tp26360 +bsa(dp26361 +g4 +g5 +(g6 +(I0 +tp26362 +g8 +tp26363 +Rp26364 +(I1 +(I7 +tp26365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26366 +tp26367 +bsa(dp26368 +g4 +g5 +(g6 +(I0 +tp26369 +g8 +tp26370 +Rp26371 +(I1 +(I7 +tp26372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26373 +tp26374 +bsa(dp26375 +g4 +g5 +(g6 +(I0 +tp26376 +g8 +tp26377 +Rp26378 +(I1 +(I7 +tp26379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26380 +tp26381 +bsa(dp26382 +g4 +g5 +(g6 +(I0 +tp26383 +g8 +tp26384 +Rp26385 +(I1 +(I7 +tp26386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26387 +tp26388 +bsa(dp26389 +g4 +g5 +(g6 +(I0 +tp26390 +g8 +tp26391 +Rp26392 +(I1 +(I7 +tp26393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26394 +tp26395 +bsa(dp26396 +g4 +g5 +(g6 +(I0 +tp26397 +g8 +tp26398 +Rp26399 +(I1 +(I7 +tp26400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26401 +tp26402 +bsa(dp26403 +g4 +g5 +(g6 +(I0 +tp26404 +g8 +tp26405 +Rp26406 +(I1 +(I7 +tp26407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26408 +tp26409 +bsa(dp26410 +g4 +g5 +(g6 +(I0 +tp26411 +g8 +tp26412 +Rp26413 +(I1 +(I7 +tp26414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26415 +tp26416 +bsa(dp26417 +g4 +g5 +(g6 +(I0 +tp26418 +g8 +tp26419 +Rp26420 +(I1 +(I7 +tp26421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26422 +tp26423 +bsa(dp26424 +g4 +g5 +(g6 +(I0 +tp26425 +g8 +tp26426 +Rp26427 +(I1 +(I7 +tp26428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26429 +tp26430 +bsa(dp26431 +g4 +g5 +(g6 +(I0 +tp26432 +g8 +tp26433 +Rp26434 +(I1 +(I7 +tp26435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26436 +tp26437 +bsa(dp26438 +g4 +g5 +(g6 +(I0 +tp26439 +g8 +tp26440 +Rp26441 +(I1 +(I7 +tp26442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26443 +tp26444 +bsa(dp26445 +g4 +g5 +(g6 +(I0 +tp26446 +g8 +tp26447 +Rp26448 +(I1 +(I7 +tp26449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26450 +tp26451 +bsa(dp26452 +g4 +g5 +(g6 +(I0 +tp26453 +g8 +tp26454 +Rp26455 +(I1 +(I7 +tp26456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26457 +tp26458 +bsa(dp26459 +g4 +g5 +(g6 +(I0 +tp26460 +g8 +tp26461 +Rp26462 +(I1 +(I7 +tp26463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26464 +tp26465 +bsa(dp26466 +g4 +g5 +(g6 +(I0 +tp26467 +g8 +tp26468 +Rp26469 +(I1 +(I7 +tp26470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26471 +tp26472 +bsa(dp26473 +g4 +g5 +(g6 +(I0 +tp26474 +g8 +tp26475 +Rp26476 +(I1 +(I7 +tp26477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26478 +tp26479 +bsa(dp26480 +g4 +g5 +(g6 +(I0 +tp26481 +g8 +tp26482 +Rp26483 +(I1 +(I7 +tp26484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26485 +tp26486 +bsa(dp26487 +g4 +g5 +(g6 +(I0 +tp26488 +g8 +tp26489 +Rp26490 +(I1 +(I7 +tp26491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26492 +tp26493 +bsa(dp26494 +g4 +g5 +(g6 +(I0 +tp26495 +g8 +tp26496 +Rp26497 +(I1 +(I7 +tp26498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26499 +tp26500 +bsa(dp26501 +g4 +g5 +(g6 +(I0 +tp26502 +g8 +tp26503 +Rp26504 +(I1 +(I7 +tp26505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26506 +tp26507 +bsa(dp26508 +g4 +g5 +(g6 +(I0 +tp26509 +g8 +tp26510 +Rp26511 +(I1 +(I7 +tp26512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26513 +tp26514 +bsa(dp26515 +g4 +g5 +(g6 +(I0 +tp26516 +g8 +tp26517 +Rp26518 +(I1 +(I7 +tp26519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26520 +tp26521 +bsa(dp26522 +g4 +g5 +(g6 +(I0 +tp26523 +g8 +tp26524 +Rp26525 +(I1 +(I7 +tp26526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26527 +tp26528 +bsa(dp26529 +g4 +g5 +(g6 +(I0 +tp26530 +g8 +tp26531 +Rp26532 +(I1 +(I7 +tp26533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26534 +tp26535 +bsa(dp26536 +g4 +g5 +(g6 +(I0 +tp26537 +g8 +tp26538 +Rp26539 +(I1 +(I7 +tp26540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26541 +tp26542 +bsa(dp26543 +g4 +g5 +(g6 +(I0 +tp26544 +g8 +tp26545 +Rp26546 +(I1 +(I7 +tp26547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26548 +tp26549 +bsa(dp26550 +g4 +g5 +(g6 +(I0 +tp26551 +g8 +tp26552 +Rp26553 +(I1 +(I7 +tp26554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26555 +tp26556 +bsa(dp26557 +g4 +g5 +(g6 +(I0 +tp26558 +g8 +tp26559 +Rp26560 +(I1 +(I7 +tp26561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26562 +tp26563 +bsa(dp26564 +g4 +g5 +(g6 +(I0 +tp26565 +g8 +tp26566 +Rp26567 +(I1 +(I7 +tp26568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26569 +tp26570 +bsa(dp26571 +g4 +g5 +(g6 +(I0 +tp26572 +g8 +tp26573 +Rp26574 +(I1 +(I7 +tp26575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26576 +tp26577 +bsa(dp26578 +g4 +g5 +(g6 +(I0 +tp26579 +g8 +tp26580 +Rp26581 +(I1 +(I7 +tp26582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26583 +tp26584 +bsa(dp26585 +g4 +g5 +(g6 +(I0 +tp26586 +g8 +tp26587 +Rp26588 +(I1 +(I7 +tp26589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26590 +tp26591 +bsa(dp26592 +g4 +g5 +(g6 +(I0 +tp26593 +g8 +tp26594 +Rp26595 +(I1 +(I7 +tp26596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26597 +tp26598 +bsa(dp26599 +g4 +g5 +(g6 +(I0 +tp26600 +g8 +tp26601 +Rp26602 +(I1 +(I7 +tp26603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26604 +tp26605 +bsa(dp26606 +g4 +g5 +(g6 +(I0 +tp26607 +g8 +tp26608 +Rp26609 +(I1 +(I7 +tp26610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26611 +tp26612 +bsa(dp26613 +g4 +g5 +(g6 +(I0 +tp26614 +g8 +tp26615 +Rp26616 +(I1 +(I7 +tp26617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26618 +tp26619 +bsa(dp26620 +g4 +g5 +(g6 +(I0 +tp26621 +g8 +tp26622 +Rp26623 +(I1 +(I7 +tp26624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26625 +tp26626 +bsa(dp26627 +g4 +g5 +(g6 +(I0 +tp26628 +g8 +tp26629 +Rp26630 +(I1 +(I7 +tp26631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26632 +tp26633 +bsa(dp26634 +g4 +g5 +(g6 +(I0 +tp26635 +g8 +tp26636 +Rp26637 +(I1 +(I7 +tp26638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26639 +tp26640 +bsa(dp26641 +g4 +g5 +(g6 +(I0 +tp26642 +g8 +tp26643 +Rp26644 +(I1 +(I7 +tp26645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26646 +tp26647 +bsa(dp26648 +g4 +g5 +(g6 +(I0 +tp26649 +g8 +tp26650 +Rp26651 +(I1 +(I7 +tp26652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26653 +tp26654 +bsa(dp26655 +g4 +g5 +(g6 +(I0 +tp26656 +g8 +tp26657 +Rp26658 +(I1 +(I7 +tp26659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26660 +tp26661 +bsa(dp26662 +g4 +g5 +(g6 +(I0 +tp26663 +g8 +tp26664 +Rp26665 +(I1 +(I7 +tp26666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26667 +tp26668 +bsa(dp26669 +g4 +g5 +(g6 +(I0 +tp26670 +g8 +tp26671 +Rp26672 +(I1 +(I7 +tp26673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26674 +tp26675 +bsa(dp26676 +g4 +g5 +(g6 +(I0 +tp26677 +g8 +tp26678 +Rp26679 +(I1 +(I7 +tp26680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26681 +tp26682 +bsa(dp26683 +g4 +g5 +(g6 +(I0 +tp26684 +g8 +tp26685 +Rp26686 +(I1 +(I7 +tp26687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26688 +tp26689 +bsa(dp26690 +g4 +g5 +(g6 +(I0 +tp26691 +g8 +tp26692 +Rp26693 +(I1 +(I7 +tp26694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26695 +tp26696 +bsa(dp26697 +g4 +g5 +(g6 +(I0 +tp26698 +g8 +tp26699 +Rp26700 +(I1 +(I7 +tp26701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26702 +tp26703 +bsa(dp26704 +g4 +g5 +(g6 +(I0 +tp26705 +g8 +tp26706 +Rp26707 +(I1 +(I7 +tp26708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26709 +tp26710 +bsa(dp26711 +g4 +g5 +(g6 +(I0 +tp26712 +g8 +tp26713 +Rp26714 +(I1 +(I7 +tp26715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26716 +tp26717 +bsa(dp26718 +g4 +g5 +(g6 +(I0 +tp26719 +g8 +tp26720 +Rp26721 +(I1 +(I7 +tp26722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26723 +tp26724 +bsa(dp26725 +g4 +g5 +(g6 +(I0 +tp26726 +g8 +tp26727 +Rp26728 +(I1 +(I7 +tp26729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26730 +tp26731 +bsa(dp26732 +g4 +g5 +(g6 +(I0 +tp26733 +g8 +tp26734 +Rp26735 +(I1 +(I7 +tp26736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26737 +tp26738 +bsa(dp26739 +g4 +g5 +(g6 +(I0 +tp26740 +g8 +tp26741 +Rp26742 +(I1 +(I7 +tp26743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26744 +tp26745 +bsa(dp26746 +g4 +g5 +(g6 +(I0 +tp26747 +g8 +tp26748 +Rp26749 +(I1 +(I7 +tp26750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26751 +tp26752 +bsa(dp26753 +g4 +g5 +(g6 +(I0 +tp26754 +g8 +tp26755 +Rp26756 +(I1 +(I7 +tp26757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26758 +tp26759 +bsa(dp26760 +g4 +g5 +(g6 +(I0 +tp26761 +g8 +tp26762 +Rp26763 +(I1 +(I7 +tp26764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26765 +tp26766 +bsa(dp26767 +g4 +g5 +(g6 +(I0 +tp26768 +g8 +tp26769 +Rp26770 +(I1 +(I7 +tp26771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26772 +tp26773 +bsa(dp26774 +g4 +g5 +(g6 +(I0 +tp26775 +g8 +tp26776 +Rp26777 +(I1 +(I7 +tp26778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26779 +tp26780 +bsa(dp26781 +g4 +g5 +(g6 +(I0 +tp26782 +g8 +tp26783 +Rp26784 +(I1 +(I7 +tp26785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26786 +tp26787 +bsa(dp26788 +g4 +g5 +(g6 +(I0 +tp26789 +g8 +tp26790 +Rp26791 +(I1 +(I7 +tp26792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26793 +tp26794 +bsa(dp26795 +g4 +g5 +(g6 +(I0 +tp26796 +g8 +tp26797 +Rp26798 +(I1 +(I7 +tp26799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26800 +tp26801 +bsa(dp26802 +g4 +g5 +(g6 +(I0 +tp26803 +g8 +tp26804 +Rp26805 +(I1 +(I7 +tp26806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26807 +tp26808 +bsa(dp26809 +g4 +g5 +(g6 +(I0 +tp26810 +g8 +tp26811 +Rp26812 +(I1 +(I7 +tp26813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26814 +tp26815 +bsa(dp26816 +g4 +g5 +(g6 +(I0 +tp26817 +g8 +tp26818 +Rp26819 +(I1 +(I7 +tp26820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26821 +tp26822 +bsa(dp26823 +g4 +g5 +(g6 +(I0 +tp26824 +g8 +tp26825 +Rp26826 +(I1 +(I7 +tp26827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26828 +tp26829 +bsa(dp26830 +g4 +g5 +(g6 +(I0 +tp26831 +g8 +tp26832 +Rp26833 +(I1 +(I7 +tp26834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26835 +tp26836 +bsa(dp26837 +g4 +g5 +(g6 +(I0 +tp26838 +g8 +tp26839 +Rp26840 +(I1 +(I7 +tp26841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26842 +tp26843 +bsa(dp26844 +g4 +g5 +(g6 +(I0 +tp26845 +g8 +tp26846 +Rp26847 +(I1 +(I7 +tp26848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26849 +tp26850 +bsa(dp26851 +g4 +g5 +(g6 +(I0 +tp26852 +g8 +tp26853 +Rp26854 +(I1 +(I7 +tp26855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26856 +tp26857 +bsa(dp26858 +g4 +g5 +(g6 +(I0 +tp26859 +g8 +tp26860 +Rp26861 +(I1 +(I7 +tp26862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26863 +tp26864 +bsa(dp26865 +g4 +g5 +(g6 +(I0 +tp26866 +g8 +tp26867 +Rp26868 +(I1 +(I7 +tp26869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26870 +tp26871 +bsa(dp26872 +g4 +g5 +(g6 +(I0 +tp26873 +g8 +tp26874 +Rp26875 +(I1 +(I7 +tp26876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26877 +tp26878 +bsa(dp26879 +g4 +g5 +(g6 +(I0 +tp26880 +g8 +tp26881 +Rp26882 +(I1 +(I7 +tp26883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26884 +tp26885 +bsa(dp26886 +g4 +g5 +(g6 +(I0 +tp26887 +g8 +tp26888 +Rp26889 +(I1 +(I7 +tp26890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26891 +tp26892 +bsa(dp26893 +g4 +g5 +(g6 +(I0 +tp26894 +g8 +tp26895 +Rp26896 +(I1 +(I7 +tp26897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26898 +tp26899 +bsa(dp26900 +g4 +g5 +(g6 +(I0 +tp26901 +g8 +tp26902 +Rp26903 +(I1 +(I7 +tp26904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26905 +tp26906 +bsa(dp26907 +g4 +g5 +(g6 +(I0 +tp26908 +g8 +tp26909 +Rp26910 +(I1 +(I7 +tp26911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26912 +tp26913 +bsa(dp26914 +g4 +g5 +(g6 +(I0 +tp26915 +g8 +tp26916 +Rp26917 +(I1 +(I7 +tp26918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26919 +tp26920 +bsa(dp26921 +g4 +g5 +(g6 +(I0 +tp26922 +g8 +tp26923 +Rp26924 +(I1 +(I7 +tp26925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26926 +tp26927 +bsa(dp26928 +g4 +g5 +(g6 +(I0 +tp26929 +g8 +tp26930 +Rp26931 +(I1 +(I7 +tp26932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26933 +tp26934 +bsa(dp26935 +g4 +g5 +(g6 +(I0 +tp26936 +g8 +tp26937 +Rp26938 +(I1 +(I7 +tp26939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26940 +tp26941 +bsa(dp26942 +g4 +g5 +(g6 +(I0 +tp26943 +g8 +tp26944 +Rp26945 +(I1 +(I7 +tp26946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26947 +tp26948 +bsa(dp26949 +g4 +g5 +(g6 +(I0 +tp26950 +g8 +tp26951 +Rp26952 +(I1 +(I7 +tp26953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p26954 +tp26955 +bsa(dp26956 +g4 +g5 +(g6 +(I0 +tp26957 +g8 +tp26958 +Rp26959 +(I1 +(I7 +tp26960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p26961 +tp26962 +bsa(dp26963 +g4 +g5 +(g6 +(I0 +tp26964 +g8 +tp26965 +Rp26966 +(I1 +(I7 +tp26967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26968 +tp26969 +bsa(dp26970 +g4 +g5 +(g6 +(I0 +tp26971 +g8 +tp26972 +Rp26973 +(I1 +(I7 +tp26974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26975 +tp26976 +bsa(dp26977 +g4 +g5 +(g6 +(I0 +tp26978 +g8 +tp26979 +Rp26980 +(I1 +(I7 +tp26981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26982 +tp26983 +bsa(dp26984 +g4 +g5 +(g6 +(I0 +tp26985 +g8 +tp26986 +Rp26987 +(I1 +(I7 +tp26988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26989 +tp26990 +bsa(dp26991 +g4 +g5 +(g6 +(I0 +tp26992 +g8 +tp26993 +Rp26994 +(I1 +(I7 +tp26995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p26996 +tp26997 +bsa(dp26998 +g4 +g5 +(g6 +(I0 +tp26999 +g8 +tp27000 +Rp27001 +(I1 +(I7 +tp27002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27003 +tp27004 +bsa(dp27005 +g4 +g5 +(g6 +(I0 +tp27006 +g8 +tp27007 +Rp27008 +(I1 +(I7 +tp27009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27010 +tp27011 +bsa(dp27012 +g4 +g5 +(g6 +(I0 +tp27013 +g8 +tp27014 +Rp27015 +(I1 +(I7 +tp27016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27017 +tp27018 +bsa(dp27019 +g4 +g5 +(g6 +(I0 +tp27020 +g8 +tp27021 +Rp27022 +(I1 +(I7 +tp27023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27024 +tp27025 +bsa(dp27026 +g4 +g5 +(g6 +(I0 +tp27027 +g8 +tp27028 +Rp27029 +(I1 +(I7 +tp27030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27031 +tp27032 +bsa(dp27033 +g4 +g5 +(g6 +(I0 +tp27034 +g8 +tp27035 +Rp27036 +(I1 +(I7 +tp27037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27038 +tp27039 +bsa(dp27040 +g4 +g5 +(g6 +(I0 +tp27041 +g8 +tp27042 +Rp27043 +(I1 +(I7 +tp27044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27045 +tp27046 +bsa(dp27047 +g4 +g5 +(g6 +(I0 +tp27048 +g8 +tp27049 +Rp27050 +(I1 +(I7 +tp27051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27052 +tp27053 +bsa(dp27054 +g4 +g5 +(g6 +(I0 +tp27055 +g8 +tp27056 +Rp27057 +(I1 +(I7 +tp27058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27059 +tp27060 +bsa(dp27061 +g4 +g5 +(g6 +(I0 +tp27062 +g8 +tp27063 +Rp27064 +(I1 +(I7 +tp27065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27066 +tp27067 +bsa(dp27068 +g4 +g5 +(g6 +(I0 +tp27069 +g8 +tp27070 +Rp27071 +(I1 +(I7 +tp27072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27073 +tp27074 +bsa(dp27075 +g4 +g5 +(g6 +(I0 +tp27076 +g8 +tp27077 +Rp27078 +(I1 +(I7 +tp27079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27080 +tp27081 +bsa(dp27082 +g4 +g5 +(g6 +(I0 +tp27083 +g8 +tp27084 +Rp27085 +(I1 +(I7 +tp27086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27087 +tp27088 +bsa(dp27089 +g4 +g5 +(g6 +(I0 +tp27090 +g8 +tp27091 +Rp27092 +(I1 +(I7 +tp27093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27094 +tp27095 +bsa(dp27096 +g4 +g5 +(g6 +(I0 +tp27097 +g8 +tp27098 +Rp27099 +(I1 +(I7 +tp27100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27101 +tp27102 +bsa(dp27103 +g4 +g5 +(g6 +(I0 +tp27104 +g8 +tp27105 +Rp27106 +(I1 +(I7 +tp27107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27108 +tp27109 +bsa(dp27110 +g4 +g5 +(g6 +(I0 +tp27111 +g8 +tp27112 +Rp27113 +(I1 +(I7 +tp27114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27115 +tp27116 +bsa(dp27117 +g4 +g5 +(g6 +(I0 +tp27118 +g8 +tp27119 +Rp27120 +(I1 +(I7 +tp27121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27122 +tp27123 +bsa(dp27124 +g4 +g5 +(g6 +(I0 +tp27125 +g8 +tp27126 +Rp27127 +(I1 +(I7 +tp27128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27129 +tp27130 +bsa(dp27131 +g4 +g5 +(g6 +(I0 +tp27132 +g8 +tp27133 +Rp27134 +(I1 +(I7 +tp27135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27136 +tp27137 +bsa(dp27138 +g4 +g5 +(g6 +(I0 +tp27139 +g8 +tp27140 +Rp27141 +(I1 +(I7 +tp27142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27143 +tp27144 +bsa(dp27145 +g4 +g5 +(g6 +(I0 +tp27146 +g8 +tp27147 +Rp27148 +(I1 +(I7 +tp27149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27150 +tp27151 +bsa(dp27152 +g4 +g5 +(g6 +(I0 +tp27153 +g8 +tp27154 +Rp27155 +(I1 +(I7 +tp27156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27157 +tp27158 +bsa(dp27159 +g4 +g5 +(g6 +(I0 +tp27160 +g8 +tp27161 +Rp27162 +(I1 +(I7 +tp27163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27164 +tp27165 +bsa(dp27166 +g4 +g5 +(g6 +(I0 +tp27167 +g8 +tp27168 +Rp27169 +(I1 +(I7 +tp27170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27171 +tp27172 +bsa(dp27173 +g4 +g5 +(g6 +(I0 +tp27174 +g8 +tp27175 +Rp27176 +(I1 +(I7 +tp27177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27178 +tp27179 +bsa(dp27180 +g4 +g5 +(g6 +(I0 +tp27181 +g8 +tp27182 +Rp27183 +(I1 +(I7 +tp27184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27185 +tp27186 +bsa(dp27187 +g4 +g5 +(g6 +(I0 +tp27188 +g8 +tp27189 +Rp27190 +(I1 +(I7 +tp27191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27192 +tp27193 +bsa(dp27194 +g4 +g5 +(g6 +(I0 +tp27195 +g8 +tp27196 +Rp27197 +(I1 +(I7 +tp27198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27199 +tp27200 +bsa(dp27201 +g4 +g5 +(g6 +(I0 +tp27202 +g8 +tp27203 +Rp27204 +(I1 +(I7 +tp27205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27206 +tp27207 +bsa(dp27208 +g4 +g5 +(g6 +(I0 +tp27209 +g8 +tp27210 +Rp27211 +(I1 +(I7 +tp27212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27213 +tp27214 +bsa(dp27215 +g4 +g5 +(g6 +(I0 +tp27216 +g8 +tp27217 +Rp27218 +(I1 +(I7 +tp27219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27220 +tp27221 +bsa(dp27222 +g4 +g5 +(g6 +(I0 +tp27223 +g8 +tp27224 +Rp27225 +(I1 +(I7 +tp27226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27227 +tp27228 +bsa(dp27229 +g4 +g5 +(g6 +(I0 +tp27230 +g8 +tp27231 +Rp27232 +(I1 +(I7 +tp27233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27234 +tp27235 +bsa(dp27236 +g4 +g5 +(g6 +(I0 +tp27237 +g8 +tp27238 +Rp27239 +(I1 +(I7 +tp27240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27241 +tp27242 +bsa(dp27243 +g4 +g5 +(g6 +(I0 +tp27244 +g8 +tp27245 +Rp27246 +(I1 +(I7 +tp27247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27248 +tp27249 +bsa(dp27250 +g4 +g5 +(g6 +(I0 +tp27251 +g8 +tp27252 +Rp27253 +(I1 +(I7 +tp27254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27255 +tp27256 +bsa(dp27257 +g4 +g5 +(g6 +(I0 +tp27258 +g8 +tp27259 +Rp27260 +(I1 +(I7 +tp27261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27262 +tp27263 +bsa(dp27264 +g4 +g5 +(g6 +(I0 +tp27265 +g8 +tp27266 +Rp27267 +(I1 +(I7 +tp27268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27269 +tp27270 +bsa(dp27271 +g4 +g5 +(g6 +(I0 +tp27272 +g8 +tp27273 +Rp27274 +(I1 +(I7 +tp27275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27276 +tp27277 +bsa(dp27278 +g4 +g5 +(g6 +(I0 +tp27279 +g8 +tp27280 +Rp27281 +(I1 +(I7 +tp27282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27283 +tp27284 +bsa(dp27285 +g4 +g5 +(g6 +(I0 +tp27286 +g8 +tp27287 +Rp27288 +(I1 +(I7 +tp27289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27290 +tp27291 +bsa(dp27292 +g4 +g5 +(g6 +(I0 +tp27293 +g8 +tp27294 +Rp27295 +(I1 +(I7 +tp27296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27297 +tp27298 +bsa(dp27299 +g4 +g5 +(g6 +(I0 +tp27300 +g8 +tp27301 +Rp27302 +(I1 +(I7 +tp27303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27304 +tp27305 +bsa(dp27306 +g4 +g5 +(g6 +(I0 +tp27307 +g8 +tp27308 +Rp27309 +(I1 +(I7 +tp27310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27311 +tp27312 +bsa(dp27313 +g4 +g5 +(g6 +(I0 +tp27314 +g8 +tp27315 +Rp27316 +(I1 +(I7 +tp27317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27318 +tp27319 +bsa(dp27320 +g4 +g5 +(g6 +(I0 +tp27321 +g8 +tp27322 +Rp27323 +(I1 +(I7 +tp27324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27325 +tp27326 +bsa(dp27327 +g4 +g5 +(g6 +(I0 +tp27328 +g8 +tp27329 +Rp27330 +(I1 +(I7 +tp27331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27332 +tp27333 +bsa(dp27334 +g4 +g5 +(g6 +(I0 +tp27335 +g8 +tp27336 +Rp27337 +(I1 +(I7 +tp27338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27339 +tp27340 +bsa(dp27341 +g4 +g5 +(g6 +(I0 +tp27342 +g8 +tp27343 +Rp27344 +(I1 +(I7 +tp27345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27346 +tp27347 +bsa(dp27348 +g4 +g5 +(g6 +(I0 +tp27349 +g8 +tp27350 +Rp27351 +(I1 +(I7 +tp27352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27353 +tp27354 +bsa(dp27355 +g4 +g5 +(g6 +(I0 +tp27356 +g8 +tp27357 +Rp27358 +(I1 +(I7 +tp27359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27360 +tp27361 +bsa(dp27362 +g4 +g5 +(g6 +(I0 +tp27363 +g8 +tp27364 +Rp27365 +(I1 +(I7 +tp27366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27367 +tp27368 +bsa(dp27369 +g4 +g5 +(g6 +(I0 +tp27370 +g8 +tp27371 +Rp27372 +(I1 +(I7 +tp27373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27374 +tp27375 +bsa(dp27376 +g4 +g5 +(g6 +(I0 +tp27377 +g8 +tp27378 +Rp27379 +(I1 +(I7 +tp27380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27381 +tp27382 +bsa(dp27383 +g4 +g5 +(g6 +(I0 +tp27384 +g8 +tp27385 +Rp27386 +(I1 +(I7 +tp27387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27388 +tp27389 +bsa(dp27390 +g4 +g5 +(g6 +(I0 +tp27391 +g8 +tp27392 +Rp27393 +(I1 +(I7 +tp27394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27395 +tp27396 +bsa(dp27397 +g4 +g5 +(g6 +(I0 +tp27398 +g8 +tp27399 +Rp27400 +(I1 +(I7 +tp27401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27402 +tp27403 +bsa(dp27404 +g4 +g5 +(g6 +(I0 +tp27405 +g8 +tp27406 +Rp27407 +(I1 +(I7 +tp27408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27409 +tp27410 +bsa(dp27411 +g4 +g5 +(g6 +(I0 +tp27412 +g8 +tp27413 +Rp27414 +(I1 +(I7 +tp27415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27416 +tp27417 +bsa(dp27418 +g4 +g5 +(g6 +(I0 +tp27419 +g8 +tp27420 +Rp27421 +(I1 +(I7 +tp27422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27423 +tp27424 +bsa(dp27425 +g4 +g5 +(g6 +(I0 +tp27426 +g8 +tp27427 +Rp27428 +(I1 +(I7 +tp27429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27430 +tp27431 +bsa(dp27432 +g4 +g5 +(g6 +(I0 +tp27433 +g8 +tp27434 +Rp27435 +(I1 +(I7 +tp27436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27437 +tp27438 +bsa(dp27439 +g4 +g5 +(g6 +(I0 +tp27440 +g8 +tp27441 +Rp27442 +(I1 +(I7 +tp27443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27444 +tp27445 +bsa(dp27446 +g4 +g5 +(g6 +(I0 +tp27447 +g8 +tp27448 +Rp27449 +(I1 +(I7 +tp27450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27451 +tp27452 +bsa(dp27453 +g4 +g5 +(g6 +(I0 +tp27454 +g8 +tp27455 +Rp27456 +(I1 +(I7 +tp27457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27458 +tp27459 +bsa(dp27460 +g4 +g5 +(g6 +(I0 +tp27461 +g8 +tp27462 +Rp27463 +(I1 +(I7 +tp27464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27465 +tp27466 +bsa(dp27467 +g4 +g5 +(g6 +(I0 +tp27468 +g8 +tp27469 +Rp27470 +(I1 +(I7 +tp27471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27472 +tp27473 +bsa(dp27474 +g4 +g5 +(g6 +(I0 +tp27475 +g8 +tp27476 +Rp27477 +(I1 +(I7 +tp27478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27479 +tp27480 +bsa(dp27481 +g4 +g5 +(g6 +(I0 +tp27482 +g8 +tp27483 +Rp27484 +(I1 +(I7 +tp27485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27486 +tp27487 +bsa(dp27488 +g4 +g5 +(g6 +(I0 +tp27489 +g8 +tp27490 +Rp27491 +(I1 +(I7 +tp27492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27493 +tp27494 +bsa(dp27495 +g4 +g5 +(g6 +(I0 +tp27496 +g8 +tp27497 +Rp27498 +(I1 +(I7 +tp27499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27500 +tp27501 +bsa(dp27502 +g4 +g5 +(g6 +(I0 +tp27503 +g8 +tp27504 +Rp27505 +(I1 +(I7 +tp27506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27507 +tp27508 +bsa(dp27509 +g4 +g5 +(g6 +(I0 +tp27510 +g8 +tp27511 +Rp27512 +(I1 +(I7 +tp27513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27514 +tp27515 +bsa(dp27516 +g4 +g5 +(g6 +(I0 +tp27517 +g8 +tp27518 +Rp27519 +(I1 +(I7 +tp27520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27521 +tp27522 +bsa(dp27523 +g4 +g5 +(g6 +(I0 +tp27524 +g8 +tp27525 +Rp27526 +(I1 +(I7 +tp27527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27528 +tp27529 +bsa(dp27530 +g4 +g5 +(g6 +(I0 +tp27531 +g8 +tp27532 +Rp27533 +(I1 +(I7 +tp27534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27535 +tp27536 +bsa(dp27537 +g4 +g5 +(g6 +(I0 +tp27538 +g8 +tp27539 +Rp27540 +(I1 +(I7 +tp27541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27542 +tp27543 +bsa(dp27544 +g4 +g5 +(g6 +(I0 +tp27545 +g8 +tp27546 +Rp27547 +(I1 +(I7 +tp27548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27549 +tp27550 +bsa(dp27551 +g4 +g5 +(g6 +(I0 +tp27552 +g8 +tp27553 +Rp27554 +(I1 +(I7 +tp27555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27556 +tp27557 +bsa(dp27558 +g4 +g5 +(g6 +(I0 +tp27559 +g8 +tp27560 +Rp27561 +(I1 +(I7 +tp27562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27563 +tp27564 +bsa(dp27565 +g4 +g5 +(g6 +(I0 +tp27566 +g8 +tp27567 +Rp27568 +(I1 +(I7 +tp27569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27570 +tp27571 +bsa(dp27572 +g4 +g5 +(g6 +(I0 +tp27573 +g8 +tp27574 +Rp27575 +(I1 +(I7 +tp27576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27577 +tp27578 +bsa(dp27579 +g4 +g5 +(g6 +(I0 +tp27580 +g8 +tp27581 +Rp27582 +(I1 +(I7 +tp27583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27584 +tp27585 +bsa(dp27586 +g4 +g5 +(g6 +(I0 +tp27587 +g8 +tp27588 +Rp27589 +(I1 +(I7 +tp27590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27591 +tp27592 +bsa(dp27593 +g4 +g5 +(g6 +(I0 +tp27594 +g8 +tp27595 +Rp27596 +(I1 +(I7 +tp27597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27598 +tp27599 +bsa(dp27600 +g4 +g5 +(g6 +(I0 +tp27601 +g8 +tp27602 +Rp27603 +(I1 +(I7 +tp27604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27605 +tp27606 +bsa(dp27607 +g4 +g5 +(g6 +(I0 +tp27608 +g8 +tp27609 +Rp27610 +(I1 +(I7 +tp27611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27612 +tp27613 +bsa(dp27614 +g4 +g5 +(g6 +(I0 +tp27615 +g8 +tp27616 +Rp27617 +(I1 +(I7 +tp27618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27619 +tp27620 +bsa(dp27621 +g4 +g5 +(g6 +(I0 +tp27622 +g8 +tp27623 +Rp27624 +(I1 +(I7 +tp27625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27626 +tp27627 +bsa(dp27628 +g4 +g5 +(g6 +(I0 +tp27629 +g8 +tp27630 +Rp27631 +(I1 +(I7 +tp27632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27633 +tp27634 +bsa(dp27635 +g4 +g5 +(g6 +(I0 +tp27636 +g8 +tp27637 +Rp27638 +(I1 +(I7 +tp27639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27640 +tp27641 +bsa(dp27642 +g4 +g5 +(g6 +(I0 +tp27643 +g8 +tp27644 +Rp27645 +(I1 +(I7 +tp27646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27647 +tp27648 +bsa(dp27649 +g4 +g5 +(g6 +(I0 +tp27650 +g8 +tp27651 +Rp27652 +(I1 +(I7 +tp27653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27654 +tp27655 +bsa(dp27656 +g4 +g5 +(g6 +(I0 +tp27657 +g8 +tp27658 +Rp27659 +(I1 +(I7 +tp27660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27661 +tp27662 +bsa(dp27663 +g4 +g5 +(g6 +(I0 +tp27664 +g8 +tp27665 +Rp27666 +(I1 +(I7 +tp27667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27668 +tp27669 +bsa(dp27670 +g4 +g5 +(g6 +(I0 +tp27671 +g8 +tp27672 +Rp27673 +(I1 +(I7 +tp27674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27675 +tp27676 +bsa(dp27677 +g4 +g5 +(g6 +(I0 +tp27678 +g8 +tp27679 +Rp27680 +(I1 +(I7 +tp27681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27682 +tp27683 +bsa(dp27684 +g4 +g5 +(g6 +(I0 +tp27685 +g8 +tp27686 +Rp27687 +(I1 +(I7 +tp27688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27689 +tp27690 +bsa(dp27691 +g4 +g5 +(g6 +(I0 +tp27692 +g8 +tp27693 +Rp27694 +(I1 +(I7 +tp27695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27696 +tp27697 +bsa(dp27698 +g4 +g5 +(g6 +(I0 +tp27699 +g8 +tp27700 +Rp27701 +(I1 +(I7 +tp27702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27703 +tp27704 +bsa(dp27705 +g4 +g5 +(g6 +(I0 +tp27706 +g8 +tp27707 +Rp27708 +(I1 +(I7 +tp27709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27710 +tp27711 +bsa(dp27712 +g4 +g5 +(g6 +(I0 +tp27713 +g8 +tp27714 +Rp27715 +(I1 +(I7 +tp27716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27717 +tp27718 +bsa(dp27719 +g4 +g5 +(g6 +(I0 +tp27720 +g8 +tp27721 +Rp27722 +(I1 +(I7 +tp27723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27724 +tp27725 +bsa(dp27726 +g4 +g5 +(g6 +(I0 +tp27727 +g8 +tp27728 +Rp27729 +(I1 +(I7 +tp27730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27731 +tp27732 +bsa(dp27733 +g4 +g5 +(g6 +(I0 +tp27734 +g8 +tp27735 +Rp27736 +(I1 +(I7 +tp27737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27738 +tp27739 +bsa(dp27740 +g4 +g5 +(g6 +(I0 +tp27741 +g8 +tp27742 +Rp27743 +(I1 +(I7 +tp27744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27745 +tp27746 +bsa(dp27747 +g4 +g5 +(g6 +(I0 +tp27748 +g8 +tp27749 +Rp27750 +(I1 +(I7 +tp27751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27752 +tp27753 +bsa(dp27754 +g4 +g5 +(g6 +(I0 +tp27755 +g8 +tp27756 +Rp27757 +(I1 +(I7 +tp27758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27759 +tp27760 +bsa(dp27761 +g4 +g5 +(g6 +(I0 +tp27762 +g8 +tp27763 +Rp27764 +(I1 +(I7 +tp27765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27766 +tp27767 +bsa(dp27768 +g4 +g5 +(g6 +(I0 +tp27769 +g8 +tp27770 +Rp27771 +(I1 +(I7 +tp27772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27773 +tp27774 +bsa(dp27775 +g4 +g5 +(g6 +(I0 +tp27776 +g8 +tp27777 +Rp27778 +(I1 +(I7 +tp27779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27780 +tp27781 +bsa(dp27782 +g4 +g5 +(g6 +(I0 +tp27783 +g8 +tp27784 +Rp27785 +(I1 +(I7 +tp27786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27787 +tp27788 +bsa(dp27789 +g4 +g5 +(g6 +(I0 +tp27790 +g8 +tp27791 +Rp27792 +(I1 +(I7 +tp27793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27794 +tp27795 +bsa(dp27796 +g4 +g5 +(g6 +(I0 +tp27797 +g8 +tp27798 +Rp27799 +(I1 +(I7 +tp27800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27801 +tp27802 +bsa(dp27803 +g4 +g5 +(g6 +(I0 +tp27804 +g8 +tp27805 +Rp27806 +(I1 +(I7 +tp27807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27808 +tp27809 +bsa(dp27810 +g4 +g5 +(g6 +(I0 +tp27811 +g8 +tp27812 +Rp27813 +(I1 +(I7 +tp27814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27815 +tp27816 +bsa(dp27817 +g4 +g5 +(g6 +(I0 +tp27818 +g8 +tp27819 +Rp27820 +(I1 +(I7 +tp27821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27822 +tp27823 +bsa(dp27824 +g4 +g5 +(g6 +(I0 +tp27825 +g8 +tp27826 +Rp27827 +(I1 +(I7 +tp27828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27829 +tp27830 +bsa(dp27831 +g4 +g5 +(g6 +(I0 +tp27832 +g8 +tp27833 +Rp27834 +(I1 +(I7 +tp27835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27836 +tp27837 +bsa(dp27838 +g4 +g5 +(g6 +(I0 +tp27839 +g8 +tp27840 +Rp27841 +(I1 +(I7 +tp27842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27843 +tp27844 +bsa(dp27845 +g4 +g5 +(g6 +(I0 +tp27846 +g8 +tp27847 +Rp27848 +(I1 +(I7 +tp27849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27850 +tp27851 +bsa(dp27852 +g4 +g5 +(g6 +(I0 +tp27853 +g8 +tp27854 +Rp27855 +(I1 +(I7 +tp27856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27857 +tp27858 +bsa(dp27859 +g4 +g5 +(g6 +(I0 +tp27860 +g8 +tp27861 +Rp27862 +(I1 +(I7 +tp27863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27864 +tp27865 +bsa(dp27866 +g4 +g5 +(g6 +(I0 +tp27867 +g8 +tp27868 +Rp27869 +(I1 +(I7 +tp27870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27871 +tp27872 +bsa(dp27873 +g4 +g5 +(g6 +(I0 +tp27874 +g8 +tp27875 +Rp27876 +(I1 +(I7 +tp27877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27878 +tp27879 +bsa(dp27880 +g4 +g5 +(g6 +(I0 +tp27881 +g8 +tp27882 +Rp27883 +(I1 +(I7 +tp27884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27885 +tp27886 +bsa(dp27887 +g4 +g5 +(g6 +(I0 +tp27888 +g8 +tp27889 +Rp27890 +(I1 +(I7 +tp27891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27892 +tp27893 +bsa(dp27894 +g4 +g5 +(g6 +(I0 +tp27895 +g8 +tp27896 +Rp27897 +(I1 +(I7 +tp27898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27899 +tp27900 +bsa(dp27901 +g4 +g5 +(g6 +(I0 +tp27902 +g8 +tp27903 +Rp27904 +(I1 +(I7 +tp27905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27906 +tp27907 +bsa(dp27908 +g4 +g5 +(g6 +(I0 +tp27909 +g8 +tp27910 +Rp27911 +(I1 +(I7 +tp27912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27913 +tp27914 +bsa(dp27915 +g4 +g5 +(g6 +(I0 +tp27916 +g8 +tp27917 +Rp27918 +(I1 +(I7 +tp27919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27920 +tp27921 +bsa(dp27922 +g4 +g5 +(g6 +(I0 +tp27923 +g8 +tp27924 +Rp27925 +(I1 +(I7 +tp27926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27927 +tp27928 +bsa(dp27929 +g4 +g5 +(g6 +(I0 +tp27930 +g8 +tp27931 +Rp27932 +(I1 +(I7 +tp27933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27934 +tp27935 +bsa(dp27936 +g4 +g5 +(g6 +(I0 +tp27937 +g8 +tp27938 +Rp27939 +(I1 +(I7 +tp27940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27941 +tp27942 +bsa(dp27943 +g4 +g5 +(g6 +(I0 +tp27944 +g8 +tp27945 +Rp27946 +(I1 +(I7 +tp27947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27948 +tp27949 +bsa(dp27950 +g4 +g5 +(g6 +(I0 +tp27951 +g8 +tp27952 +Rp27953 +(I1 +(I7 +tp27954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27955 +tp27956 +bsa(dp27957 +g4 +g5 +(g6 +(I0 +tp27958 +g8 +tp27959 +Rp27960 +(I1 +(I7 +tp27961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27962 +tp27963 +bsa(dp27964 +g4 +g5 +(g6 +(I0 +tp27965 +g8 +tp27966 +Rp27967 +(I1 +(I7 +tp27968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p27969 +tp27970 +bsa(dp27971 +g4 +g5 +(g6 +(I0 +tp27972 +g8 +tp27973 +Rp27974 +(I1 +(I7 +tp27975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p27976 +tp27977 +bsa(dp27978 +g4 +g5 +(g6 +(I0 +tp27979 +g8 +tp27980 +Rp27981 +(I1 +(I7 +tp27982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27983 +tp27984 +bsa(dp27985 +g4 +g5 +(g6 +(I0 +tp27986 +g8 +tp27987 +Rp27988 +(I1 +(I7 +tp27989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27990 +tp27991 +bsa(dp27992 +g4 +g5 +(g6 +(I0 +tp27993 +g8 +tp27994 +Rp27995 +(I1 +(I7 +tp27996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p27997 +tp27998 +bsa(dp27999 +g4 +g5 +(g6 +(I0 +tp28000 +g8 +tp28001 +Rp28002 +(I1 +(I7 +tp28003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28004 +tp28005 +bsa(dp28006 +g4 +g5 +(g6 +(I0 +tp28007 +g8 +tp28008 +Rp28009 +(I1 +(I7 +tp28010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28011 +tp28012 +bsa(dp28013 +g4 +g5 +(g6 +(I0 +tp28014 +g8 +tp28015 +Rp28016 +(I1 +(I7 +tp28017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28018 +tp28019 +bsa(dp28020 +g4 +g5 +(g6 +(I0 +tp28021 +g8 +tp28022 +Rp28023 +(I1 +(I7 +tp28024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28025 +tp28026 +bsa(dp28027 +g4 +g5 +(g6 +(I0 +tp28028 +g8 +tp28029 +Rp28030 +(I1 +(I7 +tp28031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28032 +tp28033 +bsa(dp28034 +g4 +g5 +(g6 +(I0 +tp28035 +g8 +tp28036 +Rp28037 +(I1 +(I7 +tp28038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28039 +tp28040 +bsa(dp28041 +g4 +g5 +(g6 +(I0 +tp28042 +g8 +tp28043 +Rp28044 +(I1 +(I7 +tp28045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28046 +tp28047 +bsa(dp28048 +g4 +g5 +(g6 +(I0 +tp28049 +g8 +tp28050 +Rp28051 +(I1 +(I7 +tp28052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28053 +tp28054 +bsa(dp28055 +g4 +g5 +(g6 +(I0 +tp28056 +g8 +tp28057 +Rp28058 +(I1 +(I7 +tp28059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28060 +tp28061 +bsa(dp28062 +g4 +g5 +(g6 +(I0 +tp28063 +g8 +tp28064 +Rp28065 +(I1 +(I7 +tp28066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28067 +tp28068 +bsa(dp28069 +g4 +g5 +(g6 +(I0 +tp28070 +g8 +tp28071 +Rp28072 +(I1 +(I7 +tp28073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28074 +tp28075 +bsa(dp28076 +g4 +g5 +(g6 +(I0 +tp28077 +g8 +tp28078 +Rp28079 +(I1 +(I7 +tp28080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28081 +tp28082 +bsa(dp28083 +g4 +g5 +(g6 +(I0 +tp28084 +g8 +tp28085 +Rp28086 +(I1 +(I7 +tp28087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28088 +tp28089 +bsa(dp28090 +g4 +g5 +(g6 +(I0 +tp28091 +g8 +tp28092 +Rp28093 +(I1 +(I7 +tp28094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28095 +tp28096 +bsa(dp28097 +g4 +g5 +(g6 +(I0 +tp28098 +g8 +tp28099 +Rp28100 +(I1 +(I7 +tp28101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28102 +tp28103 +bsa(dp28104 +g4 +g5 +(g6 +(I0 +tp28105 +g8 +tp28106 +Rp28107 +(I1 +(I7 +tp28108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28109 +tp28110 +bsa(dp28111 +g4 +g5 +(g6 +(I0 +tp28112 +g8 +tp28113 +Rp28114 +(I1 +(I7 +tp28115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28116 +tp28117 +bsa(dp28118 +g4 +g5 +(g6 +(I0 +tp28119 +g8 +tp28120 +Rp28121 +(I1 +(I7 +tp28122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28123 +tp28124 +bsa(dp28125 +g4 +g5 +(g6 +(I0 +tp28126 +g8 +tp28127 +Rp28128 +(I1 +(I7 +tp28129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28130 +tp28131 +bsa(dp28132 +g4 +g5 +(g6 +(I0 +tp28133 +g8 +tp28134 +Rp28135 +(I1 +(I7 +tp28136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28137 +tp28138 +bsa(dp28139 +g4 +g5 +(g6 +(I0 +tp28140 +g8 +tp28141 +Rp28142 +(I1 +(I7 +tp28143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28144 +tp28145 +bsa(dp28146 +g4 +g5 +(g6 +(I0 +tp28147 +g8 +tp28148 +Rp28149 +(I1 +(I7 +tp28150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28151 +tp28152 +bsa(dp28153 +g4 +g5 +(g6 +(I0 +tp28154 +g8 +tp28155 +Rp28156 +(I1 +(I7 +tp28157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28158 +tp28159 +bsa(dp28160 +g4 +g5 +(g6 +(I0 +tp28161 +g8 +tp28162 +Rp28163 +(I1 +(I7 +tp28164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28165 +tp28166 +bsa(dp28167 +g4 +g5 +(g6 +(I0 +tp28168 +g8 +tp28169 +Rp28170 +(I1 +(I7 +tp28171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28172 +tp28173 +bsa(dp28174 +g4 +g5 +(g6 +(I0 +tp28175 +g8 +tp28176 +Rp28177 +(I1 +(I7 +tp28178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28179 +tp28180 +bsa(dp28181 +g4 +g5 +(g6 +(I0 +tp28182 +g8 +tp28183 +Rp28184 +(I1 +(I7 +tp28185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28186 +tp28187 +bsa(dp28188 +g4 +g5 +(g6 +(I0 +tp28189 +g8 +tp28190 +Rp28191 +(I1 +(I7 +tp28192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28193 +tp28194 +bsa(dp28195 +g4 +g5 +(g6 +(I0 +tp28196 +g8 +tp28197 +Rp28198 +(I1 +(I7 +tp28199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28200 +tp28201 +bsa(dp28202 +g4 +g5 +(g6 +(I0 +tp28203 +g8 +tp28204 +Rp28205 +(I1 +(I7 +tp28206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28207 +tp28208 +bsa(dp28209 +g4 +g5 +(g6 +(I0 +tp28210 +g8 +tp28211 +Rp28212 +(I1 +(I7 +tp28213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28214 +tp28215 +bsa(dp28216 +g4 +g5 +(g6 +(I0 +tp28217 +g8 +tp28218 +Rp28219 +(I1 +(I7 +tp28220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28221 +tp28222 +bsa(dp28223 +g4 +g5 +(g6 +(I0 +tp28224 +g8 +tp28225 +Rp28226 +(I1 +(I7 +tp28227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28228 +tp28229 +bsa(dp28230 +g4 +g5 +(g6 +(I0 +tp28231 +g8 +tp28232 +Rp28233 +(I1 +(I7 +tp28234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28235 +tp28236 +bsa(dp28237 +g4 +g5 +(g6 +(I0 +tp28238 +g8 +tp28239 +Rp28240 +(I1 +(I7 +tp28241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28242 +tp28243 +bsa(dp28244 +g4 +g5 +(g6 +(I0 +tp28245 +g8 +tp28246 +Rp28247 +(I1 +(I7 +tp28248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28249 +tp28250 +bsa(dp28251 +g4 +g5 +(g6 +(I0 +tp28252 +g8 +tp28253 +Rp28254 +(I1 +(I7 +tp28255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28256 +tp28257 +bsa(dp28258 +g4 +g5 +(g6 +(I0 +tp28259 +g8 +tp28260 +Rp28261 +(I1 +(I7 +tp28262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28263 +tp28264 +bsa(dp28265 +g4 +g5 +(g6 +(I0 +tp28266 +g8 +tp28267 +Rp28268 +(I1 +(I7 +tp28269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28270 +tp28271 +bsa(dp28272 +g4 +g5 +(g6 +(I0 +tp28273 +g8 +tp28274 +Rp28275 +(I1 +(I7 +tp28276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28277 +tp28278 +bsa(dp28279 +g4 +g5 +(g6 +(I0 +tp28280 +g8 +tp28281 +Rp28282 +(I1 +(I7 +tp28283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28284 +tp28285 +bsa(dp28286 +g4 +g5 +(g6 +(I0 +tp28287 +g8 +tp28288 +Rp28289 +(I1 +(I7 +tp28290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28291 +tp28292 +bsa(dp28293 +g4 +g5 +(g6 +(I0 +tp28294 +g8 +tp28295 +Rp28296 +(I1 +(I7 +tp28297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28298 +tp28299 +bsa(dp28300 +g4 +g5 +(g6 +(I0 +tp28301 +g8 +tp28302 +Rp28303 +(I1 +(I7 +tp28304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28305 +tp28306 +bsa(dp28307 +g4 +g5 +(g6 +(I0 +tp28308 +g8 +tp28309 +Rp28310 +(I1 +(I7 +tp28311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28312 +tp28313 +bsa(dp28314 +g4 +g5 +(g6 +(I0 +tp28315 +g8 +tp28316 +Rp28317 +(I1 +(I7 +tp28318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28319 +tp28320 +bsa(dp28321 +g4 +g5 +(g6 +(I0 +tp28322 +g8 +tp28323 +Rp28324 +(I1 +(I7 +tp28325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28326 +tp28327 +bsa(dp28328 +g4 +g5 +(g6 +(I0 +tp28329 +g8 +tp28330 +Rp28331 +(I1 +(I7 +tp28332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28333 +tp28334 +bsa(dp28335 +g4 +g5 +(g6 +(I0 +tp28336 +g8 +tp28337 +Rp28338 +(I1 +(I7 +tp28339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28340 +tp28341 +bsa(dp28342 +g4 +g5 +(g6 +(I0 +tp28343 +g8 +tp28344 +Rp28345 +(I1 +(I7 +tp28346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28347 +tp28348 +bsa(dp28349 +g4 +g5 +(g6 +(I0 +tp28350 +g8 +tp28351 +Rp28352 +(I1 +(I7 +tp28353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28354 +tp28355 +bsa(dp28356 +g4 +g5 +(g6 +(I0 +tp28357 +g8 +tp28358 +Rp28359 +(I1 +(I7 +tp28360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28361 +tp28362 +bsa(dp28363 +g4 +g5 +(g6 +(I0 +tp28364 +g8 +tp28365 +Rp28366 +(I1 +(I7 +tp28367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28368 +tp28369 +bsa(dp28370 +g4 +g5 +(g6 +(I0 +tp28371 +g8 +tp28372 +Rp28373 +(I1 +(I7 +tp28374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28375 +tp28376 +bsa(dp28377 +g4 +g5 +(g6 +(I0 +tp28378 +g8 +tp28379 +Rp28380 +(I1 +(I7 +tp28381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28382 +tp28383 +bsa(dp28384 +g4 +g5 +(g6 +(I0 +tp28385 +g8 +tp28386 +Rp28387 +(I1 +(I7 +tp28388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28389 +tp28390 +bsa(dp28391 +g4 +g5 +(g6 +(I0 +tp28392 +g8 +tp28393 +Rp28394 +(I1 +(I7 +tp28395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28396 +tp28397 +bsa(dp28398 +g4 +g5 +(g6 +(I0 +tp28399 +g8 +tp28400 +Rp28401 +(I1 +(I7 +tp28402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28403 +tp28404 +bsa(dp28405 +g4 +g5 +(g6 +(I0 +tp28406 +g8 +tp28407 +Rp28408 +(I1 +(I7 +tp28409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28410 +tp28411 +bsa(dp28412 +g4 +g5 +(g6 +(I0 +tp28413 +g8 +tp28414 +Rp28415 +(I1 +(I7 +tp28416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28417 +tp28418 +bsa(dp28419 +g4 +g5 +(g6 +(I0 +tp28420 +g8 +tp28421 +Rp28422 +(I1 +(I7 +tp28423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28424 +tp28425 +bsa(dp28426 +g4 +g5 +(g6 +(I0 +tp28427 +g8 +tp28428 +Rp28429 +(I1 +(I7 +tp28430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28431 +tp28432 +bsa(dp28433 +g4 +g5 +(g6 +(I0 +tp28434 +g8 +tp28435 +Rp28436 +(I1 +(I7 +tp28437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28438 +tp28439 +bsa(dp28440 +g4 +g5 +(g6 +(I0 +tp28441 +g8 +tp28442 +Rp28443 +(I1 +(I7 +tp28444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28445 +tp28446 +bsa(dp28447 +g4 +g5 +(g6 +(I0 +tp28448 +g8 +tp28449 +Rp28450 +(I1 +(I7 +tp28451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28452 +tp28453 +bsa(dp28454 +g4 +g5 +(g6 +(I0 +tp28455 +g8 +tp28456 +Rp28457 +(I1 +(I7 +tp28458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28459 +tp28460 +bsa(dp28461 +g4 +g5 +(g6 +(I0 +tp28462 +g8 +tp28463 +Rp28464 +(I1 +(I7 +tp28465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28466 +tp28467 +bsa(dp28468 +g4 +g5 +(g6 +(I0 +tp28469 +g8 +tp28470 +Rp28471 +(I1 +(I7 +tp28472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28473 +tp28474 +bsa(dp28475 +g4 +g5 +(g6 +(I0 +tp28476 +g8 +tp28477 +Rp28478 +(I1 +(I7 +tp28479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28480 +tp28481 +bsa(dp28482 +g4 +g5 +(g6 +(I0 +tp28483 +g8 +tp28484 +Rp28485 +(I1 +(I7 +tp28486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28487 +tp28488 +bsa(dp28489 +g4 +g5 +(g6 +(I0 +tp28490 +g8 +tp28491 +Rp28492 +(I1 +(I7 +tp28493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28494 +tp28495 +bsa(dp28496 +g4 +g5 +(g6 +(I0 +tp28497 +g8 +tp28498 +Rp28499 +(I1 +(I7 +tp28500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28501 +tp28502 +bsa(dp28503 +g4 +g5 +(g6 +(I0 +tp28504 +g8 +tp28505 +Rp28506 +(I1 +(I7 +tp28507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28508 +tp28509 +bsa(dp28510 +g4 +g5 +(g6 +(I0 +tp28511 +g8 +tp28512 +Rp28513 +(I1 +(I7 +tp28514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28515 +tp28516 +bsa(dp28517 +g4 +g5 +(g6 +(I0 +tp28518 +g8 +tp28519 +Rp28520 +(I1 +(I7 +tp28521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28522 +tp28523 +bsa(dp28524 +g4 +g5 +(g6 +(I0 +tp28525 +g8 +tp28526 +Rp28527 +(I1 +(I7 +tp28528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28529 +tp28530 +bsa(dp28531 +g4 +g5 +(g6 +(I0 +tp28532 +g8 +tp28533 +Rp28534 +(I1 +(I7 +tp28535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28536 +tp28537 +bsa(dp28538 +g4 +g5 +(g6 +(I0 +tp28539 +g8 +tp28540 +Rp28541 +(I1 +(I7 +tp28542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28543 +tp28544 +bsa(dp28545 +g4 +g5 +(g6 +(I0 +tp28546 +g8 +tp28547 +Rp28548 +(I1 +(I7 +tp28549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28550 +tp28551 +bsa(dp28552 +g4 +g5 +(g6 +(I0 +tp28553 +g8 +tp28554 +Rp28555 +(I1 +(I7 +tp28556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28557 +tp28558 +bsa(dp28559 +g4 +g5 +(g6 +(I0 +tp28560 +g8 +tp28561 +Rp28562 +(I1 +(I7 +tp28563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28564 +tp28565 +bsa(dp28566 +g4 +g5 +(g6 +(I0 +tp28567 +g8 +tp28568 +Rp28569 +(I1 +(I7 +tp28570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28571 +tp28572 +bsa(dp28573 +g4 +g5 +(g6 +(I0 +tp28574 +g8 +tp28575 +Rp28576 +(I1 +(I7 +tp28577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28578 +tp28579 +bsa(dp28580 +g4 +g5 +(g6 +(I0 +tp28581 +g8 +tp28582 +Rp28583 +(I1 +(I7 +tp28584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28585 +tp28586 +bsa(dp28587 +g4 +g5 +(g6 +(I0 +tp28588 +g8 +tp28589 +Rp28590 +(I1 +(I7 +tp28591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28592 +tp28593 +bsa(dp28594 +g4 +g5 +(g6 +(I0 +tp28595 +g8 +tp28596 +Rp28597 +(I1 +(I7 +tp28598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28599 +tp28600 +bsa(dp28601 +g4 +g5 +(g6 +(I0 +tp28602 +g8 +tp28603 +Rp28604 +(I1 +(I7 +tp28605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28606 +tp28607 +bsa(dp28608 +g4 +g5 +(g6 +(I0 +tp28609 +g8 +tp28610 +Rp28611 +(I1 +(I7 +tp28612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28613 +tp28614 +bsa(dp28615 +g4 +g5 +(g6 +(I0 +tp28616 +g8 +tp28617 +Rp28618 +(I1 +(I7 +tp28619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28620 +tp28621 +bsa(dp28622 +g4 +g5 +(g6 +(I0 +tp28623 +g8 +tp28624 +Rp28625 +(I1 +(I7 +tp28626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28627 +tp28628 +bsa(dp28629 +g4 +g5 +(g6 +(I0 +tp28630 +g8 +tp28631 +Rp28632 +(I1 +(I7 +tp28633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28634 +tp28635 +bsa(dp28636 +g4 +g5 +(g6 +(I0 +tp28637 +g8 +tp28638 +Rp28639 +(I1 +(I7 +tp28640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28641 +tp28642 +bsa(dp28643 +g4 +g5 +(g6 +(I0 +tp28644 +g8 +tp28645 +Rp28646 +(I1 +(I7 +tp28647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28648 +tp28649 +bsa(dp28650 +g4 +g5 +(g6 +(I0 +tp28651 +g8 +tp28652 +Rp28653 +(I1 +(I7 +tp28654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28655 +tp28656 +bsa(dp28657 +g4 +g5 +(g6 +(I0 +tp28658 +g8 +tp28659 +Rp28660 +(I1 +(I7 +tp28661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28662 +tp28663 +bsa(dp28664 +g4 +g5 +(g6 +(I0 +tp28665 +g8 +tp28666 +Rp28667 +(I1 +(I7 +tp28668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28669 +tp28670 +bsa(dp28671 +g4 +g5 +(g6 +(I0 +tp28672 +g8 +tp28673 +Rp28674 +(I1 +(I7 +tp28675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28676 +tp28677 +bsa(dp28678 +g4 +g5 +(g6 +(I0 +tp28679 +g8 +tp28680 +Rp28681 +(I1 +(I7 +tp28682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28683 +tp28684 +bsa(dp28685 +g4 +g5 +(g6 +(I0 +tp28686 +g8 +tp28687 +Rp28688 +(I1 +(I7 +tp28689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28690 +tp28691 +bsa(dp28692 +g4 +g5 +(g6 +(I0 +tp28693 +g8 +tp28694 +Rp28695 +(I1 +(I7 +tp28696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28697 +tp28698 +bsa(dp28699 +g4 +g5 +(g6 +(I0 +tp28700 +g8 +tp28701 +Rp28702 +(I1 +(I7 +tp28703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28704 +tp28705 +bsa(dp28706 +g4 +g5 +(g6 +(I0 +tp28707 +g8 +tp28708 +Rp28709 +(I1 +(I7 +tp28710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28711 +tp28712 +bsa(dp28713 +g4 +g5 +(g6 +(I0 +tp28714 +g8 +tp28715 +Rp28716 +(I1 +(I7 +tp28717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28718 +tp28719 +bsa(dp28720 +g4 +g5 +(g6 +(I0 +tp28721 +g8 +tp28722 +Rp28723 +(I1 +(I7 +tp28724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28725 +tp28726 +bsa(dp28727 +g4 +g5 +(g6 +(I0 +tp28728 +g8 +tp28729 +Rp28730 +(I1 +(I7 +tp28731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28732 +tp28733 +bsa(dp28734 +g4 +g5 +(g6 +(I0 +tp28735 +g8 +tp28736 +Rp28737 +(I1 +(I7 +tp28738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28739 +tp28740 +bsa(dp28741 +g4 +g5 +(g6 +(I0 +tp28742 +g8 +tp28743 +Rp28744 +(I1 +(I7 +tp28745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28746 +tp28747 +bsa(dp28748 +g4 +g5 +(g6 +(I0 +tp28749 +g8 +tp28750 +Rp28751 +(I1 +(I7 +tp28752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28753 +tp28754 +bsa(dp28755 +g4 +g5 +(g6 +(I0 +tp28756 +g8 +tp28757 +Rp28758 +(I1 +(I7 +tp28759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28760 +tp28761 +bsa(dp28762 +g4 +g5 +(g6 +(I0 +tp28763 +g8 +tp28764 +Rp28765 +(I1 +(I7 +tp28766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28767 +tp28768 +bsa(dp28769 +g4 +g5 +(g6 +(I0 +tp28770 +g8 +tp28771 +Rp28772 +(I1 +(I7 +tp28773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28774 +tp28775 +bsa(dp28776 +g4 +g5 +(g6 +(I0 +tp28777 +g8 +tp28778 +Rp28779 +(I1 +(I7 +tp28780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28781 +tp28782 +bsa(dp28783 +g4 +g5 +(g6 +(I0 +tp28784 +g8 +tp28785 +Rp28786 +(I1 +(I7 +tp28787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28788 +tp28789 +bsa(dp28790 +g4 +g5 +(g6 +(I0 +tp28791 +g8 +tp28792 +Rp28793 +(I1 +(I7 +tp28794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28795 +tp28796 +bsa(dp28797 +g4 +g5 +(g6 +(I0 +tp28798 +g8 +tp28799 +Rp28800 +(I1 +(I7 +tp28801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28802 +tp28803 +bsa(dp28804 +g4 +g5 +(g6 +(I0 +tp28805 +g8 +tp28806 +Rp28807 +(I1 +(I7 +tp28808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28809 +tp28810 +bsa(dp28811 +g4 +g5 +(g6 +(I0 +tp28812 +g8 +tp28813 +Rp28814 +(I1 +(I7 +tp28815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28816 +tp28817 +bsa(dp28818 +g4 +g5 +(g6 +(I0 +tp28819 +g8 +tp28820 +Rp28821 +(I1 +(I7 +tp28822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28823 +tp28824 +bsa(dp28825 +g4 +g5 +(g6 +(I0 +tp28826 +g8 +tp28827 +Rp28828 +(I1 +(I7 +tp28829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28830 +tp28831 +bsa(dp28832 +g4 +g5 +(g6 +(I0 +tp28833 +g8 +tp28834 +Rp28835 +(I1 +(I7 +tp28836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28837 +tp28838 +bsa(dp28839 +g4 +g5 +(g6 +(I0 +tp28840 +g8 +tp28841 +Rp28842 +(I1 +(I7 +tp28843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28844 +tp28845 +bsa(dp28846 +g4 +g5 +(g6 +(I0 +tp28847 +g8 +tp28848 +Rp28849 +(I1 +(I7 +tp28850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28851 +tp28852 +bsa(dp28853 +g4 +g5 +(g6 +(I0 +tp28854 +g8 +tp28855 +Rp28856 +(I1 +(I7 +tp28857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28858 +tp28859 +bsa(dp28860 +g4 +g5 +(g6 +(I0 +tp28861 +g8 +tp28862 +Rp28863 +(I1 +(I7 +tp28864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28865 +tp28866 +bsa(dp28867 +g4 +g5 +(g6 +(I0 +tp28868 +g8 +tp28869 +Rp28870 +(I1 +(I7 +tp28871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28872 +tp28873 +bsa(dp28874 +g4 +g5 +(g6 +(I0 +tp28875 +g8 +tp28876 +Rp28877 +(I1 +(I7 +tp28878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28879 +tp28880 +bsa(dp28881 +g4 +g5 +(g6 +(I0 +tp28882 +g8 +tp28883 +Rp28884 +(I1 +(I7 +tp28885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28886 +tp28887 +bsa(dp28888 +g4 +g5 +(g6 +(I0 +tp28889 +g8 +tp28890 +Rp28891 +(I1 +(I7 +tp28892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28893 +tp28894 +bsa(dp28895 +g4 +g5 +(g6 +(I0 +tp28896 +g8 +tp28897 +Rp28898 +(I1 +(I7 +tp28899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28900 +tp28901 +bsa(dp28902 +g4 +g5 +(g6 +(I0 +tp28903 +g8 +tp28904 +Rp28905 +(I1 +(I7 +tp28906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28907 +tp28908 +bsa(dp28909 +g4 +g5 +(g6 +(I0 +tp28910 +g8 +tp28911 +Rp28912 +(I1 +(I7 +tp28913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28914 +tp28915 +bsa(dp28916 +g4 +g5 +(g6 +(I0 +tp28917 +g8 +tp28918 +Rp28919 +(I1 +(I7 +tp28920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28921 +tp28922 +bsa(dp28923 +g4 +g5 +(g6 +(I0 +tp28924 +g8 +tp28925 +Rp28926 +(I1 +(I7 +tp28927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28928 +tp28929 +bsa(dp28930 +g4 +g5 +(g6 +(I0 +tp28931 +g8 +tp28932 +Rp28933 +(I1 +(I7 +tp28934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28935 +tp28936 +bsa(dp28937 +g4 +g5 +(g6 +(I0 +tp28938 +g8 +tp28939 +Rp28940 +(I1 +(I7 +tp28941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28942 +tp28943 +bsa(dp28944 +g4 +g5 +(g6 +(I0 +tp28945 +g8 +tp28946 +Rp28947 +(I1 +(I7 +tp28948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28949 +tp28950 +bsa(dp28951 +g4 +g5 +(g6 +(I0 +tp28952 +g8 +tp28953 +Rp28954 +(I1 +(I7 +tp28955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28956 +tp28957 +bsa(dp28958 +g4 +g5 +(g6 +(I0 +tp28959 +g8 +tp28960 +Rp28961 +(I1 +(I7 +tp28962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28963 +tp28964 +bsa(dp28965 +g4 +g5 +(g6 +(I0 +tp28966 +g8 +tp28967 +Rp28968 +(I1 +(I7 +tp28969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28970 +tp28971 +bsa(dp28972 +g4 +g5 +(g6 +(I0 +tp28973 +g8 +tp28974 +Rp28975 +(I1 +(I7 +tp28976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28977 +tp28978 +bsa(dp28979 +g4 +g5 +(g6 +(I0 +tp28980 +g8 +tp28981 +Rp28982 +(I1 +(I7 +tp28983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p28984 +tp28985 +bsa(dp28986 +g4 +g5 +(g6 +(I0 +tp28987 +g8 +tp28988 +Rp28989 +(I1 +(I7 +tp28990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p28991 +tp28992 +bsa(dp28993 +g4 +g5 +(g6 +(I0 +tp28994 +g8 +tp28995 +Rp28996 +(I1 +(I7 +tp28997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p28998 +tp28999 +bsa(dp29000 +g4 +g5 +(g6 +(I0 +tp29001 +g8 +tp29002 +Rp29003 +(I1 +(I7 +tp29004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29005 +tp29006 +bsa(dp29007 +g4 +g5 +(g6 +(I0 +tp29008 +g8 +tp29009 +Rp29010 +(I1 +(I7 +tp29011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29012 +tp29013 +bsa(dp29014 +g4 +g5 +(g6 +(I0 +tp29015 +g8 +tp29016 +Rp29017 +(I1 +(I7 +tp29018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29019 +tp29020 +bsa(dp29021 +g4 +g5 +(g6 +(I0 +tp29022 +g8 +tp29023 +Rp29024 +(I1 +(I7 +tp29025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29026 +tp29027 +bsa(dp29028 +g4 +g5 +(g6 +(I0 +tp29029 +g8 +tp29030 +Rp29031 +(I1 +(I7 +tp29032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29033 +tp29034 +bsa(dp29035 +g4 +g5 +(g6 +(I0 +tp29036 +g8 +tp29037 +Rp29038 +(I1 +(I7 +tp29039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29040 +tp29041 +bsa(dp29042 +g4 +g5 +(g6 +(I0 +tp29043 +g8 +tp29044 +Rp29045 +(I1 +(I7 +tp29046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29047 +tp29048 +bsa(dp29049 +g4 +g5 +(g6 +(I0 +tp29050 +g8 +tp29051 +Rp29052 +(I1 +(I7 +tp29053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29054 +tp29055 +bsa(dp29056 +g4 +g5 +(g6 +(I0 +tp29057 +g8 +tp29058 +Rp29059 +(I1 +(I7 +tp29060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29061 +tp29062 +bsa(dp29063 +g4 +g5 +(g6 +(I0 +tp29064 +g8 +tp29065 +Rp29066 +(I1 +(I7 +tp29067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29068 +tp29069 +bsa(dp29070 +g4 +g5 +(g6 +(I0 +tp29071 +g8 +tp29072 +Rp29073 +(I1 +(I7 +tp29074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29075 +tp29076 +bsa(dp29077 +g4 +g5 +(g6 +(I0 +tp29078 +g8 +tp29079 +Rp29080 +(I1 +(I7 +tp29081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29082 +tp29083 +bsa(dp29084 +g4 +g5 +(g6 +(I0 +tp29085 +g8 +tp29086 +Rp29087 +(I1 +(I7 +tp29088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29089 +tp29090 +bsa(dp29091 +g4 +g5 +(g6 +(I0 +tp29092 +g8 +tp29093 +Rp29094 +(I1 +(I7 +tp29095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29096 +tp29097 +bsa(dp29098 +g4 +g5 +(g6 +(I0 +tp29099 +g8 +tp29100 +Rp29101 +(I1 +(I7 +tp29102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29103 +tp29104 +bsa(dp29105 +g4 +g5 +(g6 +(I0 +tp29106 +g8 +tp29107 +Rp29108 +(I1 +(I7 +tp29109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29110 +tp29111 +bsa(dp29112 +g4 +g5 +(g6 +(I0 +tp29113 +g8 +tp29114 +Rp29115 +(I1 +(I7 +tp29116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29117 +tp29118 +bsa(dp29119 +g4 +g5 +(g6 +(I0 +tp29120 +g8 +tp29121 +Rp29122 +(I1 +(I7 +tp29123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29124 +tp29125 +bsa(dp29126 +g4 +g5 +(g6 +(I0 +tp29127 +g8 +tp29128 +Rp29129 +(I1 +(I7 +tp29130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29131 +tp29132 +bsa(dp29133 +g4 +g5 +(g6 +(I0 +tp29134 +g8 +tp29135 +Rp29136 +(I1 +(I7 +tp29137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29138 +tp29139 +bsa(dp29140 +g4 +g5 +(g6 +(I0 +tp29141 +g8 +tp29142 +Rp29143 +(I1 +(I7 +tp29144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29145 +tp29146 +bsa(dp29147 +g4 +g5 +(g6 +(I0 +tp29148 +g8 +tp29149 +Rp29150 +(I1 +(I7 +tp29151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29152 +tp29153 +bsa(dp29154 +g4 +g5 +(g6 +(I0 +tp29155 +g8 +tp29156 +Rp29157 +(I1 +(I7 +tp29158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29159 +tp29160 +bsa(dp29161 +g4 +g5 +(g6 +(I0 +tp29162 +g8 +tp29163 +Rp29164 +(I1 +(I7 +tp29165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29166 +tp29167 +bsa(dp29168 +g4 +g5 +(g6 +(I0 +tp29169 +g8 +tp29170 +Rp29171 +(I1 +(I7 +tp29172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29173 +tp29174 +bsa(dp29175 +g4 +g5 +(g6 +(I0 +tp29176 +g8 +tp29177 +Rp29178 +(I1 +(I7 +tp29179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29180 +tp29181 +bsa(dp29182 +g4 +g5 +(g6 +(I0 +tp29183 +g8 +tp29184 +Rp29185 +(I1 +(I7 +tp29186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29187 +tp29188 +bsa(dp29189 +g4 +g5 +(g6 +(I0 +tp29190 +g8 +tp29191 +Rp29192 +(I1 +(I7 +tp29193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29194 +tp29195 +bsa(dp29196 +g4 +g5 +(g6 +(I0 +tp29197 +g8 +tp29198 +Rp29199 +(I1 +(I7 +tp29200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29201 +tp29202 +bsa(dp29203 +g4 +g5 +(g6 +(I0 +tp29204 +g8 +tp29205 +Rp29206 +(I1 +(I7 +tp29207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29208 +tp29209 +bsa(dp29210 +g4 +g5 +(g6 +(I0 +tp29211 +g8 +tp29212 +Rp29213 +(I1 +(I7 +tp29214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29215 +tp29216 +bsa(dp29217 +g4 +g5 +(g6 +(I0 +tp29218 +g8 +tp29219 +Rp29220 +(I1 +(I7 +tp29221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29222 +tp29223 +bsa(dp29224 +g4 +g5 +(g6 +(I0 +tp29225 +g8 +tp29226 +Rp29227 +(I1 +(I7 +tp29228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29229 +tp29230 +bsa(dp29231 +g4 +g5 +(g6 +(I0 +tp29232 +g8 +tp29233 +Rp29234 +(I1 +(I7 +tp29235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29236 +tp29237 +bsa(dp29238 +g4 +g5 +(g6 +(I0 +tp29239 +g8 +tp29240 +Rp29241 +(I1 +(I7 +tp29242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29243 +tp29244 +bsa(dp29245 +g4 +g5 +(g6 +(I0 +tp29246 +g8 +tp29247 +Rp29248 +(I1 +(I7 +tp29249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29250 +tp29251 +bsa(dp29252 +g4 +g5 +(g6 +(I0 +tp29253 +g8 +tp29254 +Rp29255 +(I1 +(I7 +tp29256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29257 +tp29258 +bsa(dp29259 +g4 +g5 +(g6 +(I0 +tp29260 +g8 +tp29261 +Rp29262 +(I1 +(I7 +tp29263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29264 +tp29265 +bsa(dp29266 +g4 +g5 +(g6 +(I0 +tp29267 +g8 +tp29268 +Rp29269 +(I1 +(I7 +tp29270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29271 +tp29272 +bsa(dp29273 +g4 +g5 +(g6 +(I0 +tp29274 +g8 +tp29275 +Rp29276 +(I1 +(I7 +tp29277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29278 +tp29279 +bsa(dp29280 +g4 +g5 +(g6 +(I0 +tp29281 +g8 +tp29282 +Rp29283 +(I1 +(I7 +tp29284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29285 +tp29286 +bsa(dp29287 +g4 +g5 +(g6 +(I0 +tp29288 +g8 +tp29289 +Rp29290 +(I1 +(I7 +tp29291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29292 +tp29293 +bsa(dp29294 +g4 +g5 +(g6 +(I0 +tp29295 +g8 +tp29296 +Rp29297 +(I1 +(I7 +tp29298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29299 +tp29300 +bsa(dp29301 +g4 +g5 +(g6 +(I0 +tp29302 +g8 +tp29303 +Rp29304 +(I1 +(I7 +tp29305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29306 +tp29307 +bsa(dp29308 +g4 +g5 +(g6 +(I0 +tp29309 +g8 +tp29310 +Rp29311 +(I1 +(I7 +tp29312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29313 +tp29314 +bsa(dp29315 +g4 +g5 +(g6 +(I0 +tp29316 +g8 +tp29317 +Rp29318 +(I1 +(I7 +tp29319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29320 +tp29321 +bsa(dp29322 +g4 +g5 +(g6 +(I0 +tp29323 +g8 +tp29324 +Rp29325 +(I1 +(I7 +tp29326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29327 +tp29328 +bsa(dp29329 +g4 +g5 +(g6 +(I0 +tp29330 +g8 +tp29331 +Rp29332 +(I1 +(I7 +tp29333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29334 +tp29335 +bsa(dp29336 +g4 +g5 +(g6 +(I0 +tp29337 +g8 +tp29338 +Rp29339 +(I1 +(I7 +tp29340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29341 +tp29342 +bsa(dp29343 +g4 +g5 +(g6 +(I0 +tp29344 +g8 +tp29345 +Rp29346 +(I1 +(I7 +tp29347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29348 +tp29349 +bsa(dp29350 +g4 +g5 +(g6 +(I0 +tp29351 +g8 +tp29352 +Rp29353 +(I1 +(I7 +tp29354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29355 +tp29356 +bsa(dp29357 +g4 +g5 +(g6 +(I0 +tp29358 +g8 +tp29359 +Rp29360 +(I1 +(I7 +tp29361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29362 +tp29363 +bsa(dp29364 +g4 +g5 +(g6 +(I0 +tp29365 +g8 +tp29366 +Rp29367 +(I1 +(I7 +tp29368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29369 +tp29370 +bsa(dp29371 +g4 +g5 +(g6 +(I0 +tp29372 +g8 +tp29373 +Rp29374 +(I1 +(I7 +tp29375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29376 +tp29377 +bsa(dp29378 +g4 +g5 +(g6 +(I0 +tp29379 +g8 +tp29380 +Rp29381 +(I1 +(I7 +tp29382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29383 +tp29384 +bsa(dp29385 +g4 +g5 +(g6 +(I0 +tp29386 +g8 +tp29387 +Rp29388 +(I1 +(I7 +tp29389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29390 +tp29391 +bsa(dp29392 +g4 +g5 +(g6 +(I0 +tp29393 +g8 +tp29394 +Rp29395 +(I1 +(I7 +tp29396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29397 +tp29398 +bsa(dp29399 +g4 +g5 +(g6 +(I0 +tp29400 +g8 +tp29401 +Rp29402 +(I1 +(I7 +tp29403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29404 +tp29405 +bsa(dp29406 +g4 +g5 +(g6 +(I0 +tp29407 +g8 +tp29408 +Rp29409 +(I1 +(I7 +tp29410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29411 +tp29412 +bsa(dp29413 +g4 +g5 +(g6 +(I0 +tp29414 +g8 +tp29415 +Rp29416 +(I1 +(I7 +tp29417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29418 +tp29419 +bsa(dp29420 +g4 +g5 +(g6 +(I0 +tp29421 +g8 +tp29422 +Rp29423 +(I1 +(I7 +tp29424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29425 +tp29426 +bsa(dp29427 +g4 +g5 +(g6 +(I0 +tp29428 +g8 +tp29429 +Rp29430 +(I1 +(I7 +tp29431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29432 +tp29433 +bsa(dp29434 +g4 +g5 +(g6 +(I0 +tp29435 +g8 +tp29436 +Rp29437 +(I1 +(I7 +tp29438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29439 +tp29440 +bsa(dp29441 +g4 +g5 +(g6 +(I0 +tp29442 +g8 +tp29443 +Rp29444 +(I1 +(I7 +tp29445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29446 +tp29447 +bsa(dp29448 +g4 +g5 +(g6 +(I0 +tp29449 +g8 +tp29450 +Rp29451 +(I1 +(I7 +tp29452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29453 +tp29454 +bsa(dp29455 +g4 +g5 +(g6 +(I0 +tp29456 +g8 +tp29457 +Rp29458 +(I1 +(I7 +tp29459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29460 +tp29461 +bsa(dp29462 +g4 +g5 +(g6 +(I0 +tp29463 +g8 +tp29464 +Rp29465 +(I1 +(I7 +tp29466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29467 +tp29468 +bsa(dp29469 +g4 +g5 +(g6 +(I0 +tp29470 +g8 +tp29471 +Rp29472 +(I1 +(I7 +tp29473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29474 +tp29475 +bsa(dp29476 +g4 +g5 +(g6 +(I0 +tp29477 +g8 +tp29478 +Rp29479 +(I1 +(I7 +tp29480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29481 +tp29482 +bsa(dp29483 +g4 +g5 +(g6 +(I0 +tp29484 +g8 +tp29485 +Rp29486 +(I1 +(I7 +tp29487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29488 +tp29489 +bsa(dp29490 +g4 +g5 +(g6 +(I0 +tp29491 +g8 +tp29492 +Rp29493 +(I1 +(I7 +tp29494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29495 +tp29496 +bsa(dp29497 +g4 +g5 +(g6 +(I0 +tp29498 +g8 +tp29499 +Rp29500 +(I1 +(I7 +tp29501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29502 +tp29503 +bsa(dp29504 +g4 +g5 +(g6 +(I0 +tp29505 +g8 +tp29506 +Rp29507 +(I1 +(I7 +tp29508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29509 +tp29510 +bsa(dp29511 +g4 +g5 +(g6 +(I0 +tp29512 +g8 +tp29513 +Rp29514 +(I1 +(I7 +tp29515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29516 +tp29517 +bsa(dp29518 +g4 +g5 +(g6 +(I0 +tp29519 +g8 +tp29520 +Rp29521 +(I1 +(I7 +tp29522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29523 +tp29524 +bsa(dp29525 +g4 +g5 +(g6 +(I0 +tp29526 +g8 +tp29527 +Rp29528 +(I1 +(I7 +tp29529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29530 +tp29531 +bsa(dp29532 +g4 +g5 +(g6 +(I0 +tp29533 +g8 +tp29534 +Rp29535 +(I1 +(I7 +tp29536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29537 +tp29538 +bsa(dp29539 +g4 +g5 +(g6 +(I0 +tp29540 +g8 +tp29541 +Rp29542 +(I1 +(I7 +tp29543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29544 +tp29545 +bsa(dp29546 +g4 +g5 +(g6 +(I0 +tp29547 +g8 +tp29548 +Rp29549 +(I1 +(I7 +tp29550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29551 +tp29552 +bsa(dp29553 +g4 +g5 +(g6 +(I0 +tp29554 +g8 +tp29555 +Rp29556 +(I1 +(I7 +tp29557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29558 +tp29559 +bsa(dp29560 +g4 +g5 +(g6 +(I0 +tp29561 +g8 +tp29562 +Rp29563 +(I1 +(I7 +tp29564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29565 +tp29566 +bsa(dp29567 +g4 +g5 +(g6 +(I0 +tp29568 +g8 +tp29569 +Rp29570 +(I1 +(I7 +tp29571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29572 +tp29573 +bsa(dp29574 +g4 +g5 +(g6 +(I0 +tp29575 +g8 +tp29576 +Rp29577 +(I1 +(I7 +tp29578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29579 +tp29580 +bsa(dp29581 +g4 +g5 +(g6 +(I0 +tp29582 +g8 +tp29583 +Rp29584 +(I1 +(I7 +tp29585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29586 +tp29587 +bsa(dp29588 +g4 +g5 +(g6 +(I0 +tp29589 +g8 +tp29590 +Rp29591 +(I1 +(I7 +tp29592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29593 +tp29594 +bsa(dp29595 +g4 +g5 +(g6 +(I0 +tp29596 +g8 +tp29597 +Rp29598 +(I1 +(I7 +tp29599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29600 +tp29601 +bsa(dp29602 +g4 +g5 +(g6 +(I0 +tp29603 +g8 +tp29604 +Rp29605 +(I1 +(I7 +tp29606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29607 +tp29608 +bsa(dp29609 +g4 +g5 +(g6 +(I0 +tp29610 +g8 +tp29611 +Rp29612 +(I1 +(I7 +tp29613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29614 +tp29615 +bsa(dp29616 +g4 +g5 +(g6 +(I0 +tp29617 +g8 +tp29618 +Rp29619 +(I1 +(I7 +tp29620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29621 +tp29622 +bsa(dp29623 +g4 +g5 +(g6 +(I0 +tp29624 +g8 +tp29625 +Rp29626 +(I1 +(I7 +tp29627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29628 +tp29629 +bsa(dp29630 +g4 +g5 +(g6 +(I0 +tp29631 +g8 +tp29632 +Rp29633 +(I1 +(I7 +tp29634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29635 +tp29636 +bsa(dp29637 +g4 +g5 +(g6 +(I0 +tp29638 +g8 +tp29639 +Rp29640 +(I1 +(I7 +tp29641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29642 +tp29643 +bsa(dp29644 +g4 +g5 +(g6 +(I0 +tp29645 +g8 +tp29646 +Rp29647 +(I1 +(I7 +tp29648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29649 +tp29650 +bsa(dp29651 +g4 +g5 +(g6 +(I0 +tp29652 +g8 +tp29653 +Rp29654 +(I1 +(I7 +tp29655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29656 +tp29657 +bsa(dp29658 +g4 +g5 +(g6 +(I0 +tp29659 +g8 +tp29660 +Rp29661 +(I1 +(I7 +tp29662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29663 +tp29664 +bsa(dp29665 +g4 +g5 +(g6 +(I0 +tp29666 +g8 +tp29667 +Rp29668 +(I1 +(I7 +tp29669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29670 +tp29671 +bsa(dp29672 +g4 +g5 +(g6 +(I0 +tp29673 +g8 +tp29674 +Rp29675 +(I1 +(I7 +tp29676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29677 +tp29678 +bsa(dp29679 +g4 +g5 +(g6 +(I0 +tp29680 +g8 +tp29681 +Rp29682 +(I1 +(I7 +tp29683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29684 +tp29685 +bsa(dp29686 +g4 +g5 +(g6 +(I0 +tp29687 +g8 +tp29688 +Rp29689 +(I1 +(I7 +tp29690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29691 +tp29692 +bsa(dp29693 +g4 +g5 +(g6 +(I0 +tp29694 +g8 +tp29695 +Rp29696 +(I1 +(I7 +tp29697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29698 +tp29699 +bsa(dp29700 +g4 +g5 +(g6 +(I0 +tp29701 +g8 +tp29702 +Rp29703 +(I1 +(I7 +tp29704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29705 +tp29706 +bsa(dp29707 +g4 +g5 +(g6 +(I0 +tp29708 +g8 +tp29709 +Rp29710 +(I1 +(I7 +tp29711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29712 +tp29713 +bsa(dp29714 +g4 +g5 +(g6 +(I0 +tp29715 +g8 +tp29716 +Rp29717 +(I1 +(I7 +tp29718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29719 +tp29720 +bsa(dp29721 +g4 +g5 +(g6 +(I0 +tp29722 +g8 +tp29723 +Rp29724 +(I1 +(I7 +tp29725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29726 +tp29727 +bsa(dp29728 +g4 +g5 +(g6 +(I0 +tp29729 +g8 +tp29730 +Rp29731 +(I1 +(I7 +tp29732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29733 +tp29734 +bsa(dp29735 +g4 +g5 +(g6 +(I0 +tp29736 +g8 +tp29737 +Rp29738 +(I1 +(I7 +tp29739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29740 +tp29741 +bsa(dp29742 +g4 +g5 +(g6 +(I0 +tp29743 +g8 +tp29744 +Rp29745 +(I1 +(I7 +tp29746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29747 +tp29748 +bsa(dp29749 +g4 +g5 +(g6 +(I0 +tp29750 +g8 +tp29751 +Rp29752 +(I1 +(I7 +tp29753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29754 +tp29755 +bsa(dp29756 +g4 +g5 +(g6 +(I0 +tp29757 +g8 +tp29758 +Rp29759 +(I1 +(I7 +tp29760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29761 +tp29762 +bsa(dp29763 +g4 +g5 +(g6 +(I0 +tp29764 +g8 +tp29765 +Rp29766 +(I1 +(I7 +tp29767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29768 +tp29769 +bsa(dp29770 +g4 +g5 +(g6 +(I0 +tp29771 +g8 +tp29772 +Rp29773 +(I1 +(I7 +tp29774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29775 +tp29776 +bsa(dp29777 +g4 +g5 +(g6 +(I0 +tp29778 +g8 +tp29779 +Rp29780 +(I1 +(I7 +tp29781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29782 +tp29783 +bsa(dp29784 +g4 +g5 +(g6 +(I0 +tp29785 +g8 +tp29786 +Rp29787 +(I1 +(I7 +tp29788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29789 +tp29790 +bsa(dp29791 +g4 +g5 +(g6 +(I0 +tp29792 +g8 +tp29793 +Rp29794 +(I1 +(I7 +tp29795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29796 +tp29797 +bsa(dp29798 +g4 +g5 +(g6 +(I0 +tp29799 +g8 +tp29800 +Rp29801 +(I1 +(I7 +tp29802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29803 +tp29804 +bsa(dp29805 +g4 +g5 +(g6 +(I0 +tp29806 +g8 +tp29807 +Rp29808 +(I1 +(I7 +tp29809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29810 +tp29811 +bsa(dp29812 +g4 +g5 +(g6 +(I0 +tp29813 +g8 +tp29814 +Rp29815 +(I1 +(I7 +tp29816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29817 +tp29818 +bsa(dp29819 +g4 +g5 +(g6 +(I0 +tp29820 +g8 +tp29821 +Rp29822 +(I1 +(I7 +tp29823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29824 +tp29825 +bsa(dp29826 +g4 +g5 +(g6 +(I0 +tp29827 +g8 +tp29828 +Rp29829 +(I1 +(I7 +tp29830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29831 +tp29832 +bsa(dp29833 +g4 +g5 +(g6 +(I0 +tp29834 +g8 +tp29835 +Rp29836 +(I1 +(I7 +tp29837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29838 +tp29839 +bsa(dp29840 +g4 +g5 +(g6 +(I0 +tp29841 +g8 +tp29842 +Rp29843 +(I1 +(I7 +tp29844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29845 +tp29846 +bsa(dp29847 +g4 +g5 +(g6 +(I0 +tp29848 +g8 +tp29849 +Rp29850 +(I1 +(I7 +tp29851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29852 +tp29853 +bsa(dp29854 +g4 +g5 +(g6 +(I0 +tp29855 +g8 +tp29856 +Rp29857 +(I1 +(I7 +tp29858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29859 +tp29860 +bsa(dp29861 +g4 +g5 +(g6 +(I0 +tp29862 +g8 +tp29863 +Rp29864 +(I1 +(I7 +tp29865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29866 +tp29867 +bsa(dp29868 +g4 +g5 +(g6 +(I0 +tp29869 +g8 +tp29870 +Rp29871 +(I1 +(I7 +tp29872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29873 +tp29874 +bsa(dp29875 +g4 +g5 +(g6 +(I0 +tp29876 +g8 +tp29877 +Rp29878 +(I1 +(I7 +tp29879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29880 +tp29881 +bsa(dp29882 +g4 +g5 +(g6 +(I0 +tp29883 +g8 +tp29884 +Rp29885 +(I1 +(I7 +tp29886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29887 +tp29888 +bsa(dp29889 +g4 +g5 +(g6 +(I0 +tp29890 +g8 +tp29891 +Rp29892 +(I1 +(I7 +tp29893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29894 +tp29895 +bsa(dp29896 +g4 +g5 +(g6 +(I0 +tp29897 +g8 +tp29898 +Rp29899 +(I1 +(I7 +tp29900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29901 +tp29902 +bsa(dp29903 +g4 +g5 +(g6 +(I0 +tp29904 +g8 +tp29905 +Rp29906 +(I1 +(I7 +tp29907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29908 +tp29909 +bsa(dp29910 +g4 +g5 +(g6 +(I0 +tp29911 +g8 +tp29912 +Rp29913 +(I1 +(I7 +tp29914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29915 +tp29916 +bsa(dp29917 +g4 +g5 +(g6 +(I0 +tp29918 +g8 +tp29919 +Rp29920 +(I1 +(I7 +tp29921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29922 +tp29923 +bsa(dp29924 +g4 +g5 +(g6 +(I0 +tp29925 +g8 +tp29926 +Rp29927 +(I1 +(I7 +tp29928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29929 +tp29930 +bsa(dp29931 +g4 +g5 +(g6 +(I0 +tp29932 +g8 +tp29933 +Rp29934 +(I1 +(I7 +tp29935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29936 +tp29937 +bsa(dp29938 +g4 +g5 +(g6 +(I0 +tp29939 +g8 +tp29940 +Rp29941 +(I1 +(I7 +tp29942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29943 +tp29944 +bsa(dp29945 +g4 +g5 +(g6 +(I0 +tp29946 +g8 +tp29947 +Rp29948 +(I1 +(I7 +tp29949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29950 +tp29951 +bsa(dp29952 +g4 +g5 +(g6 +(I0 +tp29953 +g8 +tp29954 +Rp29955 +(I1 +(I7 +tp29956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29957 +tp29958 +bsa(dp29959 +g4 +g5 +(g6 +(I0 +tp29960 +g8 +tp29961 +Rp29962 +(I1 +(I7 +tp29963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p29964 +tp29965 +bsa(dp29966 +g4 +g5 +(g6 +(I0 +tp29967 +g8 +tp29968 +Rp29969 +(I1 +(I7 +tp29970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p29971 +tp29972 +bsa(dp29973 +g4 +g5 +(g6 +(I0 +tp29974 +g8 +tp29975 +Rp29976 +(I1 +(I7 +tp29977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29978 +tp29979 +bsa(dp29980 +g4 +g5 +(g6 +(I0 +tp29981 +g8 +tp29982 +Rp29983 +(I1 +(I7 +tp29984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29985 +tp29986 +bsa(dp29987 +g4 +g5 +(g6 +(I0 +tp29988 +g8 +tp29989 +Rp29990 +(I1 +(I7 +tp29991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29992 +tp29993 +bsa(dp29994 +g4 +g5 +(g6 +(I0 +tp29995 +g8 +tp29996 +Rp29997 +(I1 +(I7 +tp29998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p29999 +tp30000 +bsa(dp30001 +g4 +g5 +(g6 +(I0 +tp30002 +g8 +tp30003 +Rp30004 +(I1 +(I7 +tp30005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30006 +tp30007 +bsa(dp30008 +g4 +g5 +(g6 +(I0 +tp30009 +g8 +tp30010 +Rp30011 +(I1 +(I7 +tp30012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30013 +tp30014 +bsa(dp30015 +g4 +g5 +(g6 +(I0 +tp30016 +g8 +tp30017 +Rp30018 +(I1 +(I7 +tp30019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30020 +tp30021 +bsa(dp30022 +g4 +g5 +(g6 +(I0 +tp30023 +g8 +tp30024 +Rp30025 +(I1 +(I7 +tp30026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30027 +tp30028 +bsa(dp30029 +g4 +g5 +(g6 +(I0 +tp30030 +g8 +tp30031 +Rp30032 +(I1 +(I7 +tp30033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30034 +tp30035 +bsa(dp30036 +g4 +g5 +(g6 +(I0 +tp30037 +g8 +tp30038 +Rp30039 +(I1 +(I7 +tp30040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30041 +tp30042 +bsa(dp30043 +g4 +g5 +(g6 +(I0 +tp30044 +g8 +tp30045 +Rp30046 +(I1 +(I7 +tp30047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30048 +tp30049 +bsa(dp30050 +g4 +g5 +(g6 +(I0 +tp30051 +g8 +tp30052 +Rp30053 +(I1 +(I7 +tp30054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30055 +tp30056 +bsa(dp30057 +g4 +g5 +(g6 +(I0 +tp30058 +g8 +tp30059 +Rp30060 +(I1 +(I7 +tp30061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30062 +tp30063 +bsa(dp30064 +g4 +g5 +(g6 +(I0 +tp30065 +g8 +tp30066 +Rp30067 +(I1 +(I7 +tp30068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30069 +tp30070 +bsa(dp30071 +g4 +g5 +(g6 +(I0 +tp30072 +g8 +tp30073 +Rp30074 +(I1 +(I7 +tp30075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30076 +tp30077 +bsa(dp30078 +g4 +g5 +(g6 +(I0 +tp30079 +g8 +tp30080 +Rp30081 +(I1 +(I7 +tp30082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30083 +tp30084 +bsa(dp30085 +g4 +g5 +(g6 +(I0 +tp30086 +g8 +tp30087 +Rp30088 +(I1 +(I7 +tp30089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30090 +tp30091 +bsa(dp30092 +g4 +g5 +(g6 +(I0 +tp30093 +g8 +tp30094 +Rp30095 +(I1 +(I7 +tp30096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30097 +tp30098 +bsa(dp30099 +g4 +g5 +(g6 +(I0 +tp30100 +g8 +tp30101 +Rp30102 +(I1 +(I7 +tp30103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30104 +tp30105 +bsa(dp30106 +g4 +g5 +(g6 +(I0 +tp30107 +g8 +tp30108 +Rp30109 +(I1 +(I7 +tp30110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30111 +tp30112 +bsa(dp30113 +g4 +g5 +(g6 +(I0 +tp30114 +g8 +tp30115 +Rp30116 +(I1 +(I7 +tp30117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30118 +tp30119 +bsa(dp30120 +g4 +g5 +(g6 +(I0 +tp30121 +g8 +tp30122 +Rp30123 +(I1 +(I7 +tp30124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30125 +tp30126 +bsa(dp30127 +g4 +g5 +(g6 +(I0 +tp30128 +g8 +tp30129 +Rp30130 +(I1 +(I7 +tp30131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30132 +tp30133 +bsa(dp30134 +g4 +g5 +(g6 +(I0 +tp30135 +g8 +tp30136 +Rp30137 +(I1 +(I7 +tp30138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30139 +tp30140 +bsa(dp30141 +g4 +g5 +(g6 +(I0 +tp30142 +g8 +tp30143 +Rp30144 +(I1 +(I7 +tp30145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30146 +tp30147 +bsa(dp30148 +g4 +g5 +(g6 +(I0 +tp30149 +g8 +tp30150 +Rp30151 +(I1 +(I7 +tp30152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30153 +tp30154 +bsa(dp30155 +g4 +g5 +(g6 +(I0 +tp30156 +g8 +tp30157 +Rp30158 +(I1 +(I7 +tp30159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30160 +tp30161 +bsa(dp30162 +g4 +g5 +(g6 +(I0 +tp30163 +g8 +tp30164 +Rp30165 +(I1 +(I7 +tp30166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30167 +tp30168 +bsa(dp30169 +g4 +g5 +(g6 +(I0 +tp30170 +g8 +tp30171 +Rp30172 +(I1 +(I7 +tp30173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30174 +tp30175 +bsa(dp30176 +g4 +g5 +(g6 +(I0 +tp30177 +g8 +tp30178 +Rp30179 +(I1 +(I7 +tp30180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30181 +tp30182 +bsa(dp30183 +g4 +g5 +(g6 +(I0 +tp30184 +g8 +tp30185 +Rp30186 +(I1 +(I7 +tp30187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30188 +tp30189 +bsa(dp30190 +g4 +g5 +(g6 +(I0 +tp30191 +g8 +tp30192 +Rp30193 +(I1 +(I7 +tp30194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30195 +tp30196 +bsa(dp30197 +g4 +g5 +(g6 +(I0 +tp30198 +g8 +tp30199 +Rp30200 +(I1 +(I7 +tp30201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30202 +tp30203 +bsa(dp30204 +g4 +g5 +(g6 +(I0 +tp30205 +g8 +tp30206 +Rp30207 +(I1 +(I7 +tp30208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30209 +tp30210 +bsa(dp30211 +g4 +g5 +(g6 +(I0 +tp30212 +g8 +tp30213 +Rp30214 +(I1 +(I7 +tp30215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30216 +tp30217 +bsa(dp30218 +g4 +g5 +(g6 +(I0 +tp30219 +g8 +tp30220 +Rp30221 +(I1 +(I7 +tp30222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30223 +tp30224 +bsa(dp30225 +g4 +g5 +(g6 +(I0 +tp30226 +g8 +tp30227 +Rp30228 +(I1 +(I7 +tp30229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30230 +tp30231 +bsa(dp30232 +g4 +g5 +(g6 +(I0 +tp30233 +g8 +tp30234 +Rp30235 +(I1 +(I7 +tp30236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30237 +tp30238 +bsa(dp30239 +g4 +g5 +(g6 +(I0 +tp30240 +g8 +tp30241 +Rp30242 +(I1 +(I7 +tp30243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30244 +tp30245 +bsa(dp30246 +g4 +g5 +(g6 +(I0 +tp30247 +g8 +tp30248 +Rp30249 +(I1 +(I7 +tp30250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30251 +tp30252 +bsa(dp30253 +g4 +g5 +(g6 +(I0 +tp30254 +g8 +tp30255 +Rp30256 +(I1 +(I7 +tp30257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30258 +tp30259 +bsa(dp30260 +g4 +g5 +(g6 +(I0 +tp30261 +g8 +tp30262 +Rp30263 +(I1 +(I7 +tp30264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30265 +tp30266 +bsa(dp30267 +g4 +g5 +(g6 +(I0 +tp30268 +g8 +tp30269 +Rp30270 +(I1 +(I7 +tp30271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30272 +tp30273 +bsa(dp30274 +g4 +g5 +(g6 +(I0 +tp30275 +g8 +tp30276 +Rp30277 +(I1 +(I7 +tp30278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30279 +tp30280 +bsa(dp30281 +g4 +g5 +(g6 +(I0 +tp30282 +g8 +tp30283 +Rp30284 +(I1 +(I7 +tp30285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30286 +tp30287 +bsa(dp30288 +g4 +g5 +(g6 +(I0 +tp30289 +g8 +tp30290 +Rp30291 +(I1 +(I7 +tp30292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30293 +tp30294 +bsa(dp30295 +g4 +g5 +(g6 +(I0 +tp30296 +g8 +tp30297 +Rp30298 +(I1 +(I7 +tp30299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30300 +tp30301 +bsa(dp30302 +g4 +g5 +(g6 +(I0 +tp30303 +g8 +tp30304 +Rp30305 +(I1 +(I7 +tp30306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30307 +tp30308 +bsa(dp30309 +g4 +g5 +(g6 +(I0 +tp30310 +g8 +tp30311 +Rp30312 +(I1 +(I7 +tp30313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30314 +tp30315 +bsa(dp30316 +g4 +g5 +(g6 +(I0 +tp30317 +g8 +tp30318 +Rp30319 +(I1 +(I7 +tp30320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30321 +tp30322 +bsa(dp30323 +g4 +g5 +(g6 +(I0 +tp30324 +g8 +tp30325 +Rp30326 +(I1 +(I7 +tp30327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30328 +tp30329 +bsa(dp30330 +g4 +g5 +(g6 +(I0 +tp30331 +g8 +tp30332 +Rp30333 +(I1 +(I7 +tp30334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30335 +tp30336 +bsa(dp30337 +g4 +g5 +(g6 +(I0 +tp30338 +g8 +tp30339 +Rp30340 +(I1 +(I7 +tp30341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30342 +tp30343 +bsa(dp30344 +g4 +g5 +(g6 +(I0 +tp30345 +g8 +tp30346 +Rp30347 +(I1 +(I7 +tp30348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30349 +tp30350 +bsa(dp30351 +g4 +g5 +(g6 +(I0 +tp30352 +g8 +tp30353 +Rp30354 +(I1 +(I7 +tp30355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30356 +tp30357 +bsa(dp30358 +g4 +g5 +(g6 +(I0 +tp30359 +g8 +tp30360 +Rp30361 +(I1 +(I7 +tp30362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30363 +tp30364 +bsa(dp30365 +g4 +g5 +(g6 +(I0 +tp30366 +g8 +tp30367 +Rp30368 +(I1 +(I7 +tp30369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30370 +tp30371 +bsa(dp30372 +g4 +g5 +(g6 +(I0 +tp30373 +g8 +tp30374 +Rp30375 +(I1 +(I7 +tp30376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30377 +tp30378 +bsa(dp30379 +g4 +g5 +(g6 +(I0 +tp30380 +g8 +tp30381 +Rp30382 +(I1 +(I7 +tp30383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30384 +tp30385 +bsa(dp30386 +g4 +g5 +(g6 +(I0 +tp30387 +g8 +tp30388 +Rp30389 +(I1 +(I7 +tp30390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30391 +tp30392 +bsa(dp30393 +g4 +g5 +(g6 +(I0 +tp30394 +g8 +tp30395 +Rp30396 +(I1 +(I7 +tp30397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30398 +tp30399 +bsa(dp30400 +g4 +g5 +(g6 +(I0 +tp30401 +g8 +tp30402 +Rp30403 +(I1 +(I7 +tp30404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30405 +tp30406 +bsa(dp30407 +g4 +g5 +(g6 +(I0 +tp30408 +g8 +tp30409 +Rp30410 +(I1 +(I7 +tp30411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30412 +tp30413 +bsa(dp30414 +g4 +g5 +(g6 +(I0 +tp30415 +g8 +tp30416 +Rp30417 +(I1 +(I7 +tp30418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30419 +tp30420 +bsa(dp30421 +g4 +g5 +(g6 +(I0 +tp30422 +g8 +tp30423 +Rp30424 +(I1 +(I7 +tp30425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30426 +tp30427 +bsa(dp30428 +g4 +g5 +(g6 +(I0 +tp30429 +g8 +tp30430 +Rp30431 +(I1 +(I7 +tp30432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30433 +tp30434 +bsa(dp30435 +g4 +g5 +(g6 +(I0 +tp30436 +g8 +tp30437 +Rp30438 +(I1 +(I7 +tp30439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30440 +tp30441 +bsa(dp30442 +g4 +g5 +(g6 +(I0 +tp30443 +g8 +tp30444 +Rp30445 +(I1 +(I7 +tp30446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30447 +tp30448 +bsa(dp30449 +g4 +g5 +(g6 +(I0 +tp30450 +g8 +tp30451 +Rp30452 +(I1 +(I7 +tp30453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30454 +tp30455 +bsa(dp30456 +g4 +g5 +(g6 +(I0 +tp30457 +g8 +tp30458 +Rp30459 +(I1 +(I7 +tp30460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30461 +tp30462 +bsa(dp30463 +g4 +g5 +(g6 +(I0 +tp30464 +g8 +tp30465 +Rp30466 +(I1 +(I7 +tp30467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30468 +tp30469 +bsa(dp30470 +g4 +g5 +(g6 +(I0 +tp30471 +g8 +tp30472 +Rp30473 +(I1 +(I7 +tp30474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30475 +tp30476 +bsa(dp30477 +g4 +g5 +(g6 +(I0 +tp30478 +g8 +tp30479 +Rp30480 +(I1 +(I7 +tp30481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30482 +tp30483 +bsa(dp30484 +g4 +g5 +(g6 +(I0 +tp30485 +g8 +tp30486 +Rp30487 +(I1 +(I7 +tp30488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30489 +tp30490 +bsa(dp30491 +g4 +g5 +(g6 +(I0 +tp30492 +g8 +tp30493 +Rp30494 +(I1 +(I7 +tp30495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30496 +tp30497 +bsa(dp30498 +g4 +g5 +(g6 +(I0 +tp30499 +g8 +tp30500 +Rp30501 +(I1 +(I7 +tp30502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30503 +tp30504 +bsa(dp30505 +g4 +g5 +(g6 +(I0 +tp30506 +g8 +tp30507 +Rp30508 +(I1 +(I7 +tp30509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30510 +tp30511 +bsa(dp30512 +g4 +g5 +(g6 +(I0 +tp30513 +g8 +tp30514 +Rp30515 +(I1 +(I7 +tp30516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30517 +tp30518 +bsa(dp30519 +g4 +g5 +(g6 +(I0 +tp30520 +g8 +tp30521 +Rp30522 +(I1 +(I7 +tp30523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30524 +tp30525 +bsa(dp30526 +g4 +g5 +(g6 +(I0 +tp30527 +g8 +tp30528 +Rp30529 +(I1 +(I7 +tp30530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30531 +tp30532 +bsa(dp30533 +g4 +g5 +(g6 +(I0 +tp30534 +g8 +tp30535 +Rp30536 +(I1 +(I7 +tp30537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30538 +tp30539 +bsa(dp30540 +g4 +g5 +(g6 +(I0 +tp30541 +g8 +tp30542 +Rp30543 +(I1 +(I7 +tp30544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30545 +tp30546 +bsa(dp30547 +g4 +g5 +(g6 +(I0 +tp30548 +g8 +tp30549 +Rp30550 +(I1 +(I7 +tp30551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30552 +tp30553 +bsa(dp30554 +g4 +g5 +(g6 +(I0 +tp30555 +g8 +tp30556 +Rp30557 +(I1 +(I7 +tp30558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30559 +tp30560 +bsa(dp30561 +g4 +g5 +(g6 +(I0 +tp30562 +g8 +tp30563 +Rp30564 +(I1 +(I7 +tp30565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30566 +tp30567 +bsa(dp30568 +g4 +g5 +(g6 +(I0 +tp30569 +g8 +tp30570 +Rp30571 +(I1 +(I7 +tp30572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30573 +tp30574 +bsa(dp30575 +g4 +g5 +(g6 +(I0 +tp30576 +g8 +tp30577 +Rp30578 +(I1 +(I7 +tp30579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30580 +tp30581 +bsa(dp30582 +g4 +g5 +(g6 +(I0 +tp30583 +g8 +tp30584 +Rp30585 +(I1 +(I7 +tp30586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30587 +tp30588 +bsa(dp30589 +g4 +g5 +(g6 +(I0 +tp30590 +g8 +tp30591 +Rp30592 +(I1 +(I7 +tp30593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30594 +tp30595 +bsa(dp30596 +g4 +g5 +(g6 +(I0 +tp30597 +g8 +tp30598 +Rp30599 +(I1 +(I7 +tp30600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30601 +tp30602 +bsa(dp30603 +g4 +g5 +(g6 +(I0 +tp30604 +g8 +tp30605 +Rp30606 +(I1 +(I7 +tp30607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30608 +tp30609 +bsa(dp30610 +g4 +g5 +(g6 +(I0 +tp30611 +g8 +tp30612 +Rp30613 +(I1 +(I7 +tp30614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30615 +tp30616 +bsa(dp30617 +g4 +g5 +(g6 +(I0 +tp30618 +g8 +tp30619 +Rp30620 +(I1 +(I7 +tp30621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30622 +tp30623 +bsa(dp30624 +g4 +g5 +(g6 +(I0 +tp30625 +g8 +tp30626 +Rp30627 +(I1 +(I7 +tp30628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30629 +tp30630 +bsa(dp30631 +g4 +g5 +(g6 +(I0 +tp30632 +g8 +tp30633 +Rp30634 +(I1 +(I7 +tp30635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30636 +tp30637 +bsa(dp30638 +g4 +g5 +(g6 +(I0 +tp30639 +g8 +tp30640 +Rp30641 +(I1 +(I7 +tp30642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30643 +tp30644 +bsa(dp30645 +g4 +g5 +(g6 +(I0 +tp30646 +g8 +tp30647 +Rp30648 +(I1 +(I7 +tp30649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30650 +tp30651 +bsa(dp30652 +g4 +g5 +(g6 +(I0 +tp30653 +g8 +tp30654 +Rp30655 +(I1 +(I7 +tp30656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30657 +tp30658 +bsa(dp30659 +g4 +g5 +(g6 +(I0 +tp30660 +g8 +tp30661 +Rp30662 +(I1 +(I7 +tp30663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30664 +tp30665 +bsa(dp30666 +g4 +g5 +(g6 +(I0 +tp30667 +g8 +tp30668 +Rp30669 +(I1 +(I7 +tp30670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30671 +tp30672 +bsa(dp30673 +g4 +g5 +(g6 +(I0 +tp30674 +g8 +tp30675 +Rp30676 +(I1 +(I7 +tp30677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30678 +tp30679 +bsa(dp30680 +g4 +g5 +(g6 +(I0 +tp30681 +g8 +tp30682 +Rp30683 +(I1 +(I7 +tp30684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30685 +tp30686 +bsa(dp30687 +g4 +g5 +(g6 +(I0 +tp30688 +g8 +tp30689 +Rp30690 +(I1 +(I7 +tp30691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30692 +tp30693 +bsa(dp30694 +g4 +g5 +(g6 +(I0 +tp30695 +g8 +tp30696 +Rp30697 +(I1 +(I7 +tp30698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30699 +tp30700 +bsa(dp30701 +g4 +g5 +(g6 +(I0 +tp30702 +g8 +tp30703 +Rp30704 +(I1 +(I7 +tp30705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30706 +tp30707 +bsa(dp30708 +g4 +g5 +(g6 +(I0 +tp30709 +g8 +tp30710 +Rp30711 +(I1 +(I7 +tp30712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30713 +tp30714 +bsa(dp30715 +g4 +g5 +(g6 +(I0 +tp30716 +g8 +tp30717 +Rp30718 +(I1 +(I7 +tp30719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30720 +tp30721 +bsa(dp30722 +g4 +g5 +(g6 +(I0 +tp30723 +g8 +tp30724 +Rp30725 +(I1 +(I7 +tp30726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30727 +tp30728 +bsa(dp30729 +g4 +g5 +(g6 +(I0 +tp30730 +g8 +tp30731 +Rp30732 +(I1 +(I7 +tp30733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30734 +tp30735 +bsa(dp30736 +g4 +g5 +(g6 +(I0 +tp30737 +g8 +tp30738 +Rp30739 +(I1 +(I7 +tp30740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30741 +tp30742 +bsa(dp30743 +g4 +g5 +(g6 +(I0 +tp30744 +g8 +tp30745 +Rp30746 +(I1 +(I7 +tp30747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30748 +tp30749 +bsa(dp30750 +g4 +g5 +(g6 +(I0 +tp30751 +g8 +tp30752 +Rp30753 +(I1 +(I7 +tp30754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30755 +tp30756 +bsa(dp30757 +g4 +g5 +(g6 +(I0 +tp30758 +g8 +tp30759 +Rp30760 +(I1 +(I7 +tp30761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30762 +tp30763 +bsa(dp30764 +g4 +g5 +(g6 +(I0 +tp30765 +g8 +tp30766 +Rp30767 +(I1 +(I7 +tp30768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30769 +tp30770 +bsa(dp30771 +g4 +g5 +(g6 +(I0 +tp30772 +g8 +tp30773 +Rp30774 +(I1 +(I7 +tp30775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30776 +tp30777 +bsa(dp30778 +g4 +g5 +(g6 +(I0 +tp30779 +g8 +tp30780 +Rp30781 +(I1 +(I7 +tp30782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30783 +tp30784 +bsa(dp30785 +g4 +g5 +(g6 +(I0 +tp30786 +g8 +tp30787 +Rp30788 +(I1 +(I7 +tp30789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30790 +tp30791 +bsa(dp30792 +g4 +g5 +(g6 +(I0 +tp30793 +g8 +tp30794 +Rp30795 +(I1 +(I7 +tp30796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30797 +tp30798 +bsa(dp30799 +g4 +g5 +(g6 +(I0 +tp30800 +g8 +tp30801 +Rp30802 +(I1 +(I7 +tp30803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30804 +tp30805 +bsa(dp30806 +g4 +g5 +(g6 +(I0 +tp30807 +g8 +tp30808 +Rp30809 +(I1 +(I7 +tp30810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30811 +tp30812 +bsa(dp30813 +g4 +g5 +(g6 +(I0 +tp30814 +g8 +tp30815 +Rp30816 +(I1 +(I7 +tp30817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30818 +tp30819 +bsa(dp30820 +g4 +g5 +(g6 +(I0 +tp30821 +g8 +tp30822 +Rp30823 +(I1 +(I7 +tp30824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30825 +tp30826 +bsa(dp30827 +g4 +g5 +(g6 +(I0 +tp30828 +g8 +tp30829 +Rp30830 +(I1 +(I7 +tp30831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30832 +tp30833 +bsa(dp30834 +g4 +g5 +(g6 +(I0 +tp30835 +g8 +tp30836 +Rp30837 +(I1 +(I7 +tp30838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30839 +tp30840 +bsa(dp30841 +g4 +g5 +(g6 +(I0 +tp30842 +g8 +tp30843 +Rp30844 +(I1 +(I7 +tp30845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30846 +tp30847 +bsa(dp30848 +g4 +g5 +(g6 +(I0 +tp30849 +g8 +tp30850 +Rp30851 +(I1 +(I7 +tp30852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30853 +tp30854 +bsa(dp30855 +g4 +g5 +(g6 +(I0 +tp30856 +g8 +tp30857 +Rp30858 +(I1 +(I7 +tp30859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30860 +tp30861 +bsa(dp30862 +g4 +g5 +(g6 +(I0 +tp30863 +g8 +tp30864 +Rp30865 +(I1 +(I7 +tp30866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30867 +tp30868 +bsa(dp30869 +g4 +g5 +(g6 +(I0 +tp30870 +g8 +tp30871 +Rp30872 +(I1 +(I7 +tp30873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30874 +tp30875 +bsa(dp30876 +g4 +g5 +(g6 +(I0 +tp30877 +g8 +tp30878 +Rp30879 +(I1 +(I7 +tp30880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30881 +tp30882 +bsa(dp30883 +g4 +g5 +(g6 +(I0 +tp30884 +g8 +tp30885 +Rp30886 +(I1 +(I7 +tp30887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30888 +tp30889 +bsa(dp30890 +g4 +g5 +(g6 +(I0 +tp30891 +g8 +tp30892 +Rp30893 +(I1 +(I7 +tp30894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30895 +tp30896 +bsa(dp30897 +g4 +g5 +(g6 +(I0 +tp30898 +g8 +tp30899 +Rp30900 +(I1 +(I7 +tp30901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30902 +tp30903 +bsa(dp30904 +g4 +g5 +(g6 +(I0 +tp30905 +g8 +tp30906 +Rp30907 +(I1 +(I7 +tp30908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30909 +tp30910 +bsa(dp30911 +g4 +g5 +(g6 +(I0 +tp30912 +g8 +tp30913 +Rp30914 +(I1 +(I7 +tp30915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30916 +tp30917 +bsa(dp30918 +g4 +g5 +(g6 +(I0 +tp30919 +g8 +tp30920 +Rp30921 +(I1 +(I7 +tp30922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30923 +tp30924 +bsa(dp30925 +g4 +g5 +(g6 +(I0 +tp30926 +g8 +tp30927 +Rp30928 +(I1 +(I7 +tp30929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30930 +tp30931 +bsa(dp30932 +g4 +g5 +(g6 +(I0 +tp30933 +g8 +tp30934 +Rp30935 +(I1 +(I7 +tp30936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30937 +tp30938 +bsa(dp30939 +g4 +g5 +(g6 +(I0 +tp30940 +g8 +tp30941 +Rp30942 +(I1 +(I7 +tp30943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30944 +tp30945 +bsa(dp30946 +g4 +g5 +(g6 +(I0 +tp30947 +g8 +tp30948 +Rp30949 +(I1 +(I7 +tp30950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30951 +tp30952 +bsa(dp30953 +g4 +g5 +(g6 +(I0 +tp30954 +g8 +tp30955 +Rp30956 +(I1 +(I7 +tp30957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30958 +tp30959 +bsa(dp30960 +g4 +g5 +(g6 +(I0 +tp30961 +g8 +tp30962 +Rp30963 +(I1 +(I7 +tp30964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30965 +tp30966 +bsa(dp30967 +g4 +g5 +(g6 +(I0 +tp30968 +g8 +tp30969 +Rp30970 +(I1 +(I7 +tp30971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30972 +tp30973 +bsa(dp30974 +g4 +g5 +(g6 +(I0 +tp30975 +g8 +tp30976 +Rp30977 +(I1 +(I7 +tp30978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p30979 +tp30980 +bsa(dp30981 +g4 +g5 +(g6 +(I0 +tp30982 +g8 +tp30983 +Rp30984 +(I1 +(I7 +tp30985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p30986 +tp30987 +bsa(dp30988 +g4 +g5 +(g6 +(I0 +tp30989 +g8 +tp30990 +Rp30991 +(I1 +(I7 +tp30992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p30993 +tp30994 +bsa(dp30995 +g4 +g5 +(g6 +(I0 +tp30996 +g8 +tp30997 +Rp30998 +(I1 +(I7 +tp30999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31000 +tp31001 +bsa(dp31002 +g4 +g5 +(g6 +(I0 +tp31003 +g8 +tp31004 +Rp31005 +(I1 +(I7 +tp31006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31007 +tp31008 +bsa(dp31009 +g4 +g5 +(g6 +(I0 +tp31010 +g8 +tp31011 +Rp31012 +(I1 +(I7 +tp31013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31014 +tp31015 +bsa(dp31016 +g4 +g5 +(g6 +(I0 +tp31017 +g8 +tp31018 +Rp31019 +(I1 +(I7 +tp31020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31021 +tp31022 +bsa(dp31023 +g4 +g5 +(g6 +(I0 +tp31024 +g8 +tp31025 +Rp31026 +(I1 +(I7 +tp31027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31028 +tp31029 +bsa(dp31030 +g4 +g5 +(g6 +(I0 +tp31031 +g8 +tp31032 +Rp31033 +(I1 +(I7 +tp31034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31035 +tp31036 +bsa(dp31037 +g4 +g5 +(g6 +(I0 +tp31038 +g8 +tp31039 +Rp31040 +(I1 +(I7 +tp31041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31042 +tp31043 +bsa(dp31044 +g4 +g5 +(g6 +(I0 +tp31045 +g8 +tp31046 +Rp31047 +(I1 +(I7 +tp31048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31049 +tp31050 +bsa(dp31051 +g4 +g5 +(g6 +(I0 +tp31052 +g8 +tp31053 +Rp31054 +(I1 +(I7 +tp31055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31056 +tp31057 +bsa(dp31058 +g4 +g5 +(g6 +(I0 +tp31059 +g8 +tp31060 +Rp31061 +(I1 +(I7 +tp31062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31063 +tp31064 +bsa(dp31065 +g4 +g5 +(g6 +(I0 +tp31066 +g8 +tp31067 +Rp31068 +(I1 +(I7 +tp31069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31070 +tp31071 +bsa(dp31072 +g4 +g5 +(g6 +(I0 +tp31073 +g8 +tp31074 +Rp31075 +(I1 +(I7 +tp31076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31077 +tp31078 +bsa(dp31079 +g4 +g5 +(g6 +(I0 +tp31080 +g8 +tp31081 +Rp31082 +(I1 +(I7 +tp31083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31084 +tp31085 +bsa(dp31086 +g4 +g5 +(g6 +(I0 +tp31087 +g8 +tp31088 +Rp31089 +(I1 +(I7 +tp31090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31091 +tp31092 +bsa(dp31093 +g4 +g5 +(g6 +(I0 +tp31094 +g8 +tp31095 +Rp31096 +(I1 +(I7 +tp31097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31098 +tp31099 +bsa(dp31100 +g4 +g5 +(g6 +(I0 +tp31101 +g8 +tp31102 +Rp31103 +(I1 +(I7 +tp31104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31105 +tp31106 +bsa(dp31107 +g4 +g5 +(g6 +(I0 +tp31108 +g8 +tp31109 +Rp31110 +(I1 +(I7 +tp31111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31112 +tp31113 +bsa(dp31114 +g4 +g5 +(g6 +(I0 +tp31115 +g8 +tp31116 +Rp31117 +(I1 +(I7 +tp31118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31119 +tp31120 +bsa(dp31121 +g4 +g5 +(g6 +(I0 +tp31122 +g8 +tp31123 +Rp31124 +(I1 +(I7 +tp31125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31126 +tp31127 +bsa(dp31128 +g4 +g5 +(g6 +(I0 +tp31129 +g8 +tp31130 +Rp31131 +(I1 +(I7 +tp31132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31133 +tp31134 +bsa(dp31135 +g4 +g5 +(g6 +(I0 +tp31136 +g8 +tp31137 +Rp31138 +(I1 +(I7 +tp31139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31140 +tp31141 +bsa(dp31142 +g4 +g5 +(g6 +(I0 +tp31143 +g8 +tp31144 +Rp31145 +(I1 +(I7 +tp31146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31147 +tp31148 +bsa(dp31149 +g4 +g5 +(g6 +(I0 +tp31150 +g8 +tp31151 +Rp31152 +(I1 +(I7 +tp31153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31154 +tp31155 +bsa(dp31156 +g4 +g5 +(g6 +(I0 +tp31157 +g8 +tp31158 +Rp31159 +(I1 +(I7 +tp31160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31161 +tp31162 +bsa(dp31163 +g4 +g5 +(g6 +(I0 +tp31164 +g8 +tp31165 +Rp31166 +(I1 +(I7 +tp31167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31168 +tp31169 +bsa(dp31170 +g4 +g5 +(g6 +(I0 +tp31171 +g8 +tp31172 +Rp31173 +(I1 +(I7 +tp31174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31175 +tp31176 +bsa(dp31177 +g4 +g5 +(g6 +(I0 +tp31178 +g8 +tp31179 +Rp31180 +(I1 +(I7 +tp31181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31182 +tp31183 +bsa(dp31184 +g4 +g5 +(g6 +(I0 +tp31185 +g8 +tp31186 +Rp31187 +(I1 +(I7 +tp31188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31189 +tp31190 +bsa(dp31191 +g4 +g5 +(g6 +(I0 +tp31192 +g8 +tp31193 +Rp31194 +(I1 +(I7 +tp31195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31196 +tp31197 +bsa(dp31198 +g4 +g5 +(g6 +(I0 +tp31199 +g8 +tp31200 +Rp31201 +(I1 +(I7 +tp31202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31203 +tp31204 +bsa(dp31205 +g4 +g5 +(g6 +(I0 +tp31206 +g8 +tp31207 +Rp31208 +(I1 +(I7 +tp31209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31210 +tp31211 +bsa(dp31212 +g4 +g5 +(g6 +(I0 +tp31213 +g8 +tp31214 +Rp31215 +(I1 +(I7 +tp31216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31217 +tp31218 +bsa(dp31219 +g4 +g5 +(g6 +(I0 +tp31220 +g8 +tp31221 +Rp31222 +(I1 +(I7 +tp31223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31224 +tp31225 +bsa(dp31226 +g4 +g5 +(g6 +(I0 +tp31227 +g8 +tp31228 +Rp31229 +(I1 +(I7 +tp31230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31231 +tp31232 +bsa(dp31233 +g4 +g5 +(g6 +(I0 +tp31234 +g8 +tp31235 +Rp31236 +(I1 +(I7 +tp31237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31238 +tp31239 +bsa(dp31240 +g4 +g5 +(g6 +(I0 +tp31241 +g8 +tp31242 +Rp31243 +(I1 +(I7 +tp31244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31245 +tp31246 +bsa(dp31247 +g4 +g5 +(g6 +(I0 +tp31248 +g8 +tp31249 +Rp31250 +(I1 +(I7 +tp31251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31252 +tp31253 +bsa(dp31254 +g4 +g5 +(g6 +(I0 +tp31255 +g8 +tp31256 +Rp31257 +(I1 +(I7 +tp31258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31259 +tp31260 +bsa(dp31261 +g4 +g5 +(g6 +(I0 +tp31262 +g8 +tp31263 +Rp31264 +(I1 +(I7 +tp31265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31266 +tp31267 +bsa(dp31268 +g4 +g5 +(g6 +(I0 +tp31269 +g8 +tp31270 +Rp31271 +(I1 +(I7 +tp31272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31273 +tp31274 +bsa(dp31275 +g4 +g5 +(g6 +(I0 +tp31276 +g8 +tp31277 +Rp31278 +(I1 +(I7 +tp31279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31280 +tp31281 +bsa(dp31282 +g4 +g5 +(g6 +(I0 +tp31283 +g8 +tp31284 +Rp31285 +(I1 +(I7 +tp31286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31287 +tp31288 +bsa(dp31289 +g4 +g5 +(g6 +(I0 +tp31290 +g8 +tp31291 +Rp31292 +(I1 +(I7 +tp31293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31294 +tp31295 +bsa(dp31296 +g4 +g5 +(g6 +(I0 +tp31297 +g8 +tp31298 +Rp31299 +(I1 +(I7 +tp31300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31301 +tp31302 +bsa(dp31303 +g4 +g5 +(g6 +(I0 +tp31304 +g8 +tp31305 +Rp31306 +(I1 +(I7 +tp31307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31308 +tp31309 +bsa(dp31310 +g4 +g5 +(g6 +(I0 +tp31311 +g8 +tp31312 +Rp31313 +(I1 +(I7 +tp31314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31315 +tp31316 +bsa(dp31317 +g4 +g5 +(g6 +(I0 +tp31318 +g8 +tp31319 +Rp31320 +(I1 +(I7 +tp31321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31322 +tp31323 +bsa(dp31324 +g4 +g5 +(g6 +(I0 +tp31325 +g8 +tp31326 +Rp31327 +(I1 +(I7 +tp31328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31329 +tp31330 +bsa(dp31331 +g4 +g5 +(g6 +(I0 +tp31332 +g8 +tp31333 +Rp31334 +(I1 +(I7 +tp31335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31336 +tp31337 +bsa(dp31338 +g4 +g5 +(g6 +(I0 +tp31339 +g8 +tp31340 +Rp31341 +(I1 +(I7 +tp31342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31343 +tp31344 +bsa(dp31345 +g4 +g5 +(g6 +(I0 +tp31346 +g8 +tp31347 +Rp31348 +(I1 +(I7 +tp31349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31350 +tp31351 +bsa(dp31352 +g4 +g5 +(g6 +(I0 +tp31353 +g8 +tp31354 +Rp31355 +(I1 +(I7 +tp31356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31357 +tp31358 +bsa(dp31359 +g4 +g5 +(g6 +(I0 +tp31360 +g8 +tp31361 +Rp31362 +(I1 +(I7 +tp31363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31364 +tp31365 +bsa(dp31366 +g4 +g5 +(g6 +(I0 +tp31367 +g8 +tp31368 +Rp31369 +(I1 +(I7 +tp31370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31371 +tp31372 +bsa(dp31373 +g4 +g5 +(g6 +(I0 +tp31374 +g8 +tp31375 +Rp31376 +(I1 +(I7 +tp31377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31378 +tp31379 +bsa(dp31380 +g4 +g5 +(g6 +(I0 +tp31381 +g8 +tp31382 +Rp31383 +(I1 +(I7 +tp31384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31385 +tp31386 +bsa(dp31387 +g4 +g5 +(g6 +(I0 +tp31388 +g8 +tp31389 +Rp31390 +(I1 +(I7 +tp31391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31392 +tp31393 +bsa(dp31394 +g4 +g5 +(g6 +(I0 +tp31395 +g8 +tp31396 +Rp31397 +(I1 +(I7 +tp31398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31399 +tp31400 +bsa(dp31401 +g4 +g5 +(g6 +(I0 +tp31402 +g8 +tp31403 +Rp31404 +(I1 +(I7 +tp31405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31406 +tp31407 +bsa(dp31408 +g4 +g5 +(g6 +(I0 +tp31409 +g8 +tp31410 +Rp31411 +(I1 +(I7 +tp31412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31413 +tp31414 +bsa(dp31415 +g4 +g5 +(g6 +(I0 +tp31416 +g8 +tp31417 +Rp31418 +(I1 +(I7 +tp31419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31420 +tp31421 +bsa(dp31422 +g4 +g5 +(g6 +(I0 +tp31423 +g8 +tp31424 +Rp31425 +(I1 +(I7 +tp31426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31427 +tp31428 +bsa(dp31429 +g4 +g5 +(g6 +(I0 +tp31430 +g8 +tp31431 +Rp31432 +(I1 +(I7 +tp31433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31434 +tp31435 +bsa(dp31436 +g4 +g5 +(g6 +(I0 +tp31437 +g8 +tp31438 +Rp31439 +(I1 +(I7 +tp31440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31441 +tp31442 +bsa(dp31443 +g4 +g5 +(g6 +(I0 +tp31444 +g8 +tp31445 +Rp31446 +(I1 +(I7 +tp31447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31448 +tp31449 +bsa(dp31450 +g4 +g5 +(g6 +(I0 +tp31451 +g8 +tp31452 +Rp31453 +(I1 +(I7 +tp31454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31455 +tp31456 +bsa(dp31457 +g4 +g5 +(g6 +(I0 +tp31458 +g8 +tp31459 +Rp31460 +(I1 +(I7 +tp31461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31462 +tp31463 +bsa(dp31464 +g4 +g5 +(g6 +(I0 +tp31465 +g8 +tp31466 +Rp31467 +(I1 +(I7 +tp31468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31469 +tp31470 +bsa(dp31471 +g4 +g5 +(g6 +(I0 +tp31472 +g8 +tp31473 +Rp31474 +(I1 +(I7 +tp31475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31476 +tp31477 +bsa(dp31478 +g4 +g5 +(g6 +(I0 +tp31479 +g8 +tp31480 +Rp31481 +(I1 +(I7 +tp31482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31483 +tp31484 +bsa(dp31485 +g4 +g5 +(g6 +(I0 +tp31486 +g8 +tp31487 +Rp31488 +(I1 +(I7 +tp31489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31490 +tp31491 +bsa(dp31492 +g4 +g5 +(g6 +(I0 +tp31493 +g8 +tp31494 +Rp31495 +(I1 +(I7 +tp31496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31497 +tp31498 +bsa(dp31499 +g4 +g5 +(g6 +(I0 +tp31500 +g8 +tp31501 +Rp31502 +(I1 +(I7 +tp31503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31504 +tp31505 +bsa(dp31506 +g4 +g5 +(g6 +(I0 +tp31507 +g8 +tp31508 +Rp31509 +(I1 +(I7 +tp31510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31511 +tp31512 +bsa(dp31513 +g4 +g5 +(g6 +(I0 +tp31514 +g8 +tp31515 +Rp31516 +(I1 +(I7 +tp31517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31518 +tp31519 +bsa(dp31520 +g4 +g5 +(g6 +(I0 +tp31521 +g8 +tp31522 +Rp31523 +(I1 +(I7 +tp31524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31525 +tp31526 +bsa(dp31527 +g4 +g5 +(g6 +(I0 +tp31528 +g8 +tp31529 +Rp31530 +(I1 +(I7 +tp31531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31532 +tp31533 +bsa(dp31534 +g4 +g5 +(g6 +(I0 +tp31535 +g8 +tp31536 +Rp31537 +(I1 +(I7 +tp31538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31539 +tp31540 +bsa(dp31541 +g4 +g5 +(g6 +(I0 +tp31542 +g8 +tp31543 +Rp31544 +(I1 +(I7 +tp31545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31546 +tp31547 +bsa(dp31548 +g4 +g5 +(g6 +(I0 +tp31549 +g8 +tp31550 +Rp31551 +(I1 +(I7 +tp31552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31553 +tp31554 +bsa(dp31555 +g4 +g5 +(g6 +(I0 +tp31556 +g8 +tp31557 +Rp31558 +(I1 +(I7 +tp31559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31560 +tp31561 +bsa(dp31562 +g4 +g5 +(g6 +(I0 +tp31563 +g8 +tp31564 +Rp31565 +(I1 +(I7 +tp31566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31567 +tp31568 +bsa(dp31569 +g4 +g5 +(g6 +(I0 +tp31570 +g8 +tp31571 +Rp31572 +(I1 +(I7 +tp31573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31574 +tp31575 +bsa(dp31576 +g4 +g5 +(g6 +(I0 +tp31577 +g8 +tp31578 +Rp31579 +(I1 +(I7 +tp31580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31581 +tp31582 +bsa(dp31583 +g4 +g5 +(g6 +(I0 +tp31584 +g8 +tp31585 +Rp31586 +(I1 +(I7 +tp31587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31588 +tp31589 +bsa(dp31590 +g4 +g5 +(g6 +(I0 +tp31591 +g8 +tp31592 +Rp31593 +(I1 +(I7 +tp31594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31595 +tp31596 +bsa(dp31597 +g4 +g5 +(g6 +(I0 +tp31598 +g8 +tp31599 +Rp31600 +(I1 +(I7 +tp31601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31602 +tp31603 +bsa(dp31604 +g4 +g5 +(g6 +(I0 +tp31605 +g8 +tp31606 +Rp31607 +(I1 +(I7 +tp31608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31609 +tp31610 +bsa(dp31611 +g4 +g5 +(g6 +(I0 +tp31612 +g8 +tp31613 +Rp31614 +(I1 +(I7 +tp31615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31616 +tp31617 +bsa(dp31618 +g4 +g5 +(g6 +(I0 +tp31619 +g8 +tp31620 +Rp31621 +(I1 +(I7 +tp31622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31623 +tp31624 +bsa(dp31625 +g4 +g5 +(g6 +(I0 +tp31626 +g8 +tp31627 +Rp31628 +(I1 +(I7 +tp31629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31630 +tp31631 +bsa(dp31632 +g4 +g5 +(g6 +(I0 +tp31633 +g8 +tp31634 +Rp31635 +(I1 +(I7 +tp31636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31637 +tp31638 +bsa(dp31639 +g4 +g5 +(g6 +(I0 +tp31640 +g8 +tp31641 +Rp31642 +(I1 +(I7 +tp31643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31644 +tp31645 +bsa(dp31646 +g4 +g5 +(g6 +(I0 +tp31647 +g8 +tp31648 +Rp31649 +(I1 +(I7 +tp31650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31651 +tp31652 +bsa(dp31653 +g4 +g5 +(g6 +(I0 +tp31654 +g8 +tp31655 +Rp31656 +(I1 +(I7 +tp31657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31658 +tp31659 +bsa(dp31660 +g4 +g5 +(g6 +(I0 +tp31661 +g8 +tp31662 +Rp31663 +(I1 +(I7 +tp31664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31665 +tp31666 +bsa(dp31667 +g4 +g5 +(g6 +(I0 +tp31668 +g8 +tp31669 +Rp31670 +(I1 +(I7 +tp31671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31672 +tp31673 +bsa(dp31674 +g4 +g5 +(g6 +(I0 +tp31675 +g8 +tp31676 +Rp31677 +(I1 +(I7 +tp31678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31679 +tp31680 +bsa(dp31681 +g4 +g5 +(g6 +(I0 +tp31682 +g8 +tp31683 +Rp31684 +(I1 +(I7 +tp31685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31686 +tp31687 +bsa(dp31688 +g4 +g5 +(g6 +(I0 +tp31689 +g8 +tp31690 +Rp31691 +(I1 +(I7 +tp31692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31693 +tp31694 +bsa(dp31695 +g4 +g5 +(g6 +(I0 +tp31696 +g8 +tp31697 +Rp31698 +(I1 +(I7 +tp31699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31700 +tp31701 +bsa(dp31702 +g4 +g5 +(g6 +(I0 +tp31703 +g8 +tp31704 +Rp31705 +(I1 +(I7 +tp31706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31707 +tp31708 +bsa(dp31709 +g4 +g5 +(g6 +(I0 +tp31710 +g8 +tp31711 +Rp31712 +(I1 +(I7 +tp31713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31714 +tp31715 +bsa(dp31716 +g4 +g5 +(g6 +(I0 +tp31717 +g8 +tp31718 +Rp31719 +(I1 +(I7 +tp31720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31721 +tp31722 +bsa(dp31723 +g4 +g5 +(g6 +(I0 +tp31724 +g8 +tp31725 +Rp31726 +(I1 +(I7 +tp31727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31728 +tp31729 +bsa(dp31730 +g4 +g5 +(g6 +(I0 +tp31731 +g8 +tp31732 +Rp31733 +(I1 +(I7 +tp31734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31735 +tp31736 +bsa(dp31737 +g4 +g5 +(g6 +(I0 +tp31738 +g8 +tp31739 +Rp31740 +(I1 +(I7 +tp31741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31742 +tp31743 +bsa(dp31744 +g4 +g5 +(g6 +(I0 +tp31745 +g8 +tp31746 +Rp31747 +(I1 +(I7 +tp31748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31749 +tp31750 +bsa(dp31751 +g4 +g5 +(g6 +(I0 +tp31752 +g8 +tp31753 +Rp31754 +(I1 +(I7 +tp31755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31756 +tp31757 +bsa(dp31758 +g4 +g5 +(g6 +(I0 +tp31759 +g8 +tp31760 +Rp31761 +(I1 +(I7 +tp31762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31763 +tp31764 +bsa(dp31765 +g4 +g5 +(g6 +(I0 +tp31766 +g8 +tp31767 +Rp31768 +(I1 +(I7 +tp31769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31770 +tp31771 +bsa(dp31772 +g4 +g5 +(g6 +(I0 +tp31773 +g8 +tp31774 +Rp31775 +(I1 +(I7 +tp31776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31777 +tp31778 +bsa(dp31779 +g4 +g5 +(g6 +(I0 +tp31780 +g8 +tp31781 +Rp31782 +(I1 +(I7 +tp31783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31784 +tp31785 +bsa(dp31786 +g4 +g5 +(g6 +(I0 +tp31787 +g8 +tp31788 +Rp31789 +(I1 +(I7 +tp31790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31791 +tp31792 +bsa(dp31793 +g4 +g5 +(g6 +(I0 +tp31794 +g8 +tp31795 +Rp31796 +(I1 +(I7 +tp31797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31798 +tp31799 +bsa(dp31800 +g4 +g5 +(g6 +(I0 +tp31801 +g8 +tp31802 +Rp31803 +(I1 +(I7 +tp31804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31805 +tp31806 +bsa(dp31807 +g4 +g5 +(g6 +(I0 +tp31808 +g8 +tp31809 +Rp31810 +(I1 +(I7 +tp31811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31812 +tp31813 +bsa(dp31814 +g4 +g5 +(g6 +(I0 +tp31815 +g8 +tp31816 +Rp31817 +(I1 +(I7 +tp31818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31819 +tp31820 +bsa(dp31821 +g4 +g5 +(g6 +(I0 +tp31822 +g8 +tp31823 +Rp31824 +(I1 +(I7 +tp31825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31826 +tp31827 +bsa(dp31828 +g4 +g5 +(g6 +(I0 +tp31829 +g8 +tp31830 +Rp31831 +(I1 +(I7 +tp31832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31833 +tp31834 +bsa(dp31835 +g4 +g5 +(g6 +(I0 +tp31836 +g8 +tp31837 +Rp31838 +(I1 +(I7 +tp31839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31840 +tp31841 +bsa(dp31842 +g4 +g5 +(g6 +(I0 +tp31843 +g8 +tp31844 +Rp31845 +(I1 +(I7 +tp31846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31847 +tp31848 +bsa(dp31849 +g4 +g5 +(g6 +(I0 +tp31850 +g8 +tp31851 +Rp31852 +(I1 +(I7 +tp31853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31854 +tp31855 +bsa(dp31856 +g4 +g5 +(g6 +(I0 +tp31857 +g8 +tp31858 +Rp31859 +(I1 +(I7 +tp31860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31861 +tp31862 +bsa(dp31863 +g4 +g5 +(g6 +(I0 +tp31864 +g8 +tp31865 +Rp31866 +(I1 +(I7 +tp31867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31868 +tp31869 +bsa(dp31870 +g4 +g5 +(g6 +(I0 +tp31871 +g8 +tp31872 +Rp31873 +(I1 +(I7 +tp31874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31875 +tp31876 +bsa(dp31877 +g4 +g5 +(g6 +(I0 +tp31878 +g8 +tp31879 +Rp31880 +(I1 +(I7 +tp31881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31882 +tp31883 +bsa(dp31884 +g4 +g5 +(g6 +(I0 +tp31885 +g8 +tp31886 +Rp31887 +(I1 +(I7 +tp31888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31889 +tp31890 +bsa(dp31891 +g4 +g5 +(g6 +(I0 +tp31892 +g8 +tp31893 +Rp31894 +(I1 +(I7 +tp31895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31896 +tp31897 +bsa(dp31898 +g4 +g5 +(g6 +(I0 +tp31899 +g8 +tp31900 +Rp31901 +(I1 +(I7 +tp31902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31903 +tp31904 +bsa(dp31905 +g4 +g5 +(g6 +(I0 +tp31906 +g8 +tp31907 +Rp31908 +(I1 +(I7 +tp31909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31910 +tp31911 +bsa(dp31912 +g4 +g5 +(g6 +(I0 +tp31913 +g8 +tp31914 +Rp31915 +(I1 +(I7 +tp31916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31917 +tp31918 +bsa(dp31919 +g4 +g5 +(g6 +(I0 +tp31920 +g8 +tp31921 +Rp31922 +(I1 +(I7 +tp31923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31924 +tp31925 +bsa(dp31926 +g4 +g5 +(g6 +(I0 +tp31927 +g8 +tp31928 +Rp31929 +(I1 +(I7 +tp31930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31931 +tp31932 +bsa(dp31933 +g4 +g5 +(g6 +(I0 +tp31934 +g8 +tp31935 +Rp31936 +(I1 +(I7 +tp31937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31938 +tp31939 +bsa(dp31940 +g4 +g5 +(g6 +(I0 +tp31941 +g8 +tp31942 +Rp31943 +(I1 +(I7 +tp31944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31945 +tp31946 +bsa(dp31947 +g4 +g5 +(g6 +(I0 +tp31948 +g8 +tp31949 +Rp31950 +(I1 +(I7 +tp31951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31952 +tp31953 +bsa(dp31954 +g4 +g5 +(g6 +(I0 +tp31955 +g8 +tp31956 +Rp31957 +(I1 +(I7 +tp31958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p31959 +tp31960 +bsa(dp31961 +g4 +g5 +(g6 +(I0 +tp31962 +g8 +tp31963 +Rp31964 +(I1 +(I7 +tp31965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p31966 +tp31967 +bsa(dp31968 +g4 +g5 +(g6 +(I0 +tp31969 +g8 +tp31970 +Rp31971 +(I1 +(I7 +tp31972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31973 +tp31974 +bsa(dp31975 +g4 +g5 +(g6 +(I0 +tp31976 +g8 +tp31977 +Rp31978 +(I1 +(I7 +tp31979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31980 +tp31981 +bsa(dp31982 +g4 +g5 +(g6 +(I0 +tp31983 +g8 +tp31984 +Rp31985 +(I1 +(I7 +tp31986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31987 +tp31988 +bsa(dp31989 +g4 +g5 +(g6 +(I0 +tp31990 +g8 +tp31991 +Rp31992 +(I1 +(I7 +tp31993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p31994 +tp31995 +bsa(dp31996 +g4 +g5 +(g6 +(I0 +tp31997 +g8 +tp31998 +Rp31999 +(I1 +(I7 +tp32000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32001 +tp32002 +bsa(dp32003 +g4 +g5 +(g6 +(I0 +tp32004 +g8 +tp32005 +Rp32006 +(I1 +(I7 +tp32007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32008 +tp32009 +bsa(dp32010 +g4 +g5 +(g6 +(I0 +tp32011 +g8 +tp32012 +Rp32013 +(I1 +(I7 +tp32014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32015 +tp32016 +bsa(dp32017 +g4 +g5 +(g6 +(I0 +tp32018 +g8 +tp32019 +Rp32020 +(I1 +(I7 +tp32021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32022 +tp32023 +bsa(dp32024 +g4 +g5 +(g6 +(I0 +tp32025 +g8 +tp32026 +Rp32027 +(I1 +(I7 +tp32028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32029 +tp32030 +bsa(dp32031 +g4 +g5 +(g6 +(I0 +tp32032 +g8 +tp32033 +Rp32034 +(I1 +(I7 +tp32035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32036 +tp32037 +bsa(dp32038 +g4 +g5 +(g6 +(I0 +tp32039 +g8 +tp32040 +Rp32041 +(I1 +(I7 +tp32042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32043 +tp32044 +bsa(dp32045 +g4 +g5 +(g6 +(I0 +tp32046 +g8 +tp32047 +Rp32048 +(I1 +(I7 +tp32049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32050 +tp32051 +bsa(dp32052 +g4 +g5 +(g6 +(I0 +tp32053 +g8 +tp32054 +Rp32055 +(I1 +(I7 +tp32056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32057 +tp32058 +bsa(dp32059 +g4 +g5 +(g6 +(I0 +tp32060 +g8 +tp32061 +Rp32062 +(I1 +(I7 +tp32063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32064 +tp32065 +bsa(dp32066 +g4 +g5 +(g6 +(I0 +tp32067 +g8 +tp32068 +Rp32069 +(I1 +(I7 +tp32070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32071 +tp32072 +bsa(dp32073 +g4 +g5 +(g6 +(I0 +tp32074 +g8 +tp32075 +Rp32076 +(I1 +(I7 +tp32077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32078 +tp32079 +bsa(dp32080 +g4 +g5 +(g6 +(I0 +tp32081 +g8 +tp32082 +Rp32083 +(I1 +(I7 +tp32084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32085 +tp32086 +bsa(dp32087 +g4 +g5 +(g6 +(I0 +tp32088 +g8 +tp32089 +Rp32090 +(I1 +(I7 +tp32091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32092 +tp32093 +bsa(dp32094 +g4 +g5 +(g6 +(I0 +tp32095 +g8 +tp32096 +Rp32097 +(I1 +(I7 +tp32098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32099 +tp32100 +bsa(dp32101 +g4 +g5 +(g6 +(I0 +tp32102 +g8 +tp32103 +Rp32104 +(I1 +(I7 +tp32105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32106 +tp32107 +bsa(dp32108 +g4 +g5 +(g6 +(I0 +tp32109 +g8 +tp32110 +Rp32111 +(I1 +(I7 +tp32112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32113 +tp32114 +bsa(dp32115 +g4 +g5 +(g6 +(I0 +tp32116 +g8 +tp32117 +Rp32118 +(I1 +(I7 +tp32119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32120 +tp32121 +bsa(dp32122 +g4 +g5 +(g6 +(I0 +tp32123 +g8 +tp32124 +Rp32125 +(I1 +(I7 +tp32126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32127 +tp32128 +bsa(dp32129 +g4 +g5 +(g6 +(I0 +tp32130 +g8 +tp32131 +Rp32132 +(I1 +(I7 +tp32133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32134 +tp32135 +bsa(dp32136 +g4 +g5 +(g6 +(I0 +tp32137 +g8 +tp32138 +Rp32139 +(I1 +(I7 +tp32140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32141 +tp32142 +bsa(dp32143 +g4 +g5 +(g6 +(I0 +tp32144 +g8 +tp32145 +Rp32146 +(I1 +(I7 +tp32147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32148 +tp32149 +bsa(dp32150 +g4 +g5 +(g6 +(I0 +tp32151 +g8 +tp32152 +Rp32153 +(I1 +(I7 +tp32154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32155 +tp32156 +bsa(dp32157 +g4 +g5 +(g6 +(I0 +tp32158 +g8 +tp32159 +Rp32160 +(I1 +(I7 +tp32161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32162 +tp32163 +bsa(dp32164 +g4 +g5 +(g6 +(I0 +tp32165 +g8 +tp32166 +Rp32167 +(I1 +(I7 +tp32168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32169 +tp32170 +bsa(dp32171 +g4 +g5 +(g6 +(I0 +tp32172 +g8 +tp32173 +Rp32174 +(I1 +(I7 +tp32175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32176 +tp32177 +bsa(dp32178 +g4 +g5 +(g6 +(I0 +tp32179 +g8 +tp32180 +Rp32181 +(I1 +(I7 +tp32182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32183 +tp32184 +bsa(dp32185 +g4 +g5 +(g6 +(I0 +tp32186 +g8 +tp32187 +Rp32188 +(I1 +(I7 +tp32189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32190 +tp32191 +bsa(dp32192 +g4 +g5 +(g6 +(I0 +tp32193 +g8 +tp32194 +Rp32195 +(I1 +(I7 +tp32196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32197 +tp32198 +bsa(dp32199 +g4 +g5 +(g6 +(I0 +tp32200 +g8 +tp32201 +Rp32202 +(I1 +(I7 +tp32203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32204 +tp32205 +bsa(dp32206 +g4 +g5 +(g6 +(I0 +tp32207 +g8 +tp32208 +Rp32209 +(I1 +(I7 +tp32210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32211 +tp32212 +bsa(dp32213 +g4 +g5 +(g6 +(I0 +tp32214 +g8 +tp32215 +Rp32216 +(I1 +(I7 +tp32217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32218 +tp32219 +bsa(dp32220 +g4 +g5 +(g6 +(I0 +tp32221 +g8 +tp32222 +Rp32223 +(I1 +(I7 +tp32224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32225 +tp32226 +bsa(dp32227 +g4 +g5 +(g6 +(I0 +tp32228 +g8 +tp32229 +Rp32230 +(I1 +(I7 +tp32231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32232 +tp32233 +bsa(dp32234 +g4 +g5 +(g6 +(I0 +tp32235 +g8 +tp32236 +Rp32237 +(I1 +(I7 +tp32238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32239 +tp32240 +bsa(dp32241 +g4 +g5 +(g6 +(I0 +tp32242 +g8 +tp32243 +Rp32244 +(I1 +(I7 +tp32245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32246 +tp32247 +bsa(dp32248 +g4 +g5 +(g6 +(I0 +tp32249 +g8 +tp32250 +Rp32251 +(I1 +(I7 +tp32252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32253 +tp32254 +bsa(dp32255 +g4 +g5 +(g6 +(I0 +tp32256 +g8 +tp32257 +Rp32258 +(I1 +(I7 +tp32259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32260 +tp32261 +bsa(dp32262 +g4 +g5 +(g6 +(I0 +tp32263 +g8 +tp32264 +Rp32265 +(I1 +(I7 +tp32266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32267 +tp32268 +bsa(dp32269 +g4 +g5 +(g6 +(I0 +tp32270 +g8 +tp32271 +Rp32272 +(I1 +(I7 +tp32273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32274 +tp32275 +bsa(dp32276 +g4 +g5 +(g6 +(I0 +tp32277 +g8 +tp32278 +Rp32279 +(I1 +(I7 +tp32280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32281 +tp32282 +bsa(dp32283 +g4 +g5 +(g6 +(I0 +tp32284 +g8 +tp32285 +Rp32286 +(I1 +(I7 +tp32287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32288 +tp32289 +bsa(dp32290 +g4 +g5 +(g6 +(I0 +tp32291 +g8 +tp32292 +Rp32293 +(I1 +(I7 +tp32294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32295 +tp32296 +bsa(dp32297 +g4 +g5 +(g6 +(I0 +tp32298 +g8 +tp32299 +Rp32300 +(I1 +(I7 +tp32301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32302 +tp32303 +bsa(dp32304 +g4 +g5 +(g6 +(I0 +tp32305 +g8 +tp32306 +Rp32307 +(I1 +(I7 +tp32308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32309 +tp32310 +bsa(dp32311 +g4 +g5 +(g6 +(I0 +tp32312 +g8 +tp32313 +Rp32314 +(I1 +(I7 +tp32315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32316 +tp32317 +bsa(dp32318 +g4 +g5 +(g6 +(I0 +tp32319 +g8 +tp32320 +Rp32321 +(I1 +(I7 +tp32322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32323 +tp32324 +bsa(dp32325 +g4 +g5 +(g6 +(I0 +tp32326 +g8 +tp32327 +Rp32328 +(I1 +(I7 +tp32329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32330 +tp32331 +bsa(dp32332 +g4 +g5 +(g6 +(I0 +tp32333 +g8 +tp32334 +Rp32335 +(I1 +(I7 +tp32336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32337 +tp32338 +bsa(dp32339 +g4 +g5 +(g6 +(I0 +tp32340 +g8 +tp32341 +Rp32342 +(I1 +(I7 +tp32343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32344 +tp32345 +bsa(dp32346 +g4 +g5 +(g6 +(I0 +tp32347 +g8 +tp32348 +Rp32349 +(I1 +(I7 +tp32350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32351 +tp32352 +bsa(dp32353 +g4 +g5 +(g6 +(I0 +tp32354 +g8 +tp32355 +Rp32356 +(I1 +(I7 +tp32357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32358 +tp32359 +bsa(dp32360 +g4 +g5 +(g6 +(I0 +tp32361 +g8 +tp32362 +Rp32363 +(I1 +(I7 +tp32364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32365 +tp32366 +bsa(dp32367 +g4 +g5 +(g6 +(I0 +tp32368 +g8 +tp32369 +Rp32370 +(I1 +(I7 +tp32371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32372 +tp32373 +bsa(dp32374 +g4 +g5 +(g6 +(I0 +tp32375 +g8 +tp32376 +Rp32377 +(I1 +(I7 +tp32378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32379 +tp32380 +bsa(dp32381 +g4 +g5 +(g6 +(I0 +tp32382 +g8 +tp32383 +Rp32384 +(I1 +(I7 +tp32385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32386 +tp32387 +bsa(dp32388 +g4 +g5 +(g6 +(I0 +tp32389 +g8 +tp32390 +Rp32391 +(I1 +(I7 +tp32392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32393 +tp32394 +bsa(dp32395 +g4 +g5 +(g6 +(I0 +tp32396 +g8 +tp32397 +Rp32398 +(I1 +(I7 +tp32399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32400 +tp32401 +bsa(dp32402 +g4 +g5 +(g6 +(I0 +tp32403 +g8 +tp32404 +Rp32405 +(I1 +(I7 +tp32406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32407 +tp32408 +bsa(dp32409 +g4 +g5 +(g6 +(I0 +tp32410 +g8 +tp32411 +Rp32412 +(I1 +(I7 +tp32413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32414 +tp32415 +bsa(dp32416 +g4 +g5 +(g6 +(I0 +tp32417 +g8 +tp32418 +Rp32419 +(I1 +(I7 +tp32420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32421 +tp32422 +bsa(dp32423 +g4 +g5 +(g6 +(I0 +tp32424 +g8 +tp32425 +Rp32426 +(I1 +(I7 +tp32427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32428 +tp32429 +bsa(dp32430 +g4 +g5 +(g6 +(I0 +tp32431 +g8 +tp32432 +Rp32433 +(I1 +(I7 +tp32434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32435 +tp32436 +bsa(dp32437 +g4 +g5 +(g6 +(I0 +tp32438 +g8 +tp32439 +Rp32440 +(I1 +(I7 +tp32441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32442 +tp32443 +bsa(dp32444 +g4 +g5 +(g6 +(I0 +tp32445 +g8 +tp32446 +Rp32447 +(I1 +(I7 +tp32448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32449 +tp32450 +bsa(dp32451 +g4 +g5 +(g6 +(I0 +tp32452 +g8 +tp32453 +Rp32454 +(I1 +(I7 +tp32455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32456 +tp32457 +bsa(dp32458 +g4 +g5 +(g6 +(I0 +tp32459 +g8 +tp32460 +Rp32461 +(I1 +(I7 +tp32462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32463 +tp32464 +bsa(dp32465 +g4 +g5 +(g6 +(I0 +tp32466 +g8 +tp32467 +Rp32468 +(I1 +(I7 +tp32469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32470 +tp32471 +bsa(dp32472 +g4 +g5 +(g6 +(I0 +tp32473 +g8 +tp32474 +Rp32475 +(I1 +(I7 +tp32476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32477 +tp32478 +bsa(dp32479 +g4 +g5 +(g6 +(I0 +tp32480 +g8 +tp32481 +Rp32482 +(I1 +(I7 +tp32483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32484 +tp32485 +bsa(dp32486 +g4 +g5 +(g6 +(I0 +tp32487 +g8 +tp32488 +Rp32489 +(I1 +(I7 +tp32490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32491 +tp32492 +bsa(dp32493 +g4 +g5 +(g6 +(I0 +tp32494 +g8 +tp32495 +Rp32496 +(I1 +(I7 +tp32497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32498 +tp32499 +bsa(dp32500 +g4 +g5 +(g6 +(I0 +tp32501 +g8 +tp32502 +Rp32503 +(I1 +(I7 +tp32504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32505 +tp32506 +bsa(dp32507 +g4 +g5 +(g6 +(I0 +tp32508 +g8 +tp32509 +Rp32510 +(I1 +(I7 +tp32511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32512 +tp32513 +bsa(dp32514 +g4 +g5 +(g6 +(I0 +tp32515 +g8 +tp32516 +Rp32517 +(I1 +(I7 +tp32518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32519 +tp32520 +bsa(dp32521 +g4 +g5 +(g6 +(I0 +tp32522 +g8 +tp32523 +Rp32524 +(I1 +(I7 +tp32525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32526 +tp32527 +bsa(dp32528 +g4 +g5 +(g6 +(I0 +tp32529 +g8 +tp32530 +Rp32531 +(I1 +(I7 +tp32532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32533 +tp32534 +bsa(dp32535 +g4 +g5 +(g6 +(I0 +tp32536 +g8 +tp32537 +Rp32538 +(I1 +(I7 +tp32539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32540 +tp32541 +bsa(dp32542 +g4 +g5 +(g6 +(I0 +tp32543 +g8 +tp32544 +Rp32545 +(I1 +(I7 +tp32546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32547 +tp32548 +bsa(dp32549 +g4 +g5 +(g6 +(I0 +tp32550 +g8 +tp32551 +Rp32552 +(I1 +(I7 +tp32553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32554 +tp32555 +bsa(dp32556 +g4 +g5 +(g6 +(I0 +tp32557 +g8 +tp32558 +Rp32559 +(I1 +(I7 +tp32560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32561 +tp32562 +bsa(dp32563 +g4 +g5 +(g6 +(I0 +tp32564 +g8 +tp32565 +Rp32566 +(I1 +(I7 +tp32567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32568 +tp32569 +bsa(dp32570 +g4 +g5 +(g6 +(I0 +tp32571 +g8 +tp32572 +Rp32573 +(I1 +(I7 +tp32574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32575 +tp32576 +bsa(dp32577 +g4 +g5 +(g6 +(I0 +tp32578 +g8 +tp32579 +Rp32580 +(I1 +(I7 +tp32581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32582 +tp32583 +bsa(dp32584 +g4 +g5 +(g6 +(I0 +tp32585 +g8 +tp32586 +Rp32587 +(I1 +(I7 +tp32588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32589 +tp32590 +bsa(dp32591 +g4 +g5 +(g6 +(I0 +tp32592 +g8 +tp32593 +Rp32594 +(I1 +(I7 +tp32595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32596 +tp32597 +bsa(dp32598 +g4 +g5 +(g6 +(I0 +tp32599 +g8 +tp32600 +Rp32601 +(I1 +(I7 +tp32602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32603 +tp32604 +bsa(dp32605 +g4 +g5 +(g6 +(I0 +tp32606 +g8 +tp32607 +Rp32608 +(I1 +(I7 +tp32609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32610 +tp32611 +bsa(dp32612 +g4 +g5 +(g6 +(I0 +tp32613 +g8 +tp32614 +Rp32615 +(I1 +(I7 +tp32616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32617 +tp32618 +bsa(dp32619 +g4 +g5 +(g6 +(I0 +tp32620 +g8 +tp32621 +Rp32622 +(I1 +(I7 +tp32623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32624 +tp32625 +bsa(dp32626 +g4 +g5 +(g6 +(I0 +tp32627 +g8 +tp32628 +Rp32629 +(I1 +(I7 +tp32630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32631 +tp32632 +bsa(dp32633 +g4 +g5 +(g6 +(I0 +tp32634 +g8 +tp32635 +Rp32636 +(I1 +(I7 +tp32637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32638 +tp32639 +bsa(dp32640 +g4 +g5 +(g6 +(I0 +tp32641 +g8 +tp32642 +Rp32643 +(I1 +(I7 +tp32644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32645 +tp32646 +bsa(dp32647 +g4 +g5 +(g6 +(I0 +tp32648 +g8 +tp32649 +Rp32650 +(I1 +(I7 +tp32651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32652 +tp32653 +bsa(dp32654 +g4 +g5 +(g6 +(I0 +tp32655 +g8 +tp32656 +Rp32657 +(I1 +(I7 +tp32658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32659 +tp32660 +bsa(dp32661 +g4 +g5 +(g6 +(I0 +tp32662 +g8 +tp32663 +Rp32664 +(I1 +(I7 +tp32665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32666 +tp32667 +bsa(dp32668 +g4 +g5 +(g6 +(I0 +tp32669 +g8 +tp32670 +Rp32671 +(I1 +(I7 +tp32672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32673 +tp32674 +bsa(dp32675 +g4 +g5 +(g6 +(I0 +tp32676 +g8 +tp32677 +Rp32678 +(I1 +(I7 +tp32679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32680 +tp32681 +bsa(dp32682 +g4 +g5 +(g6 +(I0 +tp32683 +g8 +tp32684 +Rp32685 +(I1 +(I7 +tp32686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32687 +tp32688 +bsa(dp32689 +g4 +g5 +(g6 +(I0 +tp32690 +g8 +tp32691 +Rp32692 +(I1 +(I7 +tp32693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32694 +tp32695 +bsa(dp32696 +g4 +g5 +(g6 +(I0 +tp32697 +g8 +tp32698 +Rp32699 +(I1 +(I7 +tp32700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32701 +tp32702 +bsa(dp32703 +g4 +g5 +(g6 +(I0 +tp32704 +g8 +tp32705 +Rp32706 +(I1 +(I7 +tp32707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32708 +tp32709 +bsa(dp32710 +g4 +g5 +(g6 +(I0 +tp32711 +g8 +tp32712 +Rp32713 +(I1 +(I7 +tp32714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32715 +tp32716 +bsa(dp32717 +g4 +g5 +(g6 +(I0 +tp32718 +g8 +tp32719 +Rp32720 +(I1 +(I7 +tp32721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32722 +tp32723 +bsa(dp32724 +g4 +g5 +(g6 +(I0 +tp32725 +g8 +tp32726 +Rp32727 +(I1 +(I7 +tp32728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32729 +tp32730 +bsa(dp32731 +g4 +g5 +(g6 +(I0 +tp32732 +g8 +tp32733 +Rp32734 +(I1 +(I7 +tp32735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32736 +tp32737 +bsa(dp32738 +g4 +g5 +(g6 +(I0 +tp32739 +g8 +tp32740 +Rp32741 +(I1 +(I7 +tp32742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32743 +tp32744 +bsa(dp32745 +g4 +g5 +(g6 +(I0 +tp32746 +g8 +tp32747 +Rp32748 +(I1 +(I7 +tp32749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32750 +tp32751 +bsa(dp32752 +g4 +g5 +(g6 +(I0 +tp32753 +g8 +tp32754 +Rp32755 +(I1 +(I7 +tp32756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32757 +tp32758 +bsa(dp32759 +g4 +g5 +(g6 +(I0 +tp32760 +g8 +tp32761 +Rp32762 +(I1 +(I7 +tp32763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32764 +tp32765 +bsa(dp32766 +g4 +g5 +(g6 +(I0 +tp32767 +g8 +tp32768 +Rp32769 +(I1 +(I7 +tp32770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32771 +tp32772 +bsa(dp32773 +g4 +g5 +(g6 +(I0 +tp32774 +g8 +tp32775 +Rp32776 +(I1 +(I7 +tp32777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32778 +tp32779 +bsa(dp32780 +g4 +g5 +(g6 +(I0 +tp32781 +g8 +tp32782 +Rp32783 +(I1 +(I7 +tp32784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32785 +tp32786 +bsa(dp32787 +g4 +g5 +(g6 +(I0 +tp32788 +g8 +tp32789 +Rp32790 +(I1 +(I7 +tp32791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32792 +tp32793 +bsa(dp32794 +g4 +g5 +(g6 +(I0 +tp32795 +g8 +tp32796 +Rp32797 +(I1 +(I7 +tp32798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32799 +tp32800 +bsa(dp32801 +g4 +g5 +(g6 +(I0 +tp32802 +g8 +tp32803 +Rp32804 +(I1 +(I7 +tp32805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32806 +tp32807 +bsa(dp32808 +g4 +g5 +(g6 +(I0 +tp32809 +g8 +tp32810 +Rp32811 +(I1 +(I7 +tp32812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32813 +tp32814 +bsa(dp32815 +g4 +g5 +(g6 +(I0 +tp32816 +g8 +tp32817 +Rp32818 +(I1 +(I7 +tp32819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32820 +tp32821 +bsa(dp32822 +g4 +g5 +(g6 +(I0 +tp32823 +g8 +tp32824 +Rp32825 +(I1 +(I7 +tp32826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32827 +tp32828 +bsa(dp32829 +g4 +g5 +(g6 +(I0 +tp32830 +g8 +tp32831 +Rp32832 +(I1 +(I7 +tp32833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32834 +tp32835 +bsa(dp32836 +g4 +g5 +(g6 +(I0 +tp32837 +g8 +tp32838 +Rp32839 +(I1 +(I7 +tp32840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32841 +tp32842 +bsa(dp32843 +g4 +g5 +(g6 +(I0 +tp32844 +g8 +tp32845 +Rp32846 +(I1 +(I7 +tp32847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32848 +tp32849 +bsa(dp32850 +g4 +g5 +(g6 +(I0 +tp32851 +g8 +tp32852 +Rp32853 +(I1 +(I7 +tp32854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32855 +tp32856 +bsa(dp32857 +g4 +g5 +(g6 +(I0 +tp32858 +g8 +tp32859 +Rp32860 +(I1 +(I7 +tp32861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32862 +tp32863 +bsa(dp32864 +g4 +g5 +(g6 +(I0 +tp32865 +g8 +tp32866 +Rp32867 +(I1 +(I7 +tp32868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32869 +tp32870 +bsa(dp32871 +g4 +g5 +(g6 +(I0 +tp32872 +g8 +tp32873 +Rp32874 +(I1 +(I7 +tp32875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32876 +tp32877 +bsa(dp32878 +g4 +g5 +(g6 +(I0 +tp32879 +g8 +tp32880 +Rp32881 +(I1 +(I7 +tp32882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32883 +tp32884 +bsa(dp32885 +g4 +g5 +(g6 +(I0 +tp32886 +g8 +tp32887 +Rp32888 +(I1 +(I7 +tp32889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32890 +tp32891 +bsa(dp32892 +g4 +g5 +(g6 +(I0 +tp32893 +g8 +tp32894 +Rp32895 +(I1 +(I7 +tp32896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32897 +tp32898 +bsa(dp32899 +g4 +g5 +(g6 +(I0 +tp32900 +g8 +tp32901 +Rp32902 +(I1 +(I7 +tp32903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32904 +tp32905 +bsa(dp32906 +g4 +g5 +(g6 +(I0 +tp32907 +g8 +tp32908 +Rp32909 +(I1 +(I7 +tp32910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32911 +tp32912 +bsa(dp32913 +g4 +g5 +(g6 +(I0 +tp32914 +g8 +tp32915 +Rp32916 +(I1 +(I7 +tp32917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32918 +tp32919 +bsa(dp32920 +g4 +g5 +(g6 +(I0 +tp32921 +g8 +tp32922 +Rp32923 +(I1 +(I7 +tp32924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32925 +tp32926 +bsa(dp32927 +g4 +g5 +(g6 +(I0 +tp32928 +g8 +tp32929 +Rp32930 +(I1 +(I7 +tp32931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32932 +tp32933 +bsa(dp32934 +g4 +g5 +(g6 +(I0 +tp32935 +g8 +tp32936 +Rp32937 +(I1 +(I7 +tp32938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32939 +tp32940 +bsa(dp32941 +g4 +g5 +(g6 +(I0 +tp32942 +g8 +tp32943 +Rp32944 +(I1 +(I7 +tp32945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32946 +tp32947 +bsa(dp32948 +g4 +g5 +(g6 +(I0 +tp32949 +g8 +tp32950 +Rp32951 +(I1 +(I7 +tp32952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32953 +tp32954 +bsa(dp32955 +g4 +g5 +(g6 +(I0 +tp32956 +g8 +tp32957 +Rp32958 +(I1 +(I7 +tp32959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32960 +tp32961 +bsa(dp32962 +g4 +g5 +(g6 +(I0 +tp32963 +g8 +tp32964 +Rp32965 +(I1 +(I7 +tp32966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32967 +tp32968 +bsa(dp32969 +g4 +g5 +(g6 +(I0 +tp32970 +g8 +tp32971 +Rp32972 +(I1 +(I7 +tp32973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32974 +tp32975 +bsa(dp32976 +g4 +g5 +(g6 +(I0 +tp32977 +g8 +tp32978 +Rp32979 +(I1 +(I7 +tp32980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p32981 +tp32982 +bsa(dp32983 +g4 +g5 +(g6 +(I0 +tp32984 +g8 +tp32985 +Rp32986 +(I1 +(I7 +tp32987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p32988 +tp32989 +bsa(dp32990 +g4 +g5 +(g6 +(I0 +tp32991 +g8 +tp32992 +Rp32993 +(I1 +(I7 +tp32994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p32995 +tp32996 +bsa(dp32997 +g4 +g5 +(g6 +(I0 +tp32998 +g8 +tp32999 +Rp33000 +(I1 +(I7 +tp33001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33002 +tp33003 +bsa(dp33004 +g4 +g5 +(g6 +(I0 +tp33005 +g8 +tp33006 +Rp33007 +(I1 +(I7 +tp33008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33009 +tp33010 +bsa(dp33011 +g4 +g5 +(g6 +(I0 +tp33012 +g8 +tp33013 +Rp33014 +(I1 +(I7 +tp33015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33016 +tp33017 +bsa(dp33018 +g4 +g5 +(g6 +(I0 +tp33019 +g8 +tp33020 +Rp33021 +(I1 +(I7 +tp33022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33023 +tp33024 +bsa(dp33025 +g4 +g5 +(g6 +(I0 +tp33026 +g8 +tp33027 +Rp33028 +(I1 +(I7 +tp33029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33030 +tp33031 +bsa(dp33032 +g4 +g5 +(g6 +(I0 +tp33033 +g8 +tp33034 +Rp33035 +(I1 +(I7 +tp33036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33037 +tp33038 +bsa(dp33039 +g4 +g5 +(g6 +(I0 +tp33040 +g8 +tp33041 +Rp33042 +(I1 +(I7 +tp33043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33044 +tp33045 +bsa(dp33046 +g4 +g5 +(g6 +(I0 +tp33047 +g8 +tp33048 +Rp33049 +(I1 +(I7 +tp33050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33051 +tp33052 +bsa(dp33053 +g4 +g5 +(g6 +(I0 +tp33054 +g8 +tp33055 +Rp33056 +(I1 +(I7 +tp33057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33058 +tp33059 +bsa(dp33060 +g4 +g5 +(g6 +(I0 +tp33061 +g8 +tp33062 +Rp33063 +(I1 +(I7 +tp33064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33065 +tp33066 +bsa(dp33067 +g4 +g5 +(g6 +(I0 +tp33068 +g8 +tp33069 +Rp33070 +(I1 +(I7 +tp33071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33072 +tp33073 +bsa(dp33074 +g4 +g5 +(g6 +(I0 +tp33075 +g8 +tp33076 +Rp33077 +(I1 +(I7 +tp33078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33079 +tp33080 +bsa(dp33081 +g4 +g5 +(g6 +(I0 +tp33082 +g8 +tp33083 +Rp33084 +(I1 +(I7 +tp33085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33086 +tp33087 +bsa(dp33088 +g4 +g5 +(g6 +(I0 +tp33089 +g8 +tp33090 +Rp33091 +(I1 +(I7 +tp33092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33093 +tp33094 +bsa(dp33095 +g4 +g5 +(g6 +(I0 +tp33096 +g8 +tp33097 +Rp33098 +(I1 +(I7 +tp33099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33100 +tp33101 +bsa(dp33102 +g4 +g5 +(g6 +(I0 +tp33103 +g8 +tp33104 +Rp33105 +(I1 +(I7 +tp33106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33107 +tp33108 +bsa(dp33109 +g4 +g5 +(g6 +(I0 +tp33110 +g8 +tp33111 +Rp33112 +(I1 +(I7 +tp33113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33114 +tp33115 +bsa(dp33116 +g4 +g5 +(g6 +(I0 +tp33117 +g8 +tp33118 +Rp33119 +(I1 +(I7 +tp33120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33121 +tp33122 +bsa(dp33123 +g4 +g5 +(g6 +(I0 +tp33124 +g8 +tp33125 +Rp33126 +(I1 +(I7 +tp33127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33128 +tp33129 +bsa(dp33130 +g4 +g5 +(g6 +(I0 +tp33131 +g8 +tp33132 +Rp33133 +(I1 +(I7 +tp33134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33135 +tp33136 +bsa(dp33137 +g4 +g5 +(g6 +(I0 +tp33138 +g8 +tp33139 +Rp33140 +(I1 +(I7 +tp33141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33142 +tp33143 +bsa(dp33144 +g4 +g5 +(g6 +(I0 +tp33145 +g8 +tp33146 +Rp33147 +(I1 +(I7 +tp33148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33149 +tp33150 +bsa(dp33151 +g4 +g5 +(g6 +(I0 +tp33152 +g8 +tp33153 +Rp33154 +(I1 +(I7 +tp33155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33156 +tp33157 +bsa(dp33158 +g4 +g5 +(g6 +(I0 +tp33159 +g8 +tp33160 +Rp33161 +(I1 +(I7 +tp33162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33163 +tp33164 +bsa(dp33165 +g4 +g5 +(g6 +(I0 +tp33166 +g8 +tp33167 +Rp33168 +(I1 +(I7 +tp33169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33170 +tp33171 +bsa(dp33172 +g4 +g5 +(g6 +(I0 +tp33173 +g8 +tp33174 +Rp33175 +(I1 +(I7 +tp33176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33177 +tp33178 +bsa(dp33179 +g4 +g5 +(g6 +(I0 +tp33180 +g8 +tp33181 +Rp33182 +(I1 +(I7 +tp33183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33184 +tp33185 +bsa(dp33186 +g4 +g5 +(g6 +(I0 +tp33187 +g8 +tp33188 +Rp33189 +(I1 +(I7 +tp33190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33191 +tp33192 +bsa(dp33193 +g4 +g5 +(g6 +(I0 +tp33194 +g8 +tp33195 +Rp33196 +(I1 +(I7 +tp33197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33198 +tp33199 +bsa(dp33200 +g4 +g5 +(g6 +(I0 +tp33201 +g8 +tp33202 +Rp33203 +(I1 +(I7 +tp33204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33205 +tp33206 +bsa(dp33207 +g4 +g5 +(g6 +(I0 +tp33208 +g8 +tp33209 +Rp33210 +(I1 +(I7 +tp33211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33212 +tp33213 +bsa(dp33214 +g4 +g5 +(g6 +(I0 +tp33215 +g8 +tp33216 +Rp33217 +(I1 +(I7 +tp33218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33219 +tp33220 +bsa(dp33221 +g4 +g5 +(g6 +(I0 +tp33222 +g8 +tp33223 +Rp33224 +(I1 +(I7 +tp33225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33226 +tp33227 +bsa(dp33228 +g4 +g5 +(g6 +(I0 +tp33229 +g8 +tp33230 +Rp33231 +(I1 +(I7 +tp33232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33233 +tp33234 +bsa(dp33235 +g4 +g5 +(g6 +(I0 +tp33236 +g8 +tp33237 +Rp33238 +(I1 +(I7 +tp33239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33240 +tp33241 +bsa(dp33242 +g4 +g5 +(g6 +(I0 +tp33243 +g8 +tp33244 +Rp33245 +(I1 +(I7 +tp33246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33247 +tp33248 +bsa(dp33249 +g4 +g5 +(g6 +(I0 +tp33250 +g8 +tp33251 +Rp33252 +(I1 +(I7 +tp33253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33254 +tp33255 +bsa(dp33256 +g4 +g5 +(g6 +(I0 +tp33257 +g8 +tp33258 +Rp33259 +(I1 +(I7 +tp33260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33261 +tp33262 +bsa(dp33263 +g4 +g5 +(g6 +(I0 +tp33264 +g8 +tp33265 +Rp33266 +(I1 +(I7 +tp33267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33268 +tp33269 +bsa(dp33270 +g4 +g5 +(g6 +(I0 +tp33271 +g8 +tp33272 +Rp33273 +(I1 +(I7 +tp33274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33275 +tp33276 +bsa(dp33277 +g4 +g5 +(g6 +(I0 +tp33278 +g8 +tp33279 +Rp33280 +(I1 +(I7 +tp33281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33282 +tp33283 +bsa(dp33284 +g4 +g5 +(g6 +(I0 +tp33285 +g8 +tp33286 +Rp33287 +(I1 +(I7 +tp33288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33289 +tp33290 +bsa(dp33291 +g4 +g5 +(g6 +(I0 +tp33292 +g8 +tp33293 +Rp33294 +(I1 +(I7 +tp33295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33296 +tp33297 +bsa(dp33298 +g4 +g5 +(g6 +(I0 +tp33299 +g8 +tp33300 +Rp33301 +(I1 +(I7 +tp33302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33303 +tp33304 +bsa(dp33305 +g4 +g5 +(g6 +(I0 +tp33306 +g8 +tp33307 +Rp33308 +(I1 +(I7 +tp33309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33310 +tp33311 +bsa(dp33312 +g4 +g5 +(g6 +(I0 +tp33313 +g8 +tp33314 +Rp33315 +(I1 +(I7 +tp33316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33317 +tp33318 +bsa(dp33319 +g4 +g5 +(g6 +(I0 +tp33320 +g8 +tp33321 +Rp33322 +(I1 +(I7 +tp33323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33324 +tp33325 +bsa(dp33326 +g4 +g5 +(g6 +(I0 +tp33327 +g8 +tp33328 +Rp33329 +(I1 +(I7 +tp33330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33331 +tp33332 +bsa(dp33333 +g4 +g5 +(g6 +(I0 +tp33334 +g8 +tp33335 +Rp33336 +(I1 +(I7 +tp33337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33338 +tp33339 +bsa(dp33340 +g4 +g5 +(g6 +(I0 +tp33341 +g8 +tp33342 +Rp33343 +(I1 +(I7 +tp33344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33345 +tp33346 +bsa(dp33347 +g4 +g5 +(g6 +(I0 +tp33348 +g8 +tp33349 +Rp33350 +(I1 +(I7 +tp33351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33352 +tp33353 +bsa(dp33354 +g4 +g5 +(g6 +(I0 +tp33355 +g8 +tp33356 +Rp33357 +(I1 +(I7 +tp33358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33359 +tp33360 +bsa(dp33361 +g4 +g5 +(g6 +(I0 +tp33362 +g8 +tp33363 +Rp33364 +(I1 +(I7 +tp33365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33366 +tp33367 +bsa(dp33368 +g4 +g5 +(g6 +(I0 +tp33369 +g8 +tp33370 +Rp33371 +(I1 +(I7 +tp33372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33373 +tp33374 +bsa(dp33375 +g4 +g5 +(g6 +(I0 +tp33376 +g8 +tp33377 +Rp33378 +(I1 +(I7 +tp33379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33380 +tp33381 +bsa(dp33382 +g4 +g5 +(g6 +(I0 +tp33383 +g8 +tp33384 +Rp33385 +(I1 +(I7 +tp33386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33387 +tp33388 +bsa(dp33389 +g4 +g5 +(g6 +(I0 +tp33390 +g8 +tp33391 +Rp33392 +(I1 +(I7 +tp33393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33394 +tp33395 +bsa(dp33396 +g4 +g5 +(g6 +(I0 +tp33397 +g8 +tp33398 +Rp33399 +(I1 +(I7 +tp33400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33401 +tp33402 +bsa(dp33403 +g4 +g5 +(g6 +(I0 +tp33404 +g8 +tp33405 +Rp33406 +(I1 +(I7 +tp33407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33408 +tp33409 +bsa(dp33410 +g4 +g5 +(g6 +(I0 +tp33411 +g8 +tp33412 +Rp33413 +(I1 +(I7 +tp33414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33415 +tp33416 +bsa(dp33417 +g4 +g5 +(g6 +(I0 +tp33418 +g8 +tp33419 +Rp33420 +(I1 +(I7 +tp33421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33422 +tp33423 +bsa(dp33424 +g4 +g5 +(g6 +(I0 +tp33425 +g8 +tp33426 +Rp33427 +(I1 +(I7 +tp33428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33429 +tp33430 +bsa(dp33431 +g4 +g5 +(g6 +(I0 +tp33432 +g8 +tp33433 +Rp33434 +(I1 +(I7 +tp33435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33436 +tp33437 +bsa(dp33438 +g4 +g5 +(g6 +(I0 +tp33439 +g8 +tp33440 +Rp33441 +(I1 +(I7 +tp33442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33443 +tp33444 +bsa(dp33445 +g4 +g5 +(g6 +(I0 +tp33446 +g8 +tp33447 +Rp33448 +(I1 +(I7 +tp33449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33450 +tp33451 +bsa(dp33452 +g4 +g5 +(g6 +(I0 +tp33453 +g8 +tp33454 +Rp33455 +(I1 +(I7 +tp33456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33457 +tp33458 +bsa(dp33459 +g4 +g5 +(g6 +(I0 +tp33460 +g8 +tp33461 +Rp33462 +(I1 +(I7 +tp33463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33464 +tp33465 +bsa(dp33466 +g4 +g5 +(g6 +(I0 +tp33467 +g8 +tp33468 +Rp33469 +(I1 +(I7 +tp33470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33471 +tp33472 +bsa(dp33473 +g4 +g5 +(g6 +(I0 +tp33474 +g8 +tp33475 +Rp33476 +(I1 +(I7 +tp33477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33478 +tp33479 +bsa(dp33480 +g4 +g5 +(g6 +(I0 +tp33481 +g8 +tp33482 +Rp33483 +(I1 +(I7 +tp33484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33485 +tp33486 +bsa(dp33487 +g4 +g5 +(g6 +(I0 +tp33488 +g8 +tp33489 +Rp33490 +(I1 +(I7 +tp33491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33492 +tp33493 +bsa(dp33494 +g4 +g5 +(g6 +(I0 +tp33495 +g8 +tp33496 +Rp33497 +(I1 +(I7 +tp33498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33499 +tp33500 +bsa(dp33501 +g4 +g5 +(g6 +(I0 +tp33502 +g8 +tp33503 +Rp33504 +(I1 +(I7 +tp33505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33506 +tp33507 +bsa(dp33508 +g4 +g5 +(g6 +(I0 +tp33509 +g8 +tp33510 +Rp33511 +(I1 +(I7 +tp33512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33513 +tp33514 +bsa(dp33515 +g4 +g5 +(g6 +(I0 +tp33516 +g8 +tp33517 +Rp33518 +(I1 +(I7 +tp33519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33520 +tp33521 +bsa(dp33522 +g4 +g5 +(g6 +(I0 +tp33523 +g8 +tp33524 +Rp33525 +(I1 +(I7 +tp33526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33527 +tp33528 +bsa(dp33529 +g4 +g5 +(g6 +(I0 +tp33530 +g8 +tp33531 +Rp33532 +(I1 +(I7 +tp33533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33534 +tp33535 +bsa(dp33536 +g4 +g5 +(g6 +(I0 +tp33537 +g8 +tp33538 +Rp33539 +(I1 +(I7 +tp33540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33541 +tp33542 +bsa(dp33543 +g4 +g5 +(g6 +(I0 +tp33544 +g8 +tp33545 +Rp33546 +(I1 +(I7 +tp33547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33548 +tp33549 +bsa(dp33550 +g4 +g5 +(g6 +(I0 +tp33551 +g8 +tp33552 +Rp33553 +(I1 +(I7 +tp33554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33555 +tp33556 +bsa(dp33557 +g4 +g5 +(g6 +(I0 +tp33558 +g8 +tp33559 +Rp33560 +(I1 +(I7 +tp33561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33562 +tp33563 +bsa(dp33564 +g4 +g5 +(g6 +(I0 +tp33565 +g8 +tp33566 +Rp33567 +(I1 +(I7 +tp33568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33569 +tp33570 +bsa(dp33571 +g4 +g5 +(g6 +(I0 +tp33572 +g8 +tp33573 +Rp33574 +(I1 +(I7 +tp33575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33576 +tp33577 +bsa(dp33578 +g4 +g5 +(g6 +(I0 +tp33579 +g8 +tp33580 +Rp33581 +(I1 +(I7 +tp33582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33583 +tp33584 +bsa(dp33585 +g4 +g5 +(g6 +(I0 +tp33586 +g8 +tp33587 +Rp33588 +(I1 +(I7 +tp33589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33590 +tp33591 +bsa(dp33592 +g4 +g5 +(g6 +(I0 +tp33593 +g8 +tp33594 +Rp33595 +(I1 +(I7 +tp33596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33597 +tp33598 +bsa(dp33599 +g4 +g5 +(g6 +(I0 +tp33600 +g8 +tp33601 +Rp33602 +(I1 +(I7 +tp33603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33604 +tp33605 +bsa(dp33606 +g4 +g5 +(g6 +(I0 +tp33607 +g8 +tp33608 +Rp33609 +(I1 +(I7 +tp33610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33611 +tp33612 +bsa(dp33613 +g4 +g5 +(g6 +(I0 +tp33614 +g8 +tp33615 +Rp33616 +(I1 +(I7 +tp33617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33618 +tp33619 +bsa(dp33620 +g4 +g5 +(g6 +(I0 +tp33621 +g8 +tp33622 +Rp33623 +(I1 +(I7 +tp33624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33625 +tp33626 +bsa(dp33627 +g4 +g5 +(g6 +(I0 +tp33628 +g8 +tp33629 +Rp33630 +(I1 +(I7 +tp33631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33632 +tp33633 +bsa(dp33634 +g4 +g5 +(g6 +(I0 +tp33635 +g8 +tp33636 +Rp33637 +(I1 +(I7 +tp33638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33639 +tp33640 +bsa(dp33641 +g4 +g5 +(g6 +(I0 +tp33642 +g8 +tp33643 +Rp33644 +(I1 +(I7 +tp33645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33646 +tp33647 +bsa(dp33648 +g4 +g5 +(g6 +(I0 +tp33649 +g8 +tp33650 +Rp33651 +(I1 +(I7 +tp33652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33653 +tp33654 +bsa(dp33655 +g4 +g5 +(g6 +(I0 +tp33656 +g8 +tp33657 +Rp33658 +(I1 +(I7 +tp33659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33660 +tp33661 +bsa(dp33662 +g4 +g5 +(g6 +(I0 +tp33663 +g8 +tp33664 +Rp33665 +(I1 +(I7 +tp33666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33667 +tp33668 +bsa(dp33669 +g4 +g5 +(g6 +(I0 +tp33670 +g8 +tp33671 +Rp33672 +(I1 +(I7 +tp33673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33674 +tp33675 +bsa(dp33676 +g4 +g5 +(g6 +(I0 +tp33677 +g8 +tp33678 +Rp33679 +(I1 +(I7 +tp33680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33681 +tp33682 +bsa(dp33683 +g4 +g5 +(g6 +(I0 +tp33684 +g8 +tp33685 +Rp33686 +(I1 +(I7 +tp33687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33688 +tp33689 +bsa(dp33690 +g4 +g5 +(g6 +(I0 +tp33691 +g8 +tp33692 +Rp33693 +(I1 +(I7 +tp33694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33695 +tp33696 +bsa(dp33697 +g4 +g5 +(g6 +(I0 +tp33698 +g8 +tp33699 +Rp33700 +(I1 +(I7 +tp33701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33702 +tp33703 +bsa(dp33704 +g4 +g5 +(g6 +(I0 +tp33705 +g8 +tp33706 +Rp33707 +(I1 +(I7 +tp33708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33709 +tp33710 +bsa(dp33711 +g4 +g5 +(g6 +(I0 +tp33712 +g8 +tp33713 +Rp33714 +(I1 +(I7 +tp33715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33716 +tp33717 +bsa(dp33718 +g4 +g5 +(g6 +(I0 +tp33719 +g8 +tp33720 +Rp33721 +(I1 +(I7 +tp33722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33723 +tp33724 +bsa(dp33725 +g4 +g5 +(g6 +(I0 +tp33726 +g8 +tp33727 +Rp33728 +(I1 +(I7 +tp33729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33730 +tp33731 +bsa(dp33732 +g4 +g5 +(g6 +(I0 +tp33733 +g8 +tp33734 +Rp33735 +(I1 +(I7 +tp33736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33737 +tp33738 +bsa(dp33739 +g4 +g5 +(g6 +(I0 +tp33740 +g8 +tp33741 +Rp33742 +(I1 +(I7 +tp33743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33744 +tp33745 +bsa(dp33746 +g4 +g5 +(g6 +(I0 +tp33747 +g8 +tp33748 +Rp33749 +(I1 +(I7 +tp33750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33751 +tp33752 +bsa(dp33753 +g4 +g5 +(g6 +(I0 +tp33754 +g8 +tp33755 +Rp33756 +(I1 +(I7 +tp33757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33758 +tp33759 +bsa(dp33760 +g4 +g5 +(g6 +(I0 +tp33761 +g8 +tp33762 +Rp33763 +(I1 +(I7 +tp33764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33765 +tp33766 +bsa(dp33767 +g4 +g5 +(g6 +(I0 +tp33768 +g8 +tp33769 +Rp33770 +(I1 +(I7 +tp33771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33772 +tp33773 +bsa(dp33774 +g4 +g5 +(g6 +(I0 +tp33775 +g8 +tp33776 +Rp33777 +(I1 +(I7 +tp33778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33779 +tp33780 +bsa(dp33781 +g4 +g5 +(g6 +(I0 +tp33782 +g8 +tp33783 +Rp33784 +(I1 +(I7 +tp33785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33786 +tp33787 +bsa(dp33788 +g4 +g5 +(g6 +(I0 +tp33789 +g8 +tp33790 +Rp33791 +(I1 +(I7 +tp33792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33793 +tp33794 +bsa(dp33795 +g4 +g5 +(g6 +(I0 +tp33796 +g8 +tp33797 +Rp33798 +(I1 +(I7 +tp33799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33800 +tp33801 +bsa(dp33802 +g4 +g5 +(g6 +(I0 +tp33803 +g8 +tp33804 +Rp33805 +(I1 +(I7 +tp33806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33807 +tp33808 +bsa(dp33809 +g4 +g5 +(g6 +(I0 +tp33810 +g8 +tp33811 +Rp33812 +(I1 +(I7 +tp33813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33814 +tp33815 +bsa(dp33816 +g4 +g5 +(g6 +(I0 +tp33817 +g8 +tp33818 +Rp33819 +(I1 +(I7 +tp33820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33821 +tp33822 +bsa(dp33823 +g4 +g5 +(g6 +(I0 +tp33824 +g8 +tp33825 +Rp33826 +(I1 +(I7 +tp33827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33828 +tp33829 +bsa(dp33830 +g4 +g5 +(g6 +(I0 +tp33831 +g8 +tp33832 +Rp33833 +(I1 +(I7 +tp33834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33835 +tp33836 +bsa(dp33837 +g4 +g5 +(g6 +(I0 +tp33838 +g8 +tp33839 +Rp33840 +(I1 +(I7 +tp33841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33842 +tp33843 +bsa(dp33844 +g4 +g5 +(g6 +(I0 +tp33845 +g8 +tp33846 +Rp33847 +(I1 +(I7 +tp33848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33849 +tp33850 +bsa(dp33851 +g4 +g5 +(g6 +(I0 +tp33852 +g8 +tp33853 +Rp33854 +(I1 +(I7 +tp33855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33856 +tp33857 +bsa(dp33858 +g4 +g5 +(g6 +(I0 +tp33859 +g8 +tp33860 +Rp33861 +(I1 +(I7 +tp33862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33863 +tp33864 +bsa(dp33865 +g4 +g5 +(g6 +(I0 +tp33866 +g8 +tp33867 +Rp33868 +(I1 +(I7 +tp33869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33870 +tp33871 +bsa(dp33872 +g4 +g5 +(g6 +(I0 +tp33873 +g8 +tp33874 +Rp33875 +(I1 +(I7 +tp33876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33877 +tp33878 +bsa(dp33879 +g4 +g5 +(g6 +(I0 +tp33880 +g8 +tp33881 +Rp33882 +(I1 +(I7 +tp33883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33884 +tp33885 +bsa(dp33886 +g4 +g5 +(g6 +(I0 +tp33887 +g8 +tp33888 +Rp33889 +(I1 +(I7 +tp33890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33891 +tp33892 +bsa(dp33893 +g4 +g5 +(g6 +(I0 +tp33894 +g8 +tp33895 +Rp33896 +(I1 +(I7 +tp33897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33898 +tp33899 +bsa(dp33900 +g4 +g5 +(g6 +(I0 +tp33901 +g8 +tp33902 +Rp33903 +(I1 +(I7 +tp33904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33905 +tp33906 +bsa(dp33907 +g4 +g5 +(g6 +(I0 +tp33908 +g8 +tp33909 +Rp33910 +(I1 +(I7 +tp33911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33912 +tp33913 +bsa(dp33914 +g4 +g5 +(g6 +(I0 +tp33915 +g8 +tp33916 +Rp33917 +(I1 +(I7 +tp33918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33919 +tp33920 +bsa(dp33921 +g4 +g5 +(g6 +(I0 +tp33922 +g8 +tp33923 +Rp33924 +(I1 +(I7 +tp33925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33926 +tp33927 +bsa(dp33928 +g4 +g5 +(g6 +(I0 +tp33929 +g8 +tp33930 +Rp33931 +(I1 +(I7 +tp33932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33933 +tp33934 +bsa(dp33935 +g4 +g5 +(g6 +(I0 +tp33936 +g8 +tp33937 +Rp33938 +(I1 +(I7 +tp33939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33940 +tp33941 +bsa(dp33942 +g4 +g5 +(g6 +(I0 +tp33943 +g8 +tp33944 +Rp33945 +(I1 +(I7 +tp33946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33947 +tp33948 +bsa(dp33949 +g4 +g5 +(g6 +(I0 +tp33950 +g8 +tp33951 +Rp33952 +(I1 +(I7 +tp33953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33954 +tp33955 +bsa(dp33956 +g4 +g5 +(g6 +(I0 +tp33957 +g8 +tp33958 +Rp33959 +(I1 +(I7 +tp33960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33961 +tp33962 +bsa(dp33963 +g4 +g5 +(g6 +(I0 +tp33964 +g8 +tp33965 +Rp33966 +(I1 +(I7 +tp33967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p33968 +tp33969 +bsa(dp33970 +g4 +g5 +(g6 +(I0 +tp33971 +g8 +tp33972 +Rp33973 +(I1 +(I7 +tp33974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p33975 +tp33976 +bsa(dp33977 +g4 +g5 +(g6 +(I0 +tp33978 +g8 +tp33979 +Rp33980 +(I1 +(I7 +tp33981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33982 +tp33983 +bsa(dp33984 +g4 +g5 +(g6 +(I0 +tp33985 +g8 +tp33986 +Rp33987 +(I1 +(I7 +tp33988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33989 +tp33990 +bsa(dp33991 +g4 +g5 +(g6 +(I0 +tp33992 +g8 +tp33993 +Rp33994 +(I1 +(I7 +tp33995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p33996 +tp33997 +bsa(dp33998 +g4 +g5 +(g6 +(I0 +tp33999 +g8 +tp34000 +Rp34001 +(I1 +(I7 +tp34002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34003 +tp34004 +bsa(dp34005 +g4 +g5 +(g6 +(I0 +tp34006 +g8 +tp34007 +Rp34008 +(I1 +(I7 +tp34009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34010 +tp34011 +bsa(dp34012 +g4 +g5 +(g6 +(I0 +tp34013 +g8 +tp34014 +Rp34015 +(I1 +(I7 +tp34016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34017 +tp34018 +bsa(dp34019 +g4 +g5 +(g6 +(I0 +tp34020 +g8 +tp34021 +Rp34022 +(I1 +(I7 +tp34023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34024 +tp34025 +bsa(dp34026 +g4 +g5 +(g6 +(I0 +tp34027 +g8 +tp34028 +Rp34029 +(I1 +(I7 +tp34030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34031 +tp34032 +bsa(dp34033 +g4 +g5 +(g6 +(I0 +tp34034 +g8 +tp34035 +Rp34036 +(I1 +(I7 +tp34037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34038 +tp34039 +bsa(dp34040 +g4 +g5 +(g6 +(I0 +tp34041 +g8 +tp34042 +Rp34043 +(I1 +(I7 +tp34044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34045 +tp34046 +bsa(dp34047 +g4 +g5 +(g6 +(I0 +tp34048 +g8 +tp34049 +Rp34050 +(I1 +(I7 +tp34051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34052 +tp34053 +bsa(dp34054 +g4 +g5 +(g6 +(I0 +tp34055 +g8 +tp34056 +Rp34057 +(I1 +(I7 +tp34058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34059 +tp34060 +bsa(dp34061 +g4 +g5 +(g6 +(I0 +tp34062 +g8 +tp34063 +Rp34064 +(I1 +(I7 +tp34065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34066 +tp34067 +bsa(dp34068 +g4 +g5 +(g6 +(I0 +tp34069 +g8 +tp34070 +Rp34071 +(I1 +(I7 +tp34072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34073 +tp34074 +bsa(dp34075 +g4 +g5 +(g6 +(I0 +tp34076 +g8 +tp34077 +Rp34078 +(I1 +(I7 +tp34079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34080 +tp34081 +bsa(dp34082 +g4 +g5 +(g6 +(I0 +tp34083 +g8 +tp34084 +Rp34085 +(I1 +(I7 +tp34086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34087 +tp34088 +bsa(dp34089 +g4 +g5 +(g6 +(I0 +tp34090 +g8 +tp34091 +Rp34092 +(I1 +(I7 +tp34093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34094 +tp34095 +bsa(dp34096 +g4 +g5 +(g6 +(I0 +tp34097 +g8 +tp34098 +Rp34099 +(I1 +(I7 +tp34100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34101 +tp34102 +bsa(dp34103 +g4 +g5 +(g6 +(I0 +tp34104 +g8 +tp34105 +Rp34106 +(I1 +(I7 +tp34107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34108 +tp34109 +bsa(dp34110 +g4 +g5 +(g6 +(I0 +tp34111 +g8 +tp34112 +Rp34113 +(I1 +(I7 +tp34114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34115 +tp34116 +bsa(dp34117 +g4 +g5 +(g6 +(I0 +tp34118 +g8 +tp34119 +Rp34120 +(I1 +(I7 +tp34121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34122 +tp34123 +bsa(dp34124 +g4 +g5 +(g6 +(I0 +tp34125 +g8 +tp34126 +Rp34127 +(I1 +(I7 +tp34128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34129 +tp34130 +bsa(dp34131 +g4 +g5 +(g6 +(I0 +tp34132 +g8 +tp34133 +Rp34134 +(I1 +(I7 +tp34135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34136 +tp34137 +bsa(dp34138 +g4 +g5 +(g6 +(I0 +tp34139 +g8 +tp34140 +Rp34141 +(I1 +(I7 +tp34142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34143 +tp34144 +bsa(dp34145 +g4 +g5 +(g6 +(I0 +tp34146 +g8 +tp34147 +Rp34148 +(I1 +(I7 +tp34149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34150 +tp34151 +bsa(dp34152 +g4 +g5 +(g6 +(I0 +tp34153 +g8 +tp34154 +Rp34155 +(I1 +(I7 +tp34156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34157 +tp34158 +bsa(dp34159 +g4 +g5 +(g6 +(I0 +tp34160 +g8 +tp34161 +Rp34162 +(I1 +(I7 +tp34163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34164 +tp34165 +bsa(dp34166 +g4 +g5 +(g6 +(I0 +tp34167 +g8 +tp34168 +Rp34169 +(I1 +(I7 +tp34170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34171 +tp34172 +bsa(dp34173 +g4 +g5 +(g6 +(I0 +tp34174 +g8 +tp34175 +Rp34176 +(I1 +(I7 +tp34177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34178 +tp34179 +bsa(dp34180 +g4 +g5 +(g6 +(I0 +tp34181 +g8 +tp34182 +Rp34183 +(I1 +(I7 +tp34184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34185 +tp34186 +bsa(dp34187 +g4 +g5 +(g6 +(I0 +tp34188 +g8 +tp34189 +Rp34190 +(I1 +(I7 +tp34191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34192 +tp34193 +bsa(dp34194 +g4 +g5 +(g6 +(I0 +tp34195 +g8 +tp34196 +Rp34197 +(I1 +(I7 +tp34198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34199 +tp34200 +bsa(dp34201 +g4 +g5 +(g6 +(I0 +tp34202 +g8 +tp34203 +Rp34204 +(I1 +(I7 +tp34205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34206 +tp34207 +bsa(dp34208 +g4 +g5 +(g6 +(I0 +tp34209 +g8 +tp34210 +Rp34211 +(I1 +(I7 +tp34212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34213 +tp34214 +bsa(dp34215 +g4 +g5 +(g6 +(I0 +tp34216 +g8 +tp34217 +Rp34218 +(I1 +(I7 +tp34219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34220 +tp34221 +bsa(dp34222 +g4 +g5 +(g6 +(I0 +tp34223 +g8 +tp34224 +Rp34225 +(I1 +(I7 +tp34226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34227 +tp34228 +bsa(dp34229 +g4 +g5 +(g6 +(I0 +tp34230 +g8 +tp34231 +Rp34232 +(I1 +(I7 +tp34233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34234 +tp34235 +bsa(dp34236 +g4 +g5 +(g6 +(I0 +tp34237 +g8 +tp34238 +Rp34239 +(I1 +(I7 +tp34240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34241 +tp34242 +bsa(dp34243 +g4 +g5 +(g6 +(I0 +tp34244 +g8 +tp34245 +Rp34246 +(I1 +(I7 +tp34247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34248 +tp34249 +bsa(dp34250 +g4 +g5 +(g6 +(I0 +tp34251 +g8 +tp34252 +Rp34253 +(I1 +(I7 +tp34254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34255 +tp34256 +bsa(dp34257 +g4 +g5 +(g6 +(I0 +tp34258 +g8 +tp34259 +Rp34260 +(I1 +(I7 +tp34261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34262 +tp34263 +bsa(dp34264 +g4 +g5 +(g6 +(I0 +tp34265 +g8 +tp34266 +Rp34267 +(I1 +(I7 +tp34268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34269 +tp34270 +bsa(dp34271 +g4 +g5 +(g6 +(I0 +tp34272 +g8 +tp34273 +Rp34274 +(I1 +(I7 +tp34275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34276 +tp34277 +bsa(dp34278 +g4 +g5 +(g6 +(I0 +tp34279 +g8 +tp34280 +Rp34281 +(I1 +(I7 +tp34282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34283 +tp34284 +bsa(dp34285 +g4 +g5 +(g6 +(I0 +tp34286 +g8 +tp34287 +Rp34288 +(I1 +(I7 +tp34289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34290 +tp34291 +bsa(dp34292 +g4 +g5 +(g6 +(I0 +tp34293 +g8 +tp34294 +Rp34295 +(I1 +(I7 +tp34296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34297 +tp34298 +bsa(dp34299 +g4 +g5 +(g6 +(I0 +tp34300 +g8 +tp34301 +Rp34302 +(I1 +(I7 +tp34303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34304 +tp34305 +bsa(dp34306 +g4 +g5 +(g6 +(I0 +tp34307 +g8 +tp34308 +Rp34309 +(I1 +(I7 +tp34310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34311 +tp34312 +bsa(dp34313 +g4 +g5 +(g6 +(I0 +tp34314 +g8 +tp34315 +Rp34316 +(I1 +(I7 +tp34317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34318 +tp34319 +bsa(dp34320 +g4 +g5 +(g6 +(I0 +tp34321 +g8 +tp34322 +Rp34323 +(I1 +(I7 +tp34324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34325 +tp34326 +bsa(dp34327 +g4 +g5 +(g6 +(I0 +tp34328 +g8 +tp34329 +Rp34330 +(I1 +(I7 +tp34331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34332 +tp34333 +bsa(dp34334 +g4 +g5 +(g6 +(I0 +tp34335 +g8 +tp34336 +Rp34337 +(I1 +(I7 +tp34338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34339 +tp34340 +bsa(dp34341 +g4 +g5 +(g6 +(I0 +tp34342 +g8 +tp34343 +Rp34344 +(I1 +(I7 +tp34345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34346 +tp34347 +bsa(dp34348 +g4 +g5 +(g6 +(I0 +tp34349 +g8 +tp34350 +Rp34351 +(I1 +(I7 +tp34352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34353 +tp34354 +bsa(dp34355 +g4 +g5 +(g6 +(I0 +tp34356 +g8 +tp34357 +Rp34358 +(I1 +(I7 +tp34359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34360 +tp34361 +bsa(dp34362 +g4 +g5 +(g6 +(I0 +tp34363 +g8 +tp34364 +Rp34365 +(I1 +(I7 +tp34366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34367 +tp34368 +bsa(dp34369 +g4 +g5 +(g6 +(I0 +tp34370 +g8 +tp34371 +Rp34372 +(I1 +(I7 +tp34373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34374 +tp34375 +bsa(dp34376 +g4 +g5 +(g6 +(I0 +tp34377 +g8 +tp34378 +Rp34379 +(I1 +(I7 +tp34380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34381 +tp34382 +bsa(dp34383 +g4 +g5 +(g6 +(I0 +tp34384 +g8 +tp34385 +Rp34386 +(I1 +(I7 +tp34387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34388 +tp34389 +bsa(dp34390 +g4 +g5 +(g6 +(I0 +tp34391 +g8 +tp34392 +Rp34393 +(I1 +(I7 +tp34394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34395 +tp34396 +bsa(dp34397 +g4 +g5 +(g6 +(I0 +tp34398 +g8 +tp34399 +Rp34400 +(I1 +(I7 +tp34401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34402 +tp34403 +bsa(dp34404 +g4 +g5 +(g6 +(I0 +tp34405 +g8 +tp34406 +Rp34407 +(I1 +(I7 +tp34408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34409 +tp34410 +bsa(dp34411 +g4 +g5 +(g6 +(I0 +tp34412 +g8 +tp34413 +Rp34414 +(I1 +(I7 +tp34415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34416 +tp34417 +bsa(dp34418 +g4 +g5 +(g6 +(I0 +tp34419 +g8 +tp34420 +Rp34421 +(I1 +(I7 +tp34422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34423 +tp34424 +bsa(dp34425 +g4 +g5 +(g6 +(I0 +tp34426 +g8 +tp34427 +Rp34428 +(I1 +(I7 +tp34429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34430 +tp34431 +bsa(dp34432 +g4 +g5 +(g6 +(I0 +tp34433 +g8 +tp34434 +Rp34435 +(I1 +(I7 +tp34436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34437 +tp34438 +bsa(dp34439 +g4 +g5 +(g6 +(I0 +tp34440 +g8 +tp34441 +Rp34442 +(I1 +(I7 +tp34443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34444 +tp34445 +bsa(dp34446 +g4 +g5 +(g6 +(I0 +tp34447 +g8 +tp34448 +Rp34449 +(I1 +(I7 +tp34450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34451 +tp34452 +bsa(dp34453 +g4 +g5 +(g6 +(I0 +tp34454 +g8 +tp34455 +Rp34456 +(I1 +(I7 +tp34457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34458 +tp34459 +bsa(dp34460 +g4 +g5 +(g6 +(I0 +tp34461 +g8 +tp34462 +Rp34463 +(I1 +(I7 +tp34464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34465 +tp34466 +bsa(dp34467 +g4 +g5 +(g6 +(I0 +tp34468 +g8 +tp34469 +Rp34470 +(I1 +(I7 +tp34471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34472 +tp34473 +bsa(dp34474 +g4 +g5 +(g6 +(I0 +tp34475 +g8 +tp34476 +Rp34477 +(I1 +(I7 +tp34478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34479 +tp34480 +bsa(dp34481 +g4 +g5 +(g6 +(I0 +tp34482 +g8 +tp34483 +Rp34484 +(I1 +(I7 +tp34485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34486 +tp34487 +bsa(dp34488 +g4 +g5 +(g6 +(I0 +tp34489 +g8 +tp34490 +Rp34491 +(I1 +(I7 +tp34492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34493 +tp34494 +bsa(dp34495 +g4 +g5 +(g6 +(I0 +tp34496 +g8 +tp34497 +Rp34498 +(I1 +(I7 +tp34499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34500 +tp34501 +bsa(dp34502 +g4 +g5 +(g6 +(I0 +tp34503 +g8 +tp34504 +Rp34505 +(I1 +(I7 +tp34506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34507 +tp34508 +bsa(dp34509 +g4 +g5 +(g6 +(I0 +tp34510 +g8 +tp34511 +Rp34512 +(I1 +(I7 +tp34513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34514 +tp34515 +bsa(dp34516 +g4 +g5 +(g6 +(I0 +tp34517 +g8 +tp34518 +Rp34519 +(I1 +(I7 +tp34520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34521 +tp34522 +bsa(dp34523 +g4 +g5 +(g6 +(I0 +tp34524 +g8 +tp34525 +Rp34526 +(I1 +(I7 +tp34527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34528 +tp34529 +bsa(dp34530 +g4 +g5 +(g6 +(I0 +tp34531 +g8 +tp34532 +Rp34533 +(I1 +(I7 +tp34534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34535 +tp34536 +bsa(dp34537 +g4 +g5 +(g6 +(I0 +tp34538 +g8 +tp34539 +Rp34540 +(I1 +(I7 +tp34541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34542 +tp34543 +bsa(dp34544 +g4 +g5 +(g6 +(I0 +tp34545 +g8 +tp34546 +Rp34547 +(I1 +(I7 +tp34548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34549 +tp34550 +bsa(dp34551 +g4 +g5 +(g6 +(I0 +tp34552 +g8 +tp34553 +Rp34554 +(I1 +(I7 +tp34555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34556 +tp34557 +bsa(dp34558 +g4 +g5 +(g6 +(I0 +tp34559 +g8 +tp34560 +Rp34561 +(I1 +(I7 +tp34562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34563 +tp34564 +bsa(dp34565 +g4 +g5 +(g6 +(I0 +tp34566 +g8 +tp34567 +Rp34568 +(I1 +(I7 +tp34569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34570 +tp34571 +bsa(dp34572 +g4 +g5 +(g6 +(I0 +tp34573 +g8 +tp34574 +Rp34575 +(I1 +(I7 +tp34576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34577 +tp34578 +bsa(dp34579 +g4 +g5 +(g6 +(I0 +tp34580 +g8 +tp34581 +Rp34582 +(I1 +(I7 +tp34583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34584 +tp34585 +bsa(dp34586 +g4 +g5 +(g6 +(I0 +tp34587 +g8 +tp34588 +Rp34589 +(I1 +(I7 +tp34590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34591 +tp34592 +bsa(dp34593 +g4 +g5 +(g6 +(I0 +tp34594 +g8 +tp34595 +Rp34596 +(I1 +(I7 +tp34597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34598 +tp34599 +bsa(dp34600 +g4 +g5 +(g6 +(I0 +tp34601 +g8 +tp34602 +Rp34603 +(I1 +(I7 +tp34604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34605 +tp34606 +bsa(dp34607 +g4 +g5 +(g6 +(I0 +tp34608 +g8 +tp34609 +Rp34610 +(I1 +(I7 +tp34611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34612 +tp34613 +bsa(dp34614 +g4 +g5 +(g6 +(I0 +tp34615 +g8 +tp34616 +Rp34617 +(I1 +(I7 +tp34618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34619 +tp34620 +bsa(dp34621 +g4 +g5 +(g6 +(I0 +tp34622 +g8 +tp34623 +Rp34624 +(I1 +(I7 +tp34625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34626 +tp34627 +bsa(dp34628 +g4 +g5 +(g6 +(I0 +tp34629 +g8 +tp34630 +Rp34631 +(I1 +(I7 +tp34632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34633 +tp34634 +bsa(dp34635 +g4 +g5 +(g6 +(I0 +tp34636 +g8 +tp34637 +Rp34638 +(I1 +(I7 +tp34639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34640 +tp34641 +bsa(dp34642 +g4 +g5 +(g6 +(I0 +tp34643 +g8 +tp34644 +Rp34645 +(I1 +(I7 +tp34646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34647 +tp34648 +bsa(dp34649 +g4 +g5 +(g6 +(I0 +tp34650 +g8 +tp34651 +Rp34652 +(I1 +(I7 +tp34653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34654 +tp34655 +bsa(dp34656 +g4 +g5 +(g6 +(I0 +tp34657 +g8 +tp34658 +Rp34659 +(I1 +(I7 +tp34660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34661 +tp34662 +bsa(dp34663 +g4 +g5 +(g6 +(I0 +tp34664 +g8 +tp34665 +Rp34666 +(I1 +(I7 +tp34667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34668 +tp34669 +bsa(dp34670 +g4 +g5 +(g6 +(I0 +tp34671 +g8 +tp34672 +Rp34673 +(I1 +(I7 +tp34674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34675 +tp34676 +bsa(dp34677 +g4 +g5 +(g6 +(I0 +tp34678 +g8 +tp34679 +Rp34680 +(I1 +(I7 +tp34681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34682 +tp34683 +bsa(dp34684 +g4 +g5 +(g6 +(I0 +tp34685 +g8 +tp34686 +Rp34687 +(I1 +(I7 +tp34688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34689 +tp34690 +bsa(dp34691 +g4 +g5 +(g6 +(I0 +tp34692 +g8 +tp34693 +Rp34694 +(I1 +(I7 +tp34695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34696 +tp34697 +bsa(dp34698 +g4 +g5 +(g6 +(I0 +tp34699 +g8 +tp34700 +Rp34701 +(I1 +(I7 +tp34702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34703 +tp34704 +bsa(dp34705 +g4 +g5 +(g6 +(I0 +tp34706 +g8 +tp34707 +Rp34708 +(I1 +(I7 +tp34709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34710 +tp34711 +bsa(dp34712 +g4 +g5 +(g6 +(I0 +tp34713 +g8 +tp34714 +Rp34715 +(I1 +(I7 +tp34716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34717 +tp34718 +bsa(dp34719 +g4 +g5 +(g6 +(I0 +tp34720 +g8 +tp34721 +Rp34722 +(I1 +(I7 +tp34723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34724 +tp34725 +bsa(dp34726 +g4 +g5 +(g6 +(I0 +tp34727 +g8 +tp34728 +Rp34729 +(I1 +(I7 +tp34730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34731 +tp34732 +bsa(dp34733 +g4 +g5 +(g6 +(I0 +tp34734 +g8 +tp34735 +Rp34736 +(I1 +(I7 +tp34737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34738 +tp34739 +bsa(dp34740 +g4 +g5 +(g6 +(I0 +tp34741 +g8 +tp34742 +Rp34743 +(I1 +(I7 +tp34744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34745 +tp34746 +bsa(dp34747 +g4 +g5 +(g6 +(I0 +tp34748 +g8 +tp34749 +Rp34750 +(I1 +(I7 +tp34751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34752 +tp34753 +bsa(dp34754 +g4 +g5 +(g6 +(I0 +tp34755 +g8 +tp34756 +Rp34757 +(I1 +(I7 +tp34758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34759 +tp34760 +bsa(dp34761 +g4 +g5 +(g6 +(I0 +tp34762 +g8 +tp34763 +Rp34764 +(I1 +(I7 +tp34765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34766 +tp34767 +bsa(dp34768 +g4 +g5 +(g6 +(I0 +tp34769 +g8 +tp34770 +Rp34771 +(I1 +(I7 +tp34772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34773 +tp34774 +bsa(dp34775 +g4 +g5 +(g6 +(I0 +tp34776 +g8 +tp34777 +Rp34778 +(I1 +(I7 +tp34779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34780 +tp34781 +bsa(dp34782 +g4 +g5 +(g6 +(I0 +tp34783 +g8 +tp34784 +Rp34785 +(I1 +(I7 +tp34786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34787 +tp34788 +bsa(dp34789 +g4 +g5 +(g6 +(I0 +tp34790 +g8 +tp34791 +Rp34792 +(I1 +(I7 +tp34793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34794 +tp34795 +bsa(dp34796 +g4 +g5 +(g6 +(I0 +tp34797 +g8 +tp34798 +Rp34799 +(I1 +(I7 +tp34800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34801 +tp34802 +bsa(dp34803 +g4 +g5 +(g6 +(I0 +tp34804 +g8 +tp34805 +Rp34806 +(I1 +(I7 +tp34807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34808 +tp34809 +bsa(dp34810 +g4 +g5 +(g6 +(I0 +tp34811 +g8 +tp34812 +Rp34813 +(I1 +(I7 +tp34814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34815 +tp34816 +bsa(dp34817 +g4 +g5 +(g6 +(I0 +tp34818 +g8 +tp34819 +Rp34820 +(I1 +(I7 +tp34821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34822 +tp34823 +bsa(dp34824 +g4 +g5 +(g6 +(I0 +tp34825 +g8 +tp34826 +Rp34827 +(I1 +(I7 +tp34828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34829 +tp34830 +bsa(dp34831 +g4 +g5 +(g6 +(I0 +tp34832 +g8 +tp34833 +Rp34834 +(I1 +(I7 +tp34835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34836 +tp34837 +bsa(dp34838 +g4 +g5 +(g6 +(I0 +tp34839 +g8 +tp34840 +Rp34841 +(I1 +(I7 +tp34842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34843 +tp34844 +bsa(dp34845 +g4 +g5 +(g6 +(I0 +tp34846 +g8 +tp34847 +Rp34848 +(I1 +(I7 +tp34849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34850 +tp34851 +bsa(dp34852 +g4 +g5 +(g6 +(I0 +tp34853 +g8 +tp34854 +Rp34855 +(I1 +(I7 +tp34856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34857 +tp34858 +bsa(dp34859 +g4 +g5 +(g6 +(I0 +tp34860 +g8 +tp34861 +Rp34862 +(I1 +(I7 +tp34863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34864 +tp34865 +bsa(dp34866 +g4 +g5 +(g6 +(I0 +tp34867 +g8 +tp34868 +Rp34869 +(I1 +(I7 +tp34870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34871 +tp34872 +bsa(dp34873 +g4 +g5 +(g6 +(I0 +tp34874 +g8 +tp34875 +Rp34876 +(I1 +(I7 +tp34877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34878 +tp34879 +bsa(dp34880 +g4 +g5 +(g6 +(I0 +tp34881 +g8 +tp34882 +Rp34883 +(I1 +(I7 +tp34884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34885 +tp34886 +bsa(dp34887 +g4 +g5 +(g6 +(I0 +tp34888 +g8 +tp34889 +Rp34890 +(I1 +(I7 +tp34891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34892 +tp34893 +bsa(dp34894 +g4 +g5 +(g6 +(I0 +tp34895 +g8 +tp34896 +Rp34897 +(I1 +(I7 +tp34898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34899 +tp34900 +bsa(dp34901 +g4 +g5 +(g6 +(I0 +tp34902 +g8 +tp34903 +Rp34904 +(I1 +(I7 +tp34905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34906 +tp34907 +bsa(dp34908 +g4 +g5 +(g6 +(I0 +tp34909 +g8 +tp34910 +Rp34911 +(I1 +(I7 +tp34912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34913 +tp34914 +bsa(dp34915 +g4 +g5 +(g6 +(I0 +tp34916 +g8 +tp34917 +Rp34918 +(I1 +(I7 +tp34919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34920 +tp34921 +bsa(dp34922 +g4 +g5 +(g6 +(I0 +tp34923 +g8 +tp34924 +Rp34925 +(I1 +(I7 +tp34926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34927 +tp34928 +bsa(dp34929 +g4 +g5 +(g6 +(I0 +tp34930 +g8 +tp34931 +Rp34932 +(I1 +(I7 +tp34933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34934 +tp34935 +bsa(dp34936 +g4 +g5 +(g6 +(I0 +tp34937 +g8 +tp34938 +Rp34939 +(I1 +(I7 +tp34940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34941 +tp34942 +bsa(dp34943 +g4 +g5 +(g6 +(I0 +tp34944 +g8 +tp34945 +Rp34946 +(I1 +(I7 +tp34947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34948 +tp34949 +bsa(dp34950 +g4 +g5 +(g6 +(I0 +tp34951 +g8 +tp34952 +Rp34953 +(I1 +(I7 +tp34954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p34955 +tp34956 +bsa(dp34957 +g4 +g5 +(g6 +(I0 +tp34958 +g8 +tp34959 +Rp34960 +(I1 +(I7 +tp34961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34962 +tp34963 +bsa(dp34964 +g4 +g5 +(g6 +(I0 +tp34965 +g8 +tp34966 +Rp34967 +(I1 +(I7 +tp34968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34969 +tp34970 +bsa(dp34971 +g4 +g5 +(g6 +(I0 +tp34972 +g8 +tp34973 +Rp34974 +(I1 +(I7 +tp34975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34976 +tp34977 +bsa(dp34978 +g4 +g5 +(g6 +(I0 +tp34979 +g8 +tp34980 +Rp34981 +(I1 +(I7 +tp34982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34983 +tp34984 +bsa(dp34985 +g4 +g5 +(g6 +(I0 +tp34986 +g8 +tp34987 +Rp34988 +(I1 +(I7 +tp34989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p34990 +tp34991 +bsa(dp34992 +g4 +g5 +(g6 +(I0 +tp34993 +g8 +tp34994 +Rp34995 +(I1 +(I7 +tp34996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p34997 +tp34998 +bsa(dp34999 +g4 +g5 +(g6 +(I0 +tp35000 +g8 +tp35001 +Rp35002 +(I1 +(I7 +tp35003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35004 +tp35005 +bsa(dp35006 +g4 +g5 +(g6 +(I0 +tp35007 +g8 +tp35008 +Rp35009 +(I1 +(I7 +tp35010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35011 +tp35012 +bsa(dp35013 +g4 +g5 +(g6 +(I0 +tp35014 +g8 +tp35015 +Rp35016 +(I1 +(I7 +tp35017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35018 +tp35019 +bsa(dp35020 +g4 +g5 +(g6 +(I0 +tp35021 +g8 +tp35022 +Rp35023 +(I1 +(I7 +tp35024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35025 +tp35026 +bsa(dp35027 +g4 +g5 +(g6 +(I0 +tp35028 +g8 +tp35029 +Rp35030 +(I1 +(I7 +tp35031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35032 +tp35033 +bsa(dp35034 +g4 +g5 +(g6 +(I0 +tp35035 +g8 +tp35036 +Rp35037 +(I1 +(I7 +tp35038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35039 +tp35040 +bsa(dp35041 +g4 +g5 +(g6 +(I0 +tp35042 +g8 +tp35043 +Rp35044 +(I1 +(I7 +tp35045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35046 +tp35047 +bsa(dp35048 +g4 +g5 +(g6 +(I0 +tp35049 +g8 +tp35050 +Rp35051 +(I1 +(I7 +tp35052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35053 +tp35054 +bsa(dp35055 +g4 +g5 +(g6 +(I0 +tp35056 +g8 +tp35057 +Rp35058 +(I1 +(I7 +tp35059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35060 +tp35061 +bsa(dp35062 +g4 +g5 +(g6 +(I0 +tp35063 +g8 +tp35064 +Rp35065 +(I1 +(I7 +tp35066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35067 +tp35068 +bsa(dp35069 +g4 +g5 +(g6 +(I0 +tp35070 +g8 +tp35071 +Rp35072 +(I1 +(I7 +tp35073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35074 +tp35075 +bsa(dp35076 +g4 +g5 +(g6 +(I0 +tp35077 +g8 +tp35078 +Rp35079 +(I1 +(I7 +tp35080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35081 +tp35082 +bsa(dp35083 +g4 +g5 +(g6 +(I0 +tp35084 +g8 +tp35085 +Rp35086 +(I1 +(I7 +tp35087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35088 +tp35089 +bsa(dp35090 +g4 +g5 +(g6 +(I0 +tp35091 +g8 +tp35092 +Rp35093 +(I1 +(I7 +tp35094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35095 +tp35096 +bsa(dp35097 +g4 +g5 +(g6 +(I0 +tp35098 +g8 +tp35099 +Rp35100 +(I1 +(I7 +tp35101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35102 +tp35103 +bsa(dp35104 +g4 +g5 +(g6 +(I0 +tp35105 +g8 +tp35106 +Rp35107 +(I1 +(I7 +tp35108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35109 +tp35110 +bsa(dp35111 +g4 +g5 +(g6 +(I0 +tp35112 +g8 +tp35113 +Rp35114 +(I1 +(I7 +tp35115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35116 +tp35117 +bsa(dp35118 +g4 +g5 +(g6 +(I0 +tp35119 +g8 +tp35120 +Rp35121 +(I1 +(I7 +tp35122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35123 +tp35124 +bsa(dp35125 +g4 +g5 +(g6 +(I0 +tp35126 +g8 +tp35127 +Rp35128 +(I1 +(I7 +tp35129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35130 +tp35131 +bsa(dp35132 +g4 +g5 +(g6 +(I0 +tp35133 +g8 +tp35134 +Rp35135 +(I1 +(I7 +tp35136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35137 +tp35138 +bsa(dp35139 +g4 +g5 +(g6 +(I0 +tp35140 +g8 +tp35141 +Rp35142 +(I1 +(I7 +tp35143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35144 +tp35145 +bsa(dp35146 +g4 +g5 +(g6 +(I0 +tp35147 +g8 +tp35148 +Rp35149 +(I1 +(I7 +tp35150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35151 +tp35152 +bsa(dp35153 +g4 +g5 +(g6 +(I0 +tp35154 +g8 +tp35155 +Rp35156 +(I1 +(I7 +tp35157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35158 +tp35159 +bsa(dp35160 +g4 +g5 +(g6 +(I0 +tp35161 +g8 +tp35162 +Rp35163 +(I1 +(I7 +tp35164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35165 +tp35166 +bsa(dp35167 +g4 +g5 +(g6 +(I0 +tp35168 +g8 +tp35169 +Rp35170 +(I1 +(I7 +tp35171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35172 +tp35173 +bsa(dp35174 +g4 +g5 +(g6 +(I0 +tp35175 +g8 +tp35176 +Rp35177 +(I1 +(I7 +tp35178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35179 +tp35180 +bsa(dp35181 +g4 +g5 +(g6 +(I0 +tp35182 +g8 +tp35183 +Rp35184 +(I1 +(I7 +tp35185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35186 +tp35187 +bsa(dp35188 +g4 +g5 +(g6 +(I0 +tp35189 +g8 +tp35190 +Rp35191 +(I1 +(I7 +tp35192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35193 +tp35194 +bsa(dp35195 +g4 +g5 +(g6 +(I0 +tp35196 +g8 +tp35197 +Rp35198 +(I1 +(I7 +tp35199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35200 +tp35201 +bsa(dp35202 +g4 +g5 +(g6 +(I0 +tp35203 +g8 +tp35204 +Rp35205 +(I1 +(I7 +tp35206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35207 +tp35208 +bsa(dp35209 +g4 +g5 +(g6 +(I0 +tp35210 +g8 +tp35211 +Rp35212 +(I1 +(I7 +tp35213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35214 +tp35215 +bsa(dp35216 +g4 +g5 +(g6 +(I0 +tp35217 +g8 +tp35218 +Rp35219 +(I1 +(I7 +tp35220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35221 +tp35222 +bsa(dp35223 +g4 +g5 +(g6 +(I0 +tp35224 +g8 +tp35225 +Rp35226 +(I1 +(I7 +tp35227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35228 +tp35229 +bsa(dp35230 +g4 +g5 +(g6 +(I0 +tp35231 +g8 +tp35232 +Rp35233 +(I1 +(I7 +tp35234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35235 +tp35236 +bsa(dp35237 +g4 +g5 +(g6 +(I0 +tp35238 +g8 +tp35239 +Rp35240 +(I1 +(I7 +tp35241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35242 +tp35243 +bsa(dp35244 +g4 +g5 +(g6 +(I0 +tp35245 +g8 +tp35246 +Rp35247 +(I1 +(I7 +tp35248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35249 +tp35250 +bsa(dp35251 +g4 +g5 +(g6 +(I0 +tp35252 +g8 +tp35253 +Rp35254 +(I1 +(I7 +tp35255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35256 +tp35257 +bsa(dp35258 +g4 +g5 +(g6 +(I0 +tp35259 +g8 +tp35260 +Rp35261 +(I1 +(I7 +tp35262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35263 +tp35264 +bsa(dp35265 +g4 +g5 +(g6 +(I0 +tp35266 +g8 +tp35267 +Rp35268 +(I1 +(I7 +tp35269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35270 +tp35271 +bsa(dp35272 +g4 +g5 +(g6 +(I0 +tp35273 +g8 +tp35274 +Rp35275 +(I1 +(I7 +tp35276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35277 +tp35278 +bsa(dp35279 +g4 +g5 +(g6 +(I0 +tp35280 +g8 +tp35281 +Rp35282 +(I1 +(I7 +tp35283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35284 +tp35285 +bsa(dp35286 +g4 +g5 +(g6 +(I0 +tp35287 +g8 +tp35288 +Rp35289 +(I1 +(I7 +tp35290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35291 +tp35292 +bsa(dp35293 +g4 +g5 +(g6 +(I0 +tp35294 +g8 +tp35295 +Rp35296 +(I1 +(I7 +tp35297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35298 +tp35299 +bsa(dp35300 +g4 +g5 +(g6 +(I0 +tp35301 +g8 +tp35302 +Rp35303 +(I1 +(I7 +tp35304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35305 +tp35306 +bsa(dp35307 +g4 +g5 +(g6 +(I0 +tp35308 +g8 +tp35309 +Rp35310 +(I1 +(I7 +tp35311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35312 +tp35313 +bsa(dp35314 +g4 +g5 +(g6 +(I0 +tp35315 +g8 +tp35316 +Rp35317 +(I1 +(I7 +tp35318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35319 +tp35320 +bsa(dp35321 +g4 +g5 +(g6 +(I0 +tp35322 +g8 +tp35323 +Rp35324 +(I1 +(I7 +tp35325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35326 +tp35327 +bsa(dp35328 +g4 +g5 +(g6 +(I0 +tp35329 +g8 +tp35330 +Rp35331 +(I1 +(I7 +tp35332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35333 +tp35334 +bsa(dp35335 +g4 +g5 +(g6 +(I0 +tp35336 +g8 +tp35337 +Rp35338 +(I1 +(I7 +tp35339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35340 +tp35341 +bsa(dp35342 +g4 +g5 +(g6 +(I0 +tp35343 +g8 +tp35344 +Rp35345 +(I1 +(I7 +tp35346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35347 +tp35348 +bsa(dp35349 +g4 +g5 +(g6 +(I0 +tp35350 +g8 +tp35351 +Rp35352 +(I1 +(I7 +tp35353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35354 +tp35355 +bsa(dp35356 +g4 +g5 +(g6 +(I0 +tp35357 +g8 +tp35358 +Rp35359 +(I1 +(I7 +tp35360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35361 +tp35362 +bsa(dp35363 +g4 +g5 +(g6 +(I0 +tp35364 +g8 +tp35365 +Rp35366 +(I1 +(I7 +tp35367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35368 +tp35369 +bsa(dp35370 +g4 +g5 +(g6 +(I0 +tp35371 +g8 +tp35372 +Rp35373 +(I1 +(I7 +tp35374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35375 +tp35376 +bsa(dp35377 +g4 +g5 +(g6 +(I0 +tp35378 +g8 +tp35379 +Rp35380 +(I1 +(I7 +tp35381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35382 +tp35383 +bsa(dp35384 +g4 +g5 +(g6 +(I0 +tp35385 +g8 +tp35386 +Rp35387 +(I1 +(I7 +tp35388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35389 +tp35390 +bsa(dp35391 +g4 +g5 +(g6 +(I0 +tp35392 +g8 +tp35393 +Rp35394 +(I1 +(I7 +tp35395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35396 +tp35397 +bsa(dp35398 +g4 +g5 +(g6 +(I0 +tp35399 +g8 +tp35400 +Rp35401 +(I1 +(I7 +tp35402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35403 +tp35404 +bsa(dp35405 +g4 +g5 +(g6 +(I0 +tp35406 +g8 +tp35407 +Rp35408 +(I1 +(I7 +tp35409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35410 +tp35411 +bsa(dp35412 +g4 +g5 +(g6 +(I0 +tp35413 +g8 +tp35414 +Rp35415 +(I1 +(I7 +tp35416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35417 +tp35418 +bsa(dp35419 +g4 +g5 +(g6 +(I0 +tp35420 +g8 +tp35421 +Rp35422 +(I1 +(I7 +tp35423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35424 +tp35425 +bsa(dp35426 +g4 +g5 +(g6 +(I0 +tp35427 +g8 +tp35428 +Rp35429 +(I1 +(I7 +tp35430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35431 +tp35432 +bsa(dp35433 +g4 +g5 +(g6 +(I0 +tp35434 +g8 +tp35435 +Rp35436 +(I1 +(I7 +tp35437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35438 +tp35439 +bsa(dp35440 +g4 +g5 +(g6 +(I0 +tp35441 +g8 +tp35442 +Rp35443 +(I1 +(I7 +tp35444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35445 +tp35446 +bsa(dp35447 +g4 +g5 +(g6 +(I0 +tp35448 +g8 +tp35449 +Rp35450 +(I1 +(I7 +tp35451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35452 +tp35453 +bsa(dp35454 +g4 +g5 +(g6 +(I0 +tp35455 +g8 +tp35456 +Rp35457 +(I1 +(I7 +tp35458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35459 +tp35460 +bsa(dp35461 +g4 +g5 +(g6 +(I0 +tp35462 +g8 +tp35463 +Rp35464 +(I1 +(I7 +tp35465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35466 +tp35467 +bsa(dp35468 +g4 +g5 +(g6 +(I0 +tp35469 +g8 +tp35470 +Rp35471 +(I1 +(I7 +tp35472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35473 +tp35474 +bsa(dp35475 +g4 +g5 +(g6 +(I0 +tp35476 +g8 +tp35477 +Rp35478 +(I1 +(I7 +tp35479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35480 +tp35481 +bsa(dp35482 +g4 +g5 +(g6 +(I0 +tp35483 +g8 +tp35484 +Rp35485 +(I1 +(I7 +tp35486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35487 +tp35488 +bsa(dp35489 +g4 +g5 +(g6 +(I0 +tp35490 +g8 +tp35491 +Rp35492 +(I1 +(I7 +tp35493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35494 +tp35495 +bsa(dp35496 +g4 +g5 +(g6 +(I0 +tp35497 +g8 +tp35498 +Rp35499 +(I1 +(I7 +tp35500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35501 +tp35502 +bsa(dp35503 +g4 +g5 +(g6 +(I0 +tp35504 +g8 +tp35505 +Rp35506 +(I1 +(I7 +tp35507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35508 +tp35509 +bsa(dp35510 +g4 +g5 +(g6 +(I0 +tp35511 +g8 +tp35512 +Rp35513 +(I1 +(I7 +tp35514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35515 +tp35516 +bsa(dp35517 +g4 +g5 +(g6 +(I0 +tp35518 +g8 +tp35519 +Rp35520 +(I1 +(I7 +tp35521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35522 +tp35523 +bsa(dp35524 +g4 +g5 +(g6 +(I0 +tp35525 +g8 +tp35526 +Rp35527 +(I1 +(I7 +tp35528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35529 +tp35530 +bsa(dp35531 +g4 +g5 +(g6 +(I0 +tp35532 +g8 +tp35533 +Rp35534 +(I1 +(I7 +tp35535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35536 +tp35537 +bsa(dp35538 +g4 +g5 +(g6 +(I0 +tp35539 +g8 +tp35540 +Rp35541 +(I1 +(I7 +tp35542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35543 +tp35544 +bsa(dp35545 +g4 +g5 +(g6 +(I0 +tp35546 +g8 +tp35547 +Rp35548 +(I1 +(I7 +tp35549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35550 +tp35551 +bsa(dp35552 +g4 +g5 +(g6 +(I0 +tp35553 +g8 +tp35554 +Rp35555 +(I1 +(I7 +tp35556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35557 +tp35558 +bsa(dp35559 +g4 +g5 +(g6 +(I0 +tp35560 +g8 +tp35561 +Rp35562 +(I1 +(I7 +tp35563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35564 +tp35565 +bsa(dp35566 +g4 +g5 +(g6 +(I0 +tp35567 +g8 +tp35568 +Rp35569 +(I1 +(I7 +tp35570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35571 +tp35572 +bsa(dp35573 +g4 +g5 +(g6 +(I0 +tp35574 +g8 +tp35575 +Rp35576 +(I1 +(I7 +tp35577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35578 +tp35579 +bsa(dp35580 +g4 +g5 +(g6 +(I0 +tp35581 +g8 +tp35582 +Rp35583 +(I1 +(I7 +tp35584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35585 +tp35586 +bsa(dp35587 +g4 +g5 +(g6 +(I0 +tp35588 +g8 +tp35589 +Rp35590 +(I1 +(I7 +tp35591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35592 +tp35593 +bsa(dp35594 +g4 +g5 +(g6 +(I0 +tp35595 +g8 +tp35596 +Rp35597 +(I1 +(I7 +tp35598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35599 +tp35600 +bsa(dp35601 +g4 +g5 +(g6 +(I0 +tp35602 +g8 +tp35603 +Rp35604 +(I1 +(I7 +tp35605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35606 +tp35607 +bsa(dp35608 +g4 +g5 +(g6 +(I0 +tp35609 +g8 +tp35610 +Rp35611 +(I1 +(I7 +tp35612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35613 +tp35614 +bsa(dp35615 +g4 +g5 +(g6 +(I0 +tp35616 +g8 +tp35617 +Rp35618 +(I1 +(I7 +tp35619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35620 +tp35621 +bsa(dp35622 +g4 +g5 +(g6 +(I0 +tp35623 +g8 +tp35624 +Rp35625 +(I1 +(I7 +tp35626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35627 +tp35628 +bsa(dp35629 +g4 +g5 +(g6 +(I0 +tp35630 +g8 +tp35631 +Rp35632 +(I1 +(I7 +tp35633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35634 +tp35635 +bsa(dp35636 +g4 +g5 +(g6 +(I0 +tp35637 +g8 +tp35638 +Rp35639 +(I1 +(I7 +tp35640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35641 +tp35642 +bsa(dp35643 +g4 +g5 +(g6 +(I0 +tp35644 +g8 +tp35645 +Rp35646 +(I1 +(I7 +tp35647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35648 +tp35649 +bsa(dp35650 +g4 +g5 +(g6 +(I0 +tp35651 +g8 +tp35652 +Rp35653 +(I1 +(I7 +tp35654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35655 +tp35656 +bsa(dp35657 +g4 +g5 +(g6 +(I0 +tp35658 +g8 +tp35659 +Rp35660 +(I1 +(I7 +tp35661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35662 +tp35663 +bsa(dp35664 +g4 +g5 +(g6 +(I0 +tp35665 +g8 +tp35666 +Rp35667 +(I1 +(I7 +tp35668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35669 +tp35670 +bsa(dp35671 +g4 +g5 +(g6 +(I0 +tp35672 +g8 +tp35673 +Rp35674 +(I1 +(I7 +tp35675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35676 +tp35677 +bsa(dp35678 +g4 +g5 +(g6 +(I0 +tp35679 +g8 +tp35680 +Rp35681 +(I1 +(I7 +tp35682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35683 +tp35684 +bsa(dp35685 +g4 +g5 +(g6 +(I0 +tp35686 +g8 +tp35687 +Rp35688 +(I1 +(I7 +tp35689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35690 +tp35691 +bsa(dp35692 +g4 +g5 +(g6 +(I0 +tp35693 +g8 +tp35694 +Rp35695 +(I1 +(I7 +tp35696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35697 +tp35698 +bsa(dp35699 +g4 +g5 +(g6 +(I0 +tp35700 +g8 +tp35701 +Rp35702 +(I1 +(I7 +tp35703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35704 +tp35705 +bsa(dp35706 +g4 +g5 +(g6 +(I0 +tp35707 +g8 +tp35708 +Rp35709 +(I1 +(I7 +tp35710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35711 +tp35712 +bsa(dp35713 +g4 +g5 +(g6 +(I0 +tp35714 +g8 +tp35715 +Rp35716 +(I1 +(I7 +tp35717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35718 +tp35719 +bsa(dp35720 +g4 +g5 +(g6 +(I0 +tp35721 +g8 +tp35722 +Rp35723 +(I1 +(I7 +tp35724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35725 +tp35726 +bsa(dp35727 +g4 +g5 +(g6 +(I0 +tp35728 +g8 +tp35729 +Rp35730 +(I1 +(I7 +tp35731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35732 +tp35733 +bsa(dp35734 +g4 +g5 +(g6 +(I0 +tp35735 +g8 +tp35736 +Rp35737 +(I1 +(I7 +tp35738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35739 +tp35740 +bsa(dp35741 +g4 +g5 +(g6 +(I0 +tp35742 +g8 +tp35743 +Rp35744 +(I1 +(I7 +tp35745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35746 +tp35747 +bsa(dp35748 +g4 +g5 +(g6 +(I0 +tp35749 +g8 +tp35750 +Rp35751 +(I1 +(I7 +tp35752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35753 +tp35754 +bsa(dp35755 +g4 +g5 +(g6 +(I0 +tp35756 +g8 +tp35757 +Rp35758 +(I1 +(I7 +tp35759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35760 +tp35761 +bsa(dp35762 +g4 +g5 +(g6 +(I0 +tp35763 +g8 +tp35764 +Rp35765 +(I1 +(I7 +tp35766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35767 +tp35768 +bsa(dp35769 +g4 +g5 +(g6 +(I0 +tp35770 +g8 +tp35771 +Rp35772 +(I1 +(I7 +tp35773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35774 +tp35775 +bsa(dp35776 +g4 +g5 +(g6 +(I0 +tp35777 +g8 +tp35778 +Rp35779 +(I1 +(I7 +tp35780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35781 +tp35782 +bsa(dp35783 +g4 +g5 +(g6 +(I0 +tp35784 +g8 +tp35785 +Rp35786 +(I1 +(I7 +tp35787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35788 +tp35789 +bsa(dp35790 +g4 +g5 +(g6 +(I0 +tp35791 +g8 +tp35792 +Rp35793 +(I1 +(I7 +tp35794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35795 +tp35796 +bsa(dp35797 +g4 +g5 +(g6 +(I0 +tp35798 +g8 +tp35799 +Rp35800 +(I1 +(I7 +tp35801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35802 +tp35803 +bsa(dp35804 +g4 +g5 +(g6 +(I0 +tp35805 +g8 +tp35806 +Rp35807 +(I1 +(I7 +tp35808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35809 +tp35810 +bsa(dp35811 +g4 +g5 +(g6 +(I0 +tp35812 +g8 +tp35813 +Rp35814 +(I1 +(I7 +tp35815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35816 +tp35817 +bsa(dp35818 +g4 +g5 +(g6 +(I0 +tp35819 +g8 +tp35820 +Rp35821 +(I1 +(I7 +tp35822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35823 +tp35824 +bsa(dp35825 +g4 +g5 +(g6 +(I0 +tp35826 +g8 +tp35827 +Rp35828 +(I1 +(I7 +tp35829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35830 +tp35831 +bsa(dp35832 +g4 +g5 +(g6 +(I0 +tp35833 +g8 +tp35834 +Rp35835 +(I1 +(I7 +tp35836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35837 +tp35838 +bsa(dp35839 +g4 +g5 +(g6 +(I0 +tp35840 +g8 +tp35841 +Rp35842 +(I1 +(I7 +tp35843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35844 +tp35845 +bsa(dp35846 +g4 +g5 +(g6 +(I0 +tp35847 +g8 +tp35848 +Rp35849 +(I1 +(I7 +tp35850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35851 +tp35852 +bsa(dp35853 +g4 +g5 +(g6 +(I0 +tp35854 +g8 +tp35855 +Rp35856 +(I1 +(I7 +tp35857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35858 +tp35859 +bsa(dp35860 +g4 +g5 +(g6 +(I0 +tp35861 +g8 +tp35862 +Rp35863 +(I1 +(I7 +tp35864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35865 +tp35866 +bsa(dp35867 +g4 +g5 +(g6 +(I0 +tp35868 +g8 +tp35869 +Rp35870 +(I1 +(I7 +tp35871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35872 +tp35873 +bsa(dp35874 +g4 +g5 +(g6 +(I0 +tp35875 +g8 +tp35876 +Rp35877 +(I1 +(I7 +tp35878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35879 +tp35880 +bsa(dp35881 +g4 +g5 +(g6 +(I0 +tp35882 +g8 +tp35883 +Rp35884 +(I1 +(I7 +tp35885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35886 +tp35887 +bsa(dp35888 +g4 +g5 +(g6 +(I0 +tp35889 +g8 +tp35890 +Rp35891 +(I1 +(I7 +tp35892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35893 +tp35894 +bsa(dp35895 +g4 +g5 +(g6 +(I0 +tp35896 +g8 +tp35897 +Rp35898 +(I1 +(I7 +tp35899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35900 +tp35901 +bsa(dp35902 +g4 +g5 +(g6 +(I0 +tp35903 +g8 +tp35904 +Rp35905 +(I1 +(I7 +tp35906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35907 +tp35908 +bsa(dp35909 +g4 +g5 +(g6 +(I0 +tp35910 +g8 +tp35911 +Rp35912 +(I1 +(I7 +tp35913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35914 +tp35915 +bsa(dp35916 +g4 +g5 +(g6 +(I0 +tp35917 +g8 +tp35918 +Rp35919 +(I1 +(I7 +tp35920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35921 +tp35922 +bsa(dp35923 +g4 +g5 +(g6 +(I0 +tp35924 +g8 +tp35925 +Rp35926 +(I1 +(I7 +tp35927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35928 +tp35929 +bsa(dp35930 +g4 +g5 +(g6 +(I0 +tp35931 +g8 +tp35932 +Rp35933 +(I1 +(I7 +tp35934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35935 +tp35936 +bsa(dp35937 +g4 +g5 +(g6 +(I0 +tp35938 +g8 +tp35939 +Rp35940 +(I1 +(I7 +tp35941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35942 +tp35943 +bsa(dp35944 +g4 +g5 +(g6 +(I0 +tp35945 +g8 +tp35946 +Rp35947 +(I1 +(I7 +tp35948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35949 +tp35950 +bsa(dp35951 +g4 +g5 +(g6 +(I0 +tp35952 +g8 +tp35953 +Rp35954 +(I1 +(I7 +tp35955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35956 +tp35957 +bsa(dp35958 +g4 +g5 +(g6 +(I0 +tp35959 +g8 +tp35960 +Rp35961 +(I1 +(I7 +tp35962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35963 +tp35964 +bsa(dp35965 +g4 +g5 +(g6 +(I0 +tp35966 +g8 +tp35967 +Rp35968 +(I1 +(I7 +tp35969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35970 +tp35971 +bsa(dp35972 +g4 +g5 +(g6 +(I0 +tp35973 +g8 +tp35974 +Rp35975 +(I1 +(I7 +tp35976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p35977 +tp35978 +bsa(dp35979 +g4 +g5 +(g6 +(I0 +tp35980 +g8 +tp35981 +Rp35982 +(I1 +(I7 +tp35983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p35984 +tp35985 +bsa(dp35986 +g4 +g5 +(g6 +(I0 +tp35987 +g8 +tp35988 +Rp35989 +(I1 +(I7 +tp35990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35991 +tp35992 +bsa(dp35993 +g4 +g5 +(g6 +(I0 +tp35994 +g8 +tp35995 +Rp35996 +(I1 +(I7 +tp35997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p35998 +tp35999 +bsa(dp36000 +g4 +g5 +(g6 +(I0 +tp36001 +g8 +tp36002 +Rp36003 +(I1 +(I7 +tp36004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36005 +tp36006 +bsa(dp36007 +g4 +g5 +(g6 +(I0 +tp36008 +g8 +tp36009 +Rp36010 +(I1 +(I7 +tp36011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36012 +tp36013 +bsa(dp36014 +g4 +g5 +(g6 +(I0 +tp36015 +g8 +tp36016 +Rp36017 +(I1 +(I7 +tp36018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36019 +tp36020 +bsa(dp36021 +g4 +g5 +(g6 +(I0 +tp36022 +g8 +tp36023 +Rp36024 +(I1 +(I7 +tp36025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36026 +tp36027 +bsa(dp36028 +g4 +g5 +(g6 +(I0 +tp36029 +g8 +tp36030 +Rp36031 +(I1 +(I7 +tp36032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36033 +tp36034 +bsa(dp36035 +g4 +g5 +(g6 +(I0 +tp36036 +g8 +tp36037 +Rp36038 +(I1 +(I7 +tp36039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36040 +tp36041 +bsa(dp36042 +g4 +g5 +(g6 +(I0 +tp36043 +g8 +tp36044 +Rp36045 +(I1 +(I7 +tp36046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36047 +tp36048 +bsa(dp36049 +g4 +g5 +(g6 +(I0 +tp36050 +g8 +tp36051 +Rp36052 +(I1 +(I7 +tp36053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36054 +tp36055 +bsa(dp36056 +g4 +g5 +(g6 +(I0 +tp36057 +g8 +tp36058 +Rp36059 +(I1 +(I7 +tp36060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36061 +tp36062 +bsa(dp36063 +g4 +g5 +(g6 +(I0 +tp36064 +g8 +tp36065 +Rp36066 +(I1 +(I7 +tp36067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36068 +tp36069 +bsa(dp36070 +g4 +g5 +(g6 +(I0 +tp36071 +g8 +tp36072 +Rp36073 +(I1 +(I7 +tp36074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36075 +tp36076 +bsa(dp36077 +g4 +g5 +(g6 +(I0 +tp36078 +g8 +tp36079 +Rp36080 +(I1 +(I7 +tp36081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36082 +tp36083 +bsa(dp36084 +g4 +g5 +(g6 +(I0 +tp36085 +g8 +tp36086 +Rp36087 +(I1 +(I7 +tp36088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36089 +tp36090 +bsa(dp36091 +g4 +g5 +(g6 +(I0 +tp36092 +g8 +tp36093 +Rp36094 +(I1 +(I7 +tp36095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36096 +tp36097 +bsa(dp36098 +g4 +g5 +(g6 +(I0 +tp36099 +g8 +tp36100 +Rp36101 +(I1 +(I7 +tp36102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36103 +tp36104 +bsa(dp36105 +g4 +g5 +(g6 +(I0 +tp36106 +g8 +tp36107 +Rp36108 +(I1 +(I7 +tp36109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36110 +tp36111 +bsa(dp36112 +g4 +g5 +(g6 +(I0 +tp36113 +g8 +tp36114 +Rp36115 +(I1 +(I7 +tp36116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36117 +tp36118 +bsa(dp36119 +g4 +g5 +(g6 +(I0 +tp36120 +g8 +tp36121 +Rp36122 +(I1 +(I7 +tp36123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36124 +tp36125 +bsa(dp36126 +g4 +g5 +(g6 +(I0 +tp36127 +g8 +tp36128 +Rp36129 +(I1 +(I7 +tp36130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36131 +tp36132 +bsa(dp36133 +g4 +g5 +(g6 +(I0 +tp36134 +g8 +tp36135 +Rp36136 +(I1 +(I7 +tp36137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36138 +tp36139 +bsa(dp36140 +g4 +g5 +(g6 +(I0 +tp36141 +g8 +tp36142 +Rp36143 +(I1 +(I7 +tp36144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36145 +tp36146 +bsa(dp36147 +g4 +g5 +(g6 +(I0 +tp36148 +g8 +tp36149 +Rp36150 +(I1 +(I7 +tp36151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36152 +tp36153 +bsa(dp36154 +g4 +g5 +(g6 +(I0 +tp36155 +g8 +tp36156 +Rp36157 +(I1 +(I7 +tp36158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36159 +tp36160 +bsa(dp36161 +g4 +g5 +(g6 +(I0 +tp36162 +g8 +tp36163 +Rp36164 +(I1 +(I7 +tp36165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36166 +tp36167 +bsa(dp36168 +g4 +g5 +(g6 +(I0 +tp36169 +g8 +tp36170 +Rp36171 +(I1 +(I7 +tp36172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36173 +tp36174 +bsa(dp36175 +g4 +g5 +(g6 +(I0 +tp36176 +g8 +tp36177 +Rp36178 +(I1 +(I7 +tp36179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36180 +tp36181 +bsa(dp36182 +g4 +g5 +(g6 +(I0 +tp36183 +g8 +tp36184 +Rp36185 +(I1 +(I7 +tp36186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36187 +tp36188 +bsa(dp36189 +g4 +g5 +(g6 +(I0 +tp36190 +g8 +tp36191 +Rp36192 +(I1 +(I7 +tp36193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36194 +tp36195 +bsa(dp36196 +g4 +g5 +(g6 +(I0 +tp36197 +g8 +tp36198 +Rp36199 +(I1 +(I7 +tp36200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36201 +tp36202 +bsa(dp36203 +g4 +g5 +(g6 +(I0 +tp36204 +g8 +tp36205 +Rp36206 +(I1 +(I7 +tp36207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36208 +tp36209 +bsa(dp36210 +g4 +g5 +(g6 +(I0 +tp36211 +g8 +tp36212 +Rp36213 +(I1 +(I7 +tp36214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36215 +tp36216 +bsa(dp36217 +g4 +g5 +(g6 +(I0 +tp36218 +g8 +tp36219 +Rp36220 +(I1 +(I7 +tp36221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36222 +tp36223 +bsa(dp36224 +g4 +g5 +(g6 +(I0 +tp36225 +g8 +tp36226 +Rp36227 +(I1 +(I7 +tp36228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36229 +tp36230 +bsa(dp36231 +g4 +g5 +(g6 +(I0 +tp36232 +g8 +tp36233 +Rp36234 +(I1 +(I7 +tp36235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36236 +tp36237 +bsa(dp36238 +g4 +g5 +(g6 +(I0 +tp36239 +g8 +tp36240 +Rp36241 +(I1 +(I7 +tp36242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36243 +tp36244 +bsa(dp36245 +g4 +g5 +(g6 +(I0 +tp36246 +g8 +tp36247 +Rp36248 +(I1 +(I7 +tp36249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36250 +tp36251 +bsa(dp36252 +g4 +g5 +(g6 +(I0 +tp36253 +g8 +tp36254 +Rp36255 +(I1 +(I7 +tp36256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36257 +tp36258 +bsa(dp36259 +g4 +g5 +(g6 +(I0 +tp36260 +g8 +tp36261 +Rp36262 +(I1 +(I7 +tp36263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36264 +tp36265 +bsa(dp36266 +g4 +g5 +(g6 +(I0 +tp36267 +g8 +tp36268 +Rp36269 +(I1 +(I7 +tp36270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36271 +tp36272 +bsa(dp36273 +g4 +g5 +(g6 +(I0 +tp36274 +g8 +tp36275 +Rp36276 +(I1 +(I7 +tp36277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36278 +tp36279 +bsa(dp36280 +g4 +g5 +(g6 +(I0 +tp36281 +g8 +tp36282 +Rp36283 +(I1 +(I7 +tp36284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36285 +tp36286 +bsa(dp36287 +g4 +g5 +(g6 +(I0 +tp36288 +g8 +tp36289 +Rp36290 +(I1 +(I7 +tp36291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36292 +tp36293 +bsa(dp36294 +g4 +g5 +(g6 +(I0 +tp36295 +g8 +tp36296 +Rp36297 +(I1 +(I7 +tp36298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36299 +tp36300 +bsa(dp36301 +g4 +g5 +(g6 +(I0 +tp36302 +g8 +tp36303 +Rp36304 +(I1 +(I7 +tp36305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36306 +tp36307 +bsa(dp36308 +g4 +g5 +(g6 +(I0 +tp36309 +g8 +tp36310 +Rp36311 +(I1 +(I7 +tp36312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36313 +tp36314 +bsa(dp36315 +g4 +g5 +(g6 +(I0 +tp36316 +g8 +tp36317 +Rp36318 +(I1 +(I7 +tp36319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36320 +tp36321 +bsa(dp36322 +g4 +g5 +(g6 +(I0 +tp36323 +g8 +tp36324 +Rp36325 +(I1 +(I7 +tp36326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36327 +tp36328 +bsa(dp36329 +g4 +g5 +(g6 +(I0 +tp36330 +g8 +tp36331 +Rp36332 +(I1 +(I7 +tp36333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36334 +tp36335 +bsa(dp36336 +g4 +g5 +(g6 +(I0 +tp36337 +g8 +tp36338 +Rp36339 +(I1 +(I7 +tp36340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36341 +tp36342 +bsa(dp36343 +g4 +g5 +(g6 +(I0 +tp36344 +g8 +tp36345 +Rp36346 +(I1 +(I7 +tp36347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36348 +tp36349 +bsa(dp36350 +g4 +g5 +(g6 +(I0 +tp36351 +g8 +tp36352 +Rp36353 +(I1 +(I7 +tp36354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36355 +tp36356 +bsa(dp36357 +g4 +g5 +(g6 +(I0 +tp36358 +g8 +tp36359 +Rp36360 +(I1 +(I7 +tp36361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36362 +tp36363 +bsa(dp36364 +g4 +g5 +(g6 +(I0 +tp36365 +g8 +tp36366 +Rp36367 +(I1 +(I7 +tp36368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36369 +tp36370 +bsa(dp36371 +g4 +g5 +(g6 +(I0 +tp36372 +g8 +tp36373 +Rp36374 +(I1 +(I7 +tp36375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36376 +tp36377 +bsa(dp36378 +g4 +g5 +(g6 +(I0 +tp36379 +g8 +tp36380 +Rp36381 +(I1 +(I7 +tp36382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36383 +tp36384 +bsa(dp36385 +g4 +g5 +(g6 +(I0 +tp36386 +g8 +tp36387 +Rp36388 +(I1 +(I7 +tp36389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36390 +tp36391 +bsa(dp36392 +g4 +g5 +(g6 +(I0 +tp36393 +g8 +tp36394 +Rp36395 +(I1 +(I7 +tp36396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36397 +tp36398 +bsa(dp36399 +g4 +g5 +(g6 +(I0 +tp36400 +g8 +tp36401 +Rp36402 +(I1 +(I7 +tp36403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36404 +tp36405 +bsa(dp36406 +g4 +g5 +(g6 +(I0 +tp36407 +g8 +tp36408 +Rp36409 +(I1 +(I7 +tp36410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36411 +tp36412 +bsa(dp36413 +g4 +g5 +(g6 +(I0 +tp36414 +g8 +tp36415 +Rp36416 +(I1 +(I7 +tp36417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36418 +tp36419 +bsa(dp36420 +g4 +g5 +(g6 +(I0 +tp36421 +g8 +tp36422 +Rp36423 +(I1 +(I7 +tp36424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36425 +tp36426 +bsa(dp36427 +g4 +g5 +(g6 +(I0 +tp36428 +g8 +tp36429 +Rp36430 +(I1 +(I7 +tp36431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36432 +tp36433 +bsa(dp36434 +g4 +g5 +(g6 +(I0 +tp36435 +g8 +tp36436 +Rp36437 +(I1 +(I7 +tp36438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36439 +tp36440 +bsa(dp36441 +g4 +g5 +(g6 +(I0 +tp36442 +g8 +tp36443 +Rp36444 +(I1 +(I7 +tp36445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36446 +tp36447 +bsa(dp36448 +g4 +g5 +(g6 +(I0 +tp36449 +g8 +tp36450 +Rp36451 +(I1 +(I7 +tp36452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36453 +tp36454 +bsa(dp36455 +g4 +g5 +(g6 +(I0 +tp36456 +g8 +tp36457 +Rp36458 +(I1 +(I7 +tp36459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36460 +tp36461 +bsa(dp36462 +g4 +g5 +(g6 +(I0 +tp36463 +g8 +tp36464 +Rp36465 +(I1 +(I7 +tp36466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36467 +tp36468 +bsa(dp36469 +g4 +g5 +(g6 +(I0 +tp36470 +g8 +tp36471 +Rp36472 +(I1 +(I7 +tp36473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36474 +tp36475 +bsa(dp36476 +g4 +g5 +(g6 +(I0 +tp36477 +g8 +tp36478 +Rp36479 +(I1 +(I7 +tp36480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36481 +tp36482 +bsa(dp36483 +g4 +g5 +(g6 +(I0 +tp36484 +g8 +tp36485 +Rp36486 +(I1 +(I7 +tp36487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36488 +tp36489 +bsa(dp36490 +g4 +g5 +(g6 +(I0 +tp36491 +g8 +tp36492 +Rp36493 +(I1 +(I7 +tp36494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36495 +tp36496 +bsa(dp36497 +g4 +g5 +(g6 +(I0 +tp36498 +g8 +tp36499 +Rp36500 +(I1 +(I7 +tp36501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36502 +tp36503 +bsa(dp36504 +g4 +g5 +(g6 +(I0 +tp36505 +g8 +tp36506 +Rp36507 +(I1 +(I7 +tp36508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36509 +tp36510 +bsa(dp36511 +g4 +g5 +(g6 +(I0 +tp36512 +g8 +tp36513 +Rp36514 +(I1 +(I7 +tp36515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36516 +tp36517 +bsa(dp36518 +g4 +g5 +(g6 +(I0 +tp36519 +g8 +tp36520 +Rp36521 +(I1 +(I7 +tp36522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36523 +tp36524 +bsa(dp36525 +g4 +g5 +(g6 +(I0 +tp36526 +g8 +tp36527 +Rp36528 +(I1 +(I7 +tp36529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36530 +tp36531 +bsa(dp36532 +g4 +g5 +(g6 +(I0 +tp36533 +g8 +tp36534 +Rp36535 +(I1 +(I7 +tp36536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36537 +tp36538 +bsa(dp36539 +g4 +g5 +(g6 +(I0 +tp36540 +g8 +tp36541 +Rp36542 +(I1 +(I7 +tp36543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36544 +tp36545 +bsa(dp36546 +g4 +g5 +(g6 +(I0 +tp36547 +g8 +tp36548 +Rp36549 +(I1 +(I7 +tp36550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36551 +tp36552 +bsa(dp36553 +g4 +g5 +(g6 +(I0 +tp36554 +g8 +tp36555 +Rp36556 +(I1 +(I7 +tp36557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36558 +tp36559 +bsa(dp36560 +g4 +g5 +(g6 +(I0 +tp36561 +g8 +tp36562 +Rp36563 +(I1 +(I7 +tp36564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36565 +tp36566 +bsa(dp36567 +g4 +g5 +(g6 +(I0 +tp36568 +g8 +tp36569 +Rp36570 +(I1 +(I7 +tp36571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36572 +tp36573 +bsa(dp36574 +g4 +g5 +(g6 +(I0 +tp36575 +g8 +tp36576 +Rp36577 +(I1 +(I7 +tp36578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36579 +tp36580 +bsa(dp36581 +g4 +g5 +(g6 +(I0 +tp36582 +g8 +tp36583 +Rp36584 +(I1 +(I7 +tp36585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36586 +tp36587 +bsa(dp36588 +g4 +g5 +(g6 +(I0 +tp36589 +g8 +tp36590 +Rp36591 +(I1 +(I7 +tp36592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36593 +tp36594 +bsa(dp36595 +g4 +g5 +(g6 +(I0 +tp36596 +g8 +tp36597 +Rp36598 +(I1 +(I7 +tp36599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36600 +tp36601 +bsa(dp36602 +g4 +g5 +(g6 +(I0 +tp36603 +g8 +tp36604 +Rp36605 +(I1 +(I7 +tp36606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36607 +tp36608 +bsa(dp36609 +g4 +g5 +(g6 +(I0 +tp36610 +g8 +tp36611 +Rp36612 +(I1 +(I7 +tp36613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36614 +tp36615 +bsa(dp36616 +g4 +g5 +(g6 +(I0 +tp36617 +g8 +tp36618 +Rp36619 +(I1 +(I7 +tp36620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36621 +tp36622 +bsa(dp36623 +g4 +g5 +(g6 +(I0 +tp36624 +g8 +tp36625 +Rp36626 +(I1 +(I7 +tp36627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36628 +tp36629 +bsa(dp36630 +g4 +g5 +(g6 +(I0 +tp36631 +g8 +tp36632 +Rp36633 +(I1 +(I7 +tp36634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36635 +tp36636 +bsa(dp36637 +g4 +g5 +(g6 +(I0 +tp36638 +g8 +tp36639 +Rp36640 +(I1 +(I7 +tp36641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36642 +tp36643 +bsa(dp36644 +g4 +g5 +(g6 +(I0 +tp36645 +g8 +tp36646 +Rp36647 +(I1 +(I7 +tp36648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36649 +tp36650 +bsa(dp36651 +g4 +g5 +(g6 +(I0 +tp36652 +g8 +tp36653 +Rp36654 +(I1 +(I7 +tp36655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36656 +tp36657 +bsa(dp36658 +g4 +g5 +(g6 +(I0 +tp36659 +g8 +tp36660 +Rp36661 +(I1 +(I7 +tp36662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36663 +tp36664 +bsa(dp36665 +g4 +g5 +(g6 +(I0 +tp36666 +g8 +tp36667 +Rp36668 +(I1 +(I7 +tp36669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36670 +tp36671 +bsa(dp36672 +g4 +g5 +(g6 +(I0 +tp36673 +g8 +tp36674 +Rp36675 +(I1 +(I7 +tp36676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36677 +tp36678 +bsa(dp36679 +g4 +g5 +(g6 +(I0 +tp36680 +g8 +tp36681 +Rp36682 +(I1 +(I7 +tp36683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36684 +tp36685 +bsa(dp36686 +g4 +g5 +(g6 +(I0 +tp36687 +g8 +tp36688 +Rp36689 +(I1 +(I7 +tp36690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36691 +tp36692 +bsa(dp36693 +g4 +g5 +(g6 +(I0 +tp36694 +g8 +tp36695 +Rp36696 +(I1 +(I7 +tp36697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36698 +tp36699 +bsa(dp36700 +g4 +g5 +(g6 +(I0 +tp36701 +g8 +tp36702 +Rp36703 +(I1 +(I7 +tp36704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36705 +tp36706 +bsa(dp36707 +g4 +g5 +(g6 +(I0 +tp36708 +g8 +tp36709 +Rp36710 +(I1 +(I7 +tp36711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36712 +tp36713 +bsa(dp36714 +g4 +g5 +(g6 +(I0 +tp36715 +g8 +tp36716 +Rp36717 +(I1 +(I7 +tp36718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36719 +tp36720 +bsa(dp36721 +g4 +g5 +(g6 +(I0 +tp36722 +g8 +tp36723 +Rp36724 +(I1 +(I7 +tp36725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36726 +tp36727 +bsa(dp36728 +g4 +g5 +(g6 +(I0 +tp36729 +g8 +tp36730 +Rp36731 +(I1 +(I7 +tp36732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36733 +tp36734 +bsa(dp36735 +g4 +g5 +(g6 +(I0 +tp36736 +g8 +tp36737 +Rp36738 +(I1 +(I7 +tp36739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36740 +tp36741 +bsa(dp36742 +g4 +g5 +(g6 +(I0 +tp36743 +g8 +tp36744 +Rp36745 +(I1 +(I7 +tp36746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36747 +tp36748 +bsa(dp36749 +g4 +g5 +(g6 +(I0 +tp36750 +g8 +tp36751 +Rp36752 +(I1 +(I7 +tp36753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36754 +tp36755 +bsa(dp36756 +g4 +g5 +(g6 +(I0 +tp36757 +g8 +tp36758 +Rp36759 +(I1 +(I7 +tp36760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36761 +tp36762 +bsa(dp36763 +g4 +g5 +(g6 +(I0 +tp36764 +g8 +tp36765 +Rp36766 +(I1 +(I7 +tp36767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36768 +tp36769 +bsa(dp36770 +g4 +g5 +(g6 +(I0 +tp36771 +g8 +tp36772 +Rp36773 +(I1 +(I7 +tp36774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36775 +tp36776 +bsa(dp36777 +g4 +g5 +(g6 +(I0 +tp36778 +g8 +tp36779 +Rp36780 +(I1 +(I7 +tp36781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36782 +tp36783 +bsa(dp36784 +g4 +g5 +(g6 +(I0 +tp36785 +g8 +tp36786 +Rp36787 +(I1 +(I7 +tp36788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36789 +tp36790 +bsa(dp36791 +g4 +g5 +(g6 +(I0 +tp36792 +g8 +tp36793 +Rp36794 +(I1 +(I7 +tp36795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36796 +tp36797 +bsa(dp36798 +g4 +g5 +(g6 +(I0 +tp36799 +g8 +tp36800 +Rp36801 +(I1 +(I7 +tp36802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36803 +tp36804 +bsa(dp36805 +g4 +g5 +(g6 +(I0 +tp36806 +g8 +tp36807 +Rp36808 +(I1 +(I7 +tp36809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36810 +tp36811 +bsa(dp36812 +g4 +g5 +(g6 +(I0 +tp36813 +g8 +tp36814 +Rp36815 +(I1 +(I7 +tp36816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36817 +tp36818 +bsa(dp36819 +g4 +g5 +(g6 +(I0 +tp36820 +g8 +tp36821 +Rp36822 +(I1 +(I7 +tp36823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36824 +tp36825 +bsa(dp36826 +g4 +g5 +(g6 +(I0 +tp36827 +g8 +tp36828 +Rp36829 +(I1 +(I7 +tp36830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36831 +tp36832 +bsa(dp36833 +g4 +g5 +(g6 +(I0 +tp36834 +g8 +tp36835 +Rp36836 +(I1 +(I7 +tp36837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36838 +tp36839 +bsa(dp36840 +g4 +g5 +(g6 +(I0 +tp36841 +g8 +tp36842 +Rp36843 +(I1 +(I7 +tp36844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36845 +tp36846 +bsa(dp36847 +g4 +g5 +(g6 +(I0 +tp36848 +g8 +tp36849 +Rp36850 +(I1 +(I7 +tp36851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36852 +tp36853 +bsa(dp36854 +g4 +g5 +(g6 +(I0 +tp36855 +g8 +tp36856 +Rp36857 +(I1 +(I7 +tp36858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36859 +tp36860 +bsa(dp36861 +g4 +g5 +(g6 +(I0 +tp36862 +g8 +tp36863 +Rp36864 +(I1 +(I7 +tp36865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36866 +tp36867 +bsa(dp36868 +g4 +g5 +(g6 +(I0 +tp36869 +g8 +tp36870 +Rp36871 +(I1 +(I7 +tp36872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36873 +tp36874 +bsa(dp36875 +g4 +g5 +(g6 +(I0 +tp36876 +g8 +tp36877 +Rp36878 +(I1 +(I7 +tp36879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36880 +tp36881 +bsa(dp36882 +g4 +g5 +(g6 +(I0 +tp36883 +g8 +tp36884 +Rp36885 +(I1 +(I7 +tp36886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36887 +tp36888 +bsa(dp36889 +g4 +g5 +(g6 +(I0 +tp36890 +g8 +tp36891 +Rp36892 +(I1 +(I7 +tp36893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36894 +tp36895 +bsa(dp36896 +g4 +g5 +(g6 +(I0 +tp36897 +g8 +tp36898 +Rp36899 +(I1 +(I7 +tp36900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36901 +tp36902 +bsa(dp36903 +g4 +g5 +(g6 +(I0 +tp36904 +g8 +tp36905 +Rp36906 +(I1 +(I7 +tp36907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36908 +tp36909 +bsa(dp36910 +g4 +g5 +(g6 +(I0 +tp36911 +g8 +tp36912 +Rp36913 +(I1 +(I7 +tp36914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36915 +tp36916 +bsa(dp36917 +g4 +g5 +(g6 +(I0 +tp36918 +g8 +tp36919 +Rp36920 +(I1 +(I7 +tp36921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36922 +tp36923 +bsa(dp36924 +g4 +g5 +(g6 +(I0 +tp36925 +g8 +tp36926 +Rp36927 +(I1 +(I7 +tp36928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p36929 +tp36930 +bsa(dp36931 +g4 +g5 +(g6 +(I0 +tp36932 +g8 +tp36933 +Rp36934 +(I1 +(I7 +tp36935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p36936 +tp36937 +bsa(dp36938 +g4 +g5 +(g6 +(I0 +tp36939 +g8 +tp36940 +Rp36941 +(I1 +(I7 +tp36942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36943 +tp36944 +bsa(dp36945 +g4 +g5 +(g6 +(I0 +tp36946 +g8 +tp36947 +Rp36948 +(I1 +(I7 +tp36949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36950 +tp36951 +bsa(dp36952 +g4 +g5 +(g6 +(I0 +tp36953 +g8 +tp36954 +Rp36955 +(I1 +(I7 +tp36956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36957 +tp36958 +bsa(dp36959 +g4 +g5 +(g6 +(I0 +tp36960 +g8 +tp36961 +Rp36962 +(I1 +(I7 +tp36963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36964 +tp36965 +bsa(dp36966 +g4 +g5 +(g6 +(I0 +tp36967 +g8 +tp36968 +Rp36969 +(I1 +(I7 +tp36970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36971 +tp36972 +bsa(dp36973 +g4 +g5 +(g6 +(I0 +tp36974 +g8 +tp36975 +Rp36976 +(I1 +(I7 +tp36977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36978 +tp36979 +bsa(dp36980 +g4 +g5 +(g6 +(I0 +tp36981 +g8 +tp36982 +Rp36983 +(I1 +(I7 +tp36984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36985 +tp36986 +bsa(dp36987 +g4 +g5 +(g6 +(I0 +tp36988 +g8 +tp36989 +Rp36990 +(I1 +(I7 +tp36991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36992 +tp36993 +bsa(dp36994 +g4 +g5 +(g6 +(I0 +tp36995 +g8 +tp36996 +Rp36997 +(I1 +(I7 +tp36998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p36999 +tp37000 +bsa(dp37001 +g4 +g5 +(g6 +(I0 +tp37002 +g8 +tp37003 +Rp37004 +(I1 +(I7 +tp37005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37006 +tp37007 +bsa(dp37008 +g4 +g5 +(g6 +(I0 +tp37009 +g8 +tp37010 +Rp37011 +(I1 +(I7 +tp37012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37013 +tp37014 +bsa(dp37015 +g4 +g5 +(g6 +(I0 +tp37016 +g8 +tp37017 +Rp37018 +(I1 +(I7 +tp37019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37020 +tp37021 +bsa(dp37022 +g4 +g5 +(g6 +(I0 +tp37023 +g8 +tp37024 +Rp37025 +(I1 +(I7 +tp37026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37027 +tp37028 +bsa(dp37029 +g4 +g5 +(g6 +(I0 +tp37030 +g8 +tp37031 +Rp37032 +(I1 +(I7 +tp37033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37034 +tp37035 +bsa(dp37036 +g4 +g5 +(g6 +(I0 +tp37037 +g8 +tp37038 +Rp37039 +(I1 +(I7 +tp37040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37041 +tp37042 +bsa(dp37043 +g4 +g5 +(g6 +(I0 +tp37044 +g8 +tp37045 +Rp37046 +(I1 +(I7 +tp37047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37048 +tp37049 +bsa(dp37050 +g4 +g5 +(g6 +(I0 +tp37051 +g8 +tp37052 +Rp37053 +(I1 +(I7 +tp37054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37055 +tp37056 +bsa(dp37057 +g4 +g5 +(g6 +(I0 +tp37058 +g8 +tp37059 +Rp37060 +(I1 +(I7 +tp37061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37062 +tp37063 +bsa(dp37064 +g4 +g5 +(g6 +(I0 +tp37065 +g8 +tp37066 +Rp37067 +(I1 +(I7 +tp37068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37069 +tp37070 +bsa(dp37071 +g4 +g5 +(g6 +(I0 +tp37072 +g8 +tp37073 +Rp37074 +(I1 +(I7 +tp37075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37076 +tp37077 +bsa(dp37078 +g4 +g5 +(g6 +(I0 +tp37079 +g8 +tp37080 +Rp37081 +(I1 +(I7 +tp37082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37083 +tp37084 +bsa(dp37085 +g4 +g5 +(g6 +(I0 +tp37086 +g8 +tp37087 +Rp37088 +(I1 +(I7 +tp37089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37090 +tp37091 +bsa(dp37092 +g4 +g5 +(g6 +(I0 +tp37093 +g8 +tp37094 +Rp37095 +(I1 +(I7 +tp37096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37097 +tp37098 +bsa(dp37099 +g4 +g5 +(g6 +(I0 +tp37100 +g8 +tp37101 +Rp37102 +(I1 +(I7 +tp37103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37104 +tp37105 +bsa(dp37106 +g4 +g5 +(g6 +(I0 +tp37107 +g8 +tp37108 +Rp37109 +(I1 +(I7 +tp37110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37111 +tp37112 +bsa(dp37113 +g4 +g5 +(g6 +(I0 +tp37114 +g8 +tp37115 +Rp37116 +(I1 +(I7 +tp37117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37118 +tp37119 +bsa(dp37120 +g4 +g5 +(g6 +(I0 +tp37121 +g8 +tp37122 +Rp37123 +(I1 +(I7 +tp37124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37125 +tp37126 +bsa(dp37127 +g4 +g5 +(g6 +(I0 +tp37128 +g8 +tp37129 +Rp37130 +(I1 +(I7 +tp37131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37132 +tp37133 +bsa(dp37134 +g4 +g5 +(g6 +(I0 +tp37135 +g8 +tp37136 +Rp37137 +(I1 +(I7 +tp37138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37139 +tp37140 +bsa(dp37141 +g4 +g5 +(g6 +(I0 +tp37142 +g8 +tp37143 +Rp37144 +(I1 +(I7 +tp37145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37146 +tp37147 +bsa(dp37148 +g4 +g5 +(g6 +(I0 +tp37149 +g8 +tp37150 +Rp37151 +(I1 +(I7 +tp37152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37153 +tp37154 +bsa(dp37155 +g4 +g5 +(g6 +(I0 +tp37156 +g8 +tp37157 +Rp37158 +(I1 +(I7 +tp37159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37160 +tp37161 +bsa(dp37162 +g4 +g5 +(g6 +(I0 +tp37163 +g8 +tp37164 +Rp37165 +(I1 +(I7 +tp37166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37167 +tp37168 +bsa(dp37169 +g4 +g5 +(g6 +(I0 +tp37170 +g8 +tp37171 +Rp37172 +(I1 +(I7 +tp37173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37174 +tp37175 +bsa(dp37176 +g4 +g5 +(g6 +(I0 +tp37177 +g8 +tp37178 +Rp37179 +(I1 +(I7 +tp37180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37181 +tp37182 +bsa(dp37183 +g4 +g5 +(g6 +(I0 +tp37184 +g8 +tp37185 +Rp37186 +(I1 +(I7 +tp37187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37188 +tp37189 +bsa(dp37190 +g4 +g5 +(g6 +(I0 +tp37191 +g8 +tp37192 +Rp37193 +(I1 +(I7 +tp37194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37195 +tp37196 +bsa(dp37197 +g4 +g5 +(g6 +(I0 +tp37198 +g8 +tp37199 +Rp37200 +(I1 +(I7 +tp37201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37202 +tp37203 +bsa(dp37204 +g4 +g5 +(g6 +(I0 +tp37205 +g8 +tp37206 +Rp37207 +(I1 +(I7 +tp37208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37209 +tp37210 +bsa(dp37211 +g4 +g5 +(g6 +(I0 +tp37212 +g8 +tp37213 +Rp37214 +(I1 +(I7 +tp37215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37216 +tp37217 +bsa(dp37218 +g4 +g5 +(g6 +(I0 +tp37219 +g8 +tp37220 +Rp37221 +(I1 +(I7 +tp37222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37223 +tp37224 +bsa(dp37225 +g4 +g5 +(g6 +(I0 +tp37226 +g8 +tp37227 +Rp37228 +(I1 +(I7 +tp37229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37230 +tp37231 +bsa(dp37232 +g4 +g5 +(g6 +(I0 +tp37233 +g8 +tp37234 +Rp37235 +(I1 +(I7 +tp37236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37237 +tp37238 +bsa(dp37239 +g4 +g5 +(g6 +(I0 +tp37240 +g8 +tp37241 +Rp37242 +(I1 +(I7 +tp37243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37244 +tp37245 +bsa(dp37246 +g4 +g5 +(g6 +(I0 +tp37247 +g8 +tp37248 +Rp37249 +(I1 +(I7 +tp37250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37251 +tp37252 +bsa(dp37253 +g4 +g5 +(g6 +(I0 +tp37254 +g8 +tp37255 +Rp37256 +(I1 +(I7 +tp37257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37258 +tp37259 +bsa(dp37260 +g4 +g5 +(g6 +(I0 +tp37261 +g8 +tp37262 +Rp37263 +(I1 +(I7 +tp37264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37265 +tp37266 +bsa(dp37267 +g4 +g5 +(g6 +(I0 +tp37268 +g8 +tp37269 +Rp37270 +(I1 +(I7 +tp37271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37272 +tp37273 +bsa(dp37274 +g4 +g5 +(g6 +(I0 +tp37275 +g8 +tp37276 +Rp37277 +(I1 +(I7 +tp37278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37279 +tp37280 +bsa(dp37281 +g4 +g5 +(g6 +(I0 +tp37282 +g8 +tp37283 +Rp37284 +(I1 +(I7 +tp37285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37286 +tp37287 +bsa(dp37288 +g4 +g5 +(g6 +(I0 +tp37289 +g8 +tp37290 +Rp37291 +(I1 +(I7 +tp37292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37293 +tp37294 +bsa(dp37295 +g4 +g5 +(g6 +(I0 +tp37296 +g8 +tp37297 +Rp37298 +(I1 +(I7 +tp37299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37300 +tp37301 +bsa(dp37302 +g4 +g5 +(g6 +(I0 +tp37303 +g8 +tp37304 +Rp37305 +(I1 +(I7 +tp37306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37307 +tp37308 +bsa(dp37309 +g4 +g5 +(g6 +(I0 +tp37310 +g8 +tp37311 +Rp37312 +(I1 +(I7 +tp37313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37314 +tp37315 +bsa(dp37316 +g4 +g5 +(g6 +(I0 +tp37317 +g8 +tp37318 +Rp37319 +(I1 +(I7 +tp37320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37321 +tp37322 +bsa(dp37323 +g4 +g5 +(g6 +(I0 +tp37324 +g8 +tp37325 +Rp37326 +(I1 +(I7 +tp37327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37328 +tp37329 +bsa(dp37330 +g4 +g5 +(g6 +(I0 +tp37331 +g8 +tp37332 +Rp37333 +(I1 +(I7 +tp37334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37335 +tp37336 +bsa(dp37337 +g4 +g5 +(g6 +(I0 +tp37338 +g8 +tp37339 +Rp37340 +(I1 +(I7 +tp37341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37342 +tp37343 +bsa(dp37344 +g4 +g5 +(g6 +(I0 +tp37345 +g8 +tp37346 +Rp37347 +(I1 +(I7 +tp37348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37349 +tp37350 +bsa(dp37351 +g4 +g5 +(g6 +(I0 +tp37352 +g8 +tp37353 +Rp37354 +(I1 +(I7 +tp37355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37356 +tp37357 +bsa(dp37358 +g4 +g5 +(g6 +(I0 +tp37359 +g8 +tp37360 +Rp37361 +(I1 +(I7 +tp37362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37363 +tp37364 +bsa(dp37365 +g4 +g5 +(g6 +(I0 +tp37366 +g8 +tp37367 +Rp37368 +(I1 +(I7 +tp37369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37370 +tp37371 +bsa(dp37372 +g4 +g5 +(g6 +(I0 +tp37373 +g8 +tp37374 +Rp37375 +(I1 +(I7 +tp37376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37377 +tp37378 +bsa(dp37379 +g4 +g5 +(g6 +(I0 +tp37380 +g8 +tp37381 +Rp37382 +(I1 +(I7 +tp37383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37384 +tp37385 +bsa(dp37386 +g4 +g5 +(g6 +(I0 +tp37387 +g8 +tp37388 +Rp37389 +(I1 +(I7 +tp37390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37391 +tp37392 +bsa(dp37393 +g4 +g5 +(g6 +(I0 +tp37394 +g8 +tp37395 +Rp37396 +(I1 +(I7 +tp37397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37398 +tp37399 +bsa(dp37400 +g4 +g5 +(g6 +(I0 +tp37401 +g8 +tp37402 +Rp37403 +(I1 +(I7 +tp37404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37405 +tp37406 +bsa(dp37407 +g4 +g5 +(g6 +(I0 +tp37408 +g8 +tp37409 +Rp37410 +(I1 +(I7 +tp37411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37412 +tp37413 +bsa(dp37414 +g4 +g5 +(g6 +(I0 +tp37415 +g8 +tp37416 +Rp37417 +(I1 +(I7 +tp37418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37419 +tp37420 +bsa(dp37421 +g4 +g5 +(g6 +(I0 +tp37422 +g8 +tp37423 +Rp37424 +(I1 +(I7 +tp37425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37426 +tp37427 +bsa(dp37428 +g4 +g5 +(g6 +(I0 +tp37429 +g8 +tp37430 +Rp37431 +(I1 +(I7 +tp37432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37433 +tp37434 +bsa(dp37435 +g4 +g5 +(g6 +(I0 +tp37436 +g8 +tp37437 +Rp37438 +(I1 +(I7 +tp37439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37440 +tp37441 +bsa(dp37442 +g4 +g5 +(g6 +(I0 +tp37443 +g8 +tp37444 +Rp37445 +(I1 +(I7 +tp37446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37447 +tp37448 +bsa(dp37449 +g4 +g5 +(g6 +(I0 +tp37450 +g8 +tp37451 +Rp37452 +(I1 +(I7 +tp37453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37454 +tp37455 +bsa(dp37456 +g4 +g5 +(g6 +(I0 +tp37457 +g8 +tp37458 +Rp37459 +(I1 +(I7 +tp37460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37461 +tp37462 +bsa(dp37463 +g4 +g5 +(g6 +(I0 +tp37464 +g8 +tp37465 +Rp37466 +(I1 +(I7 +tp37467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37468 +tp37469 +bsa(dp37470 +g4 +g5 +(g6 +(I0 +tp37471 +g8 +tp37472 +Rp37473 +(I1 +(I7 +tp37474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37475 +tp37476 +bsa(dp37477 +g4 +g5 +(g6 +(I0 +tp37478 +g8 +tp37479 +Rp37480 +(I1 +(I7 +tp37481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37482 +tp37483 +bsa(dp37484 +g4 +g5 +(g6 +(I0 +tp37485 +g8 +tp37486 +Rp37487 +(I1 +(I7 +tp37488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37489 +tp37490 +bsa(dp37491 +g4 +g5 +(g6 +(I0 +tp37492 +g8 +tp37493 +Rp37494 +(I1 +(I7 +tp37495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37496 +tp37497 +bsa(dp37498 +g4 +g5 +(g6 +(I0 +tp37499 +g8 +tp37500 +Rp37501 +(I1 +(I7 +tp37502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37503 +tp37504 +bsa(dp37505 +g4 +g5 +(g6 +(I0 +tp37506 +g8 +tp37507 +Rp37508 +(I1 +(I7 +tp37509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37510 +tp37511 +bsa(dp37512 +g4 +g5 +(g6 +(I0 +tp37513 +g8 +tp37514 +Rp37515 +(I1 +(I7 +tp37516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37517 +tp37518 +bsa(dp37519 +g4 +g5 +(g6 +(I0 +tp37520 +g8 +tp37521 +Rp37522 +(I1 +(I7 +tp37523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37524 +tp37525 +bsa(dp37526 +g4 +g5 +(g6 +(I0 +tp37527 +g8 +tp37528 +Rp37529 +(I1 +(I7 +tp37530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37531 +tp37532 +bsa(dp37533 +g4 +g5 +(g6 +(I0 +tp37534 +g8 +tp37535 +Rp37536 +(I1 +(I7 +tp37537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37538 +tp37539 +bsa(dp37540 +g4 +g5 +(g6 +(I0 +tp37541 +g8 +tp37542 +Rp37543 +(I1 +(I7 +tp37544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37545 +tp37546 +bsa(dp37547 +g4 +g5 +(g6 +(I0 +tp37548 +g8 +tp37549 +Rp37550 +(I1 +(I7 +tp37551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37552 +tp37553 +bsa(dp37554 +g4 +g5 +(g6 +(I0 +tp37555 +g8 +tp37556 +Rp37557 +(I1 +(I7 +tp37558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37559 +tp37560 +bsa(dp37561 +g4 +g5 +(g6 +(I0 +tp37562 +g8 +tp37563 +Rp37564 +(I1 +(I7 +tp37565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37566 +tp37567 +bsa(dp37568 +g4 +g5 +(g6 +(I0 +tp37569 +g8 +tp37570 +Rp37571 +(I1 +(I7 +tp37572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37573 +tp37574 +bsa(dp37575 +g4 +g5 +(g6 +(I0 +tp37576 +g8 +tp37577 +Rp37578 +(I1 +(I7 +tp37579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37580 +tp37581 +bsa(dp37582 +g4 +g5 +(g6 +(I0 +tp37583 +g8 +tp37584 +Rp37585 +(I1 +(I7 +tp37586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37587 +tp37588 +bsa(dp37589 +g4 +g5 +(g6 +(I0 +tp37590 +g8 +tp37591 +Rp37592 +(I1 +(I7 +tp37593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37594 +tp37595 +bsa(dp37596 +g4 +g5 +(g6 +(I0 +tp37597 +g8 +tp37598 +Rp37599 +(I1 +(I7 +tp37600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37601 +tp37602 +bsa(dp37603 +g4 +g5 +(g6 +(I0 +tp37604 +g8 +tp37605 +Rp37606 +(I1 +(I7 +tp37607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37608 +tp37609 +bsa(dp37610 +g4 +g5 +(g6 +(I0 +tp37611 +g8 +tp37612 +Rp37613 +(I1 +(I7 +tp37614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37615 +tp37616 +bsa(dp37617 +g4 +g5 +(g6 +(I0 +tp37618 +g8 +tp37619 +Rp37620 +(I1 +(I7 +tp37621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37622 +tp37623 +bsa(dp37624 +g4 +g5 +(g6 +(I0 +tp37625 +g8 +tp37626 +Rp37627 +(I1 +(I7 +tp37628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37629 +tp37630 +bsa(dp37631 +g4 +g5 +(g6 +(I0 +tp37632 +g8 +tp37633 +Rp37634 +(I1 +(I7 +tp37635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37636 +tp37637 +bsa(dp37638 +g4 +g5 +(g6 +(I0 +tp37639 +g8 +tp37640 +Rp37641 +(I1 +(I7 +tp37642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37643 +tp37644 +bsa(dp37645 +g4 +g5 +(g6 +(I0 +tp37646 +g8 +tp37647 +Rp37648 +(I1 +(I7 +tp37649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37650 +tp37651 +bsa(dp37652 +g4 +g5 +(g6 +(I0 +tp37653 +g8 +tp37654 +Rp37655 +(I1 +(I7 +tp37656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37657 +tp37658 +bsa(dp37659 +g4 +g5 +(g6 +(I0 +tp37660 +g8 +tp37661 +Rp37662 +(I1 +(I7 +tp37663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37664 +tp37665 +bsa(dp37666 +g4 +g5 +(g6 +(I0 +tp37667 +g8 +tp37668 +Rp37669 +(I1 +(I7 +tp37670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37671 +tp37672 +bsa(dp37673 +g4 +g5 +(g6 +(I0 +tp37674 +g8 +tp37675 +Rp37676 +(I1 +(I7 +tp37677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37678 +tp37679 +bsa(dp37680 +g4 +g5 +(g6 +(I0 +tp37681 +g8 +tp37682 +Rp37683 +(I1 +(I7 +tp37684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37685 +tp37686 +bsa(dp37687 +g4 +g5 +(g6 +(I0 +tp37688 +g8 +tp37689 +Rp37690 +(I1 +(I7 +tp37691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37692 +tp37693 +bsa(dp37694 +g4 +g5 +(g6 +(I0 +tp37695 +g8 +tp37696 +Rp37697 +(I1 +(I7 +tp37698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37699 +tp37700 +bsa(dp37701 +g4 +g5 +(g6 +(I0 +tp37702 +g8 +tp37703 +Rp37704 +(I1 +(I7 +tp37705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37706 +tp37707 +bsa(dp37708 +g4 +g5 +(g6 +(I0 +tp37709 +g8 +tp37710 +Rp37711 +(I1 +(I7 +tp37712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37713 +tp37714 +bsa(dp37715 +g4 +g5 +(g6 +(I0 +tp37716 +g8 +tp37717 +Rp37718 +(I1 +(I7 +tp37719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37720 +tp37721 +bsa(dp37722 +g4 +g5 +(g6 +(I0 +tp37723 +g8 +tp37724 +Rp37725 +(I1 +(I7 +tp37726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37727 +tp37728 +bsa(dp37729 +g4 +g5 +(g6 +(I0 +tp37730 +g8 +tp37731 +Rp37732 +(I1 +(I7 +tp37733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37734 +tp37735 +bsa(dp37736 +g4 +g5 +(g6 +(I0 +tp37737 +g8 +tp37738 +Rp37739 +(I1 +(I7 +tp37740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37741 +tp37742 +bsa(dp37743 +g4 +g5 +(g6 +(I0 +tp37744 +g8 +tp37745 +Rp37746 +(I1 +(I7 +tp37747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37748 +tp37749 +bsa(dp37750 +g4 +g5 +(g6 +(I0 +tp37751 +g8 +tp37752 +Rp37753 +(I1 +(I7 +tp37754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37755 +tp37756 +bsa(dp37757 +g4 +g5 +(g6 +(I0 +tp37758 +g8 +tp37759 +Rp37760 +(I1 +(I7 +tp37761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37762 +tp37763 +bsa(dp37764 +g4 +g5 +(g6 +(I0 +tp37765 +g8 +tp37766 +Rp37767 +(I1 +(I7 +tp37768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37769 +tp37770 +bsa(dp37771 +g4 +g5 +(g6 +(I0 +tp37772 +g8 +tp37773 +Rp37774 +(I1 +(I7 +tp37775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37776 +tp37777 +bsa(dp37778 +g4 +g5 +(g6 +(I0 +tp37779 +g8 +tp37780 +Rp37781 +(I1 +(I7 +tp37782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37783 +tp37784 +bsa(dp37785 +g4 +g5 +(g6 +(I0 +tp37786 +g8 +tp37787 +Rp37788 +(I1 +(I7 +tp37789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37790 +tp37791 +bsa(dp37792 +g4 +g5 +(g6 +(I0 +tp37793 +g8 +tp37794 +Rp37795 +(I1 +(I7 +tp37796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37797 +tp37798 +bsa(dp37799 +g4 +g5 +(g6 +(I0 +tp37800 +g8 +tp37801 +Rp37802 +(I1 +(I7 +tp37803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37804 +tp37805 +bsa(dp37806 +g4 +g5 +(g6 +(I0 +tp37807 +g8 +tp37808 +Rp37809 +(I1 +(I7 +tp37810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37811 +tp37812 +bsa(dp37813 +g4 +g5 +(g6 +(I0 +tp37814 +g8 +tp37815 +Rp37816 +(I1 +(I7 +tp37817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37818 +tp37819 +bsa(dp37820 +g4 +g5 +(g6 +(I0 +tp37821 +g8 +tp37822 +Rp37823 +(I1 +(I7 +tp37824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37825 +tp37826 +bsa(dp37827 +g4 +g5 +(g6 +(I0 +tp37828 +g8 +tp37829 +Rp37830 +(I1 +(I7 +tp37831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37832 +tp37833 +bsa(dp37834 +g4 +g5 +(g6 +(I0 +tp37835 +g8 +tp37836 +Rp37837 +(I1 +(I7 +tp37838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37839 +tp37840 +bsa(dp37841 +g4 +g5 +(g6 +(I0 +tp37842 +g8 +tp37843 +Rp37844 +(I1 +(I7 +tp37845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37846 +tp37847 +bsa(dp37848 +g4 +g5 +(g6 +(I0 +tp37849 +g8 +tp37850 +Rp37851 +(I1 +(I7 +tp37852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37853 +tp37854 +bsa(dp37855 +g4 +g5 +(g6 +(I0 +tp37856 +g8 +tp37857 +Rp37858 +(I1 +(I7 +tp37859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37860 +tp37861 +bsa(dp37862 +g4 +g5 +(g6 +(I0 +tp37863 +g8 +tp37864 +Rp37865 +(I1 +(I7 +tp37866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37867 +tp37868 +bsa(dp37869 +g4 +g5 +(g6 +(I0 +tp37870 +g8 +tp37871 +Rp37872 +(I1 +(I7 +tp37873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37874 +tp37875 +bsa(dp37876 +g4 +g5 +(g6 +(I0 +tp37877 +g8 +tp37878 +Rp37879 +(I1 +(I7 +tp37880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37881 +tp37882 +bsa(dp37883 +g4 +g5 +(g6 +(I0 +tp37884 +g8 +tp37885 +Rp37886 +(I1 +(I7 +tp37887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37888 +tp37889 +bsa(dp37890 +g4 +g5 +(g6 +(I0 +tp37891 +g8 +tp37892 +Rp37893 +(I1 +(I7 +tp37894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37895 +tp37896 +bsa(dp37897 +g4 +g5 +(g6 +(I0 +tp37898 +g8 +tp37899 +Rp37900 +(I1 +(I7 +tp37901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37902 +tp37903 +bsa(dp37904 +g4 +g5 +(g6 +(I0 +tp37905 +g8 +tp37906 +Rp37907 +(I1 +(I7 +tp37908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37909 +tp37910 +bsa(dp37911 +g4 +g5 +(g6 +(I0 +tp37912 +g8 +tp37913 +Rp37914 +(I1 +(I7 +tp37915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37916 +tp37917 +bsa(dp37918 +g4 +g5 +(g6 +(I0 +tp37919 +g8 +tp37920 +Rp37921 +(I1 +(I7 +tp37922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37923 +tp37924 +bsa(dp37925 +g4 +g5 +(g6 +(I0 +tp37926 +g8 +tp37927 +Rp37928 +(I1 +(I7 +tp37929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37930 +tp37931 +bsa(dp37932 +g4 +g5 +(g6 +(I0 +tp37933 +g8 +tp37934 +Rp37935 +(I1 +(I7 +tp37936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37937 +tp37938 +bsa(dp37939 +g4 +g5 +(g6 +(I0 +tp37940 +g8 +tp37941 +Rp37942 +(I1 +(I7 +tp37943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37944 +tp37945 +bsa(dp37946 +g4 +g5 +(g6 +(I0 +tp37947 +g8 +tp37948 +Rp37949 +(I1 +(I7 +tp37950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37951 +tp37952 +bsa(dp37953 +g4 +g5 +(g6 +(I0 +tp37954 +g8 +tp37955 +Rp37956 +(I1 +(I7 +tp37957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37958 +tp37959 +bsa(dp37960 +g4 +g5 +(g6 +(I0 +tp37961 +g8 +tp37962 +Rp37963 +(I1 +(I7 +tp37964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37965 +tp37966 +bsa(dp37967 +g4 +g5 +(g6 +(I0 +tp37968 +g8 +tp37969 +Rp37970 +(I1 +(I7 +tp37971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p37972 +tp37973 +bsa(dp37974 +g4 +g5 +(g6 +(I0 +tp37975 +g8 +tp37976 +Rp37977 +(I1 +(I7 +tp37978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p37979 +tp37980 +bsa(dp37981 +g4 +g5 +(g6 +(I0 +tp37982 +g8 +tp37983 +Rp37984 +(I1 +(I7 +tp37985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37986 +tp37987 +bsa(dp37988 +g4 +g5 +(g6 +(I0 +tp37989 +g8 +tp37990 +Rp37991 +(I1 +(I7 +tp37992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p37993 +tp37994 +bsa(dp37995 +g4 +g5 +(g6 +(I0 +tp37996 +g8 +tp37997 +Rp37998 +(I1 +(I7 +tp37999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38000 +tp38001 +bsa(dp38002 +g4 +g5 +(g6 +(I0 +tp38003 +g8 +tp38004 +Rp38005 +(I1 +(I7 +tp38006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38007 +tp38008 +bsa(dp38009 +g4 +g5 +(g6 +(I0 +tp38010 +g8 +tp38011 +Rp38012 +(I1 +(I7 +tp38013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38014 +tp38015 +bsa(dp38016 +g4 +g5 +(g6 +(I0 +tp38017 +g8 +tp38018 +Rp38019 +(I1 +(I7 +tp38020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38021 +tp38022 +bsa(dp38023 +g4 +g5 +(g6 +(I0 +tp38024 +g8 +tp38025 +Rp38026 +(I1 +(I7 +tp38027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38028 +tp38029 +bsa(dp38030 +g4 +g5 +(g6 +(I0 +tp38031 +g8 +tp38032 +Rp38033 +(I1 +(I7 +tp38034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38035 +tp38036 +bsa(dp38037 +g4 +g5 +(g6 +(I0 +tp38038 +g8 +tp38039 +Rp38040 +(I1 +(I7 +tp38041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38042 +tp38043 +bsa(dp38044 +g4 +g5 +(g6 +(I0 +tp38045 +g8 +tp38046 +Rp38047 +(I1 +(I7 +tp38048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38049 +tp38050 +bsa(dp38051 +g4 +g5 +(g6 +(I0 +tp38052 +g8 +tp38053 +Rp38054 +(I1 +(I7 +tp38055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38056 +tp38057 +bsa(dp38058 +g4 +g5 +(g6 +(I0 +tp38059 +g8 +tp38060 +Rp38061 +(I1 +(I7 +tp38062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38063 +tp38064 +bsa(dp38065 +g4 +g5 +(g6 +(I0 +tp38066 +g8 +tp38067 +Rp38068 +(I1 +(I7 +tp38069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38070 +tp38071 +bsa(dp38072 +g4 +g5 +(g6 +(I0 +tp38073 +g8 +tp38074 +Rp38075 +(I1 +(I7 +tp38076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38077 +tp38078 +bsa(dp38079 +g4 +g5 +(g6 +(I0 +tp38080 +g8 +tp38081 +Rp38082 +(I1 +(I7 +tp38083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38084 +tp38085 +bsa(dp38086 +g4 +g5 +(g6 +(I0 +tp38087 +g8 +tp38088 +Rp38089 +(I1 +(I7 +tp38090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38091 +tp38092 +bsa(dp38093 +g4 +g5 +(g6 +(I0 +tp38094 +g8 +tp38095 +Rp38096 +(I1 +(I7 +tp38097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38098 +tp38099 +bsa(dp38100 +g4 +g5 +(g6 +(I0 +tp38101 +g8 +tp38102 +Rp38103 +(I1 +(I7 +tp38104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38105 +tp38106 +bsa(dp38107 +g4 +g5 +(g6 +(I0 +tp38108 +g8 +tp38109 +Rp38110 +(I1 +(I7 +tp38111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38112 +tp38113 +bsa(dp38114 +g4 +g5 +(g6 +(I0 +tp38115 +g8 +tp38116 +Rp38117 +(I1 +(I7 +tp38118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38119 +tp38120 +bsa(dp38121 +g4 +g5 +(g6 +(I0 +tp38122 +g8 +tp38123 +Rp38124 +(I1 +(I7 +tp38125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38126 +tp38127 +bsa(dp38128 +g4 +g5 +(g6 +(I0 +tp38129 +g8 +tp38130 +Rp38131 +(I1 +(I7 +tp38132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38133 +tp38134 +bsa(dp38135 +g4 +g5 +(g6 +(I0 +tp38136 +g8 +tp38137 +Rp38138 +(I1 +(I7 +tp38139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38140 +tp38141 +bsa(dp38142 +g4 +g5 +(g6 +(I0 +tp38143 +g8 +tp38144 +Rp38145 +(I1 +(I7 +tp38146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38147 +tp38148 +bsa(dp38149 +g4 +g5 +(g6 +(I0 +tp38150 +g8 +tp38151 +Rp38152 +(I1 +(I7 +tp38153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38154 +tp38155 +bsa(dp38156 +g4 +g5 +(g6 +(I0 +tp38157 +g8 +tp38158 +Rp38159 +(I1 +(I7 +tp38160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38161 +tp38162 +bsa(dp38163 +g4 +g5 +(g6 +(I0 +tp38164 +g8 +tp38165 +Rp38166 +(I1 +(I7 +tp38167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38168 +tp38169 +bsa(dp38170 +g4 +g5 +(g6 +(I0 +tp38171 +g8 +tp38172 +Rp38173 +(I1 +(I7 +tp38174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38175 +tp38176 +bsa(dp38177 +g4 +g5 +(g6 +(I0 +tp38178 +g8 +tp38179 +Rp38180 +(I1 +(I7 +tp38181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38182 +tp38183 +bsa(dp38184 +g4 +g5 +(g6 +(I0 +tp38185 +g8 +tp38186 +Rp38187 +(I1 +(I7 +tp38188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38189 +tp38190 +bsa(dp38191 +g4 +g5 +(g6 +(I0 +tp38192 +g8 +tp38193 +Rp38194 +(I1 +(I7 +tp38195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38196 +tp38197 +bsa(dp38198 +g4 +g5 +(g6 +(I0 +tp38199 +g8 +tp38200 +Rp38201 +(I1 +(I7 +tp38202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38203 +tp38204 +bsa(dp38205 +g4 +g5 +(g6 +(I0 +tp38206 +g8 +tp38207 +Rp38208 +(I1 +(I7 +tp38209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38210 +tp38211 +bsa(dp38212 +g4 +g5 +(g6 +(I0 +tp38213 +g8 +tp38214 +Rp38215 +(I1 +(I7 +tp38216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38217 +tp38218 +bsa(dp38219 +g4 +g5 +(g6 +(I0 +tp38220 +g8 +tp38221 +Rp38222 +(I1 +(I7 +tp38223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38224 +tp38225 +bsa(dp38226 +g4 +g5 +(g6 +(I0 +tp38227 +g8 +tp38228 +Rp38229 +(I1 +(I7 +tp38230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38231 +tp38232 +bsa(dp38233 +g4 +g5 +(g6 +(I0 +tp38234 +g8 +tp38235 +Rp38236 +(I1 +(I7 +tp38237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38238 +tp38239 +bsa(dp38240 +g4 +g5 +(g6 +(I0 +tp38241 +g8 +tp38242 +Rp38243 +(I1 +(I7 +tp38244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38245 +tp38246 +bsa(dp38247 +g4 +g5 +(g6 +(I0 +tp38248 +g8 +tp38249 +Rp38250 +(I1 +(I7 +tp38251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38252 +tp38253 +bsa(dp38254 +g4 +g5 +(g6 +(I0 +tp38255 +g8 +tp38256 +Rp38257 +(I1 +(I7 +tp38258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38259 +tp38260 +bsa(dp38261 +g4 +g5 +(g6 +(I0 +tp38262 +g8 +tp38263 +Rp38264 +(I1 +(I7 +tp38265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38266 +tp38267 +bsa(dp38268 +g4 +g5 +(g6 +(I0 +tp38269 +g8 +tp38270 +Rp38271 +(I1 +(I7 +tp38272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38273 +tp38274 +bsa(dp38275 +g4 +g5 +(g6 +(I0 +tp38276 +g8 +tp38277 +Rp38278 +(I1 +(I7 +tp38279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38280 +tp38281 +bsa(dp38282 +g4 +g5 +(g6 +(I0 +tp38283 +g8 +tp38284 +Rp38285 +(I1 +(I7 +tp38286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38287 +tp38288 +bsa(dp38289 +g4 +g5 +(g6 +(I0 +tp38290 +g8 +tp38291 +Rp38292 +(I1 +(I7 +tp38293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38294 +tp38295 +bsa(dp38296 +g4 +g5 +(g6 +(I0 +tp38297 +g8 +tp38298 +Rp38299 +(I1 +(I7 +tp38300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38301 +tp38302 +bsa(dp38303 +g4 +g5 +(g6 +(I0 +tp38304 +g8 +tp38305 +Rp38306 +(I1 +(I7 +tp38307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38308 +tp38309 +bsa(dp38310 +g4 +g5 +(g6 +(I0 +tp38311 +g8 +tp38312 +Rp38313 +(I1 +(I7 +tp38314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38315 +tp38316 +bsa(dp38317 +g4 +g5 +(g6 +(I0 +tp38318 +g8 +tp38319 +Rp38320 +(I1 +(I7 +tp38321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38322 +tp38323 +bsa(dp38324 +g4 +g5 +(g6 +(I0 +tp38325 +g8 +tp38326 +Rp38327 +(I1 +(I7 +tp38328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38329 +tp38330 +bsa(dp38331 +g4 +g5 +(g6 +(I0 +tp38332 +g8 +tp38333 +Rp38334 +(I1 +(I7 +tp38335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38336 +tp38337 +bsa(dp38338 +g4 +g5 +(g6 +(I0 +tp38339 +g8 +tp38340 +Rp38341 +(I1 +(I7 +tp38342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38343 +tp38344 +bsa(dp38345 +g4 +g5 +(g6 +(I0 +tp38346 +g8 +tp38347 +Rp38348 +(I1 +(I7 +tp38349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38350 +tp38351 +bsa(dp38352 +g4 +g5 +(g6 +(I0 +tp38353 +g8 +tp38354 +Rp38355 +(I1 +(I7 +tp38356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38357 +tp38358 +bsa(dp38359 +g4 +g5 +(g6 +(I0 +tp38360 +g8 +tp38361 +Rp38362 +(I1 +(I7 +tp38363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38364 +tp38365 +bsa(dp38366 +g4 +g5 +(g6 +(I0 +tp38367 +g8 +tp38368 +Rp38369 +(I1 +(I7 +tp38370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38371 +tp38372 +bsa(dp38373 +g4 +g5 +(g6 +(I0 +tp38374 +g8 +tp38375 +Rp38376 +(I1 +(I7 +tp38377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38378 +tp38379 +bsa(dp38380 +g4 +g5 +(g6 +(I0 +tp38381 +g8 +tp38382 +Rp38383 +(I1 +(I7 +tp38384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38385 +tp38386 +bsa(dp38387 +g4 +g5 +(g6 +(I0 +tp38388 +g8 +tp38389 +Rp38390 +(I1 +(I7 +tp38391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38392 +tp38393 +bsa(dp38394 +g4 +g5 +(g6 +(I0 +tp38395 +g8 +tp38396 +Rp38397 +(I1 +(I7 +tp38398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38399 +tp38400 +bsa(dp38401 +g4 +g5 +(g6 +(I0 +tp38402 +g8 +tp38403 +Rp38404 +(I1 +(I7 +tp38405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38406 +tp38407 +bsa(dp38408 +g4 +g5 +(g6 +(I0 +tp38409 +g8 +tp38410 +Rp38411 +(I1 +(I7 +tp38412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38413 +tp38414 +bsa(dp38415 +g4 +g5 +(g6 +(I0 +tp38416 +g8 +tp38417 +Rp38418 +(I1 +(I7 +tp38419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38420 +tp38421 +bsa(dp38422 +g4 +g5 +(g6 +(I0 +tp38423 +g8 +tp38424 +Rp38425 +(I1 +(I7 +tp38426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38427 +tp38428 +bsa(dp38429 +g4 +g5 +(g6 +(I0 +tp38430 +g8 +tp38431 +Rp38432 +(I1 +(I7 +tp38433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38434 +tp38435 +bsa(dp38436 +g4 +g5 +(g6 +(I0 +tp38437 +g8 +tp38438 +Rp38439 +(I1 +(I7 +tp38440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38441 +tp38442 +bsa(dp38443 +g4 +g5 +(g6 +(I0 +tp38444 +g8 +tp38445 +Rp38446 +(I1 +(I7 +tp38447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38448 +tp38449 +bsa(dp38450 +g4 +g5 +(g6 +(I0 +tp38451 +g8 +tp38452 +Rp38453 +(I1 +(I7 +tp38454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38455 +tp38456 +bsa(dp38457 +g4 +g5 +(g6 +(I0 +tp38458 +g8 +tp38459 +Rp38460 +(I1 +(I7 +tp38461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38462 +tp38463 +bsa(dp38464 +g4 +g5 +(g6 +(I0 +tp38465 +g8 +tp38466 +Rp38467 +(I1 +(I7 +tp38468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38469 +tp38470 +bsa(dp38471 +g4 +g5 +(g6 +(I0 +tp38472 +g8 +tp38473 +Rp38474 +(I1 +(I7 +tp38475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38476 +tp38477 +bsa(dp38478 +g4 +g5 +(g6 +(I0 +tp38479 +g8 +tp38480 +Rp38481 +(I1 +(I7 +tp38482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38483 +tp38484 +bsa(dp38485 +g4 +g5 +(g6 +(I0 +tp38486 +g8 +tp38487 +Rp38488 +(I1 +(I7 +tp38489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38490 +tp38491 +bsa(dp38492 +g4 +g5 +(g6 +(I0 +tp38493 +g8 +tp38494 +Rp38495 +(I1 +(I7 +tp38496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38497 +tp38498 +bsa(dp38499 +g4 +g5 +(g6 +(I0 +tp38500 +g8 +tp38501 +Rp38502 +(I1 +(I7 +tp38503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38504 +tp38505 +bsa(dp38506 +g4 +g5 +(g6 +(I0 +tp38507 +g8 +tp38508 +Rp38509 +(I1 +(I7 +tp38510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38511 +tp38512 +bsa(dp38513 +g4 +g5 +(g6 +(I0 +tp38514 +g8 +tp38515 +Rp38516 +(I1 +(I7 +tp38517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38518 +tp38519 +bsa(dp38520 +g4 +g5 +(g6 +(I0 +tp38521 +g8 +tp38522 +Rp38523 +(I1 +(I7 +tp38524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38525 +tp38526 +bsa(dp38527 +g4 +g5 +(g6 +(I0 +tp38528 +g8 +tp38529 +Rp38530 +(I1 +(I7 +tp38531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38532 +tp38533 +bsa(dp38534 +g4 +g5 +(g6 +(I0 +tp38535 +g8 +tp38536 +Rp38537 +(I1 +(I7 +tp38538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38539 +tp38540 +bsa(dp38541 +g4 +g5 +(g6 +(I0 +tp38542 +g8 +tp38543 +Rp38544 +(I1 +(I7 +tp38545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38546 +tp38547 +bsa(dp38548 +g4 +g5 +(g6 +(I0 +tp38549 +g8 +tp38550 +Rp38551 +(I1 +(I7 +tp38552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38553 +tp38554 +bsa(dp38555 +g4 +g5 +(g6 +(I0 +tp38556 +g8 +tp38557 +Rp38558 +(I1 +(I7 +tp38559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38560 +tp38561 +bsa(dp38562 +g4 +g5 +(g6 +(I0 +tp38563 +g8 +tp38564 +Rp38565 +(I1 +(I7 +tp38566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38567 +tp38568 +bsa(dp38569 +g4 +g5 +(g6 +(I0 +tp38570 +g8 +tp38571 +Rp38572 +(I1 +(I7 +tp38573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38574 +tp38575 +bsa(dp38576 +g4 +g5 +(g6 +(I0 +tp38577 +g8 +tp38578 +Rp38579 +(I1 +(I7 +tp38580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38581 +tp38582 +bsa(dp38583 +g4 +g5 +(g6 +(I0 +tp38584 +g8 +tp38585 +Rp38586 +(I1 +(I7 +tp38587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38588 +tp38589 +bsa(dp38590 +g4 +g5 +(g6 +(I0 +tp38591 +g8 +tp38592 +Rp38593 +(I1 +(I7 +tp38594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38595 +tp38596 +bsa(dp38597 +g4 +g5 +(g6 +(I0 +tp38598 +g8 +tp38599 +Rp38600 +(I1 +(I7 +tp38601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38602 +tp38603 +bsa(dp38604 +g4 +g5 +(g6 +(I0 +tp38605 +g8 +tp38606 +Rp38607 +(I1 +(I7 +tp38608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38609 +tp38610 +bsa(dp38611 +g4 +g5 +(g6 +(I0 +tp38612 +g8 +tp38613 +Rp38614 +(I1 +(I7 +tp38615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38616 +tp38617 +bsa(dp38618 +g4 +g5 +(g6 +(I0 +tp38619 +g8 +tp38620 +Rp38621 +(I1 +(I7 +tp38622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38623 +tp38624 +bsa(dp38625 +g4 +g5 +(g6 +(I0 +tp38626 +g8 +tp38627 +Rp38628 +(I1 +(I7 +tp38629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38630 +tp38631 +bsa(dp38632 +g4 +g5 +(g6 +(I0 +tp38633 +g8 +tp38634 +Rp38635 +(I1 +(I7 +tp38636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38637 +tp38638 +bsa(dp38639 +g4 +g5 +(g6 +(I0 +tp38640 +g8 +tp38641 +Rp38642 +(I1 +(I7 +tp38643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38644 +tp38645 +bsa(dp38646 +g4 +g5 +(g6 +(I0 +tp38647 +g8 +tp38648 +Rp38649 +(I1 +(I7 +tp38650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38651 +tp38652 +bsa(dp38653 +g4 +g5 +(g6 +(I0 +tp38654 +g8 +tp38655 +Rp38656 +(I1 +(I7 +tp38657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38658 +tp38659 +bsa(dp38660 +g4 +g5 +(g6 +(I0 +tp38661 +g8 +tp38662 +Rp38663 +(I1 +(I7 +tp38664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38665 +tp38666 +bsa(dp38667 +g4 +g5 +(g6 +(I0 +tp38668 +g8 +tp38669 +Rp38670 +(I1 +(I7 +tp38671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38672 +tp38673 +bsa(dp38674 +g4 +g5 +(g6 +(I0 +tp38675 +g8 +tp38676 +Rp38677 +(I1 +(I7 +tp38678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38679 +tp38680 +bsa(dp38681 +g4 +g5 +(g6 +(I0 +tp38682 +g8 +tp38683 +Rp38684 +(I1 +(I7 +tp38685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38686 +tp38687 +bsa(dp38688 +g4 +g5 +(g6 +(I0 +tp38689 +g8 +tp38690 +Rp38691 +(I1 +(I7 +tp38692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38693 +tp38694 +bsa(dp38695 +g4 +g5 +(g6 +(I0 +tp38696 +g8 +tp38697 +Rp38698 +(I1 +(I7 +tp38699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38700 +tp38701 +bsa(dp38702 +g4 +g5 +(g6 +(I0 +tp38703 +g8 +tp38704 +Rp38705 +(I1 +(I7 +tp38706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38707 +tp38708 +bsa(dp38709 +g4 +g5 +(g6 +(I0 +tp38710 +g8 +tp38711 +Rp38712 +(I1 +(I7 +tp38713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38714 +tp38715 +bsa(dp38716 +g4 +g5 +(g6 +(I0 +tp38717 +g8 +tp38718 +Rp38719 +(I1 +(I7 +tp38720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38721 +tp38722 +bsa(dp38723 +g4 +g5 +(g6 +(I0 +tp38724 +g8 +tp38725 +Rp38726 +(I1 +(I7 +tp38727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38728 +tp38729 +bsa(dp38730 +g4 +g5 +(g6 +(I0 +tp38731 +g8 +tp38732 +Rp38733 +(I1 +(I7 +tp38734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38735 +tp38736 +bsa(dp38737 +g4 +g5 +(g6 +(I0 +tp38738 +g8 +tp38739 +Rp38740 +(I1 +(I7 +tp38741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38742 +tp38743 +bsa(dp38744 +g4 +g5 +(g6 +(I0 +tp38745 +g8 +tp38746 +Rp38747 +(I1 +(I7 +tp38748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38749 +tp38750 +bsa(dp38751 +g4 +g5 +(g6 +(I0 +tp38752 +g8 +tp38753 +Rp38754 +(I1 +(I7 +tp38755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38756 +tp38757 +bsa(dp38758 +g4 +g5 +(g6 +(I0 +tp38759 +g8 +tp38760 +Rp38761 +(I1 +(I7 +tp38762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38763 +tp38764 +bsa(dp38765 +g4 +g5 +(g6 +(I0 +tp38766 +g8 +tp38767 +Rp38768 +(I1 +(I7 +tp38769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38770 +tp38771 +bsa(dp38772 +g4 +g5 +(g6 +(I0 +tp38773 +g8 +tp38774 +Rp38775 +(I1 +(I7 +tp38776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38777 +tp38778 +bsa(dp38779 +g4 +g5 +(g6 +(I0 +tp38780 +g8 +tp38781 +Rp38782 +(I1 +(I7 +tp38783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38784 +tp38785 +bsa(dp38786 +g4 +g5 +(g6 +(I0 +tp38787 +g8 +tp38788 +Rp38789 +(I1 +(I7 +tp38790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38791 +tp38792 +bsa(dp38793 +g4 +g5 +(g6 +(I0 +tp38794 +g8 +tp38795 +Rp38796 +(I1 +(I7 +tp38797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38798 +tp38799 +bsa(dp38800 +g4 +g5 +(g6 +(I0 +tp38801 +g8 +tp38802 +Rp38803 +(I1 +(I7 +tp38804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38805 +tp38806 +bsa(dp38807 +g4 +g5 +(g6 +(I0 +tp38808 +g8 +tp38809 +Rp38810 +(I1 +(I7 +tp38811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38812 +tp38813 +bsa(dp38814 +g4 +g5 +(g6 +(I0 +tp38815 +g8 +tp38816 +Rp38817 +(I1 +(I7 +tp38818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38819 +tp38820 +bsa(dp38821 +g4 +g5 +(g6 +(I0 +tp38822 +g8 +tp38823 +Rp38824 +(I1 +(I7 +tp38825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38826 +tp38827 +bsa(dp38828 +g4 +g5 +(g6 +(I0 +tp38829 +g8 +tp38830 +Rp38831 +(I1 +(I7 +tp38832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38833 +tp38834 +bsa(dp38835 +g4 +g5 +(g6 +(I0 +tp38836 +g8 +tp38837 +Rp38838 +(I1 +(I7 +tp38839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38840 +tp38841 +bsa(dp38842 +g4 +g5 +(g6 +(I0 +tp38843 +g8 +tp38844 +Rp38845 +(I1 +(I7 +tp38846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38847 +tp38848 +bsa(dp38849 +g4 +g5 +(g6 +(I0 +tp38850 +g8 +tp38851 +Rp38852 +(I1 +(I7 +tp38853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38854 +tp38855 +bsa(dp38856 +g4 +g5 +(g6 +(I0 +tp38857 +g8 +tp38858 +Rp38859 +(I1 +(I7 +tp38860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38861 +tp38862 +bsa(dp38863 +g4 +g5 +(g6 +(I0 +tp38864 +g8 +tp38865 +Rp38866 +(I1 +(I7 +tp38867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38868 +tp38869 +bsa(dp38870 +g4 +g5 +(g6 +(I0 +tp38871 +g8 +tp38872 +Rp38873 +(I1 +(I7 +tp38874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38875 +tp38876 +bsa(dp38877 +g4 +g5 +(g6 +(I0 +tp38878 +g8 +tp38879 +Rp38880 +(I1 +(I7 +tp38881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38882 +tp38883 +bsa(dp38884 +g4 +g5 +(g6 +(I0 +tp38885 +g8 +tp38886 +Rp38887 +(I1 +(I7 +tp38888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38889 +tp38890 +bsa(dp38891 +g4 +g5 +(g6 +(I0 +tp38892 +g8 +tp38893 +Rp38894 +(I1 +(I7 +tp38895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38896 +tp38897 +bsa(dp38898 +g4 +g5 +(g6 +(I0 +tp38899 +g8 +tp38900 +Rp38901 +(I1 +(I7 +tp38902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38903 +tp38904 +bsa(dp38905 +g4 +g5 +(g6 +(I0 +tp38906 +g8 +tp38907 +Rp38908 +(I1 +(I7 +tp38909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38910 +tp38911 +bsa(dp38912 +g4 +g5 +(g6 +(I0 +tp38913 +g8 +tp38914 +Rp38915 +(I1 +(I7 +tp38916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38917 +tp38918 +bsa(dp38919 +g4 +g5 +(g6 +(I0 +tp38920 +g8 +tp38921 +Rp38922 +(I1 +(I7 +tp38923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38924 +tp38925 +bsa(dp38926 +g4 +g5 +(g6 +(I0 +tp38927 +g8 +tp38928 +Rp38929 +(I1 +(I7 +tp38930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38931 +tp38932 +bsa(dp38933 +g4 +g5 +(g6 +(I0 +tp38934 +g8 +tp38935 +Rp38936 +(I1 +(I7 +tp38937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38938 +tp38939 +bsa(dp38940 +g4 +g5 +(g6 +(I0 +tp38941 +g8 +tp38942 +Rp38943 +(I1 +(I7 +tp38944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38945 +tp38946 +bsa(dp38947 +g4 +g5 +(g6 +(I0 +tp38948 +g8 +tp38949 +Rp38950 +(I1 +(I7 +tp38951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p38952 +tp38953 +bsa(dp38954 +g4 +g5 +(g6 +(I0 +tp38955 +g8 +tp38956 +Rp38957 +(I1 +(I7 +tp38958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p38959 +tp38960 +bsa(dp38961 +g4 +g5 +(g6 +(I0 +tp38962 +g8 +tp38963 +Rp38964 +(I1 +(I7 +tp38965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38966 +tp38967 +bsa(dp38968 +g4 +g5 +(g6 +(I0 +tp38969 +g8 +tp38970 +Rp38971 +(I1 +(I7 +tp38972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38973 +tp38974 +bsa(dp38975 +g4 +g5 +(g6 +(I0 +tp38976 +g8 +tp38977 +Rp38978 +(I1 +(I7 +tp38979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38980 +tp38981 +bsa(dp38982 +g4 +g5 +(g6 +(I0 +tp38983 +g8 +tp38984 +Rp38985 +(I1 +(I7 +tp38986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38987 +tp38988 +bsa(dp38989 +g4 +g5 +(g6 +(I0 +tp38990 +g8 +tp38991 +Rp38992 +(I1 +(I7 +tp38993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p38994 +tp38995 +bsa(dp38996 +g4 +g5 +(g6 +(I0 +tp38997 +g8 +tp38998 +Rp38999 +(I1 +(I7 +tp39000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39001 +tp39002 +bsa(dp39003 +g4 +g5 +(g6 +(I0 +tp39004 +g8 +tp39005 +Rp39006 +(I1 +(I7 +tp39007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39008 +tp39009 +bsa(dp39010 +g4 +g5 +(g6 +(I0 +tp39011 +g8 +tp39012 +Rp39013 +(I1 +(I7 +tp39014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39015 +tp39016 +bsa(dp39017 +g4 +g5 +(g6 +(I0 +tp39018 +g8 +tp39019 +Rp39020 +(I1 +(I7 +tp39021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39022 +tp39023 +bsa(dp39024 +g4 +g5 +(g6 +(I0 +tp39025 +g8 +tp39026 +Rp39027 +(I1 +(I7 +tp39028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39029 +tp39030 +bsa(dp39031 +g4 +g5 +(g6 +(I0 +tp39032 +g8 +tp39033 +Rp39034 +(I1 +(I7 +tp39035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39036 +tp39037 +bsa(dp39038 +g4 +g5 +(g6 +(I0 +tp39039 +g8 +tp39040 +Rp39041 +(I1 +(I7 +tp39042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39043 +tp39044 +bsa(dp39045 +g4 +g5 +(g6 +(I0 +tp39046 +g8 +tp39047 +Rp39048 +(I1 +(I7 +tp39049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39050 +tp39051 +bsa(dp39052 +g4 +g5 +(g6 +(I0 +tp39053 +g8 +tp39054 +Rp39055 +(I1 +(I7 +tp39056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39057 +tp39058 +bsa(dp39059 +g4 +g5 +(g6 +(I0 +tp39060 +g8 +tp39061 +Rp39062 +(I1 +(I7 +tp39063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39064 +tp39065 +bsa(dp39066 +g4 +g5 +(g6 +(I0 +tp39067 +g8 +tp39068 +Rp39069 +(I1 +(I7 +tp39070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39071 +tp39072 +bsa(dp39073 +g4 +g5 +(g6 +(I0 +tp39074 +g8 +tp39075 +Rp39076 +(I1 +(I7 +tp39077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39078 +tp39079 +bsa(dp39080 +g4 +g5 +(g6 +(I0 +tp39081 +g8 +tp39082 +Rp39083 +(I1 +(I7 +tp39084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39085 +tp39086 +bsa(dp39087 +g4 +g5 +(g6 +(I0 +tp39088 +g8 +tp39089 +Rp39090 +(I1 +(I7 +tp39091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39092 +tp39093 +bsa(dp39094 +g4 +g5 +(g6 +(I0 +tp39095 +g8 +tp39096 +Rp39097 +(I1 +(I7 +tp39098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39099 +tp39100 +bsa(dp39101 +g4 +g5 +(g6 +(I0 +tp39102 +g8 +tp39103 +Rp39104 +(I1 +(I7 +tp39105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39106 +tp39107 +bsa(dp39108 +g4 +g5 +(g6 +(I0 +tp39109 +g8 +tp39110 +Rp39111 +(I1 +(I7 +tp39112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39113 +tp39114 +bsa(dp39115 +g4 +g5 +(g6 +(I0 +tp39116 +g8 +tp39117 +Rp39118 +(I1 +(I7 +tp39119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39120 +tp39121 +bsa(dp39122 +g4 +g5 +(g6 +(I0 +tp39123 +g8 +tp39124 +Rp39125 +(I1 +(I7 +tp39126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39127 +tp39128 +bsa(dp39129 +g4 +g5 +(g6 +(I0 +tp39130 +g8 +tp39131 +Rp39132 +(I1 +(I7 +tp39133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39134 +tp39135 +bsa(dp39136 +g4 +g5 +(g6 +(I0 +tp39137 +g8 +tp39138 +Rp39139 +(I1 +(I7 +tp39140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39141 +tp39142 +bsa(dp39143 +g4 +g5 +(g6 +(I0 +tp39144 +g8 +tp39145 +Rp39146 +(I1 +(I7 +tp39147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39148 +tp39149 +bsa(dp39150 +g4 +g5 +(g6 +(I0 +tp39151 +g8 +tp39152 +Rp39153 +(I1 +(I7 +tp39154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39155 +tp39156 +bsa(dp39157 +g4 +g5 +(g6 +(I0 +tp39158 +g8 +tp39159 +Rp39160 +(I1 +(I7 +tp39161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39162 +tp39163 +bsa(dp39164 +g4 +g5 +(g6 +(I0 +tp39165 +g8 +tp39166 +Rp39167 +(I1 +(I7 +tp39168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39169 +tp39170 +bsa(dp39171 +g4 +g5 +(g6 +(I0 +tp39172 +g8 +tp39173 +Rp39174 +(I1 +(I7 +tp39175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39176 +tp39177 +bsa(dp39178 +g4 +g5 +(g6 +(I0 +tp39179 +g8 +tp39180 +Rp39181 +(I1 +(I7 +tp39182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39183 +tp39184 +bsa(dp39185 +g4 +g5 +(g6 +(I0 +tp39186 +g8 +tp39187 +Rp39188 +(I1 +(I7 +tp39189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39190 +tp39191 +bsa(dp39192 +g4 +g5 +(g6 +(I0 +tp39193 +g8 +tp39194 +Rp39195 +(I1 +(I7 +tp39196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39197 +tp39198 +bsa(dp39199 +g4 +g5 +(g6 +(I0 +tp39200 +g8 +tp39201 +Rp39202 +(I1 +(I7 +tp39203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39204 +tp39205 +bsa(dp39206 +g4 +g5 +(g6 +(I0 +tp39207 +g8 +tp39208 +Rp39209 +(I1 +(I7 +tp39210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39211 +tp39212 +bsa(dp39213 +g4 +g5 +(g6 +(I0 +tp39214 +g8 +tp39215 +Rp39216 +(I1 +(I7 +tp39217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39218 +tp39219 +bsa(dp39220 +g4 +g5 +(g6 +(I0 +tp39221 +g8 +tp39222 +Rp39223 +(I1 +(I7 +tp39224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39225 +tp39226 +bsa(dp39227 +g4 +g5 +(g6 +(I0 +tp39228 +g8 +tp39229 +Rp39230 +(I1 +(I7 +tp39231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39232 +tp39233 +bsa(dp39234 +g4 +g5 +(g6 +(I0 +tp39235 +g8 +tp39236 +Rp39237 +(I1 +(I7 +tp39238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39239 +tp39240 +bsa(dp39241 +g4 +g5 +(g6 +(I0 +tp39242 +g8 +tp39243 +Rp39244 +(I1 +(I7 +tp39245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39246 +tp39247 +bsa(dp39248 +g4 +g5 +(g6 +(I0 +tp39249 +g8 +tp39250 +Rp39251 +(I1 +(I7 +tp39252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39253 +tp39254 +bsa(dp39255 +g4 +g5 +(g6 +(I0 +tp39256 +g8 +tp39257 +Rp39258 +(I1 +(I7 +tp39259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39260 +tp39261 +bsa(dp39262 +g4 +g5 +(g6 +(I0 +tp39263 +g8 +tp39264 +Rp39265 +(I1 +(I7 +tp39266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39267 +tp39268 +bsa(dp39269 +g4 +g5 +(g6 +(I0 +tp39270 +g8 +tp39271 +Rp39272 +(I1 +(I7 +tp39273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39274 +tp39275 +bsa(dp39276 +g4 +g5 +(g6 +(I0 +tp39277 +g8 +tp39278 +Rp39279 +(I1 +(I7 +tp39280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39281 +tp39282 +bsa(dp39283 +g4 +g5 +(g6 +(I0 +tp39284 +g8 +tp39285 +Rp39286 +(I1 +(I7 +tp39287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39288 +tp39289 +bsa(dp39290 +g4 +g5 +(g6 +(I0 +tp39291 +g8 +tp39292 +Rp39293 +(I1 +(I7 +tp39294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39295 +tp39296 +bsa(dp39297 +g4 +g5 +(g6 +(I0 +tp39298 +g8 +tp39299 +Rp39300 +(I1 +(I7 +tp39301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39302 +tp39303 +bsa(dp39304 +g4 +g5 +(g6 +(I0 +tp39305 +g8 +tp39306 +Rp39307 +(I1 +(I7 +tp39308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39309 +tp39310 +bsa(dp39311 +g4 +g5 +(g6 +(I0 +tp39312 +g8 +tp39313 +Rp39314 +(I1 +(I7 +tp39315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39316 +tp39317 +bsa(dp39318 +g4 +g5 +(g6 +(I0 +tp39319 +g8 +tp39320 +Rp39321 +(I1 +(I7 +tp39322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39323 +tp39324 +bsa(dp39325 +g4 +g5 +(g6 +(I0 +tp39326 +g8 +tp39327 +Rp39328 +(I1 +(I7 +tp39329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39330 +tp39331 +bsa(dp39332 +g4 +g5 +(g6 +(I0 +tp39333 +g8 +tp39334 +Rp39335 +(I1 +(I7 +tp39336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39337 +tp39338 +bsa(dp39339 +g4 +g5 +(g6 +(I0 +tp39340 +g8 +tp39341 +Rp39342 +(I1 +(I7 +tp39343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39344 +tp39345 +bsa(dp39346 +g4 +g5 +(g6 +(I0 +tp39347 +g8 +tp39348 +Rp39349 +(I1 +(I7 +tp39350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39351 +tp39352 +bsa(dp39353 +g4 +g5 +(g6 +(I0 +tp39354 +g8 +tp39355 +Rp39356 +(I1 +(I7 +tp39357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39358 +tp39359 +bsa(dp39360 +g4 +g5 +(g6 +(I0 +tp39361 +g8 +tp39362 +Rp39363 +(I1 +(I7 +tp39364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39365 +tp39366 +bsa(dp39367 +g4 +g5 +(g6 +(I0 +tp39368 +g8 +tp39369 +Rp39370 +(I1 +(I7 +tp39371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39372 +tp39373 +bsa(dp39374 +g4 +g5 +(g6 +(I0 +tp39375 +g8 +tp39376 +Rp39377 +(I1 +(I7 +tp39378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39379 +tp39380 +bsa(dp39381 +g4 +g5 +(g6 +(I0 +tp39382 +g8 +tp39383 +Rp39384 +(I1 +(I7 +tp39385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39386 +tp39387 +bsa(dp39388 +g4 +g5 +(g6 +(I0 +tp39389 +g8 +tp39390 +Rp39391 +(I1 +(I7 +tp39392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39393 +tp39394 +bsa(dp39395 +g4 +g5 +(g6 +(I0 +tp39396 +g8 +tp39397 +Rp39398 +(I1 +(I7 +tp39399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39400 +tp39401 +bsa(dp39402 +g4 +g5 +(g6 +(I0 +tp39403 +g8 +tp39404 +Rp39405 +(I1 +(I7 +tp39406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39407 +tp39408 +bsa(dp39409 +g4 +g5 +(g6 +(I0 +tp39410 +g8 +tp39411 +Rp39412 +(I1 +(I7 +tp39413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39414 +tp39415 +bsa(dp39416 +g4 +g5 +(g6 +(I0 +tp39417 +g8 +tp39418 +Rp39419 +(I1 +(I7 +tp39420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39421 +tp39422 +bsa(dp39423 +g4 +g5 +(g6 +(I0 +tp39424 +g8 +tp39425 +Rp39426 +(I1 +(I7 +tp39427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39428 +tp39429 +bsa(dp39430 +g4 +g5 +(g6 +(I0 +tp39431 +g8 +tp39432 +Rp39433 +(I1 +(I7 +tp39434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39435 +tp39436 +bsa(dp39437 +g4 +g5 +(g6 +(I0 +tp39438 +g8 +tp39439 +Rp39440 +(I1 +(I7 +tp39441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39442 +tp39443 +bsa(dp39444 +g4 +g5 +(g6 +(I0 +tp39445 +g8 +tp39446 +Rp39447 +(I1 +(I7 +tp39448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39449 +tp39450 +bsa(dp39451 +g4 +g5 +(g6 +(I0 +tp39452 +g8 +tp39453 +Rp39454 +(I1 +(I7 +tp39455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39456 +tp39457 +bsa(dp39458 +g4 +g5 +(g6 +(I0 +tp39459 +g8 +tp39460 +Rp39461 +(I1 +(I7 +tp39462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39463 +tp39464 +bsa(dp39465 +g4 +g5 +(g6 +(I0 +tp39466 +g8 +tp39467 +Rp39468 +(I1 +(I7 +tp39469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39470 +tp39471 +bsa(dp39472 +g4 +g5 +(g6 +(I0 +tp39473 +g8 +tp39474 +Rp39475 +(I1 +(I7 +tp39476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39477 +tp39478 +bsa(dp39479 +g4 +g5 +(g6 +(I0 +tp39480 +g8 +tp39481 +Rp39482 +(I1 +(I7 +tp39483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39484 +tp39485 +bsa(dp39486 +g4 +g5 +(g6 +(I0 +tp39487 +g8 +tp39488 +Rp39489 +(I1 +(I7 +tp39490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39491 +tp39492 +bsa(dp39493 +g4 +g5 +(g6 +(I0 +tp39494 +g8 +tp39495 +Rp39496 +(I1 +(I7 +tp39497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39498 +tp39499 +bsa(dp39500 +g4 +g5 +(g6 +(I0 +tp39501 +g8 +tp39502 +Rp39503 +(I1 +(I7 +tp39504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39505 +tp39506 +bsa(dp39507 +g4 +g5 +(g6 +(I0 +tp39508 +g8 +tp39509 +Rp39510 +(I1 +(I7 +tp39511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39512 +tp39513 +bsa(dp39514 +g4 +g5 +(g6 +(I0 +tp39515 +g8 +tp39516 +Rp39517 +(I1 +(I7 +tp39518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39519 +tp39520 +bsa(dp39521 +g4 +g5 +(g6 +(I0 +tp39522 +g8 +tp39523 +Rp39524 +(I1 +(I7 +tp39525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39526 +tp39527 +bsa(dp39528 +g4 +g5 +(g6 +(I0 +tp39529 +g8 +tp39530 +Rp39531 +(I1 +(I7 +tp39532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39533 +tp39534 +bsa(dp39535 +g4 +g5 +(g6 +(I0 +tp39536 +g8 +tp39537 +Rp39538 +(I1 +(I7 +tp39539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39540 +tp39541 +bsa(dp39542 +g4 +g5 +(g6 +(I0 +tp39543 +g8 +tp39544 +Rp39545 +(I1 +(I7 +tp39546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39547 +tp39548 +bsa(dp39549 +g4 +g5 +(g6 +(I0 +tp39550 +g8 +tp39551 +Rp39552 +(I1 +(I7 +tp39553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39554 +tp39555 +bsa(dp39556 +g4 +g5 +(g6 +(I0 +tp39557 +g8 +tp39558 +Rp39559 +(I1 +(I7 +tp39560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39561 +tp39562 +bsa(dp39563 +g4 +g5 +(g6 +(I0 +tp39564 +g8 +tp39565 +Rp39566 +(I1 +(I7 +tp39567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39568 +tp39569 +bsa(dp39570 +g4 +g5 +(g6 +(I0 +tp39571 +g8 +tp39572 +Rp39573 +(I1 +(I7 +tp39574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39575 +tp39576 +bsa(dp39577 +g4 +g5 +(g6 +(I0 +tp39578 +g8 +tp39579 +Rp39580 +(I1 +(I7 +tp39581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39582 +tp39583 +bsa(dp39584 +g4 +g5 +(g6 +(I0 +tp39585 +g8 +tp39586 +Rp39587 +(I1 +(I7 +tp39588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39589 +tp39590 +bsa(dp39591 +g4 +g5 +(g6 +(I0 +tp39592 +g8 +tp39593 +Rp39594 +(I1 +(I7 +tp39595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39596 +tp39597 +bsa(dp39598 +g4 +g5 +(g6 +(I0 +tp39599 +g8 +tp39600 +Rp39601 +(I1 +(I7 +tp39602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39603 +tp39604 +bsa(dp39605 +g4 +g5 +(g6 +(I0 +tp39606 +g8 +tp39607 +Rp39608 +(I1 +(I7 +tp39609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39610 +tp39611 +bsa(dp39612 +g4 +g5 +(g6 +(I0 +tp39613 +g8 +tp39614 +Rp39615 +(I1 +(I7 +tp39616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39617 +tp39618 +bsa(dp39619 +g4 +g5 +(g6 +(I0 +tp39620 +g8 +tp39621 +Rp39622 +(I1 +(I7 +tp39623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39624 +tp39625 +bsa(dp39626 +g4 +g5 +(g6 +(I0 +tp39627 +g8 +tp39628 +Rp39629 +(I1 +(I7 +tp39630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39631 +tp39632 +bsa(dp39633 +g4 +g5 +(g6 +(I0 +tp39634 +g8 +tp39635 +Rp39636 +(I1 +(I7 +tp39637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39638 +tp39639 +bsa(dp39640 +g4 +g5 +(g6 +(I0 +tp39641 +g8 +tp39642 +Rp39643 +(I1 +(I7 +tp39644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39645 +tp39646 +bsa(dp39647 +g4 +g5 +(g6 +(I0 +tp39648 +g8 +tp39649 +Rp39650 +(I1 +(I7 +tp39651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39652 +tp39653 +bsa(dp39654 +g4 +g5 +(g6 +(I0 +tp39655 +g8 +tp39656 +Rp39657 +(I1 +(I7 +tp39658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39659 +tp39660 +bsa(dp39661 +g4 +g5 +(g6 +(I0 +tp39662 +g8 +tp39663 +Rp39664 +(I1 +(I7 +tp39665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39666 +tp39667 +bsa(dp39668 +g4 +g5 +(g6 +(I0 +tp39669 +g8 +tp39670 +Rp39671 +(I1 +(I7 +tp39672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39673 +tp39674 +bsa(dp39675 +g4 +g5 +(g6 +(I0 +tp39676 +g8 +tp39677 +Rp39678 +(I1 +(I7 +tp39679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39680 +tp39681 +bsa(dp39682 +g4 +g5 +(g6 +(I0 +tp39683 +g8 +tp39684 +Rp39685 +(I1 +(I7 +tp39686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39687 +tp39688 +bsa(dp39689 +g4 +g5 +(g6 +(I0 +tp39690 +g8 +tp39691 +Rp39692 +(I1 +(I7 +tp39693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39694 +tp39695 +bsa(dp39696 +g4 +g5 +(g6 +(I0 +tp39697 +g8 +tp39698 +Rp39699 +(I1 +(I7 +tp39700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39701 +tp39702 +bsa(dp39703 +g4 +g5 +(g6 +(I0 +tp39704 +g8 +tp39705 +Rp39706 +(I1 +(I7 +tp39707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39708 +tp39709 +bsa(dp39710 +g4 +g5 +(g6 +(I0 +tp39711 +g8 +tp39712 +Rp39713 +(I1 +(I7 +tp39714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39715 +tp39716 +bsa(dp39717 +g4 +g5 +(g6 +(I0 +tp39718 +g8 +tp39719 +Rp39720 +(I1 +(I7 +tp39721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39722 +tp39723 +bsa(dp39724 +g4 +g5 +(g6 +(I0 +tp39725 +g8 +tp39726 +Rp39727 +(I1 +(I7 +tp39728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39729 +tp39730 +bsa(dp39731 +g4 +g5 +(g6 +(I0 +tp39732 +g8 +tp39733 +Rp39734 +(I1 +(I7 +tp39735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39736 +tp39737 +bsa(dp39738 +g4 +g5 +(g6 +(I0 +tp39739 +g8 +tp39740 +Rp39741 +(I1 +(I7 +tp39742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39743 +tp39744 +bsa(dp39745 +g4 +g5 +(g6 +(I0 +tp39746 +g8 +tp39747 +Rp39748 +(I1 +(I7 +tp39749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39750 +tp39751 +bsa(dp39752 +g4 +g5 +(g6 +(I0 +tp39753 +g8 +tp39754 +Rp39755 +(I1 +(I7 +tp39756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39757 +tp39758 +bsa(dp39759 +g4 +g5 +(g6 +(I0 +tp39760 +g8 +tp39761 +Rp39762 +(I1 +(I7 +tp39763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39764 +tp39765 +bsa(dp39766 +g4 +g5 +(g6 +(I0 +tp39767 +g8 +tp39768 +Rp39769 +(I1 +(I7 +tp39770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39771 +tp39772 +bsa(dp39773 +g4 +g5 +(g6 +(I0 +tp39774 +g8 +tp39775 +Rp39776 +(I1 +(I7 +tp39777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39778 +tp39779 +bsa(dp39780 +g4 +g5 +(g6 +(I0 +tp39781 +g8 +tp39782 +Rp39783 +(I1 +(I7 +tp39784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39785 +tp39786 +bsa(dp39787 +g4 +g5 +(g6 +(I0 +tp39788 +g8 +tp39789 +Rp39790 +(I1 +(I7 +tp39791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39792 +tp39793 +bsa(dp39794 +g4 +g5 +(g6 +(I0 +tp39795 +g8 +tp39796 +Rp39797 +(I1 +(I7 +tp39798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39799 +tp39800 +bsa(dp39801 +g4 +g5 +(g6 +(I0 +tp39802 +g8 +tp39803 +Rp39804 +(I1 +(I7 +tp39805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39806 +tp39807 +bsa(dp39808 +g4 +g5 +(g6 +(I0 +tp39809 +g8 +tp39810 +Rp39811 +(I1 +(I7 +tp39812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39813 +tp39814 +bsa(dp39815 +g4 +g5 +(g6 +(I0 +tp39816 +g8 +tp39817 +Rp39818 +(I1 +(I7 +tp39819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39820 +tp39821 +bsa(dp39822 +g4 +g5 +(g6 +(I0 +tp39823 +g8 +tp39824 +Rp39825 +(I1 +(I7 +tp39826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39827 +tp39828 +bsa(dp39829 +g4 +g5 +(g6 +(I0 +tp39830 +g8 +tp39831 +Rp39832 +(I1 +(I7 +tp39833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39834 +tp39835 +bsa(dp39836 +g4 +g5 +(g6 +(I0 +tp39837 +g8 +tp39838 +Rp39839 +(I1 +(I7 +tp39840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39841 +tp39842 +bsa(dp39843 +g4 +g5 +(g6 +(I0 +tp39844 +g8 +tp39845 +Rp39846 +(I1 +(I7 +tp39847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39848 +tp39849 +bsa(dp39850 +g4 +g5 +(g6 +(I0 +tp39851 +g8 +tp39852 +Rp39853 +(I1 +(I7 +tp39854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39855 +tp39856 +bsa(dp39857 +g4 +g5 +(g6 +(I0 +tp39858 +g8 +tp39859 +Rp39860 +(I1 +(I7 +tp39861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39862 +tp39863 +bsa(dp39864 +g4 +g5 +(g6 +(I0 +tp39865 +g8 +tp39866 +Rp39867 +(I1 +(I7 +tp39868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39869 +tp39870 +bsa(dp39871 +g4 +g5 +(g6 +(I0 +tp39872 +g8 +tp39873 +Rp39874 +(I1 +(I7 +tp39875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39876 +tp39877 +bsa(dp39878 +g4 +g5 +(g6 +(I0 +tp39879 +g8 +tp39880 +Rp39881 +(I1 +(I7 +tp39882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39883 +tp39884 +bsa(dp39885 +g4 +g5 +(g6 +(I0 +tp39886 +g8 +tp39887 +Rp39888 +(I1 +(I7 +tp39889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39890 +tp39891 +bsa(dp39892 +g4 +g5 +(g6 +(I0 +tp39893 +g8 +tp39894 +Rp39895 +(I1 +(I7 +tp39896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39897 +tp39898 +bsa(dp39899 +g4 +g5 +(g6 +(I0 +tp39900 +g8 +tp39901 +Rp39902 +(I1 +(I7 +tp39903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39904 +tp39905 +bsa(dp39906 +g4 +g5 +(g6 +(I0 +tp39907 +g8 +tp39908 +Rp39909 +(I1 +(I7 +tp39910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39911 +tp39912 +bsa(dp39913 +g4 +g5 +(g6 +(I0 +tp39914 +g8 +tp39915 +Rp39916 +(I1 +(I7 +tp39917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39918 +tp39919 +bsa(dp39920 +g4 +g5 +(g6 +(I0 +tp39921 +g8 +tp39922 +Rp39923 +(I1 +(I7 +tp39924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39925 +tp39926 +bsa(dp39927 +g4 +g5 +(g6 +(I0 +tp39928 +g8 +tp39929 +Rp39930 +(I1 +(I7 +tp39931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39932 +tp39933 +bsa(dp39934 +g4 +g5 +(g6 +(I0 +tp39935 +g8 +tp39936 +Rp39937 +(I1 +(I7 +tp39938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39939 +tp39940 +bsa(dp39941 +g4 +g5 +(g6 +(I0 +tp39942 +g8 +tp39943 +Rp39944 +(I1 +(I7 +tp39945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39946 +tp39947 +bsa(dp39948 +g4 +g5 +(g6 +(I0 +tp39949 +g8 +tp39950 +Rp39951 +(I1 +(I7 +tp39952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39953 +tp39954 +bsa(dp39955 +g4 +g5 +(g6 +(I0 +tp39956 +g8 +tp39957 +Rp39958 +(I1 +(I7 +tp39959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p39960 +tp39961 +bsa(dp39962 +g4 +g5 +(g6 +(I0 +tp39963 +g8 +tp39964 +Rp39965 +(I1 +(I7 +tp39966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p39967 +tp39968 +bsa(dp39969 +g4 +g5 +(g6 +(I0 +tp39970 +g8 +tp39971 +Rp39972 +(I1 +(I7 +tp39973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39974 +tp39975 +bsa(dp39976 +g4 +g5 +(g6 +(I0 +tp39977 +g8 +tp39978 +Rp39979 +(I1 +(I7 +tp39980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39981 +tp39982 +bsa(dp39983 +g4 +g5 +(g6 +(I0 +tp39984 +g8 +tp39985 +Rp39986 +(I1 +(I7 +tp39987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39988 +tp39989 +bsa(dp39990 +g4 +g5 +(g6 +(I0 +tp39991 +g8 +tp39992 +Rp39993 +(I1 +(I7 +tp39994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p39995 +tp39996 +bsa(dp39997 +g4 +g5 +(g6 +(I0 +tp39998 +g8 +tp39999 +Rp40000 +(I1 +(I7 +tp40001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40002 +tp40003 +bsa(dp40004 +g4 +g5 +(g6 +(I0 +tp40005 +g8 +tp40006 +Rp40007 +(I1 +(I7 +tp40008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40009 +tp40010 +bsa(dp40011 +g4 +g5 +(g6 +(I0 +tp40012 +g8 +tp40013 +Rp40014 +(I1 +(I7 +tp40015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40016 +tp40017 +bsa(dp40018 +g4 +g5 +(g6 +(I0 +tp40019 +g8 +tp40020 +Rp40021 +(I1 +(I7 +tp40022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40023 +tp40024 +bsa(dp40025 +g4 +g5 +(g6 +(I0 +tp40026 +g8 +tp40027 +Rp40028 +(I1 +(I7 +tp40029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40030 +tp40031 +bsa(dp40032 +g4 +g5 +(g6 +(I0 +tp40033 +g8 +tp40034 +Rp40035 +(I1 +(I7 +tp40036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40037 +tp40038 +bsa(dp40039 +g4 +g5 +(g6 +(I0 +tp40040 +g8 +tp40041 +Rp40042 +(I1 +(I7 +tp40043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40044 +tp40045 +bsa(dp40046 +g4 +g5 +(g6 +(I0 +tp40047 +g8 +tp40048 +Rp40049 +(I1 +(I7 +tp40050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40051 +tp40052 +bsa(dp40053 +g4 +g5 +(g6 +(I0 +tp40054 +g8 +tp40055 +Rp40056 +(I1 +(I7 +tp40057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40058 +tp40059 +bsa(dp40060 +g4 +g5 +(g6 +(I0 +tp40061 +g8 +tp40062 +Rp40063 +(I1 +(I7 +tp40064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40065 +tp40066 +bsa(dp40067 +g4 +g5 +(g6 +(I0 +tp40068 +g8 +tp40069 +Rp40070 +(I1 +(I7 +tp40071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40072 +tp40073 +bsa(dp40074 +g4 +g5 +(g6 +(I0 +tp40075 +g8 +tp40076 +Rp40077 +(I1 +(I7 +tp40078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40079 +tp40080 +bsa(dp40081 +g4 +g5 +(g6 +(I0 +tp40082 +g8 +tp40083 +Rp40084 +(I1 +(I7 +tp40085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40086 +tp40087 +bsa(dp40088 +g4 +g5 +(g6 +(I0 +tp40089 +g8 +tp40090 +Rp40091 +(I1 +(I7 +tp40092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40093 +tp40094 +bsa(dp40095 +g4 +g5 +(g6 +(I0 +tp40096 +g8 +tp40097 +Rp40098 +(I1 +(I7 +tp40099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40100 +tp40101 +bsa(dp40102 +g4 +g5 +(g6 +(I0 +tp40103 +g8 +tp40104 +Rp40105 +(I1 +(I7 +tp40106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40107 +tp40108 +bsa(dp40109 +g4 +g5 +(g6 +(I0 +tp40110 +g8 +tp40111 +Rp40112 +(I1 +(I7 +tp40113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40114 +tp40115 +bsa(dp40116 +g4 +g5 +(g6 +(I0 +tp40117 +g8 +tp40118 +Rp40119 +(I1 +(I7 +tp40120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40121 +tp40122 +bsa(dp40123 +g4 +g5 +(g6 +(I0 +tp40124 +g8 +tp40125 +Rp40126 +(I1 +(I7 +tp40127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40128 +tp40129 +bsa(dp40130 +g4 +g5 +(g6 +(I0 +tp40131 +g8 +tp40132 +Rp40133 +(I1 +(I7 +tp40134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40135 +tp40136 +bsa(dp40137 +g4 +g5 +(g6 +(I0 +tp40138 +g8 +tp40139 +Rp40140 +(I1 +(I7 +tp40141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40142 +tp40143 +bsa(dp40144 +g4 +g5 +(g6 +(I0 +tp40145 +g8 +tp40146 +Rp40147 +(I1 +(I7 +tp40148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40149 +tp40150 +bsa(dp40151 +g4 +g5 +(g6 +(I0 +tp40152 +g8 +tp40153 +Rp40154 +(I1 +(I7 +tp40155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40156 +tp40157 +bsa(dp40158 +g4 +g5 +(g6 +(I0 +tp40159 +g8 +tp40160 +Rp40161 +(I1 +(I7 +tp40162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40163 +tp40164 +bsa(dp40165 +g4 +g5 +(g6 +(I0 +tp40166 +g8 +tp40167 +Rp40168 +(I1 +(I7 +tp40169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40170 +tp40171 +bsa(dp40172 +g4 +g5 +(g6 +(I0 +tp40173 +g8 +tp40174 +Rp40175 +(I1 +(I7 +tp40176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40177 +tp40178 +bsa(dp40179 +g4 +g5 +(g6 +(I0 +tp40180 +g8 +tp40181 +Rp40182 +(I1 +(I7 +tp40183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40184 +tp40185 +bsa(dp40186 +g4 +g5 +(g6 +(I0 +tp40187 +g8 +tp40188 +Rp40189 +(I1 +(I7 +tp40190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40191 +tp40192 +bsa(dp40193 +g4 +g5 +(g6 +(I0 +tp40194 +g8 +tp40195 +Rp40196 +(I1 +(I7 +tp40197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40198 +tp40199 +bsa(dp40200 +g4 +g5 +(g6 +(I0 +tp40201 +g8 +tp40202 +Rp40203 +(I1 +(I7 +tp40204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40205 +tp40206 +bsa(dp40207 +g4 +g5 +(g6 +(I0 +tp40208 +g8 +tp40209 +Rp40210 +(I1 +(I7 +tp40211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40212 +tp40213 +bsa(dp40214 +g4 +g5 +(g6 +(I0 +tp40215 +g8 +tp40216 +Rp40217 +(I1 +(I7 +tp40218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40219 +tp40220 +bsa(dp40221 +g4 +g5 +(g6 +(I0 +tp40222 +g8 +tp40223 +Rp40224 +(I1 +(I7 +tp40225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40226 +tp40227 +bsa(dp40228 +g4 +g5 +(g6 +(I0 +tp40229 +g8 +tp40230 +Rp40231 +(I1 +(I7 +tp40232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40233 +tp40234 +bsa(dp40235 +g4 +g5 +(g6 +(I0 +tp40236 +g8 +tp40237 +Rp40238 +(I1 +(I7 +tp40239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40240 +tp40241 +bsa(dp40242 +g4 +g5 +(g6 +(I0 +tp40243 +g8 +tp40244 +Rp40245 +(I1 +(I7 +tp40246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40247 +tp40248 +bsa(dp40249 +g4 +g5 +(g6 +(I0 +tp40250 +g8 +tp40251 +Rp40252 +(I1 +(I7 +tp40253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40254 +tp40255 +bsa(dp40256 +g4 +g5 +(g6 +(I0 +tp40257 +g8 +tp40258 +Rp40259 +(I1 +(I7 +tp40260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40261 +tp40262 +bsa(dp40263 +g4 +g5 +(g6 +(I0 +tp40264 +g8 +tp40265 +Rp40266 +(I1 +(I7 +tp40267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40268 +tp40269 +bsa(dp40270 +g4 +g5 +(g6 +(I0 +tp40271 +g8 +tp40272 +Rp40273 +(I1 +(I7 +tp40274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40275 +tp40276 +bsa(dp40277 +g4 +g5 +(g6 +(I0 +tp40278 +g8 +tp40279 +Rp40280 +(I1 +(I7 +tp40281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40282 +tp40283 +bsa(dp40284 +g4 +g5 +(g6 +(I0 +tp40285 +g8 +tp40286 +Rp40287 +(I1 +(I7 +tp40288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40289 +tp40290 +bsa(dp40291 +g4 +g5 +(g6 +(I0 +tp40292 +g8 +tp40293 +Rp40294 +(I1 +(I7 +tp40295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40296 +tp40297 +bsa(dp40298 +g4 +g5 +(g6 +(I0 +tp40299 +g8 +tp40300 +Rp40301 +(I1 +(I7 +tp40302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40303 +tp40304 +bsa(dp40305 +g4 +g5 +(g6 +(I0 +tp40306 +g8 +tp40307 +Rp40308 +(I1 +(I7 +tp40309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40310 +tp40311 +bsa(dp40312 +g4 +g5 +(g6 +(I0 +tp40313 +g8 +tp40314 +Rp40315 +(I1 +(I7 +tp40316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40317 +tp40318 +bsa(dp40319 +g4 +g5 +(g6 +(I0 +tp40320 +g8 +tp40321 +Rp40322 +(I1 +(I7 +tp40323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40324 +tp40325 +bsa(dp40326 +g4 +g5 +(g6 +(I0 +tp40327 +g8 +tp40328 +Rp40329 +(I1 +(I7 +tp40330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40331 +tp40332 +bsa(dp40333 +g4 +g5 +(g6 +(I0 +tp40334 +g8 +tp40335 +Rp40336 +(I1 +(I7 +tp40337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40338 +tp40339 +bsa(dp40340 +g4 +g5 +(g6 +(I0 +tp40341 +g8 +tp40342 +Rp40343 +(I1 +(I7 +tp40344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40345 +tp40346 +bsa(dp40347 +g4 +g5 +(g6 +(I0 +tp40348 +g8 +tp40349 +Rp40350 +(I1 +(I7 +tp40351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40352 +tp40353 +bsa(dp40354 +g4 +g5 +(g6 +(I0 +tp40355 +g8 +tp40356 +Rp40357 +(I1 +(I7 +tp40358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40359 +tp40360 +bsa(dp40361 +g4 +g5 +(g6 +(I0 +tp40362 +g8 +tp40363 +Rp40364 +(I1 +(I7 +tp40365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40366 +tp40367 +bsa(dp40368 +g4 +g5 +(g6 +(I0 +tp40369 +g8 +tp40370 +Rp40371 +(I1 +(I7 +tp40372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40373 +tp40374 +bsa(dp40375 +g4 +g5 +(g6 +(I0 +tp40376 +g8 +tp40377 +Rp40378 +(I1 +(I7 +tp40379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40380 +tp40381 +bsa(dp40382 +g4 +g5 +(g6 +(I0 +tp40383 +g8 +tp40384 +Rp40385 +(I1 +(I7 +tp40386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40387 +tp40388 +bsa(dp40389 +g4 +g5 +(g6 +(I0 +tp40390 +g8 +tp40391 +Rp40392 +(I1 +(I7 +tp40393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40394 +tp40395 +bsa(dp40396 +g4 +g5 +(g6 +(I0 +tp40397 +g8 +tp40398 +Rp40399 +(I1 +(I7 +tp40400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40401 +tp40402 +bsa(dp40403 +g4 +g5 +(g6 +(I0 +tp40404 +g8 +tp40405 +Rp40406 +(I1 +(I7 +tp40407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40408 +tp40409 +bsa(dp40410 +g4 +g5 +(g6 +(I0 +tp40411 +g8 +tp40412 +Rp40413 +(I1 +(I7 +tp40414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40415 +tp40416 +bsa(dp40417 +g4 +g5 +(g6 +(I0 +tp40418 +g8 +tp40419 +Rp40420 +(I1 +(I7 +tp40421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40422 +tp40423 +bsa(dp40424 +g4 +g5 +(g6 +(I0 +tp40425 +g8 +tp40426 +Rp40427 +(I1 +(I7 +tp40428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40429 +tp40430 +bsa(dp40431 +g4 +g5 +(g6 +(I0 +tp40432 +g8 +tp40433 +Rp40434 +(I1 +(I7 +tp40435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40436 +tp40437 +bsa(dp40438 +g4 +g5 +(g6 +(I0 +tp40439 +g8 +tp40440 +Rp40441 +(I1 +(I7 +tp40442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40443 +tp40444 +bsa(dp40445 +g4 +g5 +(g6 +(I0 +tp40446 +g8 +tp40447 +Rp40448 +(I1 +(I7 +tp40449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40450 +tp40451 +bsa(dp40452 +g4 +g5 +(g6 +(I0 +tp40453 +g8 +tp40454 +Rp40455 +(I1 +(I7 +tp40456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40457 +tp40458 +bsa(dp40459 +g4 +g5 +(g6 +(I0 +tp40460 +g8 +tp40461 +Rp40462 +(I1 +(I7 +tp40463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40464 +tp40465 +bsa(dp40466 +g4 +g5 +(g6 +(I0 +tp40467 +g8 +tp40468 +Rp40469 +(I1 +(I7 +tp40470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40471 +tp40472 +bsa(dp40473 +g4 +g5 +(g6 +(I0 +tp40474 +g8 +tp40475 +Rp40476 +(I1 +(I7 +tp40477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40478 +tp40479 +bsa(dp40480 +g4 +g5 +(g6 +(I0 +tp40481 +g8 +tp40482 +Rp40483 +(I1 +(I7 +tp40484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40485 +tp40486 +bsa(dp40487 +g4 +g5 +(g6 +(I0 +tp40488 +g8 +tp40489 +Rp40490 +(I1 +(I7 +tp40491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40492 +tp40493 +bsa(dp40494 +g4 +g5 +(g6 +(I0 +tp40495 +g8 +tp40496 +Rp40497 +(I1 +(I7 +tp40498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40499 +tp40500 +bsa(dp40501 +g4 +g5 +(g6 +(I0 +tp40502 +g8 +tp40503 +Rp40504 +(I1 +(I7 +tp40505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40506 +tp40507 +bsa(dp40508 +g4 +g5 +(g6 +(I0 +tp40509 +g8 +tp40510 +Rp40511 +(I1 +(I7 +tp40512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40513 +tp40514 +bsa(dp40515 +g4 +g5 +(g6 +(I0 +tp40516 +g8 +tp40517 +Rp40518 +(I1 +(I7 +tp40519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40520 +tp40521 +bsa(dp40522 +g4 +g5 +(g6 +(I0 +tp40523 +g8 +tp40524 +Rp40525 +(I1 +(I7 +tp40526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40527 +tp40528 +bsa(dp40529 +g4 +g5 +(g6 +(I0 +tp40530 +g8 +tp40531 +Rp40532 +(I1 +(I7 +tp40533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40534 +tp40535 +bsa(dp40536 +g4 +g5 +(g6 +(I0 +tp40537 +g8 +tp40538 +Rp40539 +(I1 +(I7 +tp40540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40541 +tp40542 +bsa(dp40543 +g4 +g5 +(g6 +(I0 +tp40544 +g8 +tp40545 +Rp40546 +(I1 +(I7 +tp40547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40548 +tp40549 +bsa(dp40550 +g4 +g5 +(g6 +(I0 +tp40551 +g8 +tp40552 +Rp40553 +(I1 +(I7 +tp40554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40555 +tp40556 +bsa(dp40557 +g4 +g5 +(g6 +(I0 +tp40558 +g8 +tp40559 +Rp40560 +(I1 +(I7 +tp40561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40562 +tp40563 +bsa(dp40564 +g4 +g5 +(g6 +(I0 +tp40565 +g8 +tp40566 +Rp40567 +(I1 +(I7 +tp40568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40569 +tp40570 +bsa(dp40571 +g4 +g5 +(g6 +(I0 +tp40572 +g8 +tp40573 +Rp40574 +(I1 +(I7 +tp40575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40576 +tp40577 +bsa(dp40578 +g4 +g5 +(g6 +(I0 +tp40579 +g8 +tp40580 +Rp40581 +(I1 +(I7 +tp40582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40583 +tp40584 +bsa(dp40585 +g4 +g5 +(g6 +(I0 +tp40586 +g8 +tp40587 +Rp40588 +(I1 +(I7 +tp40589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40590 +tp40591 +bsa(dp40592 +g4 +g5 +(g6 +(I0 +tp40593 +g8 +tp40594 +Rp40595 +(I1 +(I7 +tp40596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40597 +tp40598 +bsa(dp40599 +g4 +g5 +(g6 +(I0 +tp40600 +g8 +tp40601 +Rp40602 +(I1 +(I7 +tp40603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40604 +tp40605 +bsa(dp40606 +g4 +g5 +(g6 +(I0 +tp40607 +g8 +tp40608 +Rp40609 +(I1 +(I7 +tp40610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40611 +tp40612 +bsa(dp40613 +g4 +g5 +(g6 +(I0 +tp40614 +g8 +tp40615 +Rp40616 +(I1 +(I7 +tp40617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40618 +tp40619 +bsa(dp40620 +g4 +g5 +(g6 +(I0 +tp40621 +g8 +tp40622 +Rp40623 +(I1 +(I7 +tp40624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40625 +tp40626 +bsa(dp40627 +g4 +g5 +(g6 +(I0 +tp40628 +g8 +tp40629 +Rp40630 +(I1 +(I7 +tp40631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40632 +tp40633 +bsa(dp40634 +g4 +g5 +(g6 +(I0 +tp40635 +g8 +tp40636 +Rp40637 +(I1 +(I7 +tp40638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40639 +tp40640 +bsa(dp40641 +g4 +g5 +(g6 +(I0 +tp40642 +g8 +tp40643 +Rp40644 +(I1 +(I7 +tp40645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40646 +tp40647 +bsa(dp40648 +g4 +g5 +(g6 +(I0 +tp40649 +g8 +tp40650 +Rp40651 +(I1 +(I7 +tp40652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40653 +tp40654 +bsa(dp40655 +g4 +g5 +(g6 +(I0 +tp40656 +g8 +tp40657 +Rp40658 +(I1 +(I7 +tp40659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40660 +tp40661 +bsa(dp40662 +g4 +g5 +(g6 +(I0 +tp40663 +g8 +tp40664 +Rp40665 +(I1 +(I7 +tp40666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40667 +tp40668 +bsa(dp40669 +g4 +g5 +(g6 +(I0 +tp40670 +g8 +tp40671 +Rp40672 +(I1 +(I7 +tp40673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40674 +tp40675 +bsa(dp40676 +g4 +g5 +(g6 +(I0 +tp40677 +g8 +tp40678 +Rp40679 +(I1 +(I7 +tp40680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40681 +tp40682 +bsa(dp40683 +g4 +g5 +(g6 +(I0 +tp40684 +g8 +tp40685 +Rp40686 +(I1 +(I7 +tp40687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40688 +tp40689 +bsa(dp40690 +g4 +g5 +(g6 +(I0 +tp40691 +g8 +tp40692 +Rp40693 +(I1 +(I7 +tp40694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40695 +tp40696 +bsa(dp40697 +g4 +g5 +(g6 +(I0 +tp40698 +g8 +tp40699 +Rp40700 +(I1 +(I7 +tp40701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40702 +tp40703 +bsa(dp40704 +g4 +g5 +(g6 +(I0 +tp40705 +g8 +tp40706 +Rp40707 +(I1 +(I7 +tp40708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40709 +tp40710 +bsa(dp40711 +g4 +g5 +(g6 +(I0 +tp40712 +g8 +tp40713 +Rp40714 +(I1 +(I7 +tp40715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40716 +tp40717 +bsa(dp40718 +g4 +g5 +(g6 +(I0 +tp40719 +g8 +tp40720 +Rp40721 +(I1 +(I7 +tp40722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40723 +tp40724 +bsa(dp40725 +g4 +g5 +(g6 +(I0 +tp40726 +g8 +tp40727 +Rp40728 +(I1 +(I7 +tp40729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40730 +tp40731 +bsa(dp40732 +g4 +g5 +(g6 +(I0 +tp40733 +g8 +tp40734 +Rp40735 +(I1 +(I7 +tp40736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40737 +tp40738 +bsa(dp40739 +g4 +g5 +(g6 +(I0 +tp40740 +g8 +tp40741 +Rp40742 +(I1 +(I7 +tp40743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40744 +tp40745 +bsa(dp40746 +g4 +g5 +(g6 +(I0 +tp40747 +g8 +tp40748 +Rp40749 +(I1 +(I7 +tp40750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40751 +tp40752 +bsa(dp40753 +g4 +g5 +(g6 +(I0 +tp40754 +g8 +tp40755 +Rp40756 +(I1 +(I7 +tp40757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40758 +tp40759 +bsa(dp40760 +g4 +g5 +(g6 +(I0 +tp40761 +g8 +tp40762 +Rp40763 +(I1 +(I7 +tp40764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40765 +tp40766 +bsa(dp40767 +g4 +g5 +(g6 +(I0 +tp40768 +g8 +tp40769 +Rp40770 +(I1 +(I7 +tp40771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40772 +tp40773 +bsa(dp40774 +g4 +g5 +(g6 +(I0 +tp40775 +g8 +tp40776 +Rp40777 +(I1 +(I7 +tp40778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40779 +tp40780 +bsa(dp40781 +g4 +g5 +(g6 +(I0 +tp40782 +g8 +tp40783 +Rp40784 +(I1 +(I7 +tp40785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40786 +tp40787 +bsa(dp40788 +g4 +g5 +(g6 +(I0 +tp40789 +g8 +tp40790 +Rp40791 +(I1 +(I7 +tp40792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40793 +tp40794 +bsa(dp40795 +g4 +g5 +(g6 +(I0 +tp40796 +g8 +tp40797 +Rp40798 +(I1 +(I7 +tp40799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40800 +tp40801 +bsa(dp40802 +g4 +g5 +(g6 +(I0 +tp40803 +g8 +tp40804 +Rp40805 +(I1 +(I7 +tp40806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40807 +tp40808 +bsa(dp40809 +g4 +g5 +(g6 +(I0 +tp40810 +g8 +tp40811 +Rp40812 +(I1 +(I7 +tp40813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40814 +tp40815 +bsa(dp40816 +g4 +g5 +(g6 +(I0 +tp40817 +g8 +tp40818 +Rp40819 +(I1 +(I7 +tp40820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40821 +tp40822 +bsa(dp40823 +g4 +g5 +(g6 +(I0 +tp40824 +g8 +tp40825 +Rp40826 +(I1 +(I7 +tp40827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40828 +tp40829 +bsa(dp40830 +g4 +g5 +(g6 +(I0 +tp40831 +g8 +tp40832 +Rp40833 +(I1 +(I7 +tp40834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40835 +tp40836 +bsa(dp40837 +g4 +g5 +(g6 +(I0 +tp40838 +g8 +tp40839 +Rp40840 +(I1 +(I7 +tp40841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40842 +tp40843 +bsa(dp40844 +g4 +g5 +(g6 +(I0 +tp40845 +g8 +tp40846 +Rp40847 +(I1 +(I7 +tp40848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40849 +tp40850 +bsa(dp40851 +g4 +g5 +(g6 +(I0 +tp40852 +g8 +tp40853 +Rp40854 +(I1 +(I7 +tp40855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40856 +tp40857 +bsa(dp40858 +g4 +g5 +(g6 +(I0 +tp40859 +g8 +tp40860 +Rp40861 +(I1 +(I7 +tp40862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40863 +tp40864 +bsa(dp40865 +g4 +g5 +(g6 +(I0 +tp40866 +g8 +tp40867 +Rp40868 +(I1 +(I7 +tp40869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40870 +tp40871 +bsa(dp40872 +g4 +g5 +(g6 +(I0 +tp40873 +g8 +tp40874 +Rp40875 +(I1 +(I7 +tp40876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40877 +tp40878 +bsa(dp40879 +g4 +g5 +(g6 +(I0 +tp40880 +g8 +tp40881 +Rp40882 +(I1 +(I7 +tp40883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40884 +tp40885 +bsa(dp40886 +g4 +g5 +(g6 +(I0 +tp40887 +g8 +tp40888 +Rp40889 +(I1 +(I7 +tp40890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40891 +tp40892 +bsa(dp40893 +g4 +g5 +(g6 +(I0 +tp40894 +g8 +tp40895 +Rp40896 +(I1 +(I7 +tp40897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40898 +tp40899 +bsa(dp40900 +g4 +g5 +(g6 +(I0 +tp40901 +g8 +tp40902 +Rp40903 +(I1 +(I7 +tp40904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40905 +tp40906 +bsa(dp40907 +g4 +g5 +(g6 +(I0 +tp40908 +g8 +tp40909 +Rp40910 +(I1 +(I7 +tp40911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40912 +tp40913 +bsa(dp40914 +g4 +g5 +(g6 +(I0 +tp40915 +g8 +tp40916 +Rp40917 +(I1 +(I7 +tp40918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40919 +tp40920 +bsa(dp40921 +g4 +g5 +(g6 +(I0 +tp40922 +g8 +tp40923 +Rp40924 +(I1 +(I7 +tp40925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40926 +tp40927 +bsa(dp40928 +g4 +g5 +(g6 +(I0 +tp40929 +g8 +tp40930 +Rp40931 +(I1 +(I7 +tp40932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40933 +tp40934 +bsa(dp40935 +g4 +g5 +(g6 +(I0 +tp40936 +g8 +tp40937 +Rp40938 +(I1 +(I7 +tp40939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40940 +tp40941 +bsa(dp40942 +g4 +g5 +(g6 +(I0 +tp40943 +g8 +tp40944 +Rp40945 +(I1 +(I7 +tp40946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40947 +tp40948 +bsa(dp40949 +g4 +g5 +(g6 +(I0 +tp40950 +g8 +tp40951 +Rp40952 +(I1 +(I7 +tp40953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p40954 +tp40955 +bsa(dp40956 +g4 +g5 +(g6 +(I0 +tp40957 +g8 +tp40958 +Rp40959 +(I1 +(I7 +tp40960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40961 +tp40962 +bsa(dp40963 +g4 +g5 +(g6 +(I0 +tp40964 +g8 +tp40965 +Rp40966 +(I1 +(I7 +tp40967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40968 +tp40969 +bsa(dp40970 +g4 +g5 +(g6 +(I0 +tp40971 +g8 +tp40972 +Rp40973 +(I1 +(I7 +tp40974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40975 +tp40976 +bsa(dp40977 +g4 +g5 +(g6 +(I0 +tp40978 +g8 +tp40979 +Rp40980 +(I1 +(I7 +tp40981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40982 +tp40983 +bsa(dp40984 +g4 +g5 +(g6 +(I0 +tp40985 +g8 +tp40986 +Rp40987 +(I1 +(I7 +tp40988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p40989 +tp40990 +bsa(dp40991 +g4 +g5 +(g6 +(I0 +tp40992 +g8 +tp40993 +Rp40994 +(I1 +(I7 +tp40995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p40996 +tp40997 +bsa(dp40998 +g4 +g5 +(g6 +(I0 +tp40999 +g8 +tp41000 +Rp41001 +(I1 +(I7 +tp41002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41003 +tp41004 +bsa(dp41005 +g4 +g5 +(g6 +(I0 +tp41006 +g8 +tp41007 +Rp41008 +(I1 +(I7 +tp41009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41010 +tp41011 +bsa(dp41012 +g4 +g5 +(g6 +(I0 +tp41013 +g8 +tp41014 +Rp41015 +(I1 +(I7 +tp41016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41017 +tp41018 +bsa(dp41019 +g4 +g5 +(g6 +(I0 +tp41020 +g8 +tp41021 +Rp41022 +(I1 +(I7 +tp41023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41024 +tp41025 +bsa(dp41026 +g4 +g5 +(g6 +(I0 +tp41027 +g8 +tp41028 +Rp41029 +(I1 +(I7 +tp41030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41031 +tp41032 +bsa(dp41033 +g4 +g5 +(g6 +(I0 +tp41034 +g8 +tp41035 +Rp41036 +(I1 +(I7 +tp41037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41038 +tp41039 +bsa(dp41040 +g4 +g5 +(g6 +(I0 +tp41041 +g8 +tp41042 +Rp41043 +(I1 +(I7 +tp41044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41045 +tp41046 +bsa(dp41047 +g4 +g5 +(g6 +(I0 +tp41048 +g8 +tp41049 +Rp41050 +(I1 +(I7 +tp41051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41052 +tp41053 +bsa(dp41054 +g4 +g5 +(g6 +(I0 +tp41055 +g8 +tp41056 +Rp41057 +(I1 +(I7 +tp41058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41059 +tp41060 +bsa(dp41061 +g4 +g5 +(g6 +(I0 +tp41062 +g8 +tp41063 +Rp41064 +(I1 +(I7 +tp41065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41066 +tp41067 +bsa(dp41068 +g4 +g5 +(g6 +(I0 +tp41069 +g8 +tp41070 +Rp41071 +(I1 +(I7 +tp41072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41073 +tp41074 +bsa(dp41075 +g4 +g5 +(g6 +(I0 +tp41076 +g8 +tp41077 +Rp41078 +(I1 +(I7 +tp41079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41080 +tp41081 +bsa(dp41082 +g4 +g5 +(g6 +(I0 +tp41083 +g8 +tp41084 +Rp41085 +(I1 +(I7 +tp41086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41087 +tp41088 +bsa(dp41089 +g4 +g5 +(g6 +(I0 +tp41090 +g8 +tp41091 +Rp41092 +(I1 +(I7 +tp41093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41094 +tp41095 +bsa(dp41096 +g4 +g5 +(g6 +(I0 +tp41097 +g8 +tp41098 +Rp41099 +(I1 +(I7 +tp41100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41101 +tp41102 +bsa(dp41103 +g4 +g5 +(g6 +(I0 +tp41104 +g8 +tp41105 +Rp41106 +(I1 +(I7 +tp41107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41108 +tp41109 +bsa(dp41110 +g4 +g5 +(g6 +(I0 +tp41111 +g8 +tp41112 +Rp41113 +(I1 +(I7 +tp41114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41115 +tp41116 +bsa(dp41117 +g4 +g5 +(g6 +(I0 +tp41118 +g8 +tp41119 +Rp41120 +(I1 +(I7 +tp41121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41122 +tp41123 +bsa(dp41124 +g4 +g5 +(g6 +(I0 +tp41125 +g8 +tp41126 +Rp41127 +(I1 +(I7 +tp41128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41129 +tp41130 +bsa(dp41131 +g4 +g5 +(g6 +(I0 +tp41132 +g8 +tp41133 +Rp41134 +(I1 +(I7 +tp41135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41136 +tp41137 +bsa(dp41138 +g4 +g5 +(g6 +(I0 +tp41139 +g8 +tp41140 +Rp41141 +(I1 +(I7 +tp41142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41143 +tp41144 +bsa(dp41145 +g4 +g5 +(g6 +(I0 +tp41146 +g8 +tp41147 +Rp41148 +(I1 +(I7 +tp41149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41150 +tp41151 +bsa(dp41152 +g4 +g5 +(g6 +(I0 +tp41153 +g8 +tp41154 +Rp41155 +(I1 +(I7 +tp41156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41157 +tp41158 +bsa(dp41159 +g4 +g5 +(g6 +(I0 +tp41160 +g8 +tp41161 +Rp41162 +(I1 +(I7 +tp41163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41164 +tp41165 +bsa(dp41166 +g4 +g5 +(g6 +(I0 +tp41167 +g8 +tp41168 +Rp41169 +(I1 +(I7 +tp41170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41171 +tp41172 +bsa(dp41173 +g4 +g5 +(g6 +(I0 +tp41174 +g8 +tp41175 +Rp41176 +(I1 +(I7 +tp41177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41178 +tp41179 +bsa(dp41180 +g4 +g5 +(g6 +(I0 +tp41181 +g8 +tp41182 +Rp41183 +(I1 +(I7 +tp41184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41185 +tp41186 +bsa(dp41187 +g4 +g5 +(g6 +(I0 +tp41188 +g8 +tp41189 +Rp41190 +(I1 +(I7 +tp41191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41192 +tp41193 +bsa(dp41194 +g4 +g5 +(g6 +(I0 +tp41195 +g8 +tp41196 +Rp41197 +(I1 +(I7 +tp41198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41199 +tp41200 +bsa(dp41201 +g4 +g5 +(g6 +(I0 +tp41202 +g8 +tp41203 +Rp41204 +(I1 +(I7 +tp41205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41206 +tp41207 +bsa(dp41208 +g4 +g5 +(g6 +(I0 +tp41209 +g8 +tp41210 +Rp41211 +(I1 +(I7 +tp41212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41213 +tp41214 +bsa(dp41215 +g4 +g5 +(g6 +(I0 +tp41216 +g8 +tp41217 +Rp41218 +(I1 +(I7 +tp41219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41220 +tp41221 +bsa(dp41222 +g4 +g5 +(g6 +(I0 +tp41223 +g8 +tp41224 +Rp41225 +(I1 +(I7 +tp41226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41227 +tp41228 +bsa(dp41229 +g4 +g5 +(g6 +(I0 +tp41230 +g8 +tp41231 +Rp41232 +(I1 +(I7 +tp41233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41234 +tp41235 +bsa(dp41236 +g4 +g5 +(g6 +(I0 +tp41237 +g8 +tp41238 +Rp41239 +(I1 +(I7 +tp41240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41241 +tp41242 +bsa(dp41243 +g4 +g5 +(g6 +(I0 +tp41244 +g8 +tp41245 +Rp41246 +(I1 +(I7 +tp41247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41248 +tp41249 +bsa(dp41250 +g4 +g5 +(g6 +(I0 +tp41251 +g8 +tp41252 +Rp41253 +(I1 +(I7 +tp41254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41255 +tp41256 +bsa(dp41257 +g4 +g5 +(g6 +(I0 +tp41258 +g8 +tp41259 +Rp41260 +(I1 +(I7 +tp41261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41262 +tp41263 +bsa(dp41264 +g4 +g5 +(g6 +(I0 +tp41265 +g8 +tp41266 +Rp41267 +(I1 +(I7 +tp41268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41269 +tp41270 +bsa(dp41271 +g4 +g5 +(g6 +(I0 +tp41272 +g8 +tp41273 +Rp41274 +(I1 +(I7 +tp41275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41276 +tp41277 +bsa(dp41278 +g4 +g5 +(g6 +(I0 +tp41279 +g8 +tp41280 +Rp41281 +(I1 +(I7 +tp41282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41283 +tp41284 +bsa(dp41285 +g4 +g5 +(g6 +(I0 +tp41286 +g8 +tp41287 +Rp41288 +(I1 +(I7 +tp41289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41290 +tp41291 +bsa(dp41292 +g4 +g5 +(g6 +(I0 +tp41293 +g8 +tp41294 +Rp41295 +(I1 +(I7 +tp41296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41297 +tp41298 +bsa(dp41299 +g4 +g5 +(g6 +(I0 +tp41300 +g8 +tp41301 +Rp41302 +(I1 +(I7 +tp41303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41304 +tp41305 +bsa(dp41306 +g4 +g5 +(g6 +(I0 +tp41307 +g8 +tp41308 +Rp41309 +(I1 +(I7 +tp41310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41311 +tp41312 +bsa(dp41313 +g4 +g5 +(g6 +(I0 +tp41314 +g8 +tp41315 +Rp41316 +(I1 +(I7 +tp41317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41318 +tp41319 +bsa(dp41320 +g4 +g5 +(g6 +(I0 +tp41321 +g8 +tp41322 +Rp41323 +(I1 +(I7 +tp41324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41325 +tp41326 +bsa(dp41327 +g4 +g5 +(g6 +(I0 +tp41328 +g8 +tp41329 +Rp41330 +(I1 +(I7 +tp41331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41332 +tp41333 +bsa(dp41334 +g4 +g5 +(g6 +(I0 +tp41335 +g8 +tp41336 +Rp41337 +(I1 +(I7 +tp41338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41339 +tp41340 +bsa(dp41341 +g4 +g5 +(g6 +(I0 +tp41342 +g8 +tp41343 +Rp41344 +(I1 +(I7 +tp41345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41346 +tp41347 +bsa(dp41348 +g4 +g5 +(g6 +(I0 +tp41349 +g8 +tp41350 +Rp41351 +(I1 +(I7 +tp41352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41353 +tp41354 +bsa(dp41355 +g4 +g5 +(g6 +(I0 +tp41356 +g8 +tp41357 +Rp41358 +(I1 +(I7 +tp41359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41360 +tp41361 +bsa(dp41362 +g4 +g5 +(g6 +(I0 +tp41363 +g8 +tp41364 +Rp41365 +(I1 +(I7 +tp41366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41367 +tp41368 +bsa(dp41369 +g4 +g5 +(g6 +(I0 +tp41370 +g8 +tp41371 +Rp41372 +(I1 +(I7 +tp41373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41374 +tp41375 +bsa(dp41376 +g4 +g5 +(g6 +(I0 +tp41377 +g8 +tp41378 +Rp41379 +(I1 +(I7 +tp41380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41381 +tp41382 +bsa(dp41383 +g4 +g5 +(g6 +(I0 +tp41384 +g8 +tp41385 +Rp41386 +(I1 +(I7 +tp41387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41388 +tp41389 +bsa(dp41390 +g4 +g5 +(g6 +(I0 +tp41391 +g8 +tp41392 +Rp41393 +(I1 +(I7 +tp41394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41395 +tp41396 +bsa(dp41397 +g4 +g5 +(g6 +(I0 +tp41398 +g8 +tp41399 +Rp41400 +(I1 +(I7 +tp41401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41402 +tp41403 +bsa(dp41404 +g4 +g5 +(g6 +(I0 +tp41405 +g8 +tp41406 +Rp41407 +(I1 +(I7 +tp41408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41409 +tp41410 +bsa(dp41411 +g4 +g5 +(g6 +(I0 +tp41412 +g8 +tp41413 +Rp41414 +(I1 +(I7 +tp41415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41416 +tp41417 +bsa(dp41418 +g4 +g5 +(g6 +(I0 +tp41419 +g8 +tp41420 +Rp41421 +(I1 +(I7 +tp41422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41423 +tp41424 +bsa(dp41425 +g4 +g5 +(g6 +(I0 +tp41426 +g8 +tp41427 +Rp41428 +(I1 +(I7 +tp41429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41430 +tp41431 +bsa(dp41432 +g4 +g5 +(g6 +(I0 +tp41433 +g8 +tp41434 +Rp41435 +(I1 +(I7 +tp41436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41437 +tp41438 +bsa(dp41439 +g4 +g5 +(g6 +(I0 +tp41440 +g8 +tp41441 +Rp41442 +(I1 +(I7 +tp41443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41444 +tp41445 +bsa(dp41446 +g4 +g5 +(g6 +(I0 +tp41447 +g8 +tp41448 +Rp41449 +(I1 +(I7 +tp41450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41451 +tp41452 +bsa(dp41453 +g4 +g5 +(g6 +(I0 +tp41454 +g8 +tp41455 +Rp41456 +(I1 +(I7 +tp41457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41458 +tp41459 +bsa(dp41460 +g4 +g5 +(g6 +(I0 +tp41461 +g8 +tp41462 +Rp41463 +(I1 +(I7 +tp41464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41465 +tp41466 +bsa(dp41467 +g4 +g5 +(g6 +(I0 +tp41468 +g8 +tp41469 +Rp41470 +(I1 +(I7 +tp41471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41472 +tp41473 +bsa(dp41474 +g4 +g5 +(g6 +(I0 +tp41475 +g8 +tp41476 +Rp41477 +(I1 +(I7 +tp41478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41479 +tp41480 +bsa(dp41481 +g4 +g5 +(g6 +(I0 +tp41482 +g8 +tp41483 +Rp41484 +(I1 +(I7 +tp41485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41486 +tp41487 +bsa(dp41488 +g4 +g5 +(g6 +(I0 +tp41489 +g8 +tp41490 +Rp41491 +(I1 +(I7 +tp41492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41493 +tp41494 +bsa(dp41495 +g4 +g5 +(g6 +(I0 +tp41496 +g8 +tp41497 +Rp41498 +(I1 +(I7 +tp41499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41500 +tp41501 +bsa(dp41502 +g4 +g5 +(g6 +(I0 +tp41503 +g8 +tp41504 +Rp41505 +(I1 +(I7 +tp41506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41507 +tp41508 +bsa(dp41509 +g4 +g5 +(g6 +(I0 +tp41510 +g8 +tp41511 +Rp41512 +(I1 +(I7 +tp41513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41514 +tp41515 +bsa(dp41516 +g4 +g5 +(g6 +(I0 +tp41517 +g8 +tp41518 +Rp41519 +(I1 +(I7 +tp41520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41521 +tp41522 +bsa(dp41523 +g4 +g5 +(g6 +(I0 +tp41524 +g8 +tp41525 +Rp41526 +(I1 +(I7 +tp41527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41528 +tp41529 +bsa(dp41530 +g4 +g5 +(g6 +(I0 +tp41531 +g8 +tp41532 +Rp41533 +(I1 +(I7 +tp41534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41535 +tp41536 +bsa(dp41537 +g4 +g5 +(g6 +(I0 +tp41538 +g8 +tp41539 +Rp41540 +(I1 +(I7 +tp41541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41542 +tp41543 +bsa(dp41544 +g4 +g5 +(g6 +(I0 +tp41545 +g8 +tp41546 +Rp41547 +(I1 +(I7 +tp41548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41549 +tp41550 +bsa(dp41551 +g4 +g5 +(g6 +(I0 +tp41552 +g8 +tp41553 +Rp41554 +(I1 +(I7 +tp41555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41556 +tp41557 +bsa(dp41558 +g4 +g5 +(g6 +(I0 +tp41559 +g8 +tp41560 +Rp41561 +(I1 +(I7 +tp41562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41563 +tp41564 +bsa(dp41565 +g4 +g5 +(g6 +(I0 +tp41566 +g8 +tp41567 +Rp41568 +(I1 +(I7 +tp41569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41570 +tp41571 +bsa(dp41572 +g4 +g5 +(g6 +(I0 +tp41573 +g8 +tp41574 +Rp41575 +(I1 +(I7 +tp41576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41577 +tp41578 +bsa(dp41579 +g4 +g5 +(g6 +(I0 +tp41580 +g8 +tp41581 +Rp41582 +(I1 +(I7 +tp41583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41584 +tp41585 +bsa(dp41586 +g4 +g5 +(g6 +(I0 +tp41587 +g8 +tp41588 +Rp41589 +(I1 +(I7 +tp41590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41591 +tp41592 +bsa(dp41593 +g4 +g5 +(g6 +(I0 +tp41594 +g8 +tp41595 +Rp41596 +(I1 +(I7 +tp41597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41598 +tp41599 +bsa(dp41600 +g4 +g5 +(g6 +(I0 +tp41601 +g8 +tp41602 +Rp41603 +(I1 +(I7 +tp41604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41605 +tp41606 +bsa(dp41607 +g4 +g5 +(g6 +(I0 +tp41608 +g8 +tp41609 +Rp41610 +(I1 +(I7 +tp41611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41612 +tp41613 +bsa(dp41614 +g4 +g5 +(g6 +(I0 +tp41615 +g8 +tp41616 +Rp41617 +(I1 +(I7 +tp41618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41619 +tp41620 +bsa(dp41621 +g4 +g5 +(g6 +(I0 +tp41622 +g8 +tp41623 +Rp41624 +(I1 +(I7 +tp41625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41626 +tp41627 +bsa(dp41628 +g4 +g5 +(g6 +(I0 +tp41629 +g8 +tp41630 +Rp41631 +(I1 +(I7 +tp41632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41633 +tp41634 +bsa(dp41635 +g4 +g5 +(g6 +(I0 +tp41636 +g8 +tp41637 +Rp41638 +(I1 +(I7 +tp41639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41640 +tp41641 +bsa(dp41642 +g4 +g5 +(g6 +(I0 +tp41643 +g8 +tp41644 +Rp41645 +(I1 +(I7 +tp41646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41647 +tp41648 +bsa(dp41649 +g4 +g5 +(g6 +(I0 +tp41650 +g8 +tp41651 +Rp41652 +(I1 +(I7 +tp41653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41654 +tp41655 +bsa(dp41656 +g4 +g5 +(g6 +(I0 +tp41657 +g8 +tp41658 +Rp41659 +(I1 +(I7 +tp41660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41661 +tp41662 +bsa(dp41663 +g4 +g5 +(g6 +(I0 +tp41664 +g8 +tp41665 +Rp41666 +(I1 +(I7 +tp41667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41668 +tp41669 +bsa(dp41670 +g4 +g5 +(g6 +(I0 +tp41671 +g8 +tp41672 +Rp41673 +(I1 +(I7 +tp41674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41675 +tp41676 +bsa(dp41677 +g4 +g5 +(g6 +(I0 +tp41678 +g8 +tp41679 +Rp41680 +(I1 +(I7 +tp41681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41682 +tp41683 +bsa(dp41684 +g4 +g5 +(g6 +(I0 +tp41685 +g8 +tp41686 +Rp41687 +(I1 +(I7 +tp41688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41689 +tp41690 +bsa(dp41691 +g4 +g5 +(g6 +(I0 +tp41692 +g8 +tp41693 +Rp41694 +(I1 +(I7 +tp41695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41696 +tp41697 +bsa(dp41698 +g4 +g5 +(g6 +(I0 +tp41699 +g8 +tp41700 +Rp41701 +(I1 +(I7 +tp41702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41703 +tp41704 +bsa(dp41705 +g4 +g5 +(g6 +(I0 +tp41706 +g8 +tp41707 +Rp41708 +(I1 +(I7 +tp41709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41710 +tp41711 +bsa(dp41712 +g4 +g5 +(g6 +(I0 +tp41713 +g8 +tp41714 +Rp41715 +(I1 +(I7 +tp41716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41717 +tp41718 +bsa(dp41719 +g4 +g5 +(g6 +(I0 +tp41720 +g8 +tp41721 +Rp41722 +(I1 +(I7 +tp41723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41724 +tp41725 +bsa(dp41726 +g4 +g5 +(g6 +(I0 +tp41727 +g8 +tp41728 +Rp41729 +(I1 +(I7 +tp41730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41731 +tp41732 +bsa(dp41733 +g4 +g5 +(g6 +(I0 +tp41734 +g8 +tp41735 +Rp41736 +(I1 +(I7 +tp41737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41738 +tp41739 +bsa(dp41740 +g4 +g5 +(g6 +(I0 +tp41741 +g8 +tp41742 +Rp41743 +(I1 +(I7 +tp41744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41745 +tp41746 +bsa(dp41747 +g4 +g5 +(g6 +(I0 +tp41748 +g8 +tp41749 +Rp41750 +(I1 +(I7 +tp41751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41752 +tp41753 +bsa(dp41754 +g4 +g5 +(g6 +(I0 +tp41755 +g8 +tp41756 +Rp41757 +(I1 +(I7 +tp41758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41759 +tp41760 +bsa(dp41761 +g4 +g5 +(g6 +(I0 +tp41762 +g8 +tp41763 +Rp41764 +(I1 +(I7 +tp41765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41766 +tp41767 +bsa(dp41768 +g4 +g5 +(g6 +(I0 +tp41769 +g8 +tp41770 +Rp41771 +(I1 +(I7 +tp41772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41773 +tp41774 +bsa(dp41775 +g4 +g5 +(g6 +(I0 +tp41776 +g8 +tp41777 +Rp41778 +(I1 +(I7 +tp41779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41780 +tp41781 +bsa(dp41782 +g4 +g5 +(g6 +(I0 +tp41783 +g8 +tp41784 +Rp41785 +(I1 +(I7 +tp41786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41787 +tp41788 +bsa(dp41789 +g4 +g5 +(g6 +(I0 +tp41790 +g8 +tp41791 +Rp41792 +(I1 +(I7 +tp41793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41794 +tp41795 +bsa(dp41796 +g4 +g5 +(g6 +(I0 +tp41797 +g8 +tp41798 +Rp41799 +(I1 +(I7 +tp41800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41801 +tp41802 +bsa(dp41803 +g4 +g5 +(g6 +(I0 +tp41804 +g8 +tp41805 +Rp41806 +(I1 +(I7 +tp41807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41808 +tp41809 +bsa(dp41810 +g4 +g5 +(g6 +(I0 +tp41811 +g8 +tp41812 +Rp41813 +(I1 +(I7 +tp41814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41815 +tp41816 +bsa(dp41817 +g4 +g5 +(g6 +(I0 +tp41818 +g8 +tp41819 +Rp41820 +(I1 +(I7 +tp41821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41822 +tp41823 +bsa(dp41824 +g4 +g5 +(g6 +(I0 +tp41825 +g8 +tp41826 +Rp41827 +(I1 +(I7 +tp41828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41829 +tp41830 +bsa(dp41831 +g4 +g5 +(g6 +(I0 +tp41832 +g8 +tp41833 +Rp41834 +(I1 +(I7 +tp41835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41836 +tp41837 +bsa(dp41838 +g4 +g5 +(g6 +(I0 +tp41839 +g8 +tp41840 +Rp41841 +(I1 +(I7 +tp41842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41843 +tp41844 +bsa(dp41845 +g4 +g5 +(g6 +(I0 +tp41846 +g8 +tp41847 +Rp41848 +(I1 +(I7 +tp41849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41850 +tp41851 +bsa(dp41852 +g4 +g5 +(g6 +(I0 +tp41853 +g8 +tp41854 +Rp41855 +(I1 +(I7 +tp41856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41857 +tp41858 +bsa(dp41859 +g4 +g5 +(g6 +(I0 +tp41860 +g8 +tp41861 +Rp41862 +(I1 +(I7 +tp41863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41864 +tp41865 +bsa(dp41866 +g4 +g5 +(g6 +(I0 +tp41867 +g8 +tp41868 +Rp41869 +(I1 +(I7 +tp41870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41871 +tp41872 +bsa(dp41873 +g4 +g5 +(g6 +(I0 +tp41874 +g8 +tp41875 +Rp41876 +(I1 +(I7 +tp41877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41878 +tp41879 +bsa(dp41880 +g4 +g5 +(g6 +(I0 +tp41881 +g8 +tp41882 +Rp41883 +(I1 +(I7 +tp41884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41885 +tp41886 +bsa(dp41887 +g4 +g5 +(g6 +(I0 +tp41888 +g8 +tp41889 +Rp41890 +(I1 +(I7 +tp41891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41892 +tp41893 +bsa(dp41894 +g4 +g5 +(g6 +(I0 +tp41895 +g8 +tp41896 +Rp41897 +(I1 +(I7 +tp41898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41899 +tp41900 +bsa(dp41901 +g4 +g5 +(g6 +(I0 +tp41902 +g8 +tp41903 +Rp41904 +(I1 +(I7 +tp41905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41906 +tp41907 +bsa(dp41908 +g4 +g5 +(g6 +(I0 +tp41909 +g8 +tp41910 +Rp41911 +(I1 +(I7 +tp41912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41913 +tp41914 +bsa(dp41915 +g4 +g5 +(g6 +(I0 +tp41916 +g8 +tp41917 +Rp41918 +(I1 +(I7 +tp41919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41920 +tp41921 +bsa(dp41922 +g4 +g5 +(g6 +(I0 +tp41923 +g8 +tp41924 +Rp41925 +(I1 +(I7 +tp41926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41927 +tp41928 +bsa(dp41929 +g4 +g5 +(g6 +(I0 +tp41930 +g8 +tp41931 +Rp41932 +(I1 +(I7 +tp41933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41934 +tp41935 +bsa(dp41936 +g4 +g5 +(g6 +(I0 +tp41937 +g8 +tp41938 +Rp41939 +(I1 +(I7 +tp41940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41941 +tp41942 +bsa(dp41943 +g4 +g5 +(g6 +(I0 +tp41944 +g8 +tp41945 +Rp41946 +(I1 +(I7 +tp41947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41948 +tp41949 +bsa(dp41950 +g4 +g5 +(g6 +(I0 +tp41951 +g8 +tp41952 +Rp41953 +(I1 +(I7 +tp41954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41955 +tp41956 +bsa(dp41957 +g4 +g5 +(g6 +(I0 +tp41958 +g8 +tp41959 +Rp41960 +(I1 +(I7 +tp41961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p41962 +tp41963 +bsa(dp41964 +g4 +g5 +(g6 +(I0 +tp41965 +g8 +tp41966 +Rp41967 +(I1 +(I7 +tp41968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p41969 +tp41970 +bsa(dp41971 +g4 +g5 +(g6 +(I0 +tp41972 +g8 +tp41973 +Rp41974 +(I1 +(I7 +tp41975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41976 +tp41977 +bsa(dp41978 +g4 +g5 +(g6 +(I0 +tp41979 +g8 +tp41980 +Rp41981 +(I1 +(I7 +tp41982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41983 +tp41984 +bsa(dp41985 +g4 +g5 +(g6 +(I0 +tp41986 +g8 +tp41987 +Rp41988 +(I1 +(I7 +tp41989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41990 +tp41991 +bsa(dp41992 +g4 +g5 +(g6 +(I0 +tp41993 +g8 +tp41994 +Rp41995 +(I1 +(I7 +tp41996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p41997 +tp41998 +bsa(dp41999 +g4 +g5 +(g6 +(I0 +tp42000 +g8 +tp42001 +Rp42002 +(I1 +(I7 +tp42003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42004 +tp42005 +bsa(dp42006 +g4 +g5 +(g6 +(I0 +tp42007 +g8 +tp42008 +Rp42009 +(I1 +(I7 +tp42010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42011 +tp42012 +bsa(dp42013 +g4 +g5 +(g6 +(I0 +tp42014 +g8 +tp42015 +Rp42016 +(I1 +(I7 +tp42017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42018 +tp42019 +bsa(dp42020 +g4 +g5 +(g6 +(I0 +tp42021 +g8 +tp42022 +Rp42023 +(I1 +(I7 +tp42024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42025 +tp42026 +bsa(dp42027 +g4 +g5 +(g6 +(I0 +tp42028 +g8 +tp42029 +Rp42030 +(I1 +(I7 +tp42031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42032 +tp42033 +bsa(dp42034 +g4 +g5 +(g6 +(I0 +tp42035 +g8 +tp42036 +Rp42037 +(I1 +(I7 +tp42038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42039 +tp42040 +bsa(dp42041 +g4 +g5 +(g6 +(I0 +tp42042 +g8 +tp42043 +Rp42044 +(I1 +(I7 +tp42045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42046 +tp42047 +bsa(dp42048 +g4 +g5 +(g6 +(I0 +tp42049 +g8 +tp42050 +Rp42051 +(I1 +(I7 +tp42052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42053 +tp42054 +bsa(dp42055 +g4 +g5 +(g6 +(I0 +tp42056 +g8 +tp42057 +Rp42058 +(I1 +(I7 +tp42059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42060 +tp42061 +bsa(dp42062 +g4 +g5 +(g6 +(I0 +tp42063 +g8 +tp42064 +Rp42065 +(I1 +(I7 +tp42066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42067 +tp42068 +bsa(dp42069 +g4 +g5 +(g6 +(I0 +tp42070 +g8 +tp42071 +Rp42072 +(I1 +(I7 +tp42073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42074 +tp42075 +bsa(dp42076 +g4 +g5 +(g6 +(I0 +tp42077 +g8 +tp42078 +Rp42079 +(I1 +(I7 +tp42080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42081 +tp42082 +bsa(dp42083 +g4 +g5 +(g6 +(I0 +tp42084 +g8 +tp42085 +Rp42086 +(I1 +(I7 +tp42087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42088 +tp42089 +bsa(dp42090 +g4 +g5 +(g6 +(I0 +tp42091 +g8 +tp42092 +Rp42093 +(I1 +(I7 +tp42094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42095 +tp42096 +bsa(dp42097 +g4 +g5 +(g6 +(I0 +tp42098 +g8 +tp42099 +Rp42100 +(I1 +(I7 +tp42101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42102 +tp42103 +bsa(dp42104 +g4 +g5 +(g6 +(I0 +tp42105 +g8 +tp42106 +Rp42107 +(I1 +(I7 +tp42108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42109 +tp42110 +bsa(dp42111 +g4 +g5 +(g6 +(I0 +tp42112 +g8 +tp42113 +Rp42114 +(I1 +(I7 +tp42115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42116 +tp42117 +bsa(dp42118 +g4 +g5 +(g6 +(I0 +tp42119 +g8 +tp42120 +Rp42121 +(I1 +(I7 +tp42122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42123 +tp42124 +bsa(dp42125 +g4 +g5 +(g6 +(I0 +tp42126 +g8 +tp42127 +Rp42128 +(I1 +(I7 +tp42129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42130 +tp42131 +bsa(dp42132 +g4 +g5 +(g6 +(I0 +tp42133 +g8 +tp42134 +Rp42135 +(I1 +(I7 +tp42136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42137 +tp42138 +bsa(dp42139 +g4 +g5 +(g6 +(I0 +tp42140 +g8 +tp42141 +Rp42142 +(I1 +(I7 +tp42143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42144 +tp42145 +bsa(dp42146 +g4 +g5 +(g6 +(I0 +tp42147 +g8 +tp42148 +Rp42149 +(I1 +(I7 +tp42150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42151 +tp42152 +bsa(dp42153 +g4 +g5 +(g6 +(I0 +tp42154 +g8 +tp42155 +Rp42156 +(I1 +(I7 +tp42157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42158 +tp42159 +bsa(dp42160 +g4 +g5 +(g6 +(I0 +tp42161 +g8 +tp42162 +Rp42163 +(I1 +(I7 +tp42164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42165 +tp42166 +bsa(dp42167 +g4 +g5 +(g6 +(I0 +tp42168 +g8 +tp42169 +Rp42170 +(I1 +(I7 +tp42171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42172 +tp42173 +bsa(dp42174 +g4 +g5 +(g6 +(I0 +tp42175 +g8 +tp42176 +Rp42177 +(I1 +(I7 +tp42178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42179 +tp42180 +bsa(dp42181 +g4 +g5 +(g6 +(I0 +tp42182 +g8 +tp42183 +Rp42184 +(I1 +(I7 +tp42185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42186 +tp42187 +bsa(dp42188 +g4 +g5 +(g6 +(I0 +tp42189 +g8 +tp42190 +Rp42191 +(I1 +(I7 +tp42192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42193 +tp42194 +bsa(dp42195 +g4 +g5 +(g6 +(I0 +tp42196 +g8 +tp42197 +Rp42198 +(I1 +(I7 +tp42199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42200 +tp42201 +bsa(dp42202 +g4 +g5 +(g6 +(I0 +tp42203 +g8 +tp42204 +Rp42205 +(I1 +(I7 +tp42206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42207 +tp42208 +bsa(dp42209 +g4 +g5 +(g6 +(I0 +tp42210 +g8 +tp42211 +Rp42212 +(I1 +(I7 +tp42213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42214 +tp42215 +bsa(dp42216 +g4 +g5 +(g6 +(I0 +tp42217 +g8 +tp42218 +Rp42219 +(I1 +(I7 +tp42220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42221 +tp42222 +bsa(dp42223 +g4 +g5 +(g6 +(I0 +tp42224 +g8 +tp42225 +Rp42226 +(I1 +(I7 +tp42227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42228 +tp42229 +bsa(dp42230 +g4 +g5 +(g6 +(I0 +tp42231 +g8 +tp42232 +Rp42233 +(I1 +(I7 +tp42234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42235 +tp42236 +bsa(dp42237 +g4 +g5 +(g6 +(I0 +tp42238 +g8 +tp42239 +Rp42240 +(I1 +(I7 +tp42241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42242 +tp42243 +bsa(dp42244 +g4 +g5 +(g6 +(I0 +tp42245 +g8 +tp42246 +Rp42247 +(I1 +(I7 +tp42248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42249 +tp42250 +bsa(dp42251 +g4 +g5 +(g6 +(I0 +tp42252 +g8 +tp42253 +Rp42254 +(I1 +(I7 +tp42255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42256 +tp42257 +bsa(dp42258 +g4 +g5 +(g6 +(I0 +tp42259 +g8 +tp42260 +Rp42261 +(I1 +(I7 +tp42262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42263 +tp42264 +bsa(dp42265 +g4 +g5 +(g6 +(I0 +tp42266 +g8 +tp42267 +Rp42268 +(I1 +(I7 +tp42269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42270 +tp42271 +bsa(dp42272 +g4 +g5 +(g6 +(I0 +tp42273 +g8 +tp42274 +Rp42275 +(I1 +(I7 +tp42276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42277 +tp42278 +bsa(dp42279 +g4 +g5 +(g6 +(I0 +tp42280 +g8 +tp42281 +Rp42282 +(I1 +(I7 +tp42283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42284 +tp42285 +bsa(dp42286 +g4 +g5 +(g6 +(I0 +tp42287 +g8 +tp42288 +Rp42289 +(I1 +(I7 +tp42290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42291 +tp42292 +bsa(dp42293 +g4 +g5 +(g6 +(I0 +tp42294 +g8 +tp42295 +Rp42296 +(I1 +(I7 +tp42297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42298 +tp42299 +bsa(dp42300 +g4 +g5 +(g6 +(I0 +tp42301 +g8 +tp42302 +Rp42303 +(I1 +(I7 +tp42304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42305 +tp42306 +bsa(dp42307 +g4 +g5 +(g6 +(I0 +tp42308 +g8 +tp42309 +Rp42310 +(I1 +(I7 +tp42311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42312 +tp42313 +bsa(dp42314 +g4 +g5 +(g6 +(I0 +tp42315 +g8 +tp42316 +Rp42317 +(I1 +(I7 +tp42318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42319 +tp42320 +bsa(dp42321 +g4 +g5 +(g6 +(I0 +tp42322 +g8 +tp42323 +Rp42324 +(I1 +(I7 +tp42325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42326 +tp42327 +bsa(dp42328 +g4 +g5 +(g6 +(I0 +tp42329 +g8 +tp42330 +Rp42331 +(I1 +(I7 +tp42332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42333 +tp42334 +bsa(dp42335 +g4 +g5 +(g6 +(I0 +tp42336 +g8 +tp42337 +Rp42338 +(I1 +(I7 +tp42339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42340 +tp42341 +bsa(dp42342 +g4 +g5 +(g6 +(I0 +tp42343 +g8 +tp42344 +Rp42345 +(I1 +(I7 +tp42346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42347 +tp42348 +bsa(dp42349 +g4 +g5 +(g6 +(I0 +tp42350 +g8 +tp42351 +Rp42352 +(I1 +(I7 +tp42353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42354 +tp42355 +bsa(dp42356 +g4 +g5 +(g6 +(I0 +tp42357 +g8 +tp42358 +Rp42359 +(I1 +(I7 +tp42360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42361 +tp42362 +bsa(dp42363 +g4 +g5 +(g6 +(I0 +tp42364 +g8 +tp42365 +Rp42366 +(I1 +(I7 +tp42367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42368 +tp42369 +bsa(dp42370 +g4 +g5 +(g6 +(I0 +tp42371 +g8 +tp42372 +Rp42373 +(I1 +(I7 +tp42374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42375 +tp42376 +bsa(dp42377 +g4 +g5 +(g6 +(I0 +tp42378 +g8 +tp42379 +Rp42380 +(I1 +(I7 +tp42381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42382 +tp42383 +bsa(dp42384 +g4 +g5 +(g6 +(I0 +tp42385 +g8 +tp42386 +Rp42387 +(I1 +(I7 +tp42388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42389 +tp42390 +bsa(dp42391 +g4 +g5 +(g6 +(I0 +tp42392 +g8 +tp42393 +Rp42394 +(I1 +(I7 +tp42395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42396 +tp42397 +bsa(dp42398 +g4 +g5 +(g6 +(I0 +tp42399 +g8 +tp42400 +Rp42401 +(I1 +(I7 +tp42402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42403 +tp42404 +bsa(dp42405 +g4 +g5 +(g6 +(I0 +tp42406 +g8 +tp42407 +Rp42408 +(I1 +(I7 +tp42409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42410 +tp42411 +bsa(dp42412 +g4 +g5 +(g6 +(I0 +tp42413 +g8 +tp42414 +Rp42415 +(I1 +(I7 +tp42416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42417 +tp42418 +bsa(dp42419 +g4 +g5 +(g6 +(I0 +tp42420 +g8 +tp42421 +Rp42422 +(I1 +(I7 +tp42423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42424 +tp42425 +bsa(dp42426 +g4 +g5 +(g6 +(I0 +tp42427 +g8 +tp42428 +Rp42429 +(I1 +(I7 +tp42430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42431 +tp42432 +bsa(dp42433 +g4 +g5 +(g6 +(I0 +tp42434 +g8 +tp42435 +Rp42436 +(I1 +(I7 +tp42437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42438 +tp42439 +bsa(dp42440 +g4 +g5 +(g6 +(I0 +tp42441 +g8 +tp42442 +Rp42443 +(I1 +(I7 +tp42444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42445 +tp42446 +bsa(dp42447 +g4 +g5 +(g6 +(I0 +tp42448 +g8 +tp42449 +Rp42450 +(I1 +(I7 +tp42451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42452 +tp42453 +bsa(dp42454 +g4 +g5 +(g6 +(I0 +tp42455 +g8 +tp42456 +Rp42457 +(I1 +(I7 +tp42458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42459 +tp42460 +bsa(dp42461 +g4 +g5 +(g6 +(I0 +tp42462 +g8 +tp42463 +Rp42464 +(I1 +(I7 +tp42465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42466 +tp42467 +bsa(dp42468 +g4 +g5 +(g6 +(I0 +tp42469 +g8 +tp42470 +Rp42471 +(I1 +(I7 +tp42472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42473 +tp42474 +bsa(dp42475 +g4 +g5 +(g6 +(I0 +tp42476 +g8 +tp42477 +Rp42478 +(I1 +(I7 +tp42479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42480 +tp42481 +bsa(dp42482 +g4 +g5 +(g6 +(I0 +tp42483 +g8 +tp42484 +Rp42485 +(I1 +(I7 +tp42486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42487 +tp42488 +bsa(dp42489 +g4 +g5 +(g6 +(I0 +tp42490 +g8 +tp42491 +Rp42492 +(I1 +(I7 +tp42493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42494 +tp42495 +bsa(dp42496 +g4 +g5 +(g6 +(I0 +tp42497 +g8 +tp42498 +Rp42499 +(I1 +(I7 +tp42500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42501 +tp42502 +bsa(dp42503 +g4 +g5 +(g6 +(I0 +tp42504 +g8 +tp42505 +Rp42506 +(I1 +(I7 +tp42507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42508 +tp42509 +bsa(dp42510 +g4 +g5 +(g6 +(I0 +tp42511 +g8 +tp42512 +Rp42513 +(I1 +(I7 +tp42514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42515 +tp42516 +bsa(dp42517 +g4 +g5 +(g6 +(I0 +tp42518 +g8 +tp42519 +Rp42520 +(I1 +(I7 +tp42521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42522 +tp42523 +bsa(dp42524 +g4 +g5 +(g6 +(I0 +tp42525 +g8 +tp42526 +Rp42527 +(I1 +(I7 +tp42528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42529 +tp42530 +bsa(dp42531 +g4 +g5 +(g6 +(I0 +tp42532 +g8 +tp42533 +Rp42534 +(I1 +(I7 +tp42535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42536 +tp42537 +bsa(dp42538 +g4 +g5 +(g6 +(I0 +tp42539 +g8 +tp42540 +Rp42541 +(I1 +(I7 +tp42542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42543 +tp42544 +bsa(dp42545 +g4 +g5 +(g6 +(I0 +tp42546 +g8 +tp42547 +Rp42548 +(I1 +(I7 +tp42549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42550 +tp42551 +bsa(dp42552 +g4 +g5 +(g6 +(I0 +tp42553 +g8 +tp42554 +Rp42555 +(I1 +(I7 +tp42556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42557 +tp42558 +bsa(dp42559 +g4 +g5 +(g6 +(I0 +tp42560 +g8 +tp42561 +Rp42562 +(I1 +(I7 +tp42563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42564 +tp42565 +bsa(dp42566 +g4 +g5 +(g6 +(I0 +tp42567 +g8 +tp42568 +Rp42569 +(I1 +(I7 +tp42570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42571 +tp42572 +bsa(dp42573 +g4 +g5 +(g6 +(I0 +tp42574 +g8 +tp42575 +Rp42576 +(I1 +(I7 +tp42577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42578 +tp42579 +bsa(dp42580 +g4 +g5 +(g6 +(I0 +tp42581 +g8 +tp42582 +Rp42583 +(I1 +(I7 +tp42584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42585 +tp42586 +bsa(dp42587 +g4 +g5 +(g6 +(I0 +tp42588 +g8 +tp42589 +Rp42590 +(I1 +(I7 +tp42591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42592 +tp42593 +bsa(dp42594 +g4 +g5 +(g6 +(I0 +tp42595 +g8 +tp42596 +Rp42597 +(I1 +(I7 +tp42598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42599 +tp42600 +bsa(dp42601 +g4 +g5 +(g6 +(I0 +tp42602 +g8 +tp42603 +Rp42604 +(I1 +(I7 +tp42605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42606 +tp42607 +bsa(dp42608 +g4 +g5 +(g6 +(I0 +tp42609 +g8 +tp42610 +Rp42611 +(I1 +(I7 +tp42612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42613 +tp42614 +bsa(dp42615 +g4 +g5 +(g6 +(I0 +tp42616 +g8 +tp42617 +Rp42618 +(I1 +(I7 +tp42619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42620 +tp42621 +bsa(dp42622 +g4 +g5 +(g6 +(I0 +tp42623 +g8 +tp42624 +Rp42625 +(I1 +(I7 +tp42626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42627 +tp42628 +bsa(dp42629 +g4 +g5 +(g6 +(I0 +tp42630 +g8 +tp42631 +Rp42632 +(I1 +(I7 +tp42633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42634 +tp42635 +bsa(dp42636 +g4 +g5 +(g6 +(I0 +tp42637 +g8 +tp42638 +Rp42639 +(I1 +(I7 +tp42640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42641 +tp42642 +bsa(dp42643 +g4 +g5 +(g6 +(I0 +tp42644 +g8 +tp42645 +Rp42646 +(I1 +(I7 +tp42647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42648 +tp42649 +bsa(dp42650 +g4 +g5 +(g6 +(I0 +tp42651 +g8 +tp42652 +Rp42653 +(I1 +(I7 +tp42654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42655 +tp42656 +bsa(dp42657 +g4 +g5 +(g6 +(I0 +tp42658 +g8 +tp42659 +Rp42660 +(I1 +(I7 +tp42661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42662 +tp42663 +bsa(dp42664 +g4 +g5 +(g6 +(I0 +tp42665 +g8 +tp42666 +Rp42667 +(I1 +(I7 +tp42668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42669 +tp42670 +bsa(dp42671 +g4 +g5 +(g6 +(I0 +tp42672 +g8 +tp42673 +Rp42674 +(I1 +(I7 +tp42675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42676 +tp42677 +bsa(dp42678 +g4 +g5 +(g6 +(I0 +tp42679 +g8 +tp42680 +Rp42681 +(I1 +(I7 +tp42682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42683 +tp42684 +bsa(dp42685 +g4 +g5 +(g6 +(I0 +tp42686 +g8 +tp42687 +Rp42688 +(I1 +(I7 +tp42689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42690 +tp42691 +bsa(dp42692 +g4 +g5 +(g6 +(I0 +tp42693 +g8 +tp42694 +Rp42695 +(I1 +(I7 +tp42696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42697 +tp42698 +bsa(dp42699 +g4 +g5 +(g6 +(I0 +tp42700 +g8 +tp42701 +Rp42702 +(I1 +(I7 +tp42703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42704 +tp42705 +bsa(dp42706 +g4 +g5 +(g6 +(I0 +tp42707 +g8 +tp42708 +Rp42709 +(I1 +(I7 +tp42710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42711 +tp42712 +bsa(dp42713 +g4 +g5 +(g6 +(I0 +tp42714 +g8 +tp42715 +Rp42716 +(I1 +(I7 +tp42717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42718 +tp42719 +bsa(dp42720 +g4 +g5 +(g6 +(I0 +tp42721 +g8 +tp42722 +Rp42723 +(I1 +(I7 +tp42724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42725 +tp42726 +bsa(dp42727 +g4 +g5 +(g6 +(I0 +tp42728 +g8 +tp42729 +Rp42730 +(I1 +(I7 +tp42731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42732 +tp42733 +bsa(dp42734 +g4 +g5 +(g6 +(I0 +tp42735 +g8 +tp42736 +Rp42737 +(I1 +(I7 +tp42738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42739 +tp42740 +bsa(dp42741 +g4 +g5 +(g6 +(I0 +tp42742 +g8 +tp42743 +Rp42744 +(I1 +(I7 +tp42745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42746 +tp42747 +bsa(dp42748 +g4 +g5 +(g6 +(I0 +tp42749 +g8 +tp42750 +Rp42751 +(I1 +(I7 +tp42752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42753 +tp42754 +bsa(dp42755 +g4 +g5 +(g6 +(I0 +tp42756 +g8 +tp42757 +Rp42758 +(I1 +(I7 +tp42759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42760 +tp42761 +bsa(dp42762 +g4 +g5 +(g6 +(I0 +tp42763 +g8 +tp42764 +Rp42765 +(I1 +(I7 +tp42766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42767 +tp42768 +bsa(dp42769 +g4 +g5 +(g6 +(I0 +tp42770 +g8 +tp42771 +Rp42772 +(I1 +(I7 +tp42773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42774 +tp42775 +bsa(dp42776 +g4 +g5 +(g6 +(I0 +tp42777 +g8 +tp42778 +Rp42779 +(I1 +(I7 +tp42780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42781 +tp42782 +bsa(dp42783 +g4 +g5 +(g6 +(I0 +tp42784 +g8 +tp42785 +Rp42786 +(I1 +(I7 +tp42787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42788 +tp42789 +bsa(dp42790 +g4 +g5 +(g6 +(I0 +tp42791 +g8 +tp42792 +Rp42793 +(I1 +(I7 +tp42794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42795 +tp42796 +bsa(dp42797 +g4 +g5 +(g6 +(I0 +tp42798 +g8 +tp42799 +Rp42800 +(I1 +(I7 +tp42801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42802 +tp42803 +bsa(dp42804 +g4 +g5 +(g6 +(I0 +tp42805 +g8 +tp42806 +Rp42807 +(I1 +(I7 +tp42808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42809 +tp42810 +bsa(dp42811 +g4 +g5 +(g6 +(I0 +tp42812 +g8 +tp42813 +Rp42814 +(I1 +(I7 +tp42815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42816 +tp42817 +bsa(dp42818 +g4 +g5 +(g6 +(I0 +tp42819 +g8 +tp42820 +Rp42821 +(I1 +(I7 +tp42822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42823 +tp42824 +bsa(dp42825 +g4 +g5 +(g6 +(I0 +tp42826 +g8 +tp42827 +Rp42828 +(I1 +(I7 +tp42829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42830 +tp42831 +bsa(dp42832 +g4 +g5 +(g6 +(I0 +tp42833 +g8 +tp42834 +Rp42835 +(I1 +(I7 +tp42836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42837 +tp42838 +bsa(dp42839 +g4 +g5 +(g6 +(I0 +tp42840 +g8 +tp42841 +Rp42842 +(I1 +(I7 +tp42843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42844 +tp42845 +bsa(dp42846 +g4 +g5 +(g6 +(I0 +tp42847 +g8 +tp42848 +Rp42849 +(I1 +(I7 +tp42850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42851 +tp42852 +bsa(dp42853 +g4 +g5 +(g6 +(I0 +tp42854 +g8 +tp42855 +Rp42856 +(I1 +(I7 +tp42857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42858 +tp42859 +bsa(dp42860 +g4 +g5 +(g6 +(I0 +tp42861 +g8 +tp42862 +Rp42863 +(I1 +(I7 +tp42864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42865 +tp42866 +bsa(dp42867 +g4 +g5 +(g6 +(I0 +tp42868 +g8 +tp42869 +Rp42870 +(I1 +(I7 +tp42871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42872 +tp42873 +bsa(dp42874 +g4 +g5 +(g6 +(I0 +tp42875 +g8 +tp42876 +Rp42877 +(I1 +(I7 +tp42878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42879 +tp42880 +bsa(dp42881 +g4 +g5 +(g6 +(I0 +tp42882 +g8 +tp42883 +Rp42884 +(I1 +(I7 +tp42885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42886 +tp42887 +bsa(dp42888 +g4 +g5 +(g6 +(I0 +tp42889 +g8 +tp42890 +Rp42891 +(I1 +(I7 +tp42892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42893 +tp42894 +bsa(dp42895 +g4 +g5 +(g6 +(I0 +tp42896 +g8 +tp42897 +Rp42898 +(I1 +(I7 +tp42899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42900 +tp42901 +bsa(dp42902 +g4 +g5 +(g6 +(I0 +tp42903 +g8 +tp42904 +Rp42905 +(I1 +(I7 +tp42906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42907 +tp42908 +bsa(dp42909 +g4 +g5 +(g6 +(I0 +tp42910 +g8 +tp42911 +Rp42912 +(I1 +(I7 +tp42913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42914 +tp42915 +bsa(dp42916 +g4 +g5 +(g6 +(I0 +tp42917 +g8 +tp42918 +Rp42919 +(I1 +(I7 +tp42920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42921 +tp42922 +bsa(dp42923 +g4 +g5 +(g6 +(I0 +tp42924 +g8 +tp42925 +Rp42926 +(I1 +(I7 +tp42927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42928 +tp42929 +bsa(dp42930 +g4 +g5 +(g6 +(I0 +tp42931 +g8 +tp42932 +Rp42933 +(I1 +(I7 +tp42934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42935 +tp42936 +bsa(dp42937 +g4 +g5 +(g6 +(I0 +tp42938 +g8 +tp42939 +Rp42940 +(I1 +(I7 +tp42941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42942 +tp42943 +bsa(dp42944 +g4 +g5 +(g6 +(I0 +tp42945 +g8 +tp42946 +Rp42947 +(I1 +(I7 +tp42948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42949 +tp42950 +bsa(dp42951 +g4 +g5 +(g6 +(I0 +tp42952 +g8 +tp42953 +Rp42954 +(I1 +(I7 +tp42955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p42956 +tp42957 +bsa(dp42958 +g4 +g5 +(g6 +(I0 +tp42959 +g8 +tp42960 +Rp42961 +(I1 +(I7 +tp42962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42963 +tp42964 +bsa(dp42965 +g4 +g5 +(g6 +(I0 +tp42966 +g8 +tp42967 +Rp42968 +(I1 +(I7 +tp42969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42970 +tp42971 +bsa(dp42972 +g4 +g5 +(g6 +(I0 +tp42973 +g8 +tp42974 +Rp42975 +(I1 +(I7 +tp42976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42977 +tp42978 +bsa(dp42979 +g4 +g5 +(g6 +(I0 +tp42980 +g8 +tp42981 +Rp42982 +(I1 +(I7 +tp42983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42984 +tp42985 +bsa(dp42986 +g4 +g5 +(g6 +(I0 +tp42987 +g8 +tp42988 +Rp42989 +(I1 +(I7 +tp42990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p42991 +tp42992 +bsa(dp42993 +g4 +g5 +(g6 +(I0 +tp42994 +g8 +tp42995 +Rp42996 +(I1 +(I7 +tp42997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p42998 +tp42999 +bsa(dp43000 +g4 +g5 +(g6 +(I0 +tp43001 +g8 +tp43002 +Rp43003 +(I1 +(I7 +tp43004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43005 +tp43006 +bsa(dp43007 +g4 +g5 +(g6 +(I0 +tp43008 +g8 +tp43009 +Rp43010 +(I1 +(I7 +tp43011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43012 +tp43013 +bsa(dp43014 +g4 +g5 +(g6 +(I0 +tp43015 +g8 +tp43016 +Rp43017 +(I1 +(I7 +tp43018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43019 +tp43020 +bsa(dp43021 +g4 +g5 +(g6 +(I0 +tp43022 +g8 +tp43023 +Rp43024 +(I1 +(I7 +tp43025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43026 +tp43027 +bsa(dp43028 +g4 +g5 +(g6 +(I0 +tp43029 +g8 +tp43030 +Rp43031 +(I1 +(I7 +tp43032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43033 +tp43034 +bsa(dp43035 +g4 +g5 +(g6 +(I0 +tp43036 +g8 +tp43037 +Rp43038 +(I1 +(I7 +tp43039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43040 +tp43041 +bsa(dp43042 +g4 +g5 +(g6 +(I0 +tp43043 +g8 +tp43044 +Rp43045 +(I1 +(I7 +tp43046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43047 +tp43048 +bsa(dp43049 +g4 +g5 +(g6 +(I0 +tp43050 +g8 +tp43051 +Rp43052 +(I1 +(I7 +tp43053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43054 +tp43055 +bsa(dp43056 +g4 +g5 +(g6 +(I0 +tp43057 +g8 +tp43058 +Rp43059 +(I1 +(I7 +tp43060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43061 +tp43062 +bsa(dp43063 +g4 +g5 +(g6 +(I0 +tp43064 +g8 +tp43065 +Rp43066 +(I1 +(I7 +tp43067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43068 +tp43069 +bsa(dp43070 +g4 +g5 +(g6 +(I0 +tp43071 +g8 +tp43072 +Rp43073 +(I1 +(I7 +tp43074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43075 +tp43076 +bsa(dp43077 +g4 +g5 +(g6 +(I0 +tp43078 +g8 +tp43079 +Rp43080 +(I1 +(I7 +tp43081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43082 +tp43083 +bsa(dp43084 +g4 +g5 +(g6 +(I0 +tp43085 +g8 +tp43086 +Rp43087 +(I1 +(I7 +tp43088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43089 +tp43090 +bsa(dp43091 +g4 +g5 +(g6 +(I0 +tp43092 +g8 +tp43093 +Rp43094 +(I1 +(I7 +tp43095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43096 +tp43097 +bsa(dp43098 +g4 +g5 +(g6 +(I0 +tp43099 +g8 +tp43100 +Rp43101 +(I1 +(I7 +tp43102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43103 +tp43104 +bsa(dp43105 +g4 +g5 +(g6 +(I0 +tp43106 +g8 +tp43107 +Rp43108 +(I1 +(I7 +tp43109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43110 +tp43111 +bsa(dp43112 +g4 +g5 +(g6 +(I0 +tp43113 +g8 +tp43114 +Rp43115 +(I1 +(I7 +tp43116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43117 +tp43118 +bsa(dp43119 +g4 +g5 +(g6 +(I0 +tp43120 +g8 +tp43121 +Rp43122 +(I1 +(I7 +tp43123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43124 +tp43125 +bsa(dp43126 +g4 +g5 +(g6 +(I0 +tp43127 +g8 +tp43128 +Rp43129 +(I1 +(I7 +tp43130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43131 +tp43132 +bsa(dp43133 +g4 +g5 +(g6 +(I0 +tp43134 +g8 +tp43135 +Rp43136 +(I1 +(I7 +tp43137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43138 +tp43139 +bsa(dp43140 +g4 +g5 +(g6 +(I0 +tp43141 +g8 +tp43142 +Rp43143 +(I1 +(I7 +tp43144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43145 +tp43146 +bsa(dp43147 +g4 +g5 +(g6 +(I0 +tp43148 +g8 +tp43149 +Rp43150 +(I1 +(I7 +tp43151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43152 +tp43153 +bsa(dp43154 +g4 +g5 +(g6 +(I0 +tp43155 +g8 +tp43156 +Rp43157 +(I1 +(I7 +tp43158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43159 +tp43160 +bsa(dp43161 +g4 +g5 +(g6 +(I0 +tp43162 +g8 +tp43163 +Rp43164 +(I1 +(I7 +tp43165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43166 +tp43167 +bsa(dp43168 +g4 +g5 +(g6 +(I0 +tp43169 +g8 +tp43170 +Rp43171 +(I1 +(I7 +tp43172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43173 +tp43174 +bsa(dp43175 +g4 +g5 +(g6 +(I0 +tp43176 +g8 +tp43177 +Rp43178 +(I1 +(I7 +tp43179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43180 +tp43181 +bsa(dp43182 +g4 +g5 +(g6 +(I0 +tp43183 +g8 +tp43184 +Rp43185 +(I1 +(I7 +tp43186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43187 +tp43188 +bsa(dp43189 +g4 +g5 +(g6 +(I0 +tp43190 +g8 +tp43191 +Rp43192 +(I1 +(I7 +tp43193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43194 +tp43195 +bsa(dp43196 +g4 +g5 +(g6 +(I0 +tp43197 +g8 +tp43198 +Rp43199 +(I1 +(I7 +tp43200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43201 +tp43202 +bsa(dp43203 +g4 +g5 +(g6 +(I0 +tp43204 +g8 +tp43205 +Rp43206 +(I1 +(I7 +tp43207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43208 +tp43209 +bsa(dp43210 +g4 +g5 +(g6 +(I0 +tp43211 +g8 +tp43212 +Rp43213 +(I1 +(I7 +tp43214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43215 +tp43216 +bsa(dp43217 +g4 +g5 +(g6 +(I0 +tp43218 +g8 +tp43219 +Rp43220 +(I1 +(I7 +tp43221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43222 +tp43223 +bsa(dp43224 +g4 +g5 +(g6 +(I0 +tp43225 +g8 +tp43226 +Rp43227 +(I1 +(I7 +tp43228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43229 +tp43230 +bsa(dp43231 +g4 +g5 +(g6 +(I0 +tp43232 +g8 +tp43233 +Rp43234 +(I1 +(I7 +tp43235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43236 +tp43237 +bsa(dp43238 +g4 +g5 +(g6 +(I0 +tp43239 +g8 +tp43240 +Rp43241 +(I1 +(I7 +tp43242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43243 +tp43244 +bsa(dp43245 +g4 +g5 +(g6 +(I0 +tp43246 +g8 +tp43247 +Rp43248 +(I1 +(I7 +tp43249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43250 +tp43251 +bsa(dp43252 +g4 +g5 +(g6 +(I0 +tp43253 +g8 +tp43254 +Rp43255 +(I1 +(I7 +tp43256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43257 +tp43258 +bsa(dp43259 +g4 +g5 +(g6 +(I0 +tp43260 +g8 +tp43261 +Rp43262 +(I1 +(I7 +tp43263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43264 +tp43265 +bsa(dp43266 +g4 +g5 +(g6 +(I0 +tp43267 +g8 +tp43268 +Rp43269 +(I1 +(I7 +tp43270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43271 +tp43272 +bsa(dp43273 +g4 +g5 +(g6 +(I0 +tp43274 +g8 +tp43275 +Rp43276 +(I1 +(I7 +tp43277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43278 +tp43279 +bsa(dp43280 +g4 +g5 +(g6 +(I0 +tp43281 +g8 +tp43282 +Rp43283 +(I1 +(I7 +tp43284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43285 +tp43286 +bsa(dp43287 +g4 +g5 +(g6 +(I0 +tp43288 +g8 +tp43289 +Rp43290 +(I1 +(I7 +tp43291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43292 +tp43293 +bsa(dp43294 +g4 +g5 +(g6 +(I0 +tp43295 +g8 +tp43296 +Rp43297 +(I1 +(I7 +tp43298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43299 +tp43300 +bsa(dp43301 +g4 +g5 +(g6 +(I0 +tp43302 +g8 +tp43303 +Rp43304 +(I1 +(I7 +tp43305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43306 +tp43307 +bsa(dp43308 +g4 +g5 +(g6 +(I0 +tp43309 +g8 +tp43310 +Rp43311 +(I1 +(I7 +tp43312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43313 +tp43314 +bsa(dp43315 +g4 +g5 +(g6 +(I0 +tp43316 +g8 +tp43317 +Rp43318 +(I1 +(I7 +tp43319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43320 +tp43321 +bsa(dp43322 +g4 +g5 +(g6 +(I0 +tp43323 +g8 +tp43324 +Rp43325 +(I1 +(I7 +tp43326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43327 +tp43328 +bsa(dp43329 +g4 +g5 +(g6 +(I0 +tp43330 +g8 +tp43331 +Rp43332 +(I1 +(I7 +tp43333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43334 +tp43335 +bsa(dp43336 +g4 +g5 +(g6 +(I0 +tp43337 +g8 +tp43338 +Rp43339 +(I1 +(I7 +tp43340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43341 +tp43342 +bsa(dp43343 +g4 +g5 +(g6 +(I0 +tp43344 +g8 +tp43345 +Rp43346 +(I1 +(I7 +tp43347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43348 +tp43349 +bsa(dp43350 +g4 +g5 +(g6 +(I0 +tp43351 +g8 +tp43352 +Rp43353 +(I1 +(I7 +tp43354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43355 +tp43356 +bsa(dp43357 +g4 +g5 +(g6 +(I0 +tp43358 +g8 +tp43359 +Rp43360 +(I1 +(I7 +tp43361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43362 +tp43363 +bsa(dp43364 +g4 +g5 +(g6 +(I0 +tp43365 +g8 +tp43366 +Rp43367 +(I1 +(I7 +tp43368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43369 +tp43370 +bsa(dp43371 +g4 +g5 +(g6 +(I0 +tp43372 +g8 +tp43373 +Rp43374 +(I1 +(I7 +tp43375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43376 +tp43377 +bsa(dp43378 +g4 +g5 +(g6 +(I0 +tp43379 +g8 +tp43380 +Rp43381 +(I1 +(I7 +tp43382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43383 +tp43384 +bsa(dp43385 +g4 +g5 +(g6 +(I0 +tp43386 +g8 +tp43387 +Rp43388 +(I1 +(I7 +tp43389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43390 +tp43391 +bsa(dp43392 +g4 +g5 +(g6 +(I0 +tp43393 +g8 +tp43394 +Rp43395 +(I1 +(I7 +tp43396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43397 +tp43398 +bsa(dp43399 +g4 +g5 +(g6 +(I0 +tp43400 +g8 +tp43401 +Rp43402 +(I1 +(I7 +tp43403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43404 +tp43405 +bsa(dp43406 +g4 +g5 +(g6 +(I0 +tp43407 +g8 +tp43408 +Rp43409 +(I1 +(I7 +tp43410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43411 +tp43412 +bsa(dp43413 +g4 +g5 +(g6 +(I0 +tp43414 +g8 +tp43415 +Rp43416 +(I1 +(I7 +tp43417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43418 +tp43419 +bsa(dp43420 +g4 +g5 +(g6 +(I0 +tp43421 +g8 +tp43422 +Rp43423 +(I1 +(I7 +tp43424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43425 +tp43426 +bsa(dp43427 +g4 +g5 +(g6 +(I0 +tp43428 +g8 +tp43429 +Rp43430 +(I1 +(I7 +tp43431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43432 +tp43433 +bsa(dp43434 +g4 +g5 +(g6 +(I0 +tp43435 +g8 +tp43436 +Rp43437 +(I1 +(I7 +tp43438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43439 +tp43440 +bsa(dp43441 +g4 +g5 +(g6 +(I0 +tp43442 +g8 +tp43443 +Rp43444 +(I1 +(I7 +tp43445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43446 +tp43447 +bsa(dp43448 +g4 +g5 +(g6 +(I0 +tp43449 +g8 +tp43450 +Rp43451 +(I1 +(I7 +tp43452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43453 +tp43454 +bsa(dp43455 +g4 +g5 +(g6 +(I0 +tp43456 +g8 +tp43457 +Rp43458 +(I1 +(I7 +tp43459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43460 +tp43461 +bsa(dp43462 +g4 +g5 +(g6 +(I0 +tp43463 +g8 +tp43464 +Rp43465 +(I1 +(I7 +tp43466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43467 +tp43468 +bsa(dp43469 +g4 +g5 +(g6 +(I0 +tp43470 +g8 +tp43471 +Rp43472 +(I1 +(I7 +tp43473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43474 +tp43475 +bsa(dp43476 +g4 +g5 +(g6 +(I0 +tp43477 +g8 +tp43478 +Rp43479 +(I1 +(I7 +tp43480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43481 +tp43482 +bsa(dp43483 +g4 +g5 +(g6 +(I0 +tp43484 +g8 +tp43485 +Rp43486 +(I1 +(I7 +tp43487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43488 +tp43489 +bsa(dp43490 +g4 +g5 +(g6 +(I0 +tp43491 +g8 +tp43492 +Rp43493 +(I1 +(I7 +tp43494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43495 +tp43496 +bsa(dp43497 +g4 +g5 +(g6 +(I0 +tp43498 +g8 +tp43499 +Rp43500 +(I1 +(I7 +tp43501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43502 +tp43503 +bsa(dp43504 +g4 +g5 +(g6 +(I0 +tp43505 +g8 +tp43506 +Rp43507 +(I1 +(I7 +tp43508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43509 +tp43510 +bsa(dp43511 +g4 +g5 +(g6 +(I0 +tp43512 +g8 +tp43513 +Rp43514 +(I1 +(I7 +tp43515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43516 +tp43517 +bsa(dp43518 +g4 +g5 +(g6 +(I0 +tp43519 +g8 +tp43520 +Rp43521 +(I1 +(I7 +tp43522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43523 +tp43524 +bsa(dp43525 +g4 +g5 +(g6 +(I0 +tp43526 +g8 +tp43527 +Rp43528 +(I1 +(I7 +tp43529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43530 +tp43531 +bsa(dp43532 +g4 +g5 +(g6 +(I0 +tp43533 +g8 +tp43534 +Rp43535 +(I1 +(I7 +tp43536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43537 +tp43538 +bsa(dp43539 +g4 +g5 +(g6 +(I0 +tp43540 +g8 +tp43541 +Rp43542 +(I1 +(I7 +tp43543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43544 +tp43545 +bsa(dp43546 +g4 +g5 +(g6 +(I0 +tp43547 +g8 +tp43548 +Rp43549 +(I1 +(I7 +tp43550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43551 +tp43552 +bsa(dp43553 +g4 +g5 +(g6 +(I0 +tp43554 +g8 +tp43555 +Rp43556 +(I1 +(I7 +tp43557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43558 +tp43559 +bsa(dp43560 +g4 +g5 +(g6 +(I0 +tp43561 +g8 +tp43562 +Rp43563 +(I1 +(I7 +tp43564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43565 +tp43566 +bsa(dp43567 +g4 +g5 +(g6 +(I0 +tp43568 +g8 +tp43569 +Rp43570 +(I1 +(I7 +tp43571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43572 +tp43573 +bsa(dp43574 +g4 +g5 +(g6 +(I0 +tp43575 +g8 +tp43576 +Rp43577 +(I1 +(I7 +tp43578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43579 +tp43580 +bsa(dp43581 +g4 +g5 +(g6 +(I0 +tp43582 +g8 +tp43583 +Rp43584 +(I1 +(I7 +tp43585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43586 +tp43587 +bsa(dp43588 +g4 +g5 +(g6 +(I0 +tp43589 +g8 +tp43590 +Rp43591 +(I1 +(I7 +tp43592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43593 +tp43594 +bsa(dp43595 +g4 +g5 +(g6 +(I0 +tp43596 +g8 +tp43597 +Rp43598 +(I1 +(I7 +tp43599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43600 +tp43601 +bsa(dp43602 +g4 +g5 +(g6 +(I0 +tp43603 +g8 +tp43604 +Rp43605 +(I1 +(I7 +tp43606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43607 +tp43608 +bsa(dp43609 +g4 +g5 +(g6 +(I0 +tp43610 +g8 +tp43611 +Rp43612 +(I1 +(I7 +tp43613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43614 +tp43615 +bsa(dp43616 +g4 +g5 +(g6 +(I0 +tp43617 +g8 +tp43618 +Rp43619 +(I1 +(I7 +tp43620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43621 +tp43622 +bsa(dp43623 +g4 +g5 +(g6 +(I0 +tp43624 +g8 +tp43625 +Rp43626 +(I1 +(I7 +tp43627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43628 +tp43629 +bsa(dp43630 +g4 +g5 +(g6 +(I0 +tp43631 +g8 +tp43632 +Rp43633 +(I1 +(I7 +tp43634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43635 +tp43636 +bsa(dp43637 +g4 +g5 +(g6 +(I0 +tp43638 +g8 +tp43639 +Rp43640 +(I1 +(I7 +tp43641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43642 +tp43643 +bsa(dp43644 +g4 +g5 +(g6 +(I0 +tp43645 +g8 +tp43646 +Rp43647 +(I1 +(I7 +tp43648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43649 +tp43650 +bsa(dp43651 +g4 +g5 +(g6 +(I0 +tp43652 +g8 +tp43653 +Rp43654 +(I1 +(I7 +tp43655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43656 +tp43657 +bsa(dp43658 +g4 +g5 +(g6 +(I0 +tp43659 +g8 +tp43660 +Rp43661 +(I1 +(I7 +tp43662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43663 +tp43664 +bsa(dp43665 +g4 +g5 +(g6 +(I0 +tp43666 +g8 +tp43667 +Rp43668 +(I1 +(I7 +tp43669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43670 +tp43671 +bsa(dp43672 +g4 +g5 +(g6 +(I0 +tp43673 +g8 +tp43674 +Rp43675 +(I1 +(I7 +tp43676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43677 +tp43678 +bsa(dp43679 +g4 +g5 +(g6 +(I0 +tp43680 +g8 +tp43681 +Rp43682 +(I1 +(I7 +tp43683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43684 +tp43685 +bsa(dp43686 +g4 +g5 +(g6 +(I0 +tp43687 +g8 +tp43688 +Rp43689 +(I1 +(I7 +tp43690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43691 +tp43692 +bsa(dp43693 +g4 +g5 +(g6 +(I0 +tp43694 +g8 +tp43695 +Rp43696 +(I1 +(I7 +tp43697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43698 +tp43699 +bsa(dp43700 +g4 +g5 +(g6 +(I0 +tp43701 +g8 +tp43702 +Rp43703 +(I1 +(I7 +tp43704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43705 +tp43706 +bsa(dp43707 +g4 +g5 +(g6 +(I0 +tp43708 +g8 +tp43709 +Rp43710 +(I1 +(I7 +tp43711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43712 +tp43713 +bsa(dp43714 +g4 +g5 +(g6 +(I0 +tp43715 +g8 +tp43716 +Rp43717 +(I1 +(I7 +tp43718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43719 +tp43720 +bsa(dp43721 +g4 +g5 +(g6 +(I0 +tp43722 +g8 +tp43723 +Rp43724 +(I1 +(I7 +tp43725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43726 +tp43727 +bsa(dp43728 +g4 +g5 +(g6 +(I0 +tp43729 +g8 +tp43730 +Rp43731 +(I1 +(I7 +tp43732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43733 +tp43734 +bsa(dp43735 +g4 +g5 +(g6 +(I0 +tp43736 +g8 +tp43737 +Rp43738 +(I1 +(I7 +tp43739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43740 +tp43741 +bsa(dp43742 +g4 +g5 +(g6 +(I0 +tp43743 +g8 +tp43744 +Rp43745 +(I1 +(I7 +tp43746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43747 +tp43748 +bsa(dp43749 +g4 +g5 +(g6 +(I0 +tp43750 +g8 +tp43751 +Rp43752 +(I1 +(I7 +tp43753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43754 +tp43755 +bsa(dp43756 +g4 +g5 +(g6 +(I0 +tp43757 +g8 +tp43758 +Rp43759 +(I1 +(I7 +tp43760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43761 +tp43762 +bsa(dp43763 +g4 +g5 +(g6 +(I0 +tp43764 +g8 +tp43765 +Rp43766 +(I1 +(I7 +tp43767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43768 +tp43769 +bsa(dp43770 +g4 +g5 +(g6 +(I0 +tp43771 +g8 +tp43772 +Rp43773 +(I1 +(I7 +tp43774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43775 +tp43776 +bsa(dp43777 +g4 +g5 +(g6 +(I0 +tp43778 +g8 +tp43779 +Rp43780 +(I1 +(I7 +tp43781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43782 +tp43783 +bsa(dp43784 +g4 +g5 +(g6 +(I0 +tp43785 +g8 +tp43786 +Rp43787 +(I1 +(I7 +tp43788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43789 +tp43790 +bsa(dp43791 +g4 +g5 +(g6 +(I0 +tp43792 +g8 +tp43793 +Rp43794 +(I1 +(I7 +tp43795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43796 +tp43797 +bsa(dp43798 +g4 +g5 +(g6 +(I0 +tp43799 +g8 +tp43800 +Rp43801 +(I1 +(I7 +tp43802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43803 +tp43804 +bsa(dp43805 +g4 +g5 +(g6 +(I0 +tp43806 +g8 +tp43807 +Rp43808 +(I1 +(I7 +tp43809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43810 +tp43811 +bsa(dp43812 +g4 +g5 +(g6 +(I0 +tp43813 +g8 +tp43814 +Rp43815 +(I1 +(I7 +tp43816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43817 +tp43818 +bsa(dp43819 +g4 +g5 +(g6 +(I0 +tp43820 +g8 +tp43821 +Rp43822 +(I1 +(I7 +tp43823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43824 +tp43825 +bsa(dp43826 +g4 +g5 +(g6 +(I0 +tp43827 +g8 +tp43828 +Rp43829 +(I1 +(I7 +tp43830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43831 +tp43832 +bsa(dp43833 +g4 +g5 +(g6 +(I0 +tp43834 +g8 +tp43835 +Rp43836 +(I1 +(I7 +tp43837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43838 +tp43839 +bsa(dp43840 +g4 +g5 +(g6 +(I0 +tp43841 +g8 +tp43842 +Rp43843 +(I1 +(I7 +tp43844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43845 +tp43846 +bsa(dp43847 +g4 +g5 +(g6 +(I0 +tp43848 +g8 +tp43849 +Rp43850 +(I1 +(I7 +tp43851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43852 +tp43853 +bsa(dp43854 +g4 +g5 +(g6 +(I0 +tp43855 +g8 +tp43856 +Rp43857 +(I1 +(I7 +tp43858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43859 +tp43860 +bsa(dp43861 +g4 +g5 +(g6 +(I0 +tp43862 +g8 +tp43863 +Rp43864 +(I1 +(I7 +tp43865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43866 +tp43867 +bsa(dp43868 +g4 +g5 +(g6 +(I0 +tp43869 +g8 +tp43870 +Rp43871 +(I1 +(I7 +tp43872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43873 +tp43874 +bsa(dp43875 +g4 +g5 +(g6 +(I0 +tp43876 +g8 +tp43877 +Rp43878 +(I1 +(I7 +tp43879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43880 +tp43881 +bsa(dp43882 +g4 +g5 +(g6 +(I0 +tp43883 +g8 +tp43884 +Rp43885 +(I1 +(I7 +tp43886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43887 +tp43888 +bsa(dp43889 +g4 +g5 +(g6 +(I0 +tp43890 +g8 +tp43891 +Rp43892 +(I1 +(I7 +tp43893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43894 +tp43895 +bsa(dp43896 +g4 +g5 +(g6 +(I0 +tp43897 +g8 +tp43898 +Rp43899 +(I1 +(I7 +tp43900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43901 +tp43902 +bsa(dp43903 +g4 +g5 +(g6 +(I0 +tp43904 +g8 +tp43905 +Rp43906 +(I1 +(I7 +tp43907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43908 +tp43909 +bsa(dp43910 +g4 +g5 +(g6 +(I0 +tp43911 +g8 +tp43912 +Rp43913 +(I1 +(I7 +tp43914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43915 +tp43916 +bsa(dp43917 +g4 +g5 +(g6 +(I0 +tp43918 +g8 +tp43919 +Rp43920 +(I1 +(I7 +tp43921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43922 +tp43923 +bsa(dp43924 +g4 +g5 +(g6 +(I0 +tp43925 +g8 +tp43926 +Rp43927 +(I1 +(I7 +tp43928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43929 +tp43930 +bsa(dp43931 +g4 +g5 +(g6 +(I0 +tp43932 +g8 +tp43933 +Rp43934 +(I1 +(I7 +tp43935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43936 +tp43937 +bsa(dp43938 +g4 +g5 +(g6 +(I0 +tp43939 +g8 +tp43940 +Rp43941 +(I1 +(I7 +tp43942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43943 +tp43944 +bsa(dp43945 +g4 +g5 +(g6 +(I0 +tp43946 +g8 +tp43947 +Rp43948 +(I1 +(I7 +tp43949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43950 +tp43951 +bsa(dp43952 +g4 +g5 +(g6 +(I0 +tp43953 +g8 +tp43954 +Rp43955 +(I1 +(I7 +tp43956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p43957 +tp43958 +bsa(dp43959 +g4 +g5 +(g6 +(I0 +tp43960 +g8 +tp43961 +Rp43962 +(I1 +(I7 +tp43963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43964 +tp43965 +bsa(dp43966 +g4 +g5 +(g6 +(I0 +tp43967 +g8 +tp43968 +Rp43969 +(I1 +(I7 +tp43970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43971 +tp43972 +bsa(dp43973 +g4 +g5 +(g6 +(I0 +tp43974 +g8 +tp43975 +Rp43976 +(I1 +(I7 +tp43977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43978 +tp43979 +bsa(dp43980 +g4 +g5 +(g6 +(I0 +tp43981 +g8 +tp43982 +Rp43983 +(I1 +(I7 +tp43984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43985 +tp43986 +bsa(dp43987 +g4 +g5 +(g6 +(I0 +tp43988 +g8 +tp43989 +Rp43990 +(I1 +(I7 +tp43991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p43992 +tp43993 +bsa(dp43994 +g4 +g5 +(g6 +(I0 +tp43995 +g8 +tp43996 +Rp43997 +(I1 +(I7 +tp43998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p43999 +tp44000 +bsa(dp44001 +g4 +g5 +(g6 +(I0 +tp44002 +g8 +tp44003 +Rp44004 +(I1 +(I7 +tp44005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44006 +tp44007 +bsa(dp44008 +g4 +g5 +(g6 +(I0 +tp44009 +g8 +tp44010 +Rp44011 +(I1 +(I7 +tp44012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44013 +tp44014 +bsa(dp44015 +g4 +g5 +(g6 +(I0 +tp44016 +g8 +tp44017 +Rp44018 +(I1 +(I7 +tp44019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44020 +tp44021 +bsa(dp44022 +g4 +g5 +(g6 +(I0 +tp44023 +g8 +tp44024 +Rp44025 +(I1 +(I7 +tp44026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44027 +tp44028 +bsa(dp44029 +g4 +g5 +(g6 +(I0 +tp44030 +g8 +tp44031 +Rp44032 +(I1 +(I7 +tp44033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44034 +tp44035 +bsa(dp44036 +g4 +g5 +(g6 +(I0 +tp44037 +g8 +tp44038 +Rp44039 +(I1 +(I7 +tp44040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44041 +tp44042 +bsa(dp44043 +g4 +g5 +(g6 +(I0 +tp44044 +g8 +tp44045 +Rp44046 +(I1 +(I7 +tp44047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44048 +tp44049 +bsa(dp44050 +g4 +g5 +(g6 +(I0 +tp44051 +g8 +tp44052 +Rp44053 +(I1 +(I7 +tp44054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44055 +tp44056 +bsa(dp44057 +g4 +g5 +(g6 +(I0 +tp44058 +g8 +tp44059 +Rp44060 +(I1 +(I7 +tp44061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44062 +tp44063 +bsa(dp44064 +g4 +g5 +(g6 +(I0 +tp44065 +g8 +tp44066 +Rp44067 +(I1 +(I7 +tp44068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44069 +tp44070 +bsa(dp44071 +g4 +g5 +(g6 +(I0 +tp44072 +g8 +tp44073 +Rp44074 +(I1 +(I7 +tp44075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44076 +tp44077 +bsa(dp44078 +g4 +g5 +(g6 +(I0 +tp44079 +g8 +tp44080 +Rp44081 +(I1 +(I7 +tp44082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44083 +tp44084 +bsa(dp44085 +g4 +g5 +(g6 +(I0 +tp44086 +g8 +tp44087 +Rp44088 +(I1 +(I7 +tp44089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44090 +tp44091 +bsa(dp44092 +g4 +g5 +(g6 +(I0 +tp44093 +g8 +tp44094 +Rp44095 +(I1 +(I7 +tp44096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44097 +tp44098 +bsa(dp44099 +g4 +g5 +(g6 +(I0 +tp44100 +g8 +tp44101 +Rp44102 +(I1 +(I7 +tp44103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44104 +tp44105 +bsa(dp44106 +g4 +g5 +(g6 +(I0 +tp44107 +g8 +tp44108 +Rp44109 +(I1 +(I7 +tp44110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44111 +tp44112 +bsa(dp44113 +g4 +g5 +(g6 +(I0 +tp44114 +g8 +tp44115 +Rp44116 +(I1 +(I7 +tp44117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44118 +tp44119 +bsa(dp44120 +g4 +g5 +(g6 +(I0 +tp44121 +g8 +tp44122 +Rp44123 +(I1 +(I7 +tp44124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44125 +tp44126 +bsa(dp44127 +g4 +g5 +(g6 +(I0 +tp44128 +g8 +tp44129 +Rp44130 +(I1 +(I7 +tp44131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44132 +tp44133 +bsa(dp44134 +g4 +g5 +(g6 +(I0 +tp44135 +g8 +tp44136 +Rp44137 +(I1 +(I7 +tp44138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44139 +tp44140 +bsa(dp44141 +g4 +g5 +(g6 +(I0 +tp44142 +g8 +tp44143 +Rp44144 +(I1 +(I7 +tp44145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44146 +tp44147 +bsa(dp44148 +g4 +g5 +(g6 +(I0 +tp44149 +g8 +tp44150 +Rp44151 +(I1 +(I7 +tp44152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44153 +tp44154 +bsa(dp44155 +g4 +g5 +(g6 +(I0 +tp44156 +g8 +tp44157 +Rp44158 +(I1 +(I7 +tp44159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44160 +tp44161 +bsa(dp44162 +g4 +g5 +(g6 +(I0 +tp44163 +g8 +tp44164 +Rp44165 +(I1 +(I7 +tp44166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44167 +tp44168 +bsa(dp44169 +g4 +g5 +(g6 +(I0 +tp44170 +g8 +tp44171 +Rp44172 +(I1 +(I7 +tp44173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44174 +tp44175 +bsa(dp44176 +g4 +g5 +(g6 +(I0 +tp44177 +g8 +tp44178 +Rp44179 +(I1 +(I7 +tp44180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44181 +tp44182 +bsa(dp44183 +g4 +g5 +(g6 +(I0 +tp44184 +g8 +tp44185 +Rp44186 +(I1 +(I7 +tp44187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44188 +tp44189 +bsa(dp44190 +g4 +g5 +(g6 +(I0 +tp44191 +g8 +tp44192 +Rp44193 +(I1 +(I7 +tp44194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44195 +tp44196 +bsa(dp44197 +g4 +g5 +(g6 +(I0 +tp44198 +g8 +tp44199 +Rp44200 +(I1 +(I7 +tp44201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44202 +tp44203 +bsa(dp44204 +g4 +g5 +(g6 +(I0 +tp44205 +g8 +tp44206 +Rp44207 +(I1 +(I7 +tp44208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44209 +tp44210 +bsa(dp44211 +g4 +g5 +(g6 +(I0 +tp44212 +g8 +tp44213 +Rp44214 +(I1 +(I7 +tp44215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44216 +tp44217 +bsa(dp44218 +g4 +g5 +(g6 +(I0 +tp44219 +g8 +tp44220 +Rp44221 +(I1 +(I7 +tp44222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44223 +tp44224 +bsa(dp44225 +g4 +g5 +(g6 +(I0 +tp44226 +g8 +tp44227 +Rp44228 +(I1 +(I7 +tp44229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44230 +tp44231 +bsa(dp44232 +g4 +g5 +(g6 +(I0 +tp44233 +g8 +tp44234 +Rp44235 +(I1 +(I7 +tp44236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44237 +tp44238 +bsa(dp44239 +g4 +g5 +(g6 +(I0 +tp44240 +g8 +tp44241 +Rp44242 +(I1 +(I7 +tp44243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44244 +tp44245 +bsa(dp44246 +g4 +g5 +(g6 +(I0 +tp44247 +g8 +tp44248 +Rp44249 +(I1 +(I7 +tp44250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44251 +tp44252 +bsa(dp44253 +g4 +g5 +(g6 +(I0 +tp44254 +g8 +tp44255 +Rp44256 +(I1 +(I7 +tp44257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44258 +tp44259 +bsa(dp44260 +g4 +g5 +(g6 +(I0 +tp44261 +g8 +tp44262 +Rp44263 +(I1 +(I7 +tp44264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44265 +tp44266 +bsa(dp44267 +g4 +g5 +(g6 +(I0 +tp44268 +g8 +tp44269 +Rp44270 +(I1 +(I7 +tp44271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44272 +tp44273 +bsa(dp44274 +g4 +g5 +(g6 +(I0 +tp44275 +g8 +tp44276 +Rp44277 +(I1 +(I7 +tp44278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44279 +tp44280 +bsa(dp44281 +g4 +g5 +(g6 +(I0 +tp44282 +g8 +tp44283 +Rp44284 +(I1 +(I7 +tp44285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44286 +tp44287 +bsa(dp44288 +g4 +g5 +(g6 +(I0 +tp44289 +g8 +tp44290 +Rp44291 +(I1 +(I7 +tp44292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44293 +tp44294 +bsa(dp44295 +g4 +g5 +(g6 +(I0 +tp44296 +g8 +tp44297 +Rp44298 +(I1 +(I7 +tp44299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44300 +tp44301 +bsa(dp44302 +g4 +g5 +(g6 +(I0 +tp44303 +g8 +tp44304 +Rp44305 +(I1 +(I7 +tp44306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44307 +tp44308 +bsa(dp44309 +g4 +g5 +(g6 +(I0 +tp44310 +g8 +tp44311 +Rp44312 +(I1 +(I7 +tp44313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44314 +tp44315 +bsa(dp44316 +g4 +g5 +(g6 +(I0 +tp44317 +g8 +tp44318 +Rp44319 +(I1 +(I7 +tp44320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44321 +tp44322 +bsa(dp44323 +g4 +g5 +(g6 +(I0 +tp44324 +g8 +tp44325 +Rp44326 +(I1 +(I7 +tp44327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44328 +tp44329 +bsa(dp44330 +g4 +g5 +(g6 +(I0 +tp44331 +g8 +tp44332 +Rp44333 +(I1 +(I7 +tp44334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44335 +tp44336 +bsa(dp44337 +g4 +g5 +(g6 +(I0 +tp44338 +g8 +tp44339 +Rp44340 +(I1 +(I7 +tp44341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44342 +tp44343 +bsa(dp44344 +g4 +g5 +(g6 +(I0 +tp44345 +g8 +tp44346 +Rp44347 +(I1 +(I7 +tp44348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44349 +tp44350 +bsa(dp44351 +g4 +g5 +(g6 +(I0 +tp44352 +g8 +tp44353 +Rp44354 +(I1 +(I7 +tp44355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44356 +tp44357 +bsa(dp44358 +g4 +g5 +(g6 +(I0 +tp44359 +g8 +tp44360 +Rp44361 +(I1 +(I7 +tp44362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44363 +tp44364 +bsa(dp44365 +g4 +g5 +(g6 +(I0 +tp44366 +g8 +tp44367 +Rp44368 +(I1 +(I7 +tp44369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44370 +tp44371 +bsa(dp44372 +g4 +g5 +(g6 +(I0 +tp44373 +g8 +tp44374 +Rp44375 +(I1 +(I7 +tp44376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44377 +tp44378 +bsa(dp44379 +g4 +g5 +(g6 +(I0 +tp44380 +g8 +tp44381 +Rp44382 +(I1 +(I7 +tp44383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44384 +tp44385 +bsa(dp44386 +g4 +g5 +(g6 +(I0 +tp44387 +g8 +tp44388 +Rp44389 +(I1 +(I7 +tp44390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44391 +tp44392 +bsa(dp44393 +g4 +g5 +(g6 +(I0 +tp44394 +g8 +tp44395 +Rp44396 +(I1 +(I7 +tp44397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44398 +tp44399 +bsa(dp44400 +g4 +g5 +(g6 +(I0 +tp44401 +g8 +tp44402 +Rp44403 +(I1 +(I7 +tp44404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44405 +tp44406 +bsa(dp44407 +g4 +g5 +(g6 +(I0 +tp44408 +g8 +tp44409 +Rp44410 +(I1 +(I7 +tp44411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44412 +tp44413 +bsa(dp44414 +g4 +g5 +(g6 +(I0 +tp44415 +g8 +tp44416 +Rp44417 +(I1 +(I7 +tp44418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44419 +tp44420 +bsa(dp44421 +g4 +g5 +(g6 +(I0 +tp44422 +g8 +tp44423 +Rp44424 +(I1 +(I7 +tp44425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44426 +tp44427 +bsa(dp44428 +g4 +g5 +(g6 +(I0 +tp44429 +g8 +tp44430 +Rp44431 +(I1 +(I7 +tp44432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44433 +tp44434 +bsa(dp44435 +g4 +g5 +(g6 +(I0 +tp44436 +g8 +tp44437 +Rp44438 +(I1 +(I7 +tp44439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44440 +tp44441 +bsa(dp44442 +g4 +g5 +(g6 +(I0 +tp44443 +g8 +tp44444 +Rp44445 +(I1 +(I7 +tp44446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44447 +tp44448 +bsa(dp44449 +g4 +g5 +(g6 +(I0 +tp44450 +g8 +tp44451 +Rp44452 +(I1 +(I7 +tp44453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44454 +tp44455 +bsa(dp44456 +g4 +g5 +(g6 +(I0 +tp44457 +g8 +tp44458 +Rp44459 +(I1 +(I7 +tp44460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44461 +tp44462 +bsa(dp44463 +g4 +g5 +(g6 +(I0 +tp44464 +g8 +tp44465 +Rp44466 +(I1 +(I7 +tp44467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44468 +tp44469 +bsa(dp44470 +g4 +g5 +(g6 +(I0 +tp44471 +g8 +tp44472 +Rp44473 +(I1 +(I7 +tp44474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44475 +tp44476 +bsa(dp44477 +g4 +g5 +(g6 +(I0 +tp44478 +g8 +tp44479 +Rp44480 +(I1 +(I7 +tp44481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44482 +tp44483 +bsa(dp44484 +g4 +g5 +(g6 +(I0 +tp44485 +g8 +tp44486 +Rp44487 +(I1 +(I7 +tp44488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44489 +tp44490 +bsa(dp44491 +g4 +g5 +(g6 +(I0 +tp44492 +g8 +tp44493 +Rp44494 +(I1 +(I7 +tp44495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44496 +tp44497 +bsa(dp44498 +g4 +g5 +(g6 +(I0 +tp44499 +g8 +tp44500 +Rp44501 +(I1 +(I7 +tp44502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44503 +tp44504 +bsa(dp44505 +g4 +g5 +(g6 +(I0 +tp44506 +g8 +tp44507 +Rp44508 +(I1 +(I7 +tp44509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44510 +tp44511 +bsa(dp44512 +g4 +g5 +(g6 +(I0 +tp44513 +g8 +tp44514 +Rp44515 +(I1 +(I7 +tp44516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44517 +tp44518 +bsa(dp44519 +g4 +g5 +(g6 +(I0 +tp44520 +g8 +tp44521 +Rp44522 +(I1 +(I7 +tp44523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44524 +tp44525 +bsa(dp44526 +g4 +g5 +(g6 +(I0 +tp44527 +g8 +tp44528 +Rp44529 +(I1 +(I7 +tp44530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44531 +tp44532 +bsa(dp44533 +g4 +g5 +(g6 +(I0 +tp44534 +g8 +tp44535 +Rp44536 +(I1 +(I7 +tp44537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44538 +tp44539 +bsa(dp44540 +g4 +g5 +(g6 +(I0 +tp44541 +g8 +tp44542 +Rp44543 +(I1 +(I7 +tp44544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44545 +tp44546 +bsa(dp44547 +g4 +g5 +(g6 +(I0 +tp44548 +g8 +tp44549 +Rp44550 +(I1 +(I7 +tp44551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44552 +tp44553 +bsa(dp44554 +g4 +g5 +(g6 +(I0 +tp44555 +g8 +tp44556 +Rp44557 +(I1 +(I7 +tp44558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44559 +tp44560 +bsa(dp44561 +g4 +g5 +(g6 +(I0 +tp44562 +g8 +tp44563 +Rp44564 +(I1 +(I7 +tp44565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44566 +tp44567 +bsa(dp44568 +g4 +g5 +(g6 +(I0 +tp44569 +g8 +tp44570 +Rp44571 +(I1 +(I7 +tp44572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44573 +tp44574 +bsa(dp44575 +g4 +g5 +(g6 +(I0 +tp44576 +g8 +tp44577 +Rp44578 +(I1 +(I7 +tp44579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44580 +tp44581 +bsa(dp44582 +g4 +g5 +(g6 +(I0 +tp44583 +g8 +tp44584 +Rp44585 +(I1 +(I7 +tp44586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44587 +tp44588 +bsa(dp44589 +g4 +g5 +(g6 +(I0 +tp44590 +g8 +tp44591 +Rp44592 +(I1 +(I7 +tp44593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44594 +tp44595 +bsa(dp44596 +g4 +g5 +(g6 +(I0 +tp44597 +g8 +tp44598 +Rp44599 +(I1 +(I7 +tp44600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44601 +tp44602 +bsa(dp44603 +g4 +g5 +(g6 +(I0 +tp44604 +g8 +tp44605 +Rp44606 +(I1 +(I7 +tp44607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44608 +tp44609 +bsa(dp44610 +g4 +g5 +(g6 +(I0 +tp44611 +g8 +tp44612 +Rp44613 +(I1 +(I7 +tp44614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44615 +tp44616 +bsa(dp44617 +g4 +g5 +(g6 +(I0 +tp44618 +g8 +tp44619 +Rp44620 +(I1 +(I7 +tp44621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44622 +tp44623 +bsa(dp44624 +g4 +g5 +(g6 +(I0 +tp44625 +g8 +tp44626 +Rp44627 +(I1 +(I7 +tp44628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44629 +tp44630 +bsa(dp44631 +g4 +g5 +(g6 +(I0 +tp44632 +g8 +tp44633 +Rp44634 +(I1 +(I7 +tp44635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44636 +tp44637 +bsa(dp44638 +g4 +g5 +(g6 +(I0 +tp44639 +g8 +tp44640 +Rp44641 +(I1 +(I7 +tp44642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44643 +tp44644 +bsa(dp44645 +g4 +g5 +(g6 +(I0 +tp44646 +g8 +tp44647 +Rp44648 +(I1 +(I7 +tp44649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44650 +tp44651 +bsa(dp44652 +g4 +g5 +(g6 +(I0 +tp44653 +g8 +tp44654 +Rp44655 +(I1 +(I7 +tp44656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44657 +tp44658 +bsa(dp44659 +g4 +g5 +(g6 +(I0 +tp44660 +g8 +tp44661 +Rp44662 +(I1 +(I7 +tp44663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44664 +tp44665 +bsa(dp44666 +g4 +g5 +(g6 +(I0 +tp44667 +g8 +tp44668 +Rp44669 +(I1 +(I7 +tp44670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44671 +tp44672 +bsa(dp44673 +g4 +g5 +(g6 +(I0 +tp44674 +g8 +tp44675 +Rp44676 +(I1 +(I7 +tp44677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44678 +tp44679 +bsa(dp44680 +g4 +g5 +(g6 +(I0 +tp44681 +g8 +tp44682 +Rp44683 +(I1 +(I7 +tp44684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44685 +tp44686 +bsa(dp44687 +g4 +g5 +(g6 +(I0 +tp44688 +g8 +tp44689 +Rp44690 +(I1 +(I7 +tp44691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44692 +tp44693 +bsa(dp44694 +g4 +g5 +(g6 +(I0 +tp44695 +g8 +tp44696 +Rp44697 +(I1 +(I7 +tp44698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44699 +tp44700 +bsa(dp44701 +g4 +g5 +(g6 +(I0 +tp44702 +g8 +tp44703 +Rp44704 +(I1 +(I7 +tp44705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44706 +tp44707 +bsa(dp44708 +g4 +g5 +(g6 +(I0 +tp44709 +g8 +tp44710 +Rp44711 +(I1 +(I7 +tp44712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44713 +tp44714 +bsa(dp44715 +g4 +g5 +(g6 +(I0 +tp44716 +g8 +tp44717 +Rp44718 +(I1 +(I7 +tp44719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44720 +tp44721 +bsa(dp44722 +g4 +g5 +(g6 +(I0 +tp44723 +g8 +tp44724 +Rp44725 +(I1 +(I7 +tp44726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44727 +tp44728 +bsa(dp44729 +g4 +g5 +(g6 +(I0 +tp44730 +g8 +tp44731 +Rp44732 +(I1 +(I7 +tp44733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44734 +tp44735 +bsa(dp44736 +g4 +g5 +(g6 +(I0 +tp44737 +g8 +tp44738 +Rp44739 +(I1 +(I7 +tp44740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44741 +tp44742 +bsa(dp44743 +g4 +g5 +(g6 +(I0 +tp44744 +g8 +tp44745 +Rp44746 +(I1 +(I7 +tp44747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44748 +tp44749 +bsa(dp44750 +g4 +g5 +(g6 +(I0 +tp44751 +g8 +tp44752 +Rp44753 +(I1 +(I7 +tp44754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44755 +tp44756 +bsa(dp44757 +g4 +g5 +(g6 +(I0 +tp44758 +g8 +tp44759 +Rp44760 +(I1 +(I7 +tp44761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44762 +tp44763 +bsa(dp44764 +g4 +g5 +(g6 +(I0 +tp44765 +g8 +tp44766 +Rp44767 +(I1 +(I7 +tp44768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44769 +tp44770 +bsa(dp44771 +g4 +g5 +(g6 +(I0 +tp44772 +g8 +tp44773 +Rp44774 +(I1 +(I7 +tp44775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44776 +tp44777 +bsa(dp44778 +g4 +g5 +(g6 +(I0 +tp44779 +g8 +tp44780 +Rp44781 +(I1 +(I7 +tp44782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44783 +tp44784 +bsa(dp44785 +g4 +g5 +(g6 +(I0 +tp44786 +g8 +tp44787 +Rp44788 +(I1 +(I7 +tp44789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44790 +tp44791 +bsa(dp44792 +g4 +g5 +(g6 +(I0 +tp44793 +g8 +tp44794 +Rp44795 +(I1 +(I7 +tp44796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44797 +tp44798 +bsa(dp44799 +g4 +g5 +(g6 +(I0 +tp44800 +g8 +tp44801 +Rp44802 +(I1 +(I7 +tp44803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44804 +tp44805 +bsa(dp44806 +g4 +g5 +(g6 +(I0 +tp44807 +g8 +tp44808 +Rp44809 +(I1 +(I7 +tp44810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44811 +tp44812 +bsa(dp44813 +g4 +g5 +(g6 +(I0 +tp44814 +g8 +tp44815 +Rp44816 +(I1 +(I7 +tp44817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44818 +tp44819 +bsa(dp44820 +g4 +g5 +(g6 +(I0 +tp44821 +g8 +tp44822 +Rp44823 +(I1 +(I7 +tp44824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44825 +tp44826 +bsa(dp44827 +g4 +g5 +(g6 +(I0 +tp44828 +g8 +tp44829 +Rp44830 +(I1 +(I7 +tp44831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44832 +tp44833 +bsa(dp44834 +g4 +g5 +(g6 +(I0 +tp44835 +g8 +tp44836 +Rp44837 +(I1 +(I7 +tp44838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44839 +tp44840 +bsa(dp44841 +g4 +g5 +(g6 +(I0 +tp44842 +g8 +tp44843 +Rp44844 +(I1 +(I7 +tp44845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44846 +tp44847 +bsa(dp44848 +g4 +g5 +(g6 +(I0 +tp44849 +g8 +tp44850 +Rp44851 +(I1 +(I7 +tp44852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44853 +tp44854 +bsa(dp44855 +g4 +g5 +(g6 +(I0 +tp44856 +g8 +tp44857 +Rp44858 +(I1 +(I7 +tp44859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44860 +tp44861 +bsa(dp44862 +g4 +g5 +(g6 +(I0 +tp44863 +g8 +tp44864 +Rp44865 +(I1 +(I7 +tp44866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44867 +tp44868 +bsa(dp44869 +g4 +g5 +(g6 +(I0 +tp44870 +g8 +tp44871 +Rp44872 +(I1 +(I7 +tp44873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44874 +tp44875 +bsa(dp44876 +g4 +g5 +(g6 +(I0 +tp44877 +g8 +tp44878 +Rp44879 +(I1 +(I7 +tp44880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44881 +tp44882 +bsa(dp44883 +g4 +g5 +(g6 +(I0 +tp44884 +g8 +tp44885 +Rp44886 +(I1 +(I7 +tp44887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44888 +tp44889 +bsa(dp44890 +g4 +g5 +(g6 +(I0 +tp44891 +g8 +tp44892 +Rp44893 +(I1 +(I7 +tp44894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44895 +tp44896 +bsa(dp44897 +g4 +g5 +(g6 +(I0 +tp44898 +g8 +tp44899 +Rp44900 +(I1 +(I7 +tp44901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44902 +tp44903 +bsa(dp44904 +g4 +g5 +(g6 +(I0 +tp44905 +g8 +tp44906 +Rp44907 +(I1 +(I7 +tp44908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44909 +tp44910 +bsa(dp44911 +g4 +g5 +(g6 +(I0 +tp44912 +g8 +tp44913 +Rp44914 +(I1 +(I7 +tp44915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44916 +tp44917 +bsa(dp44918 +g4 +g5 +(g6 +(I0 +tp44919 +g8 +tp44920 +Rp44921 +(I1 +(I7 +tp44922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44923 +tp44924 +bsa(dp44925 +g4 +g5 +(g6 +(I0 +tp44926 +g8 +tp44927 +Rp44928 +(I1 +(I7 +tp44929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44930 +tp44931 +bsa(dp44932 +g4 +g5 +(g6 +(I0 +tp44933 +g8 +tp44934 +Rp44935 +(I1 +(I7 +tp44936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44937 +tp44938 +bsa(dp44939 +g4 +g5 +(g6 +(I0 +tp44940 +g8 +tp44941 +Rp44942 +(I1 +(I7 +tp44943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44944 +tp44945 +bsa(dp44946 +g4 +g5 +(g6 +(I0 +tp44947 +g8 +tp44948 +Rp44949 +(I1 +(I7 +tp44950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44951 +tp44952 +bsa(dp44953 +g4 +g5 +(g6 +(I0 +tp44954 +g8 +tp44955 +Rp44956 +(I1 +(I7 +tp44957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44958 +tp44959 +bsa(dp44960 +g4 +g5 +(g6 +(I0 +tp44961 +g8 +tp44962 +Rp44963 +(I1 +(I7 +tp44964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44965 +tp44966 +bsa(dp44967 +g4 +g5 +(g6 +(I0 +tp44968 +g8 +tp44969 +Rp44970 +(I1 +(I7 +tp44971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p44972 +tp44973 +bsa(dp44974 +g4 +g5 +(g6 +(I0 +tp44975 +g8 +tp44976 +Rp44977 +(I1 +(I7 +tp44978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p44979 +tp44980 +bsa(dp44981 +g4 +g5 +(g6 +(I0 +tp44982 +g8 +tp44983 +Rp44984 +(I1 +(I7 +tp44985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44986 +tp44987 +bsa(dp44988 +g4 +g5 +(g6 +(I0 +tp44989 +g8 +tp44990 +Rp44991 +(I1 +(I7 +tp44992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p44993 +tp44994 +bsa(dp44995 +g4 +g5 +(g6 +(I0 +tp44996 +g8 +tp44997 +Rp44998 +(I1 +(I7 +tp44999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45000 +tp45001 +bsa(dp45002 +g4 +g5 +(g6 +(I0 +tp45003 +g8 +tp45004 +Rp45005 +(I1 +(I7 +tp45006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45007 +tp45008 +bsa(dp45009 +g4 +g5 +(g6 +(I0 +tp45010 +g8 +tp45011 +Rp45012 +(I1 +(I7 +tp45013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45014 +tp45015 +bsa(dp45016 +g4 +g5 +(g6 +(I0 +tp45017 +g8 +tp45018 +Rp45019 +(I1 +(I7 +tp45020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45021 +tp45022 +bsa(dp45023 +g4 +g5 +(g6 +(I0 +tp45024 +g8 +tp45025 +Rp45026 +(I1 +(I7 +tp45027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45028 +tp45029 +bsa(dp45030 +g4 +g5 +(g6 +(I0 +tp45031 +g8 +tp45032 +Rp45033 +(I1 +(I7 +tp45034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45035 +tp45036 +bsa(dp45037 +g4 +g5 +(g6 +(I0 +tp45038 +g8 +tp45039 +Rp45040 +(I1 +(I7 +tp45041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45042 +tp45043 +bsa(dp45044 +g4 +g5 +(g6 +(I0 +tp45045 +g8 +tp45046 +Rp45047 +(I1 +(I7 +tp45048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45049 +tp45050 +bsa(dp45051 +g4 +g5 +(g6 +(I0 +tp45052 +g8 +tp45053 +Rp45054 +(I1 +(I7 +tp45055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45056 +tp45057 +bsa(dp45058 +g4 +g5 +(g6 +(I0 +tp45059 +g8 +tp45060 +Rp45061 +(I1 +(I7 +tp45062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45063 +tp45064 +bsa(dp45065 +g4 +g5 +(g6 +(I0 +tp45066 +g8 +tp45067 +Rp45068 +(I1 +(I7 +tp45069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45070 +tp45071 +bsa(dp45072 +g4 +g5 +(g6 +(I0 +tp45073 +g8 +tp45074 +Rp45075 +(I1 +(I7 +tp45076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45077 +tp45078 +bsa(dp45079 +g4 +g5 +(g6 +(I0 +tp45080 +g8 +tp45081 +Rp45082 +(I1 +(I7 +tp45083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45084 +tp45085 +bsa(dp45086 +g4 +g5 +(g6 +(I0 +tp45087 +g8 +tp45088 +Rp45089 +(I1 +(I7 +tp45090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45091 +tp45092 +bsa(dp45093 +g4 +g5 +(g6 +(I0 +tp45094 +g8 +tp45095 +Rp45096 +(I1 +(I7 +tp45097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45098 +tp45099 +bsa(dp45100 +g4 +g5 +(g6 +(I0 +tp45101 +g8 +tp45102 +Rp45103 +(I1 +(I7 +tp45104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45105 +tp45106 +bsa(dp45107 +g4 +g5 +(g6 +(I0 +tp45108 +g8 +tp45109 +Rp45110 +(I1 +(I7 +tp45111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45112 +tp45113 +bsa(dp45114 +g4 +g5 +(g6 +(I0 +tp45115 +g8 +tp45116 +Rp45117 +(I1 +(I7 +tp45118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45119 +tp45120 +bsa(dp45121 +g4 +g5 +(g6 +(I0 +tp45122 +g8 +tp45123 +Rp45124 +(I1 +(I7 +tp45125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45126 +tp45127 +bsa(dp45128 +g4 +g5 +(g6 +(I0 +tp45129 +g8 +tp45130 +Rp45131 +(I1 +(I7 +tp45132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45133 +tp45134 +bsa(dp45135 +g4 +g5 +(g6 +(I0 +tp45136 +g8 +tp45137 +Rp45138 +(I1 +(I7 +tp45139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45140 +tp45141 +bsa(dp45142 +g4 +g5 +(g6 +(I0 +tp45143 +g8 +tp45144 +Rp45145 +(I1 +(I7 +tp45146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45147 +tp45148 +bsa(dp45149 +g4 +g5 +(g6 +(I0 +tp45150 +g8 +tp45151 +Rp45152 +(I1 +(I7 +tp45153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45154 +tp45155 +bsa(dp45156 +g4 +g5 +(g6 +(I0 +tp45157 +g8 +tp45158 +Rp45159 +(I1 +(I7 +tp45160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45161 +tp45162 +bsa(dp45163 +g4 +g5 +(g6 +(I0 +tp45164 +g8 +tp45165 +Rp45166 +(I1 +(I7 +tp45167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45168 +tp45169 +bsa(dp45170 +g4 +g5 +(g6 +(I0 +tp45171 +g8 +tp45172 +Rp45173 +(I1 +(I7 +tp45174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45175 +tp45176 +bsa(dp45177 +g4 +g5 +(g6 +(I0 +tp45178 +g8 +tp45179 +Rp45180 +(I1 +(I7 +tp45181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45182 +tp45183 +bsa(dp45184 +g4 +g5 +(g6 +(I0 +tp45185 +g8 +tp45186 +Rp45187 +(I1 +(I7 +tp45188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45189 +tp45190 +bsa(dp45191 +g4 +g5 +(g6 +(I0 +tp45192 +g8 +tp45193 +Rp45194 +(I1 +(I7 +tp45195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45196 +tp45197 +bsa(dp45198 +g4 +g5 +(g6 +(I0 +tp45199 +g8 +tp45200 +Rp45201 +(I1 +(I7 +tp45202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45203 +tp45204 +bsa(dp45205 +g4 +g5 +(g6 +(I0 +tp45206 +g8 +tp45207 +Rp45208 +(I1 +(I7 +tp45209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45210 +tp45211 +bsa(dp45212 +g4 +g5 +(g6 +(I0 +tp45213 +g8 +tp45214 +Rp45215 +(I1 +(I7 +tp45216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45217 +tp45218 +bsa(dp45219 +g4 +g5 +(g6 +(I0 +tp45220 +g8 +tp45221 +Rp45222 +(I1 +(I7 +tp45223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45224 +tp45225 +bsa(dp45226 +g4 +g5 +(g6 +(I0 +tp45227 +g8 +tp45228 +Rp45229 +(I1 +(I7 +tp45230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45231 +tp45232 +bsa(dp45233 +g4 +g5 +(g6 +(I0 +tp45234 +g8 +tp45235 +Rp45236 +(I1 +(I7 +tp45237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45238 +tp45239 +bsa(dp45240 +g4 +g5 +(g6 +(I0 +tp45241 +g8 +tp45242 +Rp45243 +(I1 +(I7 +tp45244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45245 +tp45246 +bsa(dp45247 +g4 +g5 +(g6 +(I0 +tp45248 +g8 +tp45249 +Rp45250 +(I1 +(I7 +tp45251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45252 +tp45253 +bsa(dp45254 +g4 +g5 +(g6 +(I0 +tp45255 +g8 +tp45256 +Rp45257 +(I1 +(I7 +tp45258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45259 +tp45260 +bsa(dp45261 +g4 +g5 +(g6 +(I0 +tp45262 +g8 +tp45263 +Rp45264 +(I1 +(I7 +tp45265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45266 +tp45267 +bsa(dp45268 +g4 +g5 +(g6 +(I0 +tp45269 +g8 +tp45270 +Rp45271 +(I1 +(I7 +tp45272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45273 +tp45274 +bsa(dp45275 +g4 +g5 +(g6 +(I0 +tp45276 +g8 +tp45277 +Rp45278 +(I1 +(I7 +tp45279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45280 +tp45281 +bsa(dp45282 +g4 +g5 +(g6 +(I0 +tp45283 +g8 +tp45284 +Rp45285 +(I1 +(I7 +tp45286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45287 +tp45288 +bsa(dp45289 +g4 +g5 +(g6 +(I0 +tp45290 +g8 +tp45291 +Rp45292 +(I1 +(I7 +tp45293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45294 +tp45295 +bsa(dp45296 +g4 +g5 +(g6 +(I0 +tp45297 +g8 +tp45298 +Rp45299 +(I1 +(I7 +tp45300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45301 +tp45302 +bsa(dp45303 +g4 +g5 +(g6 +(I0 +tp45304 +g8 +tp45305 +Rp45306 +(I1 +(I7 +tp45307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45308 +tp45309 +bsa(dp45310 +g4 +g5 +(g6 +(I0 +tp45311 +g8 +tp45312 +Rp45313 +(I1 +(I7 +tp45314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45315 +tp45316 +bsa(dp45317 +g4 +g5 +(g6 +(I0 +tp45318 +g8 +tp45319 +Rp45320 +(I1 +(I7 +tp45321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45322 +tp45323 +bsa(dp45324 +g4 +g5 +(g6 +(I0 +tp45325 +g8 +tp45326 +Rp45327 +(I1 +(I7 +tp45328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45329 +tp45330 +bsa(dp45331 +g4 +g5 +(g6 +(I0 +tp45332 +g8 +tp45333 +Rp45334 +(I1 +(I7 +tp45335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45336 +tp45337 +bsa(dp45338 +g4 +g5 +(g6 +(I0 +tp45339 +g8 +tp45340 +Rp45341 +(I1 +(I7 +tp45342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45343 +tp45344 +bsa(dp45345 +g4 +g5 +(g6 +(I0 +tp45346 +g8 +tp45347 +Rp45348 +(I1 +(I7 +tp45349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45350 +tp45351 +bsa(dp45352 +g4 +g5 +(g6 +(I0 +tp45353 +g8 +tp45354 +Rp45355 +(I1 +(I7 +tp45356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45357 +tp45358 +bsa(dp45359 +g4 +g5 +(g6 +(I0 +tp45360 +g8 +tp45361 +Rp45362 +(I1 +(I7 +tp45363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45364 +tp45365 +bsa(dp45366 +g4 +g5 +(g6 +(I0 +tp45367 +g8 +tp45368 +Rp45369 +(I1 +(I7 +tp45370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45371 +tp45372 +bsa(dp45373 +g4 +g5 +(g6 +(I0 +tp45374 +g8 +tp45375 +Rp45376 +(I1 +(I7 +tp45377 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45378 +tp45379 +bsa(dp45380 +g4 +g5 +(g6 +(I0 +tp45381 +g8 +tp45382 +Rp45383 +(I1 +(I7 +tp45384 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45385 +tp45386 +bsa(dp45387 +g4 +g5 +(g6 +(I0 +tp45388 +g8 +tp45389 +Rp45390 +(I1 +(I7 +tp45391 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45392 +tp45393 +bsa(dp45394 +g4 +g5 +(g6 +(I0 +tp45395 +g8 +tp45396 +Rp45397 +(I1 +(I7 +tp45398 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45399 +tp45400 +bsa(dp45401 +g4 +g5 +(g6 +(I0 +tp45402 +g8 +tp45403 +Rp45404 +(I1 +(I7 +tp45405 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45406 +tp45407 +bsa(dp45408 +g4 +g5 +(g6 +(I0 +tp45409 +g8 +tp45410 +Rp45411 +(I1 +(I7 +tp45412 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45413 +tp45414 +bsa(dp45415 +g4 +g5 +(g6 +(I0 +tp45416 +g8 +tp45417 +Rp45418 +(I1 +(I7 +tp45419 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45420 +tp45421 +bsa(dp45422 +g4 +g5 +(g6 +(I0 +tp45423 +g8 +tp45424 +Rp45425 +(I1 +(I7 +tp45426 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45427 +tp45428 +bsa(dp45429 +g4 +g5 +(g6 +(I0 +tp45430 +g8 +tp45431 +Rp45432 +(I1 +(I7 +tp45433 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45434 +tp45435 +bsa(dp45436 +g4 +g5 +(g6 +(I0 +tp45437 +g8 +tp45438 +Rp45439 +(I1 +(I7 +tp45440 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45441 +tp45442 +bsa(dp45443 +g4 +g5 +(g6 +(I0 +tp45444 +g8 +tp45445 +Rp45446 +(I1 +(I7 +tp45447 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45448 +tp45449 +bsa(dp45450 +g4 +g5 +(g6 +(I0 +tp45451 +g8 +tp45452 +Rp45453 +(I1 +(I7 +tp45454 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45455 +tp45456 +bsa(dp45457 +g4 +g5 +(g6 +(I0 +tp45458 +g8 +tp45459 +Rp45460 +(I1 +(I7 +tp45461 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45462 +tp45463 +bsa(dp45464 +g4 +g5 +(g6 +(I0 +tp45465 +g8 +tp45466 +Rp45467 +(I1 +(I7 +tp45468 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45469 +tp45470 +bsa(dp45471 +g4 +g5 +(g6 +(I0 +tp45472 +g8 +tp45473 +Rp45474 +(I1 +(I7 +tp45475 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45476 +tp45477 +bsa(dp45478 +g4 +g5 +(g6 +(I0 +tp45479 +g8 +tp45480 +Rp45481 +(I1 +(I7 +tp45482 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45483 +tp45484 +bsa(dp45485 +g4 +g5 +(g6 +(I0 +tp45486 +g8 +tp45487 +Rp45488 +(I1 +(I7 +tp45489 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45490 +tp45491 +bsa(dp45492 +g4 +g5 +(g6 +(I0 +tp45493 +g8 +tp45494 +Rp45495 +(I1 +(I7 +tp45496 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45497 +tp45498 +bsa(dp45499 +g4 +g5 +(g6 +(I0 +tp45500 +g8 +tp45501 +Rp45502 +(I1 +(I7 +tp45503 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45504 +tp45505 +bsa(dp45506 +g4 +g5 +(g6 +(I0 +tp45507 +g8 +tp45508 +Rp45509 +(I1 +(I7 +tp45510 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45511 +tp45512 +bsa(dp45513 +g4 +g5 +(g6 +(I0 +tp45514 +g8 +tp45515 +Rp45516 +(I1 +(I7 +tp45517 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45518 +tp45519 +bsa(dp45520 +g4 +g5 +(g6 +(I0 +tp45521 +g8 +tp45522 +Rp45523 +(I1 +(I7 +tp45524 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45525 +tp45526 +bsa(dp45527 +g4 +g5 +(g6 +(I0 +tp45528 +g8 +tp45529 +Rp45530 +(I1 +(I7 +tp45531 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45532 +tp45533 +bsa(dp45534 +g4 +g5 +(g6 +(I0 +tp45535 +g8 +tp45536 +Rp45537 +(I1 +(I7 +tp45538 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45539 +tp45540 +bsa(dp45541 +g4 +g5 +(g6 +(I0 +tp45542 +g8 +tp45543 +Rp45544 +(I1 +(I7 +tp45545 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45546 +tp45547 +bsa(dp45548 +g4 +g5 +(g6 +(I0 +tp45549 +g8 +tp45550 +Rp45551 +(I1 +(I7 +tp45552 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45553 +tp45554 +bsa(dp45555 +g4 +g5 +(g6 +(I0 +tp45556 +g8 +tp45557 +Rp45558 +(I1 +(I7 +tp45559 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45560 +tp45561 +bsa(dp45562 +g4 +g5 +(g6 +(I0 +tp45563 +g8 +tp45564 +Rp45565 +(I1 +(I7 +tp45566 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45567 +tp45568 +bsa(dp45569 +g4 +g5 +(g6 +(I0 +tp45570 +g8 +tp45571 +Rp45572 +(I1 +(I7 +tp45573 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45574 +tp45575 +bsa(dp45576 +g4 +g5 +(g6 +(I0 +tp45577 +g8 +tp45578 +Rp45579 +(I1 +(I7 +tp45580 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45581 +tp45582 +bsa(dp45583 +g4 +g5 +(g6 +(I0 +tp45584 +g8 +tp45585 +Rp45586 +(I1 +(I7 +tp45587 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45588 +tp45589 +bsa(dp45590 +g4 +g5 +(g6 +(I0 +tp45591 +g8 +tp45592 +Rp45593 +(I1 +(I7 +tp45594 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45595 +tp45596 +bsa(dp45597 +g4 +g5 +(g6 +(I0 +tp45598 +g8 +tp45599 +Rp45600 +(I1 +(I7 +tp45601 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45602 +tp45603 +bsa(dp45604 +g4 +g5 +(g6 +(I0 +tp45605 +g8 +tp45606 +Rp45607 +(I1 +(I7 +tp45608 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45609 +tp45610 +bsa(dp45611 +g4 +g5 +(g6 +(I0 +tp45612 +g8 +tp45613 +Rp45614 +(I1 +(I7 +tp45615 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45616 +tp45617 +bsa(dp45618 +g4 +g5 +(g6 +(I0 +tp45619 +g8 +tp45620 +Rp45621 +(I1 +(I7 +tp45622 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45623 +tp45624 +bsa(dp45625 +g4 +g5 +(g6 +(I0 +tp45626 +g8 +tp45627 +Rp45628 +(I1 +(I7 +tp45629 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45630 +tp45631 +bsa(dp45632 +g4 +g5 +(g6 +(I0 +tp45633 +g8 +tp45634 +Rp45635 +(I1 +(I7 +tp45636 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45637 +tp45638 +bsa(dp45639 +g4 +g5 +(g6 +(I0 +tp45640 +g8 +tp45641 +Rp45642 +(I1 +(I7 +tp45643 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45644 +tp45645 +bsa(dp45646 +g4 +g5 +(g6 +(I0 +tp45647 +g8 +tp45648 +Rp45649 +(I1 +(I7 +tp45650 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45651 +tp45652 +bsa(dp45653 +g4 +g5 +(g6 +(I0 +tp45654 +g8 +tp45655 +Rp45656 +(I1 +(I7 +tp45657 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45658 +tp45659 +bsa(dp45660 +g4 +g5 +(g6 +(I0 +tp45661 +g8 +tp45662 +Rp45663 +(I1 +(I7 +tp45664 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45665 +tp45666 +bsa(dp45667 +g4 +g5 +(g6 +(I0 +tp45668 +g8 +tp45669 +Rp45670 +(I1 +(I7 +tp45671 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45672 +tp45673 +bsa(dp45674 +g4 +g5 +(g6 +(I0 +tp45675 +g8 +tp45676 +Rp45677 +(I1 +(I7 +tp45678 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45679 +tp45680 +bsa(dp45681 +g4 +g5 +(g6 +(I0 +tp45682 +g8 +tp45683 +Rp45684 +(I1 +(I7 +tp45685 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45686 +tp45687 +bsa(dp45688 +g4 +g5 +(g6 +(I0 +tp45689 +g8 +tp45690 +Rp45691 +(I1 +(I7 +tp45692 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45693 +tp45694 +bsa(dp45695 +g4 +g5 +(g6 +(I0 +tp45696 +g8 +tp45697 +Rp45698 +(I1 +(I7 +tp45699 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45700 +tp45701 +bsa(dp45702 +g4 +g5 +(g6 +(I0 +tp45703 +g8 +tp45704 +Rp45705 +(I1 +(I7 +tp45706 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45707 +tp45708 +bsa(dp45709 +g4 +g5 +(g6 +(I0 +tp45710 +g8 +tp45711 +Rp45712 +(I1 +(I7 +tp45713 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45714 +tp45715 +bsa(dp45716 +g4 +g5 +(g6 +(I0 +tp45717 +g8 +tp45718 +Rp45719 +(I1 +(I7 +tp45720 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45721 +tp45722 +bsa(dp45723 +g4 +g5 +(g6 +(I0 +tp45724 +g8 +tp45725 +Rp45726 +(I1 +(I7 +tp45727 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45728 +tp45729 +bsa(dp45730 +g4 +g5 +(g6 +(I0 +tp45731 +g8 +tp45732 +Rp45733 +(I1 +(I7 +tp45734 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45735 +tp45736 +bsa(dp45737 +g4 +g5 +(g6 +(I0 +tp45738 +g8 +tp45739 +Rp45740 +(I1 +(I7 +tp45741 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45742 +tp45743 +bsa(dp45744 +g4 +g5 +(g6 +(I0 +tp45745 +g8 +tp45746 +Rp45747 +(I1 +(I7 +tp45748 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45749 +tp45750 +bsa(dp45751 +g4 +g5 +(g6 +(I0 +tp45752 +g8 +tp45753 +Rp45754 +(I1 +(I7 +tp45755 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45756 +tp45757 +bsa(dp45758 +g4 +g5 +(g6 +(I0 +tp45759 +g8 +tp45760 +Rp45761 +(I1 +(I7 +tp45762 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45763 +tp45764 +bsa(dp45765 +g4 +g5 +(g6 +(I0 +tp45766 +g8 +tp45767 +Rp45768 +(I1 +(I7 +tp45769 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45770 +tp45771 +bsa(dp45772 +g4 +g5 +(g6 +(I0 +tp45773 +g8 +tp45774 +Rp45775 +(I1 +(I7 +tp45776 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45777 +tp45778 +bsa(dp45779 +g4 +g5 +(g6 +(I0 +tp45780 +g8 +tp45781 +Rp45782 +(I1 +(I7 +tp45783 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45784 +tp45785 +bsa(dp45786 +g4 +g5 +(g6 +(I0 +tp45787 +g8 +tp45788 +Rp45789 +(I1 +(I7 +tp45790 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45791 +tp45792 +bsa(dp45793 +g4 +g5 +(g6 +(I0 +tp45794 +g8 +tp45795 +Rp45796 +(I1 +(I7 +tp45797 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45798 +tp45799 +bsa(dp45800 +g4 +g5 +(g6 +(I0 +tp45801 +g8 +tp45802 +Rp45803 +(I1 +(I7 +tp45804 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45805 +tp45806 +bsa(dp45807 +g4 +g5 +(g6 +(I0 +tp45808 +g8 +tp45809 +Rp45810 +(I1 +(I7 +tp45811 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45812 +tp45813 +bsa(dp45814 +g4 +g5 +(g6 +(I0 +tp45815 +g8 +tp45816 +Rp45817 +(I1 +(I7 +tp45818 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45819 +tp45820 +bsa(dp45821 +g4 +g5 +(g6 +(I0 +tp45822 +g8 +tp45823 +Rp45824 +(I1 +(I7 +tp45825 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45826 +tp45827 +bsa(dp45828 +g4 +g5 +(g6 +(I0 +tp45829 +g8 +tp45830 +Rp45831 +(I1 +(I7 +tp45832 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45833 +tp45834 +bsa(dp45835 +g4 +g5 +(g6 +(I0 +tp45836 +g8 +tp45837 +Rp45838 +(I1 +(I7 +tp45839 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45840 +tp45841 +bsa(dp45842 +g4 +g5 +(g6 +(I0 +tp45843 +g8 +tp45844 +Rp45845 +(I1 +(I7 +tp45846 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45847 +tp45848 +bsa(dp45849 +g4 +g5 +(g6 +(I0 +tp45850 +g8 +tp45851 +Rp45852 +(I1 +(I7 +tp45853 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45854 +tp45855 +bsa(dp45856 +g4 +g5 +(g6 +(I0 +tp45857 +g8 +tp45858 +Rp45859 +(I1 +(I7 +tp45860 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45861 +tp45862 +bsa(dp45863 +g4 +g5 +(g6 +(I0 +tp45864 +g8 +tp45865 +Rp45866 +(I1 +(I7 +tp45867 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45868 +tp45869 +bsa(dp45870 +g4 +g5 +(g6 +(I0 +tp45871 +g8 +tp45872 +Rp45873 +(I1 +(I7 +tp45874 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45875 +tp45876 +bsa(dp45877 +g4 +g5 +(g6 +(I0 +tp45878 +g8 +tp45879 +Rp45880 +(I1 +(I7 +tp45881 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45882 +tp45883 +bsa(dp45884 +g4 +g5 +(g6 +(I0 +tp45885 +g8 +tp45886 +Rp45887 +(I1 +(I7 +tp45888 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45889 +tp45890 +bsa(dp45891 +g4 +g5 +(g6 +(I0 +tp45892 +g8 +tp45893 +Rp45894 +(I1 +(I7 +tp45895 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45896 +tp45897 +bsa(dp45898 +g4 +g5 +(g6 +(I0 +tp45899 +g8 +tp45900 +Rp45901 +(I1 +(I7 +tp45902 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45903 +tp45904 +bsa(dp45905 +g4 +g5 +(g6 +(I0 +tp45906 +g8 +tp45907 +Rp45908 +(I1 +(I7 +tp45909 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45910 +tp45911 +bsa(dp45912 +g4 +g5 +(g6 +(I0 +tp45913 +g8 +tp45914 +Rp45915 +(I1 +(I7 +tp45916 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45917 +tp45918 +bsa(dp45919 +g4 +g5 +(g6 +(I0 +tp45920 +g8 +tp45921 +Rp45922 +(I1 +(I7 +tp45923 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45924 +tp45925 +bsa(dp45926 +g4 +g5 +(g6 +(I0 +tp45927 +g8 +tp45928 +Rp45929 +(I1 +(I7 +tp45930 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45931 +tp45932 +bsa(dp45933 +g4 +g5 +(g6 +(I0 +tp45934 +g8 +tp45935 +Rp45936 +(I1 +(I7 +tp45937 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45938 +tp45939 +bsa(dp45940 +g4 +g5 +(g6 +(I0 +tp45941 +g8 +tp45942 +Rp45943 +(I1 +(I7 +tp45944 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45945 +tp45946 +bsa(dp45947 +g4 +g5 +(g6 +(I0 +tp45948 +g8 +tp45949 +Rp45950 +(I1 +(I7 +tp45951 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45952 +tp45953 +bsa(dp45954 +g4 +g5 +(g6 +(I0 +tp45955 +g8 +tp45956 +Rp45957 +(I1 +(I7 +tp45958 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45959 +tp45960 +bsa(dp45961 +g4 +g5 +(g6 +(I0 +tp45962 +g8 +tp45963 +Rp45964 +(I1 +(I7 +tp45965 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45966 +tp45967 +bsa(dp45968 +g4 +g5 +(g6 +(I0 +tp45969 +g8 +tp45970 +Rp45971 +(I1 +(I7 +tp45972 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p45973 +tp45974 +bsa(dp45975 +g4 +g5 +(g6 +(I0 +tp45976 +g8 +tp45977 +Rp45978 +(I1 +(I7 +tp45979 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p45980 +tp45981 +bsa(dp45982 +g4 +g5 +(g6 +(I0 +tp45983 +g8 +tp45984 +Rp45985 +(I1 +(I7 +tp45986 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45987 +tp45988 +bsa(dp45989 +g4 +g5 +(g6 +(I0 +tp45990 +g8 +tp45991 +Rp45992 +(I1 +(I7 +tp45993 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p45994 +tp45995 +bsa(dp45996 +g4 +g5 +(g6 +(I0 +tp45997 +g8 +tp45998 +Rp45999 +(I1 +(I7 +tp46000 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46001 +tp46002 +bsa(dp46003 +g4 +g5 +(g6 +(I0 +tp46004 +g8 +tp46005 +Rp46006 +(I1 +(I7 +tp46007 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46008 +tp46009 +bsa(dp46010 +g4 +g5 +(g6 +(I0 +tp46011 +g8 +tp46012 +Rp46013 +(I1 +(I7 +tp46014 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46015 +tp46016 +bsa(dp46017 +g4 +g5 +(g6 +(I0 +tp46018 +g8 +tp46019 +Rp46020 +(I1 +(I7 +tp46021 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46022 +tp46023 +bsa(dp46024 +g4 +g5 +(g6 +(I0 +tp46025 +g8 +tp46026 +Rp46027 +(I1 +(I7 +tp46028 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46029 +tp46030 +bsa(dp46031 +g4 +g5 +(g6 +(I0 +tp46032 +g8 +tp46033 +Rp46034 +(I1 +(I7 +tp46035 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46036 +tp46037 +bsa(dp46038 +g4 +g5 +(g6 +(I0 +tp46039 +g8 +tp46040 +Rp46041 +(I1 +(I7 +tp46042 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46043 +tp46044 +bsa(dp46045 +g4 +g5 +(g6 +(I0 +tp46046 +g8 +tp46047 +Rp46048 +(I1 +(I7 +tp46049 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46050 +tp46051 +bsa(dp46052 +g4 +g5 +(g6 +(I0 +tp46053 +g8 +tp46054 +Rp46055 +(I1 +(I7 +tp46056 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46057 +tp46058 +bsa(dp46059 +g4 +g5 +(g6 +(I0 +tp46060 +g8 +tp46061 +Rp46062 +(I1 +(I7 +tp46063 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46064 +tp46065 +bsa(dp46066 +g4 +g5 +(g6 +(I0 +tp46067 +g8 +tp46068 +Rp46069 +(I1 +(I7 +tp46070 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46071 +tp46072 +bsa(dp46073 +g4 +g5 +(g6 +(I0 +tp46074 +g8 +tp46075 +Rp46076 +(I1 +(I7 +tp46077 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46078 +tp46079 +bsa(dp46080 +g4 +g5 +(g6 +(I0 +tp46081 +g8 +tp46082 +Rp46083 +(I1 +(I7 +tp46084 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46085 +tp46086 +bsa(dp46087 +g4 +g5 +(g6 +(I0 +tp46088 +g8 +tp46089 +Rp46090 +(I1 +(I7 +tp46091 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46092 +tp46093 +bsa(dp46094 +g4 +g5 +(g6 +(I0 +tp46095 +g8 +tp46096 +Rp46097 +(I1 +(I7 +tp46098 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46099 +tp46100 +bsa(dp46101 +g4 +g5 +(g6 +(I0 +tp46102 +g8 +tp46103 +Rp46104 +(I1 +(I7 +tp46105 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46106 +tp46107 +bsa(dp46108 +g4 +g5 +(g6 +(I0 +tp46109 +g8 +tp46110 +Rp46111 +(I1 +(I7 +tp46112 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46113 +tp46114 +bsa(dp46115 +g4 +g5 +(g6 +(I0 +tp46116 +g8 +tp46117 +Rp46118 +(I1 +(I7 +tp46119 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46120 +tp46121 +bsa(dp46122 +g4 +g5 +(g6 +(I0 +tp46123 +g8 +tp46124 +Rp46125 +(I1 +(I7 +tp46126 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46127 +tp46128 +bsa(dp46129 +g4 +g5 +(g6 +(I0 +tp46130 +g8 +tp46131 +Rp46132 +(I1 +(I7 +tp46133 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46134 +tp46135 +bsa(dp46136 +g4 +g5 +(g6 +(I0 +tp46137 +g8 +tp46138 +Rp46139 +(I1 +(I7 +tp46140 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46141 +tp46142 +bsa(dp46143 +g4 +g5 +(g6 +(I0 +tp46144 +g8 +tp46145 +Rp46146 +(I1 +(I7 +tp46147 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46148 +tp46149 +bsa(dp46150 +g4 +g5 +(g6 +(I0 +tp46151 +g8 +tp46152 +Rp46153 +(I1 +(I7 +tp46154 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46155 +tp46156 +bsa(dp46157 +g4 +g5 +(g6 +(I0 +tp46158 +g8 +tp46159 +Rp46160 +(I1 +(I7 +tp46161 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46162 +tp46163 +bsa(dp46164 +g4 +g5 +(g6 +(I0 +tp46165 +g8 +tp46166 +Rp46167 +(I1 +(I7 +tp46168 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46169 +tp46170 +bsa(dp46171 +g4 +g5 +(g6 +(I0 +tp46172 +g8 +tp46173 +Rp46174 +(I1 +(I7 +tp46175 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46176 +tp46177 +bsa(dp46178 +g4 +g5 +(g6 +(I0 +tp46179 +g8 +tp46180 +Rp46181 +(I1 +(I7 +tp46182 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46183 +tp46184 +bsa(dp46185 +g4 +g5 +(g6 +(I0 +tp46186 +g8 +tp46187 +Rp46188 +(I1 +(I7 +tp46189 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46190 +tp46191 +bsa(dp46192 +g4 +g5 +(g6 +(I0 +tp46193 +g8 +tp46194 +Rp46195 +(I1 +(I7 +tp46196 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46197 +tp46198 +bsa(dp46199 +g4 +g5 +(g6 +(I0 +tp46200 +g8 +tp46201 +Rp46202 +(I1 +(I7 +tp46203 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46204 +tp46205 +bsa(dp46206 +g4 +g5 +(g6 +(I0 +tp46207 +g8 +tp46208 +Rp46209 +(I1 +(I7 +tp46210 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46211 +tp46212 +bsa(dp46213 +g4 +g5 +(g6 +(I0 +tp46214 +g8 +tp46215 +Rp46216 +(I1 +(I7 +tp46217 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46218 +tp46219 +bsa(dp46220 +g4 +g5 +(g6 +(I0 +tp46221 +g8 +tp46222 +Rp46223 +(I1 +(I7 +tp46224 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46225 +tp46226 +bsa(dp46227 +g4 +g5 +(g6 +(I0 +tp46228 +g8 +tp46229 +Rp46230 +(I1 +(I7 +tp46231 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46232 +tp46233 +bsa(dp46234 +g4 +g5 +(g6 +(I0 +tp46235 +g8 +tp46236 +Rp46237 +(I1 +(I7 +tp46238 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46239 +tp46240 +bsa(dp46241 +g4 +g5 +(g6 +(I0 +tp46242 +g8 +tp46243 +Rp46244 +(I1 +(I7 +tp46245 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46246 +tp46247 +bsa(dp46248 +g4 +g5 +(g6 +(I0 +tp46249 +g8 +tp46250 +Rp46251 +(I1 +(I7 +tp46252 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46253 +tp46254 +bsa(dp46255 +g4 +g5 +(g6 +(I0 +tp46256 +g8 +tp46257 +Rp46258 +(I1 +(I7 +tp46259 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46260 +tp46261 +bsa(dp46262 +g4 +g5 +(g6 +(I0 +tp46263 +g8 +tp46264 +Rp46265 +(I1 +(I7 +tp46266 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46267 +tp46268 +bsa(dp46269 +g4 +g5 +(g6 +(I0 +tp46270 +g8 +tp46271 +Rp46272 +(I1 +(I7 +tp46273 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46274 +tp46275 +bsa(dp46276 +g4 +g5 +(g6 +(I0 +tp46277 +g8 +tp46278 +Rp46279 +(I1 +(I7 +tp46280 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46281 +tp46282 +bsa(dp46283 +g4 +g5 +(g6 +(I0 +tp46284 +g8 +tp46285 +Rp46286 +(I1 +(I7 +tp46287 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46288 +tp46289 +bsa(dp46290 +g4 +g5 +(g6 +(I0 +tp46291 +g8 +tp46292 +Rp46293 +(I1 +(I7 +tp46294 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46295 +tp46296 +bsa(dp46297 +g4 +g5 +(g6 +(I0 +tp46298 +g8 +tp46299 +Rp46300 +(I1 +(I7 +tp46301 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46302 +tp46303 +bsa(dp46304 +g4 +g5 +(g6 +(I0 +tp46305 +g8 +tp46306 +Rp46307 +(I1 +(I7 +tp46308 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46309 +tp46310 +bsa(dp46311 +g4 +g5 +(g6 +(I0 +tp46312 +g8 +tp46313 +Rp46314 +(I1 +(I7 +tp46315 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46316 +tp46317 +bsa(dp46318 +g4 +g5 +(g6 +(I0 +tp46319 +g8 +tp46320 +Rp46321 +(I1 +(I7 +tp46322 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46323 +tp46324 +bsa(dp46325 +g4 +g5 +(g6 +(I0 +tp46326 +g8 +tp46327 +Rp46328 +(I1 +(I7 +tp46329 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46330 +tp46331 +bsa(dp46332 +g4 +g5 +(g6 +(I0 +tp46333 +g8 +tp46334 +Rp46335 +(I1 +(I7 +tp46336 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46337 +tp46338 +bsa(dp46339 +g4 +g5 +(g6 +(I0 +tp46340 +g8 +tp46341 +Rp46342 +(I1 +(I7 +tp46343 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46344 +tp46345 +bsa(dp46346 +g4 +g5 +(g6 +(I0 +tp46347 +g8 +tp46348 +Rp46349 +(I1 +(I7 +tp46350 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46351 +tp46352 +bsa(dp46353 +g4 +g5 +(g6 +(I0 +tp46354 +g8 +tp46355 +Rp46356 +(I1 +(I7 +tp46357 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46358 +tp46359 +bsa(dp46360 +g4 +g5 +(g6 +(I0 +tp46361 +g8 +tp46362 +Rp46363 +(I1 +(I7 +tp46364 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46365 +tp46366 +bsa(dp46367 +g4 +g5 +(g6 +(I0 +tp46368 +g8 +tp46369 +Rp46370 +(I1 +(I7 +tp46371 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46372 +tp46373 +bsa(dp46374 +g4 +g5 +(g6 +(I0 +tp46375 +g8 +tp46376 +Rp46377 +(I1 +(I7 +tp46378 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46379 +tp46380 +bsa(dp46381 +g4 +g5 +(g6 +(I0 +tp46382 +g8 +tp46383 +Rp46384 +(I1 +(I7 +tp46385 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46386 +tp46387 +bsa(dp46388 +g4 +g5 +(g6 +(I0 +tp46389 +g8 +tp46390 +Rp46391 +(I1 +(I7 +tp46392 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46393 +tp46394 +bsa(dp46395 +g4 +g5 +(g6 +(I0 +tp46396 +g8 +tp46397 +Rp46398 +(I1 +(I7 +tp46399 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46400 +tp46401 +bsa(dp46402 +g4 +g5 +(g6 +(I0 +tp46403 +g8 +tp46404 +Rp46405 +(I1 +(I7 +tp46406 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46407 +tp46408 +bsa(dp46409 +g4 +g5 +(g6 +(I0 +tp46410 +g8 +tp46411 +Rp46412 +(I1 +(I7 +tp46413 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46414 +tp46415 +bsa(dp46416 +g4 +g5 +(g6 +(I0 +tp46417 +g8 +tp46418 +Rp46419 +(I1 +(I7 +tp46420 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46421 +tp46422 +bsa(dp46423 +g4 +g5 +(g6 +(I0 +tp46424 +g8 +tp46425 +Rp46426 +(I1 +(I7 +tp46427 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46428 +tp46429 +bsa(dp46430 +g4 +g5 +(g6 +(I0 +tp46431 +g8 +tp46432 +Rp46433 +(I1 +(I7 +tp46434 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46435 +tp46436 +bsa(dp46437 +g4 +g5 +(g6 +(I0 +tp46438 +g8 +tp46439 +Rp46440 +(I1 +(I7 +tp46441 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46442 +tp46443 +bsa(dp46444 +g4 +g5 +(g6 +(I0 +tp46445 +g8 +tp46446 +Rp46447 +(I1 +(I7 +tp46448 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46449 +tp46450 +bsa(dp46451 +g4 +g5 +(g6 +(I0 +tp46452 +g8 +tp46453 +Rp46454 +(I1 +(I7 +tp46455 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46456 +tp46457 +bsa(dp46458 +g4 +g5 +(g6 +(I0 +tp46459 +g8 +tp46460 +Rp46461 +(I1 +(I7 +tp46462 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46463 +tp46464 +bsa(dp46465 +g4 +g5 +(g6 +(I0 +tp46466 +g8 +tp46467 +Rp46468 +(I1 +(I7 +tp46469 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46470 +tp46471 +bsa(dp46472 +g4 +g5 +(g6 +(I0 +tp46473 +g8 +tp46474 +Rp46475 +(I1 +(I7 +tp46476 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46477 +tp46478 +bsa(dp46479 +g4 +g5 +(g6 +(I0 +tp46480 +g8 +tp46481 +Rp46482 +(I1 +(I7 +tp46483 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46484 +tp46485 +bsa(dp46486 +g4 +g5 +(g6 +(I0 +tp46487 +g8 +tp46488 +Rp46489 +(I1 +(I7 +tp46490 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46491 +tp46492 +bsa(dp46493 +g4 +g5 +(g6 +(I0 +tp46494 +g8 +tp46495 +Rp46496 +(I1 +(I7 +tp46497 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46498 +tp46499 +bsa(dp46500 +g4 +g5 +(g6 +(I0 +tp46501 +g8 +tp46502 +Rp46503 +(I1 +(I7 +tp46504 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46505 +tp46506 +bsa(dp46507 +g4 +g5 +(g6 +(I0 +tp46508 +g8 +tp46509 +Rp46510 +(I1 +(I7 +tp46511 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46512 +tp46513 +bsa(dp46514 +g4 +g5 +(g6 +(I0 +tp46515 +g8 +tp46516 +Rp46517 +(I1 +(I7 +tp46518 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46519 +tp46520 +bsa(dp46521 +g4 +g5 +(g6 +(I0 +tp46522 +g8 +tp46523 +Rp46524 +(I1 +(I7 +tp46525 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46526 +tp46527 +bsa(dp46528 +g4 +g5 +(g6 +(I0 +tp46529 +g8 +tp46530 +Rp46531 +(I1 +(I7 +tp46532 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46533 +tp46534 +bsa(dp46535 +g4 +g5 +(g6 +(I0 +tp46536 +g8 +tp46537 +Rp46538 +(I1 +(I7 +tp46539 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46540 +tp46541 +bsa(dp46542 +g4 +g5 +(g6 +(I0 +tp46543 +g8 +tp46544 +Rp46545 +(I1 +(I7 +tp46546 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46547 +tp46548 +bsa(dp46549 +g4 +g5 +(g6 +(I0 +tp46550 +g8 +tp46551 +Rp46552 +(I1 +(I7 +tp46553 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46554 +tp46555 +bsa(dp46556 +g4 +g5 +(g6 +(I0 +tp46557 +g8 +tp46558 +Rp46559 +(I1 +(I7 +tp46560 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46561 +tp46562 +bsa(dp46563 +g4 +g5 +(g6 +(I0 +tp46564 +g8 +tp46565 +Rp46566 +(I1 +(I7 +tp46567 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46568 +tp46569 +bsa(dp46570 +g4 +g5 +(g6 +(I0 +tp46571 +g8 +tp46572 +Rp46573 +(I1 +(I7 +tp46574 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46575 +tp46576 +bsa(dp46577 +g4 +g5 +(g6 +(I0 +tp46578 +g8 +tp46579 +Rp46580 +(I1 +(I7 +tp46581 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46582 +tp46583 +bsa(dp46584 +g4 +g5 +(g6 +(I0 +tp46585 +g8 +tp46586 +Rp46587 +(I1 +(I7 +tp46588 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46589 +tp46590 +bsa(dp46591 +g4 +g5 +(g6 +(I0 +tp46592 +g8 +tp46593 +Rp46594 +(I1 +(I7 +tp46595 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46596 +tp46597 +bsa(dp46598 +g4 +g5 +(g6 +(I0 +tp46599 +g8 +tp46600 +Rp46601 +(I1 +(I7 +tp46602 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46603 +tp46604 +bsa(dp46605 +g4 +g5 +(g6 +(I0 +tp46606 +g8 +tp46607 +Rp46608 +(I1 +(I7 +tp46609 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46610 +tp46611 +bsa(dp46612 +g4 +g5 +(g6 +(I0 +tp46613 +g8 +tp46614 +Rp46615 +(I1 +(I7 +tp46616 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46617 +tp46618 +bsa(dp46619 +g4 +g5 +(g6 +(I0 +tp46620 +g8 +tp46621 +Rp46622 +(I1 +(I7 +tp46623 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46624 +tp46625 +bsa(dp46626 +g4 +g5 +(g6 +(I0 +tp46627 +g8 +tp46628 +Rp46629 +(I1 +(I7 +tp46630 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46631 +tp46632 +bsa(dp46633 +g4 +g5 +(g6 +(I0 +tp46634 +g8 +tp46635 +Rp46636 +(I1 +(I7 +tp46637 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46638 +tp46639 +bsa(dp46640 +g4 +g5 +(g6 +(I0 +tp46641 +g8 +tp46642 +Rp46643 +(I1 +(I7 +tp46644 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46645 +tp46646 +bsa(dp46647 +g4 +g5 +(g6 +(I0 +tp46648 +g8 +tp46649 +Rp46650 +(I1 +(I7 +tp46651 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46652 +tp46653 +bsa(dp46654 +g4 +g5 +(g6 +(I0 +tp46655 +g8 +tp46656 +Rp46657 +(I1 +(I7 +tp46658 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46659 +tp46660 +bsa(dp46661 +g4 +g5 +(g6 +(I0 +tp46662 +g8 +tp46663 +Rp46664 +(I1 +(I7 +tp46665 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46666 +tp46667 +bsa(dp46668 +g4 +g5 +(g6 +(I0 +tp46669 +g8 +tp46670 +Rp46671 +(I1 +(I7 +tp46672 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46673 +tp46674 +bsa(dp46675 +g4 +g5 +(g6 +(I0 +tp46676 +g8 +tp46677 +Rp46678 +(I1 +(I7 +tp46679 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46680 +tp46681 +bsa(dp46682 +g4 +g5 +(g6 +(I0 +tp46683 +g8 +tp46684 +Rp46685 +(I1 +(I7 +tp46686 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46687 +tp46688 +bsa(dp46689 +g4 +g5 +(g6 +(I0 +tp46690 +g8 +tp46691 +Rp46692 +(I1 +(I7 +tp46693 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46694 +tp46695 +bsa(dp46696 +g4 +g5 +(g6 +(I0 +tp46697 +g8 +tp46698 +Rp46699 +(I1 +(I7 +tp46700 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46701 +tp46702 +bsa(dp46703 +g4 +g5 +(g6 +(I0 +tp46704 +g8 +tp46705 +Rp46706 +(I1 +(I7 +tp46707 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46708 +tp46709 +bsa(dp46710 +g4 +g5 +(g6 +(I0 +tp46711 +g8 +tp46712 +Rp46713 +(I1 +(I7 +tp46714 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46715 +tp46716 +bsa(dp46717 +g4 +g5 +(g6 +(I0 +tp46718 +g8 +tp46719 +Rp46720 +(I1 +(I7 +tp46721 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46722 +tp46723 +bsa(dp46724 +g4 +g5 +(g6 +(I0 +tp46725 +g8 +tp46726 +Rp46727 +(I1 +(I7 +tp46728 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46729 +tp46730 +bsa(dp46731 +g4 +g5 +(g6 +(I0 +tp46732 +g8 +tp46733 +Rp46734 +(I1 +(I7 +tp46735 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46736 +tp46737 +bsa(dp46738 +g4 +g5 +(g6 +(I0 +tp46739 +g8 +tp46740 +Rp46741 +(I1 +(I7 +tp46742 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46743 +tp46744 +bsa(dp46745 +g4 +g5 +(g6 +(I0 +tp46746 +g8 +tp46747 +Rp46748 +(I1 +(I7 +tp46749 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46750 +tp46751 +bsa(dp46752 +g4 +g5 +(g6 +(I0 +tp46753 +g8 +tp46754 +Rp46755 +(I1 +(I7 +tp46756 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46757 +tp46758 +bsa(dp46759 +g4 +g5 +(g6 +(I0 +tp46760 +g8 +tp46761 +Rp46762 +(I1 +(I7 +tp46763 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46764 +tp46765 +bsa(dp46766 +g4 +g5 +(g6 +(I0 +tp46767 +g8 +tp46768 +Rp46769 +(I1 +(I7 +tp46770 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46771 +tp46772 +bsa(dp46773 +g4 +g5 +(g6 +(I0 +tp46774 +g8 +tp46775 +Rp46776 +(I1 +(I7 +tp46777 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46778 +tp46779 +bsa(dp46780 +g4 +g5 +(g6 +(I0 +tp46781 +g8 +tp46782 +Rp46783 +(I1 +(I7 +tp46784 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46785 +tp46786 +bsa(dp46787 +g4 +g5 +(g6 +(I0 +tp46788 +g8 +tp46789 +Rp46790 +(I1 +(I7 +tp46791 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46792 +tp46793 +bsa(dp46794 +g4 +g5 +(g6 +(I0 +tp46795 +g8 +tp46796 +Rp46797 +(I1 +(I7 +tp46798 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46799 +tp46800 +bsa(dp46801 +g4 +g5 +(g6 +(I0 +tp46802 +g8 +tp46803 +Rp46804 +(I1 +(I7 +tp46805 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46806 +tp46807 +bsa(dp46808 +g4 +g5 +(g6 +(I0 +tp46809 +g8 +tp46810 +Rp46811 +(I1 +(I7 +tp46812 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46813 +tp46814 +bsa(dp46815 +g4 +g5 +(g6 +(I0 +tp46816 +g8 +tp46817 +Rp46818 +(I1 +(I7 +tp46819 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46820 +tp46821 +bsa(dp46822 +g4 +g5 +(g6 +(I0 +tp46823 +g8 +tp46824 +Rp46825 +(I1 +(I7 +tp46826 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46827 +tp46828 +bsa(dp46829 +g4 +g5 +(g6 +(I0 +tp46830 +g8 +tp46831 +Rp46832 +(I1 +(I7 +tp46833 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46834 +tp46835 +bsa(dp46836 +g4 +g5 +(g6 +(I0 +tp46837 +g8 +tp46838 +Rp46839 +(I1 +(I7 +tp46840 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46841 +tp46842 +bsa(dp46843 +g4 +g5 +(g6 +(I0 +tp46844 +g8 +tp46845 +Rp46846 +(I1 +(I7 +tp46847 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46848 +tp46849 +bsa(dp46850 +g4 +g5 +(g6 +(I0 +tp46851 +g8 +tp46852 +Rp46853 +(I1 +(I7 +tp46854 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46855 +tp46856 +bsa(dp46857 +g4 +g5 +(g6 +(I0 +tp46858 +g8 +tp46859 +Rp46860 +(I1 +(I7 +tp46861 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46862 +tp46863 +bsa(dp46864 +g4 +g5 +(g6 +(I0 +tp46865 +g8 +tp46866 +Rp46867 +(I1 +(I7 +tp46868 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46869 +tp46870 +bsa(dp46871 +g4 +g5 +(g6 +(I0 +tp46872 +g8 +tp46873 +Rp46874 +(I1 +(I7 +tp46875 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46876 +tp46877 +bsa(dp46878 +g4 +g5 +(g6 +(I0 +tp46879 +g8 +tp46880 +Rp46881 +(I1 +(I7 +tp46882 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46883 +tp46884 +bsa(dp46885 +g4 +g5 +(g6 +(I0 +tp46886 +g8 +tp46887 +Rp46888 +(I1 +(I7 +tp46889 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46890 +tp46891 +bsa(dp46892 +g4 +g5 +(g6 +(I0 +tp46893 +g8 +tp46894 +Rp46895 +(I1 +(I7 +tp46896 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46897 +tp46898 +bsa(dp46899 +g4 +g5 +(g6 +(I0 +tp46900 +g8 +tp46901 +Rp46902 +(I1 +(I7 +tp46903 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46904 +tp46905 +bsa(dp46906 +g4 +g5 +(g6 +(I0 +tp46907 +g8 +tp46908 +Rp46909 +(I1 +(I7 +tp46910 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46911 +tp46912 +bsa(dp46913 +g4 +g5 +(g6 +(I0 +tp46914 +g8 +tp46915 +Rp46916 +(I1 +(I7 +tp46917 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46918 +tp46919 +bsa(dp46920 +g4 +g5 +(g6 +(I0 +tp46921 +g8 +tp46922 +Rp46923 +(I1 +(I7 +tp46924 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46925 +tp46926 +bsa(dp46927 +g4 +g5 +(g6 +(I0 +tp46928 +g8 +tp46929 +Rp46930 +(I1 +(I7 +tp46931 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46932 +tp46933 +bsa(dp46934 +g4 +g5 +(g6 +(I0 +tp46935 +g8 +tp46936 +Rp46937 +(I1 +(I7 +tp46938 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46939 +tp46940 +bsa(dp46941 +g4 +g5 +(g6 +(I0 +tp46942 +g8 +tp46943 +Rp46944 +(I1 +(I7 +tp46945 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46946 +tp46947 +bsa(dp46948 +g4 +g5 +(g6 +(I0 +tp46949 +g8 +tp46950 +Rp46951 +(I1 +(I7 +tp46952 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p46953 +tp46954 +bsa(dp46955 +g4 +g5 +(g6 +(I0 +tp46956 +g8 +tp46957 +Rp46958 +(I1 +(I7 +tp46959 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p46960 +tp46961 +bsa(dp46962 +g4 +g5 +(g6 +(I0 +tp46963 +g8 +tp46964 +Rp46965 +(I1 +(I7 +tp46966 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46967 +tp46968 +bsa(dp46969 +g4 +g5 +(g6 +(I0 +tp46970 +g8 +tp46971 +Rp46972 +(I1 +(I7 +tp46973 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46974 +tp46975 +bsa(dp46976 +g4 +g5 +(g6 +(I0 +tp46977 +g8 +tp46978 +Rp46979 +(I1 +(I7 +tp46980 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46981 +tp46982 +bsa(dp46983 +g4 +g5 +(g6 +(I0 +tp46984 +g8 +tp46985 +Rp46986 +(I1 +(I7 +tp46987 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46988 +tp46989 +bsa(dp46990 +g4 +g5 +(g6 +(I0 +tp46991 +g8 +tp46992 +Rp46993 +(I1 +(I7 +tp46994 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p46995 +tp46996 +bsa(dp46997 +g4 +g5 +(g6 +(I0 +tp46998 +g8 +tp46999 +Rp47000 +(I1 +(I7 +tp47001 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47002 +tp47003 +bsa(dp47004 +g4 +g5 +(g6 +(I0 +tp47005 +g8 +tp47006 +Rp47007 +(I1 +(I7 +tp47008 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47009 +tp47010 +bsa(dp47011 +g4 +g5 +(g6 +(I0 +tp47012 +g8 +tp47013 +Rp47014 +(I1 +(I7 +tp47015 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47016 +tp47017 +bsa(dp47018 +g4 +g5 +(g6 +(I0 +tp47019 +g8 +tp47020 +Rp47021 +(I1 +(I7 +tp47022 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47023 +tp47024 +bsa(dp47025 +g4 +g5 +(g6 +(I0 +tp47026 +g8 +tp47027 +Rp47028 +(I1 +(I7 +tp47029 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47030 +tp47031 +bsa(dp47032 +g4 +g5 +(g6 +(I0 +tp47033 +g8 +tp47034 +Rp47035 +(I1 +(I7 +tp47036 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47037 +tp47038 +bsa(dp47039 +g4 +g5 +(g6 +(I0 +tp47040 +g8 +tp47041 +Rp47042 +(I1 +(I7 +tp47043 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47044 +tp47045 +bsa(dp47046 +g4 +g5 +(g6 +(I0 +tp47047 +g8 +tp47048 +Rp47049 +(I1 +(I7 +tp47050 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47051 +tp47052 +bsa(dp47053 +g4 +g5 +(g6 +(I0 +tp47054 +g8 +tp47055 +Rp47056 +(I1 +(I7 +tp47057 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47058 +tp47059 +bsa(dp47060 +g4 +g5 +(g6 +(I0 +tp47061 +g8 +tp47062 +Rp47063 +(I1 +(I7 +tp47064 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47065 +tp47066 +bsa(dp47067 +g4 +g5 +(g6 +(I0 +tp47068 +g8 +tp47069 +Rp47070 +(I1 +(I7 +tp47071 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47072 +tp47073 +bsa(dp47074 +g4 +g5 +(g6 +(I0 +tp47075 +g8 +tp47076 +Rp47077 +(I1 +(I7 +tp47078 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47079 +tp47080 +bsa(dp47081 +g4 +g5 +(g6 +(I0 +tp47082 +g8 +tp47083 +Rp47084 +(I1 +(I7 +tp47085 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47086 +tp47087 +bsa(dp47088 +g4 +g5 +(g6 +(I0 +tp47089 +g8 +tp47090 +Rp47091 +(I1 +(I7 +tp47092 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47093 +tp47094 +bsa(dp47095 +g4 +g5 +(g6 +(I0 +tp47096 +g8 +tp47097 +Rp47098 +(I1 +(I7 +tp47099 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47100 +tp47101 +bsa(dp47102 +g4 +g5 +(g6 +(I0 +tp47103 +g8 +tp47104 +Rp47105 +(I1 +(I7 +tp47106 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47107 +tp47108 +bsa(dp47109 +g4 +g5 +(g6 +(I0 +tp47110 +g8 +tp47111 +Rp47112 +(I1 +(I7 +tp47113 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47114 +tp47115 +bsa(dp47116 +g4 +g5 +(g6 +(I0 +tp47117 +g8 +tp47118 +Rp47119 +(I1 +(I7 +tp47120 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47121 +tp47122 +bsa(dp47123 +g4 +g5 +(g6 +(I0 +tp47124 +g8 +tp47125 +Rp47126 +(I1 +(I7 +tp47127 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47128 +tp47129 +bsa(dp47130 +g4 +g5 +(g6 +(I0 +tp47131 +g8 +tp47132 +Rp47133 +(I1 +(I7 +tp47134 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47135 +tp47136 +bsa(dp47137 +g4 +g5 +(g6 +(I0 +tp47138 +g8 +tp47139 +Rp47140 +(I1 +(I7 +tp47141 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47142 +tp47143 +bsa(dp47144 +g4 +g5 +(g6 +(I0 +tp47145 +g8 +tp47146 +Rp47147 +(I1 +(I7 +tp47148 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47149 +tp47150 +bsa(dp47151 +g4 +g5 +(g6 +(I0 +tp47152 +g8 +tp47153 +Rp47154 +(I1 +(I7 +tp47155 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47156 +tp47157 +bsa(dp47158 +g4 +g5 +(g6 +(I0 +tp47159 +g8 +tp47160 +Rp47161 +(I1 +(I7 +tp47162 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47163 +tp47164 +bsa(dp47165 +g4 +g5 +(g6 +(I0 +tp47166 +g8 +tp47167 +Rp47168 +(I1 +(I7 +tp47169 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47170 +tp47171 +bsa(dp47172 +g4 +g5 +(g6 +(I0 +tp47173 +g8 +tp47174 +Rp47175 +(I1 +(I7 +tp47176 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47177 +tp47178 +bsa(dp47179 +g4 +g5 +(g6 +(I0 +tp47180 +g8 +tp47181 +Rp47182 +(I1 +(I7 +tp47183 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47184 +tp47185 +bsa(dp47186 +g4 +g5 +(g6 +(I0 +tp47187 +g8 +tp47188 +Rp47189 +(I1 +(I7 +tp47190 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47191 +tp47192 +bsa(dp47193 +g4 +g5 +(g6 +(I0 +tp47194 +g8 +tp47195 +Rp47196 +(I1 +(I7 +tp47197 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47198 +tp47199 +bsa(dp47200 +g4 +g5 +(g6 +(I0 +tp47201 +g8 +tp47202 +Rp47203 +(I1 +(I7 +tp47204 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47205 +tp47206 +bsa(dp47207 +g4 +g5 +(g6 +(I0 +tp47208 +g8 +tp47209 +Rp47210 +(I1 +(I7 +tp47211 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47212 +tp47213 +bsa(dp47214 +g4 +g5 +(g6 +(I0 +tp47215 +g8 +tp47216 +Rp47217 +(I1 +(I7 +tp47218 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47219 +tp47220 +bsa(dp47221 +g4 +g5 +(g6 +(I0 +tp47222 +g8 +tp47223 +Rp47224 +(I1 +(I7 +tp47225 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47226 +tp47227 +bsa(dp47228 +g4 +g5 +(g6 +(I0 +tp47229 +g8 +tp47230 +Rp47231 +(I1 +(I7 +tp47232 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47233 +tp47234 +bsa(dp47235 +g4 +g5 +(g6 +(I0 +tp47236 +g8 +tp47237 +Rp47238 +(I1 +(I7 +tp47239 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47240 +tp47241 +bsa(dp47242 +g4 +g5 +(g6 +(I0 +tp47243 +g8 +tp47244 +Rp47245 +(I1 +(I7 +tp47246 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47247 +tp47248 +bsa(dp47249 +g4 +g5 +(g6 +(I0 +tp47250 +g8 +tp47251 +Rp47252 +(I1 +(I7 +tp47253 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47254 +tp47255 +bsa(dp47256 +g4 +g5 +(g6 +(I0 +tp47257 +g8 +tp47258 +Rp47259 +(I1 +(I7 +tp47260 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47261 +tp47262 +bsa(dp47263 +g4 +g5 +(g6 +(I0 +tp47264 +g8 +tp47265 +Rp47266 +(I1 +(I7 +tp47267 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47268 +tp47269 +bsa(dp47270 +g4 +g5 +(g6 +(I0 +tp47271 +g8 +tp47272 +Rp47273 +(I1 +(I7 +tp47274 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47275 +tp47276 +bsa(dp47277 +g4 +g5 +(g6 +(I0 +tp47278 +g8 +tp47279 +Rp47280 +(I1 +(I7 +tp47281 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47282 +tp47283 +bsa(dp47284 +g4 +g5 +(g6 +(I0 +tp47285 +g8 +tp47286 +Rp47287 +(I1 +(I7 +tp47288 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47289 +tp47290 +bsa(dp47291 +g4 +g5 +(g6 +(I0 +tp47292 +g8 +tp47293 +Rp47294 +(I1 +(I7 +tp47295 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47296 +tp47297 +bsa(dp47298 +g4 +g5 +(g6 +(I0 +tp47299 +g8 +tp47300 +Rp47301 +(I1 +(I7 +tp47302 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47303 +tp47304 +bsa(dp47305 +g4 +g5 +(g6 +(I0 +tp47306 +g8 +tp47307 +Rp47308 +(I1 +(I7 +tp47309 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47310 +tp47311 +bsa(dp47312 +g4 +g5 +(g6 +(I0 +tp47313 +g8 +tp47314 +Rp47315 +(I1 +(I7 +tp47316 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47317 +tp47318 +bsa(dp47319 +g4 +g5 +(g6 +(I0 +tp47320 +g8 +tp47321 +Rp47322 +(I1 +(I7 +tp47323 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47324 +tp47325 +bsa(dp47326 +g4 +g5 +(g6 +(I0 +tp47327 +g8 +tp47328 +Rp47329 +(I1 +(I7 +tp47330 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47331 +tp47332 +bsa(dp47333 +g4 +g5 +(g6 +(I0 +tp47334 +g8 +tp47335 +Rp47336 +(I1 +(I7 +tp47337 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47338 +tp47339 +bsa(dp47340 +g4 +g5 +(g6 +(I0 +tp47341 +g8 +tp47342 +Rp47343 +(I1 +(I7 +tp47344 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47345 +tp47346 +bsa(dp47347 +g4 +g5 +(g6 +(I0 +tp47348 +g8 +tp47349 +Rp47350 +(I1 +(I7 +tp47351 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47352 +tp47353 +bsa(dp47354 +g4 +g5 +(g6 +(I0 +tp47355 +g8 +tp47356 +Rp47357 +(I1 +(I7 +tp47358 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47359 +tp47360 +bsa(dp47361 +g4 +g5 +(g6 +(I0 +tp47362 +g8 +tp47363 +Rp47364 +(I1 +(I7 +tp47365 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47366 +tp47367 +bsa(dp47368 +g4 +g5 +(g6 +(I0 +tp47369 +g8 +tp47370 +Rp47371 +(I1 +(I7 +tp47372 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47373 +tp47374 +bsa(dp47375 +g4 +g5 +(g6 +(I0 +tp47376 +g8 +tp47377 +Rp47378 +(I1 +(I7 +tp47379 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47380 +tp47381 +bsa(dp47382 +g4 +g5 +(g6 +(I0 +tp47383 +g8 +tp47384 +Rp47385 +(I1 +(I7 +tp47386 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47387 +tp47388 +bsa(dp47389 +g4 +g5 +(g6 +(I0 +tp47390 +g8 +tp47391 +Rp47392 +(I1 +(I7 +tp47393 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47394 +tp47395 +bsa(dp47396 +g4 +g5 +(g6 +(I0 +tp47397 +g8 +tp47398 +Rp47399 +(I1 +(I7 +tp47400 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47401 +tp47402 +bsa(dp47403 +g4 +g5 +(g6 +(I0 +tp47404 +g8 +tp47405 +Rp47406 +(I1 +(I7 +tp47407 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47408 +tp47409 +bsa(dp47410 +g4 +g5 +(g6 +(I0 +tp47411 +g8 +tp47412 +Rp47413 +(I1 +(I7 +tp47414 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47415 +tp47416 +bsa(dp47417 +g4 +g5 +(g6 +(I0 +tp47418 +g8 +tp47419 +Rp47420 +(I1 +(I7 +tp47421 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47422 +tp47423 +bsa(dp47424 +g4 +g5 +(g6 +(I0 +tp47425 +g8 +tp47426 +Rp47427 +(I1 +(I7 +tp47428 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47429 +tp47430 +bsa(dp47431 +g4 +g5 +(g6 +(I0 +tp47432 +g8 +tp47433 +Rp47434 +(I1 +(I7 +tp47435 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47436 +tp47437 +bsa(dp47438 +g4 +g5 +(g6 +(I0 +tp47439 +g8 +tp47440 +Rp47441 +(I1 +(I7 +tp47442 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47443 +tp47444 +bsa(dp47445 +g4 +g5 +(g6 +(I0 +tp47446 +g8 +tp47447 +Rp47448 +(I1 +(I7 +tp47449 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47450 +tp47451 +bsa(dp47452 +g4 +g5 +(g6 +(I0 +tp47453 +g8 +tp47454 +Rp47455 +(I1 +(I7 +tp47456 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47457 +tp47458 +bsa(dp47459 +g4 +g5 +(g6 +(I0 +tp47460 +g8 +tp47461 +Rp47462 +(I1 +(I7 +tp47463 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47464 +tp47465 +bsa(dp47466 +g4 +g5 +(g6 +(I0 +tp47467 +g8 +tp47468 +Rp47469 +(I1 +(I7 +tp47470 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47471 +tp47472 +bsa(dp47473 +g4 +g5 +(g6 +(I0 +tp47474 +g8 +tp47475 +Rp47476 +(I1 +(I7 +tp47477 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47478 +tp47479 +bsa(dp47480 +g4 +g5 +(g6 +(I0 +tp47481 +g8 +tp47482 +Rp47483 +(I1 +(I7 +tp47484 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47485 +tp47486 +bsa(dp47487 +g4 +g5 +(g6 +(I0 +tp47488 +g8 +tp47489 +Rp47490 +(I1 +(I7 +tp47491 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47492 +tp47493 +bsa(dp47494 +g4 +g5 +(g6 +(I0 +tp47495 +g8 +tp47496 +Rp47497 +(I1 +(I7 +tp47498 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47499 +tp47500 +bsa(dp47501 +g4 +g5 +(g6 +(I0 +tp47502 +g8 +tp47503 +Rp47504 +(I1 +(I7 +tp47505 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47506 +tp47507 +bsa(dp47508 +g4 +g5 +(g6 +(I0 +tp47509 +g8 +tp47510 +Rp47511 +(I1 +(I7 +tp47512 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47513 +tp47514 +bsa(dp47515 +g4 +g5 +(g6 +(I0 +tp47516 +g8 +tp47517 +Rp47518 +(I1 +(I7 +tp47519 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47520 +tp47521 +bsa(dp47522 +g4 +g5 +(g6 +(I0 +tp47523 +g8 +tp47524 +Rp47525 +(I1 +(I7 +tp47526 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47527 +tp47528 +bsa(dp47529 +g4 +g5 +(g6 +(I0 +tp47530 +g8 +tp47531 +Rp47532 +(I1 +(I7 +tp47533 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47534 +tp47535 +bsa(dp47536 +g4 +g5 +(g6 +(I0 +tp47537 +g8 +tp47538 +Rp47539 +(I1 +(I7 +tp47540 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47541 +tp47542 +bsa(dp47543 +g4 +g5 +(g6 +(I0 +tp47544 +g8 +tp47545 +Rp47546 +(I1 +(I7 +tp47547 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47548 +tp47549 +bsa(dp47550 +g4 +g5 +(g6 +(I0 +tp47551 +g8 +tp47552 +Rp47553 +(I1 +(I7 +tp47554 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47555 +tp47556 +bsa(dp47557 +g4 +g5 +(g6 +(I0 +tp47558 +g8 +tp47559 +Rp47560 +(I1 +(I7 +tp47561 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47562 +tp47563 +bsa(dp47564 +g4 +g5 +(g6 +(I0 +tp47565 +g8 +tp47566 +Rp47567 +(I1 +(I7 +tp47568 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47569 +tp47570 +bsa(dp47571 +g4 +g5 +(g6 +(I0 +tp47572 +g8 +tp47573 +Rp47574 +(I1 +(I7 +tp47575 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47576 +tp47577 +bsa(dp47578 +g4 +g5 +(g6 +(I0 +tp47579 +g8 +tp47580 +Rp47581 +(I1 +(I7 +tp47582 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47583 +tp47584 +bsa(dp47585 +g4 +g5 +(g6 +(I0 +tp47586 +g8 +tp47587 +Rp47588 +(I1 +(I7 +tp47589 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47590 +tp47591 +bsa(dp47592 +g4 +g5 +(g6 +(I0 +tp47593 +g8 +tp47594 +Rp47595 +(I1 +(I7 +tp47596 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47597 +tp47598 +bsa(dp47599 +g4 +g5 +(g6 +(I0 +tp47600 +g8 +tp47601 +Rp47602 +(I1 +(I7 +tp47603 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47604 +tp47605 +bsa(dp47606 +g4 +g5 +(g6 +(I0 +tp47607 +g8 +tp47608 +Rp47609 +(I1 +(I7 +tp47610 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47611 +tp47612 +bsa(dp47613 +g4 +g5 +(g6 +(I0 +tp47614 +g8 +tp47615 +Rp47616 +(I1 +(I7 +tp47617 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47618 +tp47619 +bsa(dp47620 +g4 +g5 +(g6 +(I0 +tp47621 +g8 +tp47622 +Rp47623 +(I1 +(I7 +tp47624 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47625 +tp47626 +bsa(dp47627 +g4 +g5 +(g6 +(I0 +tp47628 +g8 +tp47629 +Rp47630 +(I1 +(I7 +tp47631 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47632 +tp47633 +bsa(dp47634 +g4 +g5 +(g6 +(I0 +tp47635 +g8 +tp47636 +Rp47637 +(I1 +(I7 +tp47638 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47639 +tp47640 +bsa(dp47641 +g4 +g5 +(g6 +(I0 +tp47642 +g8 +tp47643 +Rp47644 +(I1 +(I7 +tp47645 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47646 +tp47647 +bsa(dp47648 +g4 +g5 +(g6 +(I0 +tp47649 +g8 +tp47650 +Rp47651 +(I1 +(I7 +tp47652 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47653 +tp47654 +bsa(dp47655 +g4 +g5 +(g6 +(I0 +tp47656 +g8 +tp47657 +Rp47658 +(I1 +(I7 +tp47659 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47660 +tp47661 +bsa(dp47662 +g4 +g5 +(g6 +(I0 +tp47663 +g8 +tp47664 +Rp47665 +(I1 +(I7 +tp47666 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47667 +tp47668 +bsa(dp47669 +g4 +g5 +(g6 +(I0 +tp47670 +g8 +tp47671 +Rp47672 +(I1 +(I7 +tp47673 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47674 +tp47675 +bsa(dp47676 +g4 +g5 +(g6 +(I0 +tp47677 +g8 +tp47678 +Rp47679 +(I1 +(I7 +tp47680 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47681 +tp47682 +bsa(dp47683 +g4 +g5 +(g6 +(I0 +tp47684 +g8 +tp47685 +Rp47686 +(I1 +(I7 +tp47687 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47688 +tp47689 +bsa(dp47690 +g4 +g5 +(g6 +(I0 +tp47691 +g8 +tp47692 +Rp47693 +(I1 +(I7 +tp47694 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47695 +tp47696 +bsa(dp47697 +g4 +g5 +(g6 +(I0 +tp47698 +g8 +tp47699 +Rp47700 +(I1 +(I7 +tp47701 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47702 +tp47703 +bsa(dp47704 +g4 +g5 +(g6 +(I0 +tp47705 +g8 +tp47706 +Rp47707 +(I1 +(I7 +tp47708 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47709 +tp47710 +bsa(dp47711 +g4 +g5 +(g6 +(I0 +tp47712 +g8 +tp47713 +Rp47714 +(I1 +(I7 +tp47715 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47716 +tp47717 +bsa(dp47718 +g4 +g5 +(g6 +(I0 +tp47719 +g8 +tp47720 +Rp47721 +(I1 +(I7 +tp47722 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47723 +tp47724 +bsa(dp47725 +g4 +g5 +(g6 +(I0 +tp47726 +g8 +tp47727 +Rp47728 +(I1 +(I7 +tp47729 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47730 +tp47731 +bsa(dp47732 +g4 +g5 +(g6 +(I0 +tp47733 +g8 +tp47734 +Rp47735 +(I1 +(I7 +tp47736 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47737 +tp47738 +bsa(dp47739 +g4 +g5 +(g6 +(I0 +tp47740 +g8 +tp47741 +Rp47742 +(I1 +(I7 +tp47743 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47744 +tp47745 +bsa(dp47746 +g4 +g5 +(g6 +(I0 +tp47747 +g8 +tp47748 +Rp47749 +(I1 +(I7 +tp47750 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47751 +tp47752 +bsa(dp47753 +g4 +g5 +(g6 +(I0 +tp47754 +g8 +tp47755 +Rp47756 +(I1 +(I7 +tp47757 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47758 +tp47759 +bsa(dp47760 +g4 +g5 +(g6 +(I0 +tp47761 +g8 +tp47762 +Rp47763 +(I1 +(I7 +tp47764 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47765 +tp47766 +bsa(dp47767 +g4 +g5 +(g6 +(I0 +tp47768 +g8 +tp47769 +Rp47770 +(I1 +(I7 +tp47771 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47772 +tp47773 +bsa(dp47774 +g4 +g5 +(g6 +(I0 +tp47775 +g8 +tp47776 +Rp47777 +(I1 +(I7 +tp47778 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47779 +tp47780 +bsa(dp47781 +g4 +g5 +(g6 +(I0 +tp47782 +g8 +tp47783 +Rp47784 +(I1 +(I7 +tp47785 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47786 +tp47787 +bsa(dp47788 +g4 +g5 +(g6 +(I0 +tp47789 +g8 +tp47790 +Rp47791 +(I1 +(I7 +tp47792 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47793 +tp47794 +bsa(dp47795 +g4 +g5 +(g6 +(I0 +tp47796 +g8 +tp47797 +Rp47798 +(I1 +(I7 +tp47799 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47800 +tp47801 +bsa(dp47802 +g4 +g5 +(g6 +(I0 +tp47803 +g8 +tp47804 +Rp47805 +(I1 +(I7 +tp47806 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47807 +tp47808 +bsa(dp47809 +g4 +g5 +(g6 +(I0 +tp47810 +g8 +tp47811 +Rp47812 +(I1 +(I7 +tp47813 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47814 +tp47815 +bsa(dp47816 +g4 +g5 +(g6 +(I0 +tp47817 +g8 +tp47818 +Rp47819 +(I1 +(I7 +tp47820 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47821 +tp47822 +bsa(dp47823 +g4 +g5 +(g6 +(I0 +tp47824 +g8 +tp47825 +Rp47826 +(I1 +(I7 +tp47827 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47828 +tp47829 +bsa(dp47830 +g4 +g5 +(g6 +(I0 +tp47831 +g8 +tp47832 +Rp47833 +(I1 +(I7 +tp47834 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47835 +tp47836 +bsa(dp47837 +g4 +g5 +(g6 +(I0 +tp47838 +g8 +tp47839 +Rp47840 +(I1 +(I7 +tp47841 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47842 +tp47843 +bsa(dp47844 +g4 +g5 +(g6 +(I0 +tp47845 +g8 +tp47846 +Rp47847 +(I1 +(I7 +tp47848 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47849 +tp47850 +bsa(dp47851 +g4 +g5 +(g6 +(I0 +tp47852 +g8 +tp47853 +Rp47854 +(I1 +(I7 +tp47855 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47856 +tp47857 +bsa(dp47858 +g4 +g5 +(g6 +(I0 +tp47859 +g8 +tp47860 +Rp47861 +(I1 +(I7 +tp47862 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47863 +tp47864 +bsa(dp47865 +g4 +g5 +(g6 +(I0 +tp47866 +g8 +tp47867 +Rp47868 +(I1 +(I7 +tp47869 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47870 +tp47871 +bsa(dp47872 +g4 +g5 +(g6 +(I0 +tp47873 +g8 +tp47874 +Rp47875 +(I1 +(I7 +tp47876 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47877 +tp47878 +bsa(dp47879 +g4 +g5 +(g6 +(I0 +tp47880 +g8 +tp47881 +Rp47882 +(I1 +(I7 +tp47883 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47884 +tp47885 +bsa(dp47886 +g4 +g5 +(g6 +(I0 +tp47887 +g8 +tp47888 +Rp47889 +(I1 +(I7 +tp47890 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47891 +tp47892 +bsa(dp47893 +g4 +g5 +(g6 +(I0 +tp47894 +g8 +tp47895 +Rp47896 +(I1 +(I7 +tp47897 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47898 +tp47899 +bsa(dp47900 +g4 +g5 +(g6 +(I0 +tp47901 +g8 +tp47902 +Rp47903 +(I1 +(I7 +tp47904 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47905 +tp47906 +bsa(dp47907 +g4 +g5 +(g6 +(I0 +tp47908 +g8 +tp47909 +Rp47910 +(I1 +(I7 +tp47911 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47912 +tp47913 +bsa(dp47914 +g4 +g5 +(g6 +(I0 +tp47915 +g8 +tp47916 +Rp47917 +(I1 +(I7 +tp47918 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47919 +tp47920 +bsa(dp47921 +g4 +g5 +(g6 +(I0 +tp47922 +g8 +tp47923 +Rp47924 +(I1 +(I7 +tp47925 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47926 +tp47927 +bsa(dp47928 +g4 +g5 +(g6 +(I0 +tp47929 +g8 +tp47930 +Rp47931 +(I1 +(I7 +tp47932 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47933 +tp47934 +bsa(dp47935 +g4 +g5 +(g6 +(I0 +tp47936 +g8 +tp47937 +Rp47938 +(I1 +(I7 +tp47939 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47940 +tp47941 +bsa(dp47942 +g4 +g5 +(g6 +(I0 +tp47943 +g8 +tp47944 +Rp47945 +(I1 +(I7 +tp47946 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47947 +tp47948 +bsa(dp47949 +g4 +g5 +(g6 +(I0 +tp47950 +g8 +tp47951 +Rp47952 +(I1 +(I7 +tp47953 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p47954 +tp47955 +bsa(dp47956 +g4 +g5 +(g6 +(I0 +tp47957 +g8 +tp47958 +Rp47959 +(I1 +(I7 +tp47960 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p47961 +tp47962 +bsa(dp47963 +g4 +g5 +(g6 +(I0 +tp47964 +g8 +tp47965 +Rp47966 +(I1 +(I7 +tp47967 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47968 +tp47969 +bsa(dp47970 +g4 +g5 +(g6 +(I0 +tp47971 +g8 +tp47972 +Rp47973 +(I1 +(I7 +tp47974 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47975 +tp47976 +bsa(dp47977 +g4 +g5 +(g6 +(I0 +tp47978 +g8 +tp47979 +Rp47980 +(I1 +(I7 +tp47981 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47982 +tp47983 +bsa(dp47984 +g4 +g5 +(g6 +(I0 +tp47985 +g8 +tp47986 +Rp47987 +(I1 +(I7 +tp47988 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47989 +tp47990 +bsa(dp47991 +g4 +g5 +(g6 +(I0 +tp47992 +g8 +tp47993 +Rp47994 +(I1 +(I7 +tp47995 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p47996 +tp47997 +bsa(dp47998 +g4 +g5 +(g6 +(I0 +tp47999 +g8 +tp48000 +Rp48001 +(I1 +(I7 +tp48002 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48003 +tp48004 +bsa(dp48005 +g4 +g5 +(g6 +(I0 +tp48006 +g8 +tp48007 +Rp48008 +(I1 +(I7 +tp48009 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48010 +tp48011 +bsa(dp48012 +g4 +g5 +(g6 +(I0 +tp48013 +g8 +tp48014 +Rp48015 +(I1 +(I7 +tp48016 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48017 +tp48018 +bsa(dp48019 +g4 +g5 +(g6 +(I0 +tp48020 +g8 +tp48021 +Rp48022 +(I1 +(I7 +tp48023 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48024 +tp48025 +bsa(dp48026 +g4 +g5 +(g6 +(I0 +tp48027 +g8 +tp48028 +Rp48029 +(I1 +(I7 +tp48030 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48031 +tp48032 +bsa(dp48033 +g4 +g5 +(g6 +(I0 +tp48034 +g8 +tp48035 +Rp48036 +(I1 +(I7 +tp48037 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48038 +tp48039 +bsa(dp48040 +g4 +g5 +(g6 +(I0 +tp48041 +g8 +tp48042 +Rp48043 +(I1 +(I7 +tp48044 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48045 +tp48046 +bsa(dp48047 +g4 +g5 +(g6 +(I0 +tp48048 +g8 +tp48049 +Rp48050 +(I1 +(I7 +tp48051 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48052 +tp48053 +bsa(dp48054 +g4 +g5 +(g6 +(I0 +tp48055 +g8 +tp48056 +Rp48057 +(I1 +(I7 +tp48058 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48059 +tp48060 +bsa(dp48061 +g4 +g5 +(g6 +(I0 +tp48062 +g8 +tp48063 +Rp48064 +(I1 +(I7 +tp48065 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48066 +tp48067 +bsa(dp48068 +g4 +g5 +(g6 +(I0 +tp48069 +g8 +tp48070 +Rp48071 +(I1 +(I7 +tp48072 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48073 +tp48074 +bsa(dp48075 +g4 +g5 +(g6 +(I0 +tp48076 +g8 +tp48077 +Rp48078 +(I1 +(I7 +tp48079 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48080 +tp48081 +bsa(dp48082 +g4 +g5 +(g6 +(I0 +tp48083 +g8 +tp48084 +Rp48085 +(I1 +(I7 +tp48086 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48087 +tp48088 +bsa(dp48089 +g4 +g5 +(g6 +(I0 +tp48090 +g8 +tp48091 +Rp48092 +(I1 +(I7 +tp48093 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48094 +tp48095 +bsa(dp48096 +g4 +g5 +(g6 +(I0 +tp48097 +g8 +tp48098 +Rp48099 +(I1 +(I7 +tp48100 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48101 +tp48102 +bsa(dp48103 +g4 +g5 +(g6 +(I0 +tp48104 +g8 +tp48105 +Rp48106 +(I1 +(I7 +tp48107 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48108 +tp48109 +bsa(dp48110 +g4 +g5 +(g6 +(I0 +tp48111 +g8 +tp48112 +Rp48113 +(I1 +(I7 +tp48114 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48115 +tp48116 +bsa(dp48117 +g4 +g5 +(g6 +(I0 +tp48118 +g8 +tp48119 +Rp48120 +(I1 +(I7 +tp48121 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48122 +tp48123 +bsa(dp48124 +g4 +g5 +(g6 +(I0 +tp48125 +g8 +tp48126 +Rp48127 +(I1 +(I7 +tp48128 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48129 +tp48130 +bsa(dp48131 +g4 +g5 +(g6 +(I0 +tp48132 +g8 +tp48133 +Rp48134 +(I1 +(I7 +tp48135 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48136 +tp48137 +bsa(dp48138 +g4 +g5 +(g6 +(I0 +tp48139 +g8 +tp48140 +Rp48141 +(I1 +(I7 +tp48142 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48143 +tp48144 +bsa(dp48145 +g4 +g5 +(g6 +(I0 +tp48146 +g8 +tp48147 +Rp48148 +(I1 +(I7 +tp48149 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48150 +tp48151 +bsa(dp48152 +g4 +g5 +(g6 +(I0 +tp48153 +g8 +tp48154 +Rp48155 +(I1 +(I7 +tp48156 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48157 +tp48158 +bsa(dp48159 +g4 +g5 +(g6 +(I0 +tp48160 +g8 +tp48161 +Rp48162 +(I1 +(I7 +tp48163 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48164 +tp48165 +bsa(dp48166 +g4 +g5 +(g6 +(I0 +tp48167 +g8 +tp48168 +Rp48169 +(I1 +(I7 +tp48170 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48171 +tp48172 +bsa(dp48173 +g4 +g5 +(g6 +(I0 +tp48174 +g8 +tp48175 +Rp48176 +(I1 +(I7 +tp48177 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48178 +tp48179 +bsa(dp48180 +g4 +g5 +(g6 +(I0 +tp48181 +g8 +tp48182 +Rp48183 +(I1 +(I7 +tp48184 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48185 +tp48186 +bsa(dp48187 +g4 +g5 +(g6 +(I0 +tp48188 +g8 +tp48189 +Rp48190 +(I1 +(I7 +tp48191 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48192 +tp48193 +bsa(dp48194 +g4 +g5 +(g6 +(I0 +tp48195 +g8 +tp48196 +Rp48197 +(I1 +(I7 +tp48198 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48199 +tp48200 +bsa(dp48201 +g4 +g5 +(g6 +(I0 +tp48202 +g8 +tp48203 +Rp48204 +(I1 +(I7 +tp48205 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48206 +tp48207 +bsa(dp48208 +g4 +g5 +(g6 +(I0 +tp48209 +g8 +tp48210 +Rp48211 +(I1 +(I7 +tp48212 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48213 +tp48214 +bsa(dp48215 +g4 +g5 +(g6 +(I0 +tp48216 +g8 +tp48217 +Rp48218 +(I1 +(I7 +tp48219 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48220 +tp48221 +bsa(dp48222 +g4 +g5 +(g6 +(I0 +tp48223 +g8 +tp48224 +Rp48225 +(I1 +(I7 +tp48226 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48227 +tp48228 +bsa(dp48229 +g4 +g5 +(g6 +(I0 +tp48230 +g8 +tp48231 +Rp48232 +(I1 +(I7 +tp48233 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48234 +tp48235 +bsa(dp48236 +g4 +g5 +(g6 +(I0 +tp48237 +g8 +tp48238 +Rp48239 +(I1 +(I7 +tp48240 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48241 +tp48242 +bsa(dp48243 +g4 +g5 +(g6 +(I0 +tp48244 +g8 +tp48245 +Rp48246 +(I1 +(I7 +tp48247 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48248 +tp48249 +bsa(dp48250 +g4 +g5 +(g6 +(I0 +tp48251 +g8 +tp48252 +Rp48253 +(I1 +(I7 +tp48254 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48255 +tp48256 +bsa(dp48257 +g4 +g5 +(g6 +(I0 +tp48258 +g8 +tp48259 +Rp48260 +(I1 +(I7 +tp48261 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48262 +tp48263 +bsa(dp48264 +g4 +g5 +(g6 +(I0 +tp48265 +g8 +tp48266 +Rp48267 +(I1 +(I7 +tp48268 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48269 +tp48270 +bsa(dp48271 +g4 +g5 +(g6 +(I0 +tp48272 +g8 +tp48273 +Rp48274 +(I1 +(I7 +tp48275 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48276 +tp48277 +bsa(dp48278 +g4 +g5 +(g6 +(I0 +tp48279 +g8 +tp48280 +Rp48281 +(I1 +(I7 +tp48282 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48283 +tp48284 +bsa(dp48285 +g4 +g5 +(g6 +(I0 +tp48286 +g8 +tp48287 +Rp48288 +(I1 +(I7 +tp48289 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48290 +tp48291 +bsa(dp48292 +g4 +g5 +(g6 +(I0 +tp48293 +g8 +tp48294 +Rp48295 +(I1 +(I7 +tp48296 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48297 +tp48298 +bsa(dp48299 +g4 +g5 +(g6 +(I0 +tp48300 +g8 +tp48301 +Rp48302 +(I1 +(I7 +tp48303 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48304 +tp48305 +bsa(dp48306 +g4 +g5 +(g6 +(I0 +tp48307 +g8 +tp48308 +Rp48309 +(I1 +(I7 +tp48310 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48311 +tp48312 +bsa(dp48313 +g4 +g5 +(g6 +(I0 +tp48314 +g8 +tp48315 +Rp48316 +(I1 +(I7 +tp48317 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48318 +tp48319 +bsa(dp48320 +g4 +g5 +(g6 +(I0 +tp48321 +g8 +tp48322 +Rp48323 +(I1 +(I7 +tp48324 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48325 +tp48326 +bsa(dp48327 +g4 +g5 +(g6 +(I0 +tp48328 +g8 +tp48329 +Rp48330 +(I1 +(I7 +tp48331 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48332 +tp48333 +bsa(dp48334 +g4 +g5 +(g6 +(I0 +tp48335 +g8 +tp48336 +Rp48337 +(I1 +(I7 +tp48338 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48339 +tp48340 +bsa(dp48341 +g4 +g5 +(g6 +(I0 +tp48342 +g8 +tp48343 +Rp48344 +(I1 +(I7 +tp48345 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48346 +tp48347 +bsa(dp48348 +g4 +g5 +(g6 +(I0 +tp48349 +g8 +tp48350 +Rp48351 +(I1 +(I7 +tp48352 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48353 +tp48354 +bsa(dp48355 +g4 +g5 +(g6 +(I0 +tp48356 +g8 +tp48357 +Rp48358 +(I1 +(I7 +tp48359 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48360 +tp48361 +bsa(dp48362 +g4 +g5 +(g6 +(I0 +tp48363 +g8 +tp48364 +Rp48365 +(I1 +(I7 +tp48366 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48367 +tp48368 +bsa(dp48369 +g4 +g5 +(g6 +(I0 +tp48370 +g8 +tp48371 +Rp48372 +(I1 +(I7 +tp48373 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48374 +tp48375 +bsa(dp48376 +g4 +g5 +(g6 +(I0 +tp48377 +g8 +tp48378 +Rp48379 +(I1 +(I7 +tp48380 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48381 +tp48382 +bsa(dp48383 +g4 +g5 +(g6 +(I0 +tp48384 +g8 +tp48385 +Rp48386 +(I1 +(I7 +tp48387 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48388 +tp48389 +bsa(dp48390 +g4 +g5 +(g6 +(I0 +tp48391 +g8 +tp48392 +Rp48393 +(I1 +(I7 +tp48394 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48395 +tp48396 +bsa(dp48397 +g4 +g5 +(g6 +(I0 +tp48398 +g8 +tp48399 +Rp48400 +(I1 +(I7 +tp48401 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48402 +tp48403 +bsa(dp48404 +g4 +g5 +(g6 +(I0 +tp48405 +g8 +tp48406 +Rp48407 +(I1 +(I7 +tp48408 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48409 +tp48410 +bsa(dp48411 +g4 +g5 +(g6 +(I0 +tp48412 +g8 +tp48413 +Rp48414 +(I1 +(I7 +tp48415 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48416 +tp48417 +bsa(dp48418 +g4 +g5 +(g6 +(I0 +tp48419 +g8 +tp48420 +Rp48421 +(I1 +(I7 +tp48422 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48423 +tp48424 +bsa(dp48425 +g4 +g5 +(g6 +(I0 +tp48426 +g8 +tp48427 +Rp48428 +(I1 +(I7 +tp48429 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48430 +tp48431 +bsa(dp48432 +g4 +g5 +(g6 +(I0 +tp48433 +g8 +tp48434 +Rp48435 +(I1 +(I7 +tp48436 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48437 +tp48438 +bsa(dp48439 +g4 +g5 +(g6 +(I0 +tp48440 +g8 +tp48441 +Rp48442 +(I1 +(I7 +tp48443 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48444 +tp48445 +bsa(dp48446 +g4 +g5 +(g6 +(I0 +tp48447 +g8 +tp48448 +Rp48449 +(I1 +(I7 +tp48450 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48451 +tp48452 +bsa(dp48453 +g4 +g5 +(g6 +(I0 +tp48454 +g8 +tp48455 +Rp48456 +(I1 +(I7 +tp48457 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48458 +tp48459 +bsa(dp48460 +g4 +g5 +(g6 +(I0 +tp48461 +g8 +tp48462 +Rp48463 +(I1 +(I7 +tp48464 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48465 +tp48466 +bsa(dp48467 +g4 +g5 +(g6 +(I0 +tp48468 +g8 +tp48469 +Rp48470 +(I1 +(I7 +tp48471 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48472 +tp48473 +bsa(dp48474 +g4 +g5 +(g6 +(I0 +tp48475 +g8 +tp48476 +Rp48477 +(I1 +(I7 +tp48478 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48479 +tp48480 +bsa(dp48481 +g4 +g5 +(g6 +(I0 +tp48482 +g8 +tp48483 +Rp48484 +(I1 +(I7 +tp48485 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48486 +tp48487 +bsa(dp48488 +g4 +g5 +(g6 +(I0 +tp48489 +g8 +tp48490 +Rp48491 +(I1 +(I7 +tp48492 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48493 +tp48494 +bsa(dp48495 +g4 +g5 +(g6 +(I0 +tp48496 +g8 +tp48497 +Rp48498 +(I1 +(I7 +tp48499 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48500 +tp48501 +bsa(dp48502 +g4 +g5 +(g6 +(I0 +tp48503 +g8 +tp48504 +Rp48505 +(I1 +(I7 +tp48506 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48507 +tp48508 +bsa(dp48509 +g4 +g5 +(g6 +(I0 +tp48510 +g8 +tp48511 +Rp48512 +(I1 +(I7 +tp48513 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48514 +tp48515 +bsa(dp48516 +g4 +g5 +(g6 +(I0 +tp48517 +g8 +tp48518 +Rp48519 +(I1 +(I7 +tp48520 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48521 +tp48522 +bsa(dp48523 +g4 +g5 +(g6 +(I0 +tp48524 +g8 +tp48525 +Rp48526 +(I1 +(I7 +tp48527 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48528 +tp48529 +bsa(dp48530 +g4 +g5 +(g6 +(I0 +tp48531 +g8 +tp48532 +Rp48533 +(I1 +(I7 +tp48534 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48535 +tp48536 +bsa(dp48537 +g4 +g5 +(g6 +(I0 +tp48538 +g8 +tp48539 +Rp48540 +(I1 +(I7 +tp48541 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48542 +tp48543 +bsa(dp48544 +g4 +g5 +(g6 +(I0 +tp48545 +g8 +tp48546 +Rp48547 +(I1 +(I7 +tp48548 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48549 +tp48550 +bsa(dp48551 +g4 +g5 +(g6 +(I0 +tp48552 +g8 +tp48553 +Rp48554 +(I1 +(I7 +tp48555 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48556 +tp48557 +bsa(dp48558 +g4 +g5 +(g6 +(I0 +tp48559 +g8 +tp48560 +Rp48561 +(I1 +(I7 +tp48562 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48563 +tp48564 +bsa(dp48565 +g4 +g5 +(g6 +(I0 +tp48566 +g8 +tp48567 +Rp48568 +(I1 +(I7 +tp48569 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48570 +tp48571 +bsa(dp48572 +g4 +g5 +(g6 +(I0 +tp48573 +g8 +tp48574 +Rp48575 +(I1 +(I7 +tp48576 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48577 +tp48578 +bsa(dp48579 +g4 +g5 +(g6 +(I0 +tp48580 +g8 +tp48581 +Rp48582 +(I1 +(I7 +tp48583 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48584 +tp48585 +bsa(dp48586 +g4 +g5 +(g6 +(I0 +tp48587 +g8 +tp48588 +Rp48589 +(I1 +(I7 +tp48590 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48591 +tp48592 +bsa(dp48593 +g4 +g5 +(g6 +(I0 +tp48594 +g8 +tp48595 +Rp48596 +(I1 +(I7 +tp48597 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48598 +tp48599 +bsa(dp48600 +g4 +g5 +(g6 +(I0 +tp48601 +g8 +tp48602 +Rp48603 +(I1 +(I7 +tp48604 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48605 +tp48606 +bsa(dp48607 +g4 +g5 +(g6 +(I0 +tp48608 +g8 +tp48609 +Rp48610 +(I1 +(I7 +tp48611 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48612 +tp48613 +bsa(dp48614 +g4 +g5 +(g6 +(I0 +tp48615 +g8 +tp48616 +Rp48617 +(I1 +(I7 +tp48618 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48619 +tp48620 +bsa(dp48621 +g4 +g5 +(g6 +(I0 +tp48622 +g8 +tp48623 +Rp48624 +(I1 +(I7 +tp48625 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48626 +tp48627 +bsa(dp48628 +g4 +g5 +(g6 +(I0 +tp48629 +g8 +tp48630 +Rp48631 +(I1 +(I7 +tp48632 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48633 +tp48634 +bsa(dp48635 +g4 +g5 +(g6 +(I0 +tp48636 +g8 +tp48637 +Rp48638 +(I1 +(I7 +tp48639 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48640 +tp48641 +bsa(dp48642 +g4 +g5 +(g6 +(I0 +tp48643 +g8 +tp48644 +Rp48645 +(I1 +(I7 +tp48646 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48647 +tp48648 +bsa(dp48649 +g4 +g5 +(g6 +(I0 +tp48650 +g8 +tp48651 +Rp48652 +(I1 +(I7 +tp48653 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48654 +tp48655 +bsa(dp48656 +g4 +g5 +(g6 +(I0 +tp48657 +g8 +tp48658 +Rp48659 +(I1 +(I7 +tp48660 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48661 +tp48662 +bsa(dp48663 +g4 +g5 +(g6 +(I0 +tp48664 +g8 +tp48665 +Rp48666 +(I1 +(I7 +tp48667 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48668 +tp48669 +bsa(dp48670 +g4 +g5 +(g6 +(I0 +tp48671 +g8 +tp48672 +Rp48673 +(I1 +(I7 +tp48674 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48675 +tp48676 +bsa(dp48677 +g4 +g5 +(g6 +(I0 +tp48678 +g8 +tp48679 +Rp48680 +(I1 +(I7 +tp48681 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48682 +tp48683 +bsa(dp48684 +g4 +g5 +(g6 +(I0 +tp48685 +g8 +tp48686 +Rp48687 +(I1 +(I7 +tp48688 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48689 +tp48690 +bsa(dp48691 +g4 +g5 +(g6 +(I0 +tp48692 +g8 +tp48693 +Rp48694 +(I1 +(I7 +tp48695 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48696 +tp48697 +bsa(dp48698 +g4 +g5 +(g6 +(I0 +tp48699 +g8 +tp48700 +Rp48701 +(I1 +(I7 +tp48702 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48703 +tp48704 +bsa(dp48705 +g4 +g5 +(g6 +(I0 +tp48706 +g8 +tp48707 +Rp48708 +(I1 +(I7 +tp48709 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48710 +tp48711 +bsa(dp48712 +g4 +g5 +(g6 +(I0 +tp48713 +g8 +tp48714 +Rp48715 +(I1 +(I7 +tp48716 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48717 +tp48718 +bsa(dp48719 +g4 +g5 +(g6 +(I0 +tp48720 +g8 +tp48721 +Rp48722 +(I1 +(I7 +tp48723 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48724 +tp48725 +bsa(dp48726 +g4 +g5 +(g6 +(I0 +tp48727 +g8 +tp48728 +Rp48729 +(I1 +(I7 +tp48730 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48731 +tp48732 +bsa(dp48733 +g4 +g5 +(g6 +(I0 +tp48734 +g8 +tp48735 +Rp48736 +(I1 +(I7 +tp48737 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48738 +tp48739 +bsa(dp48740 +g4 +g5 +(g6 +(I0 +tp48741 +g8 +tp48742 +Rp48743 +(I1 +(I7 +tp48744 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48745 +tp48746 +bsa(dp48747 +g4 +g5 +(g6 +(I0 +tp48748 +g8 +tp48749 +Rp48750 +(I1 +(I7 +tp48751 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48752 +tp48753 +bsa(dp48754 +g4 +g5 +(g6 +(I0 +tp48755 +g8 +tp48756 +Rp48757 +(I1 +(I7 +tp48758 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48759 +tp48760 +bsa(dp48761 +g4 +g5 +(g6 +(I0 +tp48762 +g8 +tp48763 +Rp48764 +(I1 +(I7 +tp48765 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48766 +tp48767 +bsa(dp48768 +g4 +g5 +(g6 +(I0 +tp48769 +g8 +tp48770 +Rp48771 +(I1 +(I7 +tp48772 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48773 +tp48774 +bsa(dp48775 +g4 +g5 +(g6 +(I0 +tp48776 +g8 +tp48777 +Rp48778 +(I1 +(I7 +tp48779 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48780 +tp48781 +bsa(dp48782 +g4 +g5 +(g6 +(I0 +tp48783 +g8 +tp48784 +Rp48785 +(I1 +(I7 +tp48786 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48787 +tp48788 +bsa(dp48789 +g4 +g5 +(g6 +(I0 +tp48790 +g8 +tp48791 +Rp48792 +(I1 +(I7 +tp48793 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48794 +tp48795 +bsa(dp48796 +g4 +g5 +(g6 +(I0 +tp48797 +g8 +tp48798 +Rp48799 +(I1 +(I7 +tp48800 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48801 +tp48802 +bsa(dp48803 +g4 +g5 +(g6 +(I0 +tp48804 +g8 +tp48805 +Rp48806 +(I1 +(I7 +tp48807 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48808 +tp48809 +bsa(dp48810 +g4 +g5 +(g6 +(I0 +tp48811 +g8 +tp48812 +Rp48813 +(I1 +(I7 +tp48814 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48815 +tp48816 +bsa(dp48817 +g4 +g5 +(g6 +(I0 +tp48818 +g8 +tp48819 +Rp48820 +(I1 +(I7 +tp48821 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48822 +tp48823 +bsa(dp48824 +g4 +g5 +(g6 +(I0 +tp48825 +g8 +tp48826 +Rp48827 +(I1 +(I7 +tp48828 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48829 +tp48830 +bsa(dp48831 +g4 +g5 +(g6 +(I0 +tp48832 +g8 +tp48833 +Rp48834 +(I1 +(I7 +tp48835 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48836 +tp48837 +bsa(dp48838 +g4 +g5 +(g6 +(I0 +tp48839 +g8 +tp48840 +Rp48841 +(I1 +(I7 +tp48842 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48843 +tp48844 +bsa(dp48845 +g4 +g5 +(g6 +(I0 +tp48846 +g8 +tp48847 +Rp48848 +(I1 +(I7 +tp48849 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48850 +tp48851 +bsa(dp48852 +g4 +g5 +(g6 +(I0 +tp48853 +g8 +tp48854 +Rp48855 +(I1 +(I7 +tp48856 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48857 +tp48858 +bsa(dp48859 +g4 +g5 +(g6 +(I0 +tp48860 +g8 +tp48861 +Rp48862 +(I1 +(I7 +tp48863 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48864 +tp48865 +bsa(dp48866 +g4 +g5 +(g6 +(I0 +tp48867 +g8 +tp48868 +Rp48869 +(I1 +(I7 +tp48870 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48871 +tp48872 +bsa(dp48873 +g4 +g5 +(g6 +(I0 +tp48874 +g8 +tp48875 +Rp48876 +(I1 +(I7 +tp48877 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48878 +tp48879 +bsa(dp48880 +g4 +g5 +(g6 +(I0 +tp48881 +g8 +tp48882 +Rp48883 +(I1 +(I7 +tp48884 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48885 +tp48886 +bsa(dp48887 +g4 +g5 +(g6 +(I0 +tp48888 +g8 +tp48889 +Rp48890 +(I1 +(I7 +tp48891 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48892 +tp48893 +bsa(dp48894 +g4 +g5 +(g6 +(I0 +tp48895 +g8 +tp48896 +Rp48897 +(I1 +(I7 +tp48898 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48899 +tp48900 +bsa(dp48901 +g4 +g5 +(g6 +(I0 +tp48902 +g8 +tp48903 +Rp48904 +(I1 +(I7 +tp48905 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48906 +tp48907 +bsa(dp48908 +g4 +g5 +(g6 +(I0 +tp48909 +g8 +tp48910 +Rp48911 +(I1 +(I7 +tp48912 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48913 +tp48914 +bsa(dp48915 +g4 +g5 +(g6 +(I0 +tp48916 +g8 +tp48917 +Rp48918 +(I1 +(I7 +tp48919 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48920 +tp48921 +bsa(dp48922 +g4 +g5 +(g6 +(I0 +tp48923 +g8 +tp48924 +Rp48925 +(I1 +(I7 +tp48926 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48927 +tp48928 +bsa(dp48929 +g4 +g5 +(g6 +(I0 +tp48930 +g8 +tp48931 +Rp48932 +(I1 +(I7 +tp48933 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48934 +tp48935 +bsa(dp48936 +g4 +g5 +(g6 +(I0 +tp48937 +g8 +tp48938 +Rp48939 +(I1 +(I7 +tp48940 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48941 +tp48942 +bsa(dp48943 +g4 +g5 +(g6 +(I0 +tp48944 +g8 +tp48945 +Rp48946 +(I1 +(I7 +tp48947 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48948 +tp48949 +bsa(dp48950 +g4 +g5 +(g6 +(I0 +tp48951 +g8 +tp48952 +Rp48953 +(I1 +(I7 +tp48954 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48955 +tp48956 +bsa(dp48957 +g4 +g5 +(g6 +(I0 +tp48958 +g8 +tp48959 +Rp48960 +(I1 +(I7 +tp48961 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48962 +tp48963 +bsa(dp48964 +g4 +g5 +(g6 +(I0 +tp48965 +g8 +tp48966 +Rp48967 +(I1 +(I7 +tp48968 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48969 +tp48970 +bsa(dp48971 +g4 +g5 +(g6 +(I0 +tp48972 +g8 +tp48973 +Rp48974 +(I1 +(I7 +tp48975 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p48976 +tp48977 +bsa(dp48978 +g4 +g5 +(g6 +(I0 +tp48979 +g8 +tp48980 +Rp48981 +(I1 +(I7 +tp48982 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p48983 +tp48984 +bsa(dp48985 +g4 +g5 +(g6 +(I0 +tp48986 +g8 +tp48987 +Rp48988 +(I1 +(I7 +tp48989 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48990 +tp48991 +bsa(dp48992 +g4 +g5 +(g6 +(I0 +tp48993 +g8 +tp48994 +Rp48995 +(I1 +(I7 +tp48996 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p48997 +tp48998 +bsa(dp48999 +g4 +g5 +(g6 +(I0 +tp49000 +g8 +tp49001 +Rp49002 +(I1 +(I7 +tp49003 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49004 +tp49005 +bsa(dp49006 +g4 +g5 +(g6 +(I0 +tp49007 +g8 +tp49008 +Rp49009 +(I1 +(I7 +tp49010 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49011 +tp49012 +bsa(dp49013 +g4 +g5 +(g6 +(I0 +tp49014 +g8 +tp49015 +Rp49016 +(I1 +(I7 +tp49017 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49018 +tp49019 +bsa(dp49020 +g4 +g5 +(g6 +(I0 +tp49021 +g8 +tp49022 +Rp49023 +(I1 +(I7 +tp49024 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49025 +tp49026 +bsa(dp49027 +g4 +g5 +(g6 +(I0 +tp49028 +g8 +tp49029 +Rp49030 +(I1 +(I7 +tp49031 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49032 +tp49033 +bsa(dp49034 +g4 +g5 +(g6 +(I0 +tp49035 +g8 +tp49036 +Rp49037 +(I1 +(I7 +tp49038 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49039 +tp49040 +bsa(dp49041 +g4 +g5 +(g6 +(I0 +tp49042 +g8 +tp49043 +Rp49044 +(I1 +(I7 +tp49045 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49046 +tp49047 +bsa(dp49048 +g4 +g5 +(g6 +(I0 +tp49049 +g8 +tp49050 +Rp49051 +(I1 +(I7 +tp49052 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49053 +tp49054 +bsa(dp49055 +g4 +g5 +(g6 +(I0 +tp49056 +g8 +tp49057 +Rp49058 +(I1 +(I7 +tp49059 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49060 +tp49061 +bsa(dp49062 +g4 +g5 +(g6 +(I0 +tp49063 +g8 +tp49064 +Rp49065 +(I1 +(I7 +tp49066 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49067 +tp49068 +bsa(dp49069 +g4 +g5 +(g6 +(I0 +tp49070 +g8 +tp49071 +Rp49072 +(I1 +(I7 +tp49073 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49074 +tp49075 +bsa(dp49076 +g4 +g5 +(g6 +(I0 +tp49077 +g8 +tp49078 +Rp49079 +(I1 +(I7 +tp49080 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49081 +tp49082 +bsa(dp49083 +g4 +g5 +(g6 +(I0 +tp49084 +g8 +tp49085 +Rp49086 +(I1 +(I7 +tp49087 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49088 +tp49089 +bsa(dp49090 +g4 +g5 +(g6 +(I0 +tp49091 +g8 +tp49092 +Rp49093 +(I1 +(I7 +tp49094 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49095 +tp49096 +bsa(dp49097 +g4 +g5 +(g6 +(I0 +tp49098 +g8 +tp49099 +Rp49100 +(I1 +(I7 +tp49101 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49102 +tp49103 +bsa(dp49104 +g4 +g5 +(g6 +(I0 +tp49105 +g8 +tp49106 +Rp49107 +(I1 +(I7 +tp49108 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49109 +tp49110 +bsa(dp49111 +g4 +g5 +(g6 +(I0 +tp49112 +g8 +tp49113 +Rp49114 +(I1 +(I7 +tp49115 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49116 +tp49117 +bsa(dp49118 +g4 +g5 +(g6 +(I0 +tp49119 +g8 +tp49120 +Rp49121 +(I1 +(I7 +tp49122 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49123 +tp49124 +bsa(dp49125 +g4 +g5 +(g6 +(I0 +tp49126 +g8 +tp49127 +Rp49128 +(I1 +(I7 +tp49129 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49130 +tp49131 +bsa(dp49132 +g4 +g5 +(g6 +(I0 +tp49133 +g8 +tp49134 +Rp49135 +(I1 +(I7 +tp49136 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49137 +tp49138 +bsa(dp49139 +g4 +g5 +(g6 +(I0 +tp49140 +g8 +tp49141 +Rp49142 +(I1 +(I7 +tp49143 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49144 +tp49145 +bsa(dp49146 +g4 +g5 +(g6 +(I0 +tp49147 +g8 +tp49148 +Rp49149 +(I1 +(I7 +tp49150 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49151 +tp49152 +bsa(dp49153 +g4 +g5 +(g6 +(I0 +tp49154 +g8 +tp49155 +Rp49156 +(I1 +(I7 +tp49157 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49158 +tp49159 +bsa(dp49160 +g4 +g5 +(g6 +(I0 +tp49161 +g8 +tp49162 +Rp49163 +(I1 +(I7 +tp49164 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49165 +tp49166 +bsa(dp49167 +g4 +g5 +(g6 +(I0 +tp49168 +g8 +tp49169 +Rp49170 +(I1 +(I7 +tp49171 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49172 +tp49173 +bsa(dp49174 +g4 +g5 +(g6 +(I0 +tp49175 +g8 +tp49176 +Rp49177 +(I1 +(I7 +tp49178 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49179 +tp49180 +bsa(dp49181 +g4 +g5 +(g6 +(I0 +tp49182 +g8 +tp49183 +Rp49184 +(I1 +(I7 +tp49185 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49186 +tp49187 +bsa(dp49188 +g4 +g5 +(g6 +(I0 +tp49189 +g8 +tp49190 +Rp49191 +(I1 +(I7 +tp49192 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49193 +tp49194 +bsa(dp49195 +g4 +g5 +(g6 +(I0 +tp49196 +g8 +tp49197 +Rp49198 +(I1 +(I7 +tp49199 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49200 +tp49201 +bsa(dp49202 +g4 +g5 +(g6 +(I0 +tp49203 +g8 +tp49204 +Rp49205 +(I1 +(I7 +tp49206 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49207 +tp49208 +bsa(dp49209 +g4 +g5 +(g6 +(I0 +tp49210 +g8 +tp49211 +Rp49212 +(I1 +(I7 +tp49213 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49214 +tp49215 +bsa(dp49216 +g4 +g5 +(g6 +(I0 +tp49217 +g8 +tp49218 +Rp49219 +(I1 +(I7 +tp49220 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49221 +tp49222 +bsa(dp49223 +g4 +g5 +(g6 +(I0 +tp49224 +g8 +tp49225 +Rp49226 +(I1 +(I7 +tp49227 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49228 +tp49229 +bsa(dp49230 +g4 +g5 +(g6 +(I0 +tp49231 +g8 +tp49232 +Rp49233 +(I1 +(I7 +tp49234 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49235 +tp49236 +bsa(dp49237 +g4 +g5 +(g6 +(I0 +tp49238 +g8 +tp49239 +Rp49240 +(I1 +(I7 +tp49241 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49242 +tp49243 +bsa(dp49244 +g4 +g5 +(g6 +(I0 +tp49245 +g8 +tp49246 +Rp49247 +(I1 +(I7 +tp49248 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49249 +tp49250 +bsa(dp49251 +g4 +g5 +(g6 +(I0 +tp49252 +g8 +tp49253 +Rp49254 +(I1 +(I7 +tp49255 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49256 +tp49257 +bsa(dp49258 +g4 +g5 +(g6 +(I0 +tp49259 +g8 +tp49260 +Rp49261 +(I1 +(I7 +tp49262 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49263 +tp49264 +bsa(dp49265 +g4 +g5 +(g6 +(I0 +tp49266 +g8 +tp49267 +Rp49268 +(I1 +(I7 +tp49269 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49270 +tp49271 +bsa(dp49272 +g4 +g5 +(g6 +(I0 +tp49273 +g8 +tp49274 +Rp49275 +(I1 +(I7 +tp49276 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49277 +tp49278 +bsa(dp49279 +g4 +g5 +(g6 +(I0 +tp49280 +g8 +tp49281 +Rp49282 +(I1 +(I7 +tp49283 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49284 +tp49285 +bsa(dp49286 +g4 +g5 +(g6 +(I0 +tp49287 +g8 +tp49288 +Rp49289 +(I1 +(I7 +tp49290 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49291 +tp49292 +bsa(dp49293 +g4 +g5 +(g6 +(I0 +tp49294 +g8 +tp49295 +Rp49296 +(I1 +(I7 +tp49297 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49298 +tp49299 +bsa(dp49300 +g4 +g5 +(g6 +(I0 +tp49301 +g8 +tp49302 +Rp49303 +(I1 +(I7 +tp49304 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49305 +tp49306 +bsa(dp49307 +g4 +g5 +(g6 +(I0 +tp49308 +g8 +tp49309 +Rp49310 +(I1 +(I7 +tp49311 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49312 +tp49313 +bsa(dp49314 +g4 +g5 +(g6 +(I0 +tp49315 +g8 +tp49316 +Rp49317 +(I1 +(I7 +tp49318 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49319 +tp49320 +bsa(dp49321 +g4 +g5 +(g6 +(I0 +tp49322 +g8 +tp49323 +Rp49324 +(I1 +(I7 +tp49325 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49326 +tp49327 +bsa(dp49328 +g4 +g5 +(g6 +(I0 +tp49329 +g8 +tp49330 +Rp49331 +(I1 +(I7 +tp49332 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49333 +tp49334 +bsa(dp49335 +g4 +g5 +(g6 +(I0 +tp49336 +g8 +tp49337 +Rp49338 +(I1 +(I7 +tp49339 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49340 +tp49341 +bsa(dp49342 +g4 +g5 +(g6 +(I0 +tp49343 +g8 +tp49344 +Rp49345 +(I1 +(I7 +tp49346 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49347 +tp49348 +bsa(dp49349 +g4 +g5 +(g6 +(I0 +tp49350 +g8 +tp49351 +Rp49352 +(I1 +(I7 +tp49353 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49354 +tp49355 +bsa(dp49356 +g4 +g5 +(g6 +(I0 +tp49357 +g8 +tp49358 +Rp49359 +(I1 +(I7 +tp49360 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49361 +tp49362 +bsa(dp49363 +g4 +g5 +(g6 +(I0 +tp49364 +g8 +tp49365 +Rp49366 +(I1 +(I7 +tp49367 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49368 +tp49369 +bsa(dp49370 +g4 +g5 +(g6 +(I0 +tp49371 +g8 +tp49372 +Rp49373 +(I1 +(I7 +tp49374 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49375 +tp49376 +bsa(dp49377 +g4 +g5 +(g6 +(I0 +tp49378 +g8 +tp49379 +Rp49380 +(I1 +(I7 +tp49381 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49382 +tp49383 +bsa(dp49384 +g4 +g5 +(g6 +(I0 +tp49385 +g8 +tp49386 +Rp49387 +(I1 +(I7 +tp49388 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49389 +tp49390 +bsa(dp49391 +g4 +g5 +(g6 +(I0 +tp49392 +g8 +tp49393 +Rp49394 +(I1 +(I7 +tp49395 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49396 +tp49397 +bsa(dp49398 +g4 +g5 +(g6 +(I0 +tp49399 +g8 +tp49400 +Rp49401 +(I1 +(I7 +tp49402 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49403 +tp49404 +bsa(dp49405 +g4 +g5 +(g6 +(I0 +tp49406 +g8 +tp49407 +Rp49408 +(I1 +(I7 +tp49409 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49410 +tp49411 +bsa(dp49412 +g4 +g5 +(g6 +(I0 +tp49413 +g8 +tp49414 +Rp49415 +(I1 +(I7 +tp49416 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49417 +tp49418 +bsa(dp49419 +g4 +g5 +(g6 +(I0 +tp49420 +g8 +tp49421 +Rp49422 +(I1 +(I7 +tp49423 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49424 +tp49425 +bsa(dp49426 +g4 +g5 +(g6 +(I0 +tp49427 +g8 +tp49428 +Rp49429 +(I1 +(I7 +tp49430 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49431 +tp49432 +bsa(dp49433 +g4 +g5 +(g6 +(I0 +tp49434 +g8 +tp49435 +Rp49436 +(I1 +(I7 +tp49437 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49438 +tp49439 +bsa(dp49440 +g4 +g5 +(g6 +(I0 +tp49441 +g8 +tp49442 +Rp49443 +(I1 +(I7 +tp49444 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49445 +tp49446 +bsa(dp49447 +g4 +g5 +(g6 +(I0 +tp49448 +g8 +tp49449 +Rp49450 +(I1 +(I7 +tp49451 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49452 +tp49453 +bsa(dp49454 +g4 +g5 +(g6 +(I0 +tp49455 +g8 +tp49456 +Rp49457 +(I1 +(I7 +tp49458 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49459 +tp49460 +bsa(dp49461 +g4 +g5 +(g6 +(I0 +tp49462 +g8 +tp49463 +Rp49464 +(I1 +(I7 +tp49465 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49466 +tp49467 +bsa(dp49468 +g4 +g5 +(g6 +(I0 +tp49469 +g8 +tp49470 +Rp49471 +(I1 +(I7 +tp49472 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49473 +tp49474 +bsa(dp49475 +g4 +g5 +(g6 +(I0 +tp49476 +g8 +tp49477 +Rp49478 +(I1 +(I7 +tp49479 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49480 +tp49481 +bsa(dp49482 +g4 +g5 +(g6 +(I0 +tp49483 +g8 +tp49484 +Rp49485 +(I1 +(I7 +tp49486 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49487 +tp49488 +bsa(dp49489 +g4 +g5 +(g6 +(I0 +tp49490 +g8 +tp49491 +Rp49492 +(I1 +(I7 +tp49493 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49494 +tp49495 +bsa(dp49496 +g4 +g5 +(g6 +(I0 +tp49497 +g8 +tp49498 +Rp49499 +(I1 +(I7 +tp49500 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49501 +tp49502 +bsa(dp49503 +g4 +g5 +(g6 +(I0 +tp49504 +g8 +tp49505 +Rp49506 +(I1 +(I7 +tp49507 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49508 +tp49509 +bsa(dp49510 +g4 +g5 +(g6 +(I0 +tp49511 +g8 +tp49512 +Rp49513 +(I1 +(I7 +tp49514 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49515 +tp49516 +bsa(dp49517 +g4 +g5 +(g6 +(I0 +tp49518 +g8 +tp49519 +Rp49520 +(I1 +(I7 +tp49521 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49522 +tp49523 +bsa(dp49524 +g4 +g5 +(g6 +(I0 +tp49525 +g8 +tp49526 +Rp49527 +(I1 +(I7 +tp49528 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49529 +tp49530 +bsa(dp49531 +g4 +g5 +(g6 +(I0 +tp49532 +g8 +tp49533 +Rp49534 +(I1 +(I7 +tp49535 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49536 +tp49537 +bsa(dp49538 +g4 +g5 +(g6 +(I0 +tp49539 +g8 +tp49540 +Rp49541 +(I1 +(I7 +tp49542 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49543 +tp49544 +bsa(dp49545 +g4 +g5 +(g6 +(I0 +tp49546 +g8 +tp49547 +Rp49548 +(I1 +(I7 +tp49549 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49550 +tp49551 +bsa(dp49552 +g4 +g5 +(g6 +(I0 +tp49553 +g8 +tp49554 +Rp49555 +(I1 +(I7 +tp49556 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49557 +tp49558 +bsa(dp49559 +g4 +g5 +(g6 +(I0 +tp49560 +g8 +tp49561 +Rp49562 +(I1 +(I7 +tp49563 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49564 +tp49565 +bsa(dp49566 +g4 +g5 +(g6 +(I0 +tp49567 +g8 +tp49568 +Rp49569 +(I1 +(I7 +tp49570 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49571 +tp49572 +bsa(dp49573 +g4 +g5 +(g6 +(I0 +tp49574 +g8 +tp49575 +Rp49576 +(I1 +(I7 +tp49577 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49578 +tp49579 +bsa(dp49580 +g4 +g5 +(g6 +(I0 +tp49581 +g8 +tp49582 +Rp49583 +(I1 +(I7 +tp49584 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49585 +tp49586 +bsa(dp49587 +g4 +g5 +(g6 +(I0 +tp49588 +g8 +tp49589 +Rp49590 +(I1 +(I7 +tp49591 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49592 +tp49593 +bsa(dp49594 +g4 +g5 +(g6 +(I0 +tp49595 +g8 +tp49596 +Rp49597 +(I1 +(I7 +tp49598 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49599 +tp49600 +bsa(dp49601 +g4 +g5 +(g6 +(I0 +tp49602 +g8 +tp49603 +Rp49604 +(I1 +(I7 +tp49605 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49606 +tp49607 +bsa(dp49608 +g4 +g5 +(g6 +(I0 +tp49609 +g8 +tp49610 +Rp49611 +(I1 +(I7 +tp49612 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49613 +tp49614 +bsa(dp49615 +g4 +g5 +(g6 +(I0 +tp49616 +g8 +tp49617 +Rp49618 +(I1 +(I7 +tp49619 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49620 +tp49621 +bsa(dp49622 +g4 +g5 +(g6 +(I0 +tp49623 +g8 +tp49624 +Rp49625 +(I1 +(I7 +tp49626 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49627 +tp49628 +bsa(dp49629 +g4 +g5 +(g6 +(I0 +tp49630 +g8 +tp49631 +Rp49632 +(I1 +(I7 +tp49633 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49634 +tp49635 +bsa(dp49636 +g4 +g5 +(g6 +(I0 +tp49637 +g8 +tp49638 +Rp49639 +(I1 +(I7 +tp49640 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49641 +tp49642 +bsa(dp49643 +g4 +g5 +(g6 +(I0 +tp49644 +g8 +tp49645 +Rp49646 +(I1 +(I7 +tp49647 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49648 +tp49649 +bsa(dp49650 +g4 +g5 +(g6 +(I0 +tp49651 +g8 +tp49652 +Rp49653 +(I1 +(I7 +tp49654 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49655 +tp49656 +bsa(dp49657 +g4 +g5 +(g6 +(I0 +tp49658 +g8 +tp49659 +Rp49660 +(I1 +(I7 +tp49661 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49662 +tp49663 +bsa(dp49664 +g4 +g5 +(g6 +(I0 +tp49665 +g8 +tp49666 +Rp49667 +(I1 +(I7 +tp49668 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49669 +tp49670 +bsa(dp49671 +g4 +g5 +(g6 +(I0 +tp49672 +g8 +tp49673 +Rp49674 +(I1 +(I7 +tp49675 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49676 +tp49677 +bsa(dp49678 +g4 +g5 +(g6 +(I0 +tp49679 +g8 +tp49680 +Rp49681 +(I1 +(I7 +tp49682 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49683 +tp49684 +bsa(dp49685 +g4 +g5 +(g6 +(I0 +tp49686 +g8 +tp49687 +Rp49688 +(I1 +(I7 +tp49689 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49690 +tp49691 +bsa(dp49692 +g4 +g5 +(g6 +(I0 +tp49693 +g8 +tp49694 +Rp49695 +(I1 +(I7 +tp49696 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49697 +tp49698 +bsa(dp49699 +g4 +g5 +(g6 +(I0 +tp49700 +g8 +tp49701 +Rp49702 +(I1 +(I7 +tp49703 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49704 +tp49705 +bsa(dp49706 +g4 +g5 +(g6 +(I0 +tp49707 +g8 +tp49708 +Rp49709 +(I1 +(I7 +tp49710 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49711 +tp49712 +bsa(dp49713 +g4 +g5 +(g6 +(I0 +tp49714 +g8 +tp49715 +Rp49716 +(I1 +(I7 +tp49717 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49718 +tp49719 +bsa(dp49720 +g4 +g5 +(g6 +(I0 +tp49721 +g8 +tp49722 +Rp49723 +(I1 +(I7 +tp49724 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49725 +tp49726 +bsa(dp49727 +g4 +g5 +(g6 +(I0 +tp49728 +g8 +tp49729 +Rp49730 +(I1 +(I7 +tp49731 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49732 +tp49733 +bsa(dp49734 +g4 +g5 +(g6 +(I0 +tp49735 +g8 +tp49736 +Rp49737 +(I1 +(I7 +tp49738 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49739 +tp49740 +bsa(dp49741 +g4 +g5 +(g6 +(I0 +tp49742 +g8 +tp49743 +Rp49744 +(I1 +(I7 +tp49745 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49746 +tp49747 +bsa(dp49748 +g4 +g5 +(g6 +(I0 +tp49749 +g8 +tp49750 +Rp49751 +(I1 +(I7 +tp49752 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49753 +tp49754 +bsa(dp49755 +g4 +g5 +(g6 +(I0 +tp49756 +g8 +tp49757 +Rp49758 +(I1 +(I7 +tp49759 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49760 +tp49761 +bsa(dp49762 +g4 +g5 +(g6 +(I0 +tp49763 +g8 +tp49764 +Rp49765 +(I1 +(I7 +tp49766 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49767 +tp49768 +bsa(dp49769 +g4 +g5 +(g6 +(I0 +tp49770 +g8 +tp49771 +Rp49772 +(I1 +(I7 +tp49773 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49774 +tp49775 +bsa(dp49776 +g4 +g5 +(g6 +(I0 +tp49777 +g8 +tp49778 +Rp49779 +(I1 +(I7 +tp49780 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49781 +tp49782 +bsa(dp49783 +g4 +g5 +(g6 +(I0 +tp49784 +g8 +tp49785 +Rp49786 +(I1 +(I7 +tp49787 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49788 +tp49789 +bsa(dp49790 +g4 +g5 +(g6 +(I0 +tp49791 +g8 +tp49792 +Rp49793 +(I1 +(I7 +tp49794 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49795 +tp49796 +bsa(dp49797 +g4 +g5 +(g6 +(I0 +tp49798 +g8 +tp49799 +Rp49800 +(I1 +(I7 +tp49801 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49802 +tp49803 +bsa(dp49804 +g4 +g5 +(g6 +(I0 +tp49805 +g8 +tp49806 +Rp49807 +(I1 +(I7 +tp49808 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49809 +tp49810 +bsa(dp49811 +g4 +g5 +(g6 +(I0 +tp49812 +g8 +tp49813 +Rp49814 +(I1 +(I7 +tp49815 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49816 +tp49817 +bsa(dp49818 +g4 +g5 +(g6 +(I0 +tp49819 +g8 +tp49820 +Rp49821 +(I1 +(I7 +tp49822 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49823 +tp49824 +bsa(dp49825 +g4 +g5 +(g6 +(I0 +tp49826 +g8 +tp49827 +Rp49828 +(I1 +(I7 +tp49829 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49830 +tp49831 +bsa(dp49832 +g4 +g5 +(g6 +(I0 +tp49833 +g8 +tp49834 +Rp49835 +(I1 +(I7 +tp49836 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49837 +tp49838 +bsa(dp49839 +g4 +g5 +(g6 +(I0 +tp49840 +g8 +tp49841 +Rp49842 +(I1 +(I7 +tp49843 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49844 +tp49845 +bsa(dp49846 +g4 +g5 +(g6 +(I0 +tp49847 +g8 +tp49848 +Rp49849 +(I1 +(I7 +tp49850 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49851 +tp49852 +bsa(dp49853 +g4 +g5 +(g6 +(I0 +tp49854 +g8 +tp49855 +Rp49856 +(I1 +(I7 +tp49857 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49858 +tp49859 +bsa(dp49860 +g4 +g5 +(g6 +(I0 +tp49861 +g8 +tp49862 +Rp49863 +(I1 +(I7 +tp49864 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49865 +tp49866 +bsa(dp49867 +g4 +g5 +(g6 +(I0 +tp49868 +g8 +tp49869 +Rp49870 +(I1 +(I7 +tp49871 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49872 +tp49873 +bsa(dp49874 +g4 +g5 +(g6 +(I0 +tp49875 +g8 +tp49876 +Rp49877 +(I1 +(I7 +tp49878 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49879 +tp49880 +bsa(dp49881 +g4 +g5 +(g6 +(I0 +tp49882 +g8 +tp49883 +Rp49884 +(I1 +(I7 +tp49885 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49886 +tp49887 +bsa(dp49888 +g4 +g5 +(g6 +(I0 +tp49889 +g8 +tp49890 +Rp49891 +(I1 +(I7 +tp49892 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49893 +tp49894 +bsa(dp49895 +g4 +g5 +(g6 +(I0 +tp49896 +g8 +tp49897 +Rp49898 +(I1 +(I7 +tp49899 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49900 +tp49901 +bsa(dp49902 +g4 +g5 +(g6 +(I0 +tp49903 +g8 +tp49904 +Rp49905 +(I1 +(I7 +tp49906 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49907 +tp49908 +bsa(dp49909 +g4 +g5 +(g6 +(I0 +tp49910 +g8 +tp49911 +Rp49912 +(I1 +(I7 +tp49913 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49914 +tp49915 +bsa(dp49916 +g4 +g5 +(g6 +(I0 +tp49917 +g8 +tp49918 +Rp49919 +(I1 +(I7 +tp49920 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49921 +tp49922 +bsa(dp49923 +g4 +g5 +(g6 +(I0 +tp49924 +g8 +tp49925 +Rp49926 +(I1 +(I7 +tp49927 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49928 +tp49929 +bsa(dp49930 +g4 +g5 +(g6 +(I0 +tp49931 +g8 +tp49932 +Rp49933 +(I1 +(I7 +tp49934 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49935 +tp49936 +bsa(dp49937 +g4 +g5 +(g6 +(I0 +tp49938 +g8 +tp49939 +Rp49940 +(I1 +(I7 +tp49941 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49942 +tp49943 +bsa(dp49944 +g4 +g5 +(g6 +(I0 +tp49945 +g8 +tp49946 +Rp49947 +(I1 +(I7 +tp49948 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49949 +tp49950 +bsa(dp49951 +g4 +g5 +(g6 +(I0 +tp49952 +g8 +tp49953 +Rp49954 +(I1 +(I7 +tp49955 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49956 +tp49957 +bsa(dp49958 +g4 +g5 +(g6 +(I0 +tp49959 +g8 +tp49960 +Rp49961 +(I1 +(I7 +tp49962 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49963 +tp49964 +bsa(dp49965 +g4 +g5 +(g6 +(I0 +tp49966 +g8 +tp49967 +Rp49968 +(I1 +(I7 +tp49969 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49970 +tp49971 +bsa(dp49972 +g4 +g5 +(g6 +(I0 +tp49973 +g8 +tp49974 +Rp49975 +(I1 +(I7 +tp49976 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p49977 +tp49978 +bsa(dp49979 +g4 +g5 +(g6 +(I0 +tp49980 +g8 +tp49981 +Rp49982 +(I1 +(I7 +tp49983 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p49984 +tp49985 +bsa(dp49986 +g4 +g5 +(g6 +(I0 +tp49987 +g8 +tp49988 +Rp49989 +(I1 +(I7 +tp49990 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49991 +tp49992 +bsa(dp49993 +g4 +g5 +(g6 +(I0 +tp49994 +g8 +tp49995 +Rp49996 +(I1 +(I7 +tp49997 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p49998 +tp49999 +bsa(dp50000 +g4 +g5 +(g6 +(I0 +tp50001 +g8 +tp50002 +Rp50003 +(I1 +(I7 +tp50004 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50005 +tp50006 +bsa(dp50007 +g4 +g5 +(g6 +(I0 +tp50008 +g8 +tp50009 +Rp50010 +(I1 +(I7 +tp50011 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50012 +tp50013 +bsa(dp50014 +g4 +g5 +(g6 +(I0 +tp50015 +g8 +tp50016 +Rp50017 +(I1 +(I7 +tp50018 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50019 +tp50020 +bsa(dp50021 +g4 +g5 +(g6 +(I0 +tp50022 +g8 +tp50023 +Rp50024 +(I1 +(I7 +tp50025 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50026 +tp50027 +bsa(dp50028 +g4 +g5 +(g6 +(I0 +tp50029 +g8 +tp50030 +Rp50031 +(I1 +(I7 +tp50032 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50033 +tp50034 +bsa(dp50035 +g4 +g5 +(g6 +(I0 +tp50036 +g8 +tp50037 +Rp50038 +(I1 +(I7 +tp50039 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50040 +tp50041 +bsa(dp50042 +g4 +g5 +(g6 +(I0 +tp50043 +g8 +tp50044 +Rp50045 +(I1 +(I7 +tp50046 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50047 +tp50048 +bsa(dp50049 +g4 +g5 +(g6 +(I0 +tp50050 +g8 +tp50051 +Rp50052 +(I1 +(I7 +tp50053 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50054 +tp50055 +bsa(dp50056 +g4 +g5 +(g6 +(I0 +tp50057 +g8 +tp50058 +Rp50059 +(I1 +(I7 +tp50060 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50061 +tp50062 +bsa(dp50063 +g4 +g5 +(g6 +(I0 +tp50064 +g8 +tp50065 +Rp50066 +(I1 +(I7 +tp50067 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50068 +tp50069 +bsa(dp50070 +g4 +g5 +(g6 +(I0 +tp50071 +g8 +tp50072 +Rp50073 +(I1 +(I7 +tp50074 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50075 +tp50076 +bsa(dp50077 +g4 +g5 +(g6 +(I0 +tp50078 +g8 +tp50079 +Rp50080 +(I1 +(I7 +tp50081 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50082 +tp50083 +bsa(dp50084 +g4 +g5 +(g6 +(I0 +tp50085 +g8 +tp50086 +Rp50087 +(I1 +(I7 +tp50088 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50089 +tp50090 +bsa(dp50091 +g4 +g5 +(g6 +(I0 +tp50092 +g8 +tp50093 +Rp50094 +(I1 +(I7 +tp50095 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50096 +tp50097 +bsa(dp50098 +g4 +g5 +(g6 +(I0 +tp50099 +g8 +tp50100 +Rp50101 +(I1 +(I7 +tp50102 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50103 +tp50104 +bsa(dp50105 +g4 +g5 +(g6 +(I0 +tp50106 +g8 +tp50107 +Rp50108 +(I1 +(I7 +tp50109 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50110 +tp50111 +bsa(dp50112 +g4 +g5 +(g6 +(I0 +tp50113 +g8 +tp50114 +Rp50115 +(I1 +(I7 +tp50116 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50117 +tp50118 +bsa(dp50119 +g4 +g5 +(g6 +(I0 +tp50120 +g8 +tp50121 +Rp50122 +(I1 +(I7 +tp50123 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50124 +tp50125 +bsa(dp50126 +g4 +g5 +(g6 +(I0 +tp50127 +g8 +tp50128 +Rp50129 +(I1 +(I7 +tp50130 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50131 +tp50132 +bsa(dp50133 +g4 +g5 +(g6 +(I0 +tp50134 +g8 +tp50135 +Rp50136 +(I1 +(I7 +tp50137 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50138 +tp50139 +bsa(dp50140 +g4 +g5 +(g6 +(I0 +tp50141 +g8 +tp50142 +Rp50143 +(I1 +(I7 +tp50144 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50145 +tp50146 +bsa(dp50147 +g4 +g5 +(g6 +(I0 +tp50148 +g8 +tp50149 +Rp50150 +(I1 +(I7 +tp50151 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50152 +tp50153 +bsa(dp50154 +g4 +g5 +(g6 +(I0 +tp50155 +g8 +tp50156 +Rp50157 +(I1 +(I7 +tp50158 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50159 +tp50160 +bsa(dp50161 +g4 +g5 +(g6 +(I0 +tp50162 +g8 +tp50163 +Rp50164 +(I1 +(I7 +tp50165 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50166 +tp50167 +bsa(dp50168 +g4 +g5 +(g6 +(I0 +tp50169 +g8 +tp50170 +Rp50171 +(I1 +(I7 +tp50172 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50173 +tp50174 +bsa(dp50175 +g4 +g5 +(g6 +(I0 +tp50176 +g8 +tp50177 +Rp50178 +(I1 +(I7 +tp50179 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50180 +tp50181 +bsa(dp50182 +g4 +g5 +(g6 +(I0 +tp50183 +g8 +tp50184 +Rp50185 +(I1 +(I7 +tp50186 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50187 +tp50188 +bsa(dp50189 +g4 +g5 +(g6 +(I0 +tp50190 +g8 +tp50191 +Rp50192 +(I1 +(I7 +tp50193 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50194 +tp50195 +bsa(dp50196 +g4 +g5 +(g6 +(I0 +tp50197 +g8 +tp50198 +Rp50199 +(I1 +(I7 +tp50200 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50201 +tp50202 +bsa(dp50203 +g4 +g5 +(g6 +(I0 +tp50204 +g8 +tp50205 +Rp50206 +(I1 +(I7 +tp50207 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50208 +tp50209 +bsa(dp50210 +g4 +g5 +(g6 +(I0 +tp50211 +g8 +tp50212 +Rp50213 +(I1 +(I7 +tp50214 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50215 +tp50216 +bsa(dp50217 +g4 +g5 +(g6 +(I0 +tp50218 +g8 +tp50219 +Rp50220 +(I1 +(I7 +tp50221 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50222 +tp50223 +bsa(dp50224 +g4 +g5 +(g6 +(I0 +tp50225 +g8 +tp50226 +Rp50227 +(I1 +(I7 +tp50228 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50229 +tp50230 +bsa(dp50231 +g4 +g5 +(g6 +(I0 +tp50232 +g8 +tp50233 +Rp50234 +(I1 +(I7 +tp50235 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50236 +tp50237 +bsa(dp50238 +g4 +g5 +(g6 +(I0 +tp50239 +g8 +tp50240 +Rp50241 +(I1 +(I7 +tp50242 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50243 +tp50244 +bsa(dp50245 +g4 +g5 +(g6 +(I0 +tp50246 +g8 +tp50247 +Rp50248 +(I1 +(I7 +tp50249 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50250 +tp50251 +bsa(dp50252 +g4 +g5 +(g6 +(I0 +tp50253 +g8 +tp50254 +Rp50255 +(I1 +(I7 +tp50256 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50257 +tp50258 +bsa(dp50259 +g4 +g5 +(g6 +(I0 +tp50260 +g8 +tp50261 +Rp50262 +(I1 +(I7 +tp50263 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50264 +tp50265 +bsa(dp50266 +g4 +g5 +(g6 +(I0 +tp50267 +g8 +tp50268 +Rp50269 +(I1 +(I7 +tp50270 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50271 +tp50272 +bsa(dp50273 +g4 +g5 +(g6 +(I0 +tp50274 +g8 +tp50275 +Rp50276 +(I1 +(I7 +tp50277 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50278 +tp50279 +bsa(dp50280 +g4 +g5 +(g6 +(I0 +tp50281 +g8 +tp50282 +Rp50283 +(I1 +(I7 +tp50284 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50285 +tp50286 +bsa(dp50287 +g4 +g5 +(g6 +(I0 +tp50288 +g8 +tp50289 +Rp50290 +(I1 +(I7 +tp50291 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50292 +tp50293 +bsa(dp50294 +g4 +g5 +(g6 +(I0 +tp50295 +g8 +tp50296 +Rp50297 +(I1 +(I7 +tp50298 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50299 +tp50300 +bsa(dp50301 +g4 +g5 +(g6 +(I0 +tp50302 +g8 +tp50303 +Rp50304 +(I1 +(I7 +tp50305 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50306 +tp50307 +bsa(dp50308 +g4 +g5 +(g6 +(I0 +tp50309 +g8 +tp50310 +Rp50311 +(I1 +(I7 +tp50312 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50313 +tp50314 +bsa(dp50315 +g4 +g5 +(g6 +(I0 +tp50316 +g8 +tp50317 +Rp50318 +(I1 +(I7 +tp50319 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50320 +tp50321 +bsa(dp50322 +g4 +g5 +(g6 +(I0 +tp50323 +g8 +tp50324 +Rp50325 +(I1 +(I7 +tp50326 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50327 +tp50328 +bsa(dp50329 +g4 +g5 +(g6 +(I0 +tp50330 +g8 +tp50331 +Rp50332 +(I1 +(I7 +tp50333 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50334 +tp50335 +bsa(dp50336 +g4 +g5 +(g6 +(I0 +tp50337 +g8 +tp50338 +Rp50339 +(I1 +(I7 +tp50340 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50341 +tp50342 +bsa(dp50343 +g4 +g5 +(g6 +(I0 +tp50344 +g8 +tp50345 +Rp50346 +(I1 +(I7 +tp50347 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50348 +tp50349 +bsa(dp50350 +g4 +g5 +(g6 +(I0 +tp50351 +g8 +tp50352 +Rp50353 +(I1 +(I7 +tp50354 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50355 +tp50356 +bsa(dp50357 +g4 +g5 +(g6 +(I0 +tp50358 +g8 +tp50359 +Rp50360 +(I1 +(I7 +tp50361 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50362 +tp50363 +bsa(dp50364 +g4 +g5 +(g6 +(I0 +tp50365 +g8 +tp50366 +Rp50367 +(I1 +(I7 +tp50368 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50369 +tp50370 +bsa(dp50371 +g4 +g5 +(g6 +(I0 +tp50372 +g8 +tp50373 +Rp50374 +(I1 +(I7 +tp50375 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50376 +tp50377 +bsa(dp50378 +g4 +g5 +(g6 +(I0 +tp50379 +g8 +tp50380 +Rp50381 +(I1 +(I7 +tp50382 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50383 +tp50384 +bsa(dp50385 +g4 +g5 +(g6 +(I0 +tp50386 +g8 +tp50387 +Rp50388 +(I1 +(I7 +tp50389 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50390 +tp50391 +bsa(dp50392 +g4 +g5 +(g6 +(I0 +tp50393 +g8 +tp50394 +Rp50395 +(I1 +(I7 +tp50396 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50397 +tp50398 +bsa(dp50399 +g4 +g5 +(g6 +(I0 +tp50400 +g8 +tp50401 +Rp50402 +(I1 +(I7 +tp50403 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50404 +tp50405 +bsa(dp50406 +g4 +g5 +(g6 +(I0 +tp50407 +g8 +tp50408 +Rp50409 +(I1 +(I7 +tp50410 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50411 +tp50412 +bsa(dp50413 +g4 +g5 +(g6 +(I0 +tp50414 +g8 +tp50415 +Rp50416 +(I1 +(I7 +tp50417 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50418 +tp50419 +bsa(dp50420 +g4 +g5 +(g6 +(I0 +tp50421 +g8 +tp50422 +Rp50423 +(I1 +(I7 +tp50424 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50425 +tp50426 +bsa(dp50427 +g4 +g5 +(g6 +(I0 +tp50428 +g8 +tp50429 +Rp50430 +(I1 +(I7 +tp50431 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50432 +tp50433 +bsa(dp50434 +g4 +g5 +(g6 +(I0 +tp50435 +g8 +tp50436 +Rp50437 +(I1 +(I7 +tp50438 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50439 +tp50440 +bsa(dp50441 +g4 +g5 +(g6 +(I0 +tp50442 +g8 +tp50443 +Rp50444 +(I1 +(I7 +tp50445 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50446 +tp50447 +bsa(dp50448 +g4 +g5 +(g6 +(I0 +tp50449 +g8 +tp50450 +Rp50451 +(I1 +(I7 +tp50452 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50453 +tp50454 +bsa(dp50455 +g4 +g5 +(g6 +(I0 +tp50456 +g8 +tp50457 +Rp50458 +(I1 +(I7 +tp50459 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50460 +tp50461 +bsa(dp50462 +g4 +g5 +(g6 +(I0 +tp50463 +g8 +tp50464 +Rp50465 +(I1 +(I7 +tp50466 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50467 +tp50468 +bsa(dp50469 +g4 +g5 +(g6 +(I0 +tp50470 +g8 +tp50471 +Rp50472 +(I1 +(I7 +tp50473 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50474 +tp50475 +bsa(dp50476 +g4 +g5 +(g6 +(I0 +tp50477 +g8 +tp50478 +Rp50479 +(I1 +(I7 +tp50480 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50481 +tp50482 +bsa(dp50483 +g4 +g5 +(g6 +(I0 +tp50484 +g8 +tp50485 +Rp50486 +(I1 +(I7 +tp50487 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50488 +tp50489 +bsa(dp50490 +g4 +g5 +(g6 +(I0 +tp50491 +g8 +tp50492 +Rp50493 +(I1 +(I7 +tp50494 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50495 +tp50496 +bsa(dp50497 +g4 +g5 +(g6 +(I0 +tp50498 +g8 +tp50499 +Rp50500 +(I1 +(I7 +tp50501 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50502 +tp50503 +bsa(dp50504 +g4 +g5 +(g6 +(I0 +tp50505 +g8 +tp50506 +Rp50507 +(I1 +(I7 +tp50508 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50509 +tp50510 +bsa(dp50511 +g4 +g5 +(g6 +(I0 +tp50512 +g8 +tp50513 +Rp50514 +(I1 +(I7 +tp50515 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50516 +tp50517 +bsa(dp50518 +g4 +g5 +(g6 +(I0 +tp50519 +g8 +tp50520 +Rp50521 +(I1 +(I7 +tp50522 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50523 +tp50524 +bsa(dp50525 +g4 +g5 +(g6 +(I0 +tp50526 +g8 +tp50527 +Rp50528 +(I1 +(I7 +tp50529 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50530 +tp50531 +bsa(dp50532 +g4 +g5 +(g6 +(I0 +tp50533 +g8 +tp50534 +Rp50535 +(I1 +(I7 +tp50536 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50537 +tp50538 +bsa(dp50539 +g4 +g5 +(g6 +(I0 +tp50540 +g8 +tp50541 +Rp50542 +(I1 +(I7 +tp50543 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50544 +tp50545 +bsa(dp50546 +g4 +g5 +(g6 +(I0 +tp50547 +g8 +tp50548 +Rp50549 +(I1 +(I7 +tp50550 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50551 +tp50552 +bsa(dp50553 +g4 +g5 +(g6 +(I0 +tp50554 +g8 +tp50555 +Rp50556 +(I1 +(I7 +tp50557 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50558 +tp50559 +bsa(dp50560 +g4 +g5 +(g6 +(I0 +tp50561 +g8 +tp50562 +Rp50563 +(I1 +(I7 +tp50564 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50565 +tp50566 +bsa(dp50567 +g4 +g5 +(g6 +(I0 +tp50568 +g8 +tp50569 +Rp50570 +(I1 +(I7 +tp50571 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50572 +tp50573 +bsa(dp50574 +g4 +g5 +(g6 +(I0 +tp50575 +g8 +tp50576 +Rp50577 +(I1 +(I7 +tp50578 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50579 +tp50580 +bsa(dp50581 +g4 +g5 +(g6 +(I0 +tp50582 +g8 +tp50583 +Rp50584 +(I1 +(I7 +tp50585 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50586 +tp50587 +bsa(dp50588 +g4 +g5 +(g6 +(I0 +tp50589 +g8 +tp50590 +Rp50591 +(I1 +(I7 +tp50592 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50593 +tp50594 +bsa(dp50595 +g4 +g5 +(g6 +(I0 +tp50596 +g8 +tp50597 +Rp50598 +(I1 +(I7 +tp50599 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50600 +tp50601 +bsa(dp50602 +g4 +g5 +(g6 +(I0 +tp50603 +g8 +tp50604 +Rp50605 +(I1 +(I7 +tp50606 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50607 +tp50608 +bsa(dp50609 +g4 +g5 +(g6 +(I0 +tp50610 +g8 +tp50611 +Rp50612 +(I1 +(I7 +tp50613 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50614 +tp50615 +bsa(dp50616 +g4 +g5 +(g6 +(I0 +tp50617 +g8 +tp50618 +Rp50619 +(I1 +(I7 +tp50620 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50621 +tp50622 +bsa(dp50623 +g4 +g5 +(g6 +(I0 +tp50624 +g8 +tp50625 +Rp50626 +(I1 +(I7 +tp50627 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50628 +tp50629 +bsa(dp50630 +g4 +g5 +(g6 +(I0 +tp50631 +g8 +tp50632 +Rp50633 +(I1 +(I7 +tp50634 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50635 +tp50636 +bsa(dp50637 +g4 +g5 +(g6 +(I0 +tp50638 +g8 +tp50639 +Rp50640 +(I1 +(I7 +tp50641 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50642 +tp50643 +bsa(dp50644 +g4 +g5 +(g6 +(I0 +tp50645 +g8 +tp50646 +Rp50647 +(I1 +(I7 +tp50648 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50649 +tp50650 +bsa(dp50651 +g4 +g5 +(g6 +(I0 +tp50652 +g8 +tp50653 +Rp50654 +(I1 +(I7 +tp50655 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50656 +tp50657 +bsa(dp50658 +g4 +g5 +(g6 +(I0 +tp50659 +g8 +tp50660 +Rp50661 +(I1 +(I7 +tp50662 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50663 +tp50664 +bsa(dp50665 +g4 +g5 +(g6 +(I0 +tp50666 +g8 +tp50667 +Rp50668 +(I1 +(I7 +tp50669 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50670 +tp50671 +bsa(dp50672 +g4 +g5 +(g6 +(I0 +tp50673 +g8 +tp50674 +Rp50675 +(I1 +(I7 +tp50676 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50677 +tp50678 +bsa(dp50679 +g4 +g5 +(g6 +(I0 +tp50680 +g8 +tp50681 +Rp50682 +(I1 +(I7 +tp50683 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50684 +tp50685 +bsa(dp50686 +g4 +g5 +(g6 +(I0 +tp50687 +g8 +tp50688 +Rp50689 +(I1 +(I7 +tp50690 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50691 +tp50692 +bsa(dp50693 +g4 +g5 +(g6 +(I0 +tp50694 +g8 +tp50695 +Rp50696 +(I1 +(I7 +tp50697 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50698 +tp50699 +bsa(dp50700 +g4 +g5 +(g6 +(I0 +tp50701 +g8 +tp50702 +Rp50703 +(I1 +(I7 +tp50704 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50705 +tp50706 +bsa(dp50707 +g4 +g5 +(g6 +(I0 +tp50708 +g8 +tp50709 +Rp50710 +(I1 +(I7 +tp50711 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50712 +tp50713 +bsa(dp50714 +g4 +g5 +(g6 +(I0 +tp50715 +g8 +tp50716 +Rp50717 +(I1 +(I7 +tp50718 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50719 +tp50720 +bsa(dp50721 +g4 +g5 +(g6 +(I0 +tp50722 +g8 +tp50723 +Rp50724 +(I1 +(I7 +tp50725 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50726 +tp50727 +bsa(dp50728 +g4 +g5 +(g6 +(I0 +tp50729 +g8 +tp50730 +Rp50731 +(I1 +(I7 +tp50732 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50733 +tp50734 +bsa(dp50735 +g4 +g5 +(g6 +(I0 +tp50736 +g8 +tp50737 +Rp50738 +(I1 +(I7 +tp50739 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50740 +tp50741 +bsa(dp50742 +g4 +g5 +(g6 +(I0 +tp50743 +g8 +tp50744 +Rp50745 +(I1 +(I7 +tp50746 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50747 +tp50748 +bsa(dp50749 +g4 +g5 +(g6 +(I0 +tp50750 +g8 +tp50751 +Rp50752 +(I1 +(I7 +tp50753 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50754 +tp50755 +bsa(dp50756 +g4 +g5 +(g6 +(I0 +tp50757 +g8 +tp50758 +Rp50759 +(I1 +(I7 +tp50760 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50761 +tp50762 +bsa(dp50763 +g4 +g5 +(g6 +(I0 +tp50764 +g8 +tp50765 +Rp50766 +(I1 +(I7 +tp50767 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50768 +tp50769 +bsa(dp50770 +g4 +g5 +(g6 +(I0 +tp50771 +g8 +tp50772 +Rp50773 +(I1 +(I7 +tp50774 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50775 +tp50776 +bsa(dp50777 +g4 +g5 +(g6 +(I0 +tp50778 +g8 +tp50779 +Rp50780 +(I1 +(I7 +tp50781 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50782 +tp50783 +bsa(dp50784 +g4 +g5 +(g6 +(I0 +tp50785 +g8 +tp50786 +Rp50787 +(I1 +(I7 +tp50788 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50789 +tp50790 +bsa(dp50791 +g4 +g5 +(g6 +(I0 +tp50792 +g8 +tp50793 +Rp50794 +(I1 +(I7 +tp50795 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50796 +tp50797 +bsa(dp50798 +g4 +g5 +(g6 +(I0 +tp50799 +g8 +tp50800 +Rp50801 +(I1 +(I7 +tp50802 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50803 +tp50804 +bsa(dp50805 +g4 +g5 +(g6 +(I0 +tp50806 +g8 +tp50807 +Rp50808 +(I1 +(I7 +tp50809 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50810 +tp50811 +bsa(dp50812 +g4 +g5 +(g6 +(I0 +tp50813 +g8 +tp50814 +Rp50815 +(I1 +(I7 +tp50816 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50817 +tp50818 +bsa(dp50819 +g4 +g5 +(g6 +(I0 +tp50820 +g8 +tp50821 +Rp50822 +(I1 +(I7 +tp50823 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50824 +tp50825 +bsa(dp50826 +g4 +g5 +(g6 +(I0 +tp50827 +g8 +tp50828 +Rp50829 +(I1 +(I7 +tp50830 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50831 +tp50832 +bsa(dp50833 +g4 +g5 +(g6 +(I0 +tp50834 +g8 +tp50835 +Rp50836 +(I1 +(I7 +tp50837 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50838 +tp50839 +bsa(dp50840 +g4 +g5 +(g6 +(I0 +tp50841 +g8 +tp50842 +Rp50843 +(I1 +(I7 +tp50844 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50845 +tp50846 +bsa(dp50847 +g4 +g5 +(g6 +(I0 +tp50848 +g8 +tp50849 +Rp50850 +(I1 +(I7 +tp50851 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50852 +tp50853 +bsa(dp50854 +g4 +g5 +(g6 +(I0 +tp50855 +g8 +tp50856 +Rp50857 +(I1 +(I7 +tp50858 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50859 +tp50860 +bsa(dp50861 +g4 +g5 +(g6 +(I0 +tp50862 +g8 +tp50863 +Rp50864 +(I1 +(I7 +tp50865 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50866 +tp50867 +bsa(dp50868 +g4 +g5 +(g6 +(I0 +tp50869 +g8 +tp50870 +Rp50871 +(I1 +(I7 +tp50872 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50873 +tp50874 +bsa(dp50875 +g4 +g5 +(g6 +(I0 +tp50876 +g8 +tp50877 +Rp50878 +(I1 +(I7 +tp50879 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50880 +tp50881 +bsa(dp50882 +g4 +g5 +(g6 +(I0 +tp50883 +g8 +tp50884 +Rp50885 +(I1 +(I7 +tp50886 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50887 +tp50888 +bsa(dp50889 +g4 +g5 +(g6 +(I0 +tp50890 +g8 +tp50891 +Rp50892 +(I1 +(I7 +tp50893 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50894 +tp50895 +bsa(dp50896 +g4 +g5 +(g6 +(I0 +tp50897 +g8 +tp50898 +Rp50899 +(I1 +(I7 +tp50900 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50901 +tp50902 +bsa(dp50903 +g4 +g5 +(g6 +(I0 +tp50904 +g8 +tp50905 +Rp50906 +(I1 +(I7 +tp50907 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50908 +tp50909 +bsa(dp50910 +g4 +g5 +(g6 +(I0 +tp50911 +g8 +tp50912 +Rp50913 +(I1 +(I7 +tp50914 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50915 +tp50916 +bsa(dp50917 +g4 +g5 +(g6 +(I0 +tp50918 +g8 +tp50919 +Rp50920 +(I1 +(I7 +tp50921 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50922 +tp50923 +bsa(dp50924 +g4 +g5 +(g6 +(I0 +tp50925 +g8 +tp50926 +Rp50927 +(I1 +(I7 +tp50928 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50929 +tp50930 +bsa(dp50931 +g4 +g5 +(g6 +(I0 +tp50932 +g8 +tp50933 +Rp50934 +(I1 +(I7 +tp50935 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50936 +tp50937 +bsa(dp50938 +g4 +g5 +(g6 +(I0 +tp50939 +g8 +tp50940 +Rp50941 +(I1 +(I7 +tp50942 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50943 +tp50944 +bsa(dp50945 +g4 +g5 +(g6 +(I0 +tp50946 +g8 +tp50947 +Rp50948 +(I1 +(I7 +tp50949 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50950 +tp50951 +bsa(dp50952 +g4 +g5 +(g6 +(I0 +tp50953 +g8 +tp50954 +Rp50955 +(I1 +(I7 +tp50956 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50957 +tp50958 +bsa(dp50959 +g4 +g5 +(g6 +(I0 +tp50960 +g8 +tp50961 +Rp50962 +(I1 +(I7 +tp50963 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50964 +tp50965 +bsa(dp50966 +g4 +g5 +(g6 +(I0 +tp50967 +g8 +tp50968 +Rp50969 +(I1 +(I7 +tp50970 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50971 +tp50972 +bsa(dp50973 +g4 +g5 +(g6 +(I0 +tp50974 +g8 +tp50975 +Rp50976 +(I1 +(I7 +tp50977 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50978 +tp50979 +bsa(dp50980 +g4 +g5 +(g6 +(I0 +tp50981 +g8 +tp50982 +Rp50983 +(I1 +(I7 +tp50984 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p50985 +tp50986 +bsa(dp50987 +g4 +g5 +(g6 +(I0 +tp50988 +g8 +tp50989 +Rp50990 +(I1 +(I7 +tp50991 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p50992 +tp50993 +bsa(dp50994 +g4 +g5 +(g6 +(I0 +tp50995 +g8 +tp50996 +Rp50997 +(I1 +(I7 +tp50998 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p50999 +tp51000 +bsa(dp51001 +g4 +g5 +(g6 +(I0 +tp51002 +g8 +tp51003 +Rp51004 +(I1 +(I7 +tp51005 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51006 +tp51007 +bsa(dp51008 +g4 +g5 +(g6 +(I0 +tp51009 +g8 +tp51010 +Rp51011 +(I1 +(I7 +tp51012 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51013 +tp51014 +bsa(dp51015 +g4 +g5 +(g6 +(I0 +tp51016 +g8 +tp51017 +Rp51018 +(I1 +(I7 +tp51019 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51020 +tp51021 +bsa(dp51022 +g4 +g5 +(g6 +(I0 +tp51023 +g8 +tp51024 +Rp51025 +(I1 +(I7 +tp51026 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51027 +tp51028 +bsa(dp51029 +g4 +g5 +(g6 +(I0 +tp51030 +g8 +tp51031 +Rp51032 +(I1 +(I7 +tp51033 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51034 +tp51035 +bsa(dp51036 +g4 +g5 +(g6 +(I0 +tp51037 +g8 +tp51038 +Rp51039 +(I1 +(I7 +tp51040 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51041 +tp51042 +bsa(dp51043 +g4 +g5 +(g6 +(I0 +tp51044 +g8 +tp51045 +Rp51046 +(I1 +(I7 +tp51047 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51048 +tp51049 +bsa(dp51050 +g4 +g5 +(g6 +(I0 +tp51051 +g8 +tp51052 +Rp51053 +(I1 +(I7 +tp51054 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51055 +tp51056 +bsa(dp51057 +g4 +g5 +(g6 +(I0 +tp51058 +g8 +tp51059 +Rp51060 +(I1 +(I7 +tp51061 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51062 +tp51063 +bsa(dp51064 +g4 +g5 +(g6 +(I0 +tp51065 +g8 +tp51066 +Rp51067 +(I1 +(I7 +tp51068 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51069 +tp51070 +bsa(dp51071 +g4 +g5 +(g6 +(I0 +tp51072 +g8 +tp51073 +Rp51074 +(I1 +(I7 +tp51075 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51076 +tp51077 +bsa(dp51078 +g4 +g5 +(g6 +(I0 +tp51079 +g8 +tp51080 +Rp51081 +(I1 +(I7 +tp51082 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51083 +tp51084 +bsa(dp51085 +g4 +g5 +(g6 +(I0 +tp51086 +g8 +tp51087 +Rp51088 +(I1 +(I7 +tp51089 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51090 +tp51091 +bsa(dp51092 +g4 +g5 +(g6 +(I0 +tp51093 +g8 +tp51094 +Rp51095 +(I1 +(I7 +tp51096 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51097 +tp51098 +bsa(dp51099 +g4 +g5 +(g6 +(I0 +tp51100 +g8 +tp51101 +Rp51102 +(I1 +(I7 +tp51103 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51104 +tp51105 +bsa(dp51106 +g4 +g5 +(g6 +(I0 +tp51107 +g8 +tp51108 +Rp51109 +(I1 +(I7 +tp51110 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51111 +tp51112 +bsa(dp51113 +g4 +g5 +(g6 +(I0 +tp51114 +g8 +tp51115 +Rp51116 +(I1 +(I7 +tp51117 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51118 +tp51119 +bsa(dp51120 +g4 +g5 +(g6 +(I0 +tp51121 +g8 +tp51122 +Rp51123 +(I1 +(I7 +tp51124 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51125 +tp51126 +bsa(dp51127 +g4 +g5 +(g6 +(I0 +tp51128 +g8 +tp51129 +Rp51130 +(I1 +(I7 +tp51131 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51132 +tp51133 +bsa(dp51134 +g4 +g5 +(g6 +(I0 +tp51135 +g8 +tp51136 +Rp51137 +(I1 +(I7 +tp51138 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51139 +tp51140 +bsa(dp51141 +g4 +g5 +(g6 +(I0 +tp51142 +g8 +tp51143 +Rp51144 +(I1 +(I7 +tp51145 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51146 +tp51147 +bsa(dp51148 +g4 +g5 +(g6 +(I0 +tp51149 +g8 +tp51150 +Rp51151 +(I1 +(I7 +tp51152 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51153 +tp51154 +bsa(dp51155 +g4 +g5 +(g6 +(I0 +tp51156 +g8 +tp51157 +Rp51158 +(I1 +(I7 +tp51159 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51160 +tp51161 +bsa(dp51162 +g4 +g5 +(g6 +(I0 +tp51163 +g8 +tp51164 +Rp51165 +(I1 +(I7 +tp51166 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51167 +tp51168 +bsa(dp51169 +g4 +g5 +(g6 +(I0 +tp51170 +g8 +tp51171 +Rp51172 +(I1 +(I7 +tp51173 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51174 +tp51175 +bsa(dp51176 +g4 +g5 +(g6 +(I0 +tp51177 +g8 +tp51178 +Rp51179 +(I1 +(I7 +tp51180 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51181 +tp51182 +bsa(dp51183 +g4 +g5 +(g6 +(I0 +tp51184 +g8 +tp51185 +Rp51186 +(I1 +(I7 +tp51187 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51188 +tp51189 +bsa(dp51190 +g4 +g5 +(g6 +(I0 +tp51191 +g8 +tp51192 +Rp51193 +(I1 +(I7 +tp51194 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51195 +tp51196 +bsa(dp51197 +g4 +g5 +(g6 +(I0 +tp51198 +g8 +tp51199 +Rp51200 +(I1 +(I7 +tp51201 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51202 +tp51203 +bsa(dp51204 +g4 +g5 +(g6 +(I0 +tp51205 +g8 +tp51206 +Rp51207 +(I1 +(I7 +tp51208 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51209 +tp51210 +bsa(dp51211 +g4 +g5 +(g6 +(I0 +tp51212 +g8 +tp51213 +Rp51214 +(I1 +(I7 +tp51215 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51216 +tp51217 +bsa(dp51218 +g4 +g5 +(g6 +(I0 +tp51219 +g8 +tp51220 +Rp51221 +(I1 +(I7 +tp51222 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51223 +tp51224 +bsa(dp51225 +g4 +g5 +(g6 +(I0 +tp51226 +g8 +tp51227 +Rp51228 +(I1 +(I7 +tp51229 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51230 +tp51231 +bsa(dp51232 +g4 +g5 +(g6 +(I0 +tp51233 +g8 +tp51234 +Rp51235 +(I1 +(I7 +tp51236 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51237 +tp51238 +bsa(dp51239 +g4 +g5 +(g6 +(I0 +tp51240 +g8 +tp51241 +Rp51242 +(I1 +(I7 +tp51243 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51244 +tp51245 +bsa(dp51246 +g4 +g5 +(g6 +(I0 +tp51247 +g8 +tp51248 +Rp51249 +(I1 +(I7 +tp51250 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51251 +tp51252 +bsa(dp51253 +g4 +g5 +(g6 +(I0 +tp51254 +g8 +tp51255 +Rp51256 +(I1 +(I7 +tp51257 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51258 +tp51259 +bsa(dp51260 +g4 +g5 +(g6 +(I0 +tp51261 +g8 +tp51262 +Rp51263 +(I1 +(I7 +tp51264 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51265 +tp51266 +bsa(dp51267 +g4 +g5 +(g6 +(I0 +tp51268 +g8 +tp51269 +Rp51270 +(I1 +(I7 +tp51271 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51272 +tp51273 +bsa(dp51274 +g4 +g5 +(g6 +(I0 +tp51275 +g8 +tp51276 +Rp51277 +(I1 +(I7 +tp51278 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51279 +tp51280 +bsa(dp51281 +g4 +g5 +(g6 +(I0 +tp51282 +g8 +tp51283 +Rp51284 +(I1 +(I7 +tp51285 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51286 +tp51287 +bsa(dp51288 +g4 +g5 +(g6 +(I0 +tp51289 +g8 +tp51290 +Rp51291 +(I1 +(I7 +tp51292 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51293 +tp51294 +bsa(dp51295 +g4 +g5 +(g6 +(I0 +tp51296 +g8 +tp51297 +Rp51298 +(I1 +(I7 +tp51299 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51300 +tp51301 +bsa(dp51302 +g4 +g5 +(g6 +(I0 +tp51303 +g8 +tp51304 +Rp51305 +(I1 +(I7 +tp51306 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51307 +tp51308 +bsa(dp51309 +g4 +g5 +(g6 +(I0 +tp51310 +g8 +tp51311 +Rp51312 +(I1 +(I7 +tp51313 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51314 +tp51315 +bsa(dp51316 +g4 +g5 +(g6 +(I0 +tp51317 +g8 +tp51318 +Rp51319 +(I1 +(I7 +tp51320 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51321 +tp51322 +bsa(dp51323 +g4 +g5 +(g6 +(I0 +tp51324 +g8 +tp51325 +Rp51326 +(I1 +(I7 +tp51327 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51328 +tp51329 +bsa(dp51330 +g4 +g5 +(g6 +(I0 +tp51331 +g8 +tp51332 +Rp51333 +(I1 +(I7 +tp51334 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51335 +tp51336 +bsa(dp51337 +g4 +g5 +(g6 +(I0 +tp51338 +g8 +tp51339 +Rp51340 +(I1 +(I7 +tp51341 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51342 +tp51343 +bsa(dp51344 +g4 +g5 +(g6 +(I0 +tp51345 +g8 +tp51346 +Rp51347 +(I1 +(I7 +tp51348 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51349 +tp51350 +bsa(dp51351 +g4 +g5 +(g6 +(I0 +tp51352 +g8 +tp51353 +Rp51354 +(I1 +(I7 +tp51355 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51356 +tp51357 +bsa(dp51358 +g4 +g5 +(g6 +(I0 +tp51359 +g8 +tp51360 +Rp51361 +(I1 +(I7 +tp51362 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51363 +tp51364 +bsa(dp51365 +g4 +g5 +(g6 +(I0 +tp51366 +g8 +tp51367 +Rp51368 +(I1 +(I7 +tp51369 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51370 +tp51371 +bsa(dp51372 +g4 +g5 +(g6 +(I0 +tp51373 +g8 +tp51374 +Rp51375 +(I1 +(I7 +tp51376 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51377 +tp51378 +bsa(dp51379 +g4 +g5 +(g6 +(I0 +tp51380 +g8 +tp51381 +Rp51382 +(I1 +(I7 +tp51383 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51384 +tp51385 +bsa(dp51386 +g4 +g5 +(g6 +(I0 +tp51387 +g8 +tp51388 +Rp51389 +(I1 +(I7 +tp51390 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51391 +tp51392 +bsa(dp51393 +g4 +g5 +(g6 +(I0 +tp51394 +g8 +tp51395 +Rp51396 +(I1 +(I7 +tp51397 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51398 +tp51399 +bsa(dp51400 +g4 +g5 +(g6 +(I0 +tp51401 +g8 +tp51402 +Rp51403 +(I1 +(I7 +tp51404 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51405 +tp51406 +bsa(dp51407 +g4 +g5 +(g6 +(I0 +tp51408 +g8 +tp51409 +Rp51410 +(I1 +(I7 +tp51411 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51412 +tp51413 +bsa(dp51414 +g4 +g5 +(g6 +(I0 +tp51415 +g8 +tp51416 +Rp51417 +(I1 +(I7 +tp51418 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51419 +tp51420 +bsa(dp51421 +g4 +g5 +(g6 +(I0 +tp51422 +g8 +tp51423 +Rp51424 +(I1 +(I7 +tp51425 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51426 +tp51427 +bsa(dp51428 +g4 +g5 +(g6 +(I0 +tp51429 +g8 +tp51430 +Rp51431 +(I1 +(I7 +tp51432 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51433 +tp51434 +bsa(dp51435 +g4 +g5 +(g6 +(I0 +tp51436 +g8 +tp51437 +Rp51438 +(I1 +(I7 +tp51439 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51440 +tp51441 +bsa(dp51442 +g4 +g5 +(g6 +(I0 +tp51443 +g8 +tp51444 +Rp51445 +(I1 +(I7 +tp51446 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51447 +tp51448 +bsa(dp51449 +g4 +g5 +(g6 +(I0 +tp51450 +g8 +tp51451 +Rp51452 +(I1 +(I7 +tp51453 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51454 +tp51455 +bsa(dp51456 +g4 +g5 +(g6 +(I0 +tp51457 +g8 +tp51458 +Rp51459 +(I1 +(I7 +tp51460 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51461 +tp51462 +bsa(dp51463 +g4 +g5 +(g6 +(I0 +tp51464 +g8 +tp51465 +Rp51466 +(I1 +(I7 +tp51467 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51468 +tp51469 +bsa(dp51470 +g4 +g5 +(g6 +(I0 +tp51471 +g8 +tp51472 +Rp51473 +(I1 +(I7 +tp51474 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51475 +tp51476 +bsa(dp51477 +g4 +g5 +(g6 +(I0 +tp51478 +g8 +tp51479 +Rp51480 +(I1 +(I7 +tp51481 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51482 +tp51483 +bsa(dp51484 +g4 +g5 +(g6 +(I0 +tp51485 +g8 +tp51486 +Rp51487 +(I1 +(I7 +tp51488 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51489 +tp51490 +bsa(dp51491 +g4 +g5 +(g6 +(I0 +tp51492 +g8 +tp51493 +Rp51494 +(I1 +(I7 +tp51495 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51496 +tp51497 +bsa(dp51498 +g4 +g5 +(g6 +(I0 +tp51499 +g8 +tp51500 +Rp51501 +(I1 +(I7 +tp51502 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51503 +tp51504 +bsa(dp51505 +g4 +g5 +(g6 +(I0 +tp51506 +g8 +tp51507 +Rp51508 +(I1 +(I7 +tp51509 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51510 +tp51511 +bsa(dp51512 +g4 +g5 +(g6 +(I0 +tp51513 +g8 +tp51514 +Rp51515 +(I1 +(I7 +tp51516 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51517 +tp51518 +bsa(dp51519 +g4 +g5 +(g6 +(I0 +tp51520 +g8 +tp51521 +Rp51522 +(I1 +(I7 +tp51523 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51524 +tp51525 +bsa(dp51526 +g4 +g5 +(g6 +(I0 +tp51527 +g8 +tp51528 +Rp51529 +(I1 +(I7 +tp51530 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51531 +tp51532 +bsa(dp51533 +g4 +g5 +(g6 +(I0 +tp51534 +g8 +tp51535 +Rp51536 +(I1 +(I7 +tp51537 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51538 +tp51539 +bsa(dp51540 +g4 +g5 +(g6 +(I0 +tp51541 +g8 +tp51542 +Rp51543 +(I1 +(I7 +tp51544 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51545 +tp51546 +bsa(dp51547 +g4 +g5 +(g6 +(I0 +tp51548 +g8 +tp51549 +Rp51550 +(I1 +(I7 +tp51551 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51552 +tp51553 +bsa(dp51554 +g4 +g5 +(g6 +(I0 +tp51555 +g8 +tp51556 +Rp51557 +(I1 +(I7 +tp51558 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51559 +tp51560 +bsa(dp51561 +g4 +g5 +(g6 +(I0 +tp51562 +g8 +tp51563 +Rp51564 +(I1 +(I7 +tp51565 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51566 +tp51567 +bsa(dp51568 +g4 +g5 +(g6 +(I0 +tp51569 +g8 +tp51570 +Rp51571 +(I1 +(I7 +tp51572 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51573 +tp51574 +bsa(dp51575 +g4 +g5 +(g6 +(I0 +tp51576 +g8 +tp51577 +Rp51578 +(I1 +(I7 +tp51579 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51580 +tp51581 +bsa(dp51582 +g4 +g5 +(g6 +(I0 +tp51583 +g8 +tp51584 +Rp51585 +(I1 +(I7 +tp51586 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51587 +tp51588 +bsa(dp51589 +g4 +g5 +(g6 +(I0 +tp51590 +g8 +tp51591 +Rp51592 +(I1 +(I7 +tp51593 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51594 +tp51595 +bsa(dp51596 +g4 +g5 +(g6 +(I0 +tp51597 +g8 +tp51598 +Rp51599 +(I1 +(I7 +tp51600 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51601 +tp51602 +bsa(dp51603 +g4 +g5 +(g6 +(I0 +tp51604 +g8 +tp51605 +Rp51606 +(I1 +(I7 +tp51607 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51608 +tp51609 +bsa(dp51610 +g4 +g5 +(g6 +(I0 +tp51611 +g8 +tp51612 +Rp51613 +(I1 +(I7 +tp51614 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51615 +tp51616 +bsa(dp51617 +g4 +g5 +(g6 +(I0 +tp51618 +g8 +tp51619 +Rp51620 +(I1 +(I7 +tp51621 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51622 +tp51623 +bsa(dp51624 +g4 +g5 +(g6 +(I0 +tp51625 +g8 +tp51626 +Rp51627 +(I1 +(I7 +tp51628 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51629 +tp51630 +bsa(dp51631 +g4 +g5 +(g6 +(I0 +tp51632 +g8 +tp51633 +Rp51634 +(I1 +(I7 +tp51635 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51636 +tp51637 +bsa(dp51638 +g4 +g5 +(g6 +(I0 +tp51639 +g8 +tp51640 +Rp51641 +(I1 +(I7 +tp51642 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51643 +tp51644 +bsa(dp51645 +g4 +g5 +(g6 +(I0 +tp51646 +g8 +tp51647 +Rp51648 +(I1 +(I7 +tp51649 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51650 +tp51651 +bsa(dp51652 +g4 +g5 +(g6 +(I0 +tp51653 +g8 +tp51654 +Rp51655 +(I1 +(I7 +tp51656 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51657 +tp51658 +bsa(dp51659 +g4 +g5 +(g6 +(I0 +tp51660 +g8 +tp51661 +Rp51662 +(I1 +(I7 +tp51663 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51664 +tp51665 +bsa(dp51666 +g4 +g5 +(g6 +(I0 +tp51667 +g8 +tp51668 +Rp51669 +(I1 +(I7 +tp51670 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51671 +tp51672 +bsa(dp51673 +g4 +g5 +(g6 +(I0 +tp51674 +g8 +tp51675 +Rp51676 +(I1 +(I7 +tp51677 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51678 +tp51679 +bsa(dp51680 +g4 +g5 +(g6 +(I0 +tp51681 +g8 +tp51682 +Rp51683 +(I1 +(I7 +tp51684 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51685 +tp51686 +bsa(dp51687 +g4 +g5 +(g6 +(I0 +tp51688 +g8 +tp51689 +Rp51690 +(I1 +(I7 +tp51691 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51692 +tp51693 +bsa(dp51694 +g4 +g5 +(g6 +(I0 +tp51695 +g8 +tp51696 +Rp51697 +(I1 +(I7 +tp51698 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51699 +tp51700 +bsa(dp51701 +g4 +g5 +(g6 +(I0 +tp51702 +g8 +tp51703 +Rp51704 +(I1 +(I7 +tp51705 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51706 +tp51707 +bsa(dp51708 +g4 +g5 +(g6 +(I0 +tp51709 +g8 +tp51710 +Rp51711 +(I1 +(I7 +tp51712 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51713 +tp51714 +bsa(dp51715 +g4 +g5 +(g6 +(I0 +tp51716 +g8 +tp51717 +Rp51718 +(I1 +(I7 +tp51719 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51720 +tp51721 +bsa(dp51722 +g4 +g5 +(g6 +(I0 +tp51723 +g8 +tp51724 +Rp51725 +(I1 +(I7 +tp51726 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51727 +tp51728 +bsa(dp51729 +g4 +g5 +(g6 +(I0 +tp51730 +g8 +tp51731 +Rp51732 +(I1 +(I7 +tp51733 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51734 +tp51735 +bsa(dp51736 +g4 +g5 +(g6 +(I0 +tp51737 +g8 +tp51738 +Rp51739 +(I1 +(I7 +tp51740 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51741 +tp51742 +bsa(dp51743 +g4 +g5 +(g6 +(I0 +tp51744 +g8 +tp51745 +Rp51746 +(I1 +(I7 +tp51747 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51748 +tp51749 +bsa(dp51750 +g4 +g5 +(g6 +(I0 +tp51751 +g8 +tp51752 +Rp51753 +(I1 +(I7 +tp51754 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51755 +tp51756 +bsa(dp51757 +g4 +g5 +(g6 +(I0 +tp51758 +g8 +tp51759 +Rp51760 +(I1 +(I7 +tp51761 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51762 +tp51763 +bsa(dp51764 +g4 +g5 +(g6 +(I0 +tp51765 +g8 +tp51766 +Rp51767 +(I1 +(I7 +tp51768 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51769 +tp51770 +bsa(dp51771 +g4 +g5 +(g6 +(I0 +tp51772 +g8 +tp51773 +Rp51774 +(I1 +(I7 +tp51775 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51776 +tp51777 +bsa(dp51778 +g4 +g5 +(g6 +(I0 +tp51779 +g8 +tp51780 +Rp51781 +(I1 +(I7 +tp51782 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51783 +tp51784 +bsa(dp51785 +g4 +g5 +(g6 +(I0 +tp51786 +g8 +tp51787 +Rp51788 +(I1 +(I7 +tp51789 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51790 +tp51791 +bsa(dp51792 +g4 +g5 +(g6 +(I0 +tp51793 +g8 +tp51794 +Rp51795 +(I1 +(I7 +tp51796 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51797 +tp51798 +bsa(dp51799 +g4 +g5 +(g6 +(I0 +tp51800 +g8 +tp51801 +Rp51802 +(I1 +(I7 +tp51803 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51804 +tp51805 +bsa(dp51806 +g4 +g5 +(g6 +(I0 +tp51807 +g8 +tp51808 +Rp51809 +(I1 +(I7 +tp51810 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51811 +tp51812 +bsa(dp51813 +g4 +g5 +(g6 +(I0 +tp51814 +g8 +tp51815 +Rp51816 +(I1 +(I7 +tp51817 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51818 +tp51819 +bsa(dp51820 +g4 +g5 +(g6 +(I0 +tp51821 +g8 +tp51822 +Rp51823 +(I1 +(I7 +tp51824 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51825 +tp51826 +bsa(dp51827 +g4 +g5 +(g6 +(I0 +tp51828 +g8 +tp51829 +Rp51830 +(I1 +(I7 +tp51831 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51832 +tp51833 +bsa(dp51834 +g4 +g5 +(g6 +(I0 +tp51835 +g8 +tp51836 +Rp51837 +(I1 +(I7 +tp51838 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51839 +tp51840 +bsa(dp51841 +g4 +g5 +(g6 +(I0 +tp51842 +g8 +tp51843 +Rp51844 +(I1 +(I7 +tp51845 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51846 +tp51847 +bsa(dp51848 +g4 +g5 +(g6 +(I0 +tp51849 +g8 +tp51850 +Rp51851 +(I1 +(I7 +tp51852 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51853 +tp51854 +bsa(dp51855 +g4 +g5 +(g6 +(I0 +tp51856 +g8 +tp51857 +Rp51858 +(I1 +(I7 +tp51859 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51860 +tp51861 +bsa(dp51862 +g4 +g5 +(g6 +(I0 +tp51863 +g8 +tp51864 +Rp51865 +(I1 +(I7 +tp51866 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51867 +tp51868 +bsa(dp51869 +g4 +g5 +(g6 +(I0 +tp51870 +g8 +tp51871 +Rp51872 +(I1 +(I7 +tp51873 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51874 +tp51875 +bsa(dp51876 +g4 +g5 +(g6 +(I0 +tp51877 +g8 +tp51878 +Rp51879 +(I1 +(I7 +tp51880 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51881 +tp51882 +bsa(dp51883 +g4 +g5 +(g6 +(I0 +tp51884 +g8 +tp51885 +Rp51886 +(I1 +(I7 +tp51887 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51888 +tp51889 +bsa(dp51890 +g4 +g5 +(g6 +(I0 +tp51891 +g8 +tp51892 +Rp51893 +(I1 +(I7 +tp51894 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51895 +tp51896 +bsa(dp51897 +g4 +g5 +(g6 +(I0 +tp51898 +g8 +tp51899 +Rp51900 +(I1 +(I7 +tp51901 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51902 +tp51903 +bsa(dp51904 +g4 +g5 +(g6 +(I0 +tp51905 +g8 +tp51906 +Rp51907 +(I1 +(I7 +tp51908 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51909 +tp51910 +bsa(dp51911 +g4 +g5 +(g6 +(I0 +tp51912 +g8 +tp51913 +Rp51914 +(I1 +(I7 +tp51915 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51916 +tp51917 +bsa(dp51918 +g4 +g5 +(g6 +(I0 +tp51919 +g8 +tp51920 +Rp51921 +(I1 +(I7 +tp51922 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51923 +tp51924 +bsa(dp51925 +g4 +g5 +(g6 +(I0 +tp51926 +g8 +tp51927 +Rp51928 +(I1 +(I7 +tp51929 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51930 +tp51931 +bsa(dp51932 +g4 +g5 +(g6 +(I0 +tp51933 +g8 +tp51934 +Rp51935 +(I1 +(I7 +tp51936 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51937 +tp51938 +bsa(dp51939 +g4 +g5 +(g6 +(I0 +tp51940 +g8 +tp51941 +Rp51942 +(I1 +(I7 +tp51943 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51944 +tp51945 +bsa(dp51946 +g4 +g5 +(g6 +(I0 +tp51947 +g8 +tp51948 +Rp51949 +(I1 +(I7 +tp51950 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51951 +tp51952 +bsa(dp51953 +g4 +g5 +(g6 +(I0 +tp51954 +g8 +tp51955 +Rp51956 +(I1 +(I7 +tp51957 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51958 +tp51959 +bsa(dp51960 +g4 +g5 +(g6 +(I0 +tp51961 +g8 +tp51962 +Rp51963 +(I1 +(I7 +tp51964 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51965 +tp51966 +bsa(dp51967 +g4 +g5 +(g6 +(I0 +tp51968 +g8 +tp51969 +Rp51970 +(I1 +(I7 +tp51971 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51972 +tp51973 +bsa(dp51974 +g4 +g5 +(g6 +(I0 +tp51975 +g8 +tp51976 +Rp51977 +(I1 +(I7 +tp51978 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p51979 +tp51980 +bsa(dp51981 +g4 +g5 +(g6 +(I0 +tp51982 +g8 +tp51983 +Rp51984 +(I1 +(I7 +tp51985 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p51986 +tp51987 +bsa(dp51988 +g4 +g5 +(g6 +(I0 +tp51989 +g8 +tp51990 +Rp51991 +(I1 +(I7 +tp51992 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p51993 +tp51994 +bsa(dp51995 +g4 +g5 +(g6 +(I0 +tp51996 +g8 +tp51997 +Rp51998 +(I1 +(I7 +tp51999 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52000 +tp52001 +bsa(dp52002 +g4 +g5 +(g6 +(I0 +tp52003 +g8 +tp52004 +Rp52005 +(I1 +(I7 +tp52006 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52007 +tp52008 +bsa(dp52009 +g4 +g5 +(g6 +(I0 +tp52010 +g8 +tp52011 +Rp52012 +(I1 +(I7 +tp52013 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52014 +tp52015 +bsa(dp52016 +g4 +g5 +(g6 +(I0 +tp52017 +g8 +tp52018 +Rp52019 +(I1 +(I7 +tp52020 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52021 +tp52022 +bsa(dp52023 +g4 +g5 +(g6 +(I0 +tp52024 +g8 +tp52025 +Rp52026 +(I1 +(I7 +tp52027 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52028 +tp52029 +bsa(dp52030 +g4 +g5 +(g6 +(I0 +tp52031 +g8 +tp52032 +Rp52033 +(I1 +(I7 +tp52034 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52035 +tp52036 +bsa(dp52037 +g4 +g5 +(g6 +(I0 +tp52038 +g8 +tp52039 +Rp52040 +(I1 +(I7 +tp52041 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52042 +tp52043 +bsa(dp52044 +g4 +g5 +(g6 +(I0 +tp52045 +g8 +tp52046 +Rp52047 +(I1 +(I7 +tp52048 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52049 +tp52050 +bsa(dp52051 +g4 +g5 +(g6 +(I0 +tp52052 +g8 +tp52053 +Rp52054 +(I1 +(I7 +tp52055 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52056 +tp52057 +bsa(dp52058 +g4 +g5 +(g6 +(I0 +tp52059 +g8 +tp52060 +Rp52061 +(I1 +(I7 +tp52062 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52063 +tp52064 +bsa(dp52065 +g4 +g5 +(g6 +(I0 +tp52066 +g8 +tp52067 +Rp52068 +(I1 +(I7 +tp52069 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52070 +tp52071 +bsa(dp52072 +g4 +g5 +(g6 +(I0 +tp52073 +g8 +tp52074 +Rp52075 +(I1 +(I7 +tp52076 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52077 +tp52078 +bsa(dp52079 +g4 +g5 +(g6 +(I0 +tp52080 +g8 +tp52081 +Rp52082 +(I1 +(I7 +tp52083 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52084 +tp52085 +bsa(dp52086 +g4 +g5 +(g6 +(I0 +tp52087 +g8 +tp52088 +Rp52089 +(I1 +(I7 +tp52090 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52091 +tp52092 +bsa(dp52093 +g4 +g5 +(g6 +(I0 +tp52094 +g8 +tp52095 +Rp52096 +(I1 +(I7 +tp52097 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52098 +tp52099 +bsa(dp52100 +g4 +g5 +(g6 +(I0 +tp52101 +g8 +tp52102 +Rp52103 +(I1 +(I7 +tp52104 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52105 +tp52106 +bsa(dp52107 +g4 +g5 +(g6 +(I0 +tp52108 +g8 +tp52109 +Rp52110 +(I1 +(I7 +tp52111 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52112 +tp52113 +bsa(dp52114 +g4 +g5 +(g6 +(I0 +tp52115 +g8 +tp52116 +Rp52117 +(I1 +(I7 +tp52118 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52119 +tp52120 +bsa(dp52121 +g4 +g5 +(g6 +(I0 +tp52122 +g8 +tp52123 +Rp52124 +(I1 +(I7 +tp52125 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52126 +tp52127 +bsa(dp52128 +g4 +g5 +(g6 +(I0 +tp52129 +g8 +tp52130 +Rp52131 +(I1 +(I7 +tp52132 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52133 +tp52134 +bsa(dp52135 +g4 +g5 +(g6 +(I0 +tp52136 +g8 +tp52137 +Rp52138 +(I1 +(I7 +tp52139 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52140 +tp52141 +bsa(dp52142 +g4 +g5 +(g6 +(I0 +tp52143 +g8 +tp52144 +Rp52145 +(I1 +(I7 +tp52146 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52147 +tp52148 +bsa(dp52149 +g4 +g5 +(g6 +(I0 +tp52150 +g8 +tp52151 +Rp52152 +(I1 +(I7 +tp52153 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52154 +tp52155 +bsa(dp52156 +g4 +g5 +(g6 +(I0 +tp52157 +g8 +tp52158 +Rp52159 +(I1 +(I7 +tp52160 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52161 +tp52162 +bsa(dp52163 +g4 +g5 +(g6 +(I0 +tp52164 +g8 +tp52165 +Rp52166 +(I1 +(I7 +tp52167 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52168 +tp52169 +bsa(dp52170 +g4 +g5 +(g6 +(I0 +tp52171 +g8 +tp52172 +Rp52173 +(I1 +(I7 +tp52174 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52175 +tp52176 +bsa(dp52177 +g4 +g5 +(g6 +(I0 +tp52178 +g8 +tp52179 +Rp52180 +(I1 +(I7 +tp52181 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52182 +tp52183 +bsa(dp52184 +g4 +g5 +(g6 +(I0 +tp52185 +g8 +tp52186 +Rp52187 +(I1 +(I7 +tp52188 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52189 +tp52190 +bsa(dp52191 +g4 +g5 +(g6 +(I0 +tp52192 +g8 +tp52193 +Rp52194 +(I1 +(I7 +tp52195 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52196 +tp52197 +bsa(dp52198 +g4 +g5 +(g6 +(I0 +tp52199 +g8 +tp52200 +Rp52201 +(I1 +(I7 +tp52202 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52203 +tp52204 +bsa(dp52205 +g4 +g5 +(g6 +(I0 +tp52206 +g8 +tp52207 +Rp52208 +(I1 +(I7 +tp52209 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52210 +tp52211 +bsa(dp52212 +g4 +g5 +(g6 +(I0 +tp52213 +g8 +tp52214 +Rp52215 +(I1 +(I7 +tp52216 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52217 +tp52218 +bsa(dp52219 +g4 +g5 +(g6 +(I0 +tp52220 +g8 +tp52221 +Rp52222 +(I1 +(I7 +tp52223 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52224 +tp52225 +bsa(dp52226 +g4 +g5 +(g6 +(I0 +tp52227 +g8 +tp52228 +Rp52229 +(I1 +(I7 +tp52230 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52231 +tp52232 +bsa(dp52233 +g4 +g5 +(g6 +(I0 +tp52234 +g8 +tp52235 +Rp52236 +(I1 +(I7 +tp52237 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52238 +tp52239 +bsa(dp52240 +g4 +g5 +(g6 +(I0 +tp52241 +g8 +tp52242 +Rp52243 +(I1 +(I7 +tp52244 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52245 +tp52246 +bsa(dp52247 +g4 +g5 +(g6 +(I0 +tp52248 +g8 +tp52249 +Rp52250 +(I1 +(I7 +tp52251 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52252 +tp52253 +bsa(dp52254 +g4 +g5 +(g6 +(I0 +tp52255 +g8 +tp52256 +Rp52257 +(I1 +(I7 +tp52258 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52259 +tp52260 +bsa(dp52261 +g4 +g5 +(g6 +(I0 +tp52262 +g8 +tp52263 +Rp52264 +(I1 +(I7 +tp52265 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52266 +tp52267 +bsa(dp52268 +g4 +g5 +(g6 +(I0 +tp52269 +g8 +tp52270 +Rp52271 +(I1 +(I7 +tp52272 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52273 +tp52274 +bsa(dp52275 +g4 +g5 +(g6 +(I0 +tp52276 +g8 +tp52277 +Rp52278 +(I1 +(I7 +tp52279 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52280 +tp52281 +bsa(dp52282 +g4 +g5 +(g6 +(I0 +tp52283 +g8 +tp52284 +Rp52285 +(I1 +(I7 +tp52286 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52287 +tp52288 +bsa(dp52289 +g4 +g5 +(g6 +(I0 +tp52290 +g8 +tp52291 +Rp52292 +(I1 +(I7 +tp52293 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52294 +tp52295 +bsa(dp52296 +g4 +g5 +(g6 +(I0 +tp52297 +g8 +tp52298 +Rp52299 +(I1 +(I7 +tp52300 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52301 +tp52302 +bsa(dp52303 +g4 +g5 +(g6 +(I0 +tp52304 +g8 +tp52305 +Rp52306 +(I1 +(I7 +tp52307 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52308 +tp52309 +bsa(dp52310 +g4 +g5 +(g6 +(I0 +tp52311 +g8 +tp52312 +Rp52313 +(I1 +(I7 +tp52314 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52315 +tp52316 +bsa(dp52317 +g4 +g5 +(g6 +(I0 +tp52318 +g8 +tp52319 +Rp52320 +(I1 +(I7 +tp52321 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52322 +tp52323 +bsa(dp52324 +g4 +g5 +(g6 +(I0 +tp52325 +g8 +tp52326 +Rp52327 +(I1 +(I7 +tp52328 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52329 +tp52330 +bsa(dp52331 +g4 +g5 +(g6 +(I0 +tp52332 +g8 +tp52333 +Rp52334 +(I1 +(I7 +tp52335 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52336 +tp52337 +bsa(dp52338 +g4 +g5 +(g6 +(I0 +tp52339 +g8 +tp52340 +Rp52341 +(I1 +(I7 +tp52342 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52343 +tp52344 +bsa(dp52345 +g4 +g5 +(g6 +(I0 +tp52346 +g8 +tp52347 +Rp52348 +(I1 +(I7 +tp52349 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52350 +tp52351 +bsa(dp52352 +g4 +g5 +(g6 +(I0 +tp52353 +g8 +tp52354 +Rp52355 +(I1 +(I7 +tp52356 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +p52357 +tp52358 +bsa(dp52359 +g4 +g5 +(g6 +(I0 +tp52360 +g8 +tp52361 +Rp52362 +(I1 +(I7 +tp52363 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00\x00' +p52364 +tp52365 +bsa(dp52366 +g4 +g5 +(g6 +(I0 +tp52367 +g8 +tp52368 +Rp52369 +(I1 +(I7 +tp52370 +g15 +I00 +S'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?' +p52371 +tp52372 +bsasS'texts' +p52373 +(lp52374 +VDuring the period of falling in love, each time that we met and especially when we had not met for a long time. +p52375 +aVWhen I was involved in a traffic accident. +p52376 +aVWhen I was driving home after several days of hard work, there was a motorist ahead of me who was driving at 50 km/hour and refused, despite his low speeed to let me overtake. +p52377 +aVWhen I lost the person who meant the most to me. +p52378 +aVThe time I knocked a deer down - the sight of the animal's injuries and helplessness. The realization that the animal was so badly hurt that it had to be put down, and when the animal screamed at the moment of death. +p52379 +aVWhen I did not speak the truth. +p52380 +aVWhen I caused problems for somebody because he could not keep the appointed time and this led to various consequences. +p52381 +aVWhen I got a letter offering me the Summer job that I had applied for. +p52382 +aVWhen I was going home alone one night in Paris and a man came up behind me and asked me if I was not afraid to be out alone so late at night. +p52383 +aVWhen I was talking to HIM at a party for the first time in a long while and a friend came and interrupted us and HE left. +p52384 +aVWhen my friends did not ask me to go to a New Year's party with them. +p52385 +aVWhen I saw all the very drunk kids (13-14 years old) in town on Walpurgis night. +p52386 +aVWhen I could not remember what to say about a presentation task at an accounts meeting. +p52387 +aVWhen my uncle and my neighbour came home under police escort. +p52388 +aV On days when I feel close to my partner and other friends. When I feel at peace with myself and also experience a close contact with people whom I regard greatly. +p52389 +aVEvery time I imagine that someone I love or I could contact a serious illness, even death. +p52390 +aVWhen I had been obviously unjustly treated and had no possibility of elucidating this. +p52391 +aVWhen I think about the short time that we live and relate it to the periods of my life when I think that I did not use this short time. +p52392 +aVAt a gathering I found myself involuntarily sitting next to two people who expressed opinions that I considered very low and discriminating. +p52393 +aVWhen I realized that I was directing the feelings of discontent with myself at my partner and this way was trying to put the blame on him instead of sorting out my own feeliings. +p52394 +aVI feel guilty when when I realize that I consider material things more important than caring for my relatives. I feel very self-centered. +p52395 +aVAfter my girlfriend had taken her exam we went to her parent's place. +p52396 +aVWhen, for the first time I realized the meaning of death. +p52397 +aVWhen a car is overtaking another and I am forced to drive off the road. +p52398 +aVWhen I recently thought about the hard work it takes to study, and how one wants to try something else. When I read a theoretical book in English that I did not understand. +p52399 +aVWhen I found a bristle in the liver paste tube. +p52400 +aVWhen I was tired and unmotivated, I shouted at my girlfriend and and brought up negative sides of her character which are actually not so important. +p52401 +aVWhen I think that I do not study enough. After the weekend I think that I should have been able to have accomplished something during that time. +p52402 +aVWhen I pass an examination which I did not think I did well. +p52403 +aVWhen one has arranged to meet someone and that person arrives late, in the meantime one starts thinking about all that could have gone wrong e.g a traffic accident. +p52404 +aVWhen one is unjustly accused of something one has not done. +p52405 +aVWhen one's studies seem hopelessly difficult and uninteresting. +p52406 +aVWhen one finds out that someone you know is not at all like one had thought, for instance friends who steal and things like that, quite unwarranted. +p52407 +aVWhen one has been unjust, stupid towards someone else. +p52408 +aVWhen one has neglected or been unjust to a good friend. +p52409 +aVPassing an exam I did not expect to pass. +p52410 +aVWhen I climbed up a tree to pick apples. The angle of the ladder I was on did not enable me to get high enough. This implied that the ladder was not very stable. +p52411 +aVFriends who torture animals. +p52412 +aV Same as in anger. +p52413 +aVFriends who torture animals. +p52414 +aV Same as above - friends who torture animals. +p52415 +aV When excuses are necessary and I get out of doing it myself. +p52416 +aVWhen I had my children. +p52417 +aVWhen my 2 year old son climbed up and sat on the 7th floor balcony with his legs hanging out. He was holding on tightly to the upper railing of the balcony but he could have easily lost his balance when he sat down. +p52418 +aVWhen my partner was attacked and lost three teeth. +p52419 +aVWhen I see children on T.V from areas devastated by drought and war. +p52420 +aVWhen I nearly walked on a blindworm and then saw it crawl away. +p52421 +aVWhen I saw my 18 year old son grab an oxygen mask as he had breathing difficulties. I had a bad conscience because I had not stopped smoking. Medication for the dilation of his breathing tubes also caused a sense of guilt in me. +p52422 +aVI experience a sense of guilt as my middle son cannot express himself like other children, neither verbally nor in writing. +p52423 +aVWhen my child was born. +p52424 +aVIt was winter/spring and the ice was melting. I was far out on a jetty and I poked the ice with a long branch to try and break it. The branch went through the ice and I fell in, the water closed in over my head. +p52425 +aVUnjust accusations directed at me and my way of acting, by someone close to me. +p52426 +aVFailing an examination. +p52427 +aVA drunkard fell, started bleeding and wet himself. Disgust that turned into sadness-unpleasantness. +p52428 +aVWhen, as an adult I have been caught lying or behaving badly. +p52429 +aVWhen I am in an environment or with a person much worse off than me, I realize how privileged I am. +p52430 +aVWhen I saw a person I had not seen for a long time. +p52431 +aVWhen, as a child, I was nearly knocked down by a car. +p52432 +aVWhen I heard on the radio that the football match in Belgium had ended in a catastrophe, and several people had died. I could not understand how normal people could behave in such a way. +p52433 +aVWhen I feel lonely, perhaps because I have to study a lot and I am shut up in my appartment. Nothing happens in particular because there is no time for anything else. +p52434 +aVWhen one learns through the mass media all the wars and killing going on in the world. +p52435 +aVI lied, to be precise I cancelled a meeting with a good friend. +p52436 +aVWhen one lets friends down +p52437 +aVWhen I was accepted for a course on finance and accounting. +p52438 +aVA bus drove over my right leg. The event itself was not very frightening but when I had to wait in the emergency ward for three hours and then my leg began to swell, I was frightened. +p52439 +aVAt my Summer job, nobody looked after me in particular and I had to learn all on my own. +p52440 +aVWhen I was not accepted as a student in finance and accounting. +p52441 +aVWhen I had just moved into my new appartment I found a ventilator in the kitchen. I was going to clean it when I found that the drum was full of mud and slime. I felt disgusted. +p52442 +aVMy elder brother and I have not always had a good relationship and I feel ashamed of myself as I do not call him to talk to him nowadays. +p52443 +aVAt my Summer job a new caretaker had been employed who was my age but I preferred going out for lunch with the accounts personnel rather than with him. +p52444 +aVPassed an exam by 2 points. +p52445 +aVIn a cottage in a large forest, I was alone for a while in the dark. +p52446 +aVWhen I spoke to Jan-Erik Wikstrm on the telephone. +p52447 +aVRailway station good-bye. +p52448 +aVI saw a cripple in rags with small children in Italy. He was probably an imposter. +p52449 +aVI told a friend that I was going to a party and he would not enjoy himself if he came along. He understood that he would not have fitted in and there was something in that. +p52450 +aVI was the reason behind the break-up of my friend's relationship with his girlfriend. She finished with him. +p52451 +aVI passed an exam that I was absolutely certain that I had failed. +p52452 +aVOn the way back from Denmark with a friend on a small yatch, there was a storm and my friend was blown overboard; I was very scared till I managed to get him back onboard. +p52453 +aVI locked myself out. +p52454 +aVI missed the last tram home and had to walk in the pouring rain. +p52455 +aVI found some worms in the food and I had obviously eaten some. +p52456 +aVMy friend was so intoxicated that the police came and took him away, and they later contacted his parents. +p52457 +aVI hapened to overhear something which I was not meant to hear. +p52458 +aVWhen I won a trip to Greece in a competition. +p52459 +aVWhen I am out in the dark and a suspicious looking character comes towards me. +p52460 +aVAt work, when an elderly man complained unjustifiably about me and distrusted me. +p52461 +aVWhen I had not understood anything after a lecture. +p52462 +aVWhen an alcoholic stood dribbling over a food counter. +p52463 +aVWhen my friend and I were discussing the good looks of a guy we realized that he had been listening. +p52464 +aVWhen I complained about a colleague to the manager and he told her that someone had complained; this colleague came to me believing that I liked her. +p52465 +aVAt a friend's birthday party with some of my closest friends. It was all very pleasant and one could say that I was happy to have such good friends. +p52466 +aVOn the way home one Friday night in the heavy rain the car acquaplanned. I lost contact with the road surface for a few seconds. +p52467 +aVMad at my dad. +p52468 +aVA case of unrequited love. +p52469 +aVA bad smelling cucumber. +p52470 +aVNearly caught masturbating. +p52471 +aVI do not help out enough at home. +p52472 +aVI felt very happy when I won the football pools. +p52473 +aVWhen I flew from Athens to Copenhagen after a holiday. The plane was caught in a storm and it began to shake and I thouhght that we were going to crash. +p52474 +aVWhen someone stole my bike. +p52475 +aVWhen I saw the list of books to read for an acccouting course, I thought "" Oh God how will I ever manaage it! +p52476 +aVIt was when I read a newspaper article on the future and they foresaw that we would be eating frog-burgers by the year 2000. An illustration showed a frog between two pieces of bread. +p52477 +aVWhen I dropped a bottle in the state liquor store and everyboby started laughing. +p52478 +aVWhen I was young - 14, I pinched from a store and was caught. The store then contacted my parents. +p52479 +aVWhen the whole family gets together for a one week holiday. Everybody feels free and the trip is well planned. It works out well and we enjoy ourselves. +p52480 +aVWhen I could not find my 2 year old daughter. I ran and looked for her everywhere and could not find her. (I finally found her, she had gone to bed to sleep) +p52481 +aVWhen friends try to put me down or hurt me. +p52482 +aVMarriage crises. Boredom. +p52483 +aVWhen someone makes advances that one does not want. +p52484 +aVThe discovery that one has only thought of oneself. +p52485 +aVWhen I spanked a child in anger and later regretted it terribly. +p52486 +aVWhen I passed the first examination that I had to repeat. +p52487 +aVWhen I drove to Stockholm for the first time and drove off the Stora Hissingen road at the wrong exit. +p52488 +aVWhen my boyfriend went away for a month long holiday without me. +p52489 +aVLast year when I worked during the Summer holidays and studied at the same time for an examination I had to repeat; my boyfriend went to Greece for a holiday for a month. +p52490 +aVWhen a dog is left whining outside a shop. +p52491 +aVWhen I promised to help a friend over a weekend and did not keep the promise. +p52492 +aVWhen I realized that I had three more examinations to take. +p52493 +aVThe day I was told that I had been accepted as a student of economics. +p52494 +aVWhile taking a short cut through the Vasa park, I was surrounded by three people who tried to steal my money. I was scared and was saved only by the appearance of other people. +p52495 +aVAt a restaurant I observed how the gypsies tried to get money by cheating the foreigners i.e non Swedish speaking. My anger had nothing to do with hatred against foreigners, but it was an expression of the anger I feel when I see people being used . +p52496 +aVAt the begining of a new course one is afraid of encountering problems one can not manage. Thoughts revolve around failing the subject and the consequences it would have for the future. +p52497 +aVWhile walking in town I noticed how the police harrassed a man who was under the influence of alcohol. They terrified him with the thought of arrest by driving close behind him on a pedestrian street. My disgust was directed at the gestures and the facial expressions of the policemen; they seemed to be enjoying themselves. +p52498 +aVWhen my boyfriend revealed that he knew that I had discovered things of an important nature about him, I felt ashamed as I had not mentioned it earlier. +p52499 +aVWhen I am dishonest to a friend to whom I am very close. I feel guilty because I know that he gives a different version of the truth and I have not corrected these mistakes, and he is aware that I know that they are wrong. +p52500 +aVWhen I found out that I had passed the last two exams by a margin of three marks. +p52501 +aVWhen my father was ill and was waiting for the results of his tests. +p52502 +aVWhen I got caught in the pouring rain last Thursday and did not have a raincoat on me. +p52503 +aVWhen I failed an exam. +p52504 +aVAt a Smrgasbord table, a man mixed differnet kinds of picked herrings with fruit salad. +p52505 +aVWhen I had not prepared my contribution to the group as thoroughly as the other members, with the result that the overall result was poor. +p52506 +aVWhen my father and I worked on the house just after he had recovered from illness, I was rather lazy. This meant that he had to work hard and was not very well later. +p52507 +aVWhen I gave birth to my son and saw that he was alive and that I had managed it well. He was born a month too early with a malfunctioning lung. This happened a year ago. +p52508 +aVWhen I found out that my father had lung cancer and they did not know how long he would live. +p52509 +aVWhen a colleague asked me for help at work, despite the fact that he had more time to do it than I had. +p52510 +aVWhen I did not get the salary increase that I had been expecting and understood how little one's work was appreciated. +p52511 +aVWhen I was weeding the garden I found a lizard in my hand. +p52512 +aVWhen I met a friend whom I had not seen for a long time and heard all about her troubles, I thought that I should have got in touch with her earlier. +p52513 +aVI got angry at my mother for something trivial. We were in a bad mood because my father was very ill and I knew that my mother really needed support. I had reacted wrongly. +p52514 +aVNew year's eve 1983/1984, I met my girlfriend. We stood on the steps outside her parents home and I kissed her for the first time. +p52515 +aVWhen I was stopped by plain clothes policemen because the car I was driving had overturned on the Avenue. I had been driving too fast, and I was afraid when I was stopped, questionned and then toild to go. The situation ended happily since there were no consequences. +p52516 +aVThe editor changed the heading of an article that I had written. He considered the heading to be derogatory towards the person I had written about. +p52517 +aVA close acquaintance of the family died of lung cancer. Although it was expected, I still felt depressed. +p52518 +aVWhen I saw a picture, in the Gothenburg Post, of a totally demolished car with two fatally injured passengers. The car was so badly damaged that they couldn't get the bodies out at the scene of the accident. +p52519 +aVOne night I had a sexual intercourse with another man. My sexual desire and my curiosity had made me jump into bed with him. I am ashamed of myself now. +p52520 +aVDue to laziness, I failed the term studies completely at University. I also wanted, to some extent, to protest against my parents' expectations. +p52521 +aVWhen I got the loan for my studies. +p52522 +aVI met intoxicated people with dubious intentions in a back alley one Wednesday night. +p52523 +aVOn the T.V I saw a news feature on South Africa. A policeman attacked a group of black people with a whip. +p52524 +aVThe thought of having to read a boring book of 400 pages in English. +p52525 +aVGrovelling people. +p52526 +aVMy inability to assert myself positively in a group. +p52527 +aVI experience feelings of guilt because I do not study enough. +p52528 +aVObserving someone in the cafeteria noisily gulping in his food, having extremely bad manners. +p52529 +aVI guess I have often been ashamed after having talked badly of other people. +p52530 +aVHaving been angry and unpleasant towards my parents. +p52531 +aVWhen my sister - after a history of one abortion and one stillbirth - gave birth to a perfectly healty boy. +p52532 +aVWhen my sister had the still born child, she was emotionally very deep down, and it took her a long time to recover. +p52533 +aVWe were starting a student project, and the teacher we talked to was very negative and not very helpful. +p52534 +aVWhen my boyfriend openly let me down, preferring another girl. +p52535 +aVI felt some disgust for my boyfriend for a time, after he had left me. +p52536 +aVBefore an accident, my aunt offered me the front seat of the car, next to the driver. I declined, she took that seat and was killed there when the car crashed. +p52537 +aVUnexpected visit by a close friend, whom I hadn't seen for half a year. +p52538 +aVI wandered by mistake into the safety zone of a shooting range, and was shot at. +p52539 +aVBeing treated unfairly. +p52540 +aVBreaking up with a girl. +p52541 +aVLittle contact with my father before he died. +p52542 +aVWhen I was accepted as a student at the college, not having thought it possible. +p52543 +aVWhen I was the first to arrive at the scene after an accident, and found that a close school friend had been killed. +p52544 +aVI was accused of having done something, which I hadn't and got very angry. +p52545 +aVWhen my grandmother died. +p52546 +aVA couple of years ago during the summer holiday, I was fishing at a lake with my husband. Suddenly it started raining while the sun was still shining. I experienced a feeling of joy, happiness and fulfillment. the whole nature was full of music. +p52547 +aVI was alone at home, in bed reading a womens' magazine in which there were storiees of paranormal experiences. My leg was itching and I stretched my hand to scratch and I felt another strange hand. (later I realized that it was the corner of the blanket) +p52548 +aVI went to a lecture and once again it had been cancelled, this was the second time. One had a negative attitude towards the lecturer. +p52549 +aVI heard that a former superior of mine had died, I was later at home home reading about it in the newspaper and I thought of our interaction and how it was no longer possible. The limited scope of human life is sad. +p52550 +aVIn the tram there was a fat, sickly looking woman in front of me who was asking for directions in a thick voice. When she got up to go a disgusting smell of urine came from her. I felt that I would choke. +p52551 +aVWhen we were at home, my husband and I, he made a remark about something I had done, in a perfectly friendly manner. My deed had been unjust and I knew that my husband was right, therefore my sense of shame. +p52552 +aVI made a remark to my sister concerning her attitude to men, the way she talked and I compared her to an acquaintance of mine. Later, the same evening, my sister looked sad. I felt guilty about her sadness. +p52553 +aVI had a summer job in Sweden, and my boyfriend came to meet me on my birthday. +p52554 +aVI went to practice in Sweden during summer, and I was afraid that I would not do well. +p52555 +aVIn the holiday cottage of our association, two of my pals came to wake me up early one morning by bringing a radio played at the highest volume into my room - it was the morning service at its loudest. +p52556 +aVMy grandmother died suddenly last summer. +p52557 +aVMy superior at the summer job swindled customers as much as he could, and once put me in a difficult situation after which I could not but detest him. +p52558 +aVOnce I arrived two hours late to my work place (a bank) and I was still feeling feeble and tired. +p52559 +aVOur association had Polish visitors and when they were going back by boat I did not go to see them off (I am the chairman of the association). +p52560 +aVI was told quite unexpectedly that one wanted me to become the vice-chairman of our student organisation. I was really surprised and joy was the first emotion I felt, though behind it there was worry - how shall I succeed ? +p52561 +aVOur tutorial group was soon to be divided, and we got a list of names of freshmen, out of which five were to be in my group. We read the names and then each group went its own way to a seminar room. I wondered how I would cope with the new situation and if I would succeed as a group leader. +p52562 +aVWe were in a disco and the evening was not at all pleasant. Despite my not knowing why, I was angry with my companion. I let him feel my bad humour as I cannot hide my feelings. +p52563 +aVMy grandmother died, and my mother called me one sunday morning in the Autumn. The way my mother told me about it, I hated her at that moment. She sounded as if she had been waiting for the death of my grandmother. I had lost a person close to me. I felt guilty too as I had been bad to my grandmother of late. I had not remained calm when she no longer understood everything so well. +p52564 +aVAt the underground station, a drunkard came to speak to me. He tried to ask me something but I did not answer so he began to speak about me with his companion. I detested this dirty growling man. +p52565 +aVI was worried by a task related to my studies which had to be done in groups of two. I was talking about it to my friends when I said something negative, in too abrupt a manner, concerning my work partner. I did not quite mean what I said and I felt ashamed at having been mean enough to criticize him as he is also a friend of mine. +p52566 +aVI had told my boyfriend that I did not want to go on with our relationship. I knew that I was important to him but I wanted to be free. I saw that this was difficult for him but I remained firm and did not change my mind. +p52567 +aVLast night I had a chat with a fellow student. I had known her for about half a year, and for the first time we were speaking ""the same language""- meaning an inspiring discussion and encounter. +p52568 +aV I sometimes quarrel with my mother because she blames me, though I have not in any way been connected to some events. +p52569 +aVAfter hearing about the death of my grandfather. First I could not believe it, but later I wept and felt the situation was hopeless. I felt lonely and wanted to be consolated. +p52570 +aVIn the evening, while I was watching TV, my little brother came in and started eating food he had brought from the kitchen while I was trying to concentrate on the program. +p52571 +aVMy little brother was arrested by the police at the railway station after he had drunk some beer. +p52572 +aVAt my temporary job, I have to restrict others' actions and make them obey me, and this very often gives me a feeling of guilt. I wish there could be some other way of acting. +p52573 +aVI met a dear friend of mine after a long time. I expressed my feelings in our own usual way, by mutual scolding and abusing (with complete understanding) and by touching, patting and taking the hand of the other person, etc... +p52574 +aVI felt fear of the purest kind after a car accident. The incident and images of horror kept coming back to my mind. I wondered what could have happened to my sister, my friend and me, though nothing very serious actually happened. +p52575 +aVTwo boys whom I know were telling me, in an indecent manner, how they had teased a young and shy girl I know. They had despised her conviction, scorned and touched her. I got very angry and did not try to conceal it and gave it back to them. +p52576 +aVMy sweetheart left me, or rather we decided to break it off by mutual consent. The consequences were - unrestrained weeping, feelings of loneliness, hopelessness and disconsolation. I felt that I should find a friend, to talk to joyfully and to forget. +p52577 +aVOut of sheer curiosity, I went to see a pornographic movie in Copenhagen. The room was full of men, who panted and masturbated. Very disgusting. +p52578 +aVAfter having quarelled unnecessarily and without any reason, and having been stupidly cross in every way. +p52579 +aVForced to fill in a questionnaire. +p52580 +aVWhen I won a tennis match. +p52581 +aVWhen my dog ran out on thin ice last spring. +p52582 +aVWhen my tennis match was interrupted because a kid cycled right into the court. +p52583 +aVCelebrations on the graduation day with the orchestra playing in the garden ( I am a part of this orchestra). +p52584 +aVRisk of being involved in a fight after a party. +p52585 +aVI had a very heavy work load and two colleagues, whom I have nothing against, disturbed me by ""terror ringing"", i.e continously interrupting me by telephoning. +p52586 +aVAfter an exam which I failed. +p52587 +aVWhen I overtook a car on the mainroad, misjudging the distance of an oncoming car and this resulted in tooting and flashing from the other driver (we could have collided), and I had an acquaintance in the car with me. +p52588 +aVI saw a neighbour, from the same appartment block as me, lying on the road. He could have been injured or ill. I kept 20 metres away and did not go to help him. +p52589 +aVWhen I met an old schhol friend (school love) who works in Sk+vde. +p52590 +aVWhen I was cycling to school, I nearly got knocked down by a car which (overtook me too closely) did not give me any swerving space. +p52591 +aVWhen I was deputy manager during the Summer, certain deputies took liberties, more than what was normal. +p52592 +aVWhen I realized that my girlfriend, whom I like, and I were going to separate. +p52593 +aVDog dirt which thaws in the spring. +p52594 +aVWhen I forgot my mother's birthday. +p52595 +aVPassed the last exam. +p52596 +aVWas nearly knocked down by a car. +p52597 +aVI reached the bus stop and realized that I had forgotten my bus pass. +p52598 +aVMy current work load is too much. The feeling comes back from time to time. +p52599 +aVWhen my one year old son gives me a spontaneous kiss. +p52600 +aVWhen someone close to me is travelling by car and is delayed. +p52601 +aVWhen someone does something wrong which affects me negatively. +p52602 +aVWhen I think about my parents getting old. +p52603 +aVI do not have the time for other people's problems. My mother-in-law is sometimes depressed and I do not have the time, the desire or the strength to help. +p52604 +aVAn ex-colleague asked me if I was interested in working in their accounts bureau. They needed ""clever people"" and he had ""immediately thought of me. +p52605 +aVI was driving and a deer suddenly appeared in front of the car when there was a lot of traffic behind me. +p52606 +aVI saw a report on T.V news on apartheid in South Africa. +p52607 +aVWhen my girlfriend became pregnant. +p52608 +aVWhen I nearly collided with another car. +p52609 +aVThe time when someone let the air out of the tyres of my cycle. +p52610 +aVWhen I read a lot and did not remember anything. +p52611 +aVThe time that I had to put my dog to sleep. +p52612 +aVLong illness. +p52613 +aVWhen I passed an exam. +p52614 +aVWhen I was travelling by tram, I tripped and fell against the door. I thought that I was going to fall out. +p52615 +aVWhen I missed the tram after having run for it. +p52616 +aVThe inability to read a book at college. +p52617 +aVIf a guy one is not interested in makes advances. +p52618 +aVI drink wine too often. +p52619 +aVI do not study enough as I do not understand it properly. +p52620 +aVI worked at a lawyer's office during Summer and I got a very good reference from him. +p52621 +aVI had been watching a triller a dark night in the country and I had to go the outside toilet on my own. +p52622 +aVWhen I am accused of something I have not done, I get unbelievably angry. +p52623 +aVWhen I began to read a thick book, which I had a limited time to read. Also when I have a lot of work to do and I cannot keep up. +p52624 +aVSomeone vomited on the street. +p52625 +aVI can not think of any incident when I have felt very ashamed. There are small incidents that I am ashamed of, for instance, not sending money to the children in Ethiopia. +p52626 +aVI had lunch with my ex-boyfriend and did not mention it to my fiancee. I felt guilty despite the fact that I felt nothing for my ex-boyfriend. +p52627 +aVWhen I was finally qualified for my profession. +p52628 +aVSomeone attacked me with a knife. +p52629 +aVSomeone drove into my car and then denied that it had happened. +p52630 +aVWhen I was told that my friend's wife had cancer. +p52631 +aVWhen I saw a dog which had been knocked down by a car. +p52632 +aVWhen I boxed my child's ears. +p52633 +aVWhen I was fined for speeding. +p52634 +aVI stopped working (had a boring job). +p52635 +aVI was going home by car late one night when it was cold, dark and windy. I became rather panicky on the way to my house. +p52636 +aVQuarrel in the family. +p52637 +aVWhen I am alone in a room with no contact with anyone - loneliness drains me. +p52638 +aVWhen I was on holiday someone vomited in front of me. +p52639 +aVEmptied a bucket of water in a hospital. +p52640 +aVWhen I feigned sick leave from work. +p52641 +aVWhen I get a hug from someone I love. +p52642 +aVI was driving very fast on a small road and I met an oncoming car in a right handed bend. The other driver was on his own side of the road and I had to skid out of it to avoid a collision. It was dark. +p52643 +aVMy car had been towed away by the traffic police because it had been wrongly parked. However the sign had been put up only after I had already parked. +p52644 +aVAfter an operation I had to stay in bed for a long time. +p52645 +aVI was forced to stay in the canteen and eat the food that I had not asked for but got it anyway. +p52646 +aVWhen I did not buy what I had promised to. +p52647 +aVBy mistake I took a book from the library which was not supposed to be loaned out. +p52648 +aVWhen I won an unexpected sum of money. +p52649 +aVMy 2 year old daughter disappeared in a moment of inattention; I was responsible for her. +p52650 +aVA colleague asked me for some advice and as he did not have enough confidence in me he asked a third person. +p52651 +aVI wanted to be pregnant and did not succeed, so I was depressed at every menstruation. +p52652 +aVIn a warm bus full of people, someone vomited and the whole bus stank. +p52653 +aVI complained about a colleague's behaviour as she goes back on her word, is often absent and is irresponsible. I found out that she was an alcoholic and was trying to fight againt her addiction. +p52654 +aVI spoke to my mother on the phone. She had skin cancer and was waiting to be operated. I forgot to ask her the date of the operation and just before finishing our conversation she gave me the date in passing. +p52655 +aVWhen I was at a party I met an old friend from an adult education course. We had not met for 2 years but had both thought a lot about each other. A wonderful experience. +p52656 +aVWhen I was cycling through the park late one night, two people jumped out of the woods and tried to stop me. There were shouting something at the same time. +p52657 +aVWhen close relatives tried to dissuade me from studying Psychology because of its low status. +p52658 +aVI had a long discussion on politics with an acquaintance. He was more knowledgeable than me and I failed to explain my point of view and was misunderstood so I felt depressed and left. +p52659 +aVWhen I read a newspaper article on a young girl who had been raped and assaulted one night by several men when she was unconscious. +p52660 +aVMy mother revealed personal details about me and the negative aspects of my character to other people when I was present but unable to defend myself. +p52661 +aVI was unfaithful to my partner once when he was working abroad for a long period. +p52662 +aVWhen I recently got an appartment in central Gottenburg. +p52663 +aVWhen I saw a large spider crawling up the wall. +p52664 +aVMy employer took too many aspirins for a bad back and also drank an enormous amount of spirit. This was dangerous and he did not understand that he had done anything wrong. +p52665 +aVWhen I left New York, and all my family and my friends behind me. +p52666 +aVWhen I slept with a guy because my best friend wanted me to. He had never had intercourse with anyone and had a terrible complex about it. +p52667 +aVWhen I dated a close girlfriend's boyfriend a few times. He told me that it was over between them and I accepted it. When she found out she finished our friendship. +p52668 +aVWhen I broke off with my boyfriend after three years. It was quite unexpected for him and there was no particular reason for the break up, such as someone else. +p52669 +aVWhen my son returned from mountaineering - healthy in body and soul. +p52670 +aVWhen one meets new people with whom one is forced to collaborate with. +p52671 +aVThe sports fishermen who catch gulls instead of fish with their hooks. It is often a mistake but it makes me angry. +p52672 +aVI feel sad about an event I can not influence. +p52673 +aVWhen a member of the family complains about the food that is served, it disgusts me. +p52674 +aVI have chosen to put my son in a private school were the examination marks are low. Every time that he gives me his term results I am left with a sense of guilt. +p52675 +aVWhen I was informed that I had been accepted as a student of Psychology. +p52676 +aVWhen I was in a little fishing boat and we ran into hard weather in the open sea. +p52677 +aVWhen I found out that the guy I was dating at a particular time had a steady relationship going on with someone else for a long time. +p52678 +aVI felt sad and depressed when I heard that our cat had died. +p52679 +aVWhen I was working as a nurse in a mental hospital, a patient ate up the contents of another patient's spitoon. +p52680 +aVAt primary school, when I vomited in front of others in the middle of a lesson. +p52681 +aVI arrived an hour late for an important meeting ( I had misunderstood the time). +p52682 +aVWhen I was acceptted as a student of psychology. +p52683 +aVWhen my son has a pain in his leg (for no apparent reason). +p52684 +aVWhen, after a week at school, a teacher sent a note home saying that my son was inattentive and unable to do his lessons. +p52685 +aVWhen I thought that it was going to be impossible for me to start studying (due to wrong information from the student advisor). +p52686 +aVAt a certain person's lack of cleanliness, at home and personally. +p52687 +aVWhen I made the same mistake that I had accused someone else of, and this was obvious to a third pereson. +p52688 +aVWhen I lost something that was valuable to my sister. +p52689 +aVWhen my son was born. +p52690 +aVWhen I nearly drowned in icy water wearing ice skates. It was difficult to get out. +p52691 +aVWhen I was pointed out as a problem child in primary school and my mother took the teacher's point of view. +p52692 +aVWhen I was accused of neglecting work for the wrong reasons. +p52693 +aVMy parents attitude towards each other when they should become reconciled, despite my father's long-time addiction. +p52694 +aVWhen I was caught stealing money from my father. +p52695 +aVI stole a coconut cake from a reception table and when I put in my mouth I realized that the host was watching me. +p52696 +aVWhen after 10 months of national service I was ""downgraded"" and did not have to do the remaining 5 months. +p52697 +aVWhen I was reprimanded by the manager of the hotel where I worked during Autumn 1984. +p52698 +aVWhen my parents drove me to a nearby place and went home immediately instead of waiting a few hours. They could have easily waited. +p52699 +aVWhen my ex-girlfriend and I discovered that there was a certain risk of her being pregnant. +p52700 +aVWhen I was about to clean the draining board and saw it looked underneath the sink (I live in a students hostel). +p52701 +aVWhen my mother caught me masturbating. +p52702 +aVAs the only person in my family into academics, I ought to have looked after my younger (and only) sister better, with respect to her education and life experiences. +p52703 +aVWhen my older sister told us that she was thinking of joining the rest of the family for the winter sports holiday. +p52704 +aVSlept in a chapel and in the middle of the night I realized that there was someeone else in the chapel. I never discovered who it was and why he was there. +p52705 +aVWhen we were in high school a few guys sometimes provoked a friend of mine. They called her a pig and then grunted. This irritated most of the girls. Once, one of the girls got angry at my friend and said something nasty and this made me terribly angry. +p52706 +aVI talked to my boyfriend on the phone when I was in high spirits and had a lot to tell him. I had been looking forward to this conversation and he did not listen to me to the extent that I had anticipated. +p52707 +aVA mother who shouts at her child for nothing. +p52708 +aVWhen I complained to my mother about how untidy the kitchen loooked, she boxed my ears ( this had never happened before). +p52709 +aVAs I could not be home before midnight I called home at 11.30 and asked them to leave the door open so that I could get in. I actually woke up the whole family by calling them so late. My mother could not go back to sleep, besides she had a conference the next day and really needed to sleep. +p52710 +aVWhen I got through the first day here at the department. +p52711 +aVWhen I was cycling past a parked car someone opened the door and nearly pushed me off my bike and into the traffic. +p52712 +aVWhen my boyfriend sat up half the night playing computer games with a friend. +p52713 +aVWhen I had to leave my mother and my sister after a week's visit. +p52714 +aVWhen I saw a big spider from very close. +p52715 +aVWhen I asked a friend to return the money that I had loaned her and then remembered that she had repayed me in several ways. +p52716 +aVWhen one of my parents insinuates something about the other (they are divorced). +p52717 +aVWhen i was asked to be a child's godmother. +p52718 +aVOn the way down a ski slope which was difficult and steep. +p52719 +aVWhen my mother interfered in my life. +p52720 +aVWhen I was left alone one week-end without being prepared for it. +p52721 +aVThe first time that I saw a surgeon cut off a leg and put it in a black rubbish bag. +p52722 +aVWhen I forgot about a meeting at work. +p52723 +aVWhen I demand too much from my friends. +p52724 +aVWhen my husband suddenly came to see me at my new job and brought some flowers and cake with him. +p52725 +aVWhen I was nearly attackad by a man who had been chasing me. +p52726 +aVWhen my father asked me if I was a communist, at the same time he made it clear that I should no longer see myself as his daughter. +p52727 +aVWhen I applied for a job which I thought I had a good chance of getting, I was not even granted an interview and did not get the job. +p52728 +aVT.V features showing the violation of defenceless people. +p52729 +aVWhen I as a child of 9 or 10 I was playing doctor with the neighbours boys their mother caught us. +p52730 +aVWhen my husband talked about the restrictions he will have to accept in his life to make our marriage work. I felt that it was directed at me as it was me who had demanded the changes. We were with a marriage counsellor then. +p52731 +aVWhen we were able to afford a new sofa - a leather one which cost SEK 20000. I had waited for it for 2-3 years. +p52732 +aVVertigo - standing on a ladder and painting the house. +p52733 +aVWhen my boss enrolled in a course to satisfy his own ends - to trample on his associates. I have the misfortune to have one of my superiors in my course. +p52734 +aVWhen I argue with my mother about the way she treats her two children differently. +p52735 +aVSpit and vomit. +p52736 +aVSpots on the seat covers of my husband's car. +p52737 +aVNot speaking to my sister-in-law due to lack of interest in a relationship on my side. +p52738 +aVWhen I recently managed to get my first consulting assignment ""myself"" i.e on my own initiative. +p52739 +aVI was within a hair's breadth of knocking down a drunkard who suddenly ran into the street. The fear came later when I realized what could have happened. +p52740 +aVWhen my friend, as usual, forgot the tickets at home for a performance. We missed it. +p52741 +aVThe elections of 1982 and 1985. The thought of what a social democrat and communist majority could achieve, especially ""worker share"" funds and its extension. +p52742 +aVA study visit to a chicken factory : the butchery, the smell, the environment and the noise. +p52743 +aVConfession to my parents about my involvement in a moped theft. +p52744 +aVWhen I was appointed to position of trust in a group set up to change the working environment. +p52745 +aVI was alone in a cottage I often stay in. I was woken up by a rustling sound in the middle of the night. +p52746 +aVWhen I tried to explain to a plumber, face to face, that the toilet was broken and he did not believe it (it had been mended ten times). +p52747 +aVWhen the result of a project work was treated nonchalantly intead of being criticized by the teacher. +p52748 +aVWhen programmes on violence or pornography are shown on T.V. +p52749 +aVWhen I talked maliciously about a colleague at work to someone else. Immediately afterwards I felt ashamed. +p52750 +aVWhen I decided to take a week s holiday without consulting the family first. +p52751 +aVAfter my girl and I talked things over our relationship changed and became positive. A diificult time turned into pleasant one. +p52752 +aVWhen we could not land our plane and we knew that the fuel was running out. Bad weather had already frightened us. +p52753 +aVWhen I read about Reagan's tactical decision concerning the South African boycott. +p52754 +aVWhen my half brother became seriously ill with cancer and died later. +p52755 +aVA film were a woman was attacked and raped. One did not see the worst but it had the desired effect - very strong. +p52756 +aVI made a comment and it was interpreted completely differently from what I had meant. When I said it I realized how my mother had understood it. +p52757 +aVI had promised to visit my girlfriend but for different reasons could not make it. I rang up later to tell her that I could not come. +p52758 +aVWhen I was offered a high position of trust, which I later accepted. +p52759 +aVI had the window open and the door was shut so that the kitten would not go out. My partner came in and started talking about something and I forgot about the window and suddenly I saw the kitten hanging from the window frame. I was rigid with fright till I got hold of her. +p52760 +aVSome noisy guests arrived at the hotel. I had been slightly irritated earlier. At night when I was trying to sleep they were having a party so I went and yelled at them. I wanted to sleep as I had to get up early the next day. +p52761 +aVWhen I was told that I had not been successful in getting the job I had been expecting. I was sure that I was sufficiently qualified. +p52762 +aVWhen my cat vomited and a worm came out which was still alive. I was forced to wipe it up. +p52763 +aVWhen I was a child it was found out that I had taken off my clothes outdoors. It was summer and my friend and I were out in the woods. It had felt exciting at that time. My parents discovered that my trousers were back to front and I felt ashamed. +p52764 +aV Cycling in the spring sunshine gives me such delight. Happiness is to be healthy, my wonderful finance. Simply being here on earth. +p52765 +aVWhen my relationship with my family is very poor I often fear being excluded from the group, a fear which is stronger in situations when an argument is on hand. +p52766 +aVRecently when my sister, who is four years younger than me and very spoiled, shouted at my mother for no apparent reason . The heart-broken expression on my mother's face made me feel very angry. +p52767 +aVWhen I watched the T.V programme called ""The living planet"" and saw the far reaching environmental destruction caused by man. +p52768 +aVDisgust is a feeling that I have never experienced with peoplie but , on the other hand, it has been with repulsive animals, i;e snakes on T.V. +p52769 +aVWhen relatives have acted strangely, and unfriendly towards me. +p52770 +aVWhen ,due to hunger and tiredness, I became generally irritated with my fiancee and made cutting remarks which really hurt him. Later I realized that my unfounded irritation had hurt the person I love most on earth. +p52771 +aVOn a boat trip to Denmark, 14 of us had a lot of fun and we spent SEK 10 each on one armed bandits and against all odds we won the jackpot of SEK 1000. +p52772 +aVA rainy day, I was cycling downhill and a car door suddenly opened and while trying to avoid it the back wheels of my bike got caught in the tram tracks. I somersaulted but had no injuries. +p52773 +aVOn the way home from Marstrand I was driving behind my father's car. Another car tried to push in front of my father and he was forced to swerve and he thus collided the car with a pillar. The other car drove off without even seeing what had happened. +p52774 +aVMy girlfriend who had spent 6 months abroad broke off our relationship by letter. +p52775 +aVAt the police centre a man between 40-50 was brought in. He was very drunk and in all likelihood had not slept indoors for a long time and had relieved himself in his trousers. +p52776 +aVA customer at the shop where I worked came in and asked if the goods that he had ordered had arrived. I had totally forgotten about this order and I tried to offer weak excuses. +p52777 +aVI was 4-5 years old when I hid the bicycle keys of a not very good friend. After a few hours I pretended that I had found it. +p52778 +aVWhen I was at the end-of-term party last week and had fun - was happy and sang and drank only soft drinks. It is possible to have a good time without alcohol. +p52779 +aVLast Summer I was walking along the beach in a bikini and an awful man came cycling after me. He was shouting and I ran as fast as my legs could carry me. +p52780 +aVIn a course I thought that I deserved good marks but I only got ordinary marks with no justification as to why I was given these marks. +p52781 +aVWhen I crashed my car and it had to be scrapped then. It was my fault and I feel depressed as I miss the car. +p52782 +aVI had some sort of a stomach virus last week and I vomited in college in the morning, then in the cake shop, three times during the trip home and again when I got home. +p52783 +aVWhen I was an evening school teacher it was my job to make the coffee but I was not able to get the coffee ready on time and I thus arrived half an hour late to the class. On top of this the coffee was undrinkable. +p52784 +aVMany years ago a friend wanted me to with her to southern Europe and I preferred to travel alone. I felt guilty because I wanted to go on my own. +p52785 +aVWhen I felt that my love was returned. +p52786 +aVWhen I was convinced that someonne had broken into my flat and I woke up and heard sounds that frightened me. +p52787 +aVWhen it became clear that a man had used many people sexually and psychologically, despite the fact that many people looked up to him. I understood that one could not trust him and I was forced to hide this for a while. +p52788 +aVWhen I feel helpless after having tried to help someone without any result. +p52789 +aVWhen I think now about the way my father behaved when filing a divorce. +p52790 +aVWhen as an 8 year old, I wet myself in school. +p52791 +aVWhen as a 7 year old, I stole money from my mother. +p52792 +aVWhen I recently got a very positive answer from a clinic telling me that they would willingly assist and collect data for me for a clinical pilot study. +p52793 +aVEvery time I meet a certain dog that has once bitten me. +p52794 +aVWhen after a lot of provocation my child threw a plate on the floor. +p52795 +aVWhen I realized that I could not communicate properly with my closest friend. +p52796 +aVWhen I tried to explain to my child as to why there were magazines wiith naked girls on them at the kiosk. +p52797 +aVWhen I stole a packet of cigarettes from a neighbour and the next day I owned up and returned it. +p52798 +aVWhen I was forced to decline the invitation to my mother's 70th birthday because of my work committments in another area. +p52799 +aVWhen I began dansing, the teacher came and told me that I was very good and would soon get into the ballet academy. +p52800 +aVA late Saturday night I found myself locked in the central underground station of Stockholm with a group of 50 hard rockers who were drunk and equipped with various kinds of chains, etc. +p52801 +aVWhen I was forced to call the telephone company about a bill concerning a disconnected phone belonging to my landlord. The bill was four months overdue and in the meanwhile he had been using my phone, he seemed to have no intention of having his own phone reconnected. +p52802 +aVWhenever I read or think about the way people treat animals and nature. +p52803 +aVWhen I saw a T.V programme on animals in the film world (mistreated and used). +p52804 +aVWhen I was 13 years old I wrote passionate love letters to my boyfriend and I later found out that his sister had read them. +p52805 +aVWhen I ""hated"" one of mmy flatmates who was nice to me. +p52806 +aVWhen my 6 month old son is happy and well. +p52807 +aVA four year girl ran away from her father straight in front of my car. I was forced to use the emergency brakes. +p52808 +aV After an examine I had been satisfied with. +p52809 +aVWhen a colleague failed to contact me at the arranged time. +p52810 +aVWhen I read racist slogans on the walls. +p52811 +aVAbout Sweden's arms exports. +p52812 +aVNot doing something I had promised. +p52813 +aVWhen I gave birth to a healthy boy. +p52814 +aVWhen my husband and I spent a night by ourselves in a house which was in an area on the outskirts of a large town with which we were not familiar. We heard strange noises outside the house and the house had glass walls so the whole thing was even more frightening. +p52815 +aVJealous of my husband's old girlfriend. We met her with her husband and there was a lot of reminiscing. +p52816 +aVWhen my daughter had problems with her friends and I could see her predicament from the window. She was given a the cold shoulder. +p52817 +aVWhen I was an auxiliary nurse at the hospital and I had to change the nappies, for the first time, of a very old and sick woman. +p52818 +aVWhen friends found out that I had been lying about where I had been on a particular occasion. +p52819 +aVWhen my middle child became very difficult to handle after the birth of his baby brother and I did not have any patience with him. +p52820 +aVWhen my husband and I decided to take a few days holiday after a particularly trying period. +p52821 +aVBefore a hospital visit prior to a D&C under anasthesia for an expected miscarriage. +p52822 +aVExchange of points of view with my sister on a family matter. +p52823 +aVTreatment to become pregnant with a negative result. +p52824 +aVWhen I woke up one morning and went to the kitchen I discovered that our dog had diarrhoea. There were small ""piles"" all over the floor and the smell was choking. +p52825 +aVWhen I was young, about 6 or 7, I did not make it to the toilet on time. I hid the dirty trousers in the cellar as I feared itbeing discovered by my parents. +p52826 +aVAt work a boy was injured because of my lack of supervision. +p52827 +aVWhen I gave birth to a child and saw that it was normal when it was put against my breast. +p52828 +aVDuring labour when the foetal sounds became faint and there was a big alert for a forceps delivery. +p52829 +aVAt a cash desk where I had gone to buy 16 rolls of kitchen paper at a reduced price. After queuing with screaming children; it turned out that I had taken two 8 roll packets instead of the one 16 roll packet to which the rebate applied. The assistant said ""You will have to get it another time. +p52830 +aVWhen I first heard that Tage Dannielsson had died. +p52831 +aVThe lift of Stockholm central station stank of vomit and urine. +p52832 +aVOn the train a drunk person touched my baby and I reacted very disapprovingly. I felt ashamed later as the person had not been aggressive though he could have been. +p52833 +aVI get irritated with my son when he screams or is sick all over his clean clothes. +p52834 +aVThe high school entrance exam. +p52835 +aVA gang of screaming and drunk youths ""captured"" a tram. +p52836 +aVAn unjust refree decision at a sports event when I was the team leader. +p52837 +aVWhen my girlfriend left me. +p52838 +aVI was dominated by a certain person and even though I knew it I could not change my own reactions. +p52839 +aVWhen I was given detention at secondary school. +p52840 +aVWhen I splashed a child by not slowing down while driving through a puddle of water. +p52841 +aVYesterday, when the final whistle blew at the final match between OIS and IFK and it was certain that OIS had won the Swedish title. +p52842 +aVI was teaching someone to drive and when we were about to crash I was scared. +p52843 +aVWhen my dad gives priority to my kid brother's band and his other activities. We both play in different bands and rehearse in my parents garage. +p52844 +aVA friend unjustly put the blame on me to relieve his conscience and also spread lies for the same purpose. +p52845 +aVMy behaviour at a recent party. I passed out early, luckily. +p52846 +aVWhen I was face to face with my deceived friend after sleeping with his wife. +p52847 +aVWhen I dived among sharks and the brightly coloured fish on the outer reef of Tvavni, Fidgi. +p52848 +aVWhen I missed crashing, by a hair's breadth, into a man who came out 20 metres ahead of me when I was driving at 110km/h. +p52849 +aVWhen I told off a computer teacher who did not want to teach me beacause of prejudice. +p52850 +aVWhen I could not do anything because of a bad back. +p52851 +aVWhen I discovered that the house we had hired in Tonga was full of cockroaches. +p52852 +aVWhen I excreted on the mat instead of the potty. +p52853 +aVWhen I pulled a chair from under someone at kindergarten and he hit his head. +p52854 +aVWhen I passed the driving test three weeks ago and got my licence. +p52855 +aVWhen the car I was driving skidded on an icy road and landed in a ditch with one side against a rock. +p52856 +aVWhen I met friends I had not seen for the last 2-4 years. +p52857 +aVWhen a guy chased me when I was out jogging. +p52858 +aVWhen the morning newspaper has not arrived. +p52859 +aVI feel unbelievably happy about the relationship between my boyfriend and me, it is a reoccurring feeling. +p52860 +aVA reoccurring fear that something will happen to my relatives. +p52861 +aVWhen I argue with my boyfriend, I feel as though he feels superior to me. +p52862 +aVWhen I failed an exam last Summer. I had worked very hard for it and I was very disappointed thinking that it was hopeless to continue at college. I did overreact. +p52863 +aVWhen I argue with my sister. It feels sometimes that I have the upper hand and I use it. I often argue better and this makes her terribly angry. +p52864 +aVI was very happy when I got an attractive Summer job. +p52865 +aVThe birth of my child. +p52866 +aVWhen I have to leave the baby in the carriage and go shopping, I fear that something will happen to the baby. +p52867 +aVWhen during Winter the water pipes froze and we did not have any water for two days. +p52868 +aVI did not quite succeed in breast feeding my baby. +p52869 +aV The smell of garlic in rush-hour bus. +p52870 +aVI fell on the ground while crossing the street. My cap covered my eyes and I felt quite ""difficult"". +p52871 +aVI have a two-month old baby. When I came here, to the university, to attend lectures, I had to leave the baby with his father. I felt guilty. +p52872 +aVDuring the Christmas holidays, I met some of my old friends, after not having seen them for six months. +p52873 +aVWe were driving a car of a friend of mine when we turned in the wrong direction towards an unknown district, and nearly drove down a precipice. +p52874 +aVWhen our religion teacher presented shocking sectarian thoughts and doom's day as official teaching. +p52875 +aVMy grandfather died, when I was an exchange student in the USA. +p52876 +aVI happened to see the video-tape movie ""This is America - Part one"" at my friend's place. +p52877 +aVI insulted a couple of good friends of mine and even tried to hit them when I was drunk. The next day, I was ashamed of course. +p52878 +aVI stole carrots and got caught. I had to apologize to the owner. +p52879 +aVIn the underground's escalator, a youngish bum asked me for money. Although I did not give him anything, the fellow told me that I was really good-looking. A man who was in front of me also turned to look at me. +p52880 +aVI was afraid of moving away from home and moving to Helsinki for my studies. +p52881 +aVIn the student kitchen that we share, somebody drank from my juice pot (one litre) so that I only got one glass out of the whole pot. +p52882 +aVMy father gave money to my brother but not to me. +p52883 +aVDuring the week-end at home, my mother fries greasy and unhealthy meat dishes which make me feel sick. +p52884 +aVI was wearing slippery shoes and I tumbled down in a place where there were many people walking by. +p52885 +aVI ate a Runeberg's cake, though I knew that I would immediately put on a kilo. +p52886 +aVAt about nine p.m., I went home by bike on a dark cycle-track; because of lack of time I had to take the short-cut. +p52887 +aVOnce I had to go home on foot at 5 a.m. I had to pass through a forest and I was going alone. +p52888 +aVI missed the train and had to wait for the next for two hours. For this reason I missed an appointment which had been very important for me. +p52889 +aVWhen my grandmother died. I had lived with her for ten years. +p52890 +aVWhen I went home by train from Sicilia, I was molested by a man. +p52891 +aVI lied to someone and some time later this person found out that I had not told him the truth. +p52892 +aVI had to decline an appointment which had been very important for the other person. For this reason we even got into trouble. +p52893 +aVA person with whom I had been on bad terms, gave me a present. We became reconciled. +p52894 +aVA friend's father had died, I was to come and see this friend although I did not know his family. +p52895 +aVI was watching TV with a friend. After the first film I wanted to watch another film on the same channel. My friend switched over to the other cannel without asking me what I wanted. +p52896 +aVMy boy-friend an I seperated on his initiative. +p52897 +aVA friend's boy-friend treated her very badly, let her serve him, provoked her and just utilized her. +p52898 +aVI had lied to a person because I had thought that I could not tell him the truth. When he found out he was not angry but understanding. We talked the whole thing over. +p52899 +aVI had told a person unpleasant things in a bad manner. He was very depressed and caused an accident. +p52900 +aVAfter having considered it for hours I was able to overcome my scruples and to call a friend with whom I had fallen in love. I realized that my decision was right - and was very glad. +p52901 +aVAfter having slept for a short time I woke up - I had the feeling of someone standing beside me and was very frightened. I had to turn on the light turn on the light for several minutes before I was able to get to sleep again. +p52902 +aVI moved to a flat. A friend who had lived there before, had left the flat in a terrible mess. I was very angry about that sloppiness and impudence. +p52903 +aVMy father had a complicated operation. A long time before and also a long time after that, we did not know how he would get over it. During all that time I felt very sad. +p52904 +aVIt was in a tramway-carriage: A stranger insulted a girl just because she blew her nose. I detested his behaviour. +p52905 +aVQuite recently I realized that I had had some erroneous views about life. For instance, I had always lived for other people, had forgotten my own person and suppressed my own feelings. I was ashamed because I had not been concious of that until I had a conversation about it with a person. +p52906 +aVI had a quarrel with near persons. I said many ill-considered things and I regretted it when it was to late. +p52907 +aVIn summer when I was sailing with friends in Greece I felt joy. +p52908 +aVI was riding with a friend in his car. At a speed of 120 km/h on the snow-covered motorway I would have liked to get out. +p52909 +aVMeeting a male friend with whose wife I was having an affair. +p52910 +aVWalking along the beach with a friend (another girl), talking, picking up shells, laughing, chasing seagulls. +p52911 +aVClimbing a mountain to see a view, towards the top we suddenly came across a ledge with a nearly sheer drop on either side, which I had to cross. +p52912 +aVA friend suggested in a round-about way that the reason we were late for something was because of me, and that I'm often late. I know this was partly true, but felt it unjustified that particular time and I felt I couldn't do anything about it anyway (i.e. being late). +p52913 +aVTalking to a very good friend who had just had a very bad experience which was changing his whole way of looking at life etc. +p52914 +aVI came across a group of people with the same basic ideas/beliefs who were all fighting and going against what they would say was good. +p52915 +aVI was working in a job in which I could not work quickly enough, and was told that my work was not up to standard. +p52916 +aVI had wasted some time instead of doing something I needed to do to give to a friend. (Also in the time I wasted I had done some things I did not consider morally right). +p52917 +aVOn meeting an old friend of mine. +p52918 +aVWhen my brother was very late in arriving home from work. +p52919 +aVDuring a fight with my best friend. +p52920 +aVWhen my dog died. +p52921 +aVDuring a movie in which I saw the effect of white settlers in Africa. +p52922 +aVWhen I got a bad result for one of my assignments. +p52923 +aVLeaving a friend of mine alone at a dance - I felt I should have kept her company. +p52924 +aVFear - paralysing - that I would not be accepted by the God who I believed to be there because I was ""morally bankrupt"" (before becoming a Christian and realising that that was why Christ came to free us from sin and to forgive us). +p52925 +aVAt my father's treatment of my mother, at his disregard for her, and not being committed to her. +p52926 +aVAt a lack of love of my father for my mum, sadness for him more than anyone else because he does not realise how much love and happiness there could be between them, and is, and how much he is damaging himself apart from mum. +p52927 +aVAt what I was capable of of selfishly using others for sexual encounters, while I held a vision of having a deepening above-board (you know, ""girl next door"") devotion to a girl in my head. My drives and actions did not match this so consequently I felt disgusted at my failure. +p52928 +aVAt using other people, because of sexual experience that was using another to the detriment of both. Anxiety that I may have affected another for the worst. +p52929 +aVFor the above: guilt at not living up to my own moral expectation, guilt for not being the type of person my patents wanted, guilt for just about bloody everything, just realising that I have failed drastically in my own eyes. +p52930 +aVI was rock-climbing and absailing & felt OK, but suddenly as I was going over the cliff I was hit by fear - I couldn't go on absailing down the cliff and had to be actually hauled back up it. +p52931 +aVI told my boy friend not to park in a certain place because the car would ger towed away - he didn't listen and it was towed away. At that stage, our finances were below the poverty line & it cost us $10.00 - all the money we had to get us through that week (including rent). +p52932 +aVMy sister won a scholarship to Norway and it was particularly as she walked across the tarmac to get on the plane and she looked back at us. +p52933 +aVI work part-time as a shop-assistant and a customer spoke to me very loudly about an Indian man & white woman with children - how horrible that was and would I want to have little dark children. +p52934 +aVMy mother told my uncle who is a Roman Catholic Priest (Redemptist Father) that I had been living in a de-facto relationship for three years. He was very, very angry at me. +p52935 +aVI ""snapped"" very abruptly at my mother when she said something silly and stupid, (in front of other people) she looked so defenceless & hurt & told them that I'm always doing that. +p52936 +aVI received a wedding invitation from an ex-flatmate, enclosed was a small note that overcame a lot of the differences that had arisen between us due to the circumstances in which she left the flat. +p52937 +aVOne afternoon, helping at home on the property, I was (mustering) getting in cattle and a bull turned and came for me. +p52938 +aVGetting a terrible exam mark, which I couldn't understand the reason for, and trying to see a lecturer or tutor, but being given the runaround. +p52939 +aVWatching an old lady running up the street to catch her bus and miss it, it reminded me of my own mother and how dreadful it would be to be her in the same situation. +p52940 +aVComing home one night - my sister was home, and had been drinking heavily and started picking arguments. +p52941 +aVWhen I am travelling by car and have to meet an oncoming car while overtaking. +p52942 +aVWhen a close relative is treated badly. +p52943 +aVWhen a close friend died. +p52944 +aVWhen I saw all the starving people in Ethiopia on T.V. It felt awful to see such suffering. +p52945 +aVWhen a mistake occurred at work which I was not responsible for. This was disclosed later. +p52946 +aVWhen I called my boyfriend he asked me if I would live with him. +p52947 +aVLast Summer in Italy I was attacked by a dog.It was terrible to feel that untidy dirty dog against my naked skin. +p52948 +aVWhen my father's new fiancee treats me like a child. She does not trust me and constantly misunderstands me. I get particularly angry when she says nasty things about my boyfriend with whom she works. +p52949 +aVWhen the guy I was in love with told me that he had met someone else and that we would not meet again for a year. Although we did not have a steady relatioship, we were having an affair. +p52950 +aVWhen my love for a guy was returned. +p52951 +aVWhen I think of death - not my own but that of my parents, brothers and sisters. +p52952 +aVWhen my uncle comes (3 times a year) for the traditional Christmas dinner with my grandparents and other relatives and is very drunk. +p52953 +aVI was living at home during the Summer vacations and towards the end decided to take some of my clothes and other belongings to the appartment in Guttenburg. When I had finished I went to my ex-boyfriend's (relationship uncertain) home and stayed there till 5 A.M. I had to leave then as my parents needed the car for work in the morning. My parents do not like my boyfriend. +p52954 +aVI met my present boyfriend on a boat trip to England. We had said that we would call each other when we got back to Sweden (we were not going to the same town in England). As soon as I walked in he called from England as he could not wait till he came home. +p52955 +aVWhen my mother's heart nearly stopped. +p52956 +aVThere was a sofa in my flat which belonged to the old tenants who were acquaintances. It should have been picked up a year ago but they had postponed it. Eventually they decided on one date and I stayed at home despite the fact that I had other things to do. They did not come, nor did they call and they still have not got in touch with me. +p52957 +aVWhen my ex-boyfriend and I separated. +p52958 +aVVery intoxicated men who incite each other to fight. I met a vile smelling man on the tram who got closer and closer to me till I got up, then he got angry. +p52959 +aVWhen my nephew asked me to tell him a story and I simply did not have the energy or the will. When I saw his disappointment I was terribly guilty and read a story to him after all. +p52960 +aVWhen I fell in love. +p52961 +aVEarlier, I was afraid of speaking in front of a crowd of people. +p52962 +aVA girl I was with went off with another guy. +p52963 +aVAt set-backs. +p52964 +aVI worked in a harbour and emptied latrine containers from the back of the lorries. +p52965 +aVThe day after the night I drank too much at a party. +p52966 +aVWhen I was accepted as a student of Psychology here at Gutttenburg. +p52967 +aVI woke up in the middle of the night as I had jumped and shouted with fear. I thought that someone's cold hand or something similar had touched my hand. I crept down under the covers and went back to sleep. +p52968 +aVWhen I was a young teenager (14) my brother-in-law to be had made heavy advances to me. I did not understand very well what it was all about but I reacted strongly and the feelings are still there. +p52969 +aVI broke off with my partner as I wanted him as a friend and not as a lover. He reacted very violently and I felt guilty as I had made him so desperately unhappy. +p52970 +aVI made dinner for some friends and they appreciated it very much. +p52971 +aVI was nearly knocked down while I was cycling. +p52972 +aVMy father and I had an argument because I do not help enough at home. +p52973 +aVI had intercourse with someone and then I realized that what I had done was wrong and it disgusted me. +p52974 +aVI said nasty things which I did not mean to a friend. +p52975 +aVAfter intercourse. +p52976 +aVDisappointment over a friend. +p52977 +aVQuarrelled with my younger brother. +p52978 +aVWhen I woke up after a nightmare. +p52979 +aVHelping older people on the toilet. +p52980 +aVSqueezed the puppy in the door. +p52981 +aVWhen I was notified that I had been accepted as a Psychology student. +p52982 +aVMotor failure on a boat outside Gottenburg when we were in heavy seas and the wind was strong. As we could not steer the boat we drifted towards the rocks. We did not succeed in attracting the attention of any passerby until 4 hours had elapsed. +p52983 +aVA lady I live with had not bothered to clean up before she went on holiday (I live in a collective). +p52984 +aVWhen I heard that a good friend had committed suicide. +p52985 +aVI was present when they found a shop-keeper dead in his shop. He had been shot with a shotgun at close range. +p52986 +aVMy mother accused me of not visiting her enough when she was in hospital for an eye operation. +p52987 +aVAfter I had made my debut at Ullevi against IFK, Gottenburg and got a good write up in the paper. +p52988 +aVWhen I was 7-8 years old, I woke up one night and found myself alone at home. My mother had gone out to buy cigarattes from a machine. +p52989 +aVWhen I found out that I had failed to pass my exams during the term by one point. The fact that exactly the same thing had happened last term did not help. +p52990 +aVWhen I was touring Asia with my present football team, I saw old Europeans with young asiatic prostitutes. +p52991 +aVAs an evening class teacher I got positive feedback. When the atmosphere is good and a kind of relaxed understanding exists. +p52992 +aVAfter mischieviously ringing on the chemist's trade-entrance doorbell and getting caught by him. +p52993 +aVThe sight of a man who ran amok (fighting) at a dance. +p52994 +aVWhen out of work. +p52995 +aVWith my mouth full of bun, I drank directly from a packet of milk which turned out to be weeks old (completely separated). It took a while for the milk to seep through the bun. +p52996 +aVA boy who shot dead a squirrel. +p52997 +aVWhen I was accepted as supervisor for a student teacher. The notification came by post. +p52998 +aVWhen I was involved in a car accident last November, after the first fall of snow. I lost control of the car and it spun round and landed on the opposite side of the road, on the hard shoulder. It was stopped by a pole on top of a bank sloping down to a stream. +p52999 +aVWith the job appointments committee when the headmaster in charge explained that a male teacher was more suitable for the particular post. I had more years of service than the male teacher, but this was not taken into consideration. I could have been given a less attractive job if things had gone the way the headmaster wanted. +p53000 +aVA colleague's 17 year old daughter is seriously ill with cancer and has only a year to live. I heard about it 6 weeks ago. +p53001 +aVWhen a close friend met me at the station in the middle of the night, when I came back from a long and tiring journey. +p53002 +aVHaving quarreled with a boyfriend, he threatened to leave me. +p53003 +aVSomeone didn't show up at a meeting in spite of having agreed to come. +p53004 +aVWhen I understood that my marriage was falling apart, and we decided to be legally separated. +p53005 +aVAt an anti-pornography meeting, when samples from films and magazines were shown. +p53006 +aVComments from other children on my alcoholic father +p53007 +aVHaving failed to help with the 5th of March arrangements (Women's Day), although I had previously promised to take part in the work. +p53008 +aVWhen I was able to buy my new car, after lots of problems. +p53009 +aVAfter my car accident, when I woke up in a heap of stones. +p53010 +aVWhen I tried to put up a tent some years ago, I was teased and hindered by my cousin. +p53011 +aVWhen my grandfather died. +p53012 +aVHit a dog with my car, and didn't stop. +p53013 +aVCar accident. I let a 16-year old, incompetent parson take the wheel and I feel very guilty about what happened even though I suffered the worst injuries. +p53014 +aVWhen I was admitted to a certain school as a student. +p53015 +aVMy father has a chronic desease. In the autumn of 1983 he had a very strong fit or seizure. +p53016 +aVA drunken friend of mine was beating up another friend, who was also drunk. +p53017 +aVWhen I didn't get a certain job at Lillehammer which I wanted very much. +p53018 +aVMy boss on the job failed to keep his promise about something he knew was extremely important to me. +p53019 +aVAn exam where questions about very specific knowledge were asked. +p53020 +aVI hit my little sisiter on the head with a stone while we were fighting. +p53021 +aVWhen my father managed to begin a ""new life"" after the divorce from my mother; resulting in a new little sister for me. +p53022 +aVA ""near-accident"" in a car, driving too fast on an icy road. +p53023 +aVMy mother and her friends were speaking badly about my father when they were separated, and my brothers and sisters and myself were allowed to listen. +p53024 +aVBeing bored in school, not being able to marry and have children. +p53025 +aVWhen my mother's new husband treated her and my brothers and sisters badly. +p53026 +aVStealing from my mother's purse when I was a little boy. +p53027 +aVI was in hospital, and then was visited by someone quite unexpected. +p53028 +aVI was hunting, and was lost in the fog in the mountains. +p53029 +aVI was accused of a misdemeanour, unjustly. +p53030 +aVWhen my girlfriend left me. +p53031 +aVSlaughtering of animals. +p53032 +aVI entered the wrong room, and got into a bed where someone already was sleeping. +p53033 +aVI failed to show up at an agreed date. +p53034 +aVWhen I finally managed to get a specific sound from my guitar, after baving tried for a long time. +p53035 +aVClimbing a mountain, I got stuck and realized I could get neither up nor down. +p53036 +aVMeeting generally dominating persons in social occasions. +p53037 +aVDiscovering that Lillehammer provided no musical environment that suits my taste, even though I had been told so. +p53038 +aVWhen the cast general election resulted in Norway getting a conservative government. +p53039 +aVA friend of mine shot himself through the head after having told me and others that he would do so. +p53040 +aVWhen my children were born. +p53041 +aVWhen I almost ran over a small boy who suddenly was in front of my car. +p53042 +aVWhen my father phoned me to come home from my vacation, since he no longer had the time to look after my garden and animals. +p53043 +aVWhen I was told that a good friend was seriously ill. +p53044 +aVWhen I learned that a relative had been spreading rumours about me. +p53045 +aVI was talking badly about a person to some friends, and discovered that his daughter was listening. +p53046 +aVWhen my ex-husband left our house, and the children cried because he was not coming back. +p53047 +aVWhen my special friend said ""I love you"" for the first time. +p53048 +aVAfter having watched a crime show on the TV, I was about to take the dog for a walk. Then, suddenly, there was a man on the porch... (We live some distance away from other people). +p53049 +aVWhen my car suddenly broke down ! +p53050 +aVWhen an earlier friend was spreading negative rumours about me. +p53051 +aVThere is a certain person, whom I only have seen. He makes me cringe, feel disgust. +p53052 +aVCheating to get the best grade on a test in 7th grade. +p53053 +aVA kitten had wandered into our office, and I was told to take it back across the street. When I crossed back, the kitten followed me and was run over and killed by a car. +p53054 +aVWhen my term paper was evaluated. +p53055 +aVAfter seeing a terror movie at the cinema, I was so scared that I couldn't even drive the car into the garage. I often thought about the film afterwards, hoping such things couldn't exist in the ""real world"". +p53056 +aVAngry with my brother, who was making fun of me, teasing me. +p53057 +aVWhen my gradmother died. +p53058 +aVI overreacted towards my mother and felt ashamed afterwards. +p53059 +aVWhen my parents work very hard and get tired - while I go to school and study instead of helping them. I feel that I'm letting them down, disappointing them. +p53060 +aVGot in touch with earlier friends after a long absence. +p53061 +aVI lost my way on a trip in the mountains. +p53062 +aVBeing subject to unfair treatment in a working group, someone ""bending the rules"" was protected by the boss. This resulted in more work for the others. +p53063 +aVThe death of a close friend. +p53064 +aVWas confronted with a person having negative thoughts of other people because of their social status, beliefs, color and outlook on life (perspective). +p53065 +aVFeeling inadequate in a group situation, being unable to convey my own thoughts and feelings. +p53066 +aVI failed to complete a working task within the agreed time. +p53067 +aVReceiving a much wanted letter from a very good friend who lives abroad. +p53068 +aVBefore getting back the results of a test in school, when I had worked very hard and was worried about not succeeding. +p53069 +aVOne of my best friends accused me of giving up to early on problems. It was only a casual remark on her side, but I was angry and hurt. +p53070 +aVRealizing that school will soon be over, and we will all go different ways, perhaps never meeting again our friends from this year. +p53071 +aVIn a public swimming hall I saw a very aggressive man who practically attacked the children who got in his way when he was swimming. +p53072 +aVI was making very strong statements about infidelity in couples. Then I discovered that one of my best friends, who had just been through a very sad case of mutual infidelity, was listening. +p53073 +aVI had planned a trip to the South during Easter, together with a friend. She was very sorry when I changed my mind and decided not to go after all. +p53074 +aVOne dark night with no street lights, a car was obviously following me. +p53075 +aVI was subject to false accusations, and got very angry. +p53076 +aVI was told by a good friend that we couldn't be friends any more because of his relationship with another girl. +p53077 +aVIf I don't go to lectures, I often feel ashamed. +p53078 +aVI was very angry with a girlfriend for interferring a little too much with my personal affairs. I told her so rather strongly and she started crying. +p53079 +aVWhen my fiancee travelled 2000 Km to visit me, and I hadn't seen her for 4 months. +p53080 +aVI was beaten up at a private New Year's party once, through no fault of mine. +p53081 +aVI felt unfairly treated at an airport, being told to use a different counter (for domestic traffic only). +p53082 +aVWhen my grandmother died. +p53083 +aVThe murder of two girls on a school trip to Berlin (and sexual crimes generally) a couple of years ago. +p53084 +aVWhen taking part in the mobbing of one of my best friends in primary school. +p53085 +aVWhen I secretly tried smoking for the first time, being 12 years old. +p53086 +aVWhen the person that I was very fond of, returned to me. +p53087 +aVWhen students in our working group showed no responsibility or interest in our work. +p53088 +aVA very close friend left me. +p53089 +aVSome people were unfairly treated, because of their nationality/colour. +p53090 +aVTaking part in the mobbing of some girls in my class in primary school. +p53091 +aVA close acquaintace cried for me. I felt happy because somebody cared. +p53092 +aVA letter from my boyfriend began in such a way that I thought he was going to end our relationship. I was afraid of reading the rest. +p53093 +aVMy nephew is a deaf and also ""hyperactive"" boy. I had been responsible for looking after him for a full day, and was very tired. Then he suddenly grabbed a knife and stabbed me in the leg. I got so angry that I didn't feel any pain. +p53094 +aVA woman I know is slowly dying from cancer. Observing this process makes me sad. +p53095 +aVClose friends talking badly of other friends. +p53096 +aVMy father died after two very painful weeks in bed. I felt relieved, and was ashamed of that. +p53097 +aVWe had a day off from school. Instead of helping my mother with her job, I stayed in bed all day. +p53098 +aVRenewed contact with an earlier friend. +p53099 +aVFearing the use of power or reprimands when I belong to the minority. +p53100 +aVA close friend first said he accepted an agreement, but later used that agreement as a reason for attacking me. +p53101 +aVWhen realizing that my girlfriend and myself in fact had started the process of breaking up. +p53102 +aVWas accused of having hidden intentions in a situation when I believed I was acting honestly and fairly. +p53103 +aVWhen my aunt took her own life, I felt guity for not understanding that she needed support. +p53104 +aVReceiving a postcard form my sweetheart who was abroad on vacation, not being at all sure if he would write me or not. +p53105 +aVWhen I tried to breake it up with my boyfriend, and he refused to let me go. +p53106 +aVHaving to go back home form the U.S. after having been there for ten weeks to visit my brother and his family. +p53107 +aVI dated another boy several times, when I was still ""going with"" my former boyfriend. This made me feel a little bit guilty towards my friend. +p53108 +aVFinding my glasses again after having lost them in town. +p53109 +aVFalling off a cliff in the mountains. +p53110 +aVHaving a fight with a class mate. +p53111 +aVWhen the gear broke on my car. +p53112 +aVI forgot to lock the outside door at my Land Lady's place. +p53113 +aVI got a job right after school was over. +p53114 +aVGoing home alone through the forest after a girl guide (scout ?) meeting. +p53115 +aVI get angry when people disbelieve me or misunderstand me. +p53116 +aVAt the death of a close relative. +p53117 +aVHaving been unjustly punished, I feel disgust towards the person responsible. +p53118 +aVBeing caught in changing the truth (lying). +p53119 +aVDoing something wrong at home, and then letting my (normally) more rampant brother take the blame. +p53120 +aVHaving passed the exam required to be an authorized Radio/TV dealer. +p53121 +aVClimbing a mountain where the rocks were very loose. When we realized the danger, we were very high up, but still had a long climb ahead. +p53122 +aVBeing a spokesman for the union, I got into a quarrel with a colleague who had been acting disloyally over a sustained period of time. +p53123 +aVWhen my grandfather died, with whom I had a very close relationship. +p53124 +aVReading about executions and massacres which happened during World War II, I felt disgust towards those who did it. +p53125 +aVI woke up at the house of someone I knew, not remembering very much about what had been said or done during the party on the previous night. +p53126 +aVBorrowing a car, and then having a minor accident (breaking a headlight). +p53127 +aVSucceeding in helping others. +p53128 +aVWhen I realized that we are living on borrowed time, and that the nuclear holocaust appears to come closer every day. +p53129 +aVWhen others let me down, fail to keep agreements. +p53130 +aVDeath in the close family. +p53131 +aVWhen people manipulate others through appearing better than what they really are. +p53132 +aVParticipating in a theft several years ago. +p53133 +aVFeeling helpless, not being able to accomplish what I really wanted to do. +p53134 +aVI received the message that I'd been accepted at the school where I really wanted to go. +p53135 +aVI came home and discovered that someone had broken in. Then I realized that they probably were still there. +p53136 +aVI was accused of having drunk a bottle of liquor and then refilling with water. +p53137 +aVGot a package from my parents, without even a small note enclosed. +p53138 +aVQuarreling with my father, when he made false assertions. +p53139 +aVTelling friends about how my parents had been treating my brothers and sisters unfairly. +p53140 +aVI've always defended my sister when needed, at the expense of my brother. This has led to feelings of guilt towards him. +p53141 +aVWinning the local soccer championships this year was a great joy. +p53142 +aVBefore important sports events. +p53143 +aVWhen colliding with my car. I myself was to blame. +p53144 +aVNot succeeding in a cross-country skiing competition, which I intended to win. +p53145 +aVWhen I got really drunk on Norvegian Indipendence Day, and was not allowed to participate in football (soccer) games for two weeks. That was very unpleasant. +p53146 +aVWhen I and the boy next door set fire to a house by accident. +p53147 +aVGetting the top price in the football pools. +p53148 +aVWas threatened with a knife ... in the military by soldiers form another unit. The reason was girls. +p53149 +aVWhen my mother treats me as a 10-year old boy. +p53150 +aVGetting to know that my uncle in America had a brain tumor. +p53151 +aVOutside a night club, a grown man was sitting on top of a younger woman, beating her up. +p53152 +aVMy father was a member of the public Alcohol and Drugs Board, when I was picked up by the police for being drunk in a public place. +p53153 +aVWhen being illoyal (disloyal) to people close to me. Had such an episode with my sister, who should have received my support and attention. +p53154 +aVReceiving close friends form abroad, whom I hadn't seen for years. +p53155 +aVMotorcycle accident with two people involved, running off the road. Broke an arm, only. +p53156 +aVHaving agreed to share the taxi expenses, three people in the back of the car just ran off, leaving the person up front with the entire bill. +p53157 +aVDeath of a close friend. +p53158 +aVAt a private party I literally fell into the food. The party was completely ruined for the host, carpets had to be cleaned, etc. +p53159 +aVAccidentally dropped a friends camera flash, so that it was broken. +p53160 +aVSelling my used car. +p53161 +aVAlmost crashing my car, something which could have led to great problems. +p53162 +aVRealizing that a friend had been talked into signing a certain contract. +p53163 +aVTalking to a pensioned and bitter ""street order"" policeman. +p53164 +aVThe sadistinc exacution of a student in the USA. +p53165 +aVForgetting an important appointment. +p53166 +aVNot keeping a promise of delivering materials of great importance to the receiver. +p53167 +aVManaged to run 30 Km on skis fairly simply. +p53168 +aVAfraid I wouldn't catch the train when I was going to see my sweetheart. +p53169 +aVReceiving personal criticisms early in the morning. +p53170 +aVNot getting a job. +p53171 +aVSeeing a pornographic film when looking for a place to live. +p53172 +aVWhen unjustified hurting other people. +p53173 +aVThe negative feelings towards me displayed by my ""parents-in-law"". +p53174 +aVReunion with my wife after a legal separation. +p53175 +aVThe house was on fire, and I was saved by the dog. I am afraid of the fire, verging on panic. +p53176 +aVPhysical violence. A friend wouldn't listen to me I repeatedly tried to warn him, to no avail. Result: eight people were ""pissed off"". +p53177 +aVMy father dying. +p53178 +aVMaltreatment of children. +p53179 +aVI lost my driver's licence because of speeding. +p53180 +aVCar accident, hurt three of my closest family. +p53181 +aVRelating to my closest family. +p53182 +aVThinking of the unknown, what happens at the moment of death, etc. +p53183 +aVIn traffic I often get relatively angry with other drivers. Several transgressions make me mad, especially not yielding to priority traffic (e.g. coming from the right). +p53184 +aVLosing close people and animals. So far, I've felt most when losing our dog in a traffic accident. +p53185 +aVI feel disgust towards those who are responsible for the death of others. +p53186 +aVTalking about a person's unattractiveness, not realizing that the person was listening. +p53187 +aVI often feel guilty, and it has to do with other people, e.g. if I haven't visited my older relatives for a while. +p53188 +aVWhen the contract about my shop was signed. +p53189 +aVBeing very close to having an auto accident, almost driving off the road. +p53190 +aVHaving gone to school without learning anything, as usual. +p53191 +aVMy sweatheart were away on a trip, and then she got problems. +p53192 +aVOvereating a traditional type of food - blood pudding. +p53193 +aVForgot to do some shopping that I had promised to do. +p53194 +aVI crashed my father's car. +p53195 +aVReceiving a letter form a girl that means a lot to me emotionally. +p53196 +aVBeing close to drowning. +p53197 +aVBeing slandered by friends. +p53198 +aVLove problems. +p53199 +aVHaving finally to admit I was wrong, after having denied it for a long time. +p53200 +aVBeing aggressive against members of my family. +p53201 +aVI won the country ski championship. +p53202 +aVI was scared in the dark when I was a little boy. +p53203 +aVAngry when our team (small boys) lost the county championship football final. +p53204 +aVMy grandfather's death. +p53205 +aVA teacher gave me lower grades than I was entitled to, and was hoping for. +p53206 +aVWas caught stealing apples in a neighbor's garden. +p53207 +aVNot helping parents enough at home and at the farm - this has happened many times. +p53208 +aVWhen the bank let me borrow some money this winter, after my grant was spent. +p53209 +aVOnce I was stopped by the police in Spain, when I had some ""grass"" in my tobacco. +p53210 +aVMy father accused my brother of having bumped his car, and it was wrong. +p53211 +aVWhen a girlfriend left me. +p53212 +aVWhen a ""friend"" dropped a frog down my neck, and I didn't know what it was. +p53213 +aVFighting with my father while drunk. +p53214 +aVDuring 7th grade our class mobbed a famale teacher so badly that she had a breackdown and was hospitalized. +p53215 +aVI am a school teacher. At a teacher-parent meeting I received a good deal of positive feed-back on my work both from the parents and through them from the pupils. +p53216 +aVAs a child, when I was at home alone, I felt in an indefinate manner afraid of the death of my father and mother. +p53217 +aVI had a discussion with my mother concerning my sister's divorce, we disagreed strongly. +p53218 +aVAs a ten-year-old I was at the funeral of my grand-father. It was more the ceremonies held in the church and not really the death of my grand-father which made me sad. +p53219 +aVI had a discussion with my wife about an over-weight acquaintance of our's, about her eating habits and the scars caused by her pregnancy. +p53220 +aVWhen I confessed to my girl-friend (now my wife) that I had betrayed her with another woman. +p53221 +aVThe same as in ""shame"". +p53222 +aV A successful lesson. +p53223 +aV I was thinking about death. +p53224 +aVA conflict with a pupil. +p53225 +aVWhen I am at home alone. +p53226 +aVA saturday night a bus full of drunken people. +p53227 +aVA conflict with a pupil and there were probatory teachers present. +p53228 +aVSelling the appartment after my divorce. +p53229 +aVWhen in an economic crisis I got an unexpected sum of money. +p53230 +aVIn the dark an unreal figure formed by a shadow. +p53231 +aV When I was treated unfairly, regardless of my motives or deeds. +p53232 +aVWhen I noticed obvious marks of old age (in a negative sense) on a close relative of mine. +p53233 +aVAs a child, when I saw an ""unesthetic"" sight. +p53234 +aVOn a social occasion, I noticed that I reacted on the basis of my autonomous nerve system (I could not help it). +p53235 +aVWhen I caused needless anxiety to a person close to me because of my lack of self-insight. +p53236 +aVI was coming home from an exam and I supposed that I had passed it so I ran to a restaurant for a beer. +p53237 +aVI had been drinking with a pal and I later (1 o' clock) had a date with my fiancee. We were going to a Spanish lesson and I was afraid that she would smell that I had been drinking. +p53238 +aVMy fiancee and I were at my parent's place watching TV. There were only two TV-chairs and we were sitting on them when my drunken brother came in and rudely chased my fiancee off the chair she was sitting on. +p53239 +aVI had drunk a couple of beers and my fiancee got angry at me. +p53240 +aVWe were at a hamburger bar and a man at a table nearby started coughing and spitting into his plate. +p53241 +aVWe got into a fight with some chaps in front of our family house. The value of the property destroyed was approximately 15 000 FIM. I felt ashamed when my parents came to know about this. +p53242 +aVWe had had a party the night before and we still had some liquors left the morning after. I went to the kitchen pretending to prepare some tea and was caught by my fiancee pouring some rum down my throat. +p53243 +aVWhile dancing in a restaurant last week. +p53244 +aVI was on the Inter Rail in Naples alone. After an evening in a restaurant I was going back to the hotel when a prostitute approached me to sell herself. I refused but as I carried on walking I felt that I was being followed by someone. +p53245 +aVWhen a girl left me. +p53246 +aVI was on my way back from the Inter Rail, on board the ferry from Stockholm when my father called me at 7 o'clock to tell me that my uncle had died and that I would be seeing him off on his final journey within four days. +p53247 +aVOn Reperbahn, in a restaurant, a ""charming"" old saleswoman came to beg a drink for herself. +p53248 +aVAt the funeral of my uncle, I was one of the bearers. I was not familiar with the etiquette and acted tactlessly because of my ignorance. +p53249 +aVOn Reberbahn, I was in a ""restaurant"" where drinks were overpriced. I did not ask for the prices beforehand, and when the bill came I could not pay the bill. +p53250 +aVMy girlfriend gave me some feed-back and I understood that it meant that our relationship was about to turn even closer. +p53251 +aVAt the dentist's, waiting for my turn to come. +p53252 +aVWhile in the army, I was treated unfairly by my superiors. I was held responsible for a deed of which I was innocent. +p53253 +aVWhen I came to know that my grandmother had died. She was very close to me. +p53254 +aVIn the army, an acquaintance of mine tended to use his position to advance his own interests. +p53255 +aVWhen I lied to my girlfriend, telling her that I had passed an exam, when I actually did not even take it. +p53256 +aVWhen I spoke ill of a fellow worker in the absence of this person. +p53257 +aVWhen I look at people around and know that people who are stupid look stupid. +p53258 +aVWhen I saw Russian roulette on TV. (obviously the movie ""Deer hunter"") +p53259 +aVWhen stupid people push me during rush time in the city. +p53260 +aV Laziness makes one sad. +p53261 +aVWhen I saw hundreds of snakes twisting over one another in a movie. +p53262 +aVI saw a skid-row (chronical) alcoholic and I was ashamed of the people with a high standard of living. +p53263 +aVWhen I shot a bird in the head with a shotgun. +p53264 +aV Being close to another person. +p53265 +aV Uncertainty about my own abilities in an exam. +p53266 +aV An unfair punishment. +p53267 +aVLoneliness, being uncertain of myself in the Autumn. +p53268 +aVA rich man expressing disgust towards an alcoholic. +p53269 +aVA man asked me: ""May I sleep in your stairway?"" and I answered ""No"". +p53270 +aV The same as in shame. +p53271 +aVI went to a doctor with a complaint. The doctor told me that I was completely healthy. +p53272 +aVMy father was away from home and he did not come back when he was expected, he came back several hours later than expected. +p53273 +aVI had an implicit agreement with my sister about meeting her, however she had not understood the situation the same way so she did not turn up. +p53274 +aVI realized that the girl I loved had to leave me. +p53275 +aVIn the bus I was sitting next to a colleage who was drunk and behaved in keeping with his state. +p53276 +aVI had promised to help out with domestic chores and I forgot about it. +p53277 +aVI had promised to call a girl but I did not do it. +p53278 +aVWhen I unexpectedly received birthday greetings from a person I like. +p53279 +aVI returned home late from a party last night and I felt afraid trying to anticipate the reaction of my father. +p53280 +aVWhen I learned that my brother had spoilt an LP of mine. +p53281 +aVWhen I came to know that a girl I was fond of already had a boyfriend. +p53282 +aVA too eager approach by a dirty drunken person in a bus. +p53283 +aVI made a major mistake while learning how to use a computer programme and the teacher criticized me. +p53284 +aVI reproached my mother's cooking and criticised her personality, and she felt hurt and depressed. +p53285 +aVI shot the decisive goal in an ice-hockey match. +p53286 +aVWhen I got lost in New York city a late friday night with a friend of mine. +p53287 +aVAfter having quarelled with a relative of mine about politics. +p53288 +aVThe death of my grandmother. +p53289 +aVWhen I noticed that a nice person was being exploited economically. +p53290 +aVI slandered a person behind his back and he got to know about it. +p53291 +aVI had quarelled with a friend of mine and I later realized that it was also my fault. +p53292 +aVI passed an exam which I was not sure at all to pass. I rejoyced at the result because the possibility of continuing my studies depended on it. +p53293 +aVIn the traffic with a car, I nearly got crushed between a bus and a tram. The attention of other drivers saved me at the last moment. +p53294 +aVI was disappointed and angry at the bad quality of a documentay program on TV. In my opinion, the topic was important and the program should have been made with seriousness and consideration. +p53295 +aVMy father had a heart attack when I was not at home (I was still living with them). He recovered relatively well although he had to retire (which implied relief from the stress of a small scale enterprise). +p53296 +aVAt my grandmother's detestable and selfish conduct towards my elder sister, although her behavior was due to senility and lack of understanding. +p53297 +aVI arrived late at a seminar concerning my major subject at university, although I had been appointed to formally oppose the paper which was being presented. +p53298 +aVI had asked the Salvation Army to take away a piece of furniture of mine, but I forgot to cancel the agreement (a friend of mine took it) and I thereby caused the Salvation Army people some unnecessary work. +p53299 +aVOn the cliff by the sea, the silence and the sudden voice of a bird.(swans of the bay) +p53300 +aVA dark night when I had to go to the outdoor lavatory. +p53301 +aVWhen I realized that I was far behind the others in the language course and I could no longer catch up with the others. +p53302 +aVThe long lasting illness of my grand-mother, and the changes in family relationships caused by it. +p53303 +aVSpoilt, smashed and molded potatoes in the fridge, and having to clean up the dish later. +p53304 +aVA truth expressed unthinkingly at a coffee party. I realized later that I had been inconsiderate, at a wrong moment and the wrong place. +p53305 +aVI did not go to the exercises, without any adequate reason. +p53306 +aVWhen I got home from my job, I found a letter from the university telling me that I had been admitted to begin my studies. +p53307 +aVWhile watching TV (a war movie), I felt a strong fear of death, threat and fear of loosing people close to me. +p53308 +aVI was angry with a friend of mine who behaved in an affected manner. +p53309 +aVI made a long-distance call to people rather close to me and I thought about the sad incident that had happened to them in the near past; I knew that they were thinking about it too when I made the call. +p53310 +aVMy parents inherited an appartment and this made them behave in a peculiar manner. +p53311 +aVWhen my friend let my personal matters be publicaly known. +p53312 +aVWhen I think about my family (parents, brothers, sisters) guilt is a part of my feelings. +p53313 +aVI unexpectedly met a girl with whom I have always got along well. ( I had not seen her for several months.) +p53314 +aVWhen my father was very drunk and raging at home. +p53315 +aVWhen I did not find the rack used for beating up rugs, in the yard. +p53316 +aVWhen one of my cat died of a disease. +p53317 +aVI felt disgusted at the environment while getting back to my student lodging. I did not see anything in the suburb which had been planned by taking people's comfort into account. +p53318 +aVMy girlfriend was away visiting another city and I brought another girl home. Next morning when I started getting sober I felt quite ashamed of myself. +p53319 +aVI got 100 FIM too much when I changed money at the bank. They soon called me at my job and the situation was embarrasing for me. +p53320 +aVIn Sweden, a friend and I lived in an appartment owned by a Finn. One day, this man came back to the appartment heavily drunk (hashish and alcohol). He was quite dizzy and he broke down, and I could not foretell his reactions. However, nothing happened. +p53321 +aVI had an appointment downtown, and the person in question was half an hour late. +p53322 +aVThe death of my grandmother. +p53323 +aVIn the army, I had been in hospital for two weeks and as soon as I returned to the company, a sergeant ordered me to fetch a load on the tractor trailer. +p53324 +aVOn the way back from a Summer spent in Sweden, I drunk with a man in the train. I had drunk so much that when I got home I fell asleep in the entrance hall. I have never drunk that much, neither before nor after that incident. I was ashamed because my mother and my sister had to see me in that state and my father had to carry me to bed. +p53325 +aVWhile at primary school, I did not let a friend ring a bell although he would have liked to do it. Afterwards I felt bad. +p53326 +aVI got a fairly large amount of my taxes back. +p53327 +aVI was jogging in the forest, in the central park area, when I saw a man hiding behind a tree. I got frigthened, turned around and ran out of the forest. +p53328 +aVI was coming home in a taxi with a fellow worker of mine. He was criticizing my earlier conduct towards him, which to my mind was unfounded. When I reached home, I ran out of the taxi and slammed the door. +p53329 +aVI had had a farewell party at the place where I had been working for a year. That night I could not fall off to sleep. I was sad thinking that I would not see my nice fellow workers again. +p53330 +aVI was travelling in a local train when a drunkard, smelling terribly, entered the same carriage and started eating fish that was stinking. +p53331 +aVWhile quarelling with a fellow worker of mine, I was vehement and irritated and I told him what I thought of him in plain language. I was ashamed of myself when I met him the next day. +p53332 +aVI was working as a secretary. My boss was to go to give a lecture, and wanted me to give him the exact address of the place. +p53333 +aVA sunny Autumn day, after a long rainy period. +p53334 +aVYears ago, on my way to school by the forest path I came across an exhibitionist. +p53335 +aVA person close to me mistook my good intentions for bad, and therefore associated unpleasant traits to me. +p53336 +aV A person close to me told me that his positive regard depended on my conduct. +p53337 +aVWhen an untidy and heavyly drunk person made endeavours to approach me. +p53338 +aVAs a little girl, I was sick in the middle of a school day and I vomitted in the basin of the classroom. +p53339 +aVI lost my self-control and raised my voice at a child. +p53340 +aVI got to know that I had been accepted at university. +p53341 +aVI had been watching a TV-program on paranormal phenomena. At night I could not fall off to sleep as I feared that humanoids were on the move. +p53342 +aVMy superior blamed me for some neglects at work in front of others. In fact, the task in question was not supposed to be done by me. +p53343 +aVMy father suddenly fell ill and died. +p53344 +aVWhen a friend of mine got drunk and started to blame and scorn my other friends and me. +p53345 +aVWhen I forgot a promise made to a friend of mine. +p53346 +aVIt was my turn to cook dinner. I forgot a dish (the favourite of the family) in the oven and it got burnt and was uneatable. +p53347 +aVMy joy was the joy of meeting again. My husband came home after having been away for weeks (for work). I was on the railway station to meet him. +p53348 +aVI was alone at home and I could hear odd noises coming from above our bedroom. I knew that nobody lived there since it was an office. I got frightened (later I was given a ""natural"" explanation). +p53349 +aVA relative of mine had come to see my husband to talk to him about a problem concerning his sister and me. I was angry because this relative of mine did not dare to speak to me and instead spoke to my husband. I got to know about it later the same day. +p53350 +aVThe death of my father, even though we had not been very close to each other. +p53351 +aVThe male friend of my mother (a widow) moved in to live with us. I did not like the man. +p53352 +aVAt school I was talking to a classmate about mathematics. I had grown weary of it and said : ""I would like to throw the book on the arse of Kuikka"". My classmate said : ""Now, he is sitting there and waiting for the book"" (Kuikka was one of the most quiet boys of the class). I was ashamed of myself. +p53353 +aVThe death of my father made me feel quite guilty, because my attitude towards him had been cold and indifferent. +p53354 +aVMy mother, sister and I were thinking about old times, our childhood, and we had a very happy time. +p53355 +aVMy husband had gone to drive a strange, broken car. At the agreed time, he had not returned, and I feared that he had had an accident. +p53356 +aVI am a school teacher. One of the classes does not obey me at all, keeps on talking, does no work. One afternoon, everything went wrong, and I got exceedingly angry. +p53357 +aVA young, close relative of mine died, leaving behind a baby a few months old. +p53358 +aVA series about Freud was shown on TV. In it, a tampon had been set in the nose of a woman, and forgotten there. After great pain it was taken off (close-up picture), the woman was bleeding from the nose and the mouth. +p53359 +aVI had promised to lend something to my mother-in-law and I forgot it a couple of times. When she asked me about it the third time, I was ashamed at my absent-mindedness. +p53360 +aVA borrowed car broke down while I was using it. It was not my fault, nevertheless I felt guilty. +p53361 +aVI started a new branch of studies after having failed a former one. When I got back my exam papers I was very happy to know that I almost had full marks. +p53362 +aVI was diving below the ice, in a cave, at a depth of 26 metres. Visibility was almost zero and the oxygen level decreased threateningly. There were three of us divers on one safety rope. +p53363 +aVMy mother carried on using mental pressure concerning something which was serious and a real burden to me. +p53364 +aVMy grandfather died, I went to the mortuary and saw the corpse. +p53365 +aV The same as in anger. +p53366 +aVAs a child when I was blamed for peeing in the swimming-pool. +p53367 +aVA friend of mine was drunk and having an argument on the street with a woman, appparently his girlfriend. I was walking on the other side of the street and thought that I was not supposed to interfere. Later I heard that he had shot himself that evening. +p53368 +aVMy girlfriend sent me a letter with a shiny picture in it. +p53369 +aVI was about to begin a journey in a car with an acquaintance of mine. +p53370 +aVOn the TV news I heard that Nicaragua had complained about the increasing threat of war with the USA. +p53371 +aVMy girlfriend gave me the mitten (left me). +p53372 +aVWatching a violent movie. +p53373 +aVThe morning after a wild party. +p53374 +aVI ""picked up"" a girl and I thought that I had misused my position and authority over her as there did not seem to be any realistic possibility of continuing the relationship. +p53375 +aVMy grandmother was about to die, and it had the effect that at night, after having read a book, and once in bed, in perfect darkness, the fear arose that I too may suddenly die. +p53376 +aVWhen I checked my examination paper and realized that I had been careless, thoughtless, lazy and hasty so as to make unnecessary mistakes concerning things I know and understand. +p53377 +aVWhen we decided, my boyfriend and I, that we would separate, I realized that he would have wanted to continue our relationship and the coming separation hurt him. +p53378 +aVWhen an acquaintance of mine told me about the way his parents treated their sons in an unequal manner. The most successful of them got continuous encouragement, and the youngest was not encouraged and was rejected. +p53379 +aVI was talking to a friend of mine about our parents and education. I said something and then realized that I did not know my friend's parents, their motives and education. I felt ashamed at having talked about something I did not know anything about. +p53380 +aVMy mother told me that the enveloppes that I had been tearing (I had torn the stamps away) in good faith had been the first-day enveloppes which my father had collected as a young man. +p53381 +aVI am not especially good at English, and after the high school graduation exam in English I tensely waited for the result the whole day. In the evening, when I heard that I had done excellently, I became very happy and the anxiety vanished. My family was at home. +p53382 +aVI feared that I was pregnant. It was not planned and I would have been compelled to have an abortion, which I would not have liked at all. Fortunately, after a week's anxiety, I got to know that I was not pregnant. +p53383 +aVA member of a religious sect tried to convert me, using really evil tricks to persuade me. After he had left, I was anxious and angry for a long time. After the event, I was alone. +p53384 +aVWhen my boyfriend wanted to leave me, I felt sad and melancholic. +p53385 +aVIn a film, there was an episode where they used a chain saw to cut a man. I could not look at it, but I could not avoid listening either. I sought shelter in my boyfriend's arms. +p53386 +aVI thought I would be able to use the mangle of the house, and so I did not want any help. However, I blocked it and I had to get the janitor to help me out. He reproached me for not having followed the instructions +p53387 +aVI promised my friends that I would take care of something, but I kept forgetting about it. When they asked me about it, I promised to do it immediately. However, I got started only after a couple of months. I felt that I had betrayed my friends. +p53388 +aVWhen I got an unexpected letter from a guy, who had been my school mate. +p53389 +aVWhen my brother went to shoot wild ducks, I feared that the boat would overturn and he would drown or that the gun would accidentally go off. +p53390 +aVMy father had once again told me that I should be careful and try to seek admission to other places also apart from the faculty of Social Sciences at the university of Helsinki. I was not at all interested in any other place and had no time to study for other entrance exams. +p53391 +aVI would have liked to go out to chat with some acquaintances, but I realized that I was not wanted. I felt hurt, disappointed, lonely and deserted. +p53392 +aVWhen an acquaintance (he was drunk) of my room-mate vomitted on the kitchen carpet. It was past mid-night and my room-mate had just moved in, this acquaintance had helped her move in. +p53393 +aVI was carried away while talking about my visits abroad and I tended to boast a little, till I realized that the listener was amused. +p53394 +aVWhen I was baby-sitting at my cousin's place, I tried to have a pleasant time and did not really take care of the child. I do not care very much about children. +p53395 +aVWhen I got 21/30 points in an exam of statistics. The result was unexpected and it made me realize that statistics do not surpass my abilities, as I have sometimes thought. +p53396 +aVWhen a big angry dog put its snout on my arm and had I made one movement it would have bitten me. +p53397 +aVWhen my room-mates were watching video-tapes and prevented me from watching the news. The first feeling I had was that I was being treated unfairly and then came the feeling of anger. +p53398 +aV When after a night of sleeping in another's arms, one wakes alone and knows that the lonely arms of the night are not the same that one meets in the morning. +p53399 +aVWhen an unpleasant person tried to make friends with me. A subtle, small, insignificant, grey being whose helplessness and neutrality evoked the feeling of disgust in me. +p53400 +aVBadly chosen words to a vague acquaintance of mine made me feel ashamed at having given the wrong impression about what I wanted to say. Thoughtlessness. +p53401 +aVWhen I behaved improperly - fought in a public place. Afterwards, I felt guilty about my conduct. +p53402 +aVWhen my friend told me that he would come and meet me in a moment. +p53403 +aVMy father had been drinking and I feared him when we went to bed at night. +p53404 +aVMy friends promised me that they would definitely call me to tell me if they were visiting me or not. +p53405 +aVA close friend of mine had not contacted me for a long time. +p53406 +aVA friend of mine came to see me when he was quite drunk. +p53407 +aVI said something especially stupid which I did not mean at all. +p53408 +aVI did not go to help a friend of mine, though she probably needed me. +p53409 +aVWhen I felt that an exam, which I had feared, was an easy one and went well. +p53410 +aVI was afraid when my dog ran out through a crack in the fence when a train was coming. +p53411 +aVWhen a friend of mine was drawn into a fight because of the stupid gang he belonged to. I felt angry with him and his friends. They could not think about anything sensible, but would fool around without taking into consideration the feelings of other persons. +p53412 +aVI felt sad after having had an argument with my boyfriend. I felt that he did not understand me and that there was no point in carrying on with the relationship. +p53413 +aVI detested my father who was a drunkard. He would rave, threaten and blame my mother and me. He finally drove us away from home. +p53414 +aVWhen I was on holiday with my former boyfriend, he hit me and behaved in a very evil and ugly manner in front of the hotel personnel. +p53415 +aVWhen as a child I stole, from a friend of mine, the ring she had got in an easter egg. +p53416 +aVWhen I got home from a pleasant trip abroad, I got to know that I had been accepted at university. +p53417 +aVAt school, I had acted against the will of the group, and the next day they promised to take revenge on me. +p53418 +aVMy mother had for some time been trying to separate me from a good friend who, she thought, was not good company for me. Finally, at breakfast one day, we had an argument and I tried to defend my friend. +p53419 +aVI got to know about the death of a close friend. +p53420 +aVWhen I was watching a movie with many violent episodes. They accurately showed the cutting of corpses, etc... +p53421 +aVWhen I was caught telling a white lie. At that time, I was not allowed to stay outdoors after 8 p.m. One day when I was late, I made up a story that our neighbour had invited me to his place, though I had actually forgotten about the time while playing with my pals. +p53422 +aVWhen before the last exam I have taken, I went out instead of studying. +p53423 +aVWhen I was pressing figures on the curtain cloth. I had bought the cloth after months of hindrances. +p53424 +aVI am a kindergarten teacher and I am thoroughly weary of my job. After having taken the university entrance exam I suffered from anxiety for weeks as I did not want to carry on with my work - studies were the only alternative. +p53425 +aVMy life-partner, who was drinking more and more, spoke about kicking the cat. He had never done anything of the kind, but I knew that he would do so one day, without thinking about it. +p53426 +aVEstrangement from my best woman friend. We have been going different ways for quite some time now, but the break was total when she got married as her husband is unreasonably jealous of me. +p53427 +aVMy life-partner is going through a crisis (way of life, old-fashioned values) and can only get out of it by talking bold decisions. I have noticed his cowardice and attempts to escape his problems by drinking. I detest his drinking and his being full of self-pity. +p53428 +aVAgain, a quarrel had come up in our difficult relationship. My life-partner threw all the books off the shelf. I am sure that it disturbed our neighbours since this happened late in the night. +p53429 +aVA lonely, neurotic, shy girl lives nearby. She has expressed a wish to meet me, I have however avoided her (turned down an invitation) as the crisis my partner is going through uses up all my empathy. +p53430 +aVBegining the week-end with my girlfriend : cozyness, beer and wine. +p53431 +aVThe fear about my future : work, making ends meet and health. Coping. +p53432 +aVA friend of mine ridiculed me, telling me that I would never accomplish anything. I felt that he had interfered with my life. +p53433 +aVI felt sad at having to leave my girlfriend after constant problems and failed attempts at reconciliation. My sadness was caused by the irreversibility of the decision. +p53434 +aVA man spat on the wall of a house. +p53435 +aVIn an express bus I sat on a seat meant for senior citizens and invalids. +p53436 +aVWhen I did not succeed in finding a job after having finished a nonacademic degree. +p53437 +aVWhen after an overwhelming anxiety and enquiry, I understood something about why I exist and what my task in life is. +p53438 +aVAt the railway station, while waiting for the last train at night I noticed that a drunk young man was appraching me in a purposeful mannner. +p53439 +aVWhile having a discussion with my mother, I realized that she does not for a moment doubt the justification of her making the decisions concerning my life. +p53440 +aVWhen I think that I will probably never have a genuine contact with my parents. +p53441 +aVWhile reading Olli Jalonen's new book, the distant, cold and selfish relationships between people (in the book) made me feel disgusted. +p53442 +aVWhen I approached a person of the opposite sex and was rejected. +p53443 +aVWhen I noticed that my little sister was sulking, because I could not meet her because of a misunderstanding. +p53444 +aVThe day I got to know that I would get a shared dwelling with my boyfriend. My parents place was getting a little crowded with my growing bother wanting a room to himself. I first felt doubt, then joy, but also sadness. The feeling of joy was the strongest. +p53445 +aVMy grandfather had lung-cancer and was being nursed at home. I felt fear when I was alone with him and he almost choked on mucus secretions. +p53446 +aVThe outrageous conduct of a relative towards me and those close to me.(blaming us and lying) +p53447 +aVWe had to finish the life of our 8 year-old dog. +p53448 +aVA very drunk person. +p53449 +aVAn argument that grew out of an ordinary conversation with a person very close to me, when we should have been having a good time together. +p53450 +aVWhile trying to get my little brother over a ditch, he fell on his head and started crying. I was scared of having caused him permanent injury. +p53451 +aV A chat on the telephone with a friend. +p53452 +aV Meeting some new (unpleasant) people or some new, demanding situation. +p53453 +aV For example, unfair pushing in a bus. +p53454 +aV When I am, in my opinion, not understood correctly. +p53455 +aV When some people act very important in any situation. +p53456 +aV Generally, when I am late in attending to matters (for example paying bills). +p53457 +aV If one has planned to do something ""important"" and then, for some reason, fails to do it. +p53458 +aVI was in a dancing-tavern and the atmosphere was one of waiting for the end of the world. Suddenly people began dancing wildly, inspired by the band. An unbelievable experience : wonderful that even Finns sometimes flare up and forget to think ""what others are thinking of me"". It was delightful to dance to one's heart content. +p53459 +aVI was travelling back home by boat with two friends of mine after a lovely holiday trip. The night and the sea were dark, and the wind was blowing. I feared that death was there on the boat, I somehow felt sure about it. I feared being left alone. +p53460 +aVI was at home, filling my tax report. Nobody had time to help me. I would have liked to do it quickly so that I could go and meet a friend of mine who had just returned from hospital. I got angry as both my brother and my father refused to give me their calculator as I had not asked for it nicely. I could not leave as I had to wait for help and the tax report had to be done. +p53461 +aVI tried to talk to my parents over the phone, as I wanted to go home for the week-end and I knew that I would not be able to bear it. I tried to reduce the gulf and the conflict between us by talking in order to unite our worlds. Result : hysterical mess, blinding and blaming. +p53462 +aVMy mother called me because she had read through the enveloppe a letter addressed to me. She denied having read it intentionally and said ""the words just popped out through the enveloppe as the sun was shining on it"". Hah Hah. +p53463 +aVI feared that I would have to describe my sexual life to an older, strange woman. +p53464 +aVWhen I moved away from home. +p53465 +aVThe inflammation of the ear of my child got cured and the doctor said that the ear was completely all right. +p53466 +aVMy husband suddenly fell ill seriously and during the medical examinations we did not know what would follow. +p53467 +aVThe housing council asked the city to cut 40 linden trees so that the inhabitants of the lower floors would have a view to the sea. +p53468 +aVMy child, unexpectedly started acting in a restless and disturbing way at school. In addition his performance at school weakened. +p53469 +aVOn a trip abroad, a lady-like member of our group turned out to be an alcoholic. She spoilt many days of my holidays because of her behaviour and paranoia. +p53470 +aVI failed an exam which I thought I would certainly pass. +p53471 +aVI had been guilty of gossiping and blaming others, and one of my superiors at the workplace made a formal reprimand. +p53472 +aVWhen a student of mine (at music) performed and played remarkably well. +p53473 +aVWhen climbing up the stairs to the top of a ski-jumping hill. +p53474 +aVMy boy-friend came home late one night without having told me about it before. +p53475 +aVThe breaking up of a long lasting relationship. +p53476 +aVWhile watching the movie called ""Deer hunter"" on TV, when it showed how prisoners were treated. +p53477 +aVWhen I noticed that a person I found attractive had seen me picking my nose. +p53478 +aVWhen I think that I have been too stict or narrow minded towards my students. +p53479 +aVWhen I made up with a girl-friend of mine after having been on unfriendly terms with her (my fault). I cried with joy that evening. +p53480 +aVWhen my friend did not pass the high school graduation examinations. +p53481 +aVWhen after having had sexual intercourse with a friend, I thought that he had told about it to a friend of his. +p53482 +aVDuring lectures, I sensed an unexpressed understanding with a boy I did not know. We exchange glances ; I think he likes me, and I like him too. Perhaps he has fallen in love with me ......... +p53483 +aVAt night, I walk home past a forest. Once, somebody got stabbed in the forest. I imagine someone attacking me and I hurry up. +p53484 +aVIn a tram, the ticket seller was commanding, taking the role of a leader, trying to emphasize her non-existent authority with undue strictness towards a good-humoured drunk who could not find his ticket at once. +p53485 +aVA relationship in which I had put my trust, broke up. I was sad when I realized how easy it is to forget something that one had once regarded as great and significant. +p53486 +aVA nightmare. I was dreaming about bloodsuckers, which I tried to shake off from my body, they are everywhere, they get glued, they suck. And there are a lot of them. I panic. +p53487 +aVI told evil lies about a close friend of mine. I was evil in order to sound jolly, to charm a person whom I wanted to impress. I sold my friend, I was despicable. +p53488 +aVI met my ex boyfriend by chance. We separated a few months ago and I am now with a new boyfriend. My ex boyfriend looked depressed, and I know I am not to be blamed. +p53489 +aV During inter-rail-trip, after troubles, I met my little sister. +p53490 +aVTraveling as the only female in a railway carriage in the middle of the night in Italy. +p53491 +aVA male, Honduran acquaintance of mine despised my opinions. +p53492 +aVWhen our dog died. +p53493 +aVWhile walking on the street with a good friend of mine, we met an acquaintance of hers. My friend started showing off and telling false stories about herself and praising herself. +p53494 +aVI was dishonest to my boyfriend concerning something that is important to our relationship. +p53495 +aVA parking fine. +p53496 +aVAfter having at last finished my master's thesis, I felt great joy and relief. I had been haunted by the thesis during the whole of my studies. +p53497 +aVWhile preparing my master's thesis, I was scared that I would not accomplish anything as the subject was rather difficult. +p53498 +aVDuring the Summer, at my workplace, a person kept interfering with my tasks and making unfounded remarks. I felt hatred for him but it stopped when I realized that he just longed for attention. +p53499 +aVThe last time I felt sad and disappointed was when I did not do as well as I had hoped in one of the final exams. As compared with the earlier exams, the questions, I think, were unjust. +p53500 +aVAfter the first of May, I detested my fiance's friends, who had piled on to our party and spoilt it completely. +p53501 +aVAfter our sad first of May party, I felt ashamed because the friends who had been invited had to suffer. We, the organizers of the party, did not drive the intruders away. +p53502 +aVAt my summer job, I was responsible for making various orders. It was not me who had ordered some seasonal merchandise, but when much of it was left over and had to be thrown away in the Autumn, I felt partly responsible for the much too large order. +p53503 +aVWhen I met a good friend of mine after a long time. +p53504 +aVI was camping with a friend of mine and we spent the night in the forest. I could not fall off to sleep and could clearly hear noises from outside (steps ?) approaching our tent. +p53505 +aVWhen I quarelled with my parents. +p53506 +aVBeing away from a very close friend, I was away from Finland for a year as an exchange student. +p53507 +aVWhen I saw a spider. +p53508 +aVWhile playing I urinated on grandma's floor and did not go to the lavatory. My cousin told grandma and she came. +p53509 +aVWhile travelling in a bus with an invalid ticket, I got caught. +p53510 +aVWhile having a discussion with a colleague of mine, I realized that her conception of man and work were similar to mine. +p53511 +aVWhile he was drunk, my life partner tried to hit me. I felt scared and fled to the bathroom. +p53512 +aVA ""higher status"" colleague of mine despised my attitude and organization of work. +p53513 +aVI could not meet my love, after having waited for a month, due to illness. +p53514 +aVMy love and me rented a room in a hotel one evening. We stayed there a few hours and when leaving the hotel, I felt ashamed. +p53515 +aV I had, by being silent, disapproved my love and made him unhappy. He had not been able to keep his promise. I thus was thinking about my own conduct towards another person. +p53516 +aVI had just moved to the town where I study and I got a postcard from a good friend (from my home town). +p53517 +aVMy boyfriend hinted over the phone about wanting to ""be free"". He thus did not say it point blank, silence followed. +p53518 +aVThey had returned much less of my taxes than I had expected. +p53519 +aVAfter my boyfriend and I had separated. +p53520 +aVIn the morning, the cat of my landlady had vomited on the floor, near the staircase I take to go to the bathroom. +p53521 +aVMy boyfriend's mother, whom I had not met earlier, made an unexpected visit. I was lying lazily on the bed, reading a newspaper and my boyfriend was studying. +p53522 +aVThe cat of my landlady escaped through the window which I had left open. +p53523 +aVI got a letter from my best friend, whom I had not heard from for a long time (a good letter). +p53524 +aVSomeone knocked on the door when I was alone at home (though there was a door bell). I looked through the peep hole but it had been covered. I called my sister but she could not help me as she was hundreds of kilometres away. +p53525 +aVMy parents put pressure on me to buy clothes, when I would not have liked to do so. +p53526 +aVWhen my grandfather died, I saw my grandmother crying against my aunt's shoulder (I had never seen my grandmother cry before). +p53527 +aVAt school, I detested the spinach gruel which had lumps of flour in it. +p53528 +aVI told some acquaintances of mine something that I regretted later. +p53529 +aV I speak harshly to my parents though they only mean my own good. +p53530 +aVWhen I got a letter from home. +p53531 +aVWhile cycling in the country a dog started running beside me, growling and barking, and trying to bite my foot. +p53532 +aVDisagreements with mother. When I moved from KankaanpSS, she had promised to help me move but broke her promise because of some hindrance. +p53533 +aVWhen I had to move away from home to study, and I knew that I would not be coming back home for a long time. +p53534 +aVWhen I noticed two spiders running on the floor in different directions. +p53535 +aVWhen I realized that I had been wrong about a person close to me, because of pre-set ideas and prejudices. +p53536 +aVWhen I reproached my friend because I was myself low-spirited and disappointed. +p53537 +aVI found myself a place after looking for one for a long time. +p53538 +aV In an aeroplane. +p53539 +aVI was angry at my boyfriend who had promised to come to see me but did not because he spent the evening with his pals. +p53540 +aVThe breaking up of a relationship. We decided that the relationship could not carry on, so it was no surprise to me. And anyhow, I had known it would happen sooner or later. +p53541 +aVThe disgust I feel towards a certain person. +p53542 +aVAfter an event in which I felt that I had acted unfairly. +p53543 +aVAt my job, I got disproportionately angry with a child. My reaction was not as it should have been. +p53544 +aVI went to see the entrance examination results at university. I rejoyced at my success. +p53545 +aVI borrowed a car which was supposed to be used for a long journey a few hours later, and one of the tyres burst in the middle of the town and I did not know what to do. +p53546 +aVAn utterance, which I had intended to be a joke, was taken as an offence. In my opinion, this was stupid, and I got angry. +p53547 +aVMy best friend had a relatively severe illness. I was sad because she was suffering. +p53548 +aVA man tried to have sexual intercourse with me, though I had communicated my unwillingness. Later on, I felt disgust at that person as well as myself because I had partly submitted. +p53549 +aVI told my friend about how I had calculated my salary by cheating a little. When my friend remarked about it, I understood that it was wrong to do so, and I felt ashamed. +p53550 +aVI am going steady with a boy, but I had sexual intercourse with another one, and I felt guilty about it afterwards. +p53551 +aVA good report card (a scholarship) in primary school. +p53552 +aVI was walking home with a friend at night along a quiet street. Something started rustling in the bush : it was an exhibitionist. +p53553 +aVI got angry at a friend of mine whom I caught reading my notebook (almanach). +p53554 +aVWhen my grandmother died of cancer. +p53555 +aVIn a lift a drunken, fat and untidy man tried to make advances at me. +p53556 +aV Sometimes I have by accident said to another person something in which it is easy to read a negative attitude. +p53557 +aVFor the sheer pleasure of it, I quarelled with my boyfriend who was trying to be especially kind to me. +p53558 +aVWhen I made the acquaintance of a certain person. +p53559 +aVWhen abroad, while driving a car along a dark, winding road. +p53560 +aVWhen my sister took my things without having asked for my permission first. +p53561 +aVWhen my grandfather died. +p53562 +aVWhen I was working, I got treated in a way which I felt was not democratic. +p53563 +aVWhile working as a domestic helper, one day I had not cleaned up very well and they made a remark about it. +p53564 +aVWhen I decided to move away from my parent's home, my mother told me that it was as if a part of her had been torn out of her. +p53565 +aVWhen I went to a job interview, I met a person who was very nice, and his attitude made me glad. +p53566 +aVMy episode of fright happened when I came to study. I had to stand in front of my still unknown fellow students and talk about myself. My hands shook, I flushed and became tongue-tied. +p53567 +aVI felt guilty when I spent a night at my boyfriend's place, particularly because I had been harsh and spiteful when I had left home. The reason was that I feared a possible discussion on the subject and I wanted to leave defiantly. +p53568 +aVI was in a restaurant with my boyfriend when I saw my best female friend after not seeing her for two weeks. We rejoyced, hugged and had a long talk. +p53569 +aVOne evening, while going to meet a friend of mine, I had to cross a meadow by a dark road. There were bushes on the other side of the road. The weather was damp and a bit foggy. I heard steps behind me and kept speeding up my steps all the time. +p53570 +aVMy brother told me that a person (whom I know) had insulted him. I am very fond of my brother, and as he himself can not get angry or hurt, my protectiveness was aroused and I got angry. +p53571 +aVMy guinea-pig had been ill for a couple of days. One evening, when I came home I enquired as to how it was doing. My mother's expression told me that it had died. My knees refused to support me and I began to weep convulsively. +p53572 +aVI happened to see two boys fighting, one of them fell down and hurt his head. The other one used this to spank the head of the boy on the ground. +p53573 +aVI had been away all night without having told my parents about it. In the morning when I came home, my mother looked tired. She said that she had been awake all night because of me and that she was angry and disappointed. +p53574 +aVI had not written to, or called my grandmother, who was lonely, for a long time. My mother asked me to call her on her behalf and when I did so, my grandmother was delighted and she told me that she had been waiting for some news from us. +p53575 +aVWhen I was sick my husband bought me a piece of cake. +p53576 +aVI saw a man who had had a heart-attack and who was being treated for it. I feared that my own father could have been there. +p53577 +aVWhen I saw a big man hit another one, and nobody did anything. +p53578 +aVWhen my sister left to go home, in Sweden, after the Christmas Holidays. +p53579 +aVI once watched the series called ""Dynasty"" on TV, and I detested it. +p53580 +aVI feel guilty as I am not working, and even my studies are not progressing. +p53581 +aVWhen my red-cheeked, content child runs to meet me in the yard of the kindergarten and gives me a moist kiss on my cheek. +p53582 +aVA neighbour's girl had disappeared and many people were looking for her. Someone had gone to notify the police. Something had certainly happened to her. +p53583 +aVWithout my permission, my son had made popcorn after coming back from school. The consequences were a spoilt kettle and chaos in the kitchen but what could have happened with the hot grease ? +p53584 +aVThe death of a close relative. +p53585 +aVOne of my fellow students used questionable and unfair means to advance her studies faster than others. I detested her. +p53586 +aVMy friend told me in a fairly loud voice the blunders she committed last night. +p53587 +aVI stopped my car in front of a pedestrian crossing as a child was crossing the street. The car driving in the next lane did not stop and the child got hurt. Had I not stopped ... +p53588 +aVAfter my vacations, one day after a lecture it occured to me to buy a rose for my mother. We went together to a pub and my mother told me that she would be getting married next Spring. I did not known about it and so was all the more glad. +p53589 +aVI work at a day care centre, and one day when the children were outdoors a four-year old boy disappeared from the yard. I was not looking after them then, but as the manager it was me who was responsible. +p53590 +aVI was on vacation, and therefore I did not attend a meeting of the day care centre. Nevertheless, the very day I came back they called me early morining to ask me ""what are you going to do about the matter ?"" (which had been discussed in the meeting). Then I got angry. +p53591 +aVWhile travelling in a bus, there were three people sitting behind me (two men and a woman). They were drunk and the conversation was unbelievable (about fucking, fellatio, etc...). They tried to get others to take part in the conversation. I loathed it and felt like crying. +p53592 +aVWhen I was seven years old, I stole a chewing-gum from a big glass bowl on the counter of a nearby shop, and I got caught. +p53593 +aVI am the secretary of an association, and during the last meeting I forgot to take the minutes. +p53594 +aVI had been away from home for a long time and when I came home I was delighted. It was wonderful to see familiar, dear people and I was rejoycing in advance. I had been feeling very lonely. +p53595 +aVI awoke at night and did not remember dreaming about antthing in particular. I just felt oppressing fear, it was dark and all the others were sleeping. +p53596 +aVOne winter day I, unwillingly, was outdoors with my younger brother (10 years younger than me). I lost my temper on him and wanted to throw my brother down the snow bank we were on. I pushed him but not as hard as I had wanted to. We were alone the two of us. +p53597 +aVI was on a class excursion, by boat to Stockholm. At night my class mates prepared to clebrate their motive in life which was ""life is merriment"". I felt depressed about the way they sought happiness. +p53598 +aVI was on my way home by bus. A man who had drunk a fair amount of alcohol started talking, trying to hug and pat a woman sitting next to him. Fortunately it was not me. +p53599 +aVI gave a wrong answer at school. +p53600 +aVWhen my little brother asked me to play with him, I told him that I had no time and that I would play with him the next day. However, the next day I said the same thing. +p53601 +aVWhen, after a long time, I saw a girl with whom I was in love. +p53602 +aVWhen I was walking on a fairly out-of-the-way street. +p53603 +aVA friend of mine had promised to arrange me some tickets for a concert which I considered important. He could not get them the way he thought he would, so he gave up the whole thing. +p53604 +aVI was sad when I saw that a beautiful girl was not attainable. +p53605 +aVI heard somebody talk about studies in a highly enthusiastic ""student-like"" way. +p53606 +aVWhile attending some affairs, which were taking some time, with a bank officer, I felt that my clothes and appearance were out of place, too raggy. +p53607 +aVOne evening I went out with some friends of mine, although I was supposed to stay at home with my little sister who is 11. +p53608 +aVWhile watching an entertainment program in which there was a clever and amusing sketch. +p53609 +aVWhen I was in the army, a room mate of mine came back from furlough and threatened another fellow with a knife. +p53610 +aVThe last day of school is traditionally celebrated by singing a song about all the students who are leaving. In the song about me, there were things which irritated me a lot. +p53611 +aVI worked for seven months in a factory, and made friends with a fellow worker. Later, I visited my former fellow workers and was told that, while in the army, my friend had shot himself. +p53612 +aVThe behaviour of a fellow towards me and some others in the army was really mean. I detested this. +p53613 +aVI tried to date a girl, but she refused. +p53614 +aVWhile doing some calculation exercises, I neglected a part of it, though I had marked it as done. By chance, I was asked to demonstrate this very part on the blackboard. +p53615 +aVIn the army, my result at the shooting exercises got me a three day furlough. +p53616 +aVWhen I was 8 years old, I would usually come home from school with my mother in a car. For the first time I had to take the school bus, and I mistook the bus stop and found myself two kilometres away from where I lived. I was very scared, wondering how I would get back home. +p53617 +aVI read in the newspaper that the Student Lodging Fund was going to build new appartments for refugees (in my opinion this is the state's affair). This is when only a fractoin of the students can find an appartment. +p53618 +aVI lead a rather secure life. The only thing I can remember is a song from the nineteenth century which is against alcohol. Both the melody and the word (although naive) effected my emotions. +p53619 +aVYesterday in the elevator a man started smoking, this is something I just can not tolerate. +p53620 +aVIn primary school I once faltered while answering a question and the others started laughing. +p53621 +aV Generally when I am shopping I feel like I were guilty of all the thefts through the year (I have never stolen). +p53622 +aVWhen my favourite football team made a goal and was about to win the Cup of England. +p53623 +aVI was less than 10 years old when our neighbour's dog chased me to the roof of a small shed and there seemed to be no hope of getting away from there. +p53624 +aVWhile playing a ball game, I was just about to make a goal when I was thrown off my feet, and I failed to score the goal. +p53625 +aVWhen I heard about the death of Frantois Truffaut, the French motion picture director, on the radio. I had planned to go and see his last film. +p53626 +aVI saw a movie called ""The Thing"", the film directed by John Carpenter. The monster in the film made me feel disgusted. +p53627 +aVI had misbehaved at a party and did not wish to meet the person in question later. +p53628 +aVWhile playing a ball game, I made a mistake and we lost the game. +p53629 +aVWhen I was in the sauna bath. +p53630 +aVI had a dream in which I was an African elephant. +p53631 +aVWhen I came for the lesson, it was cancelled and I had to fill in a questionnaire instead. +p53632 +aVWhen my car froze, and I could not start it. +p53633 +aVWhen I saw our computer teacher. +p53634 +aVWhen I was going downhill on skis, and fell down twice the first time. +p53635 +aVWhen I was involved in a car crash. +p53636 +aVI passed an exam which I thought I had failed. +p53637 +aVMy mother had not come home at midnight. She had forgotten to tell me about it. I was very young and all alone at home. +p53638 +aVMy girlfriend started singing (she cannot sing) and did not stop despite my asking her to do so. +p53639 +aVWhen my grandmother died of cancer. +p53640 +aVWhen I was still a child, I saw a horror film on TV in which there was a rotten human skull. +p53641 +aVAs a small boy, I took a coin from an empty taxi cab. My mother saw it and told the driver about it. I even knew the driver. +p53642 +aVWhen I betrayed my former girlfriend. +p53643 +aVNew Year's Eve party in the country, I hardly knew a person; my partner spent most of the time at the bar. I had little opportunity to get to know people because our table was separated and my boyfriend's parents were present. +p53644 +aVChristmas Eve: there was a tension between my parents, they did not even try to restore a harmonic atmosphere. Mother stayed in her room almost the whole day. I felt alone and was very sad. +p53645 +aVFather said: If you are pregnant, you will have to procure abortion. I was filled with disgust against my father. +p53646 +aVI had an intimate relation with my boyfriend, but unfortunately we had sexual problems; therefore I deceived him, but I was ashamed when I told my friend about it. +p53647 +aVI work at a commercial house from 7 to 10 a.m. On a very cold day in winter I was late - and let a fellow worker stand in the cold for half an hour. +p53648 +aVAfter one year of searching, my friend and I have found a flat we are able to pay for. +p53649 +aVCar accident in the middle of the night. +p53650 +aVAt the weekend I wanted to be absent from school because of a sports event, but my teacher refused to give me the day off because he didn't like me. +p53651 +aVWhen I was six years old, my favourite cat died. +p53652 +aVA gigantic spider climbed over my face and what is more - in my own flat. +p53653 +aVI was very fat and felt absolutely unwell. I was afraid of leaving the house and getting to know new people. +p53654 +aVI was said to be responsible for my mother getting ill and growing thin. I did not realize that it really was my fault until several weeks later. +p53655 +aVI won a car in a prize-competition. The moment I was informed about it, I felt joy. +p53656 +aVMy sister had to undergo a very complicated operation, her eyesight was at stake. +p53657 +aVI had a quarrel with my parents; I was convinced to be right. +p53658 +aVI heard that a friend had died in an accident; group situation: suddenly a friend came in and said ""Have you already heard that...""; there was a terrible consternation, silence, then everybody shouted excitedly ""How could that happen..."". +p53659 +aVScuffle in a carriage of the underground in Vienna, three drunk men thrashed a man in a wheel chair - I watched the scene from another carriage. +p53660 +aVI put an end to a friendship with a girl - I had only pretended love and affection to be able to sleep with her. +p53661 +aVA young girl tried to put an end to her life because of lover's grief; not until she was in hospital I heard that I had been the reason for her action. +p53662 +aVIn order to be admitted to my final examination, I had to pass two examinations. As I had not studied very much, I resigned myself to be left behind. Nevertheless I succeeded in these examinations. +p53663 +aVI had not told my parents about my bad marks in school. One day, my father wanted to speak to the teachers. Fortunately I could influence my parents to take it easy. +p53664 +aVI wanted to go to a friend of mine who had a party; at the moment I wanted to leave, my father said I couldn't go because he needed me for some work in the afternoon. +p53665 +aVA friend of mine, who had repeated a year at school once before, did not pass the final examination and had to take it again half a year later. +p53666 +aVEco-activists demonstrated against a project to build a power station at the Danube in the middle of a lowland forest (Hainburg) and the government decided to delay it for another year. When my father heard about it, he said that we needed another Hitler. +p53667 +aVThere was a time when my room looked terribly untidy; just at that time my aunt came to see me; fortunately I could prevent her from entering the room. +p53668 +aVI was supposed to fetch some friends at the bus stop, but I did not do it because my father was in a bad mood and I was afraid that he would grumble. +p53669 +aVMy boyfriend returned after a long absence. +p53670 +aVMy car skidded on the wet street. +p53671 +aVI wanted to see a friend, I had been looking forward to it and had certain expectations, but he did not pay any attention to me, played cards with other people. +p53672 +aVA good friend quitted me after he had behaved in a strange manner. +p53673 +aVIn broad daylight I saw an untidy old man pissing and playing with his penis in the middle of the town. +p53674 +aVSomebody who knows me very well discovered that I had told him a lie. +p53675 +aVWhen my boyfriend was away, I flirted with his best friend; I felt guilty the next day. +p53676 +aVRecently a good friend only called me when he needed something. He never said ""please"" or ""thank you"" or any other kind word. +p53677 +aVMy favourite horse died. We had tried our best to save him, but it was hopeless, he had to be shot. +p53678 +aVI read a book about the sexual phantasies of women; I read about a woman having sexual intercourse with a dog. +p53679 +aVIn our flat the bath-tub is in the kitchen. At the beginning I had very intensive feelings of shame when I had a bath and people were in the kitchen. +p53680 +aVI had to take care of the plants of a friend of mine for several weeks. I watered them, but let them stand in a cold room so that two of them perished. +p53681 +aVWhen I met a good friend after a long time. We had had a quarrel but after two weeks I was really glad to see him again. +p53682 +aVWhen we stayed in Vienna with our class, my friend and I behaved incorrectly. Our teacher threatened us with exclusion from school. +p53683 +aVWhen I lost my driving license because I had been driving while under the influence of alcool. +p53684 +aVMy mother's death. +p53685 +aVWhen I entered the dissecting room for the first time. I think I felt disgusted mainly because of the bad smell of formaline. +p53686 +aVI think I felt ashamed for the first time when I entered a night club. +p53687 +aVDuring a ski tour with a friend, we two had drunk too much. When we went down the slope on ski, I lost my friend who had lost his way. I thought that something must have happened to him (he finally arrived but after a very long time). +p53688 +aVMy father stayed abroad for one year. He does not like to write letters because he makes ortographic mistakes. I never had a good relation to him. He wrote me a letter in which he said that he loved me. +p53689 +aVWhen I was a child, I was always afraid of my father. Just when he looked at me, I felt frightened. +p53690 +aVA colleague asked me to study with her. I could not explain things as perfectly as she had expected. So she reacted in an aggressive manner. +p53691 +aVDuring the Christmas holidays, I went to see my parents and stayed with them for two weeks. After two or three days, we had the same conflicts we had had ten years before when I had lived with them. They were glad when I left. +p53692 +aVOld man in hospital, hollow-cheeked, only one half of his nose and glass-eye, rattling breath. +p53693 +aVWhen my father came into the bathroom and saw me standing there naked. +p53694 +aVI live with my boyfriend, we have a close relationship, I fell in love with another man. +p53695 +aVWhen I met my girlfriend - I had not counted on that. +p53696 +aVOne night I had a feeling that somebody was stealing my car, but I was too frightened to go and see. +p53697 +aVWhen we rearranged furniture in our flat and got stuck in a chair. +p53698 +aVA person died (not really a friend). +p53699 +aVSeveral weeks ago, I had problems with friends, I felt disgusted by a friend. +p53700 +aVWhen I was a child, I thought that I had to be ashamed when asking and doing certain forbidden things. +p53701 +aVWhen quarreling with friends. +p53702 +aVIn Southern Tyrol, I was gathering apples, it was a fine day, I was not thinking about anything, I felt an overwhelming joy. +p53703 +aVMy girlfriend and I slept in a lonely hut (we had drunk alcool). Suddenly some soil fell on us, then some water. Although we tried hard, we could not find out the cause. +p53704 +aVI helped my little sister (13 years) learning mathematics. Obviously she did not want to understand what I explained and started to cry. I grew angry. +p53705 +aVWhen my girlfriend told me that she wanted to leave me. +p53706 +aVOn a trip I passed by a cellulose factory. It was a fine day, beautiful landscape; I observed this factory with disgust. +p53707 +aVWhen I went to a sauna with my father for the first time (I was 16). When I entered the sauna naked, I felt ashamed for a short time. +p53708 +aVI came home from a discotheque at half past four in the morning, although I had promised my parents to come home at midnight. From 3 a.m. I felt guilty towards my parents. +p53709 +aVA friend I had missed very much came to see me unexpectedly. +p53710 +aVOn my way through lonely streets I met with a huge stray dog. It stopped at some distance and looked at me. I tried to ignore it but I was very frightened. +p53711 +aVA friend of mine tried to persuade me to go at her place to act as a model because she felt too tired. It was a quarter of an hour before the appointed time, I had just lied down and did not want to go because it was too late anyway. She said that I only was talking about looking for work, but if it was possible I would not accept it. I was angry about this unjust judgment. +p53712 +aVAfter I had lived with my boyfriend in a foreign country for half a year, I saw that it was impossible for me to stay with him (for economic reasons). We separated although I loved him. +p53713 +aVIn a certain book I read about cruelties and violence in prison and souteneur circles; I felt especially disgusted when I read detailed descriptions of physical and mental torture of less powerful people. +p53714 +aVWhen I talked to a psychotherapist for the first time, I started to cry; first I talked to him but he did not say anything and after a while I was crying. +p53715 +aVI went shopping with my mother and sister (17 years old). Mother always told my sister what she should buy. Instead of assisting my sister in defending herself against mother's interference, I just behaved aggressively towards my sister. +p53716 +aVWhen I worked as an ""au-pair-girl"" in London, I received a call from a good friend who told me that she was in London too and wanted to see me. I was very glad - after that call and especially when I saw her. +p53717 +aVIt was on St. Claus Day when I was five years old. St. Claus and his Devil Servant came to see me. St. Claus' Devil Servant rattled with his chain and bowled terribly. I was so frightened that my parents had to ask him to leave. +p53718 +aVA friend called me and told me that she wanted to come and see me. She lived in a village at 50 km distance fom my home town. Next morning I expected her but she didn't arrive. As I got impatient I called her but her parents told me that she had gone skiing. I was very angry because I had cancelled an appointment to be able to see her. +p53719 +aVWhen I was eight years old my father was run over by a car. When I saw his body I was sad beyond words. +p53720 +aVA friend prepared a soup with chicken heads and invited me to eat it. I saw the eyes staring at me and the tongues hanging out of the bills. I was so disgusted that I felt nausea and had to leave the room. +p53721 +aVWhen I had to go to the gynecologist and to sit on that special chair, I felt ashamed. +p53722 +aVAfter a terrible quarrel with my family, I withdrew in my room. I felt guilty because I had caused this scene by my aggressive behavior. +p53723 +aVI had the unexpected possibility to see a friend I like very much. +p53724 +aVI was afraid of a certain examination although I was relatively well prepared. +p53725 +aVAt the hairdresser's, I got two stains of dyestuff on my new trousers. These stains are not removable, so I cannot put on the trousers again. +p53726 +aVIn 1977, my grandfather, to whom I had a very close relationship, died. +p53727 +aVA drunken man forced me to kiss him. +p53728 +aVA friend started to insult another person without reason and I felt ashamed of her behavior. +p53729 +aVI had to call somebody between 12 and 12:30. As I had no possibility to call him at this time, I did not do it until 3 p.m. +p53730 +aVAfter a one year's stay abroad, I returned home. I was even more glad to see how much my family was pleased to see me. +p53731 +aVI went home all alone from a restaurant. It was dark, I went very fast. Behind me, there were some drunk men who shouted at me. By chance, I met some friends who accompanied me. +p53732 +aVA friend who shares the room with me, opened the window in the morning and left the room the whole day. When I came home in the evening, the room was so cold that I couldn't stay there. +p53733 +aVWhen my aunt, whom I had loved very much, died. When I heard about her death, I was not as touched as at the funeral. I really became conscious of her death at that moment. +p53734 +aVA friend told me how he managed to win the sympathy of as many people as possible. He said he first listened to what they said and then he tried to only say things they would like to hear. He would never express his own opinion. I felt really disgusted when he told that. +p53735 +aVIn a restaurant, I made the acquaintance of a boy who always told the same things in a very loud voice. I laughed and said to him that he always repeated the same things. Some time later I heard that he had undergone a complicated brain operation. +p53736 +aVAfter closing the front door I realized that I had left the key inside the house. I felt even more guilty since it was not my own house but the house of people I hardly knew. +p53737 +aVOn our way to France, my girlfriend and I went to Verona. By chance we met an Italian couple - they gave us two tickets for the dress-rehearsal of ""Aida"". It was a different world for us full of fascination. After the representation we ate a phantastic pizza in a restaurant near the ""Arena"". +p53738 +aVOn a mountain tour, my girlfriend and I passed by an inn. Near the house there was a big dog which began to follow us. As my girlfriend is afraid of dogs, I had to draw his attention to me. He jumped towards my shoulders and wanted to play with me but I really did not like that. +p53739 +aVI arrived in Vienna in the middle of the night. I asked for some silly information - as I realized myself afterwards - and the inquiry clerk reacted in a very arrogant manner. +p53740 +aVI had to leave my girlfriend for 4 weeks because of my studies. This happens frequently. The last 24 hours before my departure are always very depressing. +p53741 +aVWhen I stayed in the house of friends, I washed my face and wanted to dry it with a towel. This towel seemed to have been used over a long time already. It smelled indefinably awful. +p53742 +aVA friend of mine has not very much money. Therefore, once I stayed with him and his girlfriend, I bought some meat, but nobody wanted to go and prepare it for dinner. My friend said ""I thought you wanted to invite us for dinner"". ""Of course"", I said, but I thought by myself that it must have been enough that I had bought it. +p53743 +aVIt happened when I still went to school: I got closer to a girl but I considered it only as an ""affair"". Only much later I realized how painful this must have been for the girl. +p53744 +aVWhen I was informed that a short story I had written had been accepted for publication. +p53745 +aVSome friends and I were crossing a street when one of my friends was seized by a car and thrown aside. I had seen the car coming in our direction but I did not have enough time to react and prevent the accident. +p53746 +aVI wanted to clear up a misunderstanding with a friend that I had caused. A third person meddled in our conversation, turned my efforts to ridicule so that I did not succeed in what I had intended. +p53747 +aVDeath of my grandmother. +p53748 +aVIn school I had difficulties mith mathematics. When I had to work for an examination, I really felt disgusted. +p53749 +aVI played in a stage play. Suddenly, in front of 200 people, I could not remember the words I had to say. +p53750 +aVOne night I did not come home without telling my parents and I did not want to speak about it afterwards. My mother cried. I had a bad conscience and felt guilty. +p53751 +aVAfter 3 weeks I saw my girlfriend again. +p53752 +aVOne evening, in the tramway, I was afraid of two drunk men molesting my girlfriend and me. +p53753 +aVI went singing with a group of young people on January 6th (The three Magi), a local custom called ""star singing"". One of the girls, my girlfriend, broke the star. Being the accompanying person, I felt very angry thinking of the consequences. +p53754 +aVWhen the grandmother of my friend died in a hospital. My friend was crying and I was sad, too. +p53755 +aVI saw a physically handicapped young man whose spittle ran out of his mouth while speaking. +p53756 +aVIt was in a group situation: suddenly it was my turn to say something, but I felt that I was not able to express myself very well - I felt ashamed and blushed. +p53757 +aVMy girlfriend's results in school had become worse because I prevented her from learning (we often went out etc.). +p53758 +aVI went shopping with my parents - my father payed everything for me, I was very glad. +p53759 +aVWhen I was a child, I heard the floor cracking and I thought there was a burglar in our house; I hid under the blanket and trembled. +p53760 +aVDuring a lecture, a colleague who did not know anything about the subject, got on my nerves asking silly questions. +p53761 +aVWhen my grandfathers died and I realized how much I would miss them. +p53762 +aVDuring a football game, another player who was perspiring very strongly ran into me. +p53763 +aVI tried to pass an examination particularly well, but I did it worse than ever. I felt ashamed. +p53764 +aVDuring the military service, I lost a part of an equipment; I accused another person and he was rebuked and punished. +p53765 +aVAt a choral concert I appeared as a solist. The concert5 was very good, I forgot all the hard work that had been done before. There remained only an undescribable joy and a feeling of warmth, security etc. +p53766 +aVI am a ""cantor"" - I sing psalms in church. Several weeks ago I had to sing too, but the organist did not tell me in time. As I did not know the psalm, I was afraid and said that I could not sing. +p53767 +aVDuring the Christmas holdidays I wanted to invite my brother, his girlfriend and their child for dinner. When I said to my brother's girlfriend that I would like them to come at my place for dinner, she refused and never mentioned it again as if I had never asked her. +p53768 +aVSeveral years ago my brother died in an accident. When I heard about it, I was very sad. It took years until I resigned myself to it. +p53769 +aVI read a book about the situation in South-Africa, about the terrible violations of human rights. I was disgusted with the white population. +p53770 +aVMy P.T. instructor also works as a masseur. He wanted to massage me, therefore I had to undress. For the first few times this was not easy for me; I got gradually used to it. +p53771 +aVSome time ago I took the driving test. I did answer the theoretical questions very well, but I failed the practical driving test. It was my fault because I had not enough practice. +p53772 +aVWhen my brother came back home after staying in hospital. He had undergone an operation which had been a matter of life or death. When he came home I could see him smile for the first time after may weeks. +p53773 +aVAfter a short stay in Marocco we missed the ferry-boat back to Spain and we had to look for an accomodation. By chance we met a man who offered to take us to a camping site. While I was sitting in his car I was terribly afraid because I had heard of people being robbed in Marocco. +p53774 +aVAfter an exhausting day I came home and wanted to take a bath to relax. My father wanted to take a bath first and when he had finished after an hour, there was no hot water left for me. +p53775 +aVI met some nice people during my holdidays. When they left I knew that I would never see them again. +p53776 +aVA drunk man attacked his wife and wanted to humiliate her by insulting her. Then he turned violent and started to beat her in front of her child. She left it happen without saying a word in order not to make things worse. I watched the scene and tried to calm the man, but without success. Just because he was stronger we had to comply. From that day I detested him. +p53777 +aVFor a medical check-up, we - boys and girls - had to take off our clothes with the exception of our underwear. Then we had to go into another classroom where older pupils were sitting and staring at us. +p53778 +aVI allowed my little brother to clean the bathroom in his own way. My mother came and saw the floor overflowed with water, slapped my brother in the face and told him to go to bed immediately. +p53779 +aVOne day I did not feel very well and I wanted to talk to somebody. A friend invited me for dinner and I was very glad. +p53780 +aVI was driving my car and it was very misty. It was in the night and I was alone in my car. I felt totally insecure, nervous and overstrained. +p53781 +aVMy mother treated me unjustly as if I was a little child. I said mean things. I was unable to defend myself adequately. +p53782 +aVWhen my uncle died whom I had loved very much. I was very sad and I felt totally helpless. +p53783 +aVI watched the news at the TV, it was a commentary about ""Hainburg"". I felt disgusted when I heard members of the union speak about the situation. +p53784 +aVI took the tram without paying. There were many people around me when I was caught by a controller. I felt ashamed but also angry. +p53785 +aVI behaved in a nasty manner towards a friend, I said things which I could have said in a more friendly way. After that I felt guilty. +p53786 +aVA friend of mine often had difficulties with her parents. Once she had a child she had a better relationship with them. +p53787 +aVOnce our school class went skiing. On a steep slope a boy standing behind me lost his balance, fell down and drew me with him. I slided down the whole slope. At about 1 m distance from a tree I could stop. +p53788 +aVIt happened in a tram: some older people started to grumble about the young people just because I had not immediately left my seat to them. +p53789 +aVWhen I was younger I was very good in apparatus gymnastics. I always won in competitions, but once I was only at the fourth place. +p53790 +aVA friend was assaulted by a young man on her way home. +p53791 +aVSome men were talking about me and my sister. +p53792 +aVDuring my holidays I had a boyfriend who turned away from me outwardly. Therefore I danced with another man and raised certain hopes in him. After a while I had to explain to him the circumstances +p53793 +aVI received a letter and a Christmas present from a person I had not seen for two years. +p53794 +aVI was at home alone and my mother had asked me to heat the house. I put too much fuel into the stove. It began to glow and there was a noise in the whole house as if it was going to explode. +p53795 +aVAt the end of my holiday job I got less money than was due to me and nobody mentioned anything about that. +p53796 +aVMy little cat which I had raised all by myself, hanged itself when playing in the garden. +p53797 +aVAt school a classmate who was a very good pupil had to help another boy who performed less well. He told him on purpose the wrong things so that he had to repeat a year. +p53798 +aVWhen I was a child I played my mother a nasty trick to make her feel hurt. +p53799 +aVI had promised my friend to take her to an important appontment but I was late. So she missed the opportunity to get a wellpayed holiday job. +p53800 +aVI have a boyfriend and I am very fond of him. When we had our ""11-months jubilee"", I had forgotten it. But he gave me a red rose. +p53801 +aVWhen I was a child I was afraid of big dogs. One day when I came home a big dog was laying in front of our door. I was so frightened that I did not dare to enter the door and I waited until somebody passed by. +p53802 +aVI share my small flat with my friend. On her birthday we could not see each other until evening because we had to stay at the University all day. In the evening I left a lecture before it finished to be able to buy flowers for her. When I was at home she called me to tell me that she would stay the night with her boyfriend. +p53803 +aVWhen I was a child I had a grass-parakeet I liked very much. His legs were crippled so that he could not move very fast. Once I came into the room, did not notice him and stepped on him. A few days later he died. +p53804 +aVWhen I was younger I often saw my father come home drunk (he had big problems at that time). Once he woke me up in the middle of the night and shouted at me. +p53805 +aVAt school I was bad in mathematics. Although my teacher had admonished me to do my homework, one day I had forgotten to do it. When my teacher noticed it, I blushed and was ashamed to be rebuked in front of the other pupils. +p53806 +aVWhen I was a child I often quarrelled with my younger sister. Once I became so angry that I slapped her in the face. She cried and shouted so that my mother came in and scolded me. +p53807 +aVAfter a weekend at a seminar I saw my husband again. I hurried home hoping he would be there. We embraced - I enjoyed feeling his body. +p53808 +aVOne evening I stayed at home all alone. As we lived on the ground floor, I was often afraid of burglers. +p53809 +aVOne day, when riding on a bicycle path, a car coming from the opposite direction forced me to get off my bike although I had the priority. +p53810 +aVMy father died unexpectedly at the age of 53 years. He certainly would have liked to live longer. I was also said because I was confronted with the fact that I would die one day too. +p53811 +aVOne day, when I was twelve years old, my brother took some slimy substance swimming on the surface of a pot of vinegar made of cider and threatened to throw it at me. +p53812 +aVWhen I was ten years old a classmate laughed at me because I had told him that my father had retired. +p53813 +aVI felt guilty because I had not accomplished a thing as well as I had wanted to. +p53814 +aVA party with friends on New Year's Eve. +p53815 +aVWhen I was hitch-hiking and I went with a man who drived like a madman. +p53816 +aVI was in ""Hainburg"" in December and I was angry about the politicians and the police. +p53817 +aVI met again a very good friend after a year and realized that there had grown a certain distance between us. +p53818 +aVWhen I listened to a conversation of friends talking about the power of money. +p53819 +aVWhen my grandmother died - at her funeral. +p53820 +aVI read about a monk who had been murdered and put into a barrel which was filled with blood of pigs. +p53821 +aVI went for a walk with a very close friend; we were talking about our problems, I told her lies. +p53822 +aVI had to tell a collegue the time for an appointment with another collegue. I told her the wrong time - it was obviously my fault. +p53823 +aVI went to buy a bicycle with my father. When I wanted to pay, my father took his purse and payed. +p53824 +aVMy mother had fallen down from a ladder when she had been gathering cherries. Her back was hurt. Just when I arrived, I saw people of the life-saving service giving her medical care. +p53825 +aVI was waiting behind a car which was going to leave the parking place, because I wanted to park my car there. Because of uncoming traffic I had to wait for a short time - another driver placed his car on the place. +p53826 +aVMy partner left me after we had been together for a long time. +p53827 +aVAt a discussion a friend took a ""faschistic view"", what I had not expected. +p53828 +aVAt a weekend's seminar my trousers suddenly burst, therefore I was prevented from participating in several activities. +p53829 +aVWhen I was driving my motorbike I went into a bend incautiously and fell down. I was slightly hurt, the motorbike was slightly damaged. +p53830 +aVBefore Christmas I got to know a girl but our relationshop could not consolidate before the holiday. Therefore it was a big surprise to get a carefully hand-made present from her. - Our relationship grew closer. +p53831 +aVWhen I was a child, I fell into a cellar (when playing) and could be freed only with big difficulties. +p53832 +aVI was angry about several drivers who showed an aggressive and dangerous driving habit. +p53833 +aVWhen my grandmother died. I had a very deep relation to her (I lived with her for several years). +p53834 +aVSome time ago a girl tried to make me up without any action of my part. She used all possible means. Although I behaved refusingly she did not give up for a longer time. +p53835 +aVWhen I went to the sauna for the first time and there were men and women. +p53836 +aVWhen I was parking my car I was not cautious and bumped into another car. I caused considerable damage. The driver of the other car was very angry and I let him insult me because I felt guilty. +p53837 +aVA person whom I had not seen for a long time called me and invited me for a party. +p53838 +aVWhen I was walking on the street, a group of drunk, bawling young people approached. +p53839 +aVWhen I was house-hunting: Another person got a flat that I would have liked, too, because he heaped a floot of words on the letter. +p53840 +aVWhen my grandmother died. +p53841 +aVWhen I shoplifted a pair of earrings from Coles and my Mum caught me with them in my bag. +p53842 +aVWhen my mother was tremendous on the phone and we talked for hours. She was in a good mood. +p53843 +aVWhen I saw a good male friend unexpectedly after a year, as I've just returned from overseas. I was feeling tired, looking a mess, and nervous. +p53844 +aVWhen I wanted to talk to someone I liked and whom I have been told likes me (by his brother and even by himself) however he avoids any confrontation, and is vague. +p53845 +aVAfter having left the company of someone who gave me a lot of support and made me laugh, found myself alone for days on end. +p53846 +aVWhen a boy had continued to use foul language and swearing in front of a group of my friends. +p53847 +aVWhen I was about seven or eight I was caught having stolen a doll's dress from my next-door neighbour. +p53848 +aVFeeling guilt after greed, buying chocolate and pigging out to the point of feeling sick, especially as I am fat. +p53849 +aVWhen planning to marry. +p53850 +aVNo really strong such emotion. Just falling off to sleep when I caught sight of a 5 cm diameter spider crawling onto the pillow beside me. +p53851 +aVMy feelings towards would-be in-laws for their participation in recent broken relationship. +p53852 +aVRecent break-up of seriors long-term relationship, helped along by would-be in-laws. +p53853 +aVNo very strong such emotion. Treatment of my sister by her dancing instructor - he is a ""user"", i.e., takes advantage of her good nature. +p53854 +aVAfter failing a second attempt at Med 4, following a number of difficult personal circumstances. +p53855 +aVFailure to complete medical course as a result of failing fourth year twice. +p53856 +aVWhen Wayne and Sue (close friends) were announced our guardians at ther wedding. +p53857 +aVCar accident nearly occurred between us and drunk driver coming in opposite direction it missed us by approx 1 m and collided (after rolling twice midair) into nearby scrub. +p53858 +aVWhen boyfriend lied to me. +p53859 +aVWhen my boyfriend took me to his father's grave. +p53860 +aVOn boat trip - saw mother giving young child (aprox 6-7 years) cigarettes. +p53861 +aVWhen harassed by this boy - it was sexual (refer to GUILT). +p53862 +aVWhen in grade 3, late home from school every day for weeks because of harassment from a grade 7 boy I lied to mother about why I was home late. +p53863 +aVGetting a part-time job. +p53864 +aVSmall car accident. Black ice on the road - cars in front of us started zig-zagging and so did we. Car in front did a 180 turn we followed and ended up in a gully. +p53865 +aVPeople hunting animals. +p53866 +aVWhen my grandfather was sick, and died I felt more sad, though, when he was sick. +p53867 +aVPeople spitting in railway stations. +p53868 +aVFalling over. +p53869 +aVEating too much I felt guilty afterwards because I knew I shouldn't have overeaten as I'm putting on too much weight. +p53870 +aVWhen my last year's second semester results came through - I was ecstatic. +p53871 +aVI was sleeping in my room but woke in the middle of the night to think I could hear noises and see shadows moving. I felt that someone was in the house. +p53872 +aVAt school, a couple of years ago, a so-called acquaintance told lies about me to a teacher I was told about it by friends who overheard the conversation. +p53873 +aVMy grandfather died. He lived almost as a recluse not caring for himself as well as he should - Dad and we all helped as much as we could, but it didn't save him from himself. It was an unexpected death. His second de facto wife was lucky she wasn't jailed. +p53874 +aVIn my penultimate job I was responsible of a sections with several employers, after several years of dedication I was dismissed by a new chef, saying that I was incompetent. +p53875 +aVI assisted to a scene where the police attacked a person that didn't have his documents. The savagery was too much, and the attacked person bleeded to much. +p53876 +aVIn a party of friends I got completely drunk. +p53877 +aVOnce in my homes yard, I was plaing football with my cousin and in a certain quick the ball went on uncontrolled putting down a bird-cage, killing it. +p53878 +aVWhen I get something that seemed very hard like getting a job, a boyfriend, etc. A specific sutuations, was when I started to date a boy whom I liked for a long time. +p53879 +aVWhen I had to assume a position which I didn't expect. +p53880 +aVWhen I was dismissed unjustly from the firm where I worked, because there where persons that didn't have problems, and wouldn't miss in the jobs they occupied if they were dismissed. +p53881 +aVI felt very sad when I had to give up something that by right was mine and although I didn't get it, a kind of suvenir that people don't give you the right to have. +p53882 +aVThe acts of brutal violence in generally disgusts me. Fights, phisical aggrssion, etc. +p53883 +aVI felt ashamed when in a certain occasion I had to read a text and didn't stop stuttering. +p53884 +aVWhen I was reproved eighth grade of high school. +p53885 +aVWhen I talked with a teacher yesterday who, to say the least, was rude and unwise and had irrelevant opinions about a friend. +p53886 +aVThe loss of the woman who loved me most till today. +p53887 +aVIn a sexual experience with an unknown woman where after the sexual act I only could go away without looking backwards. +p53888 +aVWhen I wanted to kiss a friend and didn't succeed, I felt shame. +p53889 +aVOn a telephone talk where I was agressive and stupid without the least, reason or better motive. +p53890 +aVWhen I succeed in writing something I felt and doing it I felt well and very happy for being able to express to myself something that was suffocating me. +p53891 +aVWhen I crashed my car. +p53892 +aVWhen in a difficult moment I couldn't express myself correctly and my thought came out with distortions bringing about highly negative and distorted results. +p53893 +aVWhen I heard about the death of somebody I liked very much and I was not present either to see the person or to try to share my emotions with other friends. +p53894 +aVWhen I saw a woman subjugated by money and not being able to hide how she hated herself for not having the will power to get out of such a situation because it was convenient, according to what she told me. +p53895 +aVWhen somebody suddenly said something (about me) at a wrong moment and I didn't agree (at that exact moment I was needing an extremely positive word). +p53896 +aVWhen my mother surprised me while masturbating. +p53897 +aVI forgot to water the flowers in our flat and was rebuked by my friends who share the flat with me. +p53898 +aVAfter my final examination at school I was glad that the examination was over and that I had passed it. +p53899 +aVWhen I was a child, I had a nightmare. At that time, I was not yet able to tell anybody about it, so I was very frightened. I could not explain myself all that and I had to deal with it by myself. +p53900 +aVI was angry with a person who behaved terribly at a ball offending her relatives. +p53901 +aVWhen my grandfather died. When I heard about his death, I had a bad feeling in my stomach and I felt as if I had lost something very precious. +p53902 +aVMy brother caught a spider and let his frog eat it. +p53903 +aVOnce I spoke without thinking very much - it was quite a nonsense. +p53904 +aVI was not sure whether I should help an old woman going down a flight of stairs. I just watched her and saw how difficult it was for her to do it. +p53905 +aVFor about one year I had a rather bad relation with my father. Last Christmas Eve he invited me to stay withhim and I was very glad about it. It was a fine evening. +p53906 +aVI live outside Graz - so I have to go by bus. One day I went home from the bus stop alone. It was dark, I had to go through a forest and there was a dark figure behind me. I was very frightened. +p53907 +aVMy sister had promised to help me to do a translation from English into German. But the day I needed her she told me that she was busy - I was very angry. +p53908 +aVSeveral years ago my mother died. She had been ill for a long time, but nevertheless her death came unexpectedly. I did not and I still do not want to believe that it is true. +p53909 +aVI have a horror of spiders and snakes. On a walk through the wood I saw the body of a slow-worm (without the head). +p53910 +aVI came home from a party rather drunk. I said things I would never have said normally. Next morning I was terribly ashamed about what I had said. +p53911 +aVAn accident happened to my little cousin because I had not taken enough care of her. She fell on the floor and her hands were hurt. +p53912 +aVI had a little cat which was very sick. As I liked it very much I went to a veterinary with it. He told me how to tend it and it really recovered its health. Everybody said that I had saved its life. +p53913 +aVWhen I was a child, I had a terrible nightmare with St. Nicholas' Devil Servant. I asked my mother if he really existed and she said yes. The following nights I could not sleep and a light had to be left turned on. +p53914 +aVAs I usually do not start learning until a short time before an examination,, I once made up my mind to try to work for a longer time. But once again I did not do it - and got a bad mark. +p53915 +aVA friend told me about his cousin who is my girlfriend. He said she had treated him in a mean and nasty way. I was surprised because in front of other people she had always treated him in a friendly way. I am very sad about it. +p53916 +aVI went out with my sister, her boyfriend and his friend. I did not like this young man. But suddenly he overcame me and kissed me. He was very strong so that I could not defend myself. +p53917 +aVDuring the oral part of my final examination I made a mistake in speaking so that all the teachers laughed at me. +p53918 +aVThere was a time when I did not get on well with my sister. I always grumbled at her and said bad things about her to my mother. So my mother always scolded her. +p53919 +aVWhen I passed my final examination at school. +p53920 +aVWhen I was on a cave excursion with friends, I suddenly lost them and was afraid of losing my way in the cave. +p53921 +aVWhen I felt being treated unjustly by a teacher. +p53922 +aVWhen my grandmother died; I had a stronger relation to her than to my mother. +p53923 +aVWhen I was molested by an old drunk man. +p53924 +aVWhen I had a Latin examination in school. +p53925 +aVWhen I had drunk too much and nearly got an alcohol poisoning. +p53926 +aVWhen I met my girlfriend again in another town after a long separation. +p53927 +aVWhen I went home alone early in the morning, I had to go through a wood. +p53928 +aVA friend was unpunctual, we wanted to prepare ourselves for an examination. +p53929 +aVWhen my grandparents moved to another part of the town. +p53930 +aVAt the butcher's I saw an animal which had just been slaughtered; blood was dripping on the floor. +p53931 +aVIn school I was very bad in running long distances and my class-mates laughed at me for this reason. +p53932 +aVI had to take care of my little brother. When I met a friend I did not pay attention to him for a certain time and he was hurt while he was playing. +p53933 +aVOn my birthday, an old friend of mine sent me a card. I had not met him for a year and I was very glad that he had thought of me. +p53934 +aVOnce I spent a night with a friend at the secondary school. We told each other horror stories and suddenly we heard uncanny noises. I was terribly frightened. +p53935 +aVWhen we still attended school, my brother and I usually went to see our aunt and to show her our term's report. She rewarded us with money. Although my reports were as good as my brother's, he got more money. +p53936 +aVMy friend was pregnant, but lost her child during the second month. I went to see her at hospital - she was crying. I felt very sorry for her. +p53937 +aVWhen I attended school, our class visited an institution for mentally and physically handicapped persons. Although I tried to control my feelings, I was disgusted. +p53938 +aVAfter a party I spent the night with a friend. We both were drunk, the morning was disillusioning. A friend was me leaving the room and I felt shabby and immoral. +p53939 +aVI had to take care of a neighbour's child. I did not look after it all the time and the child fell down and was hurt. I felt guilty. +p53940 +aVA very good friend of mine had been away for three months. When we met again, we ran up to each other and embraced. +p53941 +aVOne evening my father told me to go into the cellar and get him a beer. I was terribly frightened at the idea of a man sitting in the cellar and assaulting me. For my defence I took an empty bottle with me. +p53942 +aVI had stolen a bottle of rum from a person who knows me well. He threatened to call the police if I did not pay 500 Shillings. +p53943 +aVWhen my uncle died I saw a funeral for the first time. All people stood around the open grave and cried. +p53944 +aVAt a party I met a girl who drew me to her, told me some nonsense and always wanted to kiss me. +p53945 +aVI put my head into the pullover of a girl to see her breasts. The girl looked at me so that I felt ashamed. +p53946 +aVMy uncle had promised to buy me a bicycle. As time went by and I had not received it yet, I asked my father to buy it for me. Later I heard that my uncle had wanted to offer me the bicycle on my birthday two weeks later. +p53947 +aVSeveral days after my final examination at school, I was sitting in an airplane on my way to Greece. I enjoyed that moment very much. +p53948 +aVOne night I was lying in my bed awake but I had my eyes closed. I saw figures with terrible faces and black frocks bending over me and touching me. I opened my eyes but I could still see them. I had the feeling that somebody was in the room. It was terrible. Only when I turned on the light I was able to go to sleep. +p53949 +aVI had arranged with a friend to go with him to Carinthia by car. We had arranged a place where to meet. I was a bit late and my friend had left already. I had no money to go by train. I nearly started to cry because I was so angry - it was very important for me to go to Carinthia. +p53950 +aVOur dog had to be shot because he had killed a roe. I liked him very much and so I could not resign myself to that. I hated the hunter who shot him. +p53951 +aVI was sitting in a station-hall and watching a lavatory attendant. She was very dirty. She started to eat something out of a dirty cup - it must have been something like lard. Then she took some breadcrumbs out of the pockets of her apron and ate them. I had to leave - I felt like vomitting. +p53952 +aVI had to go to the doctor's because of a veneral disease. I told the doctor that I must have been infected by my boy-friend. This was not true, but I was ashamed to tell the truth. +p53953 +aVWhen we were playing, I hurt my little sister, but towards my mother I did not admit that it was my fault. +p53954 +aVMy neighbour was not able to set his car in motion because it had snowed heavily. I helped him - he was thankful and invited me. +p53955 +aVI was skiing with friends and they wanted to ski-jump. I did not want to be left behind, so I braced myself and followed them. +p53956 +aVAt an examination I got a bad mark just because of a small mistake. When I went to the lector and wanted to talk about that, he did not listen to me but sent me away. +p53957 +aVMy cut was run over by a car. After searching for a long time I found her lying in a kerb. I was rather shocked and angry with the driver. +p53958 +aVWhen I watched a report about El Salvador on TV, I saw people who had been murdered by terrible methods. +p53959 +aVAt a cross-country race I wanted to take a short-cut (which is not allowed). I was caught and disqualified. All my friends had observed that. +p53960 +aVDuring a discussion I reacted very aggressively and so I made it impossible to continue discussing. +p53961 +aVOn my birthday I got a present that I had desired for a long time. +p53962 +aVWhen I am discussing something with a person and I realize that the other person is thinking over her own argumentations instead of listening, I become angry. +p53963 +aVWhen we were on holidays my girl-friend had to leave me after 4 weeks and I had to stay in Turkey for some more weeks because I had a job there. +p53964 +aVI studied medicine for several semesters. I was always disgusted when we had the dissecting-course. I cannot understand why some persons like this course. +p53965 +aVSome time ago we had a tournament in our tennis-club. For tactical reasons I was chosen to play against a much weaker player than I am. Although it would have been enough simply to win the game, I defeated him extremely. This would not have been necessary. +p53966 +aVI had a discussion with my girl-friend. After some time we started to quarrel and at least - to get the upper hand - I said that she was not as important to me as she might believe. Some time later I apologized for that. +p53967 +aVOn New Year's Eve I went in a disco with friends. I amused myself and got to know many other people. +p53968 +aVI had to go to the dentist's. When he touched my tooth with his drill, I was terribly aftaid of the pain I would feel any moment. +p53969 +aVI was very hungry and just wanted to start eating when a friend called me who usually talks for a long time. I was angry because I was prevented from eating. +p53970 +aVMy sister, whom I like very much, asked me for a favour which I refused her for some flimsy reason. Some time later I felt sorry for that and something like sadness. +p53971 +aVOn my way to a concert I went with a man who tried to molest me. At that moment I did not care much but now the impression fills me with disgust. +p53972 +aVI asked my friend to come with me to a disco because I wanted to be with a person I know well. But when I amused myself with others I let my friend sit alone, although I had asked her to come. +p53973 +aVI called my little sister to make her pick up her toy from the floor. When she still refused after I had asked her for the fourth time, we began to quarrel. At last the whole family was involved in this quarrel and trouble was brewing. +p53974 +aVI had a singing-lesson, but I was not very good. The last exercise was singing scales. I did that very well and my teacher seemed satisfied. +p53975 +aVA teacher wanted to instill a certain opinion and a certain behaviour into myself, what I refused. I was afraid when I saw him. +p53976 +aVA friend had promised to call me at a certain time. I expected his call impatiently but in vain. +p53977 +aVYears ago on Christmas Eve I felt very sad because I realized for the first time how I missed my father who had died at Christmas Years ago. +p53978 +aVA man whom I like, was drunk and tried to molest me. +p53979 +aVIt was the time when everybody spoke about and discussed Hainburg. I was also asked for my opinion. I was ashamed because I had no firm view of the whole thing and therefor was not able to join the conversation. +p53980 +aVI was on a concert-tour and therefor seperated from my boy-friend. But I needed warmth which was given by a male member of the orchestra. My feelings towards him were not very deep, but his feelings were. I felt guilty when he said ""I am not a radiator"". +p53981 +aVOn my 18th birthday I passed the driving-test. I was glad because I had had to study very much, because I had been lucky and because - as a proof that it was really difficult - not everybody had passed the test. +p53982 +aVAt about midnight I had to go by bike through Graz alone. On the whole it was a distance of several kilometers. A car followed me through the streets. Only when I went into a one-way street the car disappeared. The rest of my way home I was very afraid. +p53983 +aVI had studied for almost one week for my physics-examination. With difficulty I passed the examn. I was angry about the teacher and also about myself because I had not remembered enough during the examn and because the time that I spent studying was wasted. +p53984 +aVI had cared for a horse for 2 years. One day it was sold and I cried for several days because I was so sad. +p53985 +aVA friend of mine was telling jokes which I felt to be very disgusting, especially because I was eating. +p53986 +aVAt a carneval-party I smooched with a man - some days later I was rather ashamed for that. +p53987 +aVBy fun I had a tussle with my sister. Suddenly I obviously hurt her unintentionally - and she ran out of the room, crying. +p53988 +aVDuring my first week in Graz I met a girl who I had got to know in the train from Amsterdam to Graz. Although I had considered her very sympathetic, we had seperated without changing our adresses. +p53989 +aVMany years ago I saw the film ""Psycho"" by Hitchcock for the first time. When I saw the film I was alone and afterwards I hardly dared to go to bed and hardly was able to sleep. +p53990 +aVI had got a bad cold. My father said I must be crazy to go by motorbike at those temperatures. When I answered him that I did not care about a cold, he said that if I did not care for anything I could leave him (it was for the second time he said something like that). +p53991 +aVI was at home alone when I realized that a young roe approached our house. I hid because I did not want to frighten it. It limped. Some time later, when I thought that it had already run away, I saw it lying on our terrace. I came nearer and saw that it was terribly wounded. I informed the ranger who said that the roe must have been attacked by dogs. He had to shoot it. +p53992 +aVSeveral years ago I stayed with friends in the mountains for one week. We lived in a hut and had to cook for ourselves. One day my friend did not succeed in preparing spaghetti. That dinner was terrible - nevertheless we all ate rather much and had an improper and unsavoury conversation. +p53993 +aVMy mother and my grandmother were talking about one of my grandmother's friends whom I hardly know. I gave some deprecatory comments on him whereupon my grandmother told me that the man had died recently. +p53994 +aVWhen I still went to primary-school, I went on a ski-trip with my family. After skiing we went to a restaurant for lunch. Suddenly my father said that he had forgotten something in the car. He gave me the key and asked me to go and get it. I had difficulties with the key which was already bent. I asked my mother to help me. When she tried to turn the key it broke. We had no second key. My mother was blamed for all that and I did not say a word. +p53995 +aVI had not studied very much for my final examination at school, so I had to take an additional examination in French. The oral examination was not very hard for me - the more I was glad when I heard that I had passed it. +p53996 +aVWhen I was 8 years old my tonsils had to be operated on. This is not a complicated operation, but just before it started I was very afraid so that I will never forget it. +p53997 +aVMy parents are divorced, father pays alimony for me. Two years ago my sister who lives with father, suddenly asked mother for money. As she considered the amount of money my mother offered her too small, she brought an action against mother. I was terribly angry with my sister. +p53998 +aVI arranged with a friend to go skating the next day. He asked me to wake him up by telephone at twelve o'clock because we had come home late in the morning. Next day I called him - he was not at home. As something like that had happened to me several times before, I came to the conclusion that one cannot rely on anybody and I felt very sad. +p53999 +aVWhenever I see a spider or a snake I feel disgusted. +p54000 +aVWhen I had slept with a boy for the first time I felt ashamed for three reasons. First, because I was only 13 years old, second, because I did not really like him, third, because he had caught me napping. +p54001 +aVI had been together with my boy-friend for two and a half years, when he got to know another girl and not even tried to conceal that from me. I drew my conclusions and left him - I also felt a bit guilty for what had happened. +p54002 +aVMy boy-friend told me that he would take me to the training of the life-saving dogs. +p54003 +aVI was in a dark cellar and saw a glowing red point. I thought that it was a person with a cigarette - but it was only the red switch. +p54004 +aVA man treated his dog very badly - he insulted and beated him until the dog kept lying on the floor with his tail drawn in. +p54005 +aVA horse which I had liked very much was taken away. +p54006 +aVOn TV I saw a report about church in Amerika. A priest was shown who was performing miracles in front of the camera - I felt disgusted. +p54007 +aVWhen I was a child, my uncle came to see us. I spit at him and ran out - I do not know the reason for that. My father came after me and insisted on my apologizing. +p54008 +aVI quarreled with my boy-friend. He said it was unfair that I always started crying so that he had to give in. +p54009 +aVTo be able to prepare myself better for an important examination, I did not spend the nitht with my girl-friend but in the students' hostel. I had not done that for months. The day when I had the examn, somebody knocked at my door at seven o'clock in the morning. My girl-friend who likes sleeping late, had come to be able to be with me. +p54010 +aVI studied medicine for several semesters and at that time I developed a great fear of examinations. I was most afraid of my examination of anatomy. While other students were examined, I was dissecting. I was able to hear everything and was waiting with fear until it was my turn. +p54011 +aVWhen I come home in the evening, the first thing I do is to sit down and smoke a cigarette. One day I found the flat in a totally desolate state. My girl-friend had wanted to tidy up but had not finished. +p54012 +aVMy son's mother told me that she wanted to move to Vienna and take the child with her. This means a rather long distance for me. My whole family was sad and dumbfounded so that my own feelings were intensified. +p54013 +aVWhen a very near person got into an awkward situation but showed only helplessness and indecision. +p54014 +aVI spent an evening with my girl-friend. When we wanted to go to bed I was totally drunk. Next morning I felt rather ashamed. +p54015 +aVI threw away an object, which belonged to a friend, because I did not know what to do with it. My friend was very sad about that and I felt guilty. +p54016 +aVAfter a long time I saw my boy-friend again. +p54017 +aVMy first public appearance in front of a rathe big audience. +p54018 +aVI was angry about how the government acted concerning Hainburg, especially when I saw a discussion about it on TV. +p54019 +aVDeath of my father; he died of laryngeal cancer. +p54020 +aVWhen I got indecent offers. +p54021 +aVWhen I bought new skis; I was ashamed to tell the assistant that I am not good at skiing and therefor bought racing skis. +p54022 +aVMy schoolmates were teasing a pupil who was not able to defend himself very well; I should have taken his part. +p54023 +aVI thought that I had failed an examination, but when I was informed about the mark, I saw that I had passed it. +p54024 +aVBefore an examination: I had the fealing that I had not learned enough. +p54025 +aVOnce when I was playing table tennis I was already sure that I would win , but at last I lost the game. +p54026 +aVMy grandfather's funeral. +p54027 +aVIn cinema I saw a film which showed how a person was torn out his guts when he was still alive. +p54028 +aVI was sitting in a restaurant with friends. They asked me something which they thought I should know. Actually I know it, but at that time I was not able to remember it. +p54029 +aVI had an appointment with a friend. I promised him to meet with him, but at last I did not without having informed him. +p54030 +aVWhen I had a psychical crisis, I met a girl, who told me that she had had almost the same problems and how she had finally overcome them. +p54031 +aVI had climbed on a cherry tree alone and there was a thick caterpillar beside my fingers. I feel disgusted by caterpillars and snakes. I was terribly afraid of the caterpillar crawling on my fingers. Out of the fear I was almost unable to climb down. +p54032 +aVA friend of mine told other people that I was a slattern (because of an occurence that had happened some time ago). When I heard about that I was very angry. +p54033 +aVMy grandfather was seriously ill, he had only a few days left to live. I had always loved him, but never told him. When I saw him for the last time, I had the feeling that I had omitted so many things I could not do again. - There was a fly sitting on his forehead and he was too weak to drive it away. I was very sad when I saw that. +p54034 +aVNormally my father never tells vulgar jokes, we do not speak about sexual things, too. But once he told such a vulgar joke, that I was really disgusted. He did not tell me, but some of his friends, but I was present. +p54035 +aVWhen I was 6 or 7 years old, I pulled down the trousers of a friend because I wanted to know what she looked like. My mother watched that and (as a punishment) sent me into the house. We never spoke about that; I think it was as embarassing for her as it was for me. +p54036 +aVWhen I told my boy-friend, who loved me very much, that I wanted to put an end to our relationship. a long time before I told him that and also a long time after that I felt guilty, because I had hurt him so much. +p54037 +aVUnexpectedly I met some persons who I like very much. Spontaneously they invited me and integrated me within their group, although it was late in the evening. +p54038 +aVAfter a footballmatch I went home by car, a friend drove. I did not realize that he was drunk until we were in the car. He was madly racing. Several times we were in dangerous situations and I told him to be cautious, but he did not care. +p54039 +aVA friend of mine uses butter instead of oil when he is cooking. I am always angry about that, because it is an unnecessary luxury. Recently we both were cooking and he wanted to use butter again. When I had already put the oil into the pan, he poured it out again and put the butter into the pan. +p54040 +aVAfter some friends had come to see me. They had stayed for several days and we had got on very well. When they had left, I had a feeling of emptyness. +p54041 +aVI had a quarrel with a friend who lived with me in the same flat. He moved out. Before he went he invited me and some friends for a drink. At last he was totally drunk and smelled disgusting. Besides, he told lies about us and behaved as if he was to be pitied. +p54042 +aVI went to see a friend. There were other people, too, and everybody brought some present. I was the onlyone who brought nothing. My friend was very hospitable and did not show anything - although I knew how he felt. +p54043 +aVWith a group of handicapped people we went to a party. When we wanted to leave we were not able to find one of these people. I had told his mother that we would leave at 4.30 p.m., actually it was planned for 3.30 p.m. Therefore there was a delay. +p54044 +aVI had a quarrel with my fiancT. When he admitted his fault, everything was allright. It was then for the first time that he surprised me with coffee and cake and a bunch of flowers. +p54045 +aVAfter my boy-friend had beaten me for the first time, I always trembled when somebody knocked on my door or when I heard steps coming nearer. +p54046 +aVI had not eaten anything for 2 days to be able to pay the fine for my fiancT. But he stayed in another town and spent one thousand shillings in the restaurant during the same time. +p54047 +aVI had to give up my love, because it did not work out well. +p54048 +aVI was insulted without a reason by a drunk man. +p54049 +aVMy boyfriend had drunk too much and beaten me. When I had to show the letter the door, which was almost crashed, I felt ashamed. +p54050 +aVI spied on my fiancT and was terribly jealous. Later I saw that there was no reason for that. +p54051 +aVMy sister had a daughter. I saw the baby for the first time through a pane of glass and she looked at me. +p54052 +aVMy mother, my sister and I were sitting in the sitting room and watching a film on TV. My father came home drunk and told us to turn off. When we did not do that he switched off the fuse and started shouting. We were sitting in the dark and I was afraid that he would do us a harm. +p54053 +aVI bought an aquarium which made me much pleasure. I was watching the fish when my father came in and asked me how much I had payed for it. He said he would not pay for the current that it would require. +p54054 +aVWhen I was 9 years old, I got a cat, but after 3 days he died. I was very sad, because I had nursed him and taken him to the veterinary's - but in vain. Although I had had him only for a short time I had liked him very much. +p54055 +aVWhen my grandmother was about 80 years old, she lived with us for several years. I saw her illness. I did not even want to breath the air that smelled of her presence. +p54056 +aVI am left-handed. When I attended the first form, we learned to write with pens. I smeared everything I had written. All my friends had written well and wanted to know why the teacher was looking at my note-book. I was ashamed. +p54057 +aVWhen I was 4, we spent our holidays at the seaside. My sister and her friend wanted to go to a bay on an undangerous way. I wanted to arrive before them and went on a shorter, but more dangerous way. When I arrived, I found nobody there. I waited for a long time, but nobody came. On my way back I met my mother who had been searching for me desperatly. She did not scold me, but I saw how much she had worried (herself). +p54058 +aVWhen I was 17, I had a mystic vision. I melted into a dazzling light, which omitted perfect love. The physical experience became unimportant, I heard or saw the words ""overcome egotism"". The feeling of joy remained for month after that experience. +p54059 +aVWhen we had swimming instruction, we had to take a header from the springboard. I usually refused to do that, but at least I was forced to. +p54060 +aVWhen I played in a chess championship, I was disturbed by other people. I asked them to be quiet, but in vain. +p54061 +aVWhen my flute-teacher was replaced by a new one. +p54062 +aVWhen I was a child, I was sometimes forced to eat things that disgusted me. +p54063 +aVWhen I was 12 years old, some friends of our family had come to watch TV. I lay on the floor and moved my pelvis. When the other people had gone, my mother told me that it had looked as if I had wanted to make sex. +p54064 +aVWhen I shirked the gymnastic lesson I met the director of our school who asked me what I was doing. +p54065 +aVWhen I was in a situation which seemed hopeless for me, I moved back to my parents. For my father it went without saying anything (normally he ofter grumbles at me). +p54066 +aVI lived in a flat with a couple. The woman was so jealous of me, that she sometimes had crying fits. Eventually her husband could not stand that any more and wanted to kill me. +p54067 +aVI have a very big family. At my grandmother's funeral we all met and everybody pretended mourning. In reality it was like a fashion-show: everybody wanted to show himself. +p54068 +aVOften a dog which is treated very badly by his owner comes to us. +p54069 +aVAfter a pleasant evening with friends in my flat, one of them did not want to leave, because he wanted to sleep with me. He said that he had fallen in love with me, that he felt alone and so on. +p54070 +aVI look up to my Karate-teacher. When I came to a training lesson after I had not trained for one week, I was totally stiff. I was ashamed. +p54071 +aVMy sisters asked me to fetch them at a discotheque which is 5 km off. There was a thick fog and snowfall. There was not enough room in the car for all of them and they asked me to go there once again. When I did not do that they had a way to make me feel guilty. +p54072 +aVWhen I heard that I had passed my final examination at school (with success). +p54073 +aVBefore my final examination. +p54074 +aVWhen my mother kept me in leading-strings. +p54075 +aVWhen my father died. +p54076 +aVWhen I worked at the life-saving sevice and saw the first exitus. +p54077 +aVWhen I made a fool at an examination. +p54078 +aVWhen I had wrongly explained someone an important exemple for an examination. +p54079 +aVLast year I went to see friends in Yugoslavia - two girls with whom I get along very well. +p54080 +aVBefore I went to the urologist's I was afraid for several reasons: because it was for the first time, because the medical check-up might be painful, because of the uncertainty and because someone had informed me about it. +p54081 +aVMy girl-friend did not understand me; I was angry with myself because I had problems when we seperated - I could not resign myself to it. +p54082 +aVA friend who was 22 years old died. +p54083 +aVWhen I was in the army, we got a certain dish for dinner that I do not like at all. We were not obliged to eat, but I was very hungry. +p54084 +aVI had to pay a fine because of speeding. +p54085 +aVA friend who was 22 years old, died of leukemia; I had not known that he was so ill and therefore had not cared. +p54086 +aVWhen we got a young dog. +p54087 +aVI was afraid before I went to the doctor's. +p54088 +aVI had an accident with damage to the car body. +p54089 +aVMy dog died of a cerebral tumor. +p54090 +aVWhen I worked at the life-saving service I was disgusted by a patient whose outward appearance was distasteful. +p54091 +aVWhen I was a child, I had a medical check-up. I had to undress myself and was examined by several doctors. +p54092 +aVWhen a classmate wanted to sit down, I pulled his chair away, so that he was slightly injured. +p54093 +aVWhen I heard that a good friend, who had been abroad for a long time, would come and see me. +p54094 +aVWhen I had my first oral examination after a long time; especially one day before the examination when I had the feeling that I had not studied enough and had not enough time to make up for it. +p54095 +aVI heard friends grumbling at me in an adjoining room, although they had behaved in a friendly way when I was present. +p54096 +aVWhen my brother died. +p54097 +aVI read about a murderer who brutalized his victims by cutting open their stomaches and taking out their bowels. +p54098 +aVWhen I was a child: I had told my mother a lie and she found it out. +p54099 +aVMy father had been alone for a long time because my mother and sister were on holiday. I had not seen him for a long time and when I finally called him I realized that he had been very sad about that. +p54100 +aVI unexpectedly got a present from my father. +p54101 +aVWhen I had to go through lonely streets in the middle of the night. +p54102 +aVMy boy-friend had promised me to come home at about 10 p.m. He did not return until midnight and had consumed a lot of alcohol. +p54103 +aVA relative, whom I like very much, left for the United States. +p54104 +aVWhen I was walking on the street, I slipped on the dung of a dog. I did not fall down, but I felt disgusted by the bad smell on my sole. +p54105 +aVSome persons, who are important for me, came to see me and I had not washed the dishes. +p54106 +aVI was looking after my cousin's little daughter; she fell down, was slightly injured and cried vociferously. +p54107 +aVI met again a very good friend whom I had not seen for a long time. +p54108 +aVI got lost in a foreign town. I did not know the language of that country and it took me hours to meet my friends again. +p54109 +aVA friend had promised to get me a book which was very important for my work, but she forgot it. +p54110 +aVMy dog, whom I had had for eleven years, died. I watched his soporification. +p54111 +aVA drunk man bumped into me and wanted to grip me. Fortunately I was able to break loose. +p54112 +aVWhen I stayed on a nudism beach, a man was watching me in a disagreeable way. I had the feeling that he was examining my body. +p54113 +aVI had a quarrel with my father. He was depressed, because somebody had treated him injustly. As we had an argument, it was impossible for me to help him. +p54114 +aVMy friend came to see me after she had stayed abroad. I waited at the station. +p54115 +aVAfter a motor accident (I was the frong-seat-passenger) I spit blood. +p54116 +aVAt an office an application that I had made was turned down because of a scrupulous interpretation of the rules. +p54117 +aVMy uncle died - I felt sad at the funeral. +p54118 +aVI saw a drunk man tottering behind his wife and insulting her awfully. +p54119 +aVAfter an oral examination I shook the professor's hand, but he had only stretched it out for my ball-point-pen. +p54120 +aVI spread abroad an intimate secret. +p54121 +aVI bought a Christmas present for my girl-friend. On my way home I was really glad about having found such a suitable thing. +p54122 +aVMy fear appeared in the form of jealousy. I was afraid that my girl-friend had fallen in love with another man, I was afraid to lose her. +p54123 +aVI was angry when I watched a ski-race. All the Austrian skiers dropped out. +p54124 +aVDuring my holiday I met again a friend who had tried to commit suicide. She had just left hospital, her lips were trembling, she looked miserable. +p54125 +aVOn my way home in the middle of the night I saw a drunk man and a woman who were quarreling, beating each other, shouting and so on. I felt disgusted especially because they treated each other in such a degrading way. +p54126 +aVMy girl-friend and I live in one flat with another couple. We get along very well and usually we share everything. Once we two were sitting in our room and eating a cake when the others came in. +p54127 +aVI was on a visit to friends who have a baby. The baby was crying in another room, but soon it became quieter and it seemed that it would fall asleep. I went into the room where the baby was lying - and it started crying again. +p54128 +aVI went to fetch my girl-friend at the station. When the train arrived and I saw her descending and running up to me, I felt glad. +p54129 +aVWhen I wanted to go into a house, there was suddenly a big dog standing beside me. It was hardly moving, but I did not know how it would react later on. +p54130 +aVMy father had bought too many goods for his shop, there was not enough space to store them. +p54131 +aVA friend died of cancer when he was 18 years old. +p54132 +aVAt a party I saw two persons having a fight. The aggressions and the hate between these persons produced an unpleasant impression on me. +p54133 +aVDuring a discussion I said something rather stupid and unnecessary. +p54134 +aVWhen I was driving my car, I wanted to pick something from the floor of the car and drove into the guide-rail. I thought that I should not have done that and felt guilty. +p54135 +aVOn my birthday a friend came to see me unexpectedly and brought me flowers. I usually do not see her very often. +p54136 +aVI was awakened by a dream in the middle of the night. I dreamt that a stranger was in my house. +p54137 +aVMy boy-friend had promised me to come an 10 a.m. - he was 3 hours late. +p54138 +aVWhen I heard about a murder of a 16-year-old girl. +p54139 +aVWhen I broke the piggy bank of my brother and my mother discovered that. +p54140 +aVI was sitting in a restaurant with friends and I knew that in the meantime my girl-friend must have come to my flat and found the door closed. +p54141 +aVAfter I had been away for a long time a friend told me that I had passed all my written examinations. +p54142 +aVRecently my younger brother disappeared for two days without leaving a trace. Usually he tells me when he wants to do something like that, therefore I was afraid that something had happened to him. +p54143 +aVI played chess with my 12-year-old brother. I made a stupid mistake - and he won! +p54144 +aVIt was only once that I really felt sad: at my grandfather's funeral (after a long time of suffering he had died of cancer). +p54145 +aV3 years ago I served in the army. Once a collegue denounced me because of a delict, which is usually committed. I was arrested for 3 days. I still detest this man. +p54146 +aVOnce I went home totally drunk and roused all our neighbours from sleep. +p54147 +aVWhen I was in the puberty I smashed the favourite toy of my little brother because of a fit of rage. +p54148 +aVAfter I had had a disappointment in my private life, my friend, who studies in Vienna, came to see me spontaneously. +p54149 +aVBefore an oral examination - which I did not take eventually. +p54150 +aVA friend had promised me to give me a lift to Graz. To be sure I called her before we went. She told me that she had just promised another person to give him a lift. +p54151 +aVI am sad because some relations to friends are not very good. +p54152 +aVI think I have hardly had a situation where I felt disgusted. Perhaps once, when I saw a big spider. +p54153 +aVWhen my boy-friend left me and I wanted to persuade him to stay. +p54154 +aVI promised my mother to come home on her birthday, but at last I was prevented. Nevertheless it would have been possible to go but I did not. +p54155 +aVSeeing relations from overseas after a few years. +p54156 +aVUnknown person knocking repeatedly on backdoor when no one else was at home. +p54157 +aVBoyfriend ""chatting up"" another girl. +p54158 +aVA friend breaking up with her boyfriend. +p54159 +aVAccidentally seeing a friend in a compromising situation with a stranger. +p54160 +aVParents finding out I smoked. +p54161 +aVNot thanking relatives for a favor done. +p54162 +aVEmotional reassurances by spouse. +p54163 +aVMovement in bush late at night while camping. +p54164 +aVHeated discussion with spouse concerning new house. +p54165 +aVLoss of close relative. +p54166 +aVThe price I was charged for work on my car. +p54167 +aVCaused fault in V.C.R. by not following instructions carefully. +p54168 +aVLosing my temper with my spouse. +p54169 +aVA night spent with a group of friends. +p54170 +aVA car came very close to hitting me whilst I was crossing the street. +p54171 +aVA friend whom I had gone out of my way to do something for did not bother to acknowledge my efforts, and treated me badly thereafter. +p54172 +aVA girlfriend ended our relationship in an abrupt and unexpected manner. +p54173 +aVA friend once reacted childishly (he is 23 yearrs old) to my not responding in his favour to a request, that is: he asked me for some money I refused, and his reaction was quite childish. +p54174 +aVOn one occasion whilst engaging in horseplay with my girlfriend, I caused her to be physically harmed. +p54175 +aVI borrowed money from a friend and did not pay back the debt when I said I would. +p54176 +aVGetting a phone call from a very old friend. +p54177 +aVBefore giving a seminar to a rather large audience. +p54178 +aVBeing stopped by the police for a traffic offence which I don't think I committed. +p54179 +aVDeath of a parent. +p54180 +aVAt a social event when none of the guests would help to serve food or clear tables. It was all beneath them. +p54181 +aVThe mother of a small child found me shaking the child in exasperation, because I couldn't get it to sleep. +p54182 +aVThe more than satisfactory result of a recently-completed university subject was communicated to me by phone. +p54183 +aVI was a passenger in a jumbo-jet which was accelerating down the runway and almost at the point of take-off, when the pilot suddenly braked and put the engines into reverse thrust, in an obviously urgent attempt to stop the aircraft. The hostesses show signs of concern and my first thought was that something was on the runway in our path and that we were in danger of hitting it. +p54184 +aVA person walking his dog allowed it to defecate on the footpath outside my house. Although it had happened before, this was the first time I had witnessed it. All the skills I had learnt from PY 263 were thrown out the window when his indifference to my protestation was obvious to me. +p54185 +aVWhile walking through an old mining area, I unwittingly disturbed a wallaby which, in its resultant flight, accidentally fell down a deep mine shaft. On investigation it seemed uninjured, but it was impossible for the wallaby to get out, and also for me to get it out of the shaft. To prevent its suffering a slow death, I shot it. +p54186 +aVA colleague and I were sitting on a bench next to an old man in a shopping centre. the old man coughed and spluttered somewhat, then with his fingers removed the resultant phlegm and mucous from his mouth, and transferred it onto the armrest of the bench. +p54187 +aVI had promised to contact a friend about a particular matter by a certain date, then thought no more about it until the friend reminded me after the date had passed. +p54188 +aVA neighbour complained about smoke from my backyard incinerator entering his house after a change of wind direction. I lit the fire after originally checking that the wind would not blow the smoke in that direction. +p54189 +aVOn my birthday, when a very close friend sent me a huge bouquet of flowers. +p54190 +aVWhen I heard that there had been some women raped at uni, just near where I usually park my car and walk by myself at night. Although I wasn't in danger it unnerved me for days and I was fearful whenever walking through the area. +p54191 +aVWhen the person I am going out with let me down in a situation that I was depending on them, and didn't show respect or care. +p54192 +aVWhen I found out that a person I went to school with had died in a car accident. +p54193 +aVWhen I heard about the way a parent of a friend had mistreated him, and caused a great instability. +p54194 +aVWhen I realised that I had become too emotionally involved with the person I'm going out with, and when I began to like someone else and questioned whether I really care about person I'm with. +p54195 +aVWhen I came very late one night (or morning !) and my parents were waiting, not so much angrgy as disappointed. +p54196 +aVOne of my friends and I had breakfast in a restaurant. It was spontaneous and lots of fun. +p54197 +aVI was walking home late at night from lectures and someone deliberately started following me. It was dark and I was scared. +p54198 +aVAt one of my close friends saying she didn't like the way I am nice to people I don't know, or who have been nasty to me. +p54199 +aVLeaving Melbourne to move interstate - leaving relatives and friends behind. +p54200 +aVDisgust at a girl I know for continually feeling sorry for herself and never acting positively to do something about her problems. +p54201 +aVI am ashamed of the horrible way I used to treat my little sister. +p54202 +aVOften I forget to give my immediate family birthday presents. +p54203 +aVI noticed that Meryl Streep and I had similar cheekbones and jaw structure. +p54204 +aVAs for disgust. +p54205 +aVGirl I was fond of did not initiate conversation as I expected in tutorial. +p54206 +aVI realised that someone was insidiously attempting to shit me off I was disgusted with him for doing so, because I afforded him with no excuse to do so. +p54207 +aVWhen I was complimented and called ""delightful"". +p54208 +aVWhen my mother was angry with me over my friends and boyfriend. +p54209 +aVAnger towards my lover for being late. +p54210 +aVThe death of my twin sister - suicide. +p54211 +aVDisgust with myself for consistently making foolish errors in communicating with others (asking for 1/2 Kg of nuts when I only wanted 50 g). +p54212 +aVI had been rude to my mother at a time when she needed comforting, not anger (death of my sister). +p54213 +aVGuilt - because I had not written to my sister for months before she died. +p54214 +aVMy current lover and I had been very busy with work and study and had not had time alone together for almost a month until one afternoon recently when we made love for hours and then showered and ate together. +p54215 +aVA workmate and I had been antagonistic with each other for some weeks - he had reacted violently to my criticisms of his work standards. +p54216 +aVI had been having a heated argument with a lover - whose intention was that we should marry in the near future - and was rejected by her when I started to cry. When I stopped crying for a moment she said ""There, have you got it all out now ?"". +p54217 +aVI was alone in my parents' house, having made plans to spend the afternoon with a lover (plans which the lover cancelled), watching a movie and considering my life and circumstances - pressures of examinations in particular. +p54218 +aVI discovered some pornographic literature in a workmates drawers. The literature featured pictures of naked women defecating on one another. +p54219 +aVUpon returning from a journey of about two weeks duration, I found that a collection of pornographic literature had been removed from my room I had previously thought that no one was aware of the existence of this material. +p54220 +aVMy mother and father had forbidden me to ride my scooter on the road, and I had transgressed (together with the ""wild"" kids from across the street) by riding my scooter down a steep hill near our house. My mother sent the boy next door to collect me, and I was severely scolded. +p54221 +aVAfter going through a glass door, I sustained a number of serious cuts which were gaping open. +p54222 +aVThe mother of a person with whom we had been sharing a housing accused me of trying to rip her off over payment of bills in the house. +p54223 +aVWatching ""11 am"". They had a programme on the starving refugees. Their plight was a source of sadness for me. +p54224 +aVA girl with whom I was staying having sex with a person for about 3 nights running, and then with his brother the following night, and back again. +p54225 +aVDuring an argument an acquaintance accused me of having insulted her parents by having had sex in their house which they overheard. +p54226 +aVA girl whom I hadn't seen for a period of time told me that she had been pregnant and had an abortion - I was the father. +p54227 +aVWhen my boyfriend last told me he loved me after I gave him an impulsive kiss. +p54228 +aVWhen my boyfriend was leaving to go home one night, I had a very deep sense of uneasiness and an unwarranted fear that I wouldn't see him again. +p54229 +aVAnger with boyfriend's best friend for alienating me and blaming me for personality changes in my boyfriend and changes in my boyfriend's attitude to him and his obvious egoistical attitude himself in doing so. I also lost one of my best friends - his girlfriend. +p54230 +aVDeath of paternal grandmother to whom I was very close - died of cancer. +p54231 +aVDisgust with oneself after being intoxicated enough to go to bed with a stranger. +p54232 +aVI feel shame every time I think of very dear friends of mine abroad who were family to me for a year, and now 2 years later, I have attempted, but have not actually gone through with corresponding with them, to express my feelings and gratitude. +p54233 +aVAfter being told that an ex-boyfriend had been hurt by my wearing something he had given me when I was with another guy. I was unaware of my actions really, as I had not considered the fact that he had given it to me, and might see me. I still respected his opinions of me. +p54234 +aVWhen I thought that my high school love and I had a mutual emotion. +p54235 +aVI was on my surf ski. Rather large waves to strong current separated me from my ski and we both began to drift slowly (actually rather quickly) away to sea. The direction I was drifting in was taking me straight over a reef on which rather large sharks were constantly being caught. (I was alone with no one to help me). +p54236 +aVI was enjoying the company of bird life while I was eating lunch in a park when a group of people began throwing sticks at some of the birds - for no reason other than the satisfaction of seeing them being scared away. +p54237 +aVWhen I left my sister's house after staying there for a few days. She has two little boys, and they are very warm people (the family). At the time, I was in need of this sort of contact, and I grew very fond of children (no, I'm not a paedophiliac). +p54238 +aVWhen my father revealed inconsistent morals. +p54239 +aVWhen I woke up after a night of drinking I couldn't remember and discovered several untoward things had occurred. +p54240 +aVLeaving home when my mother thought I had no reason to go and felt that I was rejecting her. She is a constantly depressed person (a bit of a worry-wort) and I felt guilty about having given her this additonal problem. +p54241 +aVI'd just got the top mark in an exam. +p54242 +aVMy brother and I were driving to Brisbane when he drove back onto the road, perhaps cutting off another car but not noticeable - this driver did his best to drive us off the road for about 1/2 an hour. +p54243 +aVI was at the corner shop, which I patronise regularly I had only a $ 50 note and I purchased about $ 3 worth of goods that I really needed - the keeper made sarcastic remarks to others about people using him to cash notes. +p54244 +aVMy mother died of cancer after a 4 year illness - I think the most pregnant moment of sadness was the next morning, just as the sun rose. +p54245 +aVA lecturer in great detail spoke about his sexual experiences. +p54246 +aVI was walking outside the union refec after rain when I tripped and fell. +p54247 +aVI stole 5c from my mother's purse for a choo-choo bar - I was 6. +p54248 +aVOn a sailing boat at night, under a full moon, listening to Pink Floyd, drinking good wine, with good company, the boat being steered by autopilot, and a full eclipse of the moon. +p54249 +aVFear of sexual overtures from a close relative in the family. +p54250 +aVWhen my rights to use a shared house had been usurped by co-owners out of pure selfishness. +p54251 +aVAt rejection / being ignored by a loved person held in great esteem. +p54252 +aVViewing the nuclear war film ""Threads"". +p54253 +aVFollowing heavy stirring / ridiculing a close friend who was very vulnerable to such attack - inspiring fierce, defensive counter-attack. +p54254 +aVGuilt at having pressed another person to expose/explore his personal weaknesses/faults, to the extent that the other person was made to feel terrible/defensive. +p54255 +aVFamily member survived an operation. +p54256 +aVI was walking to my car at night and thought that I was being followed. +p54257 +aVI walked in on a teenage patient of mine (I work in a hospital) as he was going through my office drawers and he had removed money from my purse. +p54258 +aVDeath of grandmother. +p54259 +aVWhen I became aware that an acquaintance had stolen from friends. +p54260 +aVCaught cheating on a diet. +p54261 +aVI had shown anger toward my dog and he was killed later that day. +p54262 +aVA close married friend has just had his first child. +p54263 +aVStranded in the north of Fraser Island with a submerged 4 WD hire vehicle. +p54264 +aVNot being alowed on a school camp with the class I'd been in for 11 years (I had stayed down due to illness) +p54265 +aVAt the funeral of a friend about 20 years old, who was killed in a hit-and-run motorcycle accident. +p54266 +aVA female friend was violently ill on the return journey from a wedding reception we attended. Getting her out of the car when home took quite a while. +p54267 +aVCheating in a minor geography exam at school. +p54268 +aVI wasn't able to see my girlfriend on her birthday and because I was late arriving home from uni, I didn't phone her as arranged at a certain time (she rang in the meantime). +p54269 +aVHaving received an offer to do post-graduate work. +p54270 +aVTaking a trip to crocokile country I fell out of the boat and was motivated by fear of being eaten to perform great swimming feats. +p54271 +aVLast night - finding that someone in the house had eaten an entire packet of almonds I had bought for a family treat. +p54272 +aVThe loss of my father as he died of a massive and sudden heart attack. +p54273 +aVWhen after a party celebrating a friend's 21st birthday - upon leaving I found 10 people outside throwing up and further 4 unconscious. +p54274 +aVHaving had a very heated argument with my sister - I began hitting her about the head with a newspaper I was holding. +p54275 +aVA situation where I stole a friends wife's wallet. +p54276 +aVWinning a tight tennis match. One set to play, and the team was behind by 3 games. We won the last set 6-2 and won the match by a game. +p54277 +aVWhen at school, I threw a duster at another child and hit him in the head. The blow caused a flesh wound and I was afraid of what would happen to me when the teacher found out the circumstances. +p54278 +aVFinding that a subordinate at work was still not willing to cooperate after discussions to try and resolve an attitude problem. +p54279 +aVDeath of the family dog. +p54280 +aVWe had friends to dinner and one of them threw a beer bottle in the air, and it bounced on an expensive table and damaged the table .The person did not apologise. +p54281 +aVAfter making a joke about a friend's marriage that was too personal. +p54282 +aVCarried out a vandalistic act on some windows at an old army location. +p54283 +aVArriving in New Zealand as a teenager - first overseas trip - something ""exhilarating"" about the change of scenery etc. +p54284 +aVAs a child (i.e. 5-7) hiking in reasonably rugged bush and becoming lost for a duration of 5-7 hours. +p54285 +aVFollowing an argument with my brother, he broke my golf clubs. +p54286 +aVLeaving the house myself and a female friend had shared for 6-8 months because of the friendship which developed and our approach to each other in occasional instances of several personal crises. +p54287 +aVDiscovering a good friend had lied to me, resulting in a detrimental relationship with another person. +p54288 +aVNo specific instances - perhaps having lied as a child resulting in someone else being blamed for the event. +p54289 +aVLeaving University in 1982 following exclusion and lying to parents/friends about reasons for leaving, i.e. lying about the fact of having been excluded. +p54290 +aVGoing to a friend's wedding and seeing many of my old friends whom I had known before I moved to a new district five years previously. +p54291 +aVCar accident. Travelling as a passenger along narrow bitumen road at night - trying to overtake semi-trailer. The truck pulled over onto our side and we hit the wet dirt, swerved back into the truck, back onto the verge, over a guide post and into a ditch. +p54292 +aVAt school when I had a shouting argument with a friend over my ability to carry out a particular duty in the correct way without harming her. +p54293 +aVLooking up end-of-semester results, and finding I'd failed three out of seven (subjects). +p54294 +aVWhen I found out some family friends were embezzelling the company they worked for - using company petrol and food supplies and claiming furniture and crockery. +p54295 +aVWhen my best friend foud out I'd been lying about something I'd been doing behind her back. +p54296 +aVAfter having told an authority figure a very large lie I was told she believed me, because she believed I had never lied to her. +p54297 +aVAfter being away on a holiday for 2 months, a friend, who lived interstate, had remembered when I'd get back and phoned to welcome me home on the night of my arrival. +p54298 +aVWalking along with a dog barking at you and following you. +p54299 +aVDoing a group assignment and being left to do all the work and take the blame for any mistakes. +p54300 +aVAfter training for an Australian championship competition for a year and then injuring myself 2 weeks before the competiotion. +p54301 +aVSomeone ruining someone's property just for the fun of it. +p54302 +aVA friend giving me an expensive Christmas gift while I gave her a cheap one. +p54303 +aVTalking about someone behind their back. +p54304 +aVI was captain of the school swimming team. The team was only two points in front before the last relay. We won the relay, which I swam in, and thus my team won the championship. +p54305 +aVI was in about Grade 7, I came home from school one day and was told that my mother had skin cancer and would have to go to the hospital straight away. +p54306 +aVBrother provoked anger. It was when mother and father were away and we had to look after ourselves. He accused me of being selfish and a snob. +p54307 +aVShifted from Melbourne to Brisbane. All my old school friends gave me a party and I had to say good-bye to them all. +p54308 +aVWas picking up my father from work and on passing through the Valley watched three prostitutes walk up and down waiting for someone to pick them up. Clothing was disgusting. +p54309 +aVHad a very good friend. We grew apart I found myself running her down to other friends. +p54310 +aVGuilt after fighting with my sister (for) telling her how bad she was. +p54311 +aVWhen I won the ""Under 18"" Showjumping at the Brookfield Show. The competition was very stiff and there were many riders competing. +p54312 +aVWhen I was on holiday, walking back to where I was staying, at night, and two men started closely following me. There was nobody around that I could run to. +p54313 +aVWhen my mother and father split up I was angry: I felt deprived and ""different"" from other children at school. +p54314 +aVI was terribly upset when my kitten got hit by a car. He didn't die, but for several weeks we thought he might have to be put down. +p54315 +aVWhen I heard that one of my good friends, when at a party, had got herself involved with some very undesirable characters and was experimenting with drugs. +p54316 +aVWhen I hadn't studied for an exam, so I pretended to be sick so I wouldn't have to go to school. I lied to my mother - she realized I had been lying when she got home from work and found that I had been over to a friend's place. +p54317 +aVWhen I was young, I stole some money from my mother's purse. It wasn't very much, but I can remember when she found it gone I felt very guilty. +p54318 +aVDay I received my T.E. score and acceptance into my chosen course. +p54319 +aVFirst day at University (I didn't know what to expect). +p54320 +aVAt a school dance when my supposed ""best friend"" kept walking away from me whenever I came near her. +p54321 +aVAt end of school - function to ""celebrate"" ? Leaving friends who I'd known for up to 12 years. +p54322 +aVWhile watching a film of an experimental operation on a cat's brain in which the cat had metal pieces protruding from its eyes, mouth etc. to keep the head stable while being cut open. +p54323 +aVWhen my mother asked me to do a job for her which does not require much effort on my part, yet I refused for selfish reasons and saw her have to do it. +p54324 +aVAfter having been told not to take the car, I took it anyway and felt guilty about having taken it. +p54325 +aVEating biscuits and drinking Milo (Chocolate energy drink made with milk and usually drunk warm) with my friend at College. We get on really well, don't withold any feelings about each other's friends and are pretty good at cheering each other up when we are homesick. +p54326 +aVGoing to a disco by myself to wait for some friends. We had separated and hadn't planned where to meet. I wasn't sure if they were even going to this place so I felt very conscious of being alone. +p54327 +aVA person ignored my advice, did not pay any attention to what was saying. She acted as though I wasn't even there. We were doing group work so everybody had the right to speak yet she just ignored me. She made me feel insignificant. +p54328 +aVA friend of mine is having psychiatric problems because of his mother's death ages ago. He is really quiet and because it relates back to his childhood I feel sadness for him. He doesn't lead a normal life and it just seems unfair. +p54329 +aVAt school, when the only thing people my age could think of was getting rolling drunk. They couldn't have a good time without firstly getting drunk. +p54330 +aVA girl I was with yelled something out to this group of guys I knew. It sounded really childish. +p54331 +aVI didn't tell my parents exacly what had made me so late in getting home one night. I left out some details and somehow, I felt I had lied to them. +p54332 +aVGetting a good mark for a subject I had worked hard at but expected only a moderate mark. +p54333 +aVWhen cleaning up a pile of junk under our house, a huge spider (a ""Jungle Spider"") ran out near me. (I do not like even small spiders). +p54334 +aVAt the hardware store, trying to convert Imperial to Metric measurements, I made a mistake, and didn't buy enough tiles for the bathroom. I was angry at myself, because I hope to be a Maths teacher. +p54335 +aVMy father died last year after an 8-week severe illness. +p54336 +aVDuring the PY 102 film session on Tuesday, one of the films shown was of an experiment on a live cat involving strapping it into a machine for possibly days, and doing things to its brain. +p54337 +aVSeveral years ago I was caught riding the train without a ticket. The station-mistress treated me like a criminal almost. +p54338 +aVI was walking quite quickly and unthinking through a children's playground, when a toddler ran in front of me I knocked him over and he hit his head quite hard and began crying. +p54339 +aVI got a good reaction from my tutor and tutorial group for a presentation I'd given that I was very worried about. +p54340 +aVA man was yelling outside my window at 3.00 am, yelling threats, though not to me. +p54341 +aVGoing away for the weekend, leaving my College room open - when I returned several friends had had a party there, leaving the mess. +p54342 +aVPassing away of my father. +p54343 +aVAt a party where the boys were telling revolting stories about the girls they'd been with. +p54344 +aVGetting slightly intoxicated at the 1984 I.C.C. Ball. +p54345 +aVI felt guilty about going out when I should have been studying for a presentation I had to give on Wednesday the next week. +p54346 +aVWhen I received the results from my final examination - Higher School Certificate - and received a mark that was beyond my wildest expectations. +p54347 +aVWalking around the University at night by myself, having been previously warned of rapes, etc. +p54348 +aVWhen I received the mark well above requirements for the course I wanted to enter, yet I was not accepted - anger at the injustice of it, because I didn't receive early release of H.S.C. marks. +p54349 +aVWhen I left all my friends at school (break up) knowing we would probably all go our separate ways, and none see one another for a long time. +p54350 +aVAt my father, when he yelled and accused my sister's friend (over the phone) of doing something he didn't do, or know anything about. +p54351 +aVWhen I was little and didn't own up to placing a lolly on the varnish, this pulled it all off and I didn't admit my guilt. +p54352 +aVI felt guilty when I skipped a two hour practical class I knew I would miss out on more information which I did not know, but I couldn't cope with going. +p54353 +aVGot through first semester University. +p54354 +aVAt the tender age of eleven a friend and I left a party and proceeded to walk through dark and secluded streets of a bad neighborhood to find a telephone (recent spate of Horror Movie watching had occurred). +p54355 +aVIn a situation whereby a friend's actions were deliberately against my wishes and (with) no regard to my feelings. +p54356 +aVI broke up with my boyfriend of seven months, but it was a very ""indepth"" relationship and so after feelings of grief and loss were over I felt an immense sadness. +p54357 +aVA situation where I ignored my beliefs and principles for a trip of whimsy. +p54358 +aVI bacame involved with a boy for a very brief moment not because I liked him but because I needed some sort of company. The consequences weren't as I expected and caused me much shame. +p54359 +aVIgnoring my parents'wishes. +p54360 +aVGetting back with my boyfriend after a year away - apart. +p54361 +aVHaving my luggage checked at Customs. +p54362 +aVWhen a friend wouldn't speak to me and wouldn't tell me why. +p54363 +aVThinking about friends overseas. +p54364 +aVHearing of a filthy situation over the phone. +p54365 +aVSending pictures home when I'd put on so much weight. +p54366 +aVBorrowed someone else's towel without asking. +p54367 +aVWhen I opened my TE Score envelope, and saw I got into Physiotherapy. +p54368 +aVWhen I was bringing in the shopping and nearly stood on a snake. +p54369 +aVWhen I was accused of ""bitching"" about best friend. +p54370 +aVAt our Senior dinner - separated from school friends, nothing will ever be the same again. +p54371 +aVAt a night club watching little tarts trying to earn a living. +p54372 +aVWhen I was little - Mum caught me telling a lie about who broke the cup. +p54373 +aVWhen I used to tell Mum I was going somewhere else than where I was (going). +p54374 +aVWhen my brothers had passed all of their exams and were able to graduate from their courses. +p54375 +aVWhen I was caught in an elevator and it got stuck between floors. +p54376 +aVWhen I was put into a tennis team below my standard. +p54377 +aVWhen my father died. +p54378 +aVWhen I have seen people very drunk and making fools of themselves. +p54379 +aVWhen my friends were rude to a girl. +p54380 +aVWhen I was rude to my mother and got angry with her. +p54381 +aVWhen my present boyfriend asked me initially to go out with him I had waited a long time for this to occur. +p54382 +aVWhen somebody broke into our home one night when my mother was out, and my sister and I had just gone to bed. +p54383 +aVWhen my sister lost my favourite jumper at a party and failed to tell me for several days after it happened. +p54384 +aVWhen my father passed away of cancer, I was extremely saddened. He was not very old, which made matters worse. The actual death was horrendous, but the moving funeral saddened me more so. +p54385 +aVWhen walking along the beach with my boyfriend, we saw 2 people having sex on the sand dunes in full view of everyone. It was the fact that they chose that area in which to have sex, that disgusted me. +p54386 +aVWhen I told my sister I had slept with my boyfriend, and she at first was mad at me I then felt shame for this act, but not guilt. +p54387 +aVI stayed at the Coast for a weekend with friends. My brother came to drive me home, but was rude, and in a hurry to rejoin his friends. I was embarrassed because the family involved was extremely nice, and hospitable to him. +p54388 +aVI allowed my then boyfriend to touch me, if only briefly. +p54389 +aVI ate 12 biscuits one night after tea while watching TV - I don't know why. +p54390 +aVWhen I saw my brother in Church, and publically accept Jesus Christ as his saviour and Lord. +p54391 +aVI was seven years old and swimming outside the flags at the Gold Coast. I was caught in a rip and taken out about 100 m. I couldn't swim too well, but an older friend (17) swam out and saved me. +p54392 +aVWhile at school I had to write an essay for doing something wrong that I didn't do. I wrote the essay about how I was mistreated and got Saturday morning detention along with a few other kids, but they didn't show up. +p54393 +aVWhen one of my closest friends died unexpectantly. +p54394 +aVWhen I saw a male engineer one year and came back to find he was now a female (I don't know it/them personally). +p54395 +aVWhen Dad went to a Sports Day and was the only parent there, and he was cheering for us. +p54396 +aVWe owned a shop and I used to serve in it occasionally. We sometimes took lollies out of the stand and Dad caught me one day. +p54397 +aVOn holidays - just driving along a road beautiful scenery. Just with my boyfriend - not really talking but just feeling overwhelmed. +p54398 +aVLying to a friend about something that was trivial. +p54399 +aVI had promised to do a task for someone that was close to me, and from the outset I knew it was important that I do it, but when it came to it, I let them down. +p54400 +aVGood news about a sick relative. +p54401 +aVWalking in the dark by myself. +p54402 +aVGetting terrible meals, but paying heaps for them. +p54403 +aVWhen felt lonely about writing my family. +p54404 +aVPerson talking about a situation while eating. +p54405 +aVFelt it after I spoke terribly (got mad at) the person who is the most important in my life. +p54406 +aVNot giving up something for Lent. +p54407 +aVWhen I received my TE Score and my acceptance from University - it had been a goal since I left the bank a year earlier. +p54408 +aVEvery time I see a spider or a snake. +p54409 +aVMy younger brother and I had been fighting over the TV/Video. He kept on turning it on and off every 2 seconds and was not listening to my authority and was being cheeky. We fought and I ended up in tears - he'd won. +p54410 +aVThe first time I left home. +p54411 +aVOn a camp - boys and girls in one cabin. One guy forced himself upon another girl and was having intercourse, while the girl in the bunk beneath was pretending to be asleep and not be ill. +p54412 +aVWhen my new jeans split while I was with the youth group. +p54413 +aVWhen I was 17, I told Mum I came in at midnight, when really it was 3.30. +p54414 +aVCan't remember specific event - besides just being moderately happy until a year or so ago. +p54415 +aVLeft alone in dark when young. +p54416 +aVCan't remember exact example. +p54417 +aVClose relative is dying of cancer - found out last week. +p54418 +aVDoctors ignored relative who complained about pain, and is now dying of cancer. +p54419 +aVOne of my best friends'fiancT broke off the relationship because his feelings for me were stronger than for her. I felt the same for him, but did not really encourage him to leave her or stay with her - still felt shame. +p54420 +aVAfter the fact that made me ashamed I felt sadness. +p54421 +aVA person that eat half of a cockroach in a cake without knowing it. +p54422 +aVA situation where we were the center of attention, and things happened without my control on them, that showed our disagreement, and ignorance. +p54423 +aVWhen I let a person assume a fault that I committed. +p54424 +aVWhen finally I found a place to live, I felt relieved, predicting changes in my life, and I became happy. +p54425 +aVWhen I dreamed that I was being attacked by a friend. +p54426 +aVWhen I was left by the person I loved without any reason. +p54427 +aVTo fight with a sister and to know that she doesn't care. +p54428 +aVTo be kissed by soembody I didn't expect to. +p54429 +aVA day when I was getting out of the shower I covered only the front part of my body with a towel (I was 7 years old), and I didn't see that my cousin was in the room. +p54430 +aVWhen I finished a love affair where I was responsible of the sad end. +p54431 +aVI felt it when I received a letter telling that I had been classified in a national concourse of p... I felt happy and vanity about it. +p54432 +aVI felt fear when once I was asleep and dreamed that I was dying asfixiated by a cardiac attack, I was afraid and woke up desperate. Altough I wasn't afraid of death I was afraid. +p54433 +aVI feel it when I see that somebody is traying to made a stupid of me. +p54434 +aVI felt it when I was at home and saw a discussion without sense between my parents. +p54435 +aVWhen I see all the putridness of people. The fact is the catarrh and spits that whash the streets of S.Paulo. +p54436 +aVI felt it when I felt that I was being observed as an object of pleasure (sexual) when I opened and took off a shirt in a classroom at P.V.C. +p54437 +aVI felt it when playing I pushed my brother and he fell down cutting himself in pieces of tile. +p54438 +aVWhen I asked my girlfriend to marry me. +p54439 +aVWhen I almost drowned myself in the municipal swimming pool that I use to go almost not excaping. +p54440 +aVI was with my girlfriend when some guys that I don't like made fuss at my girl. +p54441 +aVThe death of my grandfather. +p54442 +aVTo go through the underground way at suburb station of LAPA. Poor people and the ambulants badly dressed up in a passage badly kept. +p54443 +aVIn a fight with my girlfriend in a luncheonette where everybody stared at me in such a way that I had to leave it. +p54444 +aVI pointed a failure of a friend of mine. +p54445 +aVWhen I met a friend that I hadn't seen for some time. +p54446 +aVWhen I got in jungle where there was a great number of snakes. +p54447 +aVWhen an unknown person provoked me verbaly and physically. +p54448 +aVWhen my team lost a championship. +p54449 +aVA dirty person, smelling bad and unknown laying on me. +p54450 +aVI confused a girl with another. +p54451 +aVOnce when I complained I caused a great discussion between my parents. +p54452 +aVWhen I began to date a boy with whom I am till now. This was 16 months ago. +p54453 +aVI learned that my girlfriend had been unjustly missed from work. +p54454 +aVI got separated from the man I loved. +p54455 +aVAn acquaintance of mine revealed himself in a light unexpected to me. +p54456 +aVOnce as a school girl I was copying at a class work and my teacher spotted me. +p54457 +aVI was in a sanatorium. In front of me a boy fell down from his invalid's chair. I could help him but I didn't. I felt like being paralysed. +p54458 +aVWhen I took my entrance exams successfully and also when I got my school leaving certificate because the delivering ceremony was extremely official. +p54459 +aVWhen I was to sit for my first entrance exam. I had fear of a possible failure. +p54460 +aVI was indignant at the unimpartiality shown by the referees at the football match between Bulgaria and France. +p54461 +aVWhen I got separated from the man I loved so much. +p54462 +aVWhen I was watching some scenes from the Bertoluchi's film ""Twentieth Century"". +p54463 +aVWhen I was a school girl and I copied at a class work. +p54464 +aVWhen I have sometimes been unfair to my parents, when I have happened to deceive them over some trifling things. +p54465 +aVWhen I was admitted to the Sofia University. +p54466 +aVWhen I come home late at night. +p54467 +aVWhen I talk to silly, petty-minded and unmanageable people. +p54468 +aVWhen my friend (girl) went abroad for two years. +p54469 +aVWhen I happen to witness some sadistic acts. +p54470 +aVWhen I have a plain appearance. +p54471 +aVWhen someone is accused or punished instead of me. +p54472 +aVI was admitted to the University and a niece was born to me. +p54473 +aVI was bitten by a dog. +p54474 +aVMy grandfather's funeral. +p54475 +aVI was alone at home on New Year's Eve. +p54476 +aVI was on a walk with my child when I met a drunk woman. +p54477 +aVI was unaware that I had walked the streets in torn trousers. +p54478 +aVOnce I worked as a designer. A fitter was hard hit in a damage that occurred at the building site I had designed. +p54479 +aVMy admittance to the University. +p54480 +aVA grenade blew out next to me. +p54481 +aVAn unjust calumny concerning me. +p54482 +aVUnrealisation of the desired profession (aviator). +p54483 +aVDisgust with a subordinate. +p54484 +aVI lied to a friend. +p54485 +aVBetraying someone's trust. +p54486 +aVFriend's fiancT left her for me. +p54487 +aVWinning Queensland Chess Championship. +p54488 +aVWhen in a car accident where car was total wipe off (wipe out, or write off). +p54489 +aVWith self at losing an important game that I should have won. +p54490 +aVDeath of grandfather (unexpected). +p54491 +aVSomeone smoking on Electric train (Electric trains are non-smoking) with alcohol smell coming from person. +p54492 +aVWhen bathing at surf beach & lost togs. +p54493 +aVPromising someone to do their job and then not being able to do it due to transport troubles. +p54494 +aVReceiving a very personal letter from a lady that I like, which revealed that she was more enthusiastic about me than I had thought possible. +p54495 +aVIntroducing myself at a first tutorial this year at University. +p54496 +aVI was angry at a University tutorial when an ignorant loudmouth persisted in trying to dominate the conversation. +p54497 +aVI left my home in Melbourne to come to Q'land to study and before I hopped in the car I hugged my mother and shook hands with my father. Sensing immediately my father's sadness, I also had a flood of the same emotion. +p54498 +aVWhen one of my parents verbally, personally abused the other. +p54499 +aVI felt something akin to shame after a heavy night of drinking, along with waking up with a woman I had just met whose husband was an epileptic. I was later to know that she knew my mother. +p54500 +aVI felt guilty about talking negatively, and agreeing with a person who was doing likewise, about a non-present third person. +p54501 +aVBeing in love for the first time. +p54502 +aVAs a child - stepping on a rusty nail - being told that I might get tetanus. +p54503 +aVAs a child - about 8 years old - walking across a paddock - being set upon by another boy who claimed it was ""his land"" - being intimidated by the boy - crying, being punched, etc. +p54504 +aVAs a child - having a dog - it getting a disease and dying. +p54505 +aVBeing in a Malaysian city with my girlfriend coming out of a picture theatre - seeing her rush up to a taxi that a very old sick man was trying to get to. Seeing her take over the taxi. +p54506 +aVAs a child - being sent to the shop by mother - buying some chocolate - getting caught by mother. +p54507 +aVAs a child - accidentally stepping on a pet guinea-pig - it dying. +p54508 +aVWhen I achieved my first 6 at University after a long string of 3's, 4's and 5's (7 is the highest mark awarded, 3 is a conceded pass). +p54509 +aVOne night going downstairs, and hearing a strong stirring of brances, which was not the wind. +p54510 +aVI was informed by my flatmate that, when we'd moved into our flat, she'd expected us to buy our food separetely - this event actually happened some 5 months after our sharing began. Prior to this, she had said nothing. +p54511 +aVHaving to decide on a termination of a pregnancy, after discussing it with friends, family and the man involved. +p54512 +aVWhen a friend didn't invite her own parents to her Graduation ceremony. +p54513 +aVSaying something quite rude, but in jest, about a photograph of someone, but it didn't quite turn out that way. +p54514 +aVWhen I was about 14 years old, I ""borrowed"" a can of drink from the refrigerator, intending to replace it later that day. But it was found missing before I could do anything - no one owned up to its disappearance. +p54515 +aVWhen I was a child, my beloved cat gave birth to four beautiful little kittens. Before she had them, she came up to me and I followed her out, then witnessed them being born. +p54516 +aVOn embarking on University life. I came from a different city and did not know anybody at the Uni. I was frightened because my well known and loved friends, also all my security had been taken away. +p54517 +aVWhen my brothers were being cruel to my boyfriend, because his flat-mate bent back one of my brother's fingers. It wasn't his fault. +p54518 +aVUpon moving away from home for the first time to a different city, I felt no longer ""under the wing"" of my parents even though they would always be there to help me. I felt a sense of loss, I was now all alone in the world, responsible for my own actions. +p54519 +aVI was sitting at a rock concert, listening to an extremely loud band. A tiny baby in a crawler had been left by his young mother, right out in the sun next to a speaker, and was screaming - probably in pain. +p54520 +aVBecause I was lazy and unthoughtful I did not get into contact with a very close friend when she shifted from the Gold Coast to Brisbane, for a month, despite her efforts to contact me. I felt shamed when I finally confronted her again. +p54521 +aVWhen I felt I had let my parents down, especially my mother, by having sexual intercourse for the first time, and a few times after that. Also, when I went on the Pill. +p54522 +aVThe weekend after I argued with my parents I went home again and they couldn't have been nicer. As soon as I walked in, Mum kissed me, then Dad, and thanked me for the birthday presents I'd left for him, including a very sentimental birthday card. +p54523 +aVBefore Uni started, I had to leave home and take up residence in Brisbane (the ""big smoke"") leaving home, my family, and moving to such a big place was quite intimidating at first, and I was anxious about it. +p54524 +aVMy flatmate was asking questions about my relationship with my boyfriend, whether I wasn't treating him as unfairly as I claimed he'd been treating me. As a result, I was angered, and became defensive. +p54525 +aVA very close friend from Victoria visited me over the holidays. Having enjoyed his company immensely over 10 short days, I was overwhelmed by sadness when he left to return to Victoria. +p54526 +aVOne of my flatmates and I came back to the flat Monday morning, to find a real Mess, left by the guy we share with. +p54527 +aVFirst weekend back home after one week at Uni I scolded one of my sister's best friends for using our telephone. Very silly, but I was annoyed because she was there at a time when I needed to be with my family. +p54528 +aVWhen my Bictorian ""friend"" was staying at my house we ere going places together, and sleeping together. At the time I had a boyfriend locally. The first time I had to face him after sleeping with the guy from Melbourne I felt very guilty. +p54529 +aVJoy of giving birth, and of sharing that joy with my husband. Moments of complete happiness and feelings of so much love. +p54530 +aVAttempted rape by 5 guys - held my arms behind my back and molested me, constantly threatening to beat me. Penetration did not occur as the driver of the car stopped that. +p54531 +aVAnger at doctors for their treatment of me after giving birth. They left part of placenta behind and I bled heavily for twelve weeks - due to this, I felt weak and emotional, and they said I needed psychiatric treatment and give me no support. +p54532 +aVWhen my son was diagnosed as having CEREBRAL PALSY, at age 5. He would have to endure so much labelling, stigma and discrimination, even though his case was relatively mild. +p54533 +aVI have an adopted Aboriginal sister I felt disgust due to the racism she has been subjected to. +p54534 +aVWhen I decided my first marriage had ended, and left with the child. I felt overwhelmed by guilt as I was separating mother and child. +p54535 +aVReceiving notification that I had made a successful application to the Speech Therapy course at Uni, gave me a very good feelig of achievment and joy. +p54536 +aVMy ex-boyfriend began to date my best friend. After they had been seeing each other, I found out that he had been sleeping with another girl, without my friend knowing, I told my friend what he had been doing behind her back. +p54537 +aVMy mother left my father for his best friend, and he moved to Papua New Guinea. Despite the fact that I am closer to my father than to anyone else in my family, I had to move in with my mother, and say good-bye to my father, not knowing when I would see him again. +p54538 +aVWhen I discovered my mother had been having an affair with my father's best friend, and then ran away with him without even speaking to me about what she was doing letting me come home from school simply to find her gone. I was filled with disgust and contempt. +p54539 +aVI recently became sexually involved with my sister's lover. I care for him very much, but I am ashamed of the hurt I may cause her. +p54540 +aVI once stole a shirt from the Department Store in which I work. I have been promoted to work in a very privileged section of the store. Their belief in my integrity makes me feel even guiltier. +p54541 +aVSeeing a close friend who had just returned from twelve months overseas. +p54542 +aVFinding myself alone in a public toilet block with a man known to have had great psychological disturbances. +p54543 +aVAfter seeing an ""uncertain"" child work on a model for several hours, I watched a ""bully"" of the same age destroy it, telling the child that it was worthless. +p54544 +aVLeaving home to move closer to University. As an oldest child, this experience was traumatic for both my parents and myself. +p54545 +aVViewing the results of senseless vandalism to a local primary school. +p54546 +aVI slept with a man purely because I found him physically attractive and was under the influence of alcohol. +p54547 +aVInventing a fictitious series of events, as a result of which I ended up in a conflict with my two closest friends. +p54548 +aVWhen I finished my exams after 12th Grade, I was worried about getting a T.E. Score high enough for Physiotherapy. When I found that I had been accepted I was ecstatic, or more appropriately, could jump for joy. +p54549 +aVWhen going for my driver's licence for the third time, because everything, it seemed, hinged on getting it. I was really nervous, and the testing Officer made me a little afraid as well. There were lots of things to worry about. I passed however. +p54550 +aVWhen a so-called friend let me down, when she promised to tell me when a certain concert was occurring, and that she'd get me tickets. I was really looking forward to it. She did nothing, just told me out of the blue one day what a fantastic concert it was going to be. +p54551 +aVWhen my family heard that my Mother's cousin who lives in England wrote us to tell that he had cancer of the lymph glands. +p54552 +aVWhen I found out how the people of Ethiopia were starving and their government was spending millions on celebrating being in power so many years. Then I saw all these people on TV needing food, etc. +p54553 +aVI went to visit Montrose home for crippled children to interview a handicapped child. I interviewed two boys and it went really well. I promised I would visit them, but never got the time. Now I hope they've forgotten me, but I feel ashamed of letting them down. +p54554 +aVI was driving my parents' car into a carpark in front of a shop we own, and scraped the corner of the front panel on the back corner of my father's utility. I didn't tell anyone, I lied about the bump (later I had to confess). +p54555 +aVTwo years ago, somebody I like very much wanted to give up his studies. I tried to make him understand the importance of what he was going to do, not only of the difficulty to find a job but also because he will decrease his culture etc. This person made the test to the college entrance examination and to our great joy we found out that he succeded in entering at the University. +p54556 +aVOne night, when I got out from the University I saw two strange people near my car. When I got near, they moved away, and then came close again. I had a feeling that they were assaulters. After I left I discovered that the windshield was broken. +p54557 +aVOne day in a crossroad somebody crashed my car. I got out and this person laughed at me. I felt such a great anger that I got in my car and went away. +p54558 +aVI don't know why suddenly I thought that what I was feeling for my boyfriend was not really love. After almost three years being together, this matter of fact shaked me and I felt a great sorrow that I can call sadness. +p54559 +aVReturning home in the late afternoon I saw an indecent act made by a man with the purpose that I saw it. +p54560 +aVIn a school parting we agreed to go to a restaurant. We met at school and we separated us in several cars. My car broke and we arrived late. All those who already had arrived stand up and applauded us when we entered two hours late. All the restaurant attention was turned on us. +p54561 +aVWhen I was a little girl about eight years old I broke the bey from a closed. Mother asked who did it. I said that it wasn't me, as I almost never lied, and my brother did it more frequently in spite my brother denieing it my mother gave him a few slaps. +p54562 +aVWhen I entered at the University. +p54563 +aVOne night I and my friends went to the cemetery. We stopped the car in front of the wall and suddenly the grave digger appeared over the wall looking like a ghost. I was already afraid and almost died. +p54564 +aVWhen one teacher unjustly gave me zero in a test saying that I was cribbing. +p54565 +aVWhen my grandmother died. +p54566 +aVI went to a restaurant with my boyfriend for dinner. There we saw a couple. the man of the couple was a negro and he hadn't manners for eat. +p54567 +aVWhen the teacher asked me to read my composition that was the homework I stood up and invented one because I hadn't done it. A colleague saw that in my copy book there was nothing written and he accused me and so I was called in the director's room. +p54568 +aVWhen I took away my best friend's boyfriend. +p54569 +aVWhen in the end of a semester I got the approval in a matter that I judged very difficult. +p54570 +aVCrossing a street of several ways the cars began to move and I thought that I was going to be trampled. +p54571 +aVI went to the school library and asked for a book, but the librarian told me that there wasn't such. However when an other colleague asked for it she gave it to him. +p54572 +aVSome colleagues decided to go out on a Saturday not inviting me to decide either the place nor the time. +p54573 +aVA teacher giving a test was called by a student by his first name. He (the teacher) said that he didn't give him this liberty. +p54574 +aVOne day in the intimity with my girlfriend I had an ejaculation. +p54575 +aVWhen I answered to my mother with rudeness. +p54576 +aVThe situation in which I felt happiest in my life was when I was with the person I love for the first time. +p54577 +aVFear of thief. +p54578 +aVI feel anger when somebody forbids me to do something. +p54579 +aVI felt sad when I was despised by another person. +p54580 +aVI felt disgust of dirty. +p54581 +aVShame of not doing something well. +p54582 +aVI felt guilty when I couldn't help a person. +p54583 +aVWhen I got through the examination for my driver licence, and when I finished I knew I had passed it. +p54584 +aVI was inside the car with my husband and we were assaulted with a gun at 10 o'clock in the evening. +p54585 +aVWhen they changed my office to another room without my agreement. +p54586 +aVI couldn't sleep, and began to remind of my childhood. We are many sisters and at that time we were spanked a lot and I don't know why I started to remind of the spanks they and I had had, their shouts when this happened. +p54587 +aVWhen I red a report in the magazine VESA about an Iranian telling what she had lived in the prisons in Iran. I felt disgust about that people. +p54588 +aVI made a comment that at the moment didn't fit. +p54589 +aVWhen my niece was 3 years old she was in the living room while we were fixing the table for a birthday party and, as every child, she couldn't stay calm. She burst a balloon. When I told her to be quiet her father pinched her. I believe if I hadn't said anything this wouldn't have happened. +p54590 +aVI was in ILHA GRANDE with a wonderful sun, with wonderful people, with a wonderful sea, with a wonderful boy. +p54591 +aVWhen I was looking for a job I felt a lot of fear but the fear was greater when I found it. +p54592 +aVThis feeling occurred to me when my colleague entered in G.V. (University) and I didn't. +p54593 +aVWhen I applied for the college entrance examination to FUVEST, and I wasn't approved in the second fase. +p54594 +aVI had this feeling when I met a girl, not that she was dirty but she was to ""fresh"", dump and childish. +p54595 +aVI was very fat, and was ashamed of my body. +p54596 +aVWhen my ex-boyfriend didn't want to sleep with me anymore and I insisted. We made love but he felt very badly and I felt guilty. +p54597 +aVI felt happy when my mother borrowed me the car in order to let me go out alone for the first time. +p54598 +aVI felt afraid when I smoked maryhuana for the first time in my life with a lot of friends in the middle of the street at day brake. +p54599 +aVI felt anger when I had a fight with my father, and he beated me. My mother came to help me (because I was beeing beated) and he also beated my mother. +p54600 +aVIt happened when I lost two very intimate friends in a car accident. +p54601 +aVI felt disgust of my father when I knew he had a lover. +p54602 +aVWhen my mother found out that I smoke maryhuana. +p54603 +aVI felt guilty when I ""stole"" the boyfriend of a friend of mine. +p54604 +aVAlways when I am well succeded. +p54605 +aVWhen there is danger nearby. +p54606 +aVI feel anger when things don't come out as I wish. +p54607 +aVWhen I couldn't go for a trip with my friends in a holiday. +p54608 +aVDisgust of drunkers and of blood. +p54609 +aVShame of being reprehended. +p54610 +aVWhen I shout at a colleague in classroom. +p54611 +aVWhen there was a possibility of getting on better in professional life. I valorized very much this aspect. People showed me this possibility, not the real fact (even because until now ...) +p54612 +aVWhen I was curious about it and went to a spiritism session with a friend. I had already been there other times (many times when I was younger) but that day, even if I don't believe in spiritism I was terribly afraid that something would happen to me (sort of incorporation !). +p54613 +aVWhen they denied a job to a person that I propsed giving political reasons that has nothing to do directly with the professional level. +p54614 +aVDuring an informal talk with a friend when we talk about the life of another person, a common friend, that is in a situation of not being able to assume certain problems that he decided to solve, that is, she herself suggested the problems and decided to solve them but didn't get it until the moment. +p54615 +aVWhen my friends and I were camping in a weekend, and with little food, we met a middle age couple from a small town that invited us to eat in their house. Their house was small, badly built with old and dirty forniture and utensils. The problem was with pans, and dishes, and even the food. +p54616 +aVWhen I went to meet the family of my boyfriend in a party in his house. His mother was eager to know me and all his friends ready to make jokes about the situation. +p54617 +aVWhen I met another person I began to go out with him, and my boyfriend (with marriage accorded) met us together he did a great scandal, he broke the engagement and I began to go out with the other, and it didn't work because my mind was all mixed up. +p54618 +aVWhen I got a wedding ring of diamond from the boy I loved. +p54619 +aVAfraid of getting alone without friends, without anybody. +p54620 +aVWhen they stole my dark blue tennis. +p54621 +aVWhen I became conscious that men don't wnat anything they don't have a goal. They have: sex, but this isn't important. +p54622 +aVWhen I went in a clinical hospital and saw in what conditions people are attended there. +p54623 +aVIn the last day of carnaval I met a boy and began to flirt with him. I was in love with him. When he introduced me to his friends I died of shame because I was with them before, I met my boyfriend in carnaval. +p54624 +aVWhen I didn't pass the examinations for FUVEST I felt myself guilty for I should have studied. I had the opportunities, and I drew them out. +p54625 +aVWhen I met again a great friend and talked a little while with him. When I see again another I miss. +p54626 +aVI feel afraid of the way a great friend looks at me, and also a little afraid of the directions that it's going. +p54627 +aVI felt anger of a friend when she met ""a date"" and become nervous and pest as she always gets when she meets him. +p54628 +aVWhen I knew almost the same day about two great friends of mine that had serious existential crisis, and mainly when I notice that I'm in the same situation that they are, but I didn't realize it. +p54629 +aVWhen some friends and I get acquainted a guy during vacations I thought he was disgusted and ""a friend"" of mine for whom I feel a little disgust wanted to stay with him. +p54630 +aVI felt shame when I had to talk with a person that I hadn't seen for many years. Shame that he wouldn't recognize me or that I wouldn't know what to say. +p54631 +aVWhen I wished secretly and lied to a friend of mine because I didn't want her to stay in my house on the beach (as she always does), and wouldn't stick on me. +p54632 +aVWhen I entered University. +p54633 +aVI have been afraid several times. What marked me was that I almost didn't enter University. +p54634 +aVI'm crazy about football. When my team lost a goal in the Paulist championship, and so it lost the classifications. +p54635 +aVWhen my grandmother, my second mother died. +p54636 +aVWhen a girl that I liked didn't accept my curting. +p54637 +aVWhen I had my first sexual relation and it didn't work. +p54638 +aVWhen my father had a serious fight with my sister, because of me. +p54639 +aVWhen I met a girl and asked her for a date and she agreed, (I thought this girl would never like me), this was an emotion of joy. +p54640 +aVThe same fact about the girl (22 years, married - guilt - disgust), the fear was the main factor in our relationship. +p54641 +aVAbout the car (sadness) I felt anger the way I acted after negotiating it. +p54642 +aVTo buy a car and didn't like the business and the car. +p54643 +aVI met a girl (22 years old), married. I liked her. I asked her for a date and I kissed her. I discovered that she lived nearby where I passed every day. I got amused thinking that her husband would be ... or me . I didn't talked to her anymore. +p54644 +aVWhen my mother looked in my drawer (where I keep my personal things) and she found some porno photos that I have kept from more than a week, and split it. +p54645 +aVAbout the girl (22 years, married) I felt guilty of the relationship. +p54646 +aVI felt joy when I red my name in the list of the approved in the entrance college examination. +p54647 +aVI was visiting my parents in law when the house was invaded by three strange men, and they committed an armed assault. +p54648 +aVNearby the end of the year my wife and I were having a car ride, when it appears another vehicle, driven by a drunk driver and provokes an accident. +p54649 +aVTo have a friend who I didn't see for months, and under the circumstances that I met him made me feel happy, and perhaps because it has been one of the good things that I learned with this friend. +p54650 +aVWhen I left a carnaval ball at 4 o'clock a.m. I was alone in a foreign city and I had to go back home, when a guy appeared and tried to ""catch me"". +p54651 +aVThe fact that I hadn't been informed about something and I had the greatest trust in this person. +p54652 +aVA friend of mine lent me his apartment for holidays and besides this he was a fine person. Months later I knew that he died tragically in a moto accident. He was very young, and I felt sad and couldn't believe it (until today). +p54653 +aVIn contact with a poor family of northeast it was offered to me a crab to eat at my request. But the fact that this crab was prepared antihygienically and his appearence was also antihygienically it caused me disgust but I ate it anyway. +p54654 +aVIt was my birthday and all the members of the group made me a surprise in a public place at 10 p.m. giving me flowers and suvenirs. +p54655 +aVAttending to a demand made by a client (I work in a bank) I suggested her an application of money in a week ahead, but I informed her wrongly. The client arrived a week after and the application wasn't made and she lost with this a lot of time and money. +p54656 +aVWhen, after a long time of searching I got my first job. +p54657 +aVAfter some time of work I was transferred to another place and in an other quite harder job. +p54658 +aVWhen I used to go to my chief asking about any doubt about the job and he didn't care, didn't answer me, leaving me speaking alone. +p54659 +aVWhen I knew that a person that I liked very much didn't react the way I would like to, even that I knew about his feelings for me. +p54660 +aVWhen I knew that a person who I didn't like, had about me other feelings. +p54661 +aVAfter lot of explanation, to fail in my work. +p54662 +aVMy brother and I were at home watching a TV program when I started to tease him and in this joke I hurt him without knowing the seriousness of it I went on. He got angry and gave it back to me. At this moment I felt anger at him but knowing that it was my fault. +p54663 +aVWhen a person that I like very much got near to me. +p54664 +aVI was at home alone, and heard noises on the roof, and doorknobs, and drawers. +p54665 +aVWhen a person is privileged in account of situations that are unjust, and disloyal to colleagues and friends. +p54666 +aVWhen I was betrayed by a friend, and decided to stay apart form her. +p54667 +aVAfter a serie of facts that occurred between a colleague and me I started to feel a certain necessity to get apart and I didn't want to see her anymore. +p54668 +aVI went to study in a public library but I didn't know it well. I got a book and wanted to study hearing music. Then I went to a place were I could do it, but when I passed by a door a bell rang and a man came saying that I couldn't leave with the book. +p54669 +aVI broke the gutar of a colleague but as it happened in a moment when nobody was present I could escape from the guilt. +p54670 +aVI made the college entrance examinations for P.U.C. It was what I wanted more. When the first list came out I got frustrated. I wasn't in. When the second list came out without hopes I started to read the newspaper and my name was thre. I was in the bus and felt like crying so that everybody could hear me. The cry was hold, and 1982 became forever a mask in my life. +p54671 +aVI remember when I was a child of a storm that made me terribly afraid. I thought that the house was coming down and that in the next day I would be dead. Everybody was awake and I stayed all night in bed without falling asleep. +p54672 +aVOnce in my work it happened a fight between the person in charge and me. I got so angry and spoke out everything I felt at the moment. +p54673 +aVI remember the day my father died. I was 11 years old and my sadness was so great that until today I remember everything about that day, from the clothes I was wearing to the reactions of people, the despair of my mother and brother. It marked me a lot and was the greatest sadness I felt. +p54674 +aVI was sitting in school, waiting for my sister to go home. Suddenly a boy put fire in a paper and threw it were I was sitting. The paper didn't get me, but I felt terribly disgusted at this cowardliness and irresponsibility that caused a great discussion. We went to the director and he, drunk as always, said that I was ... attention in school. I felt disgust of this situation, and of the persons implicated in it. +p54675 +aVSome times I was ashamed of presenting seminaries or even to speak in class. +p54676 +aVIn adolescence I had a very violent fight with my sister I hold her stong in her neck, she had a throat surgery what make me feel guilty about the future reactions she might had injuring the surgery. +p54677 +aVThe day I received the key of my apartment and we could enter in it, for my fiancT and I had bought it yet in plans, and it seemed to us that this was almost impossible to happen. +p54678 +aVI had a driver licence but I didn't drive for a long time, than I started to drive again, and had to get into hard transit and highways. +p54679 +aVWhen my boss cut off my vacations saying that in that month it wouldn't be possible, and after some time he let another girl take vacations that month. The anger was because of the resentment. Resulting from our bad relationship. +p54680 +aVMy fiancT's family was adopting a 5 years old boy. I felt myself close to him as I never felt before. After some time his mother demanded the care of the kid and we were obliged to send him back. +p54681 +aVThere is a girl at my work that doesn't take care much of her hygiene she comes always with her hair oiled, a not very agreable smell, and a bad appearance. Beside this she tries to be nice. +p54682 +aVA day I was with my boyfriend and a couple of friends in a bar, and he said something that I didn't like (I don't remember what). Without thinking I slept him in his back, getting ashamed and sorry just after. +p54683 +aVWhen I was starting in romance with my husband, we went out to curt, and we stayed in the car ""making love"". At the time I was seventeen and I was very immature until a day I lost my virginity. +p54684 +aVIt was when a friend took me to a place and gave me as a gift my astrologycal map with the explanations of a psychologist. +p54685 +aVWhen I was dreaming that I was being chased, in the upmost of horror the door of the closed felt down synchronicaly with the dream scare. +p54686 +aVWhen my mother slapped me in the face, I felt anger at that moment. +p54687 +aVWhen I deeply felt that I could lose the person I love best because of my foolishness. +p54688 +aVI felt disgust toward meat when I felt sick with the steak after a week only on meat. +p54689 +aVWhen I had to act alone a character for a public (40 people). +p54690 +aVWhen I stared to much at a pastry that a woman was eating and at the same instant the pastry felt on the floor. +p54691 +aVIn a day when at work, in school, and relationships came out as I wanted, and I was recognized in my work. +p54692 +aVWhen I woke up in the middle of the night because of a dream, it wasn't a nightmare, it was an uninteligible dream in wich I woke because of a certain end. +p54693 +aVWhen I was robbed in a bus. +p54694 +aVWhen I try to get closer at a person and she misinterpreted me. +p54695 +aVWhen I felt the smell of industries that pollute. +p54696 +aVWhen somebody I knew greeted me and started to talk with me and I didn't know, I couldn't remember who he was. +p54697 +aVWhen I unjustly accused a person of my family of something she didn't really do. +p54698 +aVI was travelling in the South of Brasil, near the end of the year. I was well settled with 3 friends. At the evening of 31 M., somebody, also with us, took from his purse pints of all colours, and the 4 of us, and other friends, that were at the same beach, painted each other and we went to the beach with champagne. +p54699 +aVI was walking from my friend's house, a few blocks from my house, when a car began to follow me. He waited I passed by it rotateed a little and stopped on my way. I changed completely my way and the car went on following me until I turned at a corner and running I hid in a garden of a house, waiting for the car to pass by. I went back home terribly afraid. +p54700 +aVOne day I lent my tennis I just had washed to my sister because she asked it. I asked her not to soil it as I had just washed it. Next day I looked at the tennis, and it was dirty with wax. She could not have soiled it. It was lack of consideration. I felt very angry. +p54701 +aVThe second time I went to the entrance exam to V.S.P. and didn't get approved. +p54702 +aVI was travelling, we were 15 person, one of them I met at the travel and didn't like her. One night I was asleep while she and her friends were talking too loud in the kitchen. I got up to ask for silence and since that day I felt constant disgust for her. +p54703 +aVI was working in I. when a friend of mine borrowed his car so I could get bach there, I had to come to S.Paulo and his car was here. He said :""When you get the car tell my mother that you are only taking the car bacause I asked, for she doesn't like me to borrow it"". Next day he borrowed me it again for I had to come back again. When I was coming back I crashed the car quite a lot. One of the first person I met at the accident was his mother, that said to me ""You weren't to take the car only yesterday ?"" (before I saw her I was already ashamed). +p54704 +aVI had a date with a boy, but I didn't feel liked, and didn't go, I wasn't home purposely at the time we arranged. +p54705 +aVA friend of mine that is abroad undertook recently an axam to enter on University in Dallas, and was approved. +p54706 +aVI felt afraid of losing somebody I love to another person because I was an incomprehensive person and lots of time I fight with this person. +p54707 +aVIn certain occasion I have a fight with my boyfriend. During the fight I closed the door at his face. He went away but came back next day. +p54708 +aVLast year, when I took the college entrance examinations I failed the FUVEST. It was for me the most frustrating situation because I had studied all year long, and only thought about this. +p54709 +aVIn a certain occasion I saw a dog in the street eating something so strange gooey that I wasn't able to eat lunch because I remembered the scene all the time. +p54710 +aVI had never made a malicious joke in front of my boyfriend. Last week I did it I was funny, he loved it, and I died of shame. +p54711 +aVWhen my parents fight lots of time, when I'm the reason of the fight, I feel guilty. +p54712 +aVWhen I knew about my first job. +p54713 +aVWhen I was just to be divorced. +p54714 +aVMy mother in law slept in my bed. +p54715 +aVA terrible fight that I provoked with my friend. +p54716 +aVIn the last year of the high school we had a huge fight between my group and the graduation commission (two students of my classroom) because they accused us unjustly of a gossip about them. +p54717 +aVWhen I was 10/11 years old my father travelled very much for his work (he passed three months away from home). +p54718 +aVI saw a film where snakes were crawling everywhere. I felt them crawling over all my body with that ... skins. The noise that they did disturbed me very much. +p54719 +aVIn a play (secret friend) during the time of the high school I had to give a present to a boy and I was very ridiculous because of this. +p54720 +aVWhen I was a child I used to play with my cousin gushing wather to each other in front of the door of my house. One day we decided to gush with on a passing car. The driver stopped and went to discuss with my mother and my aunt that were there. +p54721 +aVWhen I got a small present form a person I like very much. +p54722 +aVWhen a friend of mine discussed with me, I felt fear of losing her. This occurred because we had a missunderstanding between mutual colleagues. +p54723 +aVWhen a boy tried to fool me so he would be OK trying to show me that he is a gook boy. +p54724 +aVIn the 12/83 my boyfriend asked me to forget him, as it would be easy. +p54725 +aVWhen my oldest sister discovered that her boyfriend had another girl. +p54726 +aVWe where in a bar and my friend had a fight with some guys who were in the table aside. +p54727 +aVWhen I deny something to my sister and after a while I feel sorry and try to bypass the situation. +p54728 +aVWhen I saw my name in the newspaper and I knew that I entered at the University. +p54729 +aVWhen my father died I felt myself alone and the fear possessed me. I was a child and all my sisters and brothers (8) were young. +p54730 +aVI loved a person and he went away. It wasn't necessary that he left me to reach his goals. +p54731 +aVA close friend travelled to another country. When I knew that he would only come back after many years, I felt very sad. +p54732 +aVWhen I watched a film about the problems of abandoned children (PIXOTE). +p54733 +aVWhen I began to date, the first gestures of affection made me feel ashamed. Note: for GUILT go to record n231 +p54734 +aVThe day I decided to get out of my house I saw in my brother's eyes that they blamed me for the situaiton. +p54735 +aVI had a friend who I didn't see for a long time. We had a relationship from much union and interaction. It was more that one year that I didn't see her. She appeared in my home and we talked. +p54736 +aVI was sitting on the bus coming back from school. A man from nearly forty years sat beside me. After a while I looked at him and saw that he was looking at me with opened throusers and holding his penis. +p54737 +aVMy mother was ill and asked me to prpare our lunch. I went to do it, and while I was working, she stayed behind me telling what I had, or not to do. I asked her to stop meddling, and to go to bed. When I went to ask for help to my sister, my mother said that I was proud, that I asked for help only when I wanted and that I wasn't able to cook by myself. +p54738 +aVWhen on Christmas day my grandmother died. I received the news when I was coming back from a party on the 24th at 5 am. +p54739 +aVThe same event described under FEAR - in the bus a man sat beside me, with his trousers open and holding his penis. +p54740 +aVWhen I went to a halloween party and had to walk through a shopping center dressed like a witch. +p54741 +aVI had parked in a corner, and when I was going out I didn't watch if another car was coming and went out. The car that was coming was obliged to stop suddenly. It didn't crash but for a little. +p54742 +aVWhen I got a record as a gift from a friend. +p54743 +aVOnce when I crossed the street, and was nearly trampled by a car. +p54744 +aVA girl entered in the division where I work and greeted everybody but not me. +p54745 +aVA dear friend was removed from the division whre I work. +p54746 +aVWhen somebody despised a friend of mine. +p54747 +aVWhen a friend told me a story and I stayed dumb because I had no story to tell. +p54748 +aVWhen I slapped a nephew who did something that I considered wrong, and I was reprehended for this. +p54749 +aVI wanted to go out to walk but I didn't know either where or with whom, suddenly an invitation appeared. +p54750 +aVPassing (by car) over a bridge where only one car could pass. There was a precipice on both sides, no protection grilles, and the bridge was completely muddled. +p54751 +aVWhen my chief accused me of an error that I hadn't made. +p54752 +aVWhen I knew about my sister's in law finacial situation and what she was facing. +p54753 +aVTo see damaged lettuce (with worms) in the icebox. +p54754 +aVWhen a group of friends began to make critics about me. +p54755 +aVWhen I knew that my niece did a bad schoolar examination because I couldn't explain her the lesson. +p54756 +aVI felt a great joy when I knew that my father was going to sell the apartment from GUARUSA, because in some way we were helded by it, that means that we didn't go to any other place, because we had the apartment. +p54757 +aVThe day that there was a black-out in the city, and I was in an exposition, I felt fear that something more serious was happening, like a revolution for example. +p54758 +aVI don't use to lie to my parets about what I do, and the two times that I felt anger were when they doubted me I said that I was going to the club, and they didn't believe me because the day before they had met me at FLIPERAMA. I had the wish to kill them. +p54759 +aVI felt very sad when I saw the first list from the names of the people who entered at the University and my name wasn't there. +p54760 +aVI felt disgust about all my friends. After having done a great effort to organize an evening together, and didn't work out, they put the blame on me. After this, I feel disgust towards those that blame me. +p54761 +aVI feel ashamed every time that someone makes me a positive or negative critic. +p54762 +aVYesterday I broke my sister's raio. She hears it always when she has school examinations and now she has examinations. +p54763 +aVWhen I discovered that I and my friend would be licensed at the first call. This emotion was accompanied by a great relief. It was the coronation of a year of sacrifice and extrene discipline. +p54764 +aVThe week before I entered to army, when we were being selected. During 5 days I had to pass 10 hours a day waiting for the answer, which at last was the worst. The fear of being convoked, of hearing the fated phrase, was constant. +p54765 +aVWhen I was misleaded by a person who assured that something would not occur, that I had no reason to prepccupy myself, and suddenly I saw myself implicated by the fact, because of the incompetence, and irresponsibility of that person. +p54766 +aVWhen I didn't succeed to enter at the University, I felt that the college entrance course sistem prejudiced me, that my integrity, and effort weren't corresponded. +p54767 +aVWhen I had to plunge in a swamp of fetid and stagnant water. +p54768 +aVWhen I accused unjustly a person of robbery, who proved me the contrary, almost caused a public fight. +p54769 +aVWhen in the initial interview for the recruiting, I don't know why, I accepted to do the test for army. +p54770 +aVI felt joy when I entered at the University. +p54771 +aVOne day, when I realized that I was alone, I felt fear of loneliness. +p54772 +aVI felt anger when I saw that I was being misleaded by my boyfriend, he went out with other girls. I felt anger for his falsity. +p54773 +aVWhen my boyfriend was changing his behavior there was something wrong, I felt sad, because it's desagreable when a relationship is ending. +p54774 +aVI felt disgust when I realized that I had eaten something fatty, and vomited too much. +p54775 +aVWhen I realized that my bathing suit was spotted, I had became menstruated. +p54776 +aVWhen I robbed a loop in supermarket. +p54777 +aVA meeting with the family and the friends I felt dear and loved, sharing the gladness of being together at a birthday. +p54778 +aVWhen I saw a horror film. +p54779 +aVWhen my sister took something that belonged to me without my permission. +p54780 +aVWhen I felt alone and without love. +p54781 +aVWhen I visited a creche. The conditions weren't too precarious but the children were in conditions of physical and emotional penury. +p54782 +aVWhen I fell down. +p54783 +aVI lost a conference because I hadn't got in touch with a certain person to inform her that I would go with her. I thought she knew what I wanted. +p54784 +aVAfter making an effort to enter at University I found a course and a school of higher education which were compatible with my experience and potentiality. +p54785 +aVI had an important amount of money with me and felt fear of being assaulted. +p54786 +aVWhen I realized that the person I was courting hadn't been really by my side for a long time already. He had deceived me and I let him deceive me. +p54787 +aVWhen I noticed that I do many things to the pregiudice of myself. +p54788 +aVSeeing persons spending money in a shopping center with completely indifference to the misery reigning in our country. +p54789 +aVI felt ashamed to be Brazilian and to live under a military dictatorship that despoiled the people, when during my military service. +p54790 +aVFacing the possibility of having a child when it wasn't either desired or permitted. +p54791 +aVI felt joy when I passed the worst phase in my life and discovered how many people considered me important to them. +p54792 +aVI felt fear some months ago of losing the person whom I loved when she said to me that she didn't love me. +p54793 +aVI felt much anger and perhaps I feel it till now, against my girlfriend's sister who incited her to betray me just when I needed her very much. She didn't think of anything, simply passed over everything. +p54794 +aVWhen my dog died. +p54795 +aVAbout my girlfriend's sister who is a viper as I discovered some time ago. +p54796 +aVI felt ashamed of feeling sorry about myself when I passed through the situation of being betrayed by my girlfriend. +p54797 +aVI felt guilt when I betrayed the person whom I loved. +p54798 +aVI didn't like my former fob and felt joy when I received a telegram offering me a new one that I though better and for which I had been waiting. +p54799 +aVI was in a train where a fight occurred. One person who was there opened his handbag and took out a gun, another who fought too looked among his things for a weapon to fight. +p54800 +aVWithout the employer's knowledge and even without any communication their bank accounts were changed and their personal accounts closed. +p54801 +aVMy brother wanted me to buy a flute with him but I didn't accept afterwards I regretted it because he became sad. +p54802 +aVI felt disgust when I saw a dead animal on the roadway. +p54803 +aVI was in a bus with my school material when I fell and sat on the lap of another passenger. +p54804 +aVWhen I forgot to take out money for my mother. She asked me what she would do, because I had messed up her program for the following day. +p54805 +aVThe day that my boyfriend appeared at home with a pair of rings for our wedding. +p54806 +aVOne day I was near home, kissing my boyfriend in a car when my mother appeared and asked me to go home, because she didn't know about the event. +p54807 +aVA ex-boyfriend tried to prejudice me before my fiancT and his family saying things about me that let his family worried. We had to postpone our wedding and we were already using our wedding rings. To be honest I didn't feel just anger, I felt hate. +p54808 +aVThe day that the results of the college entrance examinations for the S. Paulo University were published and I didn't find my name on the list. Entering this University was my greatest wish, and the fact of not having succeded caused a great frustration, and not only sadness. +p54809 +aVWhen I saw the film ""Memorie of Prison"" I saw a scene of masturbation of a man in the hold of a ship apart form fact that the film wasn't pleasant I had a leg of coconut candies in my hands. +p54810 +aVThe day my boyfriend saw and touched my breasts when I was without my shirt, only with my pants. +p54811 +aVOne day my boyfriend put my hand on his penis and I felt well, but after I felt a guilty conscience because I hadn't thought about the consequences that this could have brought if I had gone farther. +p54812 +aVWhen people remember us and shows interest about what we do. +p54813 +aVWhen I had to talk with an important person about a job. +p54814 +aVWhen my brother went out with my new shirt that I adored, and returned it dirty with grease. +p54815 +aVI felt sadness when I notice that I'm not important for a determinate person. We do many things for a friend, and we see soon after, that he doesn't do anything for us, nor thinks of us. +p54816 +aVWhen I needed another job and tought that a good and known person (my employer) could help me. He simply said that he couldn't help me. +p54817 +aVWhen I arrived late at the job and met the most troublesome boss. +p54818 +aVOne of my pupils escaped from school to the street. +p54819 +aVI felt glad to live again when I went to a meeting about the ""Knowledge"". There are 4 techniques of meditation that connect you with the essence of the human being. +p54820 +aVI received a phone call from a high school friend whose younger sister studied with me at the University and gave me a lift every moning. She was going to get married to a guy whom I knew too and who had died when he fell from a building, I was afraid to lose somebody since I had already lost a brother in an accident. +p54821 +aVMy grandmother is a highly authoritative person, who lives alone, is independent, but doesn't know to live without commanding the others. I hate this! +p54822 +aVI am always sad when my boyfriend goes away. He lives and studies in an other city. We have gone steady for 2 and 1/2 years and everything is going very well, but sometime this situation makes me feel bad and very lonely. +p54823 +aVI felt disgust when I kissed a guy that I know. I was on the outs with my boyfriend and this person appeared but he has nothing to do with me. +p54824 +aVI felt ashamed of my body in spite of knowing that it is more or less beautiful and also knowing that my boyfriend considers me beautiful, but this was only in the beginning. +p54825 +aVI always feel guilty when I see my mother sad or fed up with life. I really dont know the reason. +p54826 +aVWhen I bought my car. +p54827 +aVI was alone at home, a man forced the front door which was locked, forced and tried to open a window. +p54828 +aVWhen I had a serious argument with a dear person. +p54829 +aVOne night a very dear person said: ""I hate you"". Of course it was an impulse and this person didn't feel that about me. The person expressed regret, and everything was settled, but I can't forget. +p54830 +aVWhen I met my boyfriend with another girl. +p54831 +aVWhen I was still a child I was told off in face of other persons for having touched an object that didn't belong to me. +p54832 +aVWhen I fought with my sister and said that she had provoked this. She was very seriously scolded. +p54833 +aVThe birth of my daughter. +p54834 +aVI should have given a test lesson to get a job. I had no courage. I didn't make the test. +p54835 +aVDiscussion with my mother about the way to educate my children. I felt anger against my mother. +p54836 +aVWhen my grandmother died. +p54837 +aVI was returning from the Universtity at night when I was accosted by a boy who molested me, passing his hands on my body. +p54838 +aVWhen a friend of mine visited me and my house was in a mess. +p54839 +aVMy daughter was a baby and was crying to be taken on my lap. I felt very nervous and moved her away and went out. As soon as the feeling of nervousness passed I was taken by an enormous feeling of guilt, for having rejected my daughter. +p54840 +aVI found a human ""treasure"" that I desired and got immediately. I didn't think about anything. When I touched him I imploded but I am whole. +p54841 +aVI was in the dark room, it's insecure and has holes covered with wooden sheets in the roof the establishment had already been assaulted and could be assaulted again. +p54842 +aVAnd she said absurd things, false things that filled my ears and inflated my head which seemed to be caught in a carcass where the heart wanted to explode and where the arm wanted to knock down the world. +p54843 +aVOne day I heard from a friend that the boy I loved had gone out with her and not with me. +p54844 +aVI saw a magazine with photographs of dead and maimed people whose limbs were separated from their body like a head on one side and the leg on the other. +p54845 +aVIn the classroom we discussed with the teacher. He told me things that affected directly in a negative way my job and my behavior in the classroom in front of the other pupils. +p54846 +aVThe greatest guilt I felt and I didn't know if it was really justified is that when I was a child I had a brother very close to me. He became ill, and asked me to see him in the hospital. I didn't go, when his situation became worse in the U.I.T. (Unity of intensive therapy) I went and he died. +p54847 +aVOne of the greatest joiy was when I succeded in acquiring a motorcycle through my own efforts. +p54848 +aVI'm afraid of driving on the special seat of a mororcycle, mainly with certain colleagues who by exces of self-confidence drive beyond limits or measure in the traffic and the main victim is always the person who sits behind the driver. +p54849 +aVI felt much anger when my fahter interferred in my relations with another person whom I liked very much, ending something that I adored. +p54850 +aVOne of the greatest sadness was when my grandfather died, because I loved him very much. +p54851 +aVMy main disgust is against codfish because I detest even the smell of it. +p54852 +aVSincerely I'm a very timid guy and so even in very simple situations sometimes I am ashamed. +p54853 +aVThe only guilt I considered reasonable was my reproval at the end of the semester at the University. +p54854 +aVWhen I got a stereo walkman from my father when he had finacial difficulties. I thought that although he promised to give me that present, he was not obliged to do so. +p54855 +aVThat someone would discover whom I really love. +p54856 +aVWhen a colleague was rude with me because she didn't understand the subject about which I was discussing. +p54857 +aVFor not having succeded in getting the job as a translator that I wanted. +p54858 +aVWhen I saw a man who hadn't the lower .... in a car exhibition. He was passing a handkerchief from inside to outside of his mouth. +p54859 +aVWhen I went out with a friend of mine to meet her ex-boyfriend who didn't know that she was engaged to be married. +p54860 +aVThe same event described under ""shame"". +p54861 +aVWhen I passed the whole weekend with my boyfriend, coming back home on Sunday afternoon he met my parents for the first time. +p54862 +aVWhen there was a fight at home and my father threatened to throw a chair on my brother. +p54863 +aVI felt anger against a person who told bad things about me in my absence. +p54864 +aVAfter a disagreement between my parents, when I was alone with my father and my sister, the aggression continued, when my father tried to put me and my sister against my mother revealing facts that had happened in the past like a talk between my father and his mother in law where she told him that my mother was not quite save. +p54865 +aVWhen in my childhood we were forced to take cod-liver oil. +p54866 +aVI feel ashamed when I am praised. +p54867 +aVWhen I provoked a fight with my mother, hurting her feelings very much. +p54868 +aVI was in the living room at home with an ex-boyfriend, it was nearly a year that we had separated, during the talk he began to remember our courting and gave me a long kiss. +p54869 +aVI was with a friend in a stationed car when, suddenly a man appeared on my side and an other with a gun on his side the hold-up lasted a few minutes but it was terrible. I had never seen a gun so close. +p54870 +aVI was on a farm with a few friends and during the talk I discovered that a friend of mine, was being betrayed by her boyfriend and a 3rd friend of ours. +p54871 +aVI was watching television. It was about midnight when a very dear friend called saying that his father had died in an accident. +p54872 +aVI was working in a classmate's house with a group. A girl began to graze her foot against mine under the table. +p54873 +aVI was talking with an aunt of mine that I adore and I found courage to say ""I love you"" and just after that came the shame. +p54874 +aVThis feeling comes frequently when I go out at night and tell my mother that I shall come back early. But then I get home a 5 or 6 a.m. +p54875 +aVAlways when I meet the person I love. +p54876 +aVWhen I and the person mentioned above had a suspicion of pregnancy. +p54877 +aVWhen I left after the examination to enter the University, and even though I had studied the whole year I made a bad exam. +p54878 +aVWhen I thought for an instant that a very good relationship with a person had finished. +p54879 +aVWhen I heard the bad news about the death of a close person. +p54880 +aVWhen I tried to hide a fact from a person for irrelevant reasons and considered such an attitude childish. +p54881 +aVIt happens sometimes in connection with certain persons with whom I have frequent relationships but nothing special. +p54882 +aVWhen I entered in the University after a year of struggles. +p54883 +aVPracticing wind-surf my body was caught under the sail. On trying to get out my leg was caught in the lashing. I was afraid of dying by asphixia. +p54884 +aVIn the University we were convoked to a stroll like a freshman I was still innocent about the manipulation. On seeing the goal of the exaltation to poor character people, I felt anger on feeling myself mass of maneuver. +p54885 +aVIn a social situation I became interested in a woman. We talked, we laughed, we enjoyed each other. She desappeared for a few minutes, and a little after appeared with an other man. +p54886 +aVI saw a man falling on the walkway. He seemed half dead, and was immobile. I felt disgust for the people who passed by without doing anything to help. +p54887 +aVIn the traffic I insulted a man who crossed my way. Afterwards I paired with him, and felt shame because of mine lack of pacience and ridiculous attitude. +p54888 +aVA great friend of mine travelled with the intention to change his life. He didn't succeed and returned depressed. I had not power to support his frustration and his behavioral change. +p54889 +aVA friend of mine travelled very far. I miss her but feel joy too because fer life is taking the right direction as she wants. So I feel joy for her mainly. +p54890 +aVMotorcyclistic accident where for some minutes I didn't know if I was alive or dead, I remained ""cold levered"" during the situation but felt great fear. +p54891 +aVWhen I acted in a negative way at a certain moment by laziness to concede a moment of the time I thought to be my own. +p54892 +aVWhen I met my mother after months of absence. +p54893 +aVWhen I whatched a horror film on a Friday 13th. +p54894 +aVDiscussing with a certain person about a job I was getting and that perosn was negative and pessimistic. +p54895 +aVWhen I felt lack of aid from close friends. +p54896 +aVWhen I saw a fight I had a physical reaction of disgust and of deep perturbation. +p54897 +aVWalking on the street passing by an air duct, my skirt went up. +p54898 +aVBeing disloyal with persons I loved. +p54899 +aVI got a present from a great friend (a dog). +p54900 +aVThere was a scene of shooting in front of my house, I was very afraid. Two armed men confronting. I didn't discover the reason of the incident. +p54901 +aVI was waiting to receive the participation on the profits and did not receive it. +p54902 +aVI didn't get the job I wanted. +p54903 +aVI went to eat at my aunt's house and she served macaroni with a horrible appearence. I felt the sensation above. The worst was that I was practically obliged to eat. +p54904 +aVWhen I saw my father coming out of the bathroom. He thought that he was alone at home and came out without his clothes. +p54905 +aVWhen I misled a person: I said that I would do her a favour and didn't. +p54906 +aVWhen I can see my parents because now I am far from them. +p54907 +aVWhen I sit for examinations. +p54908 +aVOnce, during a performance I did not sing the way I had to. +p54909 +aVWhen I got separated from the woman I loved. +p54910 +aVWhen the Americans set their nucleaar missiles in Europe. +p54911 +aVWhen I don't say the truth, when I don't do a certain thing thanks to my laziness. +p54912 +aVOnce I promised to do something but I didn't do it. +p54913 +aVWhen I was admitted to the Bulgarian State Conservatoire. +p54914 +aVI am afraid if I'll finish the term. +p54915 +aVI was angry when my abilities of a singer were underestimated. +p54916 +aVI feel sadness from the fact that I was not born with a better appearance. +p54917 +aVI was disgusted with the hypocrisy of my colleagues from the group. +p54918 +aVShame I feel when I am not properly dressed. +p54919 +aVA sense of guilt I felt once when I couldn't defend the confidence my teacher had in me and thus discrediting him at a concert. +p54920 +aVI have a new born child. +p54921 +aVI could have been killed by a falling object. +p54922 +aVAt a certain situation I felt myself neglected and undeservedly harmed. +p54923 +aVThe sudden death of one of my parents. +p54924 +aVGetting separated from my family for a week caused me a sense of sadness. +p54925 +aVI felt it when I saw a colleague of mine eating like a beast. At the same time he was making gestures, speaking and making the hell of a noise. +p54926 +aVI felt a sense of shame when I compromised a colleague of mine. I got an information from him which I quite out of place shared with another colleague of mine and it resulted in an unpleasant consequence for him. +p54927 +aVI promised to fulfill an errand. Later I understood it was impracticable. The explanation I gave was accompanied by a sense of guilt. +p54928 +aVI felt joy most strongly some years ago, when I took part in a NH Competition and I was the first. +p54929 +aVI feel fear when I only imagine I could lose confidence in my own abilities and powers. A similar feeling I feel sometimes before an exam. +p54930 +aVI feel anger when I see a ""parent"" beating and punishing his child in the street. Recently I was a withness of a similar case. +p54931 +aVI feel sadness when I only imagine that I could lose a close person. Some time ago I lost a man whom aI greatly respected. +p54932 +aVA similar feeling I felt quite recently while travelling in a taxi. The driver treated me roughly and dishonestly - he chose the longest route, he overdrawed almost one lev more and he tried to be intimate with me. +p54933 +aVSome days ago I fell down at a public place, I came into notice but thank God I was not mocked at. Though it hurt badly, at the first moment I felt shame, not ache. +p54934 +aVI felt guilty because of the pain I caused to a very close friend. But over the feeling of guilt, my conviction of being right dominated. +p54935 +aVWhen my nephew was born. The birth was hard, it was a big baby. +p54936 +aVLate one night I was pursued by gipsies who had no good intentions. +p54937 +aVMy brother accused me undeservedly before my parents. I was not guilty. He was misled by his wife. +p54938 +aVWhen I left my boyfriend. I found another girl at his home but he did nothing to relieve the situation. +p54939 +aVI found a big black beetle in my coffee cup. It was alive big and it was moving its limbs. +p54940 +aVWhen I had to prepare and read a paper to my fellow students but I didn't cope with the task. +p54941 +aVI had thrown with the ashtray a still lighted cigarette in the plastic wastepaper basket. It had burnt out and my landlords made me a row that I might had set their flat on fire. +p54942 +aVSome time ago I was present at the wedding party of two close friends of mine. +p54943 +aVI was crossing the street together with some colleagues of mine when I suddenly found myself almost under the wheels of a truck. +p54944 +aVSomeone stole my ski at Vitosha and of course I was the one to be blamed. I left them without supervision. +p54945 +aVI got separated form my closest friend. He went to work abroad. +p54946 +aVA drunk man had fallen in the street and he was shouting obscene words. +p54947 +aVI had borrowed some money and I exceeded the time-limit. +p54948 +aVI couldn't fulfill a promise. +p54949 +aVAn encounter with a man whom I love, after a very long separation. +p54950 +aVI woke up in the middle of the night of a nightmare, I was alone, it was very quiet and very dark. +p54951 +aVA shop-assistant behaved rather roughly with me though she hadn't the slightest grounds for it. +p54952 +aVI saw a friend of mine who had suffered a very heavy contusion after an accident. +p54953 +aVI caught a glimpse of a black-beetle. +p54954 +aVI was made a very sharp remark at a rehearsal. +p54955 +aVI couldn't fulfill a request of a girlfriend of mine, though I categorically promised her and I believed there wouldn't be any hindrance. It was partly for objective reasons but also because I couldn't organize myself. +p54956 +aVAt a success of mine, at a real achievement. +p54957 +aVI was looking after a dying patient at work one night, a young woman, my colleague was talking to her relatives and .... to offer them any support emotionally, physically and then sent them down to the coffee shop to have a dinner rather than offering the facilities available for their use cause it involved her having to do some work. Seeing them again I felt disgusted at her attitude. +p54958 +aVI put on a lot of weight in a few months and every time I met someone I knew would avoid them, usually by hiding because my self image was low and I was ashamed of what I had done to myself. +p54959 +aVI was involved in a ... attempt on a man I had developed a close warming relationship with. Although I knew I had done everything I could and that his progress of a ""normal"" life was poor I felt guilty as if I could have done more. +p54960 +aVFor the first time in my life telling someone I loved them. +p54961 +aVWhen I was ringing up a guy who was my teen idol, and was in Auckland. I was really scared, I didn't know what to say or do. +p54962 +aVWhen my mother decided to clean out my room and throw out what she thought was junk, without my knowing about it, so I returned home to find half my stuff gone. +p54963 +aVWhen I couldn't find my dog which was missing. +p54964 +aVI was disgusted with a friend's behaviour when she got absolutely drunk so that she vomitted all over my house. +p54965 +aVI was taking place in an anti nuclear protest and was shouting protest loudly to some American sailors of the U.S. Texas submarine. A guy came up to me and said that's your brother screaming at, I felt shame and I realized screaming at another person isn't good protesting. Now I'm a silent protester. +p54966 +aVI felt guilty after getting really angry with a friend and having an argument. I was being stubborn and proud, and selfish, because my friend let me down, through no fault of her own. +p54967 +aVWhen I met my boyfriend and we discovered that we shared the same ideals and goals in life, and that we could share all our feelings and thoughts and felt that the world's not so bad when you have someone really close to share your life with. +p54968 +aVI had called a boy who had dated me, and told him that I was ill, while, actually, I didn't want to go out with him, later on, he asked me if I was feeling better, then I felt ashamed. +p54969 +aVWhen I hurt my parents in one way or another. +p54970 +aVWhen I passed the driving test after three failures. +p54971 +aVWhen I nearly caused a traffic accident with my car. +p54972 +aVWhen playing a football match, there was one player who made mean tackels, kicked at everything and did things having nothing to do with football. +p54973 +aVA close friend decided to stop with his study and to go back home. +p54974 +aVWe had a birthday party with 5 friends. One of us frequently used hard drugs. On the party I discovered that the other 3 friends also used them. While we agreed we would help the big user to stop using it. +p54975 +aVDuring a family reunion, they started talking about me wearing an ear-ring. +p54976 +aVIt was my mother's birthday. My father and I used to buy a present together. However, now I had bought something together with my girlfriend and I forgot to ask my father. +p54977 +aVFor instance when a girl is interested in me and likes me. +p54978 +aVWalking at friday night through Nijmegen, going to a pub or a disco. +p54979 +aVI felt dusgust with a self-iterested person who ruined the life of another by means of utterly unfair methods. +p54980 +aVI didn't do an important job and it had an adverse effect on other people. +p54981 +aVI stroke a person undeservedly. +p54982 +aVI sensed this feeling when I passed successfully the second tour of a competition. +p54983 +aVI felt fear when my mother was heavily ill. +p54984 +aVI felt anger against a colleague of mine during a rehearsal in acting. He hadn't learnt the text of an opera act in the course of several months and thus making difficulties for the rest of my colleagues. +p54985 +aVI felt sadness when I had to get separated from the woman I loved who had to leave for her motherland. +p54986 +aVI felt disgust with the alcohol, after I happened to see a young man, who was dead to the world and who wallowed on the pavement. This ""sight"" I watched from the bus. +p54987 +aVI felt shame and I couldn't look into my teacher's eyes, after not attending his lectures. +p54988 +aVI felt guilty after I battered to death a classmate of mine. +p54989 +aVI was happy when at difficult times I could find support in my friend and my fiancT, I was happy because of their spiritual and moral help which gave me new power to struggle. I was happy then, I felt it in my soul. +p54990 +aVI felt it at the same time when I felt disgust. +p54991 +aVI felt it on the same occasion when I felt sadness which finally grew into anger. +p54992 +aVMy living and working conditions at home were unbearable. We used to live in a three room flat together with two more families. The discords caused a change - one of the families moved out. The other family stayed with us but I drifted away from my fiancT. In fact we were two families in the flat. Then I found myself alone in the struggle for this life because my fiancT did not stay next to me my grief and sorrow took on large proportions. I wanted to commit suicide but instead I threw myself against the cause of the irritation. +p54993 +aVI am disgusted with my sister's husband. On an early Sunday morning after having knocked at my door, he suddenly rushed in and finching me still in bed he began quarrelling about something. I could not understand. I heard his last words: ""Don't stare at me so because I'll beat you in your bed"" I got up terrified and a thrashing followed. +p54994 +aVI feel shame mixed with anger with the behavior of some incultivated people because my fiancT is a foreigner. +p54995 +aVI felt guilt because on account of my ambitions I nearly turned my sister out of my parents home. +p54996 +aVThat was what I felt when I was finally accepted in the Bulgarian Conservatorie after I had applied a couple of years. +p54997 +aVI experienced this feeling when the doctors found a nodule in one of my mother's breasts. It turned out to be an occlusion resulting from continious sucking but for a few days I was not in my reason. +p54998 +aVI had an accident with a trafic police car that was packed at a curve without any visibility and against all traffic regulations in a strong snowstorm. As a result I still cannot repair my car because of the missing spare parts. +p54999 +aVA sudden doubt made me run for a long time in a rainy autumn night. When I reached the intended place I saw my beloved in another man's arms. A sudden blow, grief, I cannot qualify it, it is painful for me to remember about it. +p55000 +aVI felt disgust with a man I had trusted and respected, to whose problems I had always shown deep understanding. +p55001 +aVI was given the task to learn a page of music text for a small part. But I had forgotten all about it and I felt quite awkward when I had to show what I had prepared. +p55002 +aVSome time ago I slapped my son without trying to understand who the real culprit of a damage was. After that I felt guilty and bad but it was too late. +p55003 +aVMy boyfriend made me a proposal. +p55004 +aVI was to be given an audition to get a role. I had a competitress and I wasn't well prepared because I was ill. +p55005 +aVA whole crowd of us went to a folklore festival. The instructor of the cast where my boyfriend played was traveling with us. We decided to catch the train that leaved early in the morning because we had business on the following day. The instructor tried to get the upper hand and made us catch the train in spite of everything, all the time he made me angry. +p55006 +aVWhen I quarrelled with my boyfriend. +p55007 +aVI am disgusted with the fact that bad singers play at the opera (and not only there) only because they are protegTs or lovers of an important felow while at the same time some young and able singers work in a quite different field of life. +p55008 +aVI feel shy to show all my worth when I work for the first time with a conductor or a producer unfamiliar to me. +p55009 +aVI offended my mother. +p55010 +aVWhen I heard what mark I had got at the entrance examination and I realized my admittance to the University was almost certain. +p55011 +aVOnce I was alone at home. I suddenly felt unwell and there was no one to help me and call First Aid. +p55012 +aVWhen I was admitted to a Language school. On the day when I was informed by a message and my parents congratulated me. +p55013 +aVWhen diving deep into the sea to reach the floor I felt breathless. I was cautious but I doubted I should be able to come to the surface and inhale. +p55014 +aVWhen my friend (girl) promised to help me go to the hospital and be examined by good experts and she deceived me. +p55015 +aVWhen I had stayed abroad for a long time and I had remembered about my friends and relatives. I felt sad and I wanted to see them as soon as possible. +p55016 +aVI felt it when I saw our headmaster blushed ingratiating himself with high ranking officials. +p55017 +aVWhen I hadn't learnt my lesson and I asked the teacher to give me ""a three"" and he agreed but even he felt quite awkward. NB: In Bulgarian schools ""a three"" is the second worst mark. +p55018 +aVWhen I shouted and quarrelled and for no reason I had been rude to my mother and when my behaviour had been influenced by other outward factors. +p55019 +aVWhen you are satisfied with something, when you achieve something you have striven to. +p55020 +aVOne fears many things, for example one fears going to the dentist. but as far as I am concerned this feeling is connected with the examination session. +p55021 +aVWhen you are unjustly assessed at something you are sure to have been right. +p55022 +aVFor the loss of a close friend or relative, but you feel grief when you are away from home, too. +p55023 +aVThey wanted something to happen but I didn't. +p55024 +aVI couldn't be with a girl on whom I was very keen. +p55025 +aVI and my friends got acquainted with a guy from Sofia who turned out to be gay, but we found that out only after 2 or 3 days. +p55026 +aVMy first girlfriend. I had the feeling that she was going out with me only because of my defect. +p55027 +aVYears ago I ran away from home which disappointed my parents. +p55028 +aVHaving passed an exam. +p55029 +aVHaving a car accident. +p55030 +aVI shared a secret with a friend and it later turned out that he had revealed it to another person with whom I didn't get along very well. +p55031 +aVThe loss of a very good friend. +p55032 +aVNegative statement concerning me of a friend before strangers. +p55033 +aVAdultery with the girlfriend of a friend of mine, of which he learned. +p55034 +aVAdultery with a friend's girlfriend. +p55035 +aVI'm glad when I have good relations with my colleagues and most of all when we are at a party. +p55036 +aVI experienced it once when we were on a drive. Our car passed by the one comming from the opposite direction at an incredibly small distance. +p55037 +aVI get angry with people who attain certain status without deserving it, only with the support, authority and influence of other people. +p55038 +aVI feel sad when I see things done against men and nothing could stop it - at least I think so. +p55039 +aVI have experienced disgust with some people - usually double dealers. +p55040 +aVI am ashamed when I am not prepared in a subject and I have to answer in the presence of the patients. +p55041 +aVI feel guilty when I should have done something at any rate but I haven't done it. +p55042 +aVI experienced it when I was accepted at the Medical Higher Institute. +p55043 +aVI felt it when I sat for my exam in anatomy. +p55044 +aVI experience that feeling when I am unsulted without deserving it or when someone deceives me. +p55045 +aVWhen my grandfather died. +p55046 +aVI feel disgusted with toadies, hypocrites, chameleons. +p55047 +aVWhen I do something unworthy. +p55048 +aVWhen I offended my parents without wanting it. +p55049 +aVAfter each successfully passed exam I am happy. +p55050 +aVA friend of mine gave birth to a child. Very dangerous delivery. I was afraid for her and for the baby. +p55051 +aVI get angry when someone imputes on me things I never can do, naturally negative. Servility, ""connections"", impudence, traits that get me mad. +p55052 +aVMy brother is a soldier. He promised to come home in a furlough but in the last moment he phoned and said that he could not come. +p55053 +aVI am disgusted with liers, hypocrites, slanderers, flunkeys. +p55054 +aVRecently I saw a young girl fawning on a man. And what for - money and things. I was ashamed to be a woman. +p55055 +aVWhen I have been overhastingly offending or hurting. +p55056 +aVAfter the term exams I happened to meet a person that I respect and of whom I think very highly. It was nice that although we see each other rarely he had not forgotten me. +p55057 +aVFew years ago my father was very ill. He stayed at a hospital for a long time. Then I experienced that terrible feeling that I might lose him. +p55058 +aVI have a friend that I deeply trusted but it happened that I lost my confidence in her for which she herself was to blame. +p55059 +aVWe are several friends but our characters are very different and we inevitably split in the two extremes. It is sad that I myself don't know what to do, I try not to hurt either of the ""parties"" because there are conflicts to which one I should belong. +p55060 +aVI stayed for several weeks with a friend of mine before she moved to live with her husband. One evening he came drunk and made an awful scene, which I still remember. +p55061 +aVIn the past I experienced this feeling almost all the time - wherever I went, in different sutuations. I was small and I had to be taken to kindergarten, but me the fool didn't dare to tell exactly where, finally as a result I was late. +p55062 +aVMy roommate got married and invited me to share a flat with them. But with a young couple there should not be a third person. I am to blame for not following the advise of the others, but it is not late still. +p55063 +aVI experienced this feeling when I was accepted as a student. Because everything turned out different from my expectations. Although I passed the exam successfully I was accepted as a student only when I didn't expect it at all, namely at the beginning of September. +p55064 +aVIn the real sense of the word I experienced fear in my first months in the army. During my first night of duty. The cause for all this was a bear. I became panic sticken (may be for the first time) and even forgot that I had a gun. +p55065 +aVWhen I was a soldier I quarrelled with my commander and may be in revenge for this he detailed me on duty two successive nights. Naturally he checked me up on the second night and found me asleep for which he sent me to the cells. +p55066 +aVSometimes I experience sadness for the Sports High School and for my unrealized dreams in the sport. Anyway there I spent six years of my life. +p55067 +aVSort of awkward. I'd introduced (a lover) but introduced as a friend to some members of my family, and my niece Yavanna who's six was home from school and at Mum's and Dad's and was really silly and at first it was ok, but it went on and on - yukky pooh! You eat your snot, etc. and I felt cross she wouldn't stop. But she had an audience and was in one of those moods. Once I'd accepted it was something everyone does at time I felt better - it was partly having my friend there. +p55068 +aVIn my 20s - and was going out to dinner to celebrate a friend's birthday. Her (older - in 30s) cousin, really wanted me to get drunk cos I'd visited their (cousin & wife) place quite a bit, but had always been very careful - brought up to believe in moderation in drink (but not guilt repression etc). I mixed drinking with smoking (which I rarely did) and got drunk and had to leave the table to get sick in the loo, and later went home and was sick again; have never felt so awful in my life. And I didn't want to face or tell my other flatmates, or family. +p55069 +aVI used to pinch change from my father's mantlepiece (never my mother - she didn't get enough housekeeping) and then I'd feel when we went to church as a family I'd felt awkward cos I felt I'm expected to go to communion and I would but I was afraid and guilty 'cos I committed a mortal sin. +p55070 +aVSpontaneous picnic with sister and friend and children - great. +p55071 +aVTeenage neighbours smashed my letterbox for the fifth time in a couple of months. It was a deliberate action of kids who had stayed in my home, had meals there yet took a dislike to my daughter. +p55072 +aVGuy I cared for went back to Canada to live. +p55073 +aVBus driver driving roughly - old man fell off seat into aisle - driver wouldn't stop - disgusted with her behaviour. +p55074 +aVA daughter in court for staff pilfering, she was dressed like a ""street walker"" - I had a friend form overseas with me and was falsely trying to impress with my family. +p55075 +aVReported neighbour to police for taking to my daughter with baseball ball - her counsellor rang me and after long talk convinced me the woman was o.k. I felt guilty for ringing the police then guilty for feeling guilty about it. +p55076 +aVMeeting with two of my friends I had not seen for 15 years. They were special people to me. +p55077 +aVI was in the Korean War. We were attacked with mortars, me and companion. We stopped the jeep and ran for cover. Fortunately neither of us was hit but we both came close to being killed. +p55078 +aVI've a situation of responsibility an employee who had a habit of being late, came late again after promising to say he would be at work in a few minutes, then arrived 3 hours later. He had been drinking. +p55079 +aVMy brother in law was dying of cancer. To see him wasting away was very sad. +p55080 +aVDisgust at myself when I stroked a sleeping girl's private parts. +p55081 +aVMy son was apprehended for shoplifting at the age of 14. Because I too had been apprehended at the same age I felt the shame of not having been able to prevent my son from acting in the same way. +p55082 +aVI removed an article of clothing belonging to my employer while in a position of trust. +p55083 +aVWhen we took out an 84 year old woman for the evening and had hamburgers. She described the evening out as her happiest night out in 20 years. +p55084 +aVWhile tramping on a narrow path two of us were confronted by a woman with two snarling dogs, demanding we get off the property - via a flooded river ! +p55085 +aVA friend got angry and drove ""like a lunatic"" with me and others in his car. I was angry about his dangerous driving. +p55086 +aVA boy I look after for the probation service deliberately offended to provoke a reaction from the police. +p55087 +aV4-letter words on a TV programme (Roche) while we were entertaining ""conservative"" relations who wanted to see the first episode. +p55088 +aVA young visitor to the house stole money from an elderly visitor's purse. It wasn't noticed for some hours. +p55089 +aVI had to leave an important function early because of family commitments. Someone else had to complete my job. +p55090 +aVI was seriously injured in a road accident. The very first steps I took with only one crutch to support me I felt so good. I enjoy being alive. +p55091 +aVI was attacked, standing in a doorway, by a pack of 5 dogs, alsatians and farm dogs with my escape route blocked by a shut fence. +p55092 +aVIn the house where I live there is a new flatmate. His friends unfortunately are the dirt of society, intelligent, fashonable, rich and bored. At a party recently they were doing things I didn't like done in my house. I felt angry at them. +p55093 +aVI was driving near my girlfriend's house and I decided to keep going because it was late and I would be back in the next few days anyway. The next day she was killed in a road accident. +p55094 +aVMy girlfriend came home after a business dinner at the most expensive place in town drunk as a skunk. Whats more she drove home and couldn't remember doing so. I was disgusted by her state and her actions. +p55095 +aVA good friend of mine told me in comfidence that once he had tried to commit suicide. To meet him you wouldn't think so. I told another friend of mine about this when she was feeling depressed about her twin brother's suicide. I broke a bond of confidentiality. +p55096 +aVWhen I was young I stole something from a shop and got caught, then I was taken to the police station and my parents had to come and get me. +p55097 +aVWhen I found out that a set task (i.e. 2 essays and a test), the thought of which had oppressed me, were not on the date I had thought. +p55098 +aVWhen confronted and in my opinion hassled by the police. +p55099 +aVDisgust - no. Maybe it is more precise to say revultion at a worm or a snake. But I mean it in a social aspect when somebody had behaved like a scoundrel to you, when by his actions he has made you change your attitude towards him but I thing this feeling the way I meant it, is not typical for the people interrelations. +p55100 +aVWhen you betray the trust you have been given. This is connected with copying at a class-work at school. +p55101 +aVWhen I have forgotten to warn somebody for something, or when I have forgotten to bring something I have been asked for. +p55102 +aVWhen, for example, I was in my eleventh school year and I learned I had been classed for the Bulgarian Language and Literature National Olympiad. +p55103 +aVWhen, for example, my grandfather fell seriously ill. It was necessary for him to be operated and I felt great fear of losing him because he is so dear to me. +p55104 +aVWhen, for example, I was not approved to continue my studies at the Moscow University, no matter that I had the highest marks and in general the best records of all the candidates. +p55105 +aVWhen, for example, I left for the first time my parents and I went to live in Sofia. +p55106 +aVWhen, for example, someone is calumnating. +p55107 +aVWhen, for example, I fail in my undertakings. +p55108 +aVFor example, when I have promised something but I haven't fulfilled it. +p55109 +aVSome time ago a close relative of mine got off cheap with the worst. +p55110 +aVThe last time I felt it was when I was coming home late at night. +p55111 +aVI haven't often felt this feeling. Once someone stole my garment. +p55112 +aVRecently I happened to remain alone for a long time. +p55113 +aVI don't remember about a situation when I have experienced this feeling. Maybe it was when I saw a drunkard in the street. +p55114 +aVI lied to my best friend and I wouldn't reform what I had done. +p55115 +aVIt happens to me quite often. I can't describe a particular case. +p55116 +aVRealizing one's desire, an experienced feeling of satisfaction from the realization of one's desires and aims. +p55117 +aVFear of the loss of a close friend, of feeling the ground slipping from under my feet. +p55118 +aVAttitude to some manners of dealing and some ""sanctioned"" relations. +p55119 +aVFeeling unable to preserve one's ideas and ambitions as innocent as they are when you are young. +p55120 +aVAttitude to a related family. +p55121 +aVExaggerating certain circumstances, wrong attitude and evaluation of these circumstances. +p55122 +aVLow evaluation of other people's cares. +p55123 +aVI won a sport contest. +p55124 +aVIf a close relative's life is in danger. +p55125 +aVA close person lied to me. +p55126 +aVGetting separated from my girlfriend. +p55127 +aVEncouter with a prostitute. +p55128 +aVA theft committed by me. +p55129 +aVLack of respect for my parents. +p55130 +aVWhen my son was born. +p55131 +aVBefore an examination. +p55132 +aVUnjust punishment of a friend of mine. +p55133 +aVAfter the loss of a close relative. +p55134 +aVWhen somebody behaves like a scoundrel. Recently a colleague of mine used the name of another one for his own benefit. +p55135 +aVI travelled on a bus and I forgot to punch the ticket. A ticket collector came in and I had to pay the fine. I did it with a feeling of shame. +p55136 +aVI forgot to convey an important announcement. +p55137 +aVMeeting a loved man. +p55138 +aVI felt a physical fear, if I can call it this way, today, in the bus where I was sitting on the first seat. While turning the driver didn't see the tram which was making a dash towards us (coming from the side I was), and whose driver intended to cross in yellow light. +p55139 +aVAt an unjust, or to be more precise, at a bureaucratic treatment of one's personality. +p55140 +aVWhen one is alone and knows that all the others are celebrating. +p55141 +aVAt the sight of an insect, such as the black-beetle. +p55142 +aVWhen not fulfilling any of my obligations to a person whom I respect. +p55143 +aVWhen something unpleasant happens to a friend or relative of yours and you are at the bottom of it. +p55144 +aVI sensed such a feeling when I understood I was admitted to the University. I was at home, the atmosphere was still, though I myself was full of suspense. I tried to do different things. When the telephone rang and...! Yes, of course there were other situations when I felt a similar feeling but I was unmindful of them. +p55145 +aVThis feeling I sensed quite recently. It was arisen by the terrific thought that I might lose the man I loved ! +p55146 +aVAnger I felt when my boyfriend told me he didn't mind breaking it off with me, i.e. each of us to take his own road. Because until that moment, he deliberately restricted our dates. The motives were brought to my knowledge later. +p55147 +aVSometimes, when I'm alone I am seized by this feeling. But it always helps me to come round and at the same time to judge if it is worth. Very often this feeling is caused to me by people - friends who I love and respect. +p55148 +aVSuch a feeling springs up in me sometimes when I have meals at a catering establishment. It is a result either of the look of the food or when watching the way some people eat. +p55149 +aVThis happens to me when I am not prepared in a given subject. +p55150 +aVQuite unconsciously I offended a girlfriend of mine. It was really worthy to pass this fact over in silence, but I acted so, because I believed I was right. In fact it often happens to me to feel guilt, after I have already done the deed. +p55151 +aVWhen I was admitted to the University. +p55152 +aVI had to have my tonsils out. I had been making up my mind almost for a year - I was afraid. But during the two hours in the hospital room, while I was waiting to be called for the operation I felt a real fear - of the pain, of what they were going to do to me, of the unknown. +p55153 +aVIn a conversation my boyfriend expressed definite and quite pretentious opinions and he took up an attitude towards a theory which he himself had never known. His information was from fortuitous sources. +p55154 +aVSummer, heavy rain, storm - I was standing with my face stick to the window: the childhood, something was going away forever this summer, I was leaving my home, I was going to study in another town, for the first time I was leaving my parents, friends, I had to manage myself, a long and loved period of my life was over - I was crying. +p55155 +aVI saw in the street a man spitting. +p55156 +aVI talked with a man who stammered and without controlling myself, I started to talk imitating him. +p55157 +aVAlways, and this happens often when I do not keep my word. +p55158 +aVWhen I understood that I was admitted to the University. +p55159 +aVI felt this feeling when one day my landlord's cat had crept under my bed and I couldn't cope with it during an hour and a half. +p55160 +aVI feel this feeling when I am to fill in a questionnaire or a form. +p55161 +aVWhen the man I loved decided to leave me forever. +p55162 +aVI have felt this feeling when a person whom I believe and respect, lied to me. +p55163 +aVI feel shame when sometimes, (unconsciously) I behave unethically and without understanding the problems of the man I love. +p55164 +aVWhen I offend somebody unfairly. +p55165 +aVA quarrel was followed by the decision of leaving a person close to me. Several days later my regret was great. I was beside myself. Quite unexpectedly he came and the conflict was calmly solved. I was glad at the possibility to be with him. +p55166 +aVOne evening I was watching the news on TV. Again they were talking about the danger of war. Suddenly I imagined what it might mean for me, for my friends, for the people close to me. I felt it a very near and possible event. +p55167 +aVUnfair and unjust attitude toward a person close to me, what I was the witness of, caused anger in me. +p55168 +aVThe thought that I'll never sit at the school desk again, caused a deep grief at the end of my eleventh form. +p55169 +aVI felt disgust with a person whose behaviour was out of the elementary human norms. +p55170 +aVI had not punched a ticket in the bus because I had a card. But when the ticket-collector came it turned out that I had forgotten it. The shame I felt was great though it was not done on purpose. +p55171 +aVAt a moment of affect I offended a person very close to me. He had given me ground for that but it was a trifling in comparison with the way I insulted him. A moment later I felt a sense of guilt. +p55172 +aVWhen I understood I was admitted to the Sofia University. +p55173 +aVI broke my knee when I was skiing over ""Yastrebetz"" (a racing track in a Bulgarian winter resort). +p55174 +aVThe doctors from Belogradchik town determined a wrong diagnosis to my son. A month later, after some complex examinations at ISUL (A medical institute in Sofia), the diagnosis was categorically rejected. +p55175 +aVMy son lives with my parents in the country and I feel this feeling always when leaving for Sofia, but the last time it was quite strong. +p55176 +aVA colleague of mine asked a lecturer to put him a higher mark in order to keep his good mards and thus to continue getting a scholarship for an excellent grade. +p55177 +aVI felt this feeling during the exam in higher mathematics. +p55178 +aVMy son drank four pills of diazepam every two hours instead of amidophen. +p55179 +aVI am a sportwoman as well. I felt joy when after an year of practice, at a contest, I covered the norms for ""a master of sports"". +p55180 +aVI felt fear once, when the car in which I travelled directed towards the precipice along the road. +p55181 +aVWhen I see how people around me pass by certain unjustice because of indifference or cowardice. +p55182 +aVWhen I left a man in whom I really believed. +p55183 +aVDisgust with drunk people. +p55184 +aVWhen I try to lie. +p55185 +aVWhen I had had the possibility to act or to do certain activity better but I had not done it because of reluctance or carelessness. +p55186 +aVWhen I was admitted to the University. +p55187 +aVWhen I broke my leg I felt fear. +p55188 +aVWhen someone lies to me. +p55189 +aVAt an unjust insult or injure. +p55190 +aVFrom the cigarette smoke. Usually I feel disgust from it when I am in a restaurant. +p55191 +aVWhen I promise to do something but I don't fulfill it. +p55192 +aVWhen I don't fulfill my obligations. +p55193 +aVWhen my affairs with the girl I love settled positively. +p55194 +aVIn a dam lake, when the water was let flow to water the plants and I and two other boys were near the water pit. We rescued ourselves only thanks to the flippers and the tyre that was with us. +p55195 +aVIt was quite recently, at the football match between the national teams of Bulgaria and France. I felt strong anger with the Scottish referee who ran the match quite partially. +p55196 +aVWhen I am alone and listen to a song which I like very much and which I had listened before together with friends. +p55197 +aVA striking act of ingratitude at a public vehicle. +p55198 +aVI counterfeited a mark in the school register during the lesson in gymnastics. I felt this feeling two days later when I stood face to face with my teacher, whom I highly appreciated and respected. +p55199 +aVIn a fit of temper I told things that were unjust and they greatly hurt my mother though she didn't show it. +p55200 +aVI passed successfully the preliminary exam for a participation in the children Assembly. +p55201 +aVI was alone in my room at the boarding house when at 12 o'clock someone knocked violently on the door. +p55202 +aVA friend of mine promised to come with me to the cinema but he didn't come. +p55203 +aVI felt sadness when I remembered my former boyfriend with whom I got separated an year ago and when comparing him with my present one with whom things are not much of a success. +p55204 +aVRecently in the tram, a man ran his fingers over my girlfriend then over me. +p55205 +aVI had to prepare a report but I couldn't write it. I read from a book off-hand, I was quite uneasy and I felt I didn't manage. +p55206 +aVMy father got a slight heart attack after a telephone call of mine. +p55207 +aVBulgaria won a football match against France. +p55208 +aVI was going to knock down a pedestrian with my car. +p55209 +aVI was neglected undeservedly. +p55210 +aVMy grandmother died. +p55211 +aVA man was unfair to a girlfriend of mine. +p55212 +aVI didn't offer my seat to a pregnant woman in the bus. +p55213 +aVI didn't attend lectures. +p55214 +aVI felt joy when my two twin sisters were born. +p55215 +aVThe night before my wife had given birth to our twins. I felt fear in the hospital yard, I feared if everything was going to be in order. +p55216 +aVAbout a month ago the Regional Council refused to pay my wife the due maternity benefit, because of bureaucratic reasons. +p55217 +aVSome months ago my wife gave birth to twin sisters. She had no idea of looking after babies and she felt quite oppressed. The fact that I couldn't help her caused grief to me. +p55218 +aVI feel disgust with some people when I see what they are capable of, including lack of any dignity, when trying to find a seat in the tram. +p55219 +aVSome days ago I had a car accident. It was quite slight but through my fault. I felt strong shame because I had the spirits of a good driver. +p55220 +aVSome days ago I had a slight car accident through my fault. +p55221 +aVThe period when I was pregnant and when I gave birth to my son. I can say those were the happiest months in my life. +p55222 +aVA fear from the loss of a close friend as a result of his behavior. +p55223 +aVWhen I encountered not only with my father's lack of understanding but also with his unwillingness to understand me as a parent, as far as things for which I (not he) have proves to be right are concerned. +p55224 +aVFrom the fact that my husband and I are not in good terms. +p55225 +aVI was disgusted from a quarrel between two married people, in which the children were involved as accusers of one of the parents. +p55226 +aVWhen I don't succeed to fulfill a promise. +p55227 +aVWhen I am not able to fulfill any request of my son - can't take him out to ride his byke, because I am tired. +p55228 +aVI felt joy when I saw my daughter after a separation of twenty days. +p55229 +aVI felt fear when I sat for one of my exams. Though my fear was not quite justifiable, I still remember about it. +p55230 +aVI thought him a good friend but he tried to lie to me several times. Last time was the height of impudence. He promised he would come home but he didn't. I felt a sense of anger and insult. +p55231 +aVA fear of lack of personal powers. +p55232 +aVAt an undeserved attitude toward a man, when human personality is not treated decently. +p55233 +aVAt an irrevocable loss (with respect to human relations). +p55234 +aVAt an unworthy behaviour of a man, pettiness, stupidity and mostly at a philistinism. +p55235 +aVAt a weakness on my part. +p55236 +aVWhen I don't justify the confidence of people that I respect. +p55237 +aVWhen I was admitted to the University. +p55238 +aVBecause of a conflict with my parents there was a possibility to interrupt my studies. +p55239 +aVI feel a strong anger when I am treated unjustly. +p55240 +aVAt a prolonged separation with my family. +p55241 +aVI was looking for an object when I came across a rotten corpse of a rat. +p55242 +aVI feel this feeling at one and the same degree when I am not prepared to overcome certain obstacle in my life. +p55243 +aVI offended a person who had done much for me and who had helped me for everything. +p55244 +aVThe day when my son said for the first time ""mummy"". +p55245 +aVBefore an exam in logics. +p55246 +aVMy husband and I were invited at the house of our nieghbours then we got an invitation on the part of my parents which we had to refuse. A a result they called me by words that provoked my anger. +p55247 +aVMy son lives in the country. I feel sadness when I see mothers having walks with their children. +p55248 +aVThe behaviour of a colleague of mine, which doesn't correspond to my norms of behaviour. +p55249 +aVI was to take part in a cocktail party on the occasion of our national holiday as a servant. +p55250 +aVI ignored and offended my parents on the eve of the New Year. +p55251 +aVThe sense of joy comes to me always after a period of depression, as an organic feeling for an upsurge. I don't exclude the situative feeling but in this case the reason is not in me, it's out of me. +p55252 +aVI bet that I would jump down from a window. I was sure that I would jump but before I did it I rather felt fear. +p55253 +aVA honest ""sliding"" on the part of a girlfriend of mine. Terribly crossed I started breaking things and tearing books. +p55254 +aVAlone I am coming back home in the night after the serial ""explanation"". +p55255 +aVA lie on the part of a person close to me. +p55256 +aVI thought I had taken a decision but I hesitated. +p55257 +aVI feel this feeling most often before me not before the others. My outside is iron but actually I'm wasting away. +p55258 +aVMy son was born. +p55259 +aVI had a car accident. +p55260 +aVI was drawn up a statement for an infringement of the traffic ordinance. In fact I was innocent. +p55261 +aVI lost a close friend. +p55262 +aVI saw a film about the nazi concentration camps during the war. After the film I felt disgust. +p55263 +aVI was nailed. I lied in connection with a book which I took from the library, because I had to keep it for a longer time. +p55264 +aVI didn't give back in time some money that I had borrowed. My friend relied on them. +p55265 +aVAfter 10 days of hard work and having suffered many changes I passed my last exam. +p55266 +aVBefore going to the dentist. +p55267 +aVWhen I am made to do things in which I see no sense and I waste my time. Some time ago I had to participate in a sociological investigation and then I got really angry. +p55268 +aVWhen I feel I must be with somebody, to talk with somebody - but I am alone. +p55269 +aVSome time ago a man tried to teach me something. ""Tried"" because it is very difficult to teach somebody when you yourself are not competent and cultured. +p55270 +aVI am ashamed when I am not ready for my seminar in internal diseases, simply because the assistant professor is a person who deserves high respect. +p55271 +aVWe had promised, with a friend of mine, to take our friends to a restaurant and after having looked for a place for hours without finding one, and not being helped by the others we had to give up the idea. +p55272 +aVWhen I am with friends and I do what pleases me this often happenes. +p55273 +aVWhen I have to go in for an exam and the examinor is a person with a whimsical character and unsteady requirements. +p55274 +aVI unfairly got a low mark on an exam and I failed to win a grant, since then I don't have much confidence in myself at an exam. +p55275 +aVIt happened that I was alone - with no contacts with friends. +p55276 +aVI met three drunk boys, almost children, they didn't look like normal people. +p55277 +aVI was totally unprepared for a seminar conducted by an assistant professor whom I highly respect. +p55278 +aVI got back too late after a Sunday going out without having called up home to tell where I was. my mother hadn't slept the whole night. +p55279 +aVI was happy when I understood that the girl I liked was in love with me. +p55280 +aVI am afraid before an exam or colloquium. +p55281 +aVI get angry when my smaller brother misbehaves and talks with indecent words. +p55282 +aVWhen my dog was stolen. +p55283 +aVI detest any kind of constraint and hate the attempts of elder people to force me to a norm of behavior without having legal or moral rights to do it. I felt this emotion when a neighbour of mine made me kick out my guests because they had talked very loudly and threatened that with ""connections"" she will expel me from the inst. +p55284 +aVI experienced long ago when I was sightseeing Bulgarians in a foreign language. +p55285 +aVMy mother developed hipertonia and I think I too am to blame bacause with her it is a stress disease. +p55286 +aVWhen I met with friends that I hadn't seen for a long time. +p55287 +aVOne evening a friend of mine was telling a fearful story, nobody took it seriously but I got frightened. +p55288 +aVI got angry with a stranger in a train who behaved impertinently and immorally +p55289 +aVWhen I failed at the first entrance exam. +p55290 +aVThe event which got me angry got also an aversion in me. +p55291 +aVOnce I was not ready for a seminar and I was asked to leave. +p55292 +aVI felt guilty when once I made my mother angry. +p55293 +aVSix months ago when I got acquaintanced with a person whom I trusted infinitely and from whom I expected help and friendly feelings. With him I found much in common - in our views and in our fate. +p55294 +aVFew days ago I really experienced fear. It was connected with unexpected actions on the part of a group of people. This evoked in me many negative emotions. +p55295 +aVI always get angry when somebody deceives me, or tries to conceal his lie skilfully and this offends me even more. +p55296 +aVSadness - this is an emotion which I have felt very often recently. I can't remember a concrete example. I will describe my general impression from severl situations which evoked this feeling in me. +p55297 +aVI became disgusted with the man on whom I had counted, who I had trusted, the man who should have been my mainstay - my father. I could hardly make myself (and the others) believe in this emotion. It has cumulated after events and deeds. Everything can happen in this world. +p55298 +aVI am ashamed of the way my father behaves with my mother and sister, and with me too. +p55299 +aVI didn't keep a promise I had made to a man, and in this way I lost his esteem and confidence in me. I caused him a lot of trouble. +p55300 +aVWhen I was accepted as a student. +p55301 +aVI was a bit frightened when it was found that there was something wrong with my liver. However it turned out that it was not serious and I need not worry. +p55302 +aVWith the girl whom I may be loved truly. When she refused to come with me to an occasion (she was from another town). +p55303 +aVFor the girl who halped me go on living and made me happy - when I don't see her even for two or three days. +p55304 +aVFor a drunk man (about 20 years old) that I met one evening, and who behaved impudently with the girls standing by. +p55305 +aVI was embarassed at the exam in microbiology. I was ashamed with myself - how little I knew and how good was the examinor. I rarely become ashamed. +p55306 +aVRecently when I made a slip and blurted out indecent words in my mother's presence. +p55307 +aVI felt it when on duty in the hospital I understood that I was not afraid to face death, that I also helped a little to relieve the pains of a patient. +p55308 +aVFear overwhelmed me when right against the car I was in I saw another one, as if out of control of the driver. +p55309 +aVI felt it when a girl who was dear to me lied to my face. I got angry with the fact that she knew I didn't believe her but she kept on telling lies. +p55310 +aVSadness, no, I felt something much stronger when my father died. +p55311 +aVI got disgusted with a man who was beating a woman in the street. I just happened to be there but I was abhorred by the rudness. +p55312 +aVI was ashamed of the way I deceived that I could not help a friend, although it was absolutely possible for me. Nothing was revealed but I haven't called up this person since then. +p55313 +aVI had an appointment with a colleague of mine to give her my lecture notes. I couldn't go and I didn't send them, and so the girl missed a day for the preparation of her term exams. +p55314 +aVWhen I knew that my husband and I were going to have a child. +p55315 +aVTwo years ago I saw a film on the TV. Even now it makes me afraid. +p55316 +aVWhen my husband stays late at a meeting and I have to be alone. +p55317 +aVThe loss of a person I loved very much. +p55318 +aVDeception from a person I loved very much. +p55319 +aVI didn't tell my parents that I was going to Sofia. I told them that I was going to a seminar. My mother knew that I was lying but she didn't stop me. +p55320 +aVThe assistant professor saw me cheat at the preliminary examination. +p55321 +aVI was very happy when I got the message that I had been accepted as a student in medicine. +p55322 +aVI felt something close to that when I saw that there was a man on the terrace of the flat. +p55323 +aVI got angry when I learned how short a time we had to prepare for the term examinations. +p55324 +aVI felt sad when my first boyfriend and I left each other. It was neither his fault nor mine. +p55325 +aVI felt it today when the bus driver shouted rather indecent words at a man without any reason whatsoever. +p55326 +aVAt an exam in pharmacology I tried to prompt a coleague (she asked me something) and the assistant professor made me a sharp remark. +p55327 +aVMy grandmother has been in a hospital for a week and I still haven't had time to see her. +p55328 +aVWhen I learned that my parents were going abroad and leaving me alone for a few years. +p55329 +aVI was at the seaside and my brother disappeared for a couple of hours. +p55330 +aVSome time ago I was disgusted with the ""cleanness"" of the refectory of our institute. +p55331 +aVWe were at a football match and when we were leaving the stadium (the stadium was packed with people) and I lost my shoe in the crowd. Our attempts to find it didn't give any result and I had to go home without one shoe. In other words to cross the whole town ! +p55332 +aVI felt guilty last year during the winter term exams. A colleague of mine asked me to give him my lecture notes (I had very good notes and I had passed my exam in advance) but I still don't know why I didn't give them to him. That colleague failed and he was on the verge of not passing it at the supplementary examinations. +p55333 +aVWhen I was admitted to the Institute. I had problems with many people about my applying for this institute and I decided to prove that one can pass excellently without visiting any preparatory couse. That is - I proved what I could do on my own. +p55334 +aVOnce as a child I dreamed of a fire. Since that time I hadn't wanted to sleep in that bed and had feared the night darkness (and so it is now). +p55335 +aVA chief was unjustly punished on an autumn brigade and the one who was really guilty kept silent. I stepped in front and told the truth. The guilty chief called me in after the roll-call and threatened me. +p55336 +aVYears ago I fell in love for the first time. as natural for every school-girl I was day-dreaming. Later (after 3 years) we left each other. No one was to blame but I felt deep sadness. Even now I remember about it quite often. +p55337 +aVIt was at a comsomol(??) meeting, the last one because we were to graduate. The way one of my fellow-students behaved made me feel disgusted. +p55338 +aVI was at a children's camp abroad. The people (the leaders, my coevals) were very king to us. One night we smeared our foreign friends with tooth-paste while they were sleeping and then we roused the whole camp by our shouts. Later I was so sorry. I didn't utter a word for two days, then I went to apologize. +p55339 +aVWhen I was in the fifth class the rating was done in our mark-books. I hadn't been examined yet but I had heard from my classmates about the scolding they had got at home. My first mark was in geography - good 4. I judged I had known for more than that and I put down ""very good"" for fear of being scolded. Naturally my parents guessed all about it. They rebuked me for what I had done. +p55340 +aVWhen I learned I was admitted to study what I wanted most - floriculture (this is a narrow specialization from the general one). +p55341 +aVI was walking on the pavement when a white car rolled on it and directed towards me. I was quite near the house wall when it rolled by and hit me. +p55342 +aVMy grandmother's brother had taken active part in the resistance movement. He had been in prison many times and there he lost his health. He became an invalid. When we phoned to First Aid the nurse on duty behaved quite unkindly when she understood how old he was (79). +p55343 +aVMy boyfriend is a soldier. He was on a leave. I felt sad when we had to get separated again. +p55344 +aVI felt disgusted about a teacher who had rejected all that was human in her. She refused to accept the flowers we gave her for the eighth of March and asked for a foreign parfume instead. +p55345 +aVI was examined by a teacher I greatly respected. I was well prepared on the subjects but he put some side-issues to me and I couldn't answer. +p55346 +aVI had undertaken to help my sister for her class work but some unexpected circumstances prevented me from doing that. +p55347 +aVI was very glad when I learned I was a student already. I heard about it over the phone, I didn't believe it at first. +p55348 +aVI had worries about a certain illness. +p55349 +aVI suffered from a gynaecological illness. I was quite displeased to hear that my roommates had talked about it and they had misrepresented the truth. I felt deeply hurt when I learned that it was done by a ""good"" acquaintance of mine. +p55350 +aVWhen my first boyfriend left me. I tried not to let him understand I felt miserable. +p55351 +aVI hate hypocrisy. My friend (girl) tried to intrude into my affairs with my future husband. After that she behaved as if nothing had happened. +p55352 +aVI feel shame when I have made a promise, I can't keep it and this has negative effects which are caused by my behavior. +p55353 +aVI felt it when I came home after the examination session and I said I had not passed my last exam. +p55354 +aVI felt glad when I took the rather difficult organic chemistry examination. +p55355 +aVThis was what I felt when my boyfriend went to Bourgas to study there. I had the feeling I would lose him. Anyway the distance Plovdiv-Bourgas seemed to me so great. +p55356 +aVI confronted with this feeling at the Institute quite recently, the pedology lecturer was the cause. +p55357 +aVThis feeling was quite deep when my friend (girl) died in a car accident. +p55358 +aVI am disgusted with the behavior of a car driver whose car would run over me and my friends during our autumn brigade. +p55359 +aVI felt shame when I discontinued my education for eight months. +p55360 +aVThe sense of guilt came over me too, when I interrupted my studies. Why ? Because I felt guilty before my parents ! They believed in me though this event did not make them disbelieve me. +p55361 +aVI sensed a strong feeling of joy when in the plant, at my working place, I got a message that I was admitted as full time student at the Higher Agricultural Institute. +p55362 +aVFear when fulfilling my obligations on my first night fatigue duty as a soldier. +p55363 +aVWhen on a car journey a fellow student crossed our way with his own car and we had to bump into a roadside trunk. +p55364 +aVThe loss of a close relative who was ill with cancer. +p55365 +aVI am disgusted with a nieghbour who is looking for all sorts of quarrel with my parents and me. He feels we are hampering his living close to us. This has been going on for quite a long time. +p55366 +aVSome time ago I promised to meet an acquaintance of mine and to carry him some promised papers. I haven't done it until this day. Now I feel quite awkward when I meet him. +p55367 +aVA sense of guilt before my parents when I had to discountinue my studies in the first year because of unpassed exams. +p55368 +aVAfter a difficult exam. When I had not hoped to take it and had got a high mark. When you present someone with something and he feels glad. +p55369 +aVFear from the unknown. I felt fear when I sat for the entrance examinations. +p55370 +aVI feel angry at people's indifference at our ability to be present at an event and to stay partial to what happens. +p55371 +aVWhen you are far away from relatives and friends. I feel sad for my early years, for the freedom and the carefree years of childhood. +p55372 +aVI feel disgusted with the bootlickers, with helpless people. +p55373 +aVI feel ashamed when I act dishonestly toward somebody. +p55374 +aVI didn't visit a very close friend at the hospital and some days later he died. +p55375 +aVI was sitting for an exam in biochemistry, I was very excited because it was a supplementary examination. I passed the exam very well and was glad because I recovered my selfconfidence. +p55376 +aVStudents fear many things but we seem to fear the examinations most of all. I remember I was horror stricken before my microbiology exam, because it was a decisive one. +p55377 +aVIt was necessary to organise a competition in connection with a celebration. Everyone was to be present at that event. It turned out that there was no audience at all because everyone had pretended to be very intelligent and no one had come. I got furious. +p55378 +aVWhen I part with my friends I feel always sad for some time. I can't remember a concrete example now. For example I have just parted with a friend of mine and I am feeling sad. +p55379 +aVIn autumn I had to move to another lodging. My landlords, quite intelligent people, warned me I had to move in the nearest future. But I had difficulties in moving my luggage because I couldn't wait for a car to come. How amazed I was to hear them threatening me they would throw our my things. And at that my luggage was well packed and did not stand in their way. I was quite disappointed and disgusted. +p55380 +aVDuring our last exarcise in agricultural machines we went out in the yard to examine a row of machines. But we seemed not to have fulfilled our task well, because when our teacher came and asked me a question I was unable to answer. I felt awkward because he didn't deserve it. +p55381 +aVI remember about an unpleasant event in relation to my mother. I felt guilty before her. +p55382 +aVWhen I succeded in establishing a contact with a girl (who is now my girlfriend). +p55383 +aVI fear before each exam. +p55384 +aVWhen my bosom friend tried to lie to me. +p55385 +aVWhen I quarrelled with a very close friend of mine. +p55386 +aVWhen I see the acts and deeds of a blind drunk man. +p55387 +aVWhen I wasn't well prepared for a terminal exam and the teacher tried to give me a three by asking me some very easy questions. I burned with shame then. +p55388 +aVWhen once my mother asked me to do some work for her at home because she was busy and moreover this work was to be done by a man. But it remained undone. +p55389 +aVI feel joy usually after each taken exam, the last one was in February. +p55390 +aVIt was not long ago when I and two of friends of mine got quite drunk and one of them began to rave under the influence of the alcohol. I felt fear of what could have happened. +p55391 +aVI felt anger at my last exam, I felt angry with our teacher, because he did not rate me objectively and I failed. +p55392 +aVI met a girl some time ago and I cared very much about her but it happened so that we left each other. I felt some sort of sadness, I think I can call it so. +p55393 +aVI had a very good friend (boy) and I thought I could rely on him but he behaved badly with a girl who used to trust us completely. +p55394 +aVImmediately after the New Year holidays I happened to visit a party where there was a lot of alcohol and I became drunk. On the next day I felt sort of ashamed when I remembered what I had said and done on the night before. +p55395 +aVLast year I put off an exam for the autumn session without knowing if there was a supplementary examination session. When I came home with my exam unpassed I felt guilty before my parents when I remembered how much they had done for me. +p55396 +aVWhen I was admitted to the Higher Institute. +p55397 +aVI felt fear when I fell down and broke my leg into pieces and I could not feel it at all. +p55398 +aVI felt angry when I failed in an exam about which I knew quite a few things and I did not deserve to be plucked. +p55399 +aVWhen my mother and father were on an excursion in Chechoslovakia and I was at a student camp and I heard over the radio about the events that were taking place there. +p55400 +aVI felt disgust with alcohol in general when a close friend of mine got so drunk that he didn't realize what he was doing and it was quite shameful. +p55401 +aVI felt ashamed when my parents found out that I had deceived them. +p55402 +aVI felt guilty when I had taken the car keys and I had an accident but as my parents did not know who was to blame, they punished my brother because I had no driving licence and they thought it impossible that had driven the car. +p55403 +aVI felt joy when I was admitted to the Higher Agricultural Institute. +p55404 +aVI feel fear quite often but this feeling was very strong last year when my husband was quite unexpectedly sent to the hospital. +p55405 +aVThat was what I felt with a teacher who put down quite unreal marks. +p55406 +aVI felt sad when a friend of mine died and I felt that something had irrevocably gone away from me. +p55407 +aVI felt disgust with a lady teacher who used to nag, to mock, to interrupt everyone of my fellow students each time we had a class with her in our first year. +p55408 +aVThat was what I felt when I told my first lie and then was cought. +p55409 +aVI felt guilty when I failed to take an exam though I had had enough time to read for it but I hadn't made use of it. +p55410 +aVI was for the first time on a brigade this year. At that time my sister was to bear a child. I was mad with joy when I opened the telegram from my parents and learned I had a nephew. +p55411 +aVIt was some years ago when one evening some people came home and told us my father was badly injured in an accident. +p55412 +aVI faced this feeling when I realized I wasn't admitted to the institute in the first classifying, in spite of the high mark I had got at the entrance examination. +p55413 +aVAlways when I get separated from my friends and relatives from my home town. +p55414 +aVI feel disgust with my first boyfriend who made fun of our love in an abominable way. +p55415 +aVI have always felt ashamed for some people's behavior to their too old parents. I have felt hurt and shy when they have left them to the mercy of fate. +p55416 +aVI feel always guilty before my parents when I come home and have to tell them I have failed an exam. +p55417 +aVNaturally when I got myself discharged this was my second birthday. +p55418 +aVWhen I failed my first exam at the Higher Institute. +p55419 +aVA nuisance used to live in our flat a month ago. I experienced this feeling when I tried to chase her out. +p55420 +aVAfter my father's death. +p55421 +aVWith an alcoholic. +p55422 +aVOnce I had dinner at an elegant restaurant and I did not have enough money to pay the bill. There were a lot of people there and I felt quite awkward. +p55423 +aVSomething very unpleasant happened when I was a soldier and I was directly involved in it. +p55424 +aVI felt the greatest burst of joy when after being heavily ill for a long period, my father came back home. +p55425 +aVI was terrified during an axcursion in Italy. I was lost and left alone in this unfamiliar country. +p55426 +aVI took part in a football match. The referee was extremely partial to the opposite team. This stirred up my discontent and anger. +p55427 +aVWhen my first girlfriend an I left each other. +p55428 +aVDuring a summer holiday at a bar I happened to see a dead to the world woman. +p55429 +aVWhen I first had a sexual intercourse. +p55430 +aVI remember when I was a little boy I broke a Swiss dinner set quite involuntarily. +p55431 +aVWhen I got a message that I was employed as a nurse at a kindergarten. +p55432 +aVWhen I first sat for an entrance examination. +p55433 +aVWhen a teacher though pretending to be a highly cultivated teacher and a man, slapped a classmate of mine in the face quite undeservedly. +p55434 +aVWhen I got separated from my first love. +p55435 +aVMany times, when my father used to come home drunk and maltreated physically me and my mother. +p55436 +aVWhen for the first and the last time I tried to crib and the teacher was with her back to me but right when I was taking the materials out she turned round and saw me. +p55437 +aVWhen at times unconscienciously I speak to my mother in a high tome but after that I am sorry and I feel guilty. +p55438 +aVBeing invited out by a person I wished to get closer to. He telephoned and invited me to go out with him the next night. +p55439 +aVWatching a horror movie with friends. +p55440 +aVThe breakup of a relationship. After the event I was upset/sad then angry maybe 2/3 weeks later. +p55441 +aVThe funeral of a friend who was killed in a car accident. She was of my own age, there were many of my own friends present, as well as her family etc. +p55442 +aVDisgust for a person who treated me badly, and has treated other people similarly - including lying, hiding facts, being deceitful, unfair, etc. +p55443 +aVLosing my temper and allowing myself to act childishly by yelling and screaming at a person who I felt had done me wrong - in effect lowering myself to their level. +p55444 +aVGuilt at often being unable to visit a close relative in hospital after her death I felt very guilty and wished I had done more. +p55445 +aVAchievement of a task by a friend who had begun a new job. She wasn't confident of handling the situation so was thinking of leaving the job only after 2 days employment. +p55446 +aVWalking home at night after university - part of the way, there are ano lights and I am walking down a thoroughfare with the thouth of no one hearing me if I have to scream. +p55447 +aVWhen my son omits to carry out certain duties at home that he knows needs doing. +p55448 +aVWhen I saw my niece (5 yrs) crying in the hallway for her mother who had passed away about a month ago. +p55449 +aVWith a woman who had walked into my place of employment and urinated on the floor in front of everyone. +p55450 +aVWhen I found a letter addressed ""To Mum"" by my son, 6 months later, he begged me not to sell his new shoes which he messed up after wearing them for the first time. +p55451 +aVWhen I had lied to a friend/son about some things we had discussed and I had to be one better. +p55452 +aVFelt joy a few years ago when I was away on holiday. And sat very close to my best friend looking straight into the eyes. +p55453 +aVI had to tell someone that I was interested in remaining celibate and alone. And that my spiritual master strictly prohibited sexual relations outside of marriage. This caused great fear through lack of conviction afraid to hurt someone's feelings despite my own being hurt in the process. +p55454 +aVIn a sociology class I felt very angry towards some members of society for exploiting the Polynesian people, dawn raids by Police (Martin Luther King, Blacks in S.A.). But this was just a reflection of my own shortcomings. +p55455 +aVFelt sad about some street kids in QUEII square, Aotea square. Because they had been sniffing glue and some were very young. I went into the role of a performing clown. +p55456 +aVI was disgusted by my paranoid attitude towards myself, my homework at university and disgusted about my lack of retention. Especially in learning another language. +p55457 +aVI felt shame at the hurt I caused to my family especially my parent father, shame of hurting people emotionally. A misconceived self-blaming that didn't do me any good. Shame at being myself as I am. +p55458 +aVI felt guilty at being part of the successful people. Felt guilty at being a student when other people were not. Guilt about being a potential success in various areas of society. (So stupid this emotion) +p55459 +aVWhen I meet old past pupils of mine - and find they are all doing well - I feel joy. Yesterday I met a young woman (20 yrs) I'd taught her at 6 yrs, then at 12 yrs and hadn't seen her for last 3-4 yrs; she was no longer a waitress but a meter maid for Council. +p55460 +aVA Maori language oral test, yeaterday - Although I had studied intensely - once in the examiners room ""I blew it"" - I was so nervous I couldn't reply easily - It was very important, but I got only blankness. +p55461 +aVA friend visited and made comments that my house/garden were not as neat/tidy as in the past. I'd not seen her a year - She implied I'd gone to the pack (I'd only been working full time, and taking 3 University exams part time). +p55462 +aVWhen my father a 4th/5th generation colonial (from Eng.) attacked me verbally about my chosen partner. A man whom he discarded because his colour skin was not white. His ultimate disgust saddned me. +p55463 +aVPeople who came to our home - and requested ""Put out your smoke"". That we should not smoke in our house... and asked not even politely. It disgusted me because I think people need to adapt to the situation. +p55464 +aVPut down by my father - at a family outing at mutual family friends dinner. Told ""Not to Speak"". The attitude by him was negative/I was in mid 20s, I had done many things - a wide range of experiences. Probably greater than he. +p55465 +aVMy 3 children - each top his class in the final exams 1984. +p55466 +aVA truck (big one) nearly mowed me off the road (I was driving a small Lazer). +p55467 +aVA shop in Downtown wouldn't accept my Visa Card - before December last year. +p55468 +aVMy dog of 16 and 1/2 years - ""Lord Grey"" died in his sleep - His death caused me more and deeper sadness than I thought. +p55469 +aVA sour looking man was beating his thin dog in Remuera. +p55470 +aVI told Mr Winter of Downtown Fashion to go to - when he did not accept my Visa ! +p55471 +aVWhen I accepted a lunch invitation from a past male friend. +p55472 +aVWhen my daughter was born. +p55473 +aVWhen my mother entered surgery for a quadruple heart bypass. I felt intense fear at the time she was actually wheeled away. +p55474 +aVWhen my husband got picked up in our new car for drunken driving. We had made a pact the other would not drink and so therefore would be the driver for the evening etc. I was not present at the time. +p55475 +aVWhen my grandmother died very suddenly without warning. +p55476 +aVWhen the N.Z. rugby union announced that they would proceed with a rugby tour of South Africa. +p55477 +aVWhen I was unable to respond to a welcome in my indigenous language of Maori at an important function where I was the only woman in the group and it was expected of me. +p55478 +aVWhen I made an excuse to get out of participating in an important family occasion that I should not have missed. +p55479 +aVBeing reunited with my family after not having seen them for 5 years, at the airport. Sheer elation at getting through the ""paper work"" collecting bags and the anticipation of coming through the customs gate. +p55480 +aVI caught a huge eel on a fishing line which I had pulled into the boat. I cut the line and threw the whole lot back into the water. Later that day and about ten miles away I went swimming and someone made the comment wondering how far eels could swim, I abruptly ended swimming for fear at an unseen eel for a few days until we had left the district. +p55481 +aVMy partner without discussing with me the situation decided it was time for us to have a break and went ahead and arranged his own life for the next 6-12 months, then told me the day before it was about to happen having been tolerant and friendly for the preceding week. +p55482 +aVI had been living in an overseas city and made the decision to leave the city and come home about 12 months before I met a whole new set of friends, leaving them at the airport was sad and traumatic as they had helped me in many ways and I knew I wouldn't see many of them again. +p55483 +aVAfter I had managed to fail my first year at University I was scared as to what I was going to do with my future. I didn't want a mundane 9-5 job and yet I didn't know if I could pay my way through an unsubsidized year at university to settle down and continue my studies. +p55484 +aVThis situation keeps occurring - when my little sister disagrees with me or vice-versa. We have very similar temperaments and I always end up feeling angry at her and myself for fighting so much over unimportant trivial matters. +p55485 +aVWhen my grandmother, who has been living with us for 14 years, had a stroke and was left paralysed on one side. She has been quite close to our family and to see her suffer in this way makes me feel really sad. +p55486 +aVA gathering of a social sports club at which they proceeded to show pornographic videos and then afterwards (when most people had had quite a bit to drink) carried on in a very degrading, unmoral manner - especially females exposing and flaunting themselves with no shame or embarassment. +p55487 +aVLike guilt - the most ashamed I have ever felt was when I began to feel guilty about having sex with my boyfriend when it was only ""the thing to do"", and not really an act of love. +p55488 +aVThis feeling of guilt really applies to moral/religious views. I (being Catholic) went against what I was brought up to believe in and had a sexual relationship with my boyfriend. Many months later, when I was doing some deeper self analysis I began to feel guilty and realized that I had gone against what I wanted for myself and my future. +p55489 +aVMy mother along with some of my friends gave me a surprise birthday party - they invited a large number of my friends along too. +p55490 +aVMy mother did not come home till late at night (Ages ago). Anyway if I don't know where my parents are and when they'll be back I start thinking that perhaps they have had an accident and are perhaps dead. +p55491 +aVBecause I am the Captain of a basketball team I usually organise a roster system so that everyone in the team can have a turn at doing either a duty or a ref. A lot of the time the girls can't be bothered or just forget - I usually have to fill in. +p55492 +aVSo as to be closer to the university I have left home and moved into Auckland. It now seems as if I have left home - especially my family - forever. +p55493 +aVA friend of mine goes out with this guy. She sleeps with him but is quite happy for him to play around - as well as herself. +p55494 +aVI did not attend a social studies observation class for 1 whole week (I am a student trainee teacher). Anyway the other teachers thought this was okay because the teacher I was supposed to observe was not well liked. The teacher was in fact really nice to me - but I wanted to get out of teaching a hard topic he had given me. +p55495 +aVPassing my pharmacy exams which meant my tertiary education for pharmacy completed. +p55496 +aVWhen I was in a car with my parents and friends and we had to back up (reverse) pass a river which when I recall it (I was only about 5 yrs) seemed we were going to fall in and drown. +p55497 +aVWhen my boyfriend wouldn't dance with me on my graduation night because he thought I could dance with my friends who were friendly. +p55498 +aVWhen my sister (really my niece) died of cancer at the age of 2 yrs after I took her to the doctor at the age of 1 and he diagnosed it. +p55499 +aVMy brother gave me a beating because he could not beat me verbally. +p55500 +aVI found I was pregnant and unmarried. +p55501 +aVWhen I had to go to reconciliation before converting to Catholicism but then once received - o.k. +p55502 +aVJoy for me is when all my family gather around home for special occasions as Christmas etc. It really gives me joy to see my family and relatives and to observe natures productivity process which have been going on for centuries. +p55503 +aVI had this experience of fear when few people were fighting at a social one night, which one of my relative was involved. My fear was greatly for him because he was being assaulted badly. +p55504 +aVThis occurred when my girlfriend and I have to finish our relationship due to some circumstances between her and her family. I was really sad, hurt and couldn't really find any reason why am I still living. Is this life is all about ? This was one of few question which crept up vividly every time I thought about what had happened. +p55505 +aVI'm very disgusted when I see people abusing their body with drugs and alcohol. They take advantage of these things usually for an excuse for the fantasies which they like and so they do things stupidly and unjustly. +p55506 +aVThis I experienced when going around with more than one girl. +p55507 +aVLetting Jesus take control of my emotions i.e., ill feeling. +p55508 +aVHad fear of losing husband. +p55509 +aVWhen present boyfriend's mother approached my parents and self - to leave her son alone - as she did not want me for a future daughter-in-law. +p55510 +aVWhen boyfriend could not stand up to his mother or for himself. +p55511 +aVDisgusted with boyfriend's mother - her overpowering, over-protecting and selfish attitudes. +p55512 +aVWhen ditched - divorced by husband. +p55513 +aVWhen I had to lie about my age to be accepted as a member of a group. +p55514 +aVMy cousin asked me to be a bridesmaid for her. This made really happy because I was adopted into the family and her asking me made me realise that she saw me as a cousin and not just another person. There were other cousins she could have asked but she asked me. +p55515 +aVThat if ever I was really naughty I would be sent away from my Mum and Dad to another family. I was fostered from age 5 and didn't get to Mum and Dad until I was 6 and then legally adopted at 14. +p55516 +aV(1) My father died. (2) My natural father contacted me a year after my father died and this angered me more as I thought he should be dead and not my father. +p55517 +aVMy father died. I was away at the time and did not know until two days after. +p55518 +aVA child told me she had been sexually abused by her step-father. I only knew the child and had not come into contact with either parent. I tried to do what was best for the child. The event and the stepfather disgusted me. +p55519 +aVWhen my natural parents name would show up on papers and not my, what I call real name. +p55520 +aVI lied to my mother in the sixth form she said she would ring to find out and I had to tell her I had lied. +p55521 +aVJoy at meeting a woman I love very much. +p55522 +aVWhen approached by a gang of youths in town at night. +p55523 +aVWhen a man, a stranger to me, personally insulted a close woman friend of mine in public. +p55524 +aVAfter my father died suddenly of a heart attack. +p55525 +aVWhen a man spoke very sexistly in the company of some friends of mine. +p55526 +aVWhen I went to explain to a lecturer whom I liked that the work expected of me was not going to be in. +p55527 +aVWhen I masturbated in my room. +p55528 +aVWhen my lover and I felt like we had gone full circle. And our relationship was new, fresh, vital etc. once again. +p55529 +aVMy daughter was 2 yrs she went up to a colt tried to hit it. It turned on her and kicked her over the heart, sent her flying through the air. I left my mother and sister to deal to her as they are nurses. I felt I didn't want to know if she was going to die, it was just too much. +p55530 +aVMy anger is with men, their inability to be human (not all men). +p55531 +aVThe saddest I've ever been was when my lover was killed, hitch-hiking to work. +p55532 +aVWith the N.Z. Rugby Union wanting to send the All Blacks to South Africa. +p55533 +aVThat my brother and father are into alcohol, two men with priviledge. Not using it positively. +p55534 +aVWhen I betrayed my lover, she told me something in confidence, I felt at the time I had to relay the information back to the person concerned, as I felt the situation volitile, did this without telling my lover, she felt like piggy in the middle, as she was not directly concerned. Maybe you could call it gossip I felt different after I had slept on it. If I had waited, thought, NOW I would not have done it. +p55535 +aVA good friend, the wife of the vicar of my church came up to me from the pews (I am in the choir) and shook my hand during the time for an informal ""greeting"" in the church service. She said a few words. +p55536 +aVI walked up the main street of Auckland at 10 o'clock at night. I expected it to be very active with people, gangs, fast cars etc, thought it was actually quite quiet, though also oppressive. I walked about half a mile and bought a drink along the way. +p55537 +aVSomeone in my family (my brother I suspected) ate a bun which I had made for myself. It was during a long telephone call after I had just made it and put it in the oven warming drawer. +p55538 +aVSitting in a bus, I heard behind, the voice of a girl I was friendly with. After her talking for some time with another girl I decided it wasn't her in fact that someone miming her, which it was when I finally looked. I was talking to a friend at the time. +p55539 +aVHaving moved into a flat within the last week I felt some disgust that a bathroom tap had been left to drip with a faulty fawcet. +p55540 +aVI criticised an action of my mother and for the first time she genuinely took notice of it. I felt shame that I was almost taking the part of a husband, or at least an equal which I should not. +p55541 +aVI felt that I contributed to a possible rift in the relationship between a boy and girl soon to be married, in my flat after I moved in. After stating my celibacy to him which she overheard and didn't previously know about I suspect. +p55542 +aVMy friend replying to my letter and again saying he was attracted to me and suggesting we write, talk and get together and see how things went and his suggestion that I could ring and doing that it was really good - though really insane conversation. +p55543 +aVBeing sexually assaulted (not rape, but passionate kissing) by a friend's father - he stopped when he was driving me home. I hadn't wanted the lift, had refused 3 times, and then felt it'd be rude to refuse again. Was really afraid of what he might do. +p55544 +aVI live by myself and a few weeks ago was woke by a man on the end of my bed coming up my bed at me. I was really angry, told him to get out. He was surprised, hesitated; I started to move towards him and he backed off - kept telling him - loudly, but firmly to go. Because I'd got the initiative, I succeeded. A very powerful message. +p55545 +aVWhen my grandmother died - I wasn't sad so much that she'd died because she was old, but because she lived in the last few years in an old people's home and had nothing very much that was hers - no chair, or private space, and when I went to visit she would be sitting in the ""lliving"" room the TV room. It was hopeless. And I felt awkward so I didn't go and I was sad 'cos how I couldn't. +p55546 +aVWhen during a social evening with my father, brother, sister, close friend and my father's 2nd wife - I had an argument with my father, who abused my friend who was sticking up for me. +p55547 +aVWhen the girl whom I have lusted after expressed reciprocal feelings and then days later changed her mind. +p55548 +aVWhen a close friend wilfully cheated me. +p55549 +aVWhile intoxicated I invaded someone's (a girl's) personal space to a large extent. +p55550 +aVWhile intoxicated I damaged my sister's car in a minor way and someone elses in a minor way. +p55551 +aVGirlfriend arriving back from overseas and picking her up from airport. When she finally appeared from customs and we came in contact again. +p55552 +aVFear of punishment for having broken an item of value to my parents. +p55553 +aVThat a friend had been badly beaten and stabbed many times and the person that did it got away without any punishment from the law. +p55554 +aVThe death of an animal we had reared. +p55555 +aVFinding that a girlfriend of mine was a prostitute and had been seeing many others during our relationship. +p55556 +aVNot having owned up to the responsibility an incident where family car received minor damage. +p55557 +aVHad started a relationship and did nothing to keep it up, partly the use of another person. +p55558 +aVThe feeling of joy when again I had confessed my sin and experienced God's forgiving grace and cleansing power - total enlightenment and freedome - bliss. +p55559 +aVRiding through a bush fire on an island of Australia - on a pushbike as a little boy - all alone, lost and surrounded by smouldering wood and flame. +p55560 +aVWhen bicycling along, a courier van started to tail me very close - I sped up and moved over and he just did the same. I reacted violently, much physical responding in the dangerous situation. +p55561 +aVMy cat was sick and I had to take him to the vet to be put down - no one else there to do it. +p55562 +aVWhen someone I had had a relationship (purely sexual) with came up to me after I had used her and acted as if nothing had changed. +p55563 +aVWhen a close friend entrusted me with a secret and I let the cat out of the bag. +p55564 +aVMaking a sexual pass at my cousin with whom I have a very close personal relationship. +p55565 +aVFirst time I slept with my present girlfriend. Had been best friends for a year but had been hesitant about getting involved emotionally. +p55566 +aVWaiting for a taxi - when within 1/2 an hour two separate people challenged me to fight for no apparent reason except they were drunk. +p55567 +aVDeliberately provoked by someone close. Angered by the deliberation not the provocation. +p55568 +aVMy girlfriend let me down badly 3 times in one week. These instances summed up all the negative aspects of our relationship which at the time seemed doomed to fail. +p55569 +aVA close friend took part in a racist violent action. +p55570 +aVSlept with someone close to my girlfriend and myself. +p55571 +aVHearing that I had been successful in getting a position whereby my financial, physical, spiritual and emotional needs will be well catered for. This position fulfils a lot of my aims for the last five years of my life. +p55572 +aVWhen I decided to leave my steady, secure employment to come to university. Because I didn't know if I could cope with all the requirements of study and also being older I didn't know if I would enjoy mixing with younger people, also financial insecurity. +p55573 +aVWhen a close friend failed to live up to the expectations I had of him - thereby causing pain to his spouse. I believe that my anger was probably a reaction of fear that I wouldn't be able to live up to my own expectations. +p55574 +aVDeparture of a very close friend - for a long stay overseas, sharing in the sorrow of her parents who were left behind. +p55575 +aVI get disgusted with the inherent racist attitudes of my brother-in-law in putting down various ethnic groups and also my unwillingness to challenge him about these attitudes in order to keep the peace. +p55576 +aVMy failure to provide the appropriate emotional/spiritual level to a sexual relationship that had a large physical content. Born out of inconsistency with my personal beliefs and value shame at largely using this sexual partner. +p55577 +aVWhen I deliberately engineered a situation to cause tension between friends so as to bolster the impression one of them had of me ! +p55578 +aVHearing Fran Wilde introduce the Bill. +p55579 +aVBeing harrassed for being gay; suggestions of being physically beaten - acting as informal bouncer in a gay bar. +p55580 +aVLandlord putting up rents sneakly and slimily. +p55581 +aVListening and watching a tape of someone with AIDS being prejudiced against at a counselling course on AIDS with 20 others. +p55582 +aVHearing Norman Jones get hysterical in Parliament about law reform (on the radio - listening with 2 others). +p55583 +aVWatching Muldoon act as my P.M. +p55584 +aVAdolescent guilt growing up feeling ""bad, immoral"" sexual desires, some 10yrs ago. +p55585 +aVWon a prize for effort. +p55586 +aVAssaulted by drunken neighbour. +p55587 +aVI was playing in a football tournament and saw the rules openly disregarded. +p55588 +aVDeath of brother. +p55589 +aVReading literature on AIDS/homosexuality. +p55590 +aVI am ashamed at myself sometimes when I am working with handicapped people and don't wish to be seen in public with them. +p55591 +aVI was late meeting someone for an appointment. +p55592 +aVI was feeling really low - had been a series of fights with my siblings, been under pressure at school and wasn't going to the party I wanted to go - instead I was going out with my family. A guy called and said, in effect, that I was ""nice"" and he liked me. Hence the emotional joy. +p55593 +aVI was watching a movie alone - it was a horror movie. The music was a deep pulsing type - not really music. And a light flashed on and off. It was in the complete darkness of a movie theatre that was almost empty. +p55594 +aVMy sister and I were fighting as usual. She's older tham I am, bigger built and stronger I couldn't win in a physical battle and in a verbal battle I couldn't seem to get through to her to really hurt her. +p55595 +aVMy paternal grandmother had died. We weren't close but she was blood. I didn't cry but I was sad, partly due to her death and partly I think, due to the fact that I couldn't/didn't cry. +p55596 +aVMy older sister used to pick on my brothers and sisters all of whom were younger than her. On one occasion my brother did something my sister didn't like. A full-scale battle began. +p55597 +aVMy first real experience with a boy. We were alone. I was quite young and pretty naive and he was pretty crude and real, sort of, macho. It was dark, at night during the summer and we were talking. +p55598 +aVI was using my sister's stereo while everyone was out. I know she wouldn't want me to and I would get into trouble if she found out. But she was only partly justified in forbidding me to use it. She never found out. +p55599 +aVWinning a rowing race at a Karapiro regatta. With 7 other friends. +p55600 +aVBeing alone in Europe and having to catch a train and bus to the airport, then board the plane alone. +p55601 +aVAt school teacher for not allowing us to go out on New Year's Eve when on a class trip overseas. +p55602 +aVI was in a car accident on the way back from a weekend rowing regatta we'd won. 5 others were in the car. I thought I'd never be able to row again. +p55603 +aVOur boarder burping after meals ! +p55604 +aVFelt ashamed when in a group conversation and could not understand words or comprehend the topic of discussion. +p55605 +aVGuilty when I hadn't walked my dog for quite a few days and had given her no attention. +p55606 +aVWhen I won a position on the track-team for the trans-tasman games when I was eleven. +p55607 +aVWhen I was jumped by three men in a deserted area. +p55608 +aVOnce a person in authority (school teacher) was telling blatant lies about me and the headmistress would not let me defend myself. She was also telling lies about other members of my family. +p55609 +aVWhen my mother died. +p55610 +aVWhen somebody who had been a bully and had acted cruelly to others who were unable to defend themselves was taken down a few notches and he began to grovel. I was disgusted with his grovelling and the manner in which he had treated others. +p55611 +aVWhen I was twelve I was babysitting some children but I did not act very responsibly and one of them was injured. +p55612 +aVWhen something went wrong for me I lashed out at someone else whom I loved and who was not in any way responsible for what had happened (my sister). +p55613 +aVEaster holiday - I had been working weekends and had just left. +p55614 +aVI visited a special education school. The headmaster applied a policy of strict positive - negative reinforcement to the children involved. Children who measured up to his standards were made a fuss of - children who didn't were ignored. +p55615 +aVNext door nieghbour ran over his cat in driveway, he tried to finish it off with a flat shovel. I would have taken cat to veterinary to either kill humanely or cure. +p55616 +aVI borrowed a friend's books and forgot I had them, she asked for them back and I told her I didn't have them. I duly found and returned them. +p55617 +aVGetting my kitten, found at work several years ago, taking him home in a box on my motorbike, showing it to my defacto. +p55618 +aVObscene phone call where the person knew my name. +p55619 +aVAt work being shifted to another area. +p55620 +aVEnrolling at varsity, being told I couldn't get in to certain papers. +p55621 +aVNoticing my flat had maggotts ! +p55622 +aVA serious drug error while nursing that I knew I was responsible for (patient lived, no complications fortunately). +p55623 +aVForgot to turn up on prescribed day for jury service. +p55624 +aVWhen I was finally able to return to a job that I enjoyed doing after several months absence (I was not needed during this time). +p55625 +aVWhen I was attacked by a teenage boy and had my wallet stolen. +p55626 +aVSomeone who was speeding was forced to slow down when I pulled out onto the road and proceeded to abuse me at the next set of traffic lights. +p55627 +aVWhen someone I was close to became a paranoid schizophrenic and I was unable to see this person because of the situation. +p55628 +aVWhen someone whom I considered my friend, without telling me he was annoyed, proceeded to ignore me for several meets with no apparent reason. +p55629 +aVWhen some unforgiving acquaintance dragged up an old and rather embarassing situation from my past. +p55630 +aVWhen I made a mistake at work and when questioned about it pretended I had nothing to do with the problem. +p55631 +aVAt my wedding - standing with the man I love and acknowledging that fact to members of family and friends. +p55632 +aVAs a result of breaking the indicator light as mentioned for guilt. +p55633 +aVArriving home from work after a long and tiring day to find no dinner prepared as I had expected. +p55634 +aVAt the death of my husband's father's mother which occurred during university examinations and therefore I was unable to attend her funeral. +p55635 +aVWith a Manager who insists on making crude innuendos pertaining to sex. +p55636 +aVBreaking the left hand indicator box by moving too close to structure. +p55637 +aVWaking in morning (early morning) and having whole day to myself. +p55638 +aVBeing driven by friend who suddenly swerved and skidded a little. It was night and on a long trip. We ended up on side of road. +p55639 +aVFriend (male) hinted that my talking to other men at a pub was immoral. He implied that I should remain only with my boyfriend the entire evening. +p55640 +aVOn rising. No apparent reason. +p55641 +aVProlonged ""niggling"" of friend on a single theme which I considered of no consequence. +p55642 +aVFelt I had not appreciated my parents enough. Regretted the problems I'd caused. +p55643 +aVBoyfriend doing cleaning in situation where it was my job to do it. Later snapped at him over trivial thing. He looked downcast. I felt guilty - ""he's just done all that work for me"". +p55644 +aVWhen my first niece was born. +p55645 +aVIn a flat in Sydney - rough area at home on my own - the flat had been burgled the night before and no way of locking the door. +p55646 +aVWhen the bus driver failed to stop and pick me up at a bus stop. +p55647 +aVWhen my uncle died of leukemia at age 35. +p55648 +aVWatching an alcoholic woman who was approaching everyone at the wharf for cigarettes - a prostitute in Auckland (elderly). +p55649 +aVStealing money from my parents when I was young. +p55650 +aVTwo timing - going out with 2 guys at once (secretly). +p55651 +aVWhen I went to the pub with a large group of friends, we drank and danced. +p55652 +aVWatched a horror movie which involved sexual attacks on women. +p55653 +aVMy boyfriend promised to take me to see a game of tennis and rang saying he was going to the pub with some of his friends instead. +p55654 +aVMy mother was unwell and went for many cancer tests. She spent time in hospital being opened and closed many times. +p55655 +aVI was driving along and saw this young guy urinating into the gutter, in broad daylight. +p55656 +aVI kicked the dog outside on a cold night because he was annoying me. The next day he came down with the flu and we thought he was going to die. +p55657 +aVI spent all weekend with a friend instead of studying for my exams. +p55658 +aVBirth of children. +p55659 +aVBeing alone at night. +p55660 +aVIn a hurry to get to lectures and the car would not start. +p55661 +aVWhen grandfather died. +p55662 +aVObscene phone calls. +p55663 +aVBeing with a close friend, in the city, who was involved at the present point in time in outrageous activity. +p55664 +aVTelling white lies. +p55665 +aVThought had discovered true love. +p55666 +aVStopped at lights in Mangere late one Friday night on way home from work. Alone in car when someone came up behind the car and started banging and shaking it. Light was red and had nowhere to go until light changed. When green I took off. +p55667 +aVWhen fired unjustly from a job as casual bar-person. Charged with giving away free drinks. Not done so and had witnesses to prove it - both patrons and bar staff. Other staff were supportive. +p55668 +aVClose friend leave to go overseas for an indefinite period. Farewell scene at airport. +p55669 +aVWhen employer made a pass at me whilst I was at work. +p55670 +aVWhen caught shoplifting and the police were called in parents also informed. +p55671 +aVWhen caught shop-lifting as for shame. +p55672 +aVReceiving understanding from within self of a subject I had previously wished to understand better. +p55673 +aVTo talk in a meeting - expound my thoughts on a subject. Fear delayed me acting to do this. +p55674 +aVTowards wife's laziness in not performing her usual duties because of television watching. +p55675 +aVWatching suffering in Third World country. +p55676 +aVObservation of people lost in the profit motive - i.e. business managers to their actions esp. +p55677 +aVOn own reading book. Recall came to mind of slight sexual exploitation of a female (years ago) i.e. had her on even for sexual motives. +p55678 +aVTelling a lie to wife over phone about what I had been working at. +p55679 +aVMeeting best friend at the airport (boyfriend) who I had missed terribly. +p55680 +aVConfronted outside a party by some very nasty character - gesturing to a car full of mean-acting friends - felt in danger. +p55681 +aVMy cat died painfully and slowly. +p55682 +aVHaving unwanted attention paid to me in my place of work - harrassment (and sexual harrassment) by another worker - disgusted by his implications. +p55683 +aVClose friend discovered I had deceived them. Felt shame at having done it and knowing that they knew. +p55684 +aVTwo-timing - going out with person other than guy I was in relationship with. +p55685 +aVI was very pleased and happy when my older sister came home from living somewhere out of town and I hadn't seen her for months. We are very close sisters. +p55686 +aVI was skiing alone and the mountain became covered with mist and I thought I was lost and was going to panic. +p55687 +aVMy parents didn't allow me to go to a social function that all my friends were attending. +p55688 +aVWhile still at school a friend died of cancer, after being ill for a long time, she was 17 yrs old. +p55689 +aVAt a party my best girlfriend got really drunk and went off with a guy she knows I really like. +p55690 +aVI was severely reprimanded for a trivial offence in front of members of my peer group while still at school. +p55691 +aVSomeone asked me to do something and I made up an excuse and said no. I then went and didn't the same thing with someone else and hoped the first person never found out. +p55692 +aVWhen my brother who has been out of New Zealand for 10 years came to visit with his wife which none of our family had previously met. +p55693 +aVWhen I had to give a speech about some historical event, to an audiece of about 200 people my own age whom I did not know. +p55694 +aVIn arguments with a close friend or relative where my point of view is completely disregarded. +p55695 +aVWhen my grandfather whom I had met only once for 3 weeks, died after several months. I was really sad because he was a lovely person and I did not have the means for his company. +p55696 +aVI once saw a programme on TV describing how certain wild life films were made and was disgusted by the treatment of certain animals in this particular programme of the polar bear. +p55697 +aVThe 2nd time someone I had met cared for came over to my house I was absolutely inebriated and was sick into a bucket. +p55698 +aVThe first time I went away with my boyfriend and lied about where we were staying. +p55699 +aVWhen my former boyfriend and I reconciled and he decided that I was very important to him. I had always wanted us to get back together again, but had doubted the likelihood of this, so I was very happy when my small amount of faith was vindicated. +p55700 +aVWhen riding in a very fastly-driven car on a lose metal road at a very late hour - no other cars on road, and driver was taking corners very sharply. I felt afraid - because if an accident happened, the area was very isolated. Also, I feared for driver, after I was dropped off - would he make it home safely. +p55701 +aVWhen at very short notice I agreed to work in place of a friend who was sick, and owner of the restaurant refused to allow me a drink later in the evening (which is usually always available for workers), did not thank me, and was generally indifferent towards me - I felt I did not deserve this. +p55702 +aVWhen I learned that my former boyfriend had become engaged - although I was glad that he had found what he wanted, I was very sad at my own personal loss, since I had always hoped we might one day reconcile. +p55703 +aVWhen reading a newspaper story of a man who had committed incestuous acts on his two-year old child - the thought that anyone could do such a thing is abhorrent to me. +p55704 +aVWhen dropping a carton of boiling soup onto a co-worker's leg - causing great pain, and for me, severe embarassment at my own ineptitude, and shame that another person suffered as a result. +p55705 +aVWhen my sister had the opportunity to do some modelling work. And I was quite jealous - later on the photographer decided not to take her photograph, and she was very upset - I felt guilty as a result, almost as if I had caused her to lose her opportunity, by not being genuinely happy for her in the first place. +p55706 +aVI did a solo flight from Ardmore to Kaikohe before I got my pilot licence. I can remember it was gorgeous day and I was on a natural high, cruising up the coast with my maps and compasses and gear. Other pilots had seen me off and wished me good luck and it was a real adventure. +p55707 +aVA friend (female) and I were on holiday on Great Barrier Island by ourselves. One night we were nearly raped by about 20 locals - they came to our bach and tried to break the doors down. All of them were stoned or drunk and we hid under the bunks and were totally terrified. Eventually these guys gave up and went looking for us on the beach. We escaped and slept in the bush for 2 nights. +p55708 +aVI ""cooked"" the engine in my father's car - it was actually his fault because he hadn't fixed the temperature gauge or told me. When I finally got home I was absolutely screamed at and the anger I experienced was over the injustice of it all plus the huge row which developed. +p55709 +aVThis sounds really predictable and usual but it was absolutely heart-rending at the time. My first lover (I was 15) just rang up one day and announced that he had found another woman. I never saw him again and it hurt because I was positive that it was ""TRUE LOVE"" !! +p55710 +aVI once saw an old man up the road, fossicking through the rubbish bins and the gutter. I was really disgusted at first but I've seen him a few times since then and now I feel really sorry for him and I often give him cigarettes when I see him, because he mainly goes after cigarette butts and it is revolting. +p55711 +aVWhen I was 15 my mother discovered various items in my room which 15 year olds aren't usually expected to have - mainly alcohol, marijuana and contraceptives ! +p55712 +aVA holiday at a whitesand deserted beach. A cool evening near the end of summer and we had a fire in the sand - toasted marshmellows, cuddled and drank champagne. +p55713 +aVSkiing down a very icy slope, very fast in white-out conditions. Out of control with no idea of what I was doing or where I was heading. +p55714 +aVMy best friend at school told lies about me to a boy I was seeing and went out with him herself. +p55715 +aVI found a baby opposum on the road and took it home and cared for it for a week. It had to be force-fed and carried in a fur pouch under my jersey. My father had the vet put it to sleep as he said they carried diseases. +p55716 +aVA boyfriend with whom I split up with came over to a friend's house where I was visiting with a male friend. In a confrontation in another room he tried to find out if I was aroused by my friend by feeling my parts. +p55717 +aVI told my primary teacher I hadn't done my homework as my mother was in a car accident. My teacher rang that night to see how my mother was - she was fine i.e. no accident ! +p55718 +aVI told my pesent boyfriend that I was an Australian as are my parents. As the relationship developed I found it harder and harder to confess and became sure it would end our relationship. He eventually found out when told in front of me by my mother. +p55719 +aVWinning a race that I had been training for, for many weeks. (Running Race). +p55720 +aVWhen I was very young and we moved as a family to Auckland from Wellington, this meant new school and friends (etc.). +p55721 +aVWhen someone ignores what I am saying or doesn't let me have my point of view and they monopolise a conversation. +p55722 +aVWhen I got into an argument with someone and was very abusive, but they were a close friend and I later regretted it. +p55723 +aVWhen a close relative got quite drunk. It was a relative that I had respected for a long time and looked up to as a child. +p55724 +aVWhen I had come home drunk the day after a party, I felt very ashamed in front of my parents. +p55725 +aVWhen I crashed by bike into an old lady crossing a road and knocked her down. +p55726 +aVListening to the opening bars of Tchaikovsdy's symphony No.2 fourth movement at my sister's wedding. +p55727 +aVAs a passenger in a vehicle travelling from the steep side of Arthur's Pass in the middle of a sleet-storm, icy roads, sheer chasms to one side, sheer face to the other. +p55728 +aVAs in sadness (A), relating to this slaghter of fur-seals. +p55729 +aVA) A documentary in which baby fur seals were being clubbed/spiked to death by Canadian seal-hunters. Brutally graphic. B) Description of a disfigured orphaned child in Hiroshima calling for her mother. +p55730 +aVThe repression of rioting and non-rioting ""Blacks"" in South Africa by the police of that ""Democracy"". +p55731 +aVBreaking an implicit promise. +p55732 +aVAt the age of 12 (or so) I stole from a Ranger's fruit tree an apple. (And eventually was compelled to confess - Dostoersky would like this). +p55733 +aVSeeing my sister after about 2 years of not seeing her. Only spent 1 hour or so before she was off overseas with her husband for 3 months. +p55734 +aVI imagined I heard footsteps up the hall while sleeping in bed one night by myself in the house. +p55735 +aVStopped at a Fast Food shop with friends and a few locals wanted to fight us for no apparent reason. They hit and picked on one of my friends. +p55736 +aVMy father recently having a heart attack - spending a few months in hospital. +p55737 +aVMy flatmate and close friend living and sleeping with another close friend of mine. +p55738 +aVSleeping with a girl on a Saturday night and then not contacting her in later days. +p55739 +aVStealing money from a milk token jar from a close friend of the family when visiting. +p55740 +aVTalking with someone I admire a lot. +p55741 +aVHeld under water by a large wave and thought I was drowning. +p55742 +aVCame back from surfing to find car broken into and gear and money stolen. +p55743 +aVCaused a family disturbance. +p55744 +aVFriends calling me fat - pear shaped in front of a nice girl. +p55745 +aVWhen I considered writing a load of crap for this emotion. +p55746 +aVBeating my brother up. +p55747 +aVI was ""best man"" at my brother's wedding a year ago. +p55748 +aVMugged while on holiday in the U.S.A. +p55749 +aVI am one of four directors of a company. We inherited land held by our family - ours is the 5th generation. A ""democratic"" decision was made to stap-bank an area of mangroves. +p55750 +aVSocial situation - at the pub - a close friend of 2 years told the group around us of advances I had made. +p55751 +aVA drunk walked out in front of a car at night. Both lower legs were broken. His shoe was thrown about 50 yards after the accident. +p55752 +aVMy father died 4 years ago, 18 months after my mother died. I feld my sister was responsible for his death, in that she ""hadn't loved him"". I felt ashamed for myself, and for my family. +p55753 +aVMy grandmother wanted me to help her. I was driving a tractor pulling a dead branch off a tree. I told her she didn't respect me. +p55754 +aVHearing my girlfriend accept my offer of marriage. +p55755 +aVCanoeing across harbour in winds - 20 knots and rising seas. +p55756 +aVBrother continually interupting while I was talking on the telephone. +p55757 +aVHearing of the death of a friend who had been skiing. +p55758 +aVFlicking through a magazine showing pictures of homosexual men committing various acts. +p55759 +aVBeing caught by parents in a compromising situation with girlfriend. +p55760 +aVDescribing to mother how a hole in the wall had appeared while I was babysitting. +p55761 +aVWhen I found out I had passed all of my university exams. +p55762 +aVAlmost crashing into the back of a car while driving along the motorway on my motorcycle. +p55763 +aVWhen my girlfriend of two years told me it was all over. +p55764 +aVA person I really like left for overseas for a few months, I had hoped to go out with her soon. +p55765 +aVI deliberately avoided a person who I wanted to hurt, and who wanted to talk to me. +p55766 +aVI passed on some gossip that was untrue and cause two friends to have a fight who were already experiencing difficulties with each other. +p55767 +aVMissing lectures and avoiding university work for no reason when it had to be done. +p55768 +aVWhen I received my U.E. accredited as I was totally unexpecting it and I was so happy. +p55769 +aVI went to see a movie and I went with a friend, it was really frightening and it made me stop and think about the world around me and what it is really like out there. I was frightened all that night. +p55770 +aVWhen my flatmate put me down because she ""thought"" she was better than me, or she felt she was. +p55771 +aVWhen a very close friend of mine went into hospital for a major operation and I couldn't see her for a while as I was not a relative she had no relatives in N.Z. +p55772 +aVOne of my very good friends came to me for advice as her boyfriend had been hitting her and beating her quite harmfully. +p55773 +aVWhen I let my girlfriend use my essay to help her to write hers and the tutor found them alike. +p55774 +aVWhen I had to lie to my boyfriend so that he wouldn't suspect I'd bought him a xmas present as expensive as I had. +p55775 +aVI received an assignment back, and got an A+ grading. +p55776 +aVI was walking home one night (after getting a bus to my town) when I was confronted by a group of males (about 6), they would not let me pass - they made comments etc. - I crossed the road and hurried home. +p55777 +aVI lent a text-book to a person I did not know very well, they lost the text-book and gave me no compensation. +p55778 +aVAt the beginning of the year I moved to a new city - I felt sad as I had to leave many friends and family members behind. +p55779 +aVI read a newspaper article about dogs being stolen in order to use them for fighting purposes. +p55780 +aVI was amongst a group of people talking about how the Maori people were stirrers and causing trouble in our country. I felt shame to be a pakeha when other pakehas had such narrow conservative views. +p55781 +aVI took my father's car to church one Sunday (I told them that's where I was going ) I decided instead to go for a drive to the beach - on the way I got a puncture. +p55782 +aVGetting University Entrance accredited and arriving home from boarding school on accrediting leave. +p55783 +aVThinking that I had been seen smoking at school by a teacher - waiting to be summoned to the headmaster's office. +p55784 +aVWhen my mother rejected my boyfriend and made unfair judgements on him. +p55785 +aVAt my grandfather's funeral - My grandparents virtually raised me as my mother was a solo-parent and had to work. +p55786 +aVWatching a TV documentary on seal clubbing. +p55787 +aVI ate very fattening food in front of my boyfriend who would like me to lose weight. I am supposedly pursuing a modelling career but first I must lose weight. I had been trying to diet. +p55788 +aVI let my pet budgie loose to fly around my room one afternoon. A few hours afterwards I found he was still free, went in and out of my room leaving the door open. My cat got in and killed my budgie - this happened to 3 budgies. +p55789 +aVThe birth of my first child. +p55790 +aVA large german shepherd dog ran and barked at me (he didn't bite fortunately). +p55791 +aVMost recently when the chairman at the New Zeeland Rugby Union announced that the All Blacks' would accept the invitation of South Africa to play rugby in that country. +p55792 +aVWhen I was told a friend's baby had been born with only partial sight. This was her first child and she was not young (the mother that is). +p55793 +aVWhen I first saw the state of a cafeteria in the grounds of the university. Due to students own lack of concern for the environment in which they eat and drink. Rubbish and spilled tea and coffee left everywhere. +p55794 +aVWhen I as a Pakeha (white) new Zealander, was just as racially prejudiced as other people whom I had condemned. +p55795 +aVWhen my husband discovered I was having an affair with another man. +p55796 +aVI was biking with my boyfriend, the sun shining after a long period of bad beather, afterwards we spent the evening and night together. +p55797 +aVI was hitchhiking and was picked up by a stranger he drove into the woods and wanted to make love with me, I refused and escaped from the car. When walking in the wood and hearing the car I was afraid. +p55798 +aVIn a discussion the leader wanted to stop because she was of the opinion that we were not involved and she misjudged our reactions as negative. We however only posed several questions which she couldn't answer. +p55799 +aVWhen my grandmother died. She stayed with us until I had the age of 10. When she died I was 13 and I remember the moment after the funeral: I sat on the table and cried. +p55800 +aVWhen I heard about the disaster in Bophal (India). +p55801 +aVOnce in a public ladies room, I opened the door of a cubicle that was taken, although it was not locked. +p55802 +aVIn a playground I was playing at the seesaw with a little niece. I wanted to stop but nobody came to help me. When I got off, all alone the seesaw fell down with a big smash. My niece got hurt above her eye. Now there is a scar. +p55803 +aVWhen passing the final examinations for social worker. +p55804 +aVSleeping alone in a tent, while hearing several noises such as rustling etc, I am afraid that there are people who are up to no good. +p55805 +aVA man kept a seat taken by putting his coat on it after a while the chair was still empty, I asked him if I could use the chair, he didn't agree for the chair was for his coat. +p55806 +aVWhen the relationship with my girlfriend broke up. +p55807 +aVA piece of work was marked as bad by the teachers I and some fellow students didn't agree with their vague criticism. I felt myself taken in by the teachers and felt disgust. +p55808 +aVSome weeks ago I experienced a day that everything went wrong I broke several things I felt very ashamed for I am not a sloven. +p55809 +aVI had made an appointment with a girl to go to the movies, but actually I had no mind when we arrived at the cinema, it was a full house. I then went back and she went to the movie alone. +p55810 +aVA friend came to tell me that her father invited me to go on holiday with them in Benidorm otherwise I could not afford to go on holiday. +p55811 +aVAt the age of 12 years I always had to take care of my little brother and sister I never could sleep then. I always imagined creepy men sneaking into our house. +p55812 +aVThe landlord had selected a new lodger on her own, while we used to do that it was not what she had done, but how she did it that made me angry. +p55813 +aVIt was a complex situation concerning a relationship with a boyfriend, I had broken the relationship for some reasons. Meanwhile, as I felt it, I had most sorrow. +p55814 +aVI saw a terrible accident happen and I laughed a lot of the fright and because I was nervous. +p55815 +aVMy mother wants to talk very often about her life. I dislike this because she always talks negatively about the same people whatever I do it doesn't help. +p55816 +aVAt the moment when I heard the result of an examination and it proved that I succeeded the second year of my study. +p55817 +aVI have a fobic anxiety for elevators. This anxiety is worst at the moment when the doors have to open. I have it often in the elevator at our university. +p55818 +aVWhen someone accuses me without reason and is not willing to listen to me. +p55819 +aVMy boyfriend decided to make an end to our relationship. +p55820 +aVA person I know who tells lies and so pretending to be better than she is. +p55821 +aVWhen I am in an auditorium with people and I ask a silly question so that everyone starts to laugh. +p55822 +aVI moved to Nijmegen for my study. Soon after this my mother had to be admitted in hospital because of cardiac compliants. I knew that my moving was an important reason for this. +p55823 +aVI can't give one description here. I often feel joyful when I have done things good in relation to other people especially when my friend says he loves me and I also tell him that I love him. +p55824 +aVI was afraid when my first boyfriend threatened to make an end to our relationship because he didn't love me enough while I loved him very much. +p55825 +aVA good friend deceived me. Because of that little quarrel our relationship finished, mainly because she was not honest. I was very angry about that. +p55826 +aVI was very sad when my first boyfriend finished our relationship. +p55827 +aVI was once raped (one year ago) by a man who was a lot older than me and whom I just met. Maybe it wasn't rape but the man wanted more than I wanted to give him since there were other people in vicinity. +p55828 +aVI felt shame when I didn't study enough for my exams and as a result I failed. I then invented idle stories to talk it good for myself and the others. +p55829 +aVI felt guilty when I once went out with another boy and made love with him while I had a close boyfriend. +p55830 +aVWhen my boyfriend came back after being away for 10 days. +p55831 +aVWhen I was sitting in a car next to a man who was masturbating. +p55832 +aVWhen my mother told things to my sister, which I told my mother in confindence. +p55833 +aVTonight in bed when I realised how bad my relationship with my friend was. +p55834 +aVWhen I was in Eindhoven on an Exhibition of Hernan Nitsche, who made paintings with real blood. There were also photographs about the killing of cows. +p55835 +aVWhen I made an end on a relationship after three years. +p55836 +aVThat I didn't want my friend to leave on holiday for 10 days because I thought I would miss him. I was constantly trying to persuade him. +p55837 +aVWhen I was making music together with my friend. It sounded very good and we were very satisfied. +p55838 +aVWhen my cat ran under a car and came home wounded. He could hardly walk. I didn't dare to go to a veterinarian because I was afraid he would kill him. +p55839 +aVI had to unscrew something on my car. I didn't succeed after two afternoons of trying. A feeling of anger built up itself. +p55840 +aVLosing my girlfriend who made an end to our relationship. By this I lost an important source of support, certainty and joyful moments. I cried very intensly when that happened. +p55841 +aVA few days ago I saw two dandy girls of my age. I disliked their clothes and their way of doing. +p55842 +aVDuring carnaval I danced for a few minutes normally I don't dance because I am rigid in my moving around during a dance, I stopped very soon. +p55843 +aVI had a girlfriend which I used to call regularly. Then I didn't phone her for a while. At a certain moment I felt a little tension which became worse. +p55844 +aVAt an important moment in a volleyball game we made a point and by this we won a set from a much stronger competitor. +p55845 +aVWhen I went out with my dog in a forest late at night when we were on a camping. +p55846 +aVI had an appointment with someone at a certain time. The other person didn't appear. +p55847 +aVWhen I entered the operation theatre and underwent a difficult operation. +p55848 +aVWhen my friends left without waiting for me, after we had arranged to go out together. +p55849 +aVWhen they gave away my dog to other people without my knowledge. +p55850 +aVWhen I had to eat scraps from a dust-bin, because of a bet. +p55851 +aVAt the airport, eighty beer cans that I was carrying in a bag spread all around while I was going through the metal detector. +p55852 +aVWhen I took a car which was not mine, and suddenly it stopped working. +p55853 +aVWhen the Real Madrid team of basket ball qualified for the final of the Europe Cup at Athens. +p55854 +aVOn the scenic railway at the fairground. +p55855 +aVAt having an argument with a stranger, in the street. +p55856 +aV The same as in guilt. +p55857 +aVWhen I entered a toilet in a bar and it stank. +p55858 +aVThe day I finished my military service. +p55859 +aVWhen I was a child, one day, I was going home late at night and I did not notice an uncovered man hole and fell in it. I was in there for several minutes. +p55860 +aVOne day, when I was a child, my grandmother shut me up in a room. +p55861 +aVThe day I left my first girlfriend. +p55862 +aVOne day I was in the countryside with several friends, and we began to eat figs, after we were all full we noticed that all the figs were full of worms. +p55863 +aVWhen I got my fingers stuck in one of the side holes of the door, in the tube. +p55864 +aVI ran over my dog with a bicycle when I was carrying him tied to the handle bar. +p55865 +aVWhen I won the first prize in a cross country race. +p55866 +aVI found myself involved in a fight in which a person died and I had to intervene with some risk. +p55867 +aVAn argument among friends in which my opinions on the way to spend spare time were disapproved. +p55868 +aVI was forced to leave an unforgettable friend. +p55869 +aVI saw the gare of a prison. This gare and the building were in deplorable condition and were full of rubbish. +p55870 +aVA mishap suffered on misinterpreting a girl's proposition. +p55871 +aVI thought that I could have avoided the above situation (the one in fear) if I had concentrated more on my work, which I hate. +p55872 +aVWhen I passed the last exam, which I had doudts about. +p55873 +aVBefore I had a tooth pulled out. I was very upset and ill. +p55874 +aVWhen the Real Madrid football team lost against the inter in the U.E.F.A cup. +p55875 +aVWhen my dog died. I had reared it for nearly three years. It had been ill for several days and had not eaten anything. One morning I found it dead. +p55876 +aVOn a trip to Santander a child sitting beside me fell ill and started to vomit, seeing this made me feel very bad. +p55877 +aVI fell down in the bus when it braked suddenly and everybody started looking at me. +p55878 +aVWhen I finished a test type of exam and did not dare to answer any question, I doubted whether I would pass the exam or not. +p55879 +aVWhen I was back home after a long time, meeting beloved people and close friends. +p55880 +aVWhen I heard about the treatment of a friend in jail. Really inhuman. I never realised that such things also happen in the Netherlands. +p55881 +aVI cannot remember a situation in which I felt ashamed. I was eating with some people and a little boy I took care of. I warned him often not to knock down his glass of mild. When I took out his chair I knocked down my own glass. +p55882 +aVMy mother always took my side. That brought about quarrels with my father. I knew she didn't like that and I felt very sorry for that. +p55883 +aVWhen on holiday in Greece I called my best friend, she told me she passed the examinations and that she had been admitted to the study for speech therapy. +p55884 +aVTogether with a little brother I biked on a lonely road in the Polder. Then we were annoyed by a boy on a motorbike: he took over, stopped, took over, etc. Then we saw he had something in his hand, we turned until we came across a man, who accompanied us. +p55885 +aVWe lived with 3 persons in the loft of a house. It often occurred that other persons again and again climbed the stairs with much noise. When I was studying I couldn't concentrate and got angry. +p55886 +aVI partly colored my hair black. My mother didn't like it and reproached me to be a ""subversive element"". Later on she stated that this was due to my friends. As I see it, this all resulted from colouring my hair. +p55887 +aVI was shopping in Utrecht with friends, we also ate some chips and snacks in a snackbar, then we saw a shabby fellow. He took a cold half eaten croquette (a snack) from a rubbish bin and eat it. +p55888 +aVI had subscribed for this test. We were informed by our secretary where the test took place. We went over there and thought there was a course. So we went back again I felt ashamed that the secretary again should see me. +p55889 +aVI was out with a friend in a place where it was very, very busy. When we wanted to go I bumped a person, who dropped his glass beer I offered a new one but he didn't accept it. +p55890 +aVIt appeared that I gave correct answers to all questions during an examination of personality while I thought I performed very badly. Even now, I don't know how I managed it. +p55891 +aVMy father was very angry with me, and I locked me up in the shower. Then my father knocked his fist through the door, I was scared to death. +p55892 +aVMy sister borrowed some LP records for a party. She had left them in the car on curatao. Due to the heat they were crooked, so I couldn't play them again. +p55893 +aVWhen my grandmother died, her life was heavy and her last hours were terrible. +p55894 +aVWhen I watched TV and saw a performance of ""Prince"" (a popidol). Disgusting he'd better be a stallion. +p55895 +aVWe had arranged a beach party with 20 people. There my father got drunk I felt very ashamed. +p55896 +aVWhen I flew out to my mother and made rude remarks because I felt so tense (studied too hard for an examination). +p55897 +aVUnofficially I was informed about my results of the final examination of the secondary school. A teacher wrote them up for me. When I went outside, I started crying with joy. +p55898 +aVI am thinking about death, the eternal of it, the unknown, the sense of being here. Often, laying in bed in the dark and quiet, the fear makes me feel dizzy. +p55899 +aVIf they force me to eat something I don't like. For example, my parents always twaddle and whine, when I don't eat all the food. +p55900 +aVI had to leave Den Helder and all friends and acquaintences, after having spend two weeks there with my friends. +p55901 +aVBeing on view in a meat-factory. Pigs being cut open, pigs being suspended from nods, blood everywhere, decompsition. +p55902 +aVWhen I have suffered a terrible fit of eating, that frequently occurs. Then I eat everything, I act like a glutton I eat big amounts of food, sometimes even half a loaf. +p55903 +aVWhen my father (physically handicapped) asks me to do something and I raise several objections. Often I can fix it in few moments. +p55904 +aVWhen the parents of my girlfriend gave permission to spend our holiday together. +p55905 +aVWhen the relationship with my first girlfriend broke up and I realized it too late. +p55906 +aVSomeone who always took care for the key of the sportshall stayed away without letting us know. Next time he did as if nothing had happened. +p55907 +aVWhen my last relation broke up. +p55908 +aVWhen working in a chemical laundry, I saw rats and maggots in the washing. +p55909 +aVWhen I forgot the birthday of my best friend and I innocently came to visit her one week later. +p55910 +aVWhen I made love with a girl, which I don't really love. However I know that she loves me. +p55911 +aVWhen I passed the driving test (on the second try). +p55912 +aVI was walking in the wood at night with my boyfriend. Very romantic. Suddenly I heard a car driving very slowly with the lights out, it looked as if they were looking for something. +p55913 +aVI am a teacher in arts and crafts (boys from 15-16 years). for them it is obligatory and they dislike it. They tease me. When one of them cut up some material I flared up. +p55914 +aVMy sister was in coma for 3 months (due to a train accident). Now her brainfunctions are disturbed. She will never be able to walk and she can hardly talk. +p55915 +aVI lived together with my boyfriend. One night he stayed away and next day he told me that he had chat up with another girl. +p55916 +aVI talk too much, cannot keep things secret. I promised a friend not to tell something to anybody. Neverthless, I did, and she got informed about it. I felt very ashamed. +p55917 +aVMy parents appreciate very much me and my boyfriend coming and have dinner with them at Christmas. However we decided to visit his parents. My mother was rather disappointed. +p55918 +aVWhen I started a relation with a girl, with whom I have fallen in love already some time ago. +p55919 +aVOnce sitting in the cinema, I became very anxious (watching a ""cold"" film). I do not know the reason. +p55920 +aVI work for a journal. Once the lay-out came to nothing, due to thoughtlessness of some colleagues. +p55921 +aVMy mother was stuck by an apoplectic fit, was hemi-paralyzed and suffered an aphasia. +p55922 +aVI wrote a letter to my father to ventilate my bottled up feelings. Afterwards I thought it was too negative. +p55923 +aVI chatted up with a girl who I didn't love. She however was fallen in love with me. I felt responsible for her sorrow. +p55924 +aVI felt very happy when I heard I had passed the examination to move up to the second year course. +p55925 +aVOn a holiday in France I made a walk in the woods all alone and very relaxed. Then a motorbike took me over and I saw the man watching all the time. Suddenly the man stood behing me and I ran away fast. +p55926 +aVI invited two friends. We should go out together. Those two girls kept talking about boys, chatting up etc. I bacame sick of it. +p55927 +aVI felt very sad when my boyfriend wanted to break our relationship. Our relationship lasted two years, we shared everything and all this was finished. +p55928 +aVI broke an egg, with which there was something wrong, into a little cup. There was a thick white ""wad"" in it. I tried to take it out and throw it in the sink. +p55929 +aVWhen I was 10 years old I stained our bench with a fountain-pen, I tried to twin the cushions, but then there were colour nuances. Then my mother catched me, she saw it and became very angry. +p55930 +aVI spend the night with my boyfriend, while there was also a friend of his. We all lay on the floor to sleep. When my boyfriend was fallen asleep the other boy and I started petting. After 15 minutes I felt miserable and awoke my boyfriend to tell him that. +p55931 +aVI liked to see off my aunt (from Zaire) to the airport. That appeared to be impossible because I had to go to school. For long time I wasn't sure if I could accompany her. Two days before the departure they told me I was allowed to miss school. +p55932 +aVI went to the ballet lessons with a little friend in the dark. On a very quiet place a boy approached us from behind and asked at what time the lesson would be finished. I gave him an avoiding answer, he took me up and wanted to run away with me. +p55933 +aVI was sleeping nicely until in the middle of the night when I became awake because a friend called me for some (in my opinion) nonsens reason. +p55934 +aVMy boyfriend with whom I had a longlasting relationship, fell in love with another girl, then he asked me something which implied that he loved that girl more than he loved me. +p55935 +aVOn school, during a fancy fair, there was a stand of amnesty international. There I read (for the first time) a description of the tortures of a woman, what they did to her. +p55936 +aVA friend catched me while masturbating. I am not fully sure whether she saw it or not. +p55937 +aVWhen I was 4-5 years old my mother gave me some parts of a chocolate bar and ordered me to bring it to my father working outside. On my way I could not resist the temptation and ate it myself. +p55938 +aVWhen I had to undergo the final examination of secondary school, I lived together with a girlfriend. We both were afraid to fail, but it appeard that we both had passed. +p55939 +aVWhen I had left my home, my father, under false pretences, got me in his car and drove home where we were all alone. He was seethed with rage because I withrew from his authority. He hit me, kicked me and threatened me. +p55940 +aVWhen my father took away my cherised diaries to burn them (I was also very sad) ""Oh, how I hated him"". +p55941 +aVI felt very sad when I left home because I could not stand it any longer. I do not regret it, but I missed my little sister very much (and she missed me). These feelings wear off over time. +p55942 +aVA friend and a girlfriend went to Rome for 10 days with their class. When they were back home I heard people tell ""strange"" stories about my friend and that girlfriend. +p55943 +aVWhen my mother found a leaf of my diary where I had written about my mother's lack of education, especially her poor arithmetical insight. +p55944 +aVVery often I take care for my little sister and oversee her duties. Most of the time everything went fine, but sometimes she absolutely didn't want to obey; then I hit her (we frequently were hit by our father). +p55945 +aVPassing my driver's examination (after two failures). +p55946 +aVWhen I was six years old we were on holiday in France. There was very heavy weather then. +p55947 +aVA quarrel with my mother because I thought she said very unreasonable things about me, that hit me strongly. +p55948 +aVThe disease and subsequent death of a close acquaintance. Sadness was accompanied with feelings of powerlessness (I also experienced sadness in the situation described under guilt). +p55949 +aVWhen I take a look into a slaughter-house and when listening to stories about torturing people or animals. +p55950 +aVMaking bloopers: e.g. telling something negative about a certain person, while that person is standing besides you and hears everything. +p55951 +aVI wanted to finish a relationship after 3 months. Unfortunately my friend had a different opinion. I could not answer his feelings this made him unhappy, and me feel guilty. +p55952 +aVWhen a friend of mine had her period, while thinking she was pregnant. +p55953 +aVFear to come and live in Nijmegen. +p55954 +aVWhen the coach of our team degraded me to the second team. +p55955 +aVWhen a friend died. +p55956 +aVWhen I saw a documentary film about World War II (about Hitler and his adepts). +p55957 +aVWhen I embarrassed a friend by asking him aloud if a certain person was ""the source of gossip"" he told me about, while that person was also present. +p55958 +aVWhen I realised that I had rejected a boy, who was fallen in love with me, rather bluntly four times. +p55959 +aVSpending the nitht with close friends, after being away (out of Nijmegen) for a while. +p55960 +aVJust before I started my study I had to move, I was very afraid to be left alone and that I could not manage it. +p55961 +aVWhen anybody wants to make me feel guilty. For example: I should do something for my mother, but things didn't go as she hoped. Then she threatens: I'll do it myself. +p55962 +aVWhen a close friend took leave of me, because she went to Israel for one year. +p55963 +aVI wanted to take something from under my bed. While doing this I felt a dead bird laying under my bed. +p55964 +aVI stayed at home for a period because I felt depressive and I neglected my study when people adked me, I told them that I had freeterm and studied hard. I felt ashamed for my behavior and lies. +p55965 +aVAfter a quarrel with my mother in which matters were ""inflated"" enormously. +p55966 +aVA fellow player, quite unexpectedly, scores a goal, which means a draw. +p55967 +aVIn college, I started a discussion with the teacher referring to a question I posed. I felt very unsure and I was afraid to fail. +p55968 +aVWhile playing indoor-hockey, there always is an older man who frequently and intentionally plays the ball out of the field. In my opinion this is very childish, because we play for fun only. +p55969 +aVI was together with my family one night, a few days after my father had died, during that conversation I expressed my displeasure because nobody understands me. +p55970 +aVSalo, a movie film by Pasolini. People were misused and tortured for the fun of a few elder Italian authorities, during World War II. +p55971 +aVI was jerking me off in my bedroom, when suddenly, my mother came in. She looked at me and immediately left the room. +p55972 +aVMy girlfriend and I agreed to go to the cinema. However I completely forgot our appointment. I remembered it two hours too late when I went to visit her. +p55973 +aVWhen my boyfriend once again told me that he loved me after a period in which he felt very depressive. +p55974 +aVI was walking alone in the street late at night (2.30 am). It was very quiet. Then a man approached me and said ""Hello"". +p55975 +aVWhen, late at night, I discovered that they had stolen my bike. +p55976 +aVWhen a friend, after being free of drugs for half a year, started using them again. +p55977 +aVIn a disco, there was a dirty little chap who punched my bottom. +p55978 +aVWhen a friend who comes visiting me unexpectedly asks for coffee and I refuse to give him this. +p55979 +aVWatching a football game. This remindes me of the time when my father was still alive and when we watched football games on TV together. +p55980 +aVSeeing someone who has bleeding nose. +p55981 +aVAsking someone to give me back the money I once lend him because I needed it myself. +p55982 +aVWhen I tell someone no. In other words when I refuse to do something although I could have helped him. +p55983 +aVWhen I got a good grade for an exam in statistics. +p55984 +aVOne night at three o'clock I was followed by a cardriver, who tried to molest me. +p55985 +aVMy father promised me a bicycle for my birthday. Just before my birthday he forgot he promised this to me. +p55986 +aVA younger brother of a good friend of mine died (asthma). +p55987 +aVI read a book about torture. The book described exactly how the torturing was done. +p55988 +aVI made a joke about the rat of a boy. I compared his rat with a sausage. I told the boy he had a delicious sausage. +p55989 +aVAfter a courtship of three months I made an end to it. The boy was very sad about this. +p55990 +aVI had a very pleasant conversation with one of my friends. +p55991 +aVI had a dream about my fiancTe leaving me and making an end to our relation. +p55992 +aVMy bicycle was demolished. +p55993 +aVDuring the funeral of my grandmother, when I saw my mother and other family members crying. +p55994 +aVA fellow student who seemed very nice later on proved to be a slimy fellow towards a professor. +p55995 +aVMy father was very angry with another man in the presence of my friends. +p55996 +aVI once drank too much alcohol and became very ill. This was in the presence of my friends. +p55997 +aVThis week I was phoned by an old friend with whom I lost contact a few years ago. +p55998 +aVI was raped by a friend. +p55999 +aVLast year I had a friend visiting me for several days. The only thing he did was sleeping, drinking, taking pills and thinking only about himself. +p56000 +aVMy girlfriend does practice and therefore leaves me alone at night and in the weekend. In addition, she is very busy doing several things. So we don't see each other often. +p56001 +aVMy father suddenly fell ill. He stayed for 3 months in the hospital: the last month on intensive care of the Academic Hospital, then he died. +p56002 +aVBisshop Ter Schure intoduced himself on TV to the Dutch Nation. He spoke as if he was God himself, and didn't discuss the way he had achieved this position. +p56003 +aVAfter having failed my driving test. +p56004 +aVWhen I see that my mother forces my little brother (15 years) to work very hard for school. I don't agree that she constantly puts him to work, but I don't tell it to her, so nothing changes. +p56005 +aVI thought that someone was angry with me but, by hindsight, that didn't appear to be the case, he even liked me. +p56006 +aVOnce, late at night, I was biking home and overtook a man. He said to me ""Hello darling"" I was terrified and imagined the wildest scenes. +p56007 +aVMy parents thought that I didn't do my best to pass the final examination (secondary school). When I achieved a good grade they said nothing, but if I had had a bad grade they would have become very angry. +p56008 +aVWhen I caused much pain and sorrow to my boyfriend by finishing our relationship. +p56009 +aVWhen I read about or think about environmental pollution, the armor race, starvation, etc. Then one realizes that mankind is bad, most important is power and money, at the cost of nature and mankind. +p56010 +aVWhen I imitated a teacher behind his back - walking very silly. +p56011 +aVI told someone that I still had a relationship with a boy although it was finished already 3 months before. That person seriously discussed several things relating that issue. Then I felt very miserable because I had told lies. +p56012 +aVA meeting and a conversation with a woman (somewhat elder than me) who considers me as her child (she also has one child of her own). Last two years I lived with her (no relationship). +p56013 +aVAs a child I suffered of nightmares. Even since than, I have never been so anxious and fearful. +p56014 +aVWhen talking with my sister, she often ventilates prejudices, which my father also adheres. +p56015 +aVI was in a hopeless situation in a dirty place. No study, no work, only loneliness. +p56016 +aVRecently, I left my bag in the car of someone who picked me up while hitch-hiking. I spent some effort to find out where he lived (I succeeded). +p56017 +aVIn Biarritz (the South of France) I met some English students who, especially for me, went to Paris and gave me food, while I didn't have any more money. +p56018 +aVWhen I passed the driving test already on the first try, although I felt more and more uncertain as the day came near. +p56019 +aVWhen my father suffered with dizziness. He had to be hospitalized, because the physician didn't know what was wrong. Because his stools were black, I thought it could be cancer. +p56020 +aVWhen I arranged our holiday in Paris, and my girlfriend raised criticisms all the time. +p56021 +aVWhen it suddenly appeared that our dog was dangerously ill and probably would die. We had not expected this because he was always very healthy. Fortunately he survived because we, in turn, gave him medicines during the night. +p56022 +aVWhen a girl in my class (on the secondary school) appeased the teacher, resulting in getting a higher grade. This occurred often with her. +p56023 +aVWhen I arrived too late at a meeting of mentor (the night before the introduction of novices on the University start). +p56024 +aVWhen my father told me that I should help my mother more often, because she was so busy. And I realized that he was right. +p56025 +aVPassing an examination, although I felt sure I had failed. +p56026 +aVI lived in a student-house, where you shared the lavatory and shower with a fellow student. the shower cubicle formed the connection between both appartments. My neighbour very often was drunk and aggressive. One night, I was afraid that he would enter my room. +p56027 +aVI suffer from a disease of my muscles. Therefore, I am only able to attend lectures for half a day. So, sometimes I miss obligatory lectures. However, the teachers do not take into account my disease, and punish me with detention work, resulting in an overload. +p56028 +aVI suffer form a disease of my muscles. However, I cannot talk about it and my feelings, the consequence with my parents. They try to repress it. +p56029 +aVGrandfather lives in a home for the elderly. He always looks forward to visits. On his birthday (by coincidence it was on ""Mummy's day"") however, nobody went to see him. Is the own family more important than grandfather ? +p56030 +aVGoing out for dinner, or during one ice-cream and four spoons. +p56031 +aVI borrowed a piece of music of someone and I always forgot to give it back. That person wrote me a letter asking me to give it back. I did so and I told him an idle story why I kept it for so long. +p56032 +aVWhen armed robbers broke into our house at night. +p56033 +aVWhen a pick-pocket robbed me of my money (K20) while I was buying bathing soap. +p56034 +aVWhen I failed the grade seven examination. +p56035 +aVWhen my friend who was drunk insulted me in public for no reason at all. +p56036 +aVWhen I tried to steal a book from the bookshop and was caught. +p56037 +aVWhen I was caught with another man's wife. I had taken the opportuinty as this man was abroad but he returned that night. +p56038 +aVThe day I learnt that I had been admitted to the university. +p56039 +aVWhen I had gone for a boxing tournament which ended at 2 o'clock in the morning. I was alone on my way back, and I could hear the barking of the dogs, the nocturnal animals and the sound of my own footsteps. There had been a rumour circulating that there were ghosts in that area. +p56040 +aVIn 1983 a sadist provoked my sister in my presence. He tried to force my sister into accompanying him to his place, but my sister did not agree and so she was kicked and she fell down. There was a fight. +p56041 +aVWhen my father passed away in 1978. I was left alone with my mother who was very sick so I had to go and live with my aunt, who is very short tempered, till my mother was discharged from the hospital. +p56042 +aVWhen I learnt that my best friend had failed the exams. +p56043 +aVI broke my friend's badminton racket and she kept quiet about it. +p56044 +aVBoy, you have been admitted to the medicine school and your uncle is coming back fron Canada next week,"" my father told me and it was a happy moment. +p56045 +aVI was in form five at the boarding school and my friends and I had gone drinknig beer in the nearby village. And we were caught red handed there by a form master. +p56046 +aVWhen my mother quarrelled with my aunt over me. +p56047 +aVMy elder brother had been expelled from college and he was so frustated that he attempted suicide - he drank bottle fragments. I was very sad when I learnt this. +p56048 +aVI found out accidentaly that while my uncle was away in Canada, my aunt had been bedding a young man on a regular basis. +p56049 +aVIt was during a school holiday - I was found necking a girl in my room by my father. +p56050 +aVI was in grade seven and my class was planning a protest against a rude and immoral teacher. I sneaked out and told the headmaster about it and so the plan was foiled. +p56051 +aVI won the first prize at the science fair, the first of the kind at school and I was only in form II then. +p56052 +aVA close relative of mine died in a serious car accident. I was one of the first two people to see the corpse and I had to do it. Before going in to see it I was afraid as it was the first time that I was seeing a corpse. +p56053 +aVMy younger brother destroyed and gave away some of the books that I had intended to keep for as long as possible. +p56054 +aVWhen a close relative of mine passed away, it was the first time that someone so close to me had died. +p56055 +aVA person whom I thought to be honest took and spend the little money that I had and I had no way of getting any money in the few following months. +p56056 +aVWhile watching a religious film, I got very excited and made a number of comments which were reproached to me by an elderly person who respected me. +p56057 +aVI beat up a female friend after I heard the defamatory stories that she had been telling. I was later called to explain my behaviour. +p56058 +aVMy 21st birthday celebration, when I cut the cake and received the presents. +p56059 +aVBefore one of my final exams of the third year - natural sciences. +p56060 +aVWhen some seniors tried to scold and insult some juniors on account of what the juniors were supposed to have said at secondary school. +p56061 +aVWhen an uncle of mine, who was close to me, passed away after having had a stroke, before his first daughter could be named. +p56062 +aVWhen my sister's boyfriend accused her of having been sleeping around. +p56063 +aVWhen I could not hold my bladder while making a telephone call and ended up wetting myself. +p56064 +aVWhen I was made to feel responsible for the emotional state a friend of mine was in. +p56065 +aVMy fiancT left me for my best friend. +p56066 +aVPeople who discriminate other people disgust me. +p56067 +aVOn New Years eve I drank too much alcohol, so much that I had to vomit in the presence of other people. +p56068 +aVI have cut loose from my father a few years ago. I know he is very sad about this. +p56069 +aVA recurrent lovesickness. +p56070 +aVI was sexually assaulted one night by a stranger. +p56071 +aVMeddlesomeness of my mother about the way I live. She thinks I am to free in my behavior for instance when a boyfriend stays the night. +p56072 +aVThe dying of a close member of the family. +p56073 +aVSeeing maltreated, dead animals. +p56074 +aVA much older man took advantage of me during my childhood (four to eight years of age). +p56075 +aVWhen my friend needed my help very much and I, at that moment, made an end to our relationship. +p56076 +aVWhen I passed a very important exam. +p56077 +aVWhen a man rang the doorbell and wanted to enter the house with violence. I was alone at home that moment. +p56078 +aVA friend came to visit me late one night. He promised to stay only a quarter of an hour, but he stayed 5 hours !! He didn't leave and I was very angry. +p56079 +aVI had to terminate a training because I wasn't suited for it. I was very sad about this, because I very much wanted to finish that training. +p56080 +aVDuring my birthday party a friend drank too much alcohol. So much that he had to throw up. Worst of all was that he couldn't leave my friend alone and that he was molesting her. +p56081 +aVI tried to swindle a jeweller because my watch was broken and I wanted to have it repaired it was a pity but they detected it. +p56082 +aVSomeone had to do a lot of efforts to make something work. With my help he would have finished much sooner, but I wasn't in the mood to help him. +p56083 +aVI went to visit friends and it was very companionable. +p56084 +aVI wanted to get in contact with a girl I loved, but I was afraid she would refuse me. +p56085 +aVDuring military service a superior reproached me unjustly. This led to friction in a lot of situations. +p56086 +aVDisappointed love. The girl made an end to our relationship while I thought she was in love with me. +p56087 +aVDuring military service I heard the story of someone who tried to commit suicide and as a result of this got a week custody. +p56088 +aVI thought of myself as being clumsy when I made love for the first time with a girl. +p56089 +aVA friend of mine had a bicycle-accident because I pulled at his handlebar. +p56090 +aVSitting alone in a quiet room concentrating on things happening around me which pleases me. +p56091 +aVSitting alone in a quiet room, concetrating on things happening around you. Thoughts come into my mind which make me afraid. +p56092 +aVWhen a teacher tells a story which isn't true. It only reflects his way of interpreting reality. +p56093 +aVI have high expectations for my future but if I pursue the subject in this manner I will not attain this. +p56094 +aVI heard a broadcasting programme about parapsychology. The people in this programme used very difficult words which I couldn't understand. They acted exaggerated without showing any feeling. +p56095 +aVA girl asked me why I didn't dance. I told her I was ashamed to dance. I felt myself ashamed having to tell her this. +p56096 +aVI saved up money for a good purpose. As I also have to organise a party I am afraid there will rest only a little money for the good purpose I feel guilty about this. +p56097 +aVMy sister and brother in law returned from Sri Lanka where they adopted a child. I went to pick them up at the airport. +p56098 +aVDuring a football game I made an offence towards an acquaintance. Later on this acquaintance also tackeled me and the game became very rude. +p56099 +aVI work at a petrol station. When there is a foreigner who wants petrol my collegues treat him very impolite. +p56100 +aVAn uncle of mine who just retired, having worked hard all his life, got a cerebral hemorrhage. +p56101 +aVA student who lives in the same house where I live is an alcoholic. He tries to manipulate other people with his money when he has drunk too much. +p56102 +aVWhen I went to a disco with a friend I started behaving badly embarrassing him without reason. +p56103 +aVWhen I talked to another student about the notes she got last semester, not knowing that she got a lot of bad grades. +p56104 +aVWhen I got my drivers licence. +p56105 +aVWhen I stayed alone in a house in Great Brittain and there was a lot of rumour in the newspaper about a murderer still being free. +p56106 +aVThe stories about the way my grandmother treated my mother. +p56107 +aVWhen my mother was proved to suffer from a very serious disease. +p56108 +aVThe stories about my aunt who was beaten and humiliated by my uncle. +p56109 +aVI omitted to do a favor to a friend, while he was very much in need for help. +p56110 +aVWhen I had a little accident with my boss'car. +p56111 +aVEvery year during carnival I am very joyful I have an intense feeling of happiness then. +p56112 +aVThe only event I can remember is having a nightmare when I was very young (3 years old) I dreamt about a machine which was going to crush me. +p56113 +aVI am usually angry at myself. This happens often. For instace when I want to pet without falling in love and it soon proves that I have fallen in love with him. +p56114 +aVLosing a boyfriend for the second time to my friend. He fell in love with her. The same thing happened a few months earlier with another boyfriend. +p56115 +aVThere is a person whom I disgust. Evrey time I see her I get this terrible feeling I disgust her whole appearance. +p56116 +aVWhen I am angry at someone without a good reason. Later on it proves that he didn't do anything wrong. +p56117 +aVMy mother always evokes feelings of guilt in me. For instance when I miss the last bus I know she will be concerned for me and stay awake till I arrive. +p56118 +aVWhen I came again in contact with a girl I liked very much. And most important she also liked me. +p56119 +aVAfter a hard day at the university I also had to make dinner that evening. It failed because of a frying pan which broke. +p56120 +aVWhen my father had a cerebral hemorrhage. +p56121 +aVA story I heard recently about a baby dying after sexual abuse. +p56122 +aVDuring a party I overheard a conversation about china. When I wanted to give my opinion one of the people came out to be Chinese and his opinion was right of course. +p56123 +aVWhen I didn't bring my girlfriend home one night. Later she told me that a cardriver solicited her. +p56124 +aVWhen an old schoolfriend phoned me to arrange an appointment to talk about old memories. I hadn't seen him for 8 years. +p56125 +aVStanding in a crowed shop or in a closed room with too much people in it. This gives me a fearful experience. +p56126 +aVMy older brother who gives me unwanted advices about problems in my relationship with my girlfriend. +p56127 +aVMy girlfriend left the house in which we lived together a few months ago. This made me very sad. +p56128 +aVWhen my parents behave very ""witty"" towards me, they make insipid jokes about which they laugh. Or my mother who treats me like a little child. +p56129 +aVMaking an unexpected talk with a professor in the canteen. This made me shy. +p56130 +aVFlirting with other girls while I already had a very good relationship. When there are problems in my relationship, the flirting increases as does the feeling of guilt. +p56131 +aVOccurs frequently. A recent experience: when going out with many friends, nice music, after the examinations, I felt so happy I could have embraced everybody. +p56132 +aVI lived alone in a repulsive area in the city of Rotterdam. I was annoyed, heard a lot of Burglary and assaults. Especially in the evening and the night I frequently felt anxious. +p56133 +aVBeing treated unfairly and being hurt by someone I love. +p56134 +aVWhen I finished a relation after four years, leading to much sorrow for the other one and myself (""although it was the best solution""). +p56135 +aVEvery time I meet a certain person. We cannot get on well together, we dislike each other. +p56136 +aVWhen coming up for trial because of shop lifting. +p56137 +aVBeing catched when stealing. +p56138 +aVI fell over head and ears in love with someone who appeared to be in love with me. it made me so happy that I could hardly sleep and eat for one week. +p56139 +aVOne night I had to bike home all alone after a party. Then I found out that I was pursued by a man in a car. +p56140 +aVI had a quarrel with my father, because I was of the opinion that he decided in an authoritarian way which TV program we should watch. I became very angry and started throwing things through the room. +p56141 +aVMy boyfriend finished our relationship when I started studying psychology in Nijegen, because then we would not be able to meet frequently anymore. +p56142 +aVA friend had a quarrel with the mother of her boyfriend because she and her friend decided to go and live together. She needed money for removal, then she made a great effort to reconcile. +p56143 +aVI was catched when, as a little girl, I played tricks. I was very startled then and wet my pants. +p56144 +aVI was of the opinion that 12.00 pm was too early to be back at home after going out, so I stayed away longer, knowing that my mother would be worried. +p56145 +aVI was called and invited to have a talk about a job I wanted to have. +p56146 +aVOnce late at night (around midnight) a person asked me to give him a lift. He suddenly tried to attack me but I could escape. After this he followed me for a little while. +p56147 +aVThere was a lot of irritation between me and a person who lives in the same house where I live. Suddenly it became too much for me and I accused him of several things. +p56148 +aVThe end of a relationship (after 4 years) by doing this I hurt the other person very much. +p56149 +aVI saw a terrible accident in which the driver of a motor was thrown through the frontwindow of a car. His face was completely away. +p56150 +aVI am troubled by hair growing in my neck. I was troubled by this for a long time and was much ashamed when someone brought his/her hands close to my face. +p56151 +aVAgainst the will and without the approval of my parents I went for a few days to my boyfriend in Germany. +p56152 +aVWhen a friend of me came for an unexpected visit. +p56153 +aVWhen I thought the house was on fire at night. +p56154 +aVWhen I was at an official meeting I asked a question to a person. His response was not directed at me but at the chairman. +p56155 +aVWhen the mother of a good friend of mine died. +p56156 +aVA teacher was very blunt in his relation to a child so that the child was very upset when arriving at home. +p56157 +aVI was very angry at someone. +p56158 +aVThat I didn't take the time to make an appointment with someone. +p56159 +aVAfter I saw my family and good friends back after staying one year in a foreign country. +p56160 +aVWhen a good friend of mine behaved in a very cool manner to me for a very long time. +p56161 +aVI was in the library of medical psychology and walked into the wrong direction. A man who came out of a room threated me very denigrating and I became very angry in a resisting manner. +p56162 +aVA good friend of mine died. During the funeral I felt an intense feeling of sadness. +p56163 +aVWhen an uncle of mine who is very ill started to cough wich sounded very dirty. (He can't help it of course). +p56164 +aVAt Christmas night there was a good movie on television which I wanted to see for years. I was whining about it till someone told me it was very childish. Then I felt shame. +p56165 +aVA good friend of mine who is at the moment in a foreign country. I didn't write her for several months and now I feel guilty. +p56166 +aVWhen I go out with my friend with enough money and good sense to our favorite dancing. +p56167 +aVWhen going out I am threatened regularly by two punk-girls. +p56168 +aVA friend started to shout at me. He called me an old frump. +p56169 +aVMy relationship with a boyfriend was finished and I didn't succeed a years-course. +p56170 +aVMy father is someone I disgust. So when he comes close to me a feeling of disgust overwhelms me. When I stay a week-end at my parent's place I will remember it for long time. +p56171 +aVAfter a party in which I made love with a boy in public. Later on I heard that others were talking about me and called me a slut. +p56172 +aVWhen I got associated with a boy one year ago, I neglected my best friend. When the relation with this boy finished she behaved very easy-going towards me. I felt guilty then. +p56173 +aVWhen I made the winning goal during a very important football game. +p56174 +aVA terrible cloud-burst started when we were camping in a tent on a great bald field. +p56175 +aVSeeing for the first time pictures about the so called ""treatment"" of Jewish people in Nazi-Germany during World War II. +p56176 +aVThe death of my mother-in-law after a long sick-bed. at the moment of dying I was with her. +p56177 +aVI was looking at a one-man show on television. He told very disgusting things so that I started to be disgusted with it. (Later on it proved that this was his intention). +p56178 +aVI was drinking a glass of wine and eating something when there suddenly appeared pictures about the famine in some parts of Africa. +p56179 +aVWhen I don't go to my parents on Sunday and phone them to tell them that I have to study. The truth is that I listened to sports on the radio. +p56180 +aVWhen it appeared that I was not pregnant when I was several weeks overtime. +p56181 +aVThe same situation as with sadness. I was afraid about what my parents would further do to distroy my relationship. +p56182 +aVOnce again my parents distroyed a relationship. +p56183 +aVI had this feeling when my parents distroyed a relationship with a boy because they thought he was bad and irresponsible. +p56184 +aVAfter the accident which I described in SHAME. I came to myself and saw how terrible everything looked like. I disgusted myself and everything I saw. +p56185 +aVA sudden end to the relationship with my first girlfriend. +p56186 +aVI heard part of a conversation in which one talked very low about women. +p56187 +aVIn an important situation for me, my father behaved inadequately. +p56188 +aVWhen I took the car of someone without saying it to him. +p56189 +aVI felt joy when I heard that I was accepted for the Free University in Driebergen. +p56190 +aVWhen a good friend of me told me one evening that she didn't want to live anymore. +p56191 +aVI felt anger when at the end of a telephone call, a good friend told me that she would go to travel next year with another good friend. We couldn't talk this out. +p56192 +aVI was very sad when I had to leave persons with whom I had a very intense relationship I also had to leave the environment which was part of this. +p56193 +aVI felt disgust after watching a picture on television about torturing political prisoners in India (this happened in the India of Indira Ghandi). +p56194 +aVI made a very insulting remark against a person whom I care for very much. This event was caused by a third person who didn't like the person I insulted. +p56195 +aVI felt guilt towards my mother when I went to live on rooms in Nijmegen where I study. +p56196 +aVWhen my boyfriend and I went out for a dinner and subsequently went to his family. We had a very nice evening. +p56197 +aVWhen I walk through streets late at night. This is because I and my friends were attacked one night without any reason for it. +p56198 +aVWhen I got the feeling that I had to do all the housekeeping while my boyfriend didn't do anything. This happened in a period of exams when I had to study very hard. +p56199 +aVWhen my best friend got a boyfriend. Because of this a relationship of ten years was finished abruptely. +p56200 +aVI feel disgust when hearing or seeing other people being treated inhumanely. For example torturing in chili. +p56201 +aVIn my opinion guilt is a feeling which goes together with shame. Here then I refer to the situation of guilt. +p56202 +aVWhen I became angry at my boyfriend without any reason. I know he cannot bear me being angry at him and that he can't study anymore then. +p56203 +aVThe day I heard that I passed the high school exam. +p56204 +aVI was living in rooms in a very lonely, quiet neigbourhood. During the night it was very silent and this frightened me. The fact of being alone in that house frightened me. +p56205 +aVWe had to move to a very different city because the company where my father worked also moved to that place. It was very difficult for me to make new friends than. +p56206 +aVA very close friend of mine died. I read it in the newspaper. I didn't know what to do and thought about it the whole day. +p56207 +aVA girl who also hires a room in the house where I live always tries to make a quarrel with everyone available she disgusts me. +p56208 +aVA teacher spent a lot of time helping me without wanting to be paid for it. For the exam I didn't got a good grade and I felt ashamed. +p56209 +aVI knew I had to take an exam very soon but yet I couldn't start studying. I also knew it was very imprtant to succeed the exam this time. +p56210 +aVWhen Christmas holiday started, I felt very joyful when I finished my last exam. +p56211 +aVI was raped once when I went through a dark alley at the back of our house. The man pushed me in the bushes. I fought back and succeeded to escape. +p56212 +aVI was very angry at my father when he didn't give me as much money as my brother to use for studying. Once again my brother was better off then me. +p56213 +aVWhen my gradmother died. I felt very sad then ... The feeling started to be worse after a while. +p56214 +aVWhen I ate a rotten apple. +p56215 +aVWhen I didn't meet an appointment I had made. The person phoned me but I thought of something (I told I was ill) so that I didn't have to go. +p56216 +aVWhen I have to take exams I am very excited and have not much time for the housekeeping. Then my friend has to do everything. +p56217 +aVMy boyfriend was playing with my cat. He was playing games with her and telling nice things to her. +p56218 +aVWhen I slept for the first time all alone in the house where I live now. A man phoned me at 2.00 am. He wanted something from me. I was afraid. +p56219 +aVMy boyfriend told me that I had very high demands towards him. In my opinion this was wrong. +p56220 +aVI hadn't been at my parent's place for a long time. When I went to visit them I had high expectations, but when I was there it was very different from what I expected. +p56221 +aVI read a story in the newspaper about butchers treating their animals very badly. They disgusted me. +p56222 +aVI was eating in a very nice restaurant, when the servant asked whether I liked the food I told him that I liked it but that there was one thing which wasn't so good. The servant than worked very hard to make it good. +p56223 +aVA few weeks ago I thought about an exam I had to take soon. I remembered this just before I had to go to sleep. I felt guilt because at the beginning of the year I planned to succeed. +p56224 +aVDuring my high school time I succeeded to play a concert of Mozart on the piano when I gave my first performance I succeeded to play it very well. +p56225 +aVWhen a car ran into me. The moment that I felt on the street I thought ""This is my end, I am going to die"". +p56226 +aVWhen our cat was killed in a car-accident I was very angry at the driver of the car because he didn't take enough care. +p56227 +aVThere is a boy who I love very much. I asked him to have dinner with me, but he refused I don't know why he didn't go with me, but I felt very lonely. +p56228 +aVI saw a dog who was eating excrements. +p56229 +aVDuring my Highschool time I was chairman of the student's comitee. In this function I once had to make a speech to a large audience and I was very nervous. After three sentences I forgot my text. +p56230 +aVDuring a holiday in East-Germany I got aquainted with a boy who lived there. We started writing, but I only wrote once. I felt ashamed because I probably was one of his sparse contacts with western Europe. +p56231 +aVWhen I saw a good friend again after not having seen her for a long time. +p56232 +aVWhen I slipped on a glazed frost road and a car almost ran into me. +p56233 +aVWhen people without my permission pry in my belongings and take things out of it. +p56234 +aVWhen I noticed that my parents were not in such a prosperity as most people in my surroundings. +p56235 +aVSeeing a pornographic movie in which animals were used. +p56236 +aVWhen I went for the first time in my life to a nudist-beach. +p56237 +aVI was caught sneaking sweets. +p56238 +aVWhen I went to visit a friend in the hospital. She had to undergo an operation for rupture. I was glad to hear that the operation succeeded and that she was relieved of her pain. +p56239 +aVI had an appointment with a good friend. He came 3 hours later than we agreed upon. During the last hour of waiting I was afraid something might had happened, because usally he is in time. +p56240 +aVI worked together with another student on a computer-assignment. She didn't do her best and didn't prepare herself for it. She expected me to explain it to her. +p56241 +aVI had a quarrel with a good friend about the fact that I didn't pay her a visit when she expected me to come. Hereafter I was very sad because it became a real quarrel. +p56242 +aVI was hitch-hiking when a man stopped and gave me a lift to Nijmegen. During the ride he asked me whether I was in for fun. The man was fat and tatooed. +p56243 +aVI forgot something I agreed upon with a good friend. +p56244 +aVI became very angry with my friend because he didn't do shopping, while we agreed on him doing this. My being angry was proved to be without reason and I felt guilty about it. +p56245 +aVWhen I got the positive result of my examination to achieve the Bachelor Degree in Plychology. +p56246 +aVWhen I was 12 years old I frequently was pursued by others and got sound thrashes. +p56247 +aVMy girlfriend one day went out and promised to be back at 6.00 pm however she first arrived at 10.00 pm, without a message (we had to go out that evening). +p56248 +aVWhen my girlfriend decided to finish our relation. +p56249 +aVWhen once again I drank too much and felt very rotten the morning after. +p56250 +aVWhen I overslept for the second time on the day I had an examination. +p56251 +aVWhen having a relationship, I made love with another girl. +p56252 +aVWhen the girl with whom I am in love smiles at me. +p56253 +aVWhen biking and I felt very bad (problems with heart and respiration). +p56254 +aVWhen a discussion resulted in an insult, which in my opinion, was not justified. +p56255 +aVWhen I realized that it did not make much sense to start a relationship with a girl who was not very constructive to establish a firm relationship. +p56256 +aVWhen I had to finish those big amounts of homework in time. +p56257 +aVWhen I gave water to the plants of a friend. Then one plant fell over, and a little statue broke. I, of course, had to tell him everything. +p56258 +aVWhen I had broken a piece of glass of the refrigerator by putting a hot pan in it. +p56259 +aVOn my birthday when several good friends came to visit me. +p56260 +aVI went to the apartment of my boyfriend and saw some people before his door. I thought that something had happened. +p56261 +aVMy father called me (behind my mother's back) and told me that my mother disapproved my behavior in the weekend. However, he didn't tell me the details and left me with unanswered questions. +p56262 +aVI felt very lonely, was very dissatisfied with myself when I realised that I could feel very jealous of other women because of my boyfriend. +p56263 +aVA scene in a film in which one man repressed another one. By concidence, their position was reversed. The other man was repressed in an identical way as he did before. +p56264 +aVWhen I do not succeed in making myself clear to other people. When they do not understand what I say. +p56265 +aVAfter the death of a girl who I disliked. +p56266 +aVI felt joyful when my boyfriend met me at the station, while at first he had said that he would not do that. +p56267 +aVI was very startled when, at night at 2.00 am, a boy approached me and yelled ""I fuck you"", then however he stopped and laughed at me. +p56268 +aVWhen someone does not listen to me after having asked me to repeat what I said. This happened more than one time with the same person. +p56269 +aVI felt very sad when I heard that a friend had committed suicide. +p56270 +aVOne night I saw a man being knocked down by two other men. The victim was kicked against his head. +p56271 +aVWhen I made acquaintance with the parents of my boyfriend for the first time. They spoke Limburgian (a dutch dialect) and one of my first remarks was that I disliked Limburgian dialect. +p56272 +aVWhen I cancelled an appointment with an idle story. Afterwards it appeared that the person had looked forward to it and reserved time for it. +p56273 +aVFor a few days I felt very miserable, distressed and listless, with crying fits. When this was over I felt very happy, although there was no special reason. +p56274 +aVI was testing my new roller skates in the street, suddenly a dog ran barking in my direction, very threatening. I was very startled and terribly upset. +p56275 +aVOut on a weekend with a group of people, everybody felt irritated because at night the music didn't stop in time. And at breakfast my boyfriend ran away because we didn't agree with him. I felt angry. +p56276 +aVRecently I felt very sad without any reason. It lasted for a few days. There was nothing I liked in that period. +p56277 +aVSomeone told me a story of Amnesty International: a boy was killed and his head was put in the litter of his girlfriend. It looked as if she was pregnant, then she died. It is disgusting, I can hardly write it down. +p56278 +aVI cried for 3 hours because I felt very miserable. Then I called my boyfriend and he said lovely things to me. After this feeling disappeared I felt ashamed. +p56279 +aVYesterday my boyfriend and I wanted to play billiards. However there were boys playing (5 times). My boyfriend then is fed up and chagrined. In such case I think it is my fault. +p56280 +aVWhen my boyfriend and I experience something nice or when we have made a nice walk together. +p56281 +aVThe weather is very bad (fog and slipperiness) the newcast reports many traffic accidents and my boyfriend is driving home and still has 60 kilometers to go. +p56282 +aVSomeone told me that he would stay at my home for one night. Therefore I made big efforts to make everything ok (food). One day before he cancelled the appointment because he had to go to church with his parents. +p56283 +aVWe had to take our cat to the vet for mercy killing (an injection). +p56284 +aVWhen people are eating unsavoury (smacking, belching, speaking with food in their mouth, etc.). +p56285 +aVA girl in our class was nicknamed ""fatsy"". Later, I heard that she suffered from diabetes mellitus. +p56286 +aVI made an appointment to pick up someone. However I arrived too late and she had to wait a quarter of an hour. +p56287 +aVOne night I had a very good conversation with two friends. I then realized how worthy they were for me and how happy I was to have them as friends. +p56288 +aVIn the morning just before going to the dentist. +p56289 +aVWhen a very close friend with whom I have a very intimate and bodily relationship (he had a girlfriend) started to avoid me and didn't want to talk to me any more. +p56290 +aVWhen a good friend with whom I had an intimate relationship made clear that he didn't want to continue in the same way. He choose his girlfriend (also a friend of mine). +p56291 +aVWhen I made love with someone who I didn't really love. Sometimes I even considered him unlikable. +p56292 +aVI had a short lasting sexual relationship with someone I didn't love. +p56293 +aVWhen I realized that I avoided two good friends with whom I always shared toys and sorrows. I made up idle stories to avoid telling them what happened to me. +p56294 +aVMy boyfriend suffered form ill health for some months, this week the physician told him that he was restored to health. +p56295 +aVWhen going out in the weekend I have to bike 5 kilometers through lonely and dark polders, then I always have terrifying fantasies. +p56296 +aVI made an appointment with a friend to drink coffee togehter. However, for the third time in that week she arrived an hour too late. +p56297 +aVMy dear hamster (called Hannes) died at the age of 2 and 1/2 years. His shape forced me to mercy killing (an injection). +p56298 +aVI read a newspaper report that a little boy was forced to look while his sister was raped. +p56299 +aVWe had made an appointment to complete together a piece of work. It appeared that I was the only one who hadn't prepared anything. +p56300 +aVI call my mother at least once a week. However last week I completely forgot. This morning she called me, she thought I felt ill. +p56301 +aVAfter the funeral of an acquaintance I felt very depressed. That feeling turned into joy when I heard that I had achieved a good grade for an examination. +p56302 +aVI had to call someone and make an appointment for a conversation. I was very afraid to fail. +p56303 +aVWhen, after having cleaned up the kitchen, two hours later I saw that there was a big mess. It irritated me very much. +p56304 +aVOne night I was called and told that the father of a close friend died. When I visited my friend at home and when attending the funeral I felt very sad. +p56305 +aVI cannot remember exactly such a situation. But I know that once I went to a very dirty lavatory and that disgusted me. +p56306 +aVOnce by coincidence I clutched a stranger (in a rather intimate way), thinking it was my boyfriend. When by hindsight I feel ashamed when thinking about it. +p56307 +aVI once torn the inner tube of a bike, that was not mine. Then I saw it was a brand new one. I felt very guilty then. +p56308 +aVWhen I found out that the girl, with whom I was in love, loved me too. +p56309 +aVWhen my mother threatened me with thrushing me of the stairs, when I once more should make a comment. +p56310 +aVWhen being made look a fool by the teacher in front of the class during a turn. +p56311 +aVMy mother unjustly became very angry with me and sent me to my room while my father explained that the way she saw things was not correct. I had done things with the best intentions. +p56312 +aVMy mother was very angry with my little sister and told her to put her hands on the table in order to beat her hands up. She forced by means of her power. +p56313 +aVA friend came for dinner with me at home. His parents are ordinary people. My mother, however, used the very expensive porcelain dinner-service and the silver cutlery. I felt very ashamed. +p56314 +aVOnce after falling in love, I imagined that particular girl to be perfect and completely overshadowing my girlfriend. Afterwards I realized that this image was not objective. I felt guilty against both girls. +p56315 +aVOnce a week I work as a volunteer in a biologic garden. this work in the garden and the contact with other volunteers filled me with joy. They also gave me support after I failed passing my driver's test. +p56316 +aVMy friend and I planned to search for old documents and utensils in the cellar. It was very late at night when we arrived in the cellar. He indicated the place where the police (40 years ago) found two dead bodies. I got very scared when he told me this story. +p56317 +aVWhen someone made me a compliment after an examination just at the moment I needed it. It was amicable, hearty and sincere. +p56318 +aVWhen I went up the stairs in a high, dark house full of shadows, passed a door and had the feeling that someone or something was behind me, although I knew I was alone. +p56319 +aVA friend told me it would be better for me not to be on familiar terms with another friend, although, in my opinion he had no reason to say such things. He only said so hoping that I would search support from him (that, however, was not necessary). +p56320 +aVI had a good relationship with two friends. Once without reason, they clearly showed that they thought I was naive, dull and unable to take care for myself, while I expostulated that I could manage things. +p56321 +aVWhen I see that some people remain cold and egoistic with regard to close friends, even in situations that those friends need them. +p56322 +aVWhen I state things with great positiveness and try to convince others, and it appears that my statement is not right. +p56323 +aVA certain friend evokes positive feelings, when I am with him but negative feelings when he is not present. I feel the need to express those negative feelings. However, when I speak about him, I always think: Why do I like this, he does not deserve this, but still I do so. +p56324 +aVA few days ago, I hitch-hiked to Arnhems with a friend. Everything went well: they picked us up very quickly, the sun was shining, I was feeling free and, for the first time after long time, happy. I really had the feeling that I was living at full speed. +p56325 +aVMy grandmother several times has been struck by cerebral hemorrhages. Until now she recovered well each time, but there is always the threat to loose her. +p56326 +aVI had made an appointment with three friends. We had to go out together. When I arrived at the place, the other persons weren't there. I became very angry because I thought they were gone without me. That, however, didn't appear to be the case. +p56327 +aVI finished the relationship with my boyfriend, after having felt myself very unhappy for a long time. +p56328 +aVA few days after I had finished the relationship with my boyfriend, we had a quarrel. Then he hit me. At that moment I found him disgusting. +p56329 +aVI was taking a shower in a cubicle in France. Then I discovered that a few children were loking at me from the adjacent cubicle. +p56330 +aVI know that a certain person feels very lonely, and that she always looks forward to seeing me. However, often I am too busy to visit her, then I feel guilty. +p56331 +aVA close relative of mine underwent a difficult operation, and everything turned out fine. +p56332 +aVWhen I get into the tube or the train without paying for the ticket. +p56333 +aVA class-mate urged me to carry out a particular protest along with him, and when the time came this fellow drew back while I had to face the situation. +p56334 +aVWhen I failed the entrance exam to IMEC. +p56335 +aVWhen I saw someone eating live worms. +p56336 +aVWhen I was a child my parents caught me with a pornographic magazine. +p56337 +aV I can not remember anything in particular. What I can remember is feelings of having done or said something which then had negative consequences. +p56338 +aVWhen they told me that I had got a study grant. +p56339 +aVWhen I wore a grotesque figure hanging down my back. +p56340 +aVBecause I had not studied. +p56341 +aVWhen my father was saved from a severe work accident. +p56342 +aVWhen I was a child I hid under the sheets out of fear of darkness. +p56343 +aVWhen I first saw a person begging. +p56344 +aVWhen my basket ball team lost the qualification at a final. +p56345 +aVWhen I see rotten meat. +p56346 +aVWhen a person whom I do not want to see is continously present. +p56347 +aVWhen I failed an exam I thought I could pass easily. +p56348 +aVWhen I got to know that I had passed the university entrance exam. I thought that I had done one of the exams badly. +p56349 +aVWhen I was very young, one day, I was in the street with my father and brother. While my father was talking to some friends, I saw a dog and began to pat it. My father told me sharply to stop doing it because the dog had mange. Then my brother told me that I would die and I could not stop crying after this. +p56350 +aVWe hitch hiked our way back from a town rather drunk. We were dropped in another town which was unknown to us. I needed to urinate, so I did it on a wall which turned out to belong to the military headquarters. They arrested me and made me pay a fine of 500 pts. We had to go home on foot (6 km) since it was too late for anyone to give us a lift. +p56351 +aVI was to meet a girl in a discotheque. She was very pretty and I was very happy. But she did not turn up. Thank God, there were some other friends there and I was able to have a more or less good time. +p56352 +aVI had a class-mate who was rather stupid. I did not like him but I respected him. When he tried to talk to someone, they would not listen to him and I could not bear seeing this. +p56353 +aVI met a friend in a discotheque. he was with a girl and he told me that she was not his girlfriend. I, to say something, commented that she must be a viscious woman. He then told me that she was his girl. +p56354 +aVI went to a pub with a group of friends (not very close) and I was with one girl most of the time, while the other girls in the group wanted to be with me. They stopped talking to the girl I was with. +p56355 +aVThe day some friends of mine and I decided to go to Galicia on holiday. +p56356 +aVBefore an exam which I, finally did not take. +p56357 +aVAt home when they lost three pieces of my puzzle. +p56358 +aVWhen I had an argument with a friend. +p56359 +aVWhen I am dirty because I have not had a shower for a few days. +p56360 +aVOnce I did not have enough money to pay for a coffee. +p56361 +aVAfter an argument with a friend of mine. +p56362 +aVA friend of mine told me that I had passed the entrance exam to the university. +p56363 +aVBefore taking an exam. +p56364 +aVMy family told me to leave if I was not willing to accept the conditions they imposed on me. +p56365 +aVA friend of mine called me when I was not at home. I phoned her back to know what she wanted and she told me that she had dialled the wrong number. +p56366 +aVI had to change a baby's clothes for the first time. +p56367 +aVI fell outside the door of my house. +p56368 +aVMy younger sister was almost run over by a lorry. +p56369 +aVWhen my brother was born. +p56370 +aVWhen I almost fell down from some rocks because I had been acting foolishly and playing dangerously. +p56371 +aVOnce I saw some children hunting a cat to death. +p56372 +aVWhen I saw a scene on T.V where a castration was shown. +p56373 +aVOnce I answered my father rudely. +p56374 +aVWhen my brother ran away from home and I thought it was because of my continously scolding him. +p56375 +aVWhen I saw that I had passed the university entrance exam. It made me forget all my problems. +p56376 +aVWhen I was ten I got shut in the school with a friend. I had to jump out of a window and cross a beam 10 metres high. +p56377 +aVWhen I was told that a boy did not want to be my friend without any apparent reason. +p56378 +aVWhen I learnt that a boy I liked had been with a girl for three years. +p56379 +aVWhen a very dirty class-mate farted in my presence. There was a terrible smell. +p56380 +aVWhen I realized that I had a hole in my trousers after having gone for a walk. +p56381 +aVWhen I had an argument with my grandfather the day my younger brother was born. +p56382 +aVWhen I saw my 16 year old sister at home after having waited for her all night, not knowing where she was. +p56383 +aVWhile I was waiting for them to give me the marks of the most difficult subject this year. +p56384 +aVI had an argument with my mother because I criticized the rules she imposes at home, which are too rigid and arbitrary for me. +p56385 +aVWhen I learned that a friend of mine had not been speaking to her boyfriend for a week after an argument because of unfounded jealousy. +p56386 +aVOn seeing a scene of an accident in a magazine. +p56387 +aVA few days back I had to ask a professor a ridiculous question because I had lost at a game of cards and had to pay a forfeit. +p56388 +aVWhen I shouted at my mother when she was nervous and depressed. +p56389 +aVAfter several days delay in my girlfriend's menstration I was very glad to see that the pregnancy test was negative. +p56390 +aVWhen I saw a TV program on the North American military plan called ""The startwar"". +p56391 +aVI felt angry when I saw on T.V the last slaughter of negroes in South Africa. +p56392 +aVWhen I saw the pictures of the draught in Etiopia. +p56393 +aVWhenever I see an alcoholic. +p56394 +aVOn New Year's Eve, when I went to the house of my girlfriend's parents to meet them. +p56395 +aVWhen I failed an exam for which I knew that I had not studied hard enough. +p56396 +aVThe day the Real Madrid team of basket ball qualified for the final at Athens. +p56397 +aVThe last time I was face to face with with the monstrous dog which lives in my street. +p56398 +aVDuring a trivial (friendly) discussion, one of the participants made an intervention which made me feel uncomfortable. +p56399 +aVWhen I heard the last regulation of the socialist govrenment concerning pensions. +p56400 +aVWhen I got to know the details if the famine in East Africa. +p56401 +aVThe last time I had to phone the Registry, after having called them so many times in the last few days. +p56402 +aVDuring an argument with my brother, I behaved rather intransigently, even cruelly, wishing to morally hurt the ""person"" opposed to me. +p56403 +aVWhen I passed an important exam. +p56404 +aVIn a rather important exam, when they caught me red handed copying. +p56405 +aVWhen my father addressed me directly and maliciously, thus including me in the ""family war"". +p56406 +aVWhen my parents got divorced. +p56407 +aVWhen I was a child, one day while playing, I fell up to my waist in mud. +p56408 +aVWhen I was dismissed from a job after having been accused of theft. +p56409 +aVWhen I was with a girl who seemed to love me, while I was with her just to go to bed with her. +p56410 +aVWhen I passed an exam which I had failed last year. +p56411 +aVWhen I go out alone at night. +p56412 +aVA murder. +p56413 +aVWhen I failed two subjects last year. +p56414 +aVWhen I see people who have no sentiments. +p56415 +aVI think that I am rather shy and do not mix with people as I would have liked to, out of shyness. +p56416 +aVWhen I triffled with other people. +p56417 +aVWhen I was told that I could take a week off and go for a trip with my friends. +p56418 +aVEvery time I went home with my school report. +p56419 +aVDuring an argument between friends, one of them accused me of taking advantage of some other friends who usually come to the university in my car, saying that I ask them too much money for the petrol. +p56420 +aVWhen I learned that two of my friends had had a serious car accident. +p56421 +aVA young man was insulting and humiliating a drunken man. +p56422 +aVMy aunt phoned me to ask me why I had refused the her invitation to dinner at her home on the New Year's Eve. +p56423 +aVI was with a girl one night and then did not call her again, although she had asked me to do so. +p56424 +aVWhen I saw that I had passed an exam. It was the last chance and there was a lot at stake. +p56425 +aVOn a trip to Santander we wanted to stop at a curve because a friend was sick, and the car skidded of the gravel. +p56426 +aVMy cousins were playing at home and one of them broke a decorative object which was very precious to me. +p56427 +aVAll my friends arranged to go for an afternoon snack and they did not tell me. They told me that they did not have my phone number but I do not think that this was true. +p56428 +aVWhen I saw a film where a black was rapeing a girl while another one was filming it for a pornographic movie. +p56429 +aVI was swimming in the sea and a wave took the top part of my bikini away. +p56430 +aVI was looking after a child and she fell down because I was not paying her much attention. One side of her face got bruised. +p56431 +aVWhen I pass exams, or when a close friend of mine recovered from an illness,etc. +p56432 +aVFights that I see in the middle of the street, robberies, fear of darkness when going home. +p56433 +aVDuring a family discussion on my future and my prospects as a student, they accused me of not bothering about looking for a job to assume my financial situation. +p56434 +aV Depressions. +p56435 +aVSome people whom I do not like at all, and one of the reasons is their physical appearance. +p56436 +aVFor example, to feel bad because of one's attire, to be among people who do not belong to the same social class, to give a wrong answer in class, to be surprised in particular situations. +p56437 +aVSome of my friends had an argument. I had earlier phoned one of them and that may have influenced him to argue. +p56438 +aVWhen I met a very close friend of mine after one year of separation. +p56439 +aVThere was an earthquake for several minutes and I was on the eight floor. +p56440 +aVAn argument among several friends because of the irrational behavior of one of them who fell out with us for no reason and said that we were to blame. +p56441 +aVA class-mate died after being two months in coma, after a car accident. +p56442 +aVPictures of Nazi extermination camps on a T.V program. +p56443 +aVEquivocal situation when filling a security questionnaire on entering a government building with several people there. +p56444 +aVI left a boy with whom I was going around without giving him any explanations. +p56445 +aVWhen my sister was born. +p56446 +aVWhen they tried to rob me. +p56447 +aVWhen I failed an exam unfairly. +p56448 +aVWhen my grandmother died. +p56449 +aVWhen I see dead dogs on the road. +p56450 +aVWhen I went to see the doctor and had to take my clothes off so that he could examine me. +p56451 +aVWhen my parents quarelled over something I had done and which was wrong. +p56452 +aVWhen my little sister was born. +p56453 +aVWhen I was attending an authorized demonstrationand the police rushed brutally at the demonstrators, without any warning. +p56454 +aVWhen a professor of this faculty laughed at, and was suspicious of a composition written by a class-mate and me. +p56455 +aVThe death of a relative, friend, or someone I esteem. +p56456 +aVWhen I saw a very disagreable scene. +p56457 +aVWhen I had to represent my boss at a meeting. +p56458 +aVWhen I inadvertantly made some close friends and relatives feel bad. +p56459 +aVWhen I passed an exam. +p56460 +aVWhen they threatened me with a knife to take my money. +p56461 +aVWhen I failed an exam I thought I would pass. +p56462 +aVWhen my dog died. +p56463 +aVWhen I saw an accident where the man lost his head. +p56464 +aVWhen I tripped while getting on a bus. +p56465 +aVWhen I hurt a person's feelings. +p56466 +aVI had not seen my brother for five years as he was not in Spain. When he arrived at the airport, I felt great joy. +p56467 +aVWhen two drug addicts tried to take away my money. +p56468 +aVWhen I saw my brother being attacked and I could not do anything. +p56469 +aVWhen a class-mate died. +p56470 +aVWhen a person saw that I was accused of something I had not done and did not do anything to defend me. +p56471 +aVWhen inadvertantly I found myself in the ladies room. +p56472 +aVWhen I broke something and a friend of mine was blamed. +p56473 +aVI got my driving licence after they had frightened me with it's difficulty. +p56474 +aVWhen I had to walk over three kms through a field which had wild bulls, because my car had broken down. +p56475 +aVWhen I saw a man hitting a child of 2 years without any consideration, simply because the child had been leaning against a window. +p56476 +aVA friend of mine who was driving a car ahead of me died in a car accident. +p56477 +aVWhen I had to dissect a live mouse at school. +p56478 +aVWhen I was a child I had to recite a poem in a show at the end of the term. +p56479 +aVWhen I saw a program on Ethiopia on T.V, a fews hours earlier I had thrown away some clothes and food. +p56480 +aVWhen I saw that the mark I had obtained in an exam was a good one. +p56481 +aVWe were in the country and I walked away from the others one night. Suddenly something moved sharply in front of me and I was not able to see what it was. +p56482 +aVWhen I was young, I became very angry as I was not allowed to stay up all night for the fair in my town. +p56483 +aVWhen summer is over and I have to leave the town where I spend my holidays. +p56484 +aVWhen I saw several people washing their car with water from a drain. +p56485 +aVWhen I inadvertantly entered the ladies room and met some girls on my way out. +p56486 +aVI was entrusted with an object and while using it I handled it carelessly and it broke. +p56487 +aVWhen I learned, after the ecography, that my mother was expecting a baby girl. That was what I wanted. +p56488 +aVOne night, walking along a park, I began to think that some roughnecks would appear suddenly with knives and things like that. +p56489 +aVI had an exam and I had it well prepared. I did the first part very well but did not know the second part. +p56490 +aVWhen my parents did not let me go on a study tour. +p56491 +aVOne day I was going through the street door of my house, when a man asked me for a doctor. He then showed me his genitals and asked me to cure him myself. +p56492 +aVEach time the professor asks me a question in class. +p56493 +aVI had an argument with my boyfriend. It was my fault but my pride would not let me admit it. +p56494 +aVAn invitation to spend 5 days at the seaside with all expenses paid. +p56495 +aVA film on zombies. +p56496 +aVWhen males in my family try to assign house duties exclusively with referance to sex. +p56497 +aVI had a quarrell with my boyfriend and decided to finish with him and and my Easter holidays. +p56498 +aVWhen after a storm in the country, I left my shelter and saw a big, fat, slimy green toad by my side. +p56499 +aVWhen a friend from whom I preferred to hide my private life discovered that I had relations with a man. +p56500 +aVWhen my brother had to spend all evening repairing a gear-lever that I had broken. +p56501 +aVWhen I passed the university entrance exam. +p56502 +aVWhen I was walking down the street, some boys showed me a knife and stole all my money. +p56503 +aVWhen they threw my holder down on the floor, with all my notes for an exam inside it and they got all mixed up. +p56504 +aVWhen my mother was operated. +p56505 +aVWhen I see pornographic films. +p56506 +aVOne day I got on the bus without any money or season ticket and the driver threw me out. +p56507 +aVWhen a friend of mine was beaten for what was my fault. +p56508 +aVMy father had an operation which lasted for hours. We were all very worried but it was successful. +p56509 +aVI was walking along a subway when I saw a group of louts. I was rather afraid because I was alone. +p56510 +aVAn old woman was violently thrown down the stairs of the tube by a group of louts. +p56511 +aVA child, 9 years old, died in a stupid way. He fell from a place which was 1 metre high. +p56512 +aVOn the road there was a dead animal with its entrails showing and its skull crushed. +p56513 +aVWe were discussing a subject ( I knew very little about it) and I was holding my ground. They showed me that I was wrong. +p56514 +aVI could have passed the last exam of the public competition, but I failed as I had not studied. +p56515 +aVI was studying in the library and a class-mate told me that she had obtained a grant to work in the library. +p56516 +aVBefore knowing my marks I was not sure that I wanted to go to that class. +p56517 +aVI learned that a class-mate had given a list, of peolpe who help each other in exams, to the professor. +p56518 +aVI phoned two friends and was not able to arrange a meeting with either of them, so I had to change my plans. +p56519 +aVI was in the cafeteria at the university and a class-mate told me that a friend of hers had had all her teeth taken out because of an infection caused by her eating a rat's nail in her hamburger. +p56520 +aVI had to meet a girlfriend to go out for a drink and she arrived with her aunt, to whom I was introduced. Then the aunt left. +p56521 +aVOne night, after having decided to finish our relationship, I took my girlfriend home. While driving back home, I felt that I had not handled the whole thing very well. +p56522 +aVThe begining of my relations with my current girlfriend. +p56523 +aVWhen I am alone at night after having read horror stories, and then I heard unexplainable noises. +p56524 +aVA typical family argument. +p56525 +aVThe disqualification of two of my mates in the military service. +p56526 +aVThe sight of vomit on the street. +p56527 +aVWhen criticizing something about a person and then realizing that the person whom one is talking to is similar. +p56528 +aVNot to have studied enough when exams were near. +p56529 +aVWhen I pass an exam. +p56530 +aVContinous fear of a nuclear war. +p56531 +aVWhen you kill yourself with work and see the number of slakers wandering around, doing nothing. +p56532 +aVWhen someone in my family died. +p56533 +aVTo loose friends because of them over-estimating themselves. +p56534 +aVWhen people next to me play the fool. +p56535 +aVTo force someone to do something that suits me. +p56536 +aVI thought that I was going to fail a subject and so I began to study for the final exam, then my friend told me that I had passed it. That meant that I could go home, as I do not study in my hometown. +p56537 +aVI was in Sierra Nevada, climbing a peak over 3,000 metres high, without any light and with many other problems. I was afraid for my life. +p56538 +aVI was living in a flat where things did not go very well for me. Finally, they threw me out and this prejudiced people I esteem a lot. +p56539 +aVWhen I read the diary of the girl with whom I was living, it was about another boy with whom she had been going around some time back. +p56540 +aVThe man who threw me out of the flat disgusted me. +p56541 +aVThe first time that I caressed a girl, I was about thirteen and she was eighteen. I noticed that it did not affect her at all. +p56542 +aVI was going around with a girl without loving her. Not only did I go around with her, but we did many more things. In the end I was not very sincere to her. +p56543 +aVI met a girlfriend again after not seeing her for several months. I saw her in a discotheque. We do not like discotheques but we went there because we knew we would meet there. +p56544 +aVI was walking in the countryside alone when I came across two dogs who began barking at me. I did not know whether they were tied up or loose, but I was afraid of them approaching me. +p56545 +aVI was angry when my sister began to talk nonsense and to laugh at the way I swept the room. My anger grew (I tried to control myself). After telling her to leave me alone, I vented my anger on her as she did not obey me. +p56546 +aVMy mother was working with a knife and we were all laughing heartily. She was not able to control the knife and stuck it deep into her hand. +p56547 +aVI read a book whose plot and expressions were obscene and in very bad taste. +p56548 +aVMy mother had just been teaching me how to crochet, which is thought highly improper for a boy in a town. Just when we finished, a neighbour walked in. +p56549 +aVIt was about midnight and I wanted to go to the countryside (I was in town) to watch the stars in the sky. My mother did not like this, in spite of it I went out for a while. My mother got angry. +p56550 +aVA friend of mine suggested that I become a film extra. The idea seemed very funny to me and my reaction seemed rather outlandish to the others. +p56551 +aVOne day I went to the cinema to see a film in which I was interested. On arriving there I saw a long queue (which I had not expected) and went back home without seeing the film. +p56552 +aVWhen I miss the train and I am late, and I have to wait half an hour for the next one. +p56553 +aVWhen I knew I had to go out with my mother on some errands. +p56554 +aVI saw in an ice-cream kiosque a cockroach walking through a cornet. +p56555 +aVOne day in class, the professor asked me a question concerning something he had been explaining. He was very close to me (beside me) and I had no idea what to answer. +p56556 +aVOnce I had some homework to do and I did not do it. +p56557 +aVWhen they phoned me from Great-Britain to tell me that I could go there, if I wished, in Summer. +p56558 +aVWhen I was operated on the knee and had to go through rehabilitation. +p56559 +aVIn a very important basket-ball match where a lot was at stake, I played very badly. +p56560 +aVWhen a friend of mine told me that he was going to commit suicide. +p56561 +aVA TV program on whale-hunting. +p56562 +aVOnce when I said bad things concerning a friend. +p56563 +aVFamily discord and uneasiness due to something I did not communicate on time. +p56564 +aVWhen I passed my driving test, as it was the fifth time that I had taken this test. +p56565 +aVWhen my mother was robbed in a shop. +p56566 +aVI was given an exam which I thought did not measure at all my ability or my knowledge of the subject. +p56567 +aVWhen I saw the film ""Johnny got his gun"" which deals with the consequences of the Vietnam war. +p56568 +aVSome friends and I were having lunch. Someone said something funny and one of the guys started laughing and spat his food in a girl's face. +p56569 +aVI was alone in the bus when I tripped and fell, and dropped all my papers. +p56570 +aVAs I was not paying attention, my little brother fell off the table. +p56571 +aVWhen I passed the university entrance exam. +p56572 +aVOne night, while I was sleeping, I woke up suddenly with the sensation that there was someone in my room. +p56573 +aVWhen my brother was held up and robbed. +p56574 +aVWhen they told me that my grandfather was rather ill. +p56575 +aVWhen I see someone vomitting. +p56576 +aVWhen I fell head on in a fountain. +p56577 +aVI had to undergo an operation in Summer and so my family had to stay at home during the holidays. I felt guilty, above all because of my brothers. +p56578 +aVI came across a friend with whom I had lost touch for a long time. +p56579 +aVI had decided to propose to the man I liked to make a trip together. One day, during breakfast I told him my idea. I was afraid of his not accepting it and that the idea would end up as a failure. +p56580 +aVA person I trusted a lot gave me many false explanations to justify a wrong action. +p56581 +aVI was having breakfast with a classmate and suddenly I began to cry as I thought of a friend of mine whom I had not seen for a long time. +p56582 +aVDuring lunch with some classmates, a priest was also there. He was eating desperately as if someone was going to take his plate away. He did it with gluttony. He wiped his hands on his suit several times and it was full of crumbs. +p56583 +aVWhen a professor caught me absent-minded and not paying attention to what he was saying. +p56584 +aVOne day, I was alone on duty when a patient choked while eating. I ran to her and tried to make her breath, but it was too late. +p56585 +aVAt a party, on New Year's Eve, I met on old friend whom I had not seen for some time +p56586 +aVOnce I failed seven subjects at school and I was terrified to give my report card to my father. I left it on the table and went to bed very early in order to avoid him seeing me. +p56587 +aVWhen, after drinking a glass of water, I found a cockroach walking out of the glass. +p56588 +aVI have a very close friend who lives in another city and we have been writing to each other for a long time. The last time I went to her city, just to see her, I was disappointed to see how great the distance between us was. +p56589 +aVThey asked me to throw the rubbish into a dustbin which had some awful liquid accumulated at the bottom. +p56590 +aVThe girl with whom I was going around had been forbidden to be alone with me in the house. We paid no attention to this prohibition but one day her parents appeared and I jumped out of the window. They saw me. +p56591 +aVI was driving a friend's car, and I got close to the pavement to ask my way and I struck a parked car. +p56592 +aVEvery time, in the last few days, when my girlfriend told me that she loves me. +p56593 +aVI stayed alone in the dark at night in the mountain, waiting for my uncle. I remember that I took a big stone and it calmed me. +p56594 +aVWe were at school, in the room for audiovisual classes. We were watching a film, and just behind me two classmates were bothering me with their mocking and shoves. I reacted angrily (I suppose) by hitting one of them. +p56595 +aV During a summer holiday a French girl and I had becoe back home, I felt very sad. +p56596 +aVOnce I had to clean a lavatory which was obstructed. It was in a friend's country house and there was nobody there to help me. +p56597 +aVIn a Mathematics class, the professor asked me a question and I gave the wrong answer. +p56598 +aVWhen I lost my study grant without having attended any exam in the career I had started, and it was too late to cancel my registration. +p56599 +aVA party I went to last Christmas. +p56600 +aVWhen my mother had a nervous illness. +p56601 +aVDuring my last exam. +p56602 +aVWhen I had to come back from my village last Christmas. +p56603 +aVOne day I went to see a rather disagreeable film (X). +p56604 +aVOnce I had to visit a rather special person. +p56605 +aVOnce, I accidentally injured a boy in the eye and he almost lost it. +p56606 +aVWhen I knew the feelings of a beloved person. +p56607 +aVA fall during a climb, with almost with no previous experience. +p56608 +aVOn the occasion of assignment of tasks and responsibilities in which such an assignment, dispropotionately carried with it high responsibility and low ability of organisation and resolution. +p56609 +aVMoving to an unknown place, away from the familiar surroundings and into a situation of loneliness. +p56610 +aVWhen I had to sleep in a bed at a hostel, which was full of dirt. +p56611 +aVWhile shopping, a person close to us created an uncomfortable situation for those who were with her. +p56612 +aVIncomprehension and repression towards a child's behaviour, commonly not accepted, and making the child cry. +p56613 +aVIn a dark street at 4 o'clock in the night and there was complete silence. +p56614 +aVWhen they broke the artistic work of several weeks. Changes were made and it was broken without permission, they had no right to do this. +p56615 +aVWhen the train taking me to my military service left the station, on the platform remained relatives, projects and goodtimes. I had a hard year ahead. +p56616 +aVA situation of overt unfairness, manipulation of people and its consequences. +p56617 +aVA children's film in which I played a clown, with spotlights, cameras and the director who demanded jumps and guffaws. +p56618 +aVWhen a close classmate failed a year. +p56619 +aVI was talking to a friend and he said something which was very funny. +p56620 +aVWhen I was young I saw a horror film. Then when I went to sleep, the film came back too my mind and the characters frighteneed my imagination. +p56621 +aVIn a confrontation with a person, he provoked me several times till I reacted in an angry way. Fortunately there were no disastrous consequences. +p56622 +aVI was watching a sad film and it affected me deeply. +p56623 +aVWhen I was reading a book. It had nothing to do with the book itself but with the disagreable smell of the pages of the book. +p56624 +aVIn class I had to say something aloud and people reacted by laughing. +p56625 +aVIn an exam I answered the questions rather carelessly and afterwards I thought that the exam would have been better had I answered more carefully. +p56626 +aVWhen I knew that there were, at last, no problems in making a journey that I had been wanting to make for a long time. +p56627 +aVIt was more that fear - anguish -that I felt before my last exam. +p56628 +aVWhen I had an argument with my best friend and I thought that I was right and she was not. +p56629 +aVWhen I realized that it was impossible for me to be as free as I had imagined and that I could not do anythong about it. +p56630 +aVThe first time I saw a pornographic film, all that in practice is so beautiful but on the screen appered as something mechanical, irrational, disgusting and dehumanizing. +p56631 +aVWhen I stated sharply something I was not very sure of and a few days later I was shown to be wrong. +p56632 +aVWhen I do or say something inappropriate which hurts people close to me. +p56633 +aVWhen a study tour got confirmed, I was happy all the time till the tour began. +p56634 +aVI was walking down a road and suddenly a few dogs appeared at a fence and started barking angrily. They were jumping and it seemed that they would come for me any time. +p56635 +aVWhen I knew that they would not give me a transfer from one university to another. I began to insult the educatioon authorities and the government, I ended up at the door. +p56636 +aVWe went to visit my mother at the residence. She was crying and said that she was about to die. I believed all her complaints and continously thought of the possibility of loosing her. +p56637 +aVMy dog had been run over and died near the house. We had to pick him up, cold and glassy eyed, to get rid of the corpse. +p56638 +aVA professor was going to read aloud in class a composition of mine in which I had criticized some political attitudes and also some class-mates. I was ashamed at having written that. +p56639 +aVIn an exam when I answered the questions with very little assurance due to insufficiet preparation. +p56640 +aVWhen I received my report card in C.O.U. I was afraid of obtaining low marks, but they were much higher than expected. +p56641 +aVI was at the cinema with my sister and her boyfriend. A man sitting beside me started to stroke my leg for a while, he left in the middle of the film. +p56642 +aVMy father began to say incoherant things concerning my brother's and my own behaviour towards him. His biased (authoritarian) and ridiculous point of view made us angry. +p56643 +aVI had failed some subjects in mathematics. +p56644 +aVI was at the table at a French friend's house. They served me a big dish with roast cauliflower and sauce. I had to eat it. +p56645 +aVThis morning I spent a lot of time on my toilet and missed the train to the university. My mother told me that I spent more time than a woman on my toilet. I felt a mixed emotion of shame and anger. +p56646 +aVI was alone at home when I broke a figure and then mended it. A few days later my mother noticed it and asked me about it, I told her that I had no idea. +p56647 +aVWhen I fell crazily in love with a beautiful girl and she returned my love. +p56648 +aVWhen I was caught by the police and was kept with a group of delinquents, which added to my fear of being shut up. I was afraid of the people near me and the future consequences. +p56649 +aVWhen I was the target of a great many insults and completely unfair accusations of a large group of people. +p56650 +aVWhen my best friend died, at the age of 16. +p56651 +aVWhen I entered a brothel and saw two sailors with a young prostitute who was not older than 18. +p56652 +aVWhen I was in a religious school my teacher showed me up in front of all my class-mates. They were very sarcastic and cruel. +p56653 +aVHaving suffered a not very pretty sight, I reacted by uttering some very cruel and sharp words. +p56654 +aVWhen I came across an old friend whom I had not seen for a very long time. +p56655 +aVI had an accident in which I hurt my eye. I was afraid of having injured it badly. +p56656 +aVWhen I was accused of something I had not done. +p56657 +aVA close friend died. +p56658 +aVI saw some images of a decapitation in a horror film. +p56659 +aVI slipped and fell in to a puddle and people started looking at me. +p56660 +aVI made another person cry for an unjustified cause. +p56661 +aVI received an unexpected letter from a friend I had met a short time before. He sent me a poem and wished me good luck. I felt very happy because I had great esteem for that person. +p56662 +aVI was walking with another person when a ""gang"" separted us and pushed me in to a house, hit me in the stomach and the face, then they left - leaving me bleeding. +p56663 +aVA certain person started to say dreadful things very calmly, I felt hurt and disgusted. +p56664 +aVA certain person whom I respect and esteem a lot pays me no attention. She keeps up appearances but shows almost no interest in me. +p56665 +aVIn a bus I fell sick and vomitted in a bag. The entire situation was disgusting in itself. +p56666 +aVA person (a male) told me that he liked me. He has a problem, he is a homosexual. +p56667 +aVI rejected a person whom I had always thought to be a friend. I told him so and he reacted angrily. I felt guilty at not having realized it before and at having hurt him. +p56668 +aVWhen I received some good news : I obtained an amount of money I needed to buy something I had been planning to buy. +p56669 +aVWhen my relatives and I were in a car going slowly on a frozen road. +p56670 +aVMy parents were having a typical family argument. I came in and saw the scene and became angry. +p56671 +aVI was going away, leaving a dear person behind. +p56672 +aVI visited a place in Morocco where they worked the leather. I saw the skins emerged in a liquid which ressembled putrification. +p56673 +aVAt a friend's party there were several allusions to my sexual adventures. +p56674 +aVI was in a cafe with another person when, suddenly, several close friends of my partner appeared. I did not know what to do and my partner felt uncomfortable. +p56675 +aVWhen I talk to my friends. +p56676 +aVWhen I am walking on the streets and see a gang of thugs. +p56677 +aVWhen people harrass me I feel oppressed by their behavior. +p56678 +aVWhen I am with a friend and we have to leave each other. +p56679 +aVWhen I saw a film in which the man suffered from an illness and his skin came peeling off. +p56680 +aVWhen I was in the toilet and someone came in. +p56681 +aV When I act thinking that I know everything and I then realize that there were things I had not thought about, thus hurting others. +p56682 +aV Any situation in everyday life has this emotional sense, in class, in the street, at home, at the table.......... +p56683 +aVOn a dark night I felt that there were several people near me and I did not know who they were. +p56684 +aVWhen I learned that several people had died in the street due to the cold weather. +p56685 +aVWhen I saw in the newspapers, on the T.V, and magazines the chaotic situation caused by the drought and hunger in Mauritania. +p56686 +aVThe physical appearance of a meal. +p56687 +aVI was with a group of people and everybody told me to do or say something. It was a confusing, strong and traumatic situation for me. +p56688 +aVIn a situation with my girlfriend I took a decision. Later when I thought about it, I realized that it was an erroneous decision. +p56689 +aVOne night, at a friend's place I realized that I had everything I most wished, around me. +p56690 +aVDuring a demonstration I climbed up the closed central door of a bus. When the bus stopped I had to go back to the same place, afraid that the police would see me. +p56691 +aVWhen I saw parents punishing their little child for something he had not done. In my opinion, even if he had done it he should not have been punished for it. +p56692 +aVA friend of mine was hurt as he thought that our relationship was not the same as before and something had gone wrong. +p56693 +aVWhen I was young, one day in the car we fell sick and ended up vomitting on each other. +p56694 +aVThe parents of a friend of mine surprised us and another couple sleeping in thier place. +p56695 +aVA friend of mine felt bad because of something I had done to something that belonged to him. +p56696 +aVWhen they told me that I had been admitted to the faculty of medicine. +p56697 +aVAlmost always when I go to fetch the results of an exam. +p56698 +aV No description. +p56699 +aVWhen I decided not to out any longer with a girl whom I liked quite a lot. This made me feel low for a some time. +p56700 +aVI saw a program on T.V where they had to saw a skull for an operation. +p56701 +aVI was watching T.V with my parents and some pornographic scenes came on, I felt uncomfortable and tried to distract my parents attention by talking to them. +p56702 +aVWhen I used an adjective for a person without knowing what it meant. When I got to know the meaning, I felt guilty as it was a clear and unfair insult. +p56703 +aVWhen I obtained good marks in a subject I had failed before. +p56704 +aVWhen a friend of mine told me a horror story. +p56705 +aVI was with my family and we found some abandoned puppies. I wanted to help them but everyone said no. We then left. +p56706 +aVAt my grandfather's death. +p56707 +aVSeeing a film in which there were several bloody crimes. +p56708 +aVAt a concert an old man arrived and began to danse, sing and do silly things. +p56709 +aVI had an argument with a friend of mine. She would not let me speak and then I began to shout at her. She got angry and left, I did not try to prevent her from leaving. +p56710 +aVWhen I was told that they had got tickets for me for a film marathon I wanted to see. +p56711 +aVWe were on the road in a car when a lorry bypassed us. We had to swerve and we almost got run over. +p56712 +aVI had applied for a job and they had assured me that the exams would take place a few months later. A week later I went to obtain some more information and they told me that the exams had already taken place. +p56713 +aVI received a letter from some friends, who do not live in Madrid, telling me that they would not come on holiday. I had arranged everythiing for them. +p56714 +aVI found a big, black spider near a bag of food. +p56715 +aVI was in a very small class and the professor said something about me that made everyone look at me at the same time. +p56716 +aVI had arranged to meet my friends at a certain place, and I was with other people. My friends did not arrive and the people who were with me began to get tired. My friends were one hour late. +p56717 +aVThe man I am going around with gave me a very special present. +p56718 +aVI thought that I would be scolded for a comment I had made, which I should not have made. +p56719 +aVMy sister came back home and reproached me for not having tidied up the house, although I had been working all morning and she had done nothing. +p56720 +aVAt my grandfather's funeral. I remembered that the thing he liked and respected most was earth, I thought that he had attained what he wanted and was not separated from it any longer. +p56721 +aVI had to wash my grandmother because she did not get to the bathroom on time. +p56722 +aVIn a very crowded shop I was distracted and missed my turn in the queue. A woman who was behind me began to shout at me asking me either to pay more attention or to leave. +p56723 +aVWhen I was very young, one day, I kicked my grandmother and caused her an injury which took a long time to heal. +p56724 +aVWhen I saw a friend of mine, whom I had not seen for a long time and I had lost his address and telephone number. +p56725 +aVI was in my village when a bull jumped over a fence and started chasing my friends and me. We were very frightened till we climbed up a tree. +p56726 +aVWhen I saw a car run over a child, out of carelessness. +p56727 +aVI failed a subject despite the fact that I had studied quite a lot for it. +p56728 +aVWhen I was walking in a field which had a lot of manure. +p56729 +aVI liked a boy and I would feel shy and then blush. The more I wanted to avoid it the more I blushed. +p56730 +aVI am not very affectionate and I feel guilty as I do not give as much affection as I receive. +p56731 +aVI was spending the week-end with some friends. We were waiting for another friend and we went to the meet him at the bus stop, a woman we met there told us that the coach had already left. I was afraid that I would not see my friend, but at last we found him. +p56732 +aVI was walking down a little village at night. There was nobody in the steet. A dog began to bark, I felt that it was following me. Then I began to run, the other dogs started barking too. At last I arrived home. +p56733 +aVMy parents did not let me go on holidays with my friends. +p56734 +aVI was told that a friend of mine was going to Mexico for good. +p56735 +aVFinding a hair in the soup. +p56736 +aVI was at the University dining room, alone, and at a table next to mine thre were several professors. One of them asked me to join them. I refused but she insisted. All the others started looking at me and I had to move to their table. +p56737 +aVI had promised to say goodbye to a person who was going on a trip, and I did not turn up. +p56738 +aVI was on holidays, and I was going to meet a friend whom I had not seen for six months. Again I felt very happy. +p56739 +aVWe were camping in the mountains, and a friend and I went for a walk. It was getting darker and darker and we were not sure of the right way back. +p56740 +aVI sent a book to a friend of mine. The book meant a lot to me and he lost it. +p56741 +aVTo say goodbye to dear friends after the holidays. +p56742 +aVEver since I have been a child, the sight of any kind of wound. +p56743 +aVAt the seaside, when a wave suddenly came and took off my bikini. +p56744 +aVOne night, I went out with some friends for dinner and I did not tell my parents that I would come back late. I thought of phoning but in the end I did not. When I arrived home, my parents were very worried. +p56745 +aVMy sister in law was about to have a child, and there were some problems. They had to do a Caesarean. After a while, everything was all right. +p56746 +aVWaiting for my marks in a difficult subject. +p56747 +aVI gave some personal information to a friend of mine, and he told it to some others who were implicated in the affair. +p56748 +aVThe holidays come to an end, and the next day we had to go back to University and to the exams. +p56749 +aVThere was a cat on the street. It had been run over and its head was open. We passed beside it. +p56750 +aVAt a meeting with over one hundred people, they decided who had to speak from the stand by drawing lots. +p56751 +aVI had a small argument with a relative and some other people got implicated. It resulted in a proper row. +p56752 +aVLast course, when I passed with good marks three subjects which I had previously failed. +p56753 +aVI was attacked by a man at a bus stop at night. +p56754 +aVMy mother told me that I could not go to the mountains. Despite my age, as long as I am in her house I must do what she says. +p56755 +aVWhen my nephew was taken to hospital with meningitis and we did not know what would happen. +p56756 +aVI was drinking coffee in a cafe and I found a piece of scrubber in my cup. +p56757 +aVWhen I went to my boyfriend's house for lunch and saw his parents, I felt that they were watching me all the time. +p56758 +aVAt school, I did not tell the teacher that it was me who had laughed, and she punished the entire class by making them stay behind for one hour. +p56759 +aVOne evening, I was with a group of friends having a talk. There was a very trustful and joyful atmosphere. +p56760 +aVWe were walking in the park at night. It was very dark and very late. We began to hear foot steps all around us, and we could not find our way out. +p56761 +aV One day I arrived home rather tired and found the house..... In addition I was asked many questions which I did not want to answer. +p56762 +aVI was selected to do a rest for a foreign ballet but I did not have the money to do it. +p56763 +aVIn a film there was a scene in which a rat was sliding on a bed, leaving a trace of blood behind, finally it entered the mouth of one of the actors. +p56764 +aVI was swimming in the river and I lost the top of my bikini. I did not notice it and came out of water. There was a disagreeable classmate watching the scene. +p56765 +aVAt a party, several comments were made about the personal situation of one of the people present. She was rather affected and uncomfortable. +p56766 +aVIt was Saturday, my duties were over for a few hours and I could at last be with the people I wanted to see. +p56767 +aVOne night, I was alone at home. My fear was caused by some strange noises which put my imagination to work. +p56768 +aVWhen I got to know about the reaction of a friend of mine in a certain situation. I had not expected him to react that way. +p56769 +aVI felt alone among a large number of people. I was sad to see that nobody cared about what was happening to me. +p56770 +aVI saw a sort of black worm being attacked by many ants. +p56771 +aVWhen I met a friend of mine after several months. +p56772 +aVWhen I noticed the negative changes in a friend's behaviour. +p56773 +aVI was going to my village, after having been rather oppressed in Madrid. +p56774 +aVI was watching a procession during the Holy week, and a penitent approached me. +p56775 +aVMy mother read a letter that a friend of mine had written to me telling me how she had got drunk the last time. +p56776 +aVI found a cockroach crushed between two folders in my bedroom, I called my mother. +p56777 +aVI ride my motorbike in my village and everyone stares at me as if I was a rare specimen. +p56778 +aVI was spending a few days at my aunt's place. One night I got home very late, I had told them I was going to a party but I went to another place. They were very worried. +p56779 +aVLast Summer I achieved someting that I had been wanting for a long time. +p56780 +aVI was in a camp and went out for a walk at night on my own. I lost my way and spent several hours looking for the camp. +p56781 +aVMy parents scolded me a lot for something I had not done. It was my sister who had done it. +p56782 +aVAt the hypocrisy of some of my friends. +p56783 +aVI greeted and embraced the wrong person thinking that it was my friend. +p56784 +aVDue to a misunderstanding on my part, two of my best friends quarelled. +p56785 +aVWhen my brother was born, everything went all right. It had been very likely that he would have a deficiency (my sister suffers from Down's Syndrome) and that my mother would be in danger. +p56786 +aVWhen we got lost in Florence and the coach did not turn up until midnight. I had no place to go to and there were strange reports at the police station. +p56787 +aVWhen an English teacher unfairly made me repeat a semester which I thought I had passed. I had to ask my parents for some more money to carry on studying. +p56788 +aVThe person whom I liked most left me for a friend of mine, after several months of mutual help and a profound knowledge of each other. +p56789 +aVIn a park near our home, a group of young people who were strangely dressed were seated in the middle of the street. They began to eat while carressing each other. +p56790 +aVI feel this emotion very often when I try to express my feelings in public, because other people do not understand my reactions and think that I am silly. +p56791 +aVA friend of mine said in a group that she felt lonely and withdrawn from everyone because of mental deficiency. +p56792 +aVWhen I passed the university entrance exam. I had thus finished with a difficult period of my life and I was about to begin one which I had desired a lot. +p56793 +aVWhen I was at home alone, I felt a super-natural force, dangerous for me and the people close to me. +p56794 +aVWhen my father made my mother go through really terrible situations, I felt furious, impotent, nervous, upset, ........ +p56795 +aVWhen a person whom I loved and admired a lot died. I felt empty, lonely, helpless, without support, not knowing what to do. +p56796 +aVWhen I came to know that my father and his parents were : self interested, dirty, negative, egoist, bad peolpe,...... +p56797 +aVI think that the only time I really felt shame was when I was very young and I had to defecate on the street. I was very worried in case someone should see me. +p56798 +aVWhen I was young I felt guilty because I thought that I had commited a grave sin. +p56799 +aVOn my birthday, when I was given my presents. +p56800 +aVWe were riding in a friend's car. He was driving very fast and suddenly a another car crossed the road in front of us. My friend had to turn the car rapidly. +p56801 +aVWhen I found one of my new pullovers wrinkled inside the wardrobe. My brother had done it. +p56802 +aVWhen I went to see the result of an exam and saw that I had failed. +p56803 +aVWhen I was getting up, I found a live cockroach in my bedroom. +p56804 +aVThe mother of a friend of mine passed by me and saw me sitting on a boy's lap. I tried to greet her but could not help blushing. +p56805 +aVA friend of mine had the sleeves of a leather coat stolen from his car. It was me who had left them there for everyone to see. +p56806 +aVThe final marks were to be given in the morning. I wanted to get there late because I was very afraid. When I arrived there, everybody was very happy and I had also passed. We had a wonderful time all day long. +p56807 +aVI went to visit a friend in hospital. He was going to be operated the next day. I was afraid that they would not let me in and I did not know what his reaction would be on seeing me. +p56808 +aVA friend of mine played a joke on another friend over the telephone. This friend, crying, called me and I got very angry and made the other person apologize. +p56809 +aVA friend of mine told me that my boyfriend had been with another girl this Summer. We had been going out together for four years and we had not done so for the last three months. I could not believe it. +p56810 +aV I was at a friend's place for lunch and she fell ill and vomited. +p56811 +aVI was dancing in a theatre. I was not sure whether some frieends of mine had come to see me. I was very scared of doing things wrong. +p56812 +aVClasses were over and I wanted to go home. A friend of mine asked me to wait for half an hour to take him back home. I said no. +p56813 +aVOn holiday, seeing the lanscape in Gerona. +p56814 +aVTravelling by coach on a rather narrow and wet road. +p56815 +aVThey wanted me to pay for a ticket twice because they said that the one I had was out of date. +p56816 +aVWhen I came back from my holidays. +p56817 +aVWhen I saw an insect going up my arm. +p56818 +aVWhen I entered a bar looking for a friend. +p56819 +aVArguing with my younger cousin. She is rather a nuisance but I felt sorry. +p56820 +aVWhen some friends of mine asked me to go camping with them for a fortnight. +p56821 +aVOnce, when I was very young, my mother left me alone in the house and came back very late. +p56822 +aVWhen my aunt told me angrily that I was a good-for-nothing and she was fed up with my behaviour. +p56823 +aVWhen my parents and sister went on a trip and I was separated from them for about three months. +p56824 +aVWhen a person I did not know hurt a friend of mine. +p56825 +aVWhen the literature teacher made me recite a poem in the middle of the class and I had to gesticulate. +p56826 +aVOnce, when I arrived home very late, my parents had an argument because of this; my mother wanted to stand up for me. +p56827 +aVI phoned a friend of mine to ask her for news about the marks in an exam. She told me that I had passed. +p56828 +aVI was spending my summer holidays in a village. My friend and I were coming back from a discotheque at night and we heard a noise from an alley. We were very scared and we got into my friend's house. A moment later, an unknown car picked up a person from this alley. +p56829 +aVMy mother and I had an argument over buying some clothes for me. She did not accept the fact that I did not like the same things as her, and we ended up shouting at each other. +p56830 +aVOne day, I was home and there was a phone call informing me that some of my relatives had died in an accident. +p56831 +aVWhen I saw a film in which there was a scene where women were cut to pieces. Above all, it was the blood and the confusion which impressed me most. +p56832 +aVI was walking to school and I passed by a red cross post where there were many soldiers. They began to pass remarks at me. +p56833 +aVA friend of mine trusted me to back her in a decision she had made. But when the moment came I did not agree with her opinion. +p56834 +aVI was told that I had passed the statistics exam. I had not expected this so I was very happy. +p56835 +aVWhen my brother hit his head and lost consciousness at the sports practice. For some time he could not remember what had happened but he recovered later. +p56836 +aVI get angry with my brothers and sisters when they do something that I do not like. They know this and still do it so as to tease me. +p56837 +aVWhen my grandfather died. +p56838 +aVWhen opened a box of biscuits and found worms inside. +p56839 +aVWhen I was young I was told to to the shop to buy a dozen eggs. I went and asked for one egg and the people in the shop laughed at me and so did my family when I told them what had happened. +p56840 +aVWhen I arrived home late at night. I know that my mother gets worried and this made me feel angry. +p56841 +aVWhen I spoke to my daughter and wished her luck for the examinations she was about to take. +p56842 +aVWhen I was told that my daughter, who is at a boarding school, was very ill and that they needed me there the same day. +p56843 +aVOne day in a clinic, the father of a child came in and assaulted a colleague for something that she had not done deliberately. +p56844 +aVWhen I was told that my uncle had passed away. +p56845 +aVThe transport to pick us up for lunch was always late and the driver made the same excuse every day. +p56846 +aVOne day when I came back home, I found my favourite dish broken. I blamed the servant for it, later I found out that it was not the servant but my daughter who had broken it. +p56847 +aVWhen I did not give back a text book to a friend in time. +p56848 +aVWhen a cousin of mine was discharged from the hospital after a long illness. I had thought that this illness would never end. +p56849 +aVWhen a man who had a knife grabbed me and threatened me with it, during my holidays in Monze. +p56850 +aVA certain friend tried to push me off a seat in a very violent way for no apparent reason. It may be that he was excited about something. +p56851 +aVWhen the neighbour of a friend of mine was stabbed to death by thieves in Kabwe. They stole his van. +p56852 +aVWhen we were young, a friend of mine tried to dissect a frog while we were playing near his home. +p56853 +aVThe time I shouted at most of my friends at a party. It was as if all my friends had done something wrong, or may be it was the influence of the beer. +p56854 +aVWhen I blamed my niece for misplacing my book, she denied having touched or seen it but I carried on insisting that it was her. +p56855 +aVAfter going through much shame, I became a Christian and something new happened in my heart. Joy that overflows was manifest in me. +p56856 +aVWhen I was about six years old, I mistook a cat for a leopard when it entered my room at night. +p56857 +aVWhen a person the same age as me insisted that I call him ""Mister"". I refused to succumb, but he persisted and I got angry as he had belittled me. +p56858 +aVWhen I lost my father on the 25th of September,1970. He died of a sore on the leg. +p56859 +aVWhen I failed the grade 7 twice and only passed it the third time. +p56860 +aVI was going around with a foreigner's wife and my entire family got to know about it, this was just when I had become a Christian. +p56861 +aVWhen they found out that I was absent from school, I had gone to the girl's secondary school. +p56862 +aVWhen I first passed a job interview. +p56863 +aVI was almost caught in the girls hostel by the security men, I would have been expelled from school had I been caught. +p56864 +aVWhen I was accused of having refused to do some hostel work while I was at school. Actually I had not been allocated any work. +p56865 +aVA friend of mine could not make it back to Unza after having failed the exams. +p56866 +aVI usually come back home early but this day I came home back late to find some visitors at my place. +p56867 +aVI got pass marks in the H.S.S compulsory courses while most people performed well. +p56868 +aVI destroyed my step-brother's bedsheets by mistake, they were the only ones he had. +p56869 +aVWhen I heard that I had made it to the second year at UNZA. +p56870 +aVWhen my father's home was to be broken into by thieves who had guns. +p56871 +aVWhen a friend tried to back bite me on false grounds. This made me wonder if he was a really a good friend. +p56872 +aVWhen my girlfriend's nephew passed away. +p56873 +aVWhen someone whom I trusted, disappointed me terribly. +p56874 +aVI was with my colleagues and we met an elderly man who was very drunk, as he approached us he started to undress. +p56875 +aVWhen I lied to my mum, who later came to know that what I had been teling her was false. +p56876 +aVWhen I hooked a girl in Kitwe. She was very beautiful for my standards, a rare bird of this kind accepted me as a boyfriend. +p56877 +aVWhen someone tried to bewitch me and my friends at night. +p56878 +aVWhen I was victimized for running away with a girl who was somebody else's wife and niece at the same time. I was very angry over this issue because I was told to pay him money after having been punished for it. +p56879 +aV1976, Soweto uprising in South Africa and the racist Gout's reaction to the students demands concerning the educational system. +p56880 +aVWhen I got grade ""C"" in M160 at the end of my first year at UNZA. I had expected a ""C+"" or a ""B"" as M160 is easy, going by my capacity in mathematics. +p56881 +aVWhen I was found urinating, behind a toilet instead of inside it, by my class mates and the teachers. I was told to pick up my own urine from the wet soil, I did it. +p56882 +aVWhen my uncle found me having sexual intercourse with a distant relative of mine in the sitting room, on the couch. I failed to stop and get up, I carried on. +p56883 +aVWhen I was accepted for further education, here at the university. +p56884 +aVWhen I was walking at night, I saw fire suspended in the air and it was split into several segments by something I could not see. I suspected that it was witch-craft. +p56885 +aVWhen I was accused by my brother of having stolen a 5 kwatcha note from my mother's bag. I was beaten up for this, the money was found later. +p56886 +aVWhen I received a message that my brother was seriously ill and was in hospital. +p56887 +aVWhen I was refused a transfer from my school to another, simply because it was far away from my house. +p56888 +aVWhen I was taking an exam in grade 5. The examinator found me with a note-book and accused me of copying, All the students laughed at me. +p56889 +aVWhen I was caught stealing mangoes in a certain compound. +p56890 +aVWhen I got first division in the exams before leaving school. +p56891 +aVWhen I went to town in a double dekker bus. The bus was about to fall on the way when the driver controlled it. It had almost fallen. +p56892 +aVWhen I was in form 3, my aunts lied to my daddy telling him that I had told them that I was pregnant. My daddy told my mother and she asked me if it was true. I was very angry with my aunts. +p56893 +aVWhen I received a letter telling me that my mother was very ill. +p56894 +aVWhen a drunkard, in town yelled at me saying that I was a prostitute. +p56895 +aVMy brother came to see me and found me with a boy friend. When my boyfriend greeted him, he did not answer and instead started shouting at me and scolding me in the prescence of my boyfriend. +p56896 +aVWhen I went to my room-mate's drawer to see if she had an iron which I could use, she came in. I felt guilty as she may have thought that I had been stealing. +p56897 +aVWhen I had my four children. +p56898 +aVWhen two of my children were critically ill with measles. +p56899 +aVWhen I got a low grade in an administration course. +p56900 +aVWhen I got divorced from my husband after ten years of marriage. +p56901 +aVWhen my mother betrayed me by obtaining money from my husband when we were separated - pending divorce. +p56902 +aVWhen I gave my boyfriend a brush-off. +p56903 +aVWhen I beat up my son for having beaten up his sister. +p56904 +aVThis happened when I went to check my first year results, I had thought that I would fail and I found that I had a clear pass in all my courses. +p56905 +aVWhen I woke up at night to find a fire spreading towards the bed -rooms. I was very frightened as I realized that I faced death. +p56906 +aVWhen a friend of mine was trying to make a fool out of me. +p56907 +aVI experienced this emotion when my friend committed suicide after we had spent the afternoon playing and discussing life and it's problems. +p56908 +aVWhen I heard of the assassination of the Indian prime-minister, Indira Gandhi. +p56909 +aVWhen I got drunk at a party and made a fool of myself by vomitting all over the place and insulting the people who were there with me. +p56910 +aVWhen I was caught sneaking back into the house at night after having gone to a disco without permission. +p56911 +aVWhen I was told that I had passed the exams. +p56912 +aVWhen a thief broke into my house at night. +p56913 +aVWhen my sister broke my china tea set. +p56914 +aVI felt very sad when my son died after a short illness. +p56915 +aVI met my best friend's husband with a prostitute. +p56916 +aVWhen I failed to answer a simple question. +p56917 +aVMy brother wanted money but I refused to give it to him, two days later he stole it from my father. +p56918 +aVWhen I learnt that I was selected for form I. +p56919 +aVWhen I was nearly beaten up by the brother of my girlfriend. +p56920 +aVWhen I heard that my girlfriend was talking behind my back and looking down on me. +p56921 +aVWhen a friend, who has been with me at school, failed to make it to UNZA. +p56922 +aVWhen my girlfriend told me that she was no longer interested in me. +p56923 +aVI choked on a cold drink in front of girls who were strangers. +p56924 +aVWhen I was caught with my girlfriend in the house at night. +p56925 +aVWhen I passed the grade 7 exam. +p56926 +aVWhen I was told by the doctor, after many months of coughing, that I had tuberculosis. +p56927 +aVWhen a cousin of mine took my bottle of T.B tablets, put water in it and threw it in the dust-bin. +p56928 +aVThis happened when one of my uncles died just whan I was planning to go and visit him during the next holidays. +p56929 +aVWhen I realized that my closest friend had said bad things about me when I was not around and had betrayed me by making friends with my boyfriend's other girl. +p56930 +aVWhen five of my friends at the secondary school found out the bad things that I had been saying about them. +p56931 +aVWhen my mother returned from a holiday, I told her a lie i.e my father had brought another woman home while she was away. +p56932 +aVThe time I qualified to enter secondary school. +p56933 +aVOne evening I saw the old guard-man I knew, change into something inhuman for about 5-10 seconds, this really frightened me. +p56934 +aVWhen I was mistakenly accused of being a thief when I accidently gave a fake coin at a counter. I realized this before I handed over the coin, but the man called me a thief and called a witness. +p56935 +aVThe day I woke up to find that a kitten I had wanted to keep had been eaten by the neighbour's dogs. It had been locked out by my wife who claimed that it had dirtied the sheets. +p56936 +aVThe day I was forced to use a public convenience place in town. It was so filthy that it really made me sick. +p56937 +aVMy mother caught me stealing some food when I was a young boy. +p56938 +aVWhen I gave in to what my wife wanted and locked the cat out, it was killed by the dogs. +p56939 +aVI felt joy when I came to know Christ. That is when I became a Christian. +p56940 +aVWhen I broke the window pane of my next door neighbour's house. +p56941 +aVWhen my brother did not send me the transport money to resume my studies in time at UNZA. +p56942 +aVWhen I heard that my nephew had passed away. +p56943 +aVWhen my father thought that I was an unrelaible son. +p56944 +aVWhen I stole a book in class and the teacher caught me, the rest of the class laughed at my attempt. +p56945 +aVWhen I insulted an elderly person for no reason. +p56946 +aVWhen my uncle gave me my first year's results. I opened the envelope and my eyes ran into two ""B+"" - in EC110 and M160, this meant that I had qualified for a major in economics. +p56947 +aVI turned the knob of my granny's two band radio and did not hear any broadcast, "" What ! Have I broken the knob ? How much does it cost ? What if the spare part is not available ? "" --I did not know how to tune a radio. +p56948 +aVI peeped into Maurine's bedroom and saw two people - Maurine anbd my step-dad. I thought, "" Why did she break her promises ? Why had she invited me ? Why do old men go for young girls ? +p56949 +aVWhen I missed the chance of becoming a graduate in mining engineering, after having prayed one week in the church I was not even selected. +p56950 +aVI stormed into the room, hoping to cool myself with some soft music from my three band radio cassette. There was only young Kaley there and he explained, "" Your aunt has sold it as she wanted to buy clothes. +p56951 +aVWhen a lady I was flirting with told all my class-mates that she was in second year while I was in first year, everyone laughed and started looking at me. +p56952 +aVMy cousin knocked on the door, looking for me to get her watch back. I had given it to my girlfriend, Lizzy, as a present. +p56953 +aVThis was when the girl I was in love with accepted my proposal and everything went smoothly, just as I had wanted it to. It was contrary to my previous feelings of uncertainty about her response. +p56954 +aVIt was when I dreamt that I had encountered Satan, he wanted to grab me and take me to his kingdom. He was very repulsive and I have never seen anything like that before. +p56955 +aVThis was when I found out that a cousin of mine had taken away my trousers without my consent. +p56956 +aVWhen I failed a test at my primary school. I was then in grade 7 and we were about to take the main exam. +p56957 +aVThis was when I saw, for the first time, a naked woman (prostitute) run away from a house after having been discovered by the guardian. +p56958 +aVThis was when I was discovered stealing a piece of bread at home, I was very hungry a few hours before supper. +p56959 +aVWhen I was afraid to tell my sports teacher at secondary school that I had not participated in the sports activities the previous day. +p56960 +aVI was in grade 7. We had an inter-house volley-ball competition. In Luapula I was the youngest member of the team and I scored the winning goal using my head. I jumped up with joy and fell down. +p56961 +aVI was escorting a relative on a bike, we passed by a dark road with bushas on each side. Half way down this road, suddenly, we saw a white dog appear from one side. Before we could do anything, it had vanished and moreover it did not seem to have any legs. +p56962 +aVThe comrade staying next doors insulted me for what he called the misuse of his iron. He called me stupid, self centered etc. I wanted to punch him but instead went for a walk to the mining school to cool off. +p56963 +aVA close relative was at odds with a very powerful firm. All his things had been taken, His dad had died a little before this event. He gathhered his children and vowed to give them a good life with a new start - the words were hollow, he bit back his tears .....I asked to be excused and then went and cried in the loo. +p56964 +aVA pig in the well from which we drink. +p56965 +aVMy girlfriend had started going around with another boy. Her cousin, also a friend of mine, asked her as to who she preferred. Both of us were present and she chose the other guy. +p56966 +aVI bumped my dad's car in a lamp post. He was not at home then, neither was he home when I left for the campus. I did not tell him about the accident and I will never tell him. +p56967 +aVI was at school whhen I received a letter from the dean of my school congratulating me for my performance at the previous year's exam. +p56968 +aVThis was at secondary school, a prefect framed up some case and took it to the deputy head-master. I was called by the head-master and he threatened to suspend me. +p56969 +aVWhen I travelled all the way to my former school to collect my certificate, only to be told that I owed them some money, I knew nothing about this. +p56970 +aVMy sister was in a hospital, later in the evening we received the information that she had died. +p56971 +aVWhen at school I thought that I was going to get the best results in mathematics, but it was someone else who got the prize. +p56972 +aVWhen I received a letter from my girlfriend telling me that she was engaged to an another man. +p56973 +aVI felt guilty when I heard the results of my friend, who had failed. I wished that I had helped him. +p56974 +aVMy being admitted to UNZA. +p56975 +aVWhile paddling in the river during a storm. I feared drowning. +p56976 +aVI entrusted a friend with the delivery of some money to my father, however he misused the money. +p56977 +aVThe loss of my mother. +p56978 +aVOver an argument. +p56979 +aVAt school - being whipped by the teacher in front of the class. +p56980 +aVWhen I had sufficient amount of money, I brought more clothes for myself than for the children - I felt bad about it. +p56981 +aVMy first kiss. +p56982 +aVWhen I saw a ghost. +p56983 +aVMy trouser's zipper was open when I was at a public wedding. +p56984 +aVWhen a friend left me and went back home for good. +p56985 +aVWhen I failed an exam. +p56986 +aVInsulted my girlfriend during a peptalk. +p56987 +aVI caught a close relative with the servant of the house. +p56988 +aVWhen I passed my form three exams. +p56989 +aVThe time I was threatened with expulsion from secondary school (form four). +p56990 +aVWhen I discovered that the people I trusted most were talking behind my back. +p56991 +aVWhen I heard about the death of my aunt. +p56992 +aVWhen my brother promised me money but he failed to fulfill the promise. +p56993 +aVI was running in front of a crowd when I slipped and fell on a wet lawn. +p56994 +aVWhen I took drugs. +p56995 +aVAs the time to get the results drew near I became more and more anxious. My friend called me and said, "" You have passed."" My heart was full of joy. +p56996 +aVI watched a very terrfying film in LT2. This film really pushed my heart out of my body and I was forced to go out before the second reel ended. +p56997 +aV I have been hearing rumours that you have not been allowing people in your room,"" he said. This sentence really shot my heart. I failed to find the right words, instead I walked away without uttering a word. +p56998 +aVOne Saturday morning I had got ready to go out swimming with my friends. Unfortunately the weather did not permit it, so we stayed indoors. +p56999 +aVOne day I went to town to get my grocery. On my way back, I took a mini bus which was full of drunk students. I felt very disgusted. +p57000 +aVI had gone to aa bookshop to buy some books. Somehow, I got very cross with the security guard checking through what I had bought. I lost my temper and screamed at him. Later I felt very ashamed at myself as a lot of people I know were there. +p57001 +aVI remember deceiving my brother, I told him that I was going to attend the Sunday service, instead I went out to the town with a friend. +p57002 +aVWhen I heard that a close relative of mine had given birth at a very young age, in a very remote area and had had very few problems. +p57003 +aVThe possibility of having failed the examination. +p57004 +aVWhen someone chased me from his house. +p57005 +aVWhen I realized that I did not have the basic things needed by a student like me. +p57006 +aVWhen some people, including me, are treated in a way which equates them to an animal or a thing. +p57007 +aVWhen someone I know was caught in an ""adultery"" situation. +p57008 +aVWhen I did something wrong in the past and denied having done it when asked about it later. +p57009 +aVMy girlfriend wrote to me telling me that she was four months pregnant and that I was responsible for the ""damages"". This made me happy as I longed to have a child to call mine. +p57010 +aVThe shooting started and we all lay down to protect ourselves from the flying bullets. This incident occured on our way to Feira, during the Zambia army patrols in the Rhodesia war. +p57011 +aVI went to the dining hall and found that the cooks were cleaning the plates and there was no food for me, and the blue birds (security guards) were busy eating the food that was supposed to be for me. +p57012 +aVThat afternoon I received two messages informing me, one that my brother was in a coma in the U.T.H suffering (kidney disease) and two, that my uncle met with an accident on his way to the hospital to see my brother. +p57013 +aVThis happened when I went to visit my friend in Chelston and found him screwing my girlfriend. +p57014 +aVWhen I walked out of my room with only my pants on and found my girlfriend and her female friend looking for me outside. +p57015 +aVMy father caught me having sexual intercourse with my closest cousin. There was nothing wrong with it but the female was too old for me. +p57016 +aVWhen a girl I wanted very much, said ""yes"" and fell in love with me. +p57017 +aVOne evening, when I had gone fishing with my friends, we heard the roar of a lion near by and had to run for our lives. +p57018 +aVWhen somebody stole my brother's disco machine. +p57019 +aVWhen my uncle died. +p57020 +aVA class-mate answered (accidentally) the call of nature in the class during a tough mathematics examination. +p57021 +aVI was double crossing my fiancee and one day she caught me red handed. She forgave me later. I was very ashamed of what I had done. +p57022 +aVI took some money from my parent's house without asking them for it, and I was caught red handed. +p57023 +aVI was very happy when I discovered that I had passed my first year examination and was among the thirty students who would major in economics. +p57024 +aVI was approaching my exam time and my books got stolen. I was in a panic as I thought that I would not do well enough to be considered for the economics quota. I cried a lot but that did not help and as the exam day came near a strange fear gripped me. +p57025 +aVI was annoyed this particular day as it seemad that the odds were not in my favour. My grandfather added fuel to the fire, when I had an important appointment so I unleashed my anger on him. +p57026 +aVIt was the time I went home for my holidays only to find that my sister had passed away. The news had been hidden from me, so that I could take my exams. +p57027 +aVWhen I discovered that my mother had been involved in adultery. +p57028 +aVI was caught stealing food at my aunt's place. I had tried to hide the food I had taken from the pantry while my aunt was in the kitchen, however she went to the pantry and discovered the stolen package. +p57029 +aVDad had just married his second wife (my step-mother) and I did not like her so I went to the wardrobe and set fire to her dresses. Eveyone suspected my brother and he had to bear the consequences. Nobody ever got to know that it was me who had done it. +p57030 +aVWhen I was accepted at UNZA. +p57031 +aVWhen I heard a lion roar for the first time. +p57032 +aVWhen a friend told me that my education had nothing to do with our discussion. This friend has failed the 7th grade, what made me angry was that I had not used my education to argue. +p57033 +aVWhen my beloved grandfather died. +p57034 +aVI was disgusted at the university wanting some of us to travel from our homes to the lectures here every day. The way the whole thing was handled disgusted me. +p57035 +aVWhen I was leaving home I decided to leave without saying good-bye to my young brother. My brother saw me and said, "" Will you not say good-bye to me?"" He is only 31/2 years old. +p57036 +aVWhen I cheated my father about the book allowance at university. He discovered that we were given K150 per year for books. +p57037 +aVI experienced joy when I got the results - I had made it to the second year. +p57038 +aVWhen I was going home, I saw somathing which looked like a snake on the road but later I found out that it was only a stick. +p57039 +aVThis happened recently, I was in the dining hall and one of my friends with whom I was eating called me a fool. +p57040 +aVI experienced this when my maternal grandmother passed away. She was the last of my grand parents to pass away. +p57041 +aVThis happened when I could not get into the school I had initially wanted, and ended up doing something I had never thought I would do. +p57042 +aVI insulted the girl to whom I had proposed when she turned me down. +p57043 +aVMy mother had sent me to buy a few things. The change I brought back was not right as I had given away some money to a friend thinking that she would not notice it. However, my mother told me that the change was not correct. +p57044 +aVWhen my first child was born. +p57045 +aVI was walking through a thick forest and there was a big snake at a distance of about four metres. +p57046 +aVWhen my daughter began staying away from classes - at the age of nine only. +p57047 +aVWhen my wife died in hospital, she was pregnant and had undergone an operation. +p57048 +aVWhen my best friend started getting involved in my private affairs. +p57049 +aVI was very drunk at a certain wedding party and I got involved in a fight. +p57050 +aVI send a word to my boss through my servant telling him that I would not report for work as I was not feeling well and that the doctor had refused to give me sick leave. My intention was actually to go out of Lusaka for a week-end. I left the same day and the following morning my boss found me in Mongu. I felt guilty when asked to explain things on my return. +p57051 +aVI received a letter of acceptance from UNZA. +p57052 +aVWe were driving at night and I realized that a car was following us. +p57053 +aVI reachad home to find that my baby had not been bathed and fed. +p57054 +aVI saw a dead child which was not covered, it had been knocked down by a car. +p57055 +aVI saw a friend's husband with another woman. +p57056 +aVI scolded my sister without waiting for her explanation. +p57057 +aVI accused my husband of being late deliberately when he came to pick me up from work. +p57058 +aVWhen I was appointed by the Ministry of health to join the teaching staff of one of the medical colleges. +p57059 +aVWhen I took blood from a patient for alcohol estimation and urine for some other examination, he told me that something bad would happen to me as he would play magic on me. +p57060 +aVWhen the dean of UNZA asked me to vacate a big flat I was occupying and take up a smaller one as I was becoming a full time student at UNZA. +p57061 +aVWhen my close friend was involved in an accident and passed away instantly. He had gone to buy a new car and had asked me to wait at his home so that I could see his new car. +p57062 +aVWhen I was told that the brother who was staying with me would not go to the training school that year but only the year after. +p57063 +aVA patient, to whom I had given a powerful medicine, shouted at me in front of many people. I realized that he did so because he was very ill. +p57064 +aVWhen I broke up my relationship with my former girlfriend as she would ask me irrelevant quetions about my past. +p57065 +aVWhen I received my promotion letter. +p57066 +aVI was sleeping when I heard the neighbours screaming, I peeped through the window and saw a thief trying to enter my neighbour's house. +p57067 +aVI was annoyed when a person higher up asked me why a particular job was not done, it was not my job to do it. +p57068 +aVMy brother came to tell me about some problems we had in the family. I felt sad because I thought that if my mother had not gone away when this brother was younger, things would have been different. +p57069 +aVI was in a train when a woman started talking loudly and attracting everybody's attention. The worst thing was that she was discussing something, about which she knew nothing, with another person. +p57070 +aVAfter a jogging session I had severe abdominal cramps and this lead to my wanting to empty my bladder. My friends gathered around me and two of them had to help me to the toilet. I was ashamed at having to go to the toilet in the presence of my friends. +p57071 +aVA certain woman had asked me to make something for her and I kept putting it off. When I finally made it, I did not see her for days only to be told one day that she had collapsed and died. I felt quite guilty as she had jokingly said that I might not do what she had requested me to do. +p57072 +aVWhen I was accepted for my third year (G-10) at my former secondary school. +p57073 +aVI had gone for a medical check-up at the U.T.H and failed to make it back on time for the C119 practical sessions at 1400 hours last academic year. +p57074 +aVWhen I was mistreated by my step-mother. +p57075 +aVWhen my aunt passed away in early 1982. +p57076 +aVWhen I failed to secure employment after my form 5 in Lusaka despite my excellent certificate. +p57077 +aVWhen I failed my grade 7 exam at the first attempt in 1975. My father and the entire family thought that I was finished in life. I really felt like hiding. +p57078 +aVWhen I beat up a first year student at my secondary school in my capacity as the deputy head boy. He had woken up late in the morning for manual work. +p57079 +aVWhen I heard that someone who is very close to me did very well in the exams despite having fooled around a lot. +p57080 +aVWhen a drunkard barged into a room where my friend and I had run in order to get away from him. We were all alone and all I could see was this hand coming towards me. +p57081 +aVWhen a friend and me played a joke on our boyfriends. Her boyfriend came up and accused me of having planned the whole thing and said that I did not deserve my boyfriend. He embarassed me in front of a crowd. +p57082 +aVWhen my family and I heard of the death of my grandfather. We had seen him a few weeks earlier and it seemed that he had just been waiting to see us. +p57083 +aVWhen a boy put a handful of cooked potatoes down my dress and there was no water to clean up. +p57084 +aVWhen a soppy poem that I had written to a boy was found and every one read it and started teasing me about it. +p57085 +aVWhen my boyfriend asked me to go out with him and I refused because I wanted to go out with another guy. I did go out and my boyfriend found out. +p57086 +aVAfter a long time (of no communication with him, physical illness and worry) my lover came to see me, when I least expected to see him. +p57087 +aVBirds had made nests in our thatched roof and they were flying and flapping their wings in the bedroom at night. It was very dark and I could not even see my nose. I did not know that it was the birds till my mother told me so. +p57088 +aVThe juniors in our dormitory at school started to complain and make a lot of noise about the duties assigned to them by the prefect who was my class-mate and was very cool and dull. +p57089 +aVMy elder sister scolded me in front of my younger sisters and cousins. She said that I was very lazy and I felt so sad that I cried myself to sleep. +p57090 +aVOn Christmas day a drunk man came to our house without a shirt on, he dansed, spoke nonsense and behaved stupidly. +p57091 +aVWhen I wet my bed at boarding school. +p57092 +aVMy baby sister was 2-3 months old and when I was trying to get her on my back, she slipped and fell. +p57093 +aVMy son was registered to get admission in grade one of the primary school. The chances of him getting a place there was 1/10. Two weeks later I was informed that he had been enrolled. +p57094 +aVWhen I came back from work one day, the friends of my son told me that he had not come back from school and that he was lost. +p57095 +aVMy room-mate locked up our room without specifying where I would find the keys. I had to spend several hours in my other friend's room. +p57096 +aVI lost my grandfather whom I loved very much. I had not known that he had been ill for a very time, when I received this message he was already dead. +p57097 +aVThe teacher of one course gave me 10 questions with sub-questions going from a to e for each question. She asked me to do all this in one and a half hours. It involved a lot of describing and explaining and even though I knew all the answers, I could not finish the work. +p57098 +aVI forgot that the course instructor had directed us to go for special classes after the usual class hours. I missed this the first day and when he asked me about it the next day I said that I had forgotten. +p57099 +aVI was to inform the neighbour on my left that a robber had been spotted the same evening near the house of the neighbour in front. I did not do it and the same day the thieves broke into this neighbour's house. +p57100 +aVWhen my father bought me a suit. +p57101 +aVAfter having taken an exam i feared having failed it. +p57102 +aVI was badly beaten up by one of my friends during a wedding party. +p57103 +aVI was very sad at hearing that my grandfather had passed away. +p57104 +aVI was disappointed by a girlfriend when I visited her at her home in Woodlands. +p57105 +aVI was ashamed at being the only one to have got a C+ in ED120 assignment. +p57106 +aVI was caught stealing a box of matches in the supermarket and had to plead guilty. +p57107 +aVWhen I heard that I had achieved a place in form I. +p57108 +aVWhen I first came to the UNZA I did not know the kind of people I would find here and the kind of behaviour they would have towards me. +p57109 +aVI had gone home for a week-end and when I came back I found that my clothes and my bedding had been stolen. +p57110 +aVWhen my father passed away. +p57111 +aVSomeone stole a K10 note and the teacher thought that it was me when I was not responsible for the theft. +p57112 +aVWhen I failed the grade seven exams. +p57113 +aVOne day my mother went to visit her friends. When she came back she scolded me for not having kept the house in order, so I decided not to talk to her. +p57114 +aVWhen I saw my family after a separation of one year. +p57115 +aVWhen my little sister was sick at home and I thought that she would die. +p57116 +aVWhen I found out that my sister had been playing with my confidential things which she had taken from my hand-bag. +p57117 +aVWhen one of my best friends commited siucide during these holidays. +p57118 +aVI am disgusted at the number of second year students who are pregnant illegitimately. +p57119 +aVWhen I got very low marks in one of the assignments. +p57120 +aVWhen my aunt went out of her way to help me out with my financial problems. +p57121 +aVWhen I fell in love with ""X"". Overnight I felt confidence, self-esteem, responsible and worthwhile. +p57122 +aVWhen a thunder belt hit the roof top of the building I was in. +p57123 +aVWhen my room-mate locked me out deliberately, before an exam due at 1400 hours. +p57124 +aVWhen my friends died one after the other. The first died in a car accident and the second one recently, due to an illness. +p57125 +aVWhen my cousin put feaces in my washing. A silly idea which was meant to be a joke. +p57126 +aVGetting drunk and creating a lot of trouble at a place I respect - my friend's home. +p57127 +aVWhen I took a small boy's share of choclale. He was our guest and so had been given a larger share of the sweets. +p57128 +aVThe day I got a telegram telling me that I had been selected for a B.A at UNZA. I felt happy because I had not expected to be selected. +p57129 +aVThe day I encountered a queer mamba face to face in a chunk of leaves behind our house. +p57130 +aVWhen my friends tried to discriminate against my friendship with certain other friends which they thought was improper. +p57131 +aVThe day my teacher of Latin and French died. +p57132 +aVThe day I went to eat dinner in the dinning hall and found a dead fly in my gravy. +p57133 +aVI felt ashamed of myself the first time I drank as nobody in the family drinks. I felt that I had let down my parents and my friends. +p57134 +aVThe day I came home drunk after having attended a disco party. +p57135 +aVI was very happy when I received the year end results as I was worried about how well I had done. I was very happy to know that I had passed. +p57136 +aVI was caught doing something I was not supposed to do. I did something with the person who caught me (bribe) and even though he promised not to report me, I am still frightened. +p57137 +aVI told my friend something confidential which was supposed to remain between the two of us. The next thing that happened was that a girl who is not even close to us came laughing and askad me to tell her about it. I was very angry with my friend as I had trusted her. +p57138 +aVI remember that when my mother died the day was sad and every time I think of it I am saddened by the loss of my mother. +p57139 +aVWhen thieves broke into our house, I was disgusted by their behaviour. They did not find anything so they broke things like the windows, glasses etc. +p57140 +aVWhen I bribed the person who caught me doing something I was not supposed to have done. I was very ashamed of what I had done. +p57141 +aVI was caught doing something bad and I bribed the person who caught me. Later I felt very bad, maybe I should have paid for my bad behaviour. +p57142 +aVWhen I received a positive answer from my appeal to withdraw my registration at UNZA. +p57143 +aVI was a passenger in a vehicle when suddenly another vehicle came from behind to overtake us. However another one was coming right in front so the other vehicle changed course and blocked our way and so we crashed against the side of the road. +p57144 +aVI was asked to stop studying economics, a field which interested me, by my employers. +p57145 +aVWhen I learnt of the death of a friend. +p57146 +aVWhen I learnt that my offer to study at the university had been withdrawn and so I would not get hostel accomodation at UNZA, even though I registered as a student later. +p57147 +aVMy love proposal was turned down by a lady I really loved. +p57148 +aVI came across a blind man sitting in one of the corridors and asking for money, though I had some money I did not give him anything. +p57149 +aVWhen I first came to the campus. +p57150 +aVWhen I was confronted by a policeman one night around 11 o'clock. I was afraid when they threatened to take me and my girl to the gallows. +p57151 +aVWhen an argument with a friend of mine over our behaviour towards another friend turned into a quarrel. I lost my temper and nearly knocked him out. +p57152 +aVWhen I lost my father in a car accident. +p57153 +aVWhen I was denied my favourite dish at the dinning hall (shima with roast chicken), I felt disgusted. +p57154 +aVI felt ashamed when a friend, I had always respected, insulted me in public. He was drunk. +p57155 +aVWhen my library books were overdue and I did not have the money to pay for them. +p57156 +aVWhen I got my results - I had passed the form III exams. I had not expected to do so well. +p57157 +aVWhen I was an exploration with my friends and almost got lost in an unfamiliar environment. It was getting dark and we did not know how to get back home. +p57158 +aVWhen my father did not get back from Chipata on time, he was thus holding back progress as everything depended on him. I felt angry over his actions. +p57159 +aVWhen my little brother passed away mysteriously, at least from what I was told about it. +p57160 +aVWhen I saw a woman who had been run over by a train, just off Kafue. The woman had been cut to bits, there was blood and splinters of bone every where. +p57161 +aVWhen I almost did something awful with a friend of mine and myself. +p57162 +aVWhen I ""passed out"" a female friend of mine for no apparent reason. I was under the influence of drugs and when I am like that I get mad at anyone, however small the provocation. +p57163 +aVWhen I was accepted at UNZA. +p57164 +aVWhen thieves broke into our neighbour's house and later we heard gunshots. +p57165 +aVWhen my aunt scolded me for something I was not responsible for. A boy had come to our gate asking for me, my aunt went out to see him. I had neither met nor known the boy. +p57166 +aVWhen my cousin passed away unexpectedly and tragically (a murder). +p57167 +aVWhen my mother got a terrible beating from my father. It was so bad that she fainted and it was only then that my dad realized how bad it was. +p57168 +aVWhen my friend had a child out of wedlock. +p57169 +aVWhen I lied at home. I told them that I was going to a Christian meeting and I went to see my boyfriend instead. +p57170 +aVReceiving my result slip (pass) on my birthday. +p57171 +aVWhen we forced a friend to chew a poisonous herb in primary school. His tongue was swollen and he told his mother about it. The mother reported it to the headmaster who threatened to expel us. +p57172 +aVAt boarding school someone put a lot of tiny thorns on my bed. When I complained everybody began teasing me and laughing at my inability to find out my enemies. I lost my temper. +p57173 +aVWhen my grandfather died. +p57174 +aVMy room-mate was drunk, he vomited on the floor and fell face down on the vomit nearly choking himself to death. Then he fainted and so I called the first aid. +p57175 +aVAs a kid my mother caught me stealing sugar and giving it to a neighbour. +p57176 +aVI got into a bad fight in a bar and my friend received a bad cut above his left eye while trying to separate us. +p57177 +aVI felt vvery happy when I was accepted at UNZA for my studies. I had not expected this as I had been ill during the exams. +p57178 +aVI felt very frightened when a robber broke into our house and threatened to shoot my father if he did not part with some money. I was looking at the man with his hand on the trigger. +p57179 +aVA teacher at my former secondary school forced my darling to marry him. The girl tried to refuse but her parents would not leave her alone. +p57180 +aVWhen my sister died, she was only sixteen when she was put to rest. +p57181 +aVWhen I witnessed an accident. +p57182 +aVWhen my father found me in bed with a girl, we were deep in actioon when he entered the room. +p57183 +aVI took my grandmother's money without telling her and when asked if it was me who had taken the money, I denied it. +p57184 +aVWhen I won some coins in a small competion. +p57185 +aVI went home late one evening and saw that the security lights were off. I got inside the gate and just then I realized that the dogs may be outside. +p57186 +aVMy little niece, who is very talkative, suddenly became very naughty and began wetting her pants. She did it one afternoon. +p57187 +aVThis morning during my sleep I had a feeling that someboby was attacking me. I started crying in my sleep and then my room-mate woke me up. +p57188 +aVWhen I learnt that my cousin sister was pregnant. +p57189 +aVMy cousin and I were at the farm and at night we drunk like fools and made a lot of noise. We had drunk two much of wine. +p57190 +aVThe fridge we had at home had a lock. One day when I wanted something, I unscrewed the door but unfortunately I was caught in the act. +p57191 +aVWhen I was selected for the university. +p57192 +aVWhen I saw an accident, a woman was run over and she died on the spot. +p57193 +aVWhen my dress and a few other things were stolen from my wardrobe. +p57194 +aVWhen my grandmother passed away. +p57195 +aVWhile watching a movie, someone who was drunk started vomiting helplessly. +p57196 +aVWhen I ate my sister's food and then she found out that it was me. I felt very ashamed but still refused to admit that it was me. +p57197 +aVWhen I told a person something that had happened to my friend, and this person went and told my friend. +p57198 +aVWhen I got myself the kind of girlfriend I had been hunting for a long time. +p57199 +aVWhen I was told that the form five results were out. +p57200 +aVWhen I saw my younger sister being bothered by a boy she did not know. +p57201 +aVThe time I lost a badminton match, that I should have won at the Zambia closed badminton championships. +p57202 +aVWhen I was taking my girlfriend out, she seemed to have taken her time. +p57203 +aVWhen my dad caught me with a honey (girlfriend) in my bedroom. +p57204 +aVWhen I beat up a stupid boy who was fond of cracking jokes on me. +p57205 +aVWhen I was selected for higher education, i.e grade 7 to formI. +p57206 +aVWhen I impregnated a certain girl, I thought that I would be forced to marry her or go to court. +p57207 +aVWhen the university withdrew the accomodation that it had given me. +p57208 +aVWhen my mother and father separated (it was a brief separation and they are together now). +p57209 +aVWhen I patronized a certain tavern which had prostitutes, it was almost a brothel. +p57210 +aVWhen I proposed love to a girl and she turned me down. +p57211 +aVWhen I sided with my mother in a quarrel she had with my father before they briefly separated. +p57212 +aVWhen I received a letter from a woman I thought had not ever cared for me. This was when I needed her and I was overjoyed to learn that it was me who was delaying things. +p57213 +aVTwo guys were fighting murderously and I feared that one of them would be killed. +p57214 +aVWhen I could not reason my friend, it angered me. +p57215 +aVI did not like it when a little girl was crying for her dead mother and was calling her by her name. I was sad. +p57216 +aVI feel disgusted at not having got aa ""A"" in yesterday's practicals of G220. +p57217 +aVI felt very ashamed at having got a book by force from a girl. +p57218 +aVI felt guilty of having suspected my room-mate of stealing the money last term. +p57219 +aVOur only elder sister got married and started having pains in her abdomen and she was told that she could not have children. To our suprise she had a baby 2 months back. +p57220 +aVMy uncle was taken to the UTC for an operation as he had cancer. There had been a lot of deaths of late - 3 out of every 4 operated. I was scared for my uncle's life. +p57221 +aVI had planned to go to town with my friend at 1500 hours but she went for the registration and I waited for a good 1 and a 1/2 hours. It was vital for me to go to town but I could not as it was she who had the money. Finally I borrowed some money from friends and we went to town. I was really angry with my friend. +p57222 +aVI dreamt of my father's death while I was at secondary school. I was screaming at the top of my voice and was woken up by my friend. That day I was really sad. +p57223 +aVI had prepared a special meal for my boyfriend but when my brother came home he ate it all. I was really disgusted about it. +p57224 +aVWe were at a party, this guy I liked and me. I really loved him and gathered enough courage to ask him to kiss me. He did not do it but instead asked me what I would like for my birthday. I told him that I would like a kiss more than anything else but he excused himself and said that it was impossible. I really felt embarassed. +p57225 +aVWe were at secondary school and I was making a lot of noise. The teacher came to ask us as to who was making all the noise. I did not own up so the whole class was punished. +p57226 +aVI was very happy when my scholarship to continue studying at UNZA was approved after it had been cancelled. +p57227 +aVWhen I met an elephant in the bush. +p57228 +aVWhen someone took my pen away. +p57229 +aVWhen my cousin passed away during the holidays at home. He fell ill at night and the next day he died in the evening. +p57230 +aVAn officer at the Dean of students office had promised me to give me a room the next day, but he failed to keep his promise. +p57231 +aVI do not have accomodation on the campus so I stay with my extended family, one young man used bad words while asking me to leave their home. +p57232 +aVI broke a glass of glycerine at the Z.C.B.C store in Ndola. +p57233 +aVWhen I was with someone I love. +p57234 +aVWhen I was walking around all alone at night. +p57235 +aVBeing made to look like a fool by a girl. +p57236 +aVWhen my dad passed away. +p57237 +aVWhen I was told that I had no right to control my lover. +p57238 +aVGetting very low marks in mathematics. +p57239 +aVWhen one of my lovers told me that I was a flirt. +p57240 +aVAt my sister's wedding. +p57241 +aVWhen I had to walk along a dark road alone. +p57242 +aVWhen I was locked out of my room by my room-mate's friend. +p57243 +aVWhen I failed one of my courses at school - the university of Zambia. +p57244 +aVWhen I found out that someone close to me was flirting around. +p57245 +aVWhen I swindled money out of someone. +p57246 +aVI did not deliver a message on time. +p57247 +aVWhen the lady who is now my wife accepted my proposal to be my lover and future wife. +p57248 +aVWhen my neighbour's house was broken into and shots could be heard. +p57249 +aVWhen a thief broke into my house and stole some valuable goods. +p57250 +aVThe death of my guardian with whom I had stayed when I did my grade six. +p57251 +aVWhen I was substituted in a play which was to be staged, after I had learnt all the lines. +p57252 +aVWhen a woman who I respected very much was made pregnant, unexpectedly by a man of a caliber I never expected. +p57253 +aVWhen I applied for a false travelling claim allowance and later I thought that I would be found out. +p57254 +aVI felt happy when my mother gave birth to a son who is the last born in the family. +p57255 +aVMy father had been involved in a car accident two years ago. I was then very scared thinking that he would die as he lay unconscious in hospital for two weeks. +p57256 +aVI felt very angry when a mishanga seller robbed me of the transport money I had to go to school. +p57257 +aVI felt very sad when a friend of mine failed the final exam and she could not be accepted at the institution of learning. +p57258 +aVI felt disgusted when a fellow student asked me to marry him. I had not expected this from him as he was a mere friend. +p57259 +aVI was ashamed when my friend and I were cross with each other till we apologized to each other. +p57260 +aVI felt guilty when I said bad things to my sister, I had not intended to do so. She cried a lot and later she fell ill and I felt responsible for her illness. +p57261 +aVWhen I was selected to study here at UNZA. +p57262 +aVIn 1960, I was going to a school which was near my village and I met a lion on the way, which disappeared suddenly. +p57263 +aVWhen my wife told me that the refrigerator had stopped working. +p57264 +aVWhen I heard of the death of my mother. +p57265 +aVWhen my relatives troubled me so that I would help them financially. +p57266 +aVWhen I failed one of the first year's courses. +p57267 +aVWhen I was late for work and told my boss that it was due to transport problem, whereas the truth was that I had woken up late. I thus cheated my boss. +p57268 +aVI was overwhelmed with joy when I received the acceptance letter to UNZA. This happened again when I passed all my first year courses. +p57269 +aVIn 1977 when my friend was caught by a crocodile. We were swimming in a river on whose banks our primary school was situated. When my friend was caught, he was on the banks of the river and some of us were still in the middle of the river. I was very frightened. +p57270 +aVIn 1982, I was annoyed at an uncle who was drunk and was beating up his old father. He claimed that the father was responsible for his guardian's failure. +p57271 +aVLast academic year I received bad news - my grand-uncle had passed away. I felt lonely and bad because apart from the biological ties, he was a good old friend of mine at home. +p57272 +aVLast week a former school (secondary) mate of mine, who is now in a differentt school came to my room here at UNZA in my absence. He was drunk and he vomited in my room. I was unhappy. +p57273 +aVA few years back I had proposed love to a girl who later turned out to be related to me. Though we were in love with each other, we both felt ashamed and withdrew from each other. +p57274 +aVLast year I was asked to look after my niece while her mother was cooking. Unfortunately the kid fell off the bed, I was confident that she would not fall and had not been paying much attention. +p57275 +aVWhen I qualified for form I. I was one of the three pupils who qualified for form I that year. +p57276 +aVWhen I learnt that the girl I had impregnated was in hospital and was on the verge of dying as she had refused to accept the responsibility of her pregnancy and had wanted to commit suicide. +p57277 +aVWhen I got home I found that the electrical supply had been disconnected despite my having paid ZESCO the full bill a few days earlier. +p57278 +aVWhen I lost my grandmother. She had been my guardian after the death of my father. +p57279 +aVWhen my demand for accomodation on the campus was refused and the rooms were allotted to first year students who were from ""Rucher"" and came from influential families. +p57280 +aVWhen I told a girl that I could not take her out that night as I was entertaining my mother who had come from home. However, I later met this girl with another girlfriend at a hostel where I had taken out another girlfriend of mine. +p57281 +aVWhen I told the driver at my workplace to lie and tell the boss that it was not me who was responsible for the delay. The boss was very annoyed and the driver was punished and a day's salary was taken away from him. +p57282 +aVWhen my wife gave birth to a baby boy - my only son to date. +p57283 +aVWhen burglars with guns forced themselves into my house and ordered me to give them money or face death. +p57284 +aVWhen my colleague spat on my face after a quarrel. +p57285 +aVWhen my elder brother died. +p57286 +aVWhen my friend, after a beer spree vomitted in my sitting room. +p57287 +aVWhen I was taken to the place where my uncle had defecated in his pants after having drunk beer. +p57288 +aVWhen it was discovered that I had done the assignment at my work place, this caused a lot of embarrassment for me. +p57289 +aVWhen my brother gave me a watch. +p57290 +aVWhhen the front tyre of the car burst. +p57291 +aVWhen I was insulted by a fellow student. +p57292 +aVWhen the girl I loved turned me down. +p57293 +aVWhen I found my girl in bed with another man. +p57294 +aVWhen I failed grade 7. +p57295 +aVWhen I was caught going out with another girl by my girlfriend. +p57296 +aVWhen I passed the first year and so I could come back for my second year. +p57297 +aVI was working at a certain place and everyday after work dad would come to pick me up. One day he did not come, it started getting very dark and I had no money on me and my home was very, very far away. +p57298 +aVOne day I had an appointment with my boyfriend which I had objected to in the begining, however he visited me and convinced me to come. The day of the appointment; I had to wait for him for over an hour. +p57299 +aVWhen my grandmother passed away. We had been waiting for it as she had been sick for years, but when it happened I found it hard to accept. +p57300 +aVWhen my grandmother came to stay with us permanently as she is a very difficult person to stay with and when she started telling false stories about us to other people. +p57301 +aVWhen I realized that I was pregnant. I thought about what my relatives and friends would think about me and I felt a lot of self pity. +p57302 +aVOne day when I was working, I went out for dinner with friends without my parents knowledge and I only came home at 2300 hours. +p57303 +aVI was very happy when I found out that I had passed with flying colours and that I had made it to the university. +p57304 +aVLast night, I dreamt that things that looked like monsters were trying to kiss me. +p57305 +aVOne of my colleagues accused me of having stolen his iron and I was sure that I had done no such thing. +p57306 +aVThe passing away of my mum. +p57307 +aVOne of these people who sell meat in town used a knife to stab his friend and later carried on using the same knife to cut meat. +p57308 +aVAbout a dozen girls laughed at me and I was sure that there was nothing wrong with me. +p57309 +aVThis is a kind of confession - my mum found me stealing meat from the pot. +p57310 +aVThe first time I really fell in love with a girl. +p57311 +aVThe time I drove my uncle's car, without having asked for his permission. It was the first time that I was driving a car. +p57312 +aVWhen my kid brother broke my reading spectacles. +p57313 +aVWhen my mum's brother passed away after having been involved in a car accident. He was bringing me a present as I had passed my form five exams with flying colours. +p57314 +aVWhen I, for the first time, failed a junior exam, i.e form 3. +p57315 +aVWhen my mum learnt that I had beaten up someone in a fight. +p57316 +aVWhen I nearly got my fiancee pregnant. +p57317 +aVWhen my sister's first child came home, after one week in intensive care at the hospital. +p57318 +aVWhen I was at a boarding school at Lusaka, the Rhodesian soldiers came to bomb a house near our school and we saw the whole scene. +p57319 +aVA very close friend of mine was refused entrance to the medical school. Her grades were very good and she should not have been left out. Biased judgment ! +p57320 +aVMy sister lost one of her twin sons (my first nephews) and then the older one died a week later. +p57321 +aVWhen I went to report a stolen good at the police station, the woman-officer-in-charge was very rude and did not seem to have respect for anyone. +p57322 +aVI insulted two of my friends because I thought that had been gossiping about me right under my nose, however I later found out that they were not doing so. +p57323 +aVI failed to keep a promise and this had a serious effet on someone's problem. +p57324 +aVWhen I met my mother after not having seen her for three years. +p57325 +aVWhen my neighbour's life was threatened by someone who was trying to break into his house. +p57326 +aVWhen a boy who was drunk came into my room and misbehaved in the presence of my boyfriend. +p57327 +aVMy father resigned from work, and soon after this his elder brother died. The next day my granny died (my mother's mother). My dad remains the only living member of his family. +p57328 +aVWhen the committee, to which I belong, was accused of having squandered the money of the association. +p57329 +aVWhen I went to the library three weeks after it had opened and found that everyone was busy. +p57330 +aVWhen my friend was punished for something that I had done. +p57331 +aVFor my parents anniversary, we hosted a party and we were very happy. +p57332 +aVOne evening when my sisters, brothers and I were watching T.V my kid brother took a big mirror and reflected light on the french windows. I thought that these lights that we could see were coming from torches annd that it meant that there were thieves outside. +p57333 +aVSome people were sitting outside and saying things which were not really true. +p57334 +aVA break-up with someone I really liked. +p57335 +aVI came across a woman in town who was very drunk. She was swearing at everyone and carried on drinking even though she could hardly stand. +p57336 +aVI was wearing a slit tight dress at a disco and it burst open. +p57337 +aVI had stopped talking to a very close friend of mine. A week later he came over to try and make friends with me again and from the way he talked I felt that he was a very mean preson. +p57338 +aVWhen I accepted Jesus Christ as my personal saviour. +p57339 +aVWhen I witnessed a bus accident in which a bus, full of passengers, nearly overturned on the Lusaka-Kabwe road. +p57340 +aVWhen my sister came home late one day and thus disobeyed my parents. +p57341 +aVWhen I heard the news of my grandfather's sudden death. +p57342 +aVWhen I failed the grade 7 exams. +p57343 +aVWhen my younger sister, who was then 16 years old, was pregnant. +p57344 +aVWhen I hurt my sisters for no reason at all. +p57345 +aVWhen I attended my cousin's 31st birthday. +p57346 +aVI got a very nasty electrical shock when I was tampering with some electrical applainces. +p57347 +aVWhen I was subjected to a very nasty joke by a group of friends. +p57348 +aVWhen I received my results and found out that I could not go to a school of my choice. +p57349 +aVWhen I found a maggot in my food at the dinning hall, all the food had gone bad. +p57350 +aVI took a girl out once and discovered that she was going around with one of my close friends. +p57351 +aVAn item which belonged to a friend of mine was missing. I had taken it earlier and I thought that I had returnrd it so when he asked me for it I stubbornly refused having it. Later when I looked for it, I found it in my room. +p57352 +aVWhen I got my results ( I had made it to the second year ). +p57353 +aVWhen I thought that I had failed the examination. +p57354 +aVWhen I discovered that my girlfriend was going around with another boy. +p57355 +aVWhen my grandfather died. +p57356 +aVWhen I heard that my sister had shouted at my friend's cousin at their place. +p57357 +aVWhen I failed the grade 7. +p57358 +aVWhen I had lied, saying that I never take bread from the dinning hall and a friend of mine caught me doing it. He thus proved to me that I did in fact take the bread. +p57359 +aVWhen my girl told me that she loved me more than any male creature on earth and that I would be the only one in her heart for all her life. +p57360 +aVThe day I was nearly stabbed to death by ruffians who wanted to take my money. I refused to give them any money and they started running after me, I ran into somebody else's house to save myself. +p57361 +aVWhen a kid dropped my father's radio cassette player, which he had just repaired. +p57362 +aVWhen someone I love told me that she did not love me anymore and that she wanted all the snaps that she had given me in exchange for the ones I had given her. +p57363 +aVWhen a girl said in my back that we were in love, and she had actually refused me. When I confronted her she started insulting me. +p57364 +aVWhen I told a lie to a friend of my sister on April fool's day. She later came to see me and told me that it was a very foolish thing to do. +p57365 +aVA girl dropped some stuff from her bag and when I tried to help her I realized that she had used me and I was made to look like a fool. +p57366 +aVWhen I learnt that I had been accepted at UNZA. +p57367 +aVWhen thieves broke into my house at night and held my wife and me on gun-point for at least ten minutes and took away a lot of property. +p57368 +aVWhen I was beaten up by thieves on behalf of some friends of mine as they thought that I had a lot of money and would not part with a few coins for their drinks. +p57369 +aVWhen I received the news that my in-laws had passed away. I depended heavily on them for their guidance and the running of their daughter's buisness. +p57370 +aVWhen my younger sister visited me during the school holidays and told me that she would not go back to school because she was pregnant. +p57371 +aVWhen I lied to my wife and told her that I was going to the Copperbelt on a buisness trip, she later found me in a hotel with a girlfriend. +p57372 +aVWhen I cheated my father and told him that the school administration wanted K80 for the purchase of a mini-bus. Two months later the school authorities wrote back to my father for the money. I could not go back and ask him for the money again as he had already given it to me once. +p57373 +aVWhen I received the acceptance letter from UNZA. I had just come home from work when my kind sister handed me an enveloppe which I opened and was overcome with joy. +p57374 +aVI was at home and we were sleeping when we heard some robbers breaking into our house. +p57375 +aVA certain boy came into my room and started telling me that I was not pretty, that I had no manners and that I should learn some. I had just come to campus and he was in fourth year. +p57376 +aVMy elder sister whom I love very much was leaving for the West Indies for two years and I was staying behind. +p57377 +aVA certain girl asked me what my major was and when I told her that it was P.A she started criticizing it saying, ""I hate that course."" She just shows off in front of other people. +p57378 +aVI took an exam which I failed terribly as I had not studied. +p57379 +aVI told my elder brother that he was irresponsible and that I did not care for what he did because he was teasing me. +p57380 +aVWhen I was selected to this university despite my having studyied in difficulty throughout my secondary school days. +p57381 +aVThe day I learnt that my girlfriend had been going around with a close friend of mine. +p57382 +aVI was drunk one night and I insulted three ladies. The following morning they approached me and asked me the reason behind my bahaviour, I apologized for my unruly behaviour. +p57383 +aVI felt happy when I learnt that I had qualified for the grade eight. +p57384 +aVI was afraid when I learnt that my father was seriously ill in hospital. +p57385 +aVWhen I met my new girlfriend with another man in the street. +p57386 +aVWhen I learnt that my brother-in-law had been poisoned by his friends and that he was dead. +p57387 +aVWhen I found out that the seat in the coach that I had booked had been sold to somebody else. +p57388 +aVWhen money was stolen from my pocket. +p57389 +aVWhen I discovered that the girl I was courting was a relative of mine. +p57390 +aVMy son passed grade 7 and was accepted for form I. +p57391 +aVWhen the robbers broke in, at night. +p57392 +aVI wrote an assignment and was given less marks than a friend with whom I had previously discussed the assignment. +p57393 +aVWhen I got a message that my child was not feeling well. +p57394 +aVWhen I was teaching a student started making silly remarks in class. +p57395 +aVWhen I was in grade one, one day I felt like going to the toilet during class but I was very scared of the teacher so I urinated in the class. +p57396 +aVI bought something and the shopkeeper gave me more change, I realized this after I had left the shop and was on the bus-stop - and I then needed the money. +p57397 +aVWhen I received the acceptance form for the second year at university. +p57398 +aVThe day my parents were involved in a car accident and had to be operated and before the operation the doctor said that it was mater of life or death. +p57399 +aVI got into an argument with a photographer for whom I had to pose twelve times, over a period of four weeks, before I could get a snap of mine. Every time the film was processed my snap did not come out although the others did. +p57400 +aVI was sad at the expulsion of some of my comrades during the UNZA demonstrations. +p57401 +aVI was disgusted at the way the bus conductor threw out an old woman oiut of the mini-bus simply because she could not pay the fare for her luggage. +p57402 +aVI had a feeling of shame when I found myself unable to answer some questions from my tutor simply because of a lack of preparation. +p57403 +aVThis last August when my parents dropped me off and moved me into college I didn't know anybody here; I was 17 and Berkeley really scared me. +p57404 +aVWhen I found my boyfriend, who I had been dating for a year, at another girl's house. We had had previous conflicts concerning the girl, but he had always claimed they were just friends. +p57405 +aVThe same as for SHAME and DISGUST. I was asked to resign my sorority which I did because I was ashamed. +p57406 +aVThe same as in SHAME. +p57407 +aVOn a road trip with a group of sorority and fraternity people, I became intoxicated and basically raped. I don't remember the actual event, but I know the feeling that I experienced later. +p57408 +aVWhen I got fired from a job because I gave a discount to a friend. +p57409 +aVOur basketball team is undefeated in league play (4-0) currently. +p57410 +aVWhenever I think of enrolling in Organic Chemistry. +p57411 +aVI saw in a movie a block on which affluence and poverty existed. I saw that the rich made no attempts to help the poor. +p57412 +aVWhen I felt powerless to help the poor or when I don't know how to. +p57413 +aVI felt disgusted at my teams poor perfomance prior to league play. +p57414 +aVI received a grade above average on a midterm (chemistry) and I expected onevery below average. +p57415 +aVI was walking home from a place on southside and I live on Northside and I was followed. I headed my most direct route. +p57416 +aVSomeone signed up for a workshift at the co-op where I live and she did not want to work the switchboard. I became very angry. She had mentioned earlier that she wanted and needed the workshift to me so I did not sign up. +p57417 +aVI did not do as well as I expected on a chemistry exam. I received a score below the average and I thought I had done very well. +p57418 +aVI saw someone that I thought I knew repeatedly drunk. I do not like to be around alcoholics. +p57419 +aVEvery time I was around this one person I would stick my foot in my mouth by being nasty. One time I accidently said something fairly cruel that was totally inappropriate. +p57420 +aVI blew up at someone for being confused and because of his irresponsibility and afterwards I felt guilty and that I had no right. +p57421 +aVRight before I went to a concert with my last boyfriend he told me that although he told me he was going to take me to the concert, he didn't want to see me anymore. After that we stayed overnight and I said ""well, when he leaves me I will be ruined for awhile, but for now we're together."" I woke up in his arms and it was the happiest moment of my life. +p57422 +aVI was river rafting in Nev. and our boat tipped over and I was sucked under in to some rocks and got stuck and all I could think was that I was going to die. And it was so quiet under the water it seemed like no one would care or remember. +p57423 +aVOne of my first boyfriends got mad at me because a lot of my close friends were guys and he didn't want me to see them anymore because he was jealous. +p57424 +aVI was watching a sunset after my latest boyfriend left me and I realized that we would never watch sunsets again, probaly never see eachother again and none of it mattered. +p57425 +aVI was listening to a priest in church saying how sinful man was, and how all men should renounce their desires and pleasures to please God. I could never understand how something that brings you joy could be a sin. +p57426 +aVMy third grade teacher caught me cheating on a spelling test. I couldn't spell Australia and she said in a loud voice something like ""We don't have cheaters in my class"". +p57427 +aVWhen I was 5, a few of my friends and I would light matches for fun. One of my friends confessed to her parents and my parents, I guess, knew or suspected I was involved but I said I knew nothing about it. +p57428 +aVI felt extreme joy the day I was baptized. I was one with God. +p57429 +aVI felt fear when my friend and I broke into an abandoned military base in Los Angeles this summer. I feared because I didn't want to be caught. +p57430 +aVI experienced anger most recently when I had committed a sin which I had gone a week and a half without doing. I had made a vow to God and had blown it. Now I had to start all over. +p57431 +aVI last really felt sad when I left home for I was leaving all my long time, pre-kindergarten relationships behind. +p57432 +aVWhen I committed a sin mentioned in ANGER. A sin of sexual immorality. +p57433 +aVWhen I just took a shower with a girl down the hall. I felt that I had let my devotion to God go out the window. Although nothig happened I felt ashamed. +p57434 +aVWhen I committed the sin of immorality mentioned before. +p57435 +aVFinally being asked by someone to a banquet. +p57436 +aVA few weeks back, as I was in a hurry to leave the house, I left some of my things lying around. This is something I never do. My uncle,who lives with us, as we live in a joint family, remarked that we were always doing things like this. This really got me mad. +p57437 +aVWhen I took the B.A exams,I was expecting a 1st class even though I had not done very well. When the results came out I felt sad as I had missed the 1st class by 12 marks. +p57438 +aVA girlfriend of mine behaves in a very childish way - she does not like my going to see a friend who has been introduced to me by this same friend of mine. I would like to be friends with both of them, but she does not like this as she is possessive and would like me to be close only to her. +p57439 +aVA friend of mine had said something about not liking to come to my place just before coming to my place. In the meanwhile I got to learn about this from another friend of mine and when she arrived at my place I really treated her badly. I was later ashamed of the way I had treated someone when the person was at my place. +p57440 +aVA few days back my mother was not feeling too well and still did all the house work. I felt guilty as I had not offered to help. +p57441 +aVWhen I passed the B.A exams and my parents allowed me to carry on my studies and do a M.A. , I was very happy. +p57442 +aVI was scared of water when I was a child. +p57443 +aVWhen I get home late my father scolds me and this makes me angry. +p57444 +aVWhen my aunt died. +p57445 +aVA friend of mine remembered me when she needed me and did not even think about me when she did not need me. +p57446 +aVWhen I got 1 mark in an Abnormal Psychology exam. +p57447 +aVWhen I passed the B.A exams with 1st class. I was the first in the family to have got a 1st class, so all the family members were very happy and they gave me the opportunity to study further. +p57448 +aVWhen I dreamt that my family was in trouble and was facing many difficulties. +p57449 +aVWhen my brother got very low marks in the exams, I was very angry. I put my studies aside to help him, as every time my brother does badly at school, my family members blame me as well. +p57450 +aV When family mmembers or friends blame me for something I am not responsible for. I feel very sad as it was not my fault. +p57451 +aV I feel disgust at people lying. It means that they say one thing to one person and the same thing in another way to another person and this makes people quarrel among themselves. +p57452 +aVDuring a class I was asked a question which I did not hear very clearly, so I gave an answer which was not related to the question and everyone started laughing at me. +p57453 +aVWhen my pet dog,who was to us a family member, died. He had been vomitting for the past three days and we had not found the time to call a vet, finally when the vet came it was already too late. +p57454 +aVWhen last year in college I received the award ""Best Student of the Year"", I felt very happy as I got what I had wanted and my wish had been fulfilled. +p57455 +aVOnce I woke up in the middle of the night and felt frightened as everyone else was sleeping and I could not even go to their room. +p57456 +aV It irritates me when people talk about me behind my back. I prefer people to tell me what they have to, on my face instead of talking behind my back. +p57457 +aV When friends and colleagues talk bad about me. +p57458 +aVAt work when I did not get the full co-operation of my colleagues to complete an assignment. +p57459 +aV When I acted against my mind or conscious. +p57460 +aVIn the begining of teenage, on the matters of sex - speaking about sex. +p57461 +aVIn 1980 when I was in the 12th standard, we had arranged a small picnic in Kandala. One of my closest friends wrote a small and cute poem for me, which expressed the feeling of closeness we had for each other. I was very thrilled and I can still remember it. +p57462 +aVOnce I was caught by thugs aged between 20-35, they asked me to surrender all the property I had and I remember feeling very scared. +p57463 +aVOne night we, all the family members, were sitting in the front corridor of the house when a gentleman looking person came in. He was my father's client and he had come to bribe my father in connection with the proceeding case. At my father's refusal he abused my father, my brother and I could not control our temper and we rushed at him. +p57464 +aVOnce my friend and I got into into a hot discussion on a very controversial topic. At one point of the argument I disagreed with her totally and I took what she was saying as an insult. So I couter-argued and unknowingly hurt her emotionally, I felt very sad about this. +p57465 +aVAfter joining my M.A in Social Sciences, I appeared for the first semester exam. I failed one of the exams, and when I looked at my results I felt disgusted and then I got angry. +p57466 +aVI met my friend and he gave me a wonderful present as it was my birthday. I enjoyed having that present. +p57467 +aVWhen I lost a wallet while travelling, since it belonged to the group I was very afraid. +p57468 +aVWhen a person whom I had invited did not come on the appointed day and time. +p57469 +aVI tried my level best to care for my client, I took an appointment with a doctor and before meeting the doctor he expired - a poor small boy from Uttar Pradesh. +p57470 +aVMy notes were not returned to me, it kept on being procrastinated. +p57471 +aVI was misbehaving in the agency. +p57472 +aVA friend of mine got encouragement and I did not, as the supervisor did not like me. +p57473 +aVWhen I got the scholarship letter from Australia. +p57474 +aVWhen going to the exam. +p57475 +aV When I do not get any co-operation from my friends/partners. +p57476 +aVWhen my brother's visa for the U.S.A got cancelled. +p57477 +aVI had known the girl for a few months when I proposed to her and this put an end to our friendship, as from then on we started withdrawing from each other. I liked her very much. +p57478 +aVWhen my elder sister had a baby girl. She was the first girl in the family after 19 years of baby boys. +p57479 +aVWhen our school was raided by the pupils of the boys secondary school who beat us up. +p57480 +aVWhen my room-mate locked up the keys of my room in our room after I had told her that I was only in the bathroom having a shower. She left and I had to do without supper. +p57481 +aVWhen I received the news that my beloved grandmother had died. I was at the boarding school and was only 13 years old. +p57482 +aVOne evening when a boy who was drunk made a pass at me by trying to kiss me. +p57483 +aVWhen I blurted out an answer in class without having been asked to do so. The teacher told me that it was bad manners to do so. +p57484 +aVWhen I had promised to do some washing for my mother and I did not do it. She did it herself despite her being ill. I felt very guilty. +p57485 +aVI was very happy when I passed and went to form I. It was a great relief for me as I had been very worried considering the large number of pupils who fail. +p57486 +aVDuring the last academic year i.e 1983/1984 just before the closure, we were surrounded and threatened by the paramilitary forces. +p57487 +aVWhen someone I trusted very much, disappointed me. +p57488 +aVWhen a close friend of mine who was with me in first year could not make it to the second year. +p57489 +aVWhen one of my friends started misbehaving. +p57490 +aVWhen I failed one of the tests because I had not worked hard enough. +p57491 +aVWhen I was scolded by my dad for bad behaviour. +p57492 +aVAfter waiting impatiently for the results of the form 5 examinations for almost a year, at last I received a letter of acceptance from the Senate of the university of Zambia telling me that I had made it to the first year course at UNZA. +p57493 +aVThe first day that I was close to a dead body, in my third year at UNZA, school of medicine. +p57494 +aVA few monthe ago, when my brother's wife told me that I had bad manners. To make matters worse she did not let me use their telephone as she only allowed people of her own tribe. +p57495 +aVWhen I got to know that my father had passed away. +p57496 +aVI was disgusted to discover that my girlfriend of few weeks was already fooling around with another guy. I was disappointed as the guy was a rogue and I respected my girlfriend. +p57497 +aVI was saying bad things about a man I had never seen. I was with a friend and did not know that she was related to this man. My friend did not tell me about it and I discovered this myself. +p57498 +aVA very, very close friend of mine used to come to my room to see me and I naver bothered to pay him a visit. One day he asked me the reason behind this and I gave him a shirt. +p57499 +aVWhen I received the first year results as the first year had involved a lot of work and I was very pleased when I got the results. +p57500 +aVWhen mother was very ill, I feared that she would die. +p57501 +aVWhen a boy, who was drunk, insulted me in front of a crowd. I was stopped from punching him for it. +p57502 +aVWhen I heard the news that my brother had passed away. It was the first time that I lost a brother. +p57503 +aVWhen a student accused me of having stolen his textbook as he had found a form bearing my name in his other books and all my explanations fell on deaf ears. +p57504 +aVWhen my first sexual intercourse turned out to be a flop. I was in a panic and ended up without an erection. +p57505 +aVWhen my mother found me in her bedroom ""stealing"" sugar in her bedroom. According to our customs there comes a stage when a child stops using the parents bedroom and I was well past that age. +p57506 +aVThe computer at school had left out my name along with four others and I had no rights for one year. So I was happy to find my name on the medical schhol list. +p57507 +aVWe were driving on a very dusty road at night and the driver tried to overtake a very big truck only to find another big truck parked right in front. +p57508 +aVI had gone on a vacation and my mother left home without leaving me any thing - money to come back to school. +p57509 +aVI remember being sad whe my aunt's child died (2 days old). +p57510 +aVI was eating in the dinning hall and some women joined me. I could not eat with them so I left the dinning hall. +p57511 +aVI was about to share lunch with my aunt's husband when she told me that I would have to wait and eat with my cousins. +p57512 +aVWhen my friends and I were caught with our girlfriends outside the school grounds when I was at the secondary school. We were caught by the headmaster. +p57513 +aVI had been very weary all week - no letters, no phonecalls, no visitors and then my younger sister came with some cheese, a card and some pocket money for me; and she told me that she was working now. +p57514 +aVA friend gave me a lift and we met a road-block. He tried to turn back when an officer shouted at us to stop. My friend took a turn suddenly and the officer raised his gun but by the time we were gone. +p57515 +aVI had worked very hard during my vacations to raise some money for a few major items (e.g a radio). but when I arrived at the inter-city bus terminal, my hard earned money had been stolen from me. +p57516 +aVMy younger brother and sister were involved in an accident on their way back from school and my brother was quite badly hurt. +p57517 +aVI went to the shopping centre to buy something and saw packets of Kapenta with maggots in them. Oh ! +p57518 +aVI had a misunderstanding with my father and after some time I found that I had been wrong. +p57519 +aVA very close friend of mine invited me to spend the holidays with him. He was very kind, good and understanding. However it turned out that he had two of his cousins at his place. He, however gave me everything I needed - even transport money. +p57520 +aVWhen my girl and I decided to get back together after our separation. +p57521 +aVI was so sick that my relatives thought that I was bewitched. I felt like dying. +p57522 +aVWhen my girlfriend left me to go out with another guy, even though she knew that she was wrong. +p57523 +aVWhen my girl went away for a holiday without saying good-bye to me. +p57524 +aVWhen I failed my first biochemistry test. +p57525 +aVWhen I bought new clothes and put them on. +p57526 +aVI was trying to have sex with my best friend's girl but she did not agree to it. +p57527 +aVWhen I passed successive exams to enter the school of medicine. +p57528 +aVWhen I went to my first dental appointment. +p57529 +aVWhen my father banned me from going to his sister's home due to some misunderstanding between the two. +p57530 +aVWhen my girlfriend was afraid and anxious the day before taking her exam. +p57531 +aVWhen my room-mate made a mess of the room after having drunk the whole night at a graduation party ceremony. +p57532 +aVWhen I did not inform my friends of my forthcoming birthday. +p57533 +aVAfter I reluctantly refused to dine with a certain man on the same table. +p57534 +aVWhen my elder brother, who had gone abroad to study for six years, came back home safe and in good health. +p57535 +aVWhen I entered the dissecting room for the anatomy class and saw several dead bodies lying on the benches. +p57536 +aVI was in love with a very beautiful girl and when I went back for my holidays I found her wth another guy who she said was just a friend. Later I found them together and was convinced that there was something fishy. +p57537 +aVWhen I went to see the dead body of my uncle. This was a very dramatic expreience as it was the first time that I entered a mortuary. +p57538 +aVI went to spend a night with a relative of mine and there I found that the bed had been wet the previous night. +p57539 +aVWhen the brother-in-law of a girlfriend of mine found us in a bedroom with clothes and panties spread all over the place. +p57540 +aVThe first time that I ""played with myself"" despite being a Christian. I had read in the bible that it was wrong to make love to someone one is not married to. +p57541 +aVWhen I heard that I had got the best result in school and would be definately selected to the university of Zambia. +p57542 +aVWhen I entered the dissection room for the first time and was exposed to preserved dead human bodies. +p57543 +aVWhen I learnt that my younger sister had been expelled from secondary school because she was pregnant. That was the second time that this happened in the family - the first time it had been my elder sister. +p57544 +aVWhen I realized that I was in hospital after a car accident and that I had a scleral tear in my left eye. +p57545 +aVWhen a ""friend"" woke me up in the middle of a blessful sleep by knocking on the door. Then he started calling me names and saying that he had heard that I had been talking behind his back, this was a lie and the guy was drunk to the core. +p57546 +aVWhen I did not do well in the PG310 test I, I got only 4 marks above the pass marks despite my effort. I felt bad because quite a number of friends did better. +p57547 +aVWhen I realized that not all my friends like the comments that I pass in their presence. +p57548 +aVWhen I was accepted into the medical school. Medicine is a profession that I have desired ever since my childhood. +p57549 +aVWhen the time came for me to see dead bodies and to operate on them. +p57550 +aVWhen I was accused of having planned my friend's outing at secondary school (boarding) as we were not allowed to go out. +p57551 +aVWhen I realized the burden it was for my mother to look after all of us, all by herself. +p57552 +aVWhen I heard that a woman of my community had aborted and got rid of the foetus by throwing it in the drain. +p57553 +aVWhen I blamed my failure to the bias and favouritism in the marking system, in fact I had not worked hard enough. +p57554 +aVWhen my friend ended up pregnant by a gentleman whom I considered to be good and faithful but he ended up neglecting her and not bothering about her. +p57555 +aVWhen I heard that I had been selected fot the first year at the university of Zambia. This was after my form five at Chikola secondary school. +p57556 +aVWhen I took the first year university exams and made a lot of mistakes in the P110 exam. I was afraid of failing and thus being unable to go to the school of medicine. +p57557 +aVWhen my brother-in-law's brother stole my clothes when my brother-in-law and I had gone to cut wood for the fire. +p57558 +aVWhen I heard that my father had been involved in a car accident in Lusaka. This happened when he had gone to get the car which had been stolen in Lusaka. +p57559 +aVWhen I was accused of having impregnated someone's daughter, it was the girl's cousin who had done it. +p57560 +aVWhen my darling found me walking hand in hand with another girl whom I loved also. +p57561 +aVWhen I told my uncle a false story - that people had stolen the books from my room and I demanded money from him. When he found out the truth I was in trouble. +p57562 +aVWhen I won the best prize in the National science fair. +p57563 +aVWhen I was chased by a big dog near my house. +p57564 +aVBeing hooted at when I was learning to drive. +p57565 +aVWhen my grandmother died - having to see my mother weep. +p57566 +aVWhen I saw a drunk man urinate upon himsellf and he seemed to be thoroughly content with it. +p57567 +aVWhen I had to walk home from the bus-stop in a skirt that I had soiled. It drew a lot of attention and they all seemed to want to see the blood stains. +p57568 +aVWhen I overate at lunch. +p57569 +aVWhen I heard the examination results and when I recovered after having been sick for a week. +p57570 +aVWhen my mother was seriously ill and had to be admitted to the hospital. +p57571 +aVWhen someone took my things without having asked for my permission. +p57572 +aVWhen my father passed away. +p57573 +aVWhen I went to the clinic for a medical check-up and saw the way the lecturer was conducting the lecture and the kind of responses he got from the patients. +p57574 +aVWhen I did something naughty and it lead to the embarrassment of my parents. +p57575 +aVWhen I lied to the physiology teacher. +p57576 +aVWhen I learnt that I had been accepted at the medical school. +p57577 +aVWhile drinking a soft drink, I had the impression of swallowing a piece of glass so I went to the district hospital and got admitted there. +p57578 +aVWhen my room-mate was making noise deliberately, by playing a flute early in the morning while I was trying to study. +p57579 +aVWhen my grandmother passed away. +p57580 +aVI witnessed a scene in which two women were abusing each other. +p57581 +aVOne morning after breakfast I was still not satisfied. My nephew (a small boy of 2) had not eaten his breakfast and just when I was taking a bit of his share someone walked in. +p57582 +aVI was to take a test and I had not made the necessary preparations until it was too late. There were two days to go and I still had not done much. +p57583 +aVWhen I was selected to the university of Zambia. +p57584 +aVWhen my father was involved in an accident. +p57585 +aVWhen a few girls were talking rubbish about me. +p57586 +aVWhen my beloved uncle was shot dead by relatives. +p57587 +aVWhen I failed the entrance exam of the medical school and was studying biochemistry which has no job prospects in Zambia. +p57588 +aVWhen my sister became pregnant at UNZA last year. +p57589 +aVWhen I got very drunk and really misbehaved at Christmas. +p57590 +aVWhen I was offered a place in the university as a full time student. +p57591 +aVWhen I was first exposed to the dead bodies, for dissecting purposes at the school of medicine. +p57592 +aVWhen our government decided to withdraw student allowances as it was one of the conditions imposed by the IMF. +p57593 +aVWhen my father was imprisoned for burning the house of his younger brother. +p57594 +aVWhen my elder brother failed form five in 1968 when I was 5 years old. +p57595 +aVWhen I contacted a sexually transmitted disease and the lecturer came to know about it as it was he who treated me for it. +p57596 +aVWhen I cheated my trusting girlfriend by telling her that I was a qualified doctor and later she found out that I was only a medical student at the preclinical level. +p57597 +aVWhen I heard that I had passed the second year exams. +p57598 +aVWhen I was about to be bitten by my friend's dog, later on it bit me. +p57599 +aVWhen I heard that an acquaintance of mine was spreading rumours about my affair with a close friend. +p57600 +aVWhen a close friend of mine collapsed and passed away and the illness was not known. +p57601 +aVWhen my father shouted at me for going to a party with my sister. +p57602 +aVWhen I failed the grade seven exams. +p57603 +aVWhen I forgot to cook something that my mother had told me to, and at supper time the food that I was supposed to have prepared was not there. +p57604 +aVWhen I qualified for form I. +p57605 +aVWhen I was going home for my holiday, I almost drowned in the Zambezi river. +p57606 +aVWhen the paramilitary was sent to the UNZA and it started using tear gas and started intimidating the students without any provocation. +p57607 +aVWhen my grandfather died. +p57608 +aVWhen my parents insisted that I take up a teaching career. +p57609 +aVWhen my cousin's wife refused him sex and claimed that she was my girllfriend. I think that there is something wrong with the woman as I have never even thought of having sex with her. +p57610 +aVWhen I beat up my brother so badly, for not having gone to school, that we had to take him to hospital. +p57611 +aVWhen the Cambridge results came out and I obtained a first division. I had been thinking that I had not done very well. +p57612 +aVI was walking along the passage to my room (very near the anatomy laboratory) and I heard something and felt that there was some thing behind me. I looked back and there was no one. I started imagining that maybe it was a corpse. +p57613 +aVIn form three we were taking our mock exams and someone else (a friend) was making noise when the examinateur picked on me and said that he would tear up my answer sheet. I got very angry with the girls involved. +p57614 +aVWhen my brother (5th in the family) passed away. +p57615 +aVWhen a girl I knew aborted and threw the seven month foetus in a man-hole. +p57616 +aVAs a young girl in form I, I wet my bed one day at the boarding school and many girls came to see the person who had done it as I had to take my mattress out that day. +p57617 +aVWhen I laughed at a lame man walking down the road, it looked funny at the time but later I felt lousy. It was the same day that I had stolen some coins from my mother in the shop. +p57618 +aVWhen I passed and qualified for the university. +p57619 +aVWhen my sister was very ill and was admitted to the hospital. +p57620 +aVWhen my father failed to send me transport money after the closure of the school. +p57621 +aVWhen my parents separated temporarily and I was left behind with my father. As I loved my mother I wanted to go with her. +p57622 +aVWhen I beat up my brother in order to control him and make him obey my parents orders. +p57623 +aVWhen I was hungry, I tried to take the money that my mother had saved up for something else. +p57624 +aVI encouraged my brother to play football and he was hurt while playing the game. +p57625 +aVA few weeks back I received a Christmas card from a friend in England. She had not written to me in a very long time but it showed that she still remembered me. +p57626 +aVThe first time that I saw a dead person. This was when I started my gross anatomy practicals. +p57627 +aVI once failed a test miserably and my friend did very well and someone made a nasty comment while comparing me to my friend. +p57628 +aVA friend of mine got pregnant anf failed the first year at university. The boyfriend refused his responsibility and they ended up in court. +p57629 +aVI once saw an elderly lady who was not properly dressed. She was wearing a transparent dress, such things are not sopposed to be seen in African society. +p57630 +aVDuring my childhood I once lied and my sister found out. +p57631 +aVWhen I heard that I had been selected for the university. +p57632 +aVWhen I was left alone at home one night by my brother. +p57633 +aVThe government's announcement of the withdrawal of the student allowances in 1984. +p57634 +aVWhen I first suffered from syphilis. +p57635 +aVBeing mistreated by my former primary school teacher, Mr Zalu. +p57636 +aVLying to my cousin about the form five examination fees. +p57637 +aVIn September 1984 I got two girls pregnant and the families of both the girls confronted me . The fact was that my parents were around and I felt guilty answering some of the questions. +p57638 +aVWhen I was with the girl I love very much, for the graduatiion ball. +p57639 +aVWhen I was first taken to the dissection room where I found 10 dead human bodies. +p57640 +aVI was really angry when the President general of UNZASU was arrested by policemen. +p57641 +aVWhen one of my closest friends failed to make it to the third year of university. +p57642 +aVWhen my parents complimented me very nicely on something. +p57643 +aVWhen I had to talk to some strangers, from whom I was expecting a negative answer. +p57644 +aV When some difference of opinion occurs in a silly situation. +p57645 +aVI wanted something in particular and did not get it, also there was no possibility of getting it. +p57646 +aVI felt disgusted when we (family) avoided a problem which could be solved readily. +p57647 +aV I feel shame when I do not arrive on time and others have to wait for me for a long time. +p57648 +aVWhen I could not fulfill my expectations. +p57649 +aVWhen I got engaged to a boy of my choice. +p57650 +aVWhen I saw the movie ""Poltergist"". +p57651 +aVWhen my mother scolded me for coming home late, i.e after 7 P.M. +p57652 +aVWhen my grandfather died. +p57653 +aVWhen a close friend of mine maintained a relationship with me till she needed me and broke it off when she did not need me. She behaved life a really selfish person. +p57654 +aVWhen I passed my B.A exams. +p57655 +aV While approaching to test the situation. +p57656 +aVWhen my boyfriend told me that it would be difficult for him to marry me. +p57657 +aVWhen I left my part-time job. +p57658 +aVI felt very disgusted at a friend to whom I had given a Psychology book to read, and she did not care to give me back the book during the exams. +p57659 +aVWhen an intimate friend of mine passed B.A with first class and I got only pass class. +p57660 +aVWhen I did not concentrate on my studies despite my mother's help and cooperation. +p57661 +aVFailing in the English language exam. +p57662 +aVMentioning a book to the person who borrowed it. +p57663 +aVBeing chosen to do this experiment. +p57664 +aVFinding out about people can go mad for social reasons. +p57665 +aVSomeone borrowed my textbook and deliberately did not return it. +p57666 +aVI like someone who does not like me and was rude to me. +p57667 +aVCueing for bath for a long time. +p57668 +aVMy article not chosen by the college newspaper +p57669 +aVI did not do my homework and went to see a film. +p57670 +aVDoing well in the examn. +p57671 +aVA relative died. +p57672 +aVBad food in the students' dining hall. +p57673 +aVCould not get into the university I wanted to get in. +p57674 +aVNoisy people in the library. +p57675 +aVMeeting other friends who got in the good universities. +p57676 +aVTelling my parents that I did not get into a good university. +p57677 +aVGetting into this university to do medicine. +p57678 +aVBefore the first examn. +p57679 +aVSomeone messing up the room we share. +p57680 +aVMy best friend could not get into university. +p57681 +aVSome students trying to please the lecturer. +p57682 +aVNot chosen for all English classes. +p57683 +aVI am not good enough to join any team to play sport for the class. +p57684 +aVReading a nice book and talking about it to my friend. +p57685 +aVBeing threatened by another person. +p57686 +aVInsulted by the class leader. +p57687 +aVSaying goodbye to a friend. +p57688 +aVSaw a dead rat on the street. +p57689 +aVNot doing well in the examn. +p57690 +aVToo busy to write letters to friends and they said I had forgotten about them. +p57691 +aVGoing to a concert. +p57692 +aVGot ill. +p57693 +aVTripped on a busy street. +p57694 +aVA child beaten up by his mother. +p57695 +aVFirst anatomy lesson. +p57696 +aVFailing an examn. +p57697 +aVBroken a friend's cup. +p57698 +aVGood dinner on the National Day. +p57699 +aVSaw a snake unexpectedly. +p57700 +aVSeeing this badly made questionnaire. +p57701 +aVYou ignored the fact that we could not hear you at the back. +p57702 +aVDead rat in the kitchen of the university. +p57703 +aVFailing an examn. +p57704 +aVDid not pick up a water mellon skin, someone slipped on it. +p57705 +aVWatching the Asian Olympic game (China winning). +p57706 +aVSomeone frightened me in the dark. +p57707 +aVPeople having a football match outside the window during the lecture. +p57708 +aVChina can not even give you good sound systems for an open lecture. +p57709 +aVPeople talking in an important lecture. +p57710 +aVNot being able to hand in homework in time. +p57711 +aVThinking about other things in a lecture. +p57712 +aVGot a big fish in fishing. +p57713 +aVHeard some ghost-like noise at night. +p57714 +aVA father helping his kid to fight other kids. +p57715 +aVA father of 4 children killed in an accident. +p57716 +aVWhen junior doctors returned to work after bunking them. +p57717 +aVWhen I was caught with someone's daughter. +p57718 +aVWhen the student union leaders were expelled from the university and we continued to study. +p57719 +aVWhen my boyfriend and I made up. +p57720 +aVWhen I was watching a movie in which there was a pit full of dangers and there was only a small safe place on which a man was standing; he had to catch the lady who was thrown in or else ! The pit was 20 feet deep. +p57721 +aVMy mother and my sister carried on picking at me all day long for no reason at all and I ended up getting angry. +p57722 +aVWhen my boyfriend almost had a relationship with a close friend of mine. +p57723 +aVWhen a classmate of ours knocked on our door at 2 o'clock in the morning. I was disgusted at his behaviour. +p57724 +aVI told a lie about someone to someone else and they found out and questioned me about it. +p57725 +aVI broke a cup and put it back without telling anyone about it and someone almost got blamed for it, then it was discovered that it was me who had broken it. +p57726 +aVAt church camp when I accepted Christ into my life and so did my friend. +p57727 +aVI was complaining about calling people whom I didn't know. I forgot that the purpose is to invite people for dinner and get to know them. +p57728 +aVWhenever I see poverty and starvation. I live in an affluent society and am privileged to have many opportunities. +p57729 +aVDuring the summer I received grade cards from my TA's. I expected a B no better in Computer Science. I looked at the card - I got an A - I was ecstatic. +p57730 +aVEnglish papers are due on Friday. They are returned on Tuesday. This Tuesday I was afraid to go to class and get my paper because I knew it was bad. +p57731 +aVA friend of mine came to visit and stayed with my roommate and me. My roommate and she became good friends. After she left, he didn't talk too highly of her. +p57732 +aVAfter receiving the grade on the paper mentioned in FEAR. +p57733 +aVSeeing a person panhandling money on Telegraph. +p57734 +aVAfter the car accident in GUILT. +p57735 +aVThe night of a high school dance, I went partying and collided with another car. Both cars were totalled; people were injured but not seriously. +p57736 +aVWhen seeing a friend that I had not seen in a long while. +p57737 +aVFear of doing well on a midterm. +p57738 +aVI felt anger at my roommate due to his habit of leaving dirty dishes in the sink and generally not cleaning after himself. +p57739 +aVWhen my grandmother after staying with us for awhile went back home. +p57740 +aVI felt disgust as a result of one of my midterms - I thought I had prepared well for it, but the end result wasn't what I had expected. +p57741 +aVI felt shame when I saw someone I knew and pretended not to see her. Later she saw me and said hi. +p57742 +aVIn neglecting some work that had to be done around the house and telling my roommate I would get it done. +p57743 +aVAchieving my goal at a swim meet. I worked toward the goal for 9 yrs. I was capable of achieving it, but I didn't know when. +p57744 +aVHousesitting and hearing the alarm go off. I knew someone had to be breaking in. I called the police and was panicking while on the phone. It was awful. It turns out that I stepped on the hidden alarm without prior knowledge of its existance. +p57745 +aVGoing to Cowell Hospital and finding out tediously that I had a stress fracture. The anger came when the senile doctors found out 4 weeks later that I had 2 stress fractures in one foot and should have had crutches. I was in distinct pain and barely could walk to classes. They said it would be better in 2 weeks. +p57746 +aVLosing my job that I had for 4 summers. I took it personally and cried for 6 hours off and on. I wanted to hide away and did for a few days. +p57747 +aVSeeing a friend ""making love"" to a high school girl. I accidentally was dragged into this room where the happenings had occurred. I was disgusted at the reality. +p57748 +aVI borrowed a gold bracelet without the girl's knowledge. I had it for so long I had to keep it. To this day I feel ashamed at myself for having it. I never wear the thing anymore. +p57749 +aVAfter moving out of my apt. I took all the furniture and dishes and everything. It was mine but I took it all just to spite my roomies. We had a few (a lot) of disagreements. I felt guilt for moving out for the bad reasons. +p57750 +aVIt was the weekend of my homecoming. I saw my sister for the first time in 3 months. She's my best friend and extremely close. +p57751 +aVAfter my shoulder operation, I woke up in the hospital room alone. I was in pain and was still under heavy medications. I could not find my parents. +p57752 +aVWhen I found out my cousin had been killed. I was angry at the world, and her murderer who was her ex-boyfriend. It was the worst and most hateful day of my life. +p57753 +aVI spent a weekend in San Diego visiting my boyfriend Rob. We were at the airport and my plane was just about so leave. After saying goodbye, I boarded the plane. It was the hardest thing to do and it was a sad trip home. +p57754 +aVI was supposed to be studying for my math midterm a few days ago, however, I fooled around with my roommate, and didn't start studying until 12:00 am. I was disgusted with myself. +p57755 +aVSince I've been here I haven't written to any of my relatives. I got a letter from my mom telling me how upset my grandparents are from not hearing from me. +p57756 +aVI got an A in anatomy - the first one I have ever gotten in a science class here. +p57757 +aVA man in a car was following me when I went running early one morning in a fairly secluded area. +p57758 +aVI caught a ""peeping tom"" at my window when I was getting undressed. +p57759 +aVSaying goodbye at the airport to my boyfriend who has to go to school back East. We are very close and have been together 4 years. +p57760 +aVMy parents claimed me on their income tax after I had been out of the house for two years receiving no financial support from them. As result I had to work more during school because they were expected by the FAO to contribute to my education when they refuse to do so. +p57761 +aVI was wearing a short skirt one day and someone told me my underwear was showing. +p57762 +aVGetting a D in a class last semester and knowing it was because I didn't study. +p57763 +aVWent to a movie with a date, walked on the beach (in Alameda) spent some time afterwards in her apt. +p57764 +aVAt age 10 my foster grandmother died, I had a fear of dying. +p57765 +aVI am currently taking CS 50P. I had to finish a couple of assignments but I was hindered because I could not get a passing score on my program. +p57766 +aVThe girl I was seeing didn't want to have a serious relationship. +p57767 +aVI found out that someone that I knew had someone else taking tests for her. +p57768 +aVOne night a friend found out that I dumped one girl for another and he proceded to lecture me. +p57769 +aVI called off a relationship with one girl so I could see another. +p57770 +aVI asked someone to go out and she accepted right away. +p57771 +aVI was driving and stopped at a stop light. I was planning to make a right turn as soon as it was clear. It was clear on the left so I started but a man was just in front of the car. +p57772 +aVDuring a dance someone slashed my tires and dumped paint on my car. I had four other friends with me that I drove and furthermore it was raining. +p57773 +aVWhen I was trying for a girl who I really liked and cared for and thought she felt the same way too. But she didn't like the idea and just wanted to stay friends. +p57774 +aVWhen I lose on my bets on anything - baseball, football, basketball, track, craps, poker, or arcade - whether its 5 dollars or 200 I feel that I should never have done it in the first place. +p57775 +aVI took my math midterm and got it back the following Wednesday in class. It was a totally low grade. +p57776 +aVMy mom told me not to gamble, but I did anyway. Sometimes I would even take some money from my parents and brother. She found out and yelled at me. +p57777 +aVFinished a difficult midterm. +p57778 +aVI confronted a bigger person than I and almost got into a fight. +p57779 +aVI was called racial slurs behind my back. +p57780 +aVMy grandmother died during Christmas break several years ago. +p57781 +aVSaw a scene in a movie implying incest as humorous. +p57782 +aVWhen given responsibility to grade papers in elementary school, I cheated a little and graded my own higher. +p57783 +aVWhen I was a kid I stole toys from other kids. +p57784 +aVDid very, very well on a Physics midterm. +p57785 +aVAlone in the house (late 8pm) I heard noises. Sounded like someone was trying to get in our back door. +p57786 +aVA friend doesn't let me study when I want to. She doesn't feel I need to study and doesn't understand how important studying is to me. I get very angry with her. +p57787 +aVDeath of a pet rabbit. We had to give it away because my brother became allergic to it. We gave it to a man who kept animals and lots of other animals for children to watch. We went to visit our rabbit. It was badly beaten by the other rabbits and eventually died. +p57788 +aVWhen I stand at the bus stop for one hour waiting for the bus to arrive. +p57789 +aVWhen I sat in the wrong discussion section in the beginning of the semester. I insisted on being in the right section and the TA's list should have included my name. When I found out that I was in the wrong, I apologized, turned red and left. +p57790 +aVAbout not helping my sister when she asked me to help her on her chemistry class. I pretended to be busy. +p57791 +aVWhen I won my car. +p57792 +aVGoing to take my driving test. +p57793 +aVI came home one day and discovered that my sister had borrowed my car and had gotten into an accident with it. My entire front bumper was destroyed. +p57794 +aVWhen I heard the news that my grandfather had died. +p57795 +aVWhen a friend of mine keeps telling me morbid things that happened to his dog. +p57796 +aVWhen I purposely locked my babysitter out of the house at age 4 because I DIDN'T LIKE HER. +p57797 +aVWhen I did not go to work because I had to study for a midterm. +p57798 +aVAt a party in which I met an interesting female. We enjoyed eachothers company, while slow dacing. +p57799 +aVA friend and I were going to have a study session together in which we quiz ourselves in biology material. Because I believed I didn't study enough. I feared I would fail. +p57800 +aVI live with my sister now and sometimes she angers me especially when she thinks I don't keep the apt. clean enough. +p57801 +aVWhen I found out that I could not go to the concert (after buying the tickets) because of a biology test which occurred the morning after. +p57802 +aVRight now I volunteer at a hospital. Yesterday, Halloween, I dressed up as a doctor and went to work. The volunteer coordinator told me after my shift that it was dangerous to have done what I did. +p57803 +aVWhen I get an exam back with a grade that I did not desire. Then I get mad at myself and say that I could have done better. +p57804 +aVAfter days or weekends where I did not accomplish the amount of sudying that I wanted to because of more pleasant activities which come up. +p57805 +aVLast year my freshman yr. It was a day in March I did well on some tests. I seemed to finally adjust to college, it was hot and sunny. I was walking in front of a frat. when I heard Beach Boys ""Surfin'USA"". I had this overwhelming feeling that to be at CAL was good. I still have it somewhat. +p57806 +aVDuring one year my mother almost had a nervous breakdown and my father had a serious operation. I was afraid that our family (4 kids, I'm the oldest) wouldn't hold together. Everything turned out fine. +p57807 +aVLast semester when I dated a girl whom I've known for almost a year. However one night she said she wanted us to be ""just friends"". I confided this to a friend Jim I was really suffering. A month or two later he broke up with his old girlfriend and they started going out regularly. I have no girlfriend nor have I had a romantic relationship of any significance. I feel some anger but we are friends again. +p57808 +aVWhen I was a Sr. in HS. one of the class counselors died of hepatitis. She was very sensitive. She knew my shyness and drew me out to improve myself image. I missed her funeral - so I could not publically grieve. My parents didn't understand. +p57809 +aVI applied for a job of GALSO counselor and I made the strongest possible application but was denied an interview. I felt disgusted at the system which by promoting the cause of minorities makes employing whites lowest priority. +p57810 +aVI was angry about 3 months ago and I kicked backwards against the wall. It caved in and so I had to show it to my parents. I had been angry after my mother said something to me about not being able to find clothes in my size - something that I'm sensitive about. (6' 5'' 210) +p57811 +aVWhen I lied last week. I lied to someone to get info. for a paper I was writing. I told her that the info. was for a newspaper article. I was afraid if I told the truth she wouldn't help me. +p57812 +aVSomeone (a boy) paid special attention to me. +p57813 +aVGetting back my Psych 140 midterm. +p57814 +aVMy roommate leaving my drawers in a mess after plowing thourgh them looking for something. +p57815 +aVMy friend who was in the Bago was kicked out of the sorority. +p57816 +aVA friend of mine had sex with someone of a different race on a Winnebago trip down to USC in front of everyone (all my friends embarrassed my sorority house name). +p57817 +aVWhen I lied to my best friend about a boy she really liked but he didn't like her. I told her he did and she bugged him for a long time embarrassing herself. +p57818 +aVI'm allergic to most foods - eating something that I'm allergic to caused guilt. +p57819 +aVMy last genetices midterm - a decent grade. +p57820 +aVA certain night during initiation. +p57821 +aVWhen someone threw a firecracker into my room at 7:00 am in the morning. +p57822 +aVA close friend of the family died. +p57823 +aVWhen other people refuse to do their house jobs and give the work to someone else. +p57824 +aVNot doing my share of the work for the house job. +p57825 +aVForgetting a close friend's birthday. +p57826 +aVI received an unexpected B+ on an engineering midterm. I did not study nearly as much as I should have and it was a difficult test. +p57827 +aVI could not do the questions on my math midterm. +p57828 +aVI was supposed to meet my girlfriend at a pre-arranged place but it took me an hour to find her. +p57829 +aVMy grandmother died over the summer. I knew her very well, she baked great biscuits. She was in the hospital but expected to improve and go home soon. She died in her sleep. +p57830 +aVI saw part of a Prince video with him crawling out of a bath tub. +p57831 +aVMy grand father caught me eating his private jelly bean supply. +p57832 +aVI slammed my little brother into a wall because he was bothering me. +p57833 +aVFinding out my grades at the end of my freshman year. +p57834 +aVWhen I was going to bring back my girlfriend to LA to meet my parents. +p57835 +aVWhen I found out that my good friend and roommate did not pay the phone bill and electric bill like he promised and let me down. +p57836 +aVWhen I found out that my girlfriend would not be coming back to UCB for one semester, but would be living in San Jose. +p57837 +aVFinding out my grades at the end of my Sophomore year. +p57838 +aVWhen I found out my roommate had been talking behind my back about very personal things. +p57839 +aVWhen I was about 17 years old and I stole some pens from a stationery store because I didn't have enough money. +p57840 +aVGoing to Chico to visit a friend. +p57841 +aVFirst day back on the job. +p57842 +aVWhen the person I'm having the affair with won't talk to me in public. +p57843 +aVMy roommate's sister committed suicide. +p57844 +aVWhen I was getting so fat. +p57845 +aVLying to my grandparents about visiting my boyfriend in Chico. +p57846 +aVHaving an affair with my good friend's best friend. And every time I see my best friend I feel guilt because we can't tell him. +p57847 +aVWhen fell in love with my present girlfriend. +p57848 +aVWhen there was a bomb threat in Tolman Hall. This was the first time that I felt my life could be in danger. +p57849 +aVWhen people would tell me that my ex-girlfriend was playing around on me. +p57850 +aVWhen my grandmother passed away. +p57851 +aVWhen I study my butt off for a midterm and still get an average grade. +p57852 +aVWhen I was 10, I got busted for stealing a candy-bar. +p57853 +aVWhen I copy someone else's problem set. +p57854 +aVI got a very good grade on one of my midterms a few weeks ago. +p57855 +aVMy mom called early in the morning (On a Monday) and I had just seen her that weekend. I couldn't understand what could be so important as to make her call at such a strange hour. I missed the call and had to call her back that afternoon. +p57856 +aVMy peers didn't want me to meet someone during rush for fear that I would give her a bad outlook on our Sororoty house. I shouldn't have seen this, but they blew and I did. +p57857 +aVI was told that a friend of a friend committed suicide. +p57858 +aVDoing poorly on a midterm. +p57859 +aVMy boat didn't win a race which we were favored to win. +p57860 +aVSleeping through crew practice one Monday morning. +p57861 +aVWhen I had achieved a goal indirectly. I work for CAL Football and our 2nd win of the season was very gratifying and brought our joy because of the hard work involved and the fact that no one expected we would win. +p57862 +aVUpon reading a story on a serial killer by the name of Henry Lee Lucas who has been given the distinction of killing more people that any other man. I began to wonder if I should take more care for my safety. +p57863 +aVI had worked long and hard on a project when a friend inadvertantly destroyed it. I could not forgive him for a long time. And at times still get angry at him. +p57864 +aVWhen a pet died. The pet was the closest friend I had for 15 years. +p57865 +aVWhen people/press analyze a particular newsworthy item (CAL Football team) which I am a member and can only see the situation in a bad light and always put the team down. +p57866 +aVRecently, some friends and I had too much to drink while on a foot-ball road trip to USC. We trashed our hotel room and I felt ashamed when the maid walked in the next morning. +p57867 +aVI felt guilty when I mislead a person into thinking he was a close friend when that person was more of a casual acquaintance. +p57868 +aVGetting my accentance letter from CAL. +p57869 +aVOne summer when I was camping with friends they devised and elaborate plan to scare me by having our camp attecked by a wild animal (one of them) and then convincing the campground was the home of a satanic organization. +p57870 +aVI went out dancing and found my boyfriend kissing another girl. +p57871 +aVAt the end of my senior yr. in high school I found out that a friend of mine I knew had cancer had been diagnosed as terminally ill. +p57872 +aVSitting in the dorm when the guys were verbally reading letters in Penthouse. +p57873 +aVI slipped on butter one evening in the Dining Commons landed on my rear causing my tray also to land on the floor. +p57874 +aVA person I was attracted to walked me home in the rain and got sick. +p57875 +aVToday I did a lot better on my architecture project than I expected. +p57876 +aVWhen I was little I lost control of my bike and started to go into a buay intersection but my neighbor stopped me just in time. +p57877 +aVThis summer I got into a fight with one of our patrons (at a theatre). He hit me and I hit him and her friend, he hit my friend and we all hit eachother. +p57878 +aVThis monday I took a Math 1BS test and flunked for the second time. +p57879 +aVWhen I found out the CIA was mining Nicaraguan harbors. +p57880 +aVA month ago I turned in an English paper in late after I had already had a previous paper late and promised not to do it again. +p57881 +aVI forgot my mother's and sister's birthdays (they fall on the same day). +p57882 +aVWhen I received a letter of acceptance to CAL. +p57883 +aVA time when I was very afraid of something was when I broke my father's antique lamp. +p57884 +aVWhen someone told a secret I told them not to tell. +p57885 +aVWhen my mother was very sick and almost died. +p57886 +aVWhen I saw President Reagan get elected. +p57887 +aVWhen I failed some tests my first year at CAL. +p57888 +aVWhen I stole something. +p57889 +aVI gave my mom a gift she wanted for years. I raflected her joy. +p57890 +aVWalking through campus at night a squirrel jumped in front of me. +p57891 +aVAfter a long trip in my dad's van without incident I stopped to fill the tank with gas and dented the side of the van against the pole. Then my cars electrical system would not work when I tried to drive home from his house. +p57892 +aVAt one point in a relationship, my boyfriend was seeing an old flame more than me. At our confrontation tears were shed. +p57893 +aVWhen a skunk invaded camp. +p57894 +aVI made an unkind remark about the ethnicity of some friends without realizing it. +p57895 +aVI mangled the side of my dad's van on a fence. I did not realize the extent of the damage until he showed it to me the next day. The shock on my face was genuine so a friend interceded with a good excuse which I did not deny. I never clarified the situation. +p57896 +aVWhen I finally got a job after days of wondering whether I would be hired or not and counting on the money that it would bring. +p57897 +aVWhen I had to walk home in the dark for the first time. +p57898 +aVA time when, as part of my work, I was sent out actually sort of volunteered to run an errand for someone who had no authority to send me out and the address was very far especially on foot and turned out to be incorrect too. The whole trip was a waste. +p57899 +aVWhen my boyfriend said he did not want to see me anymore (which turned out to be untrue). +p57900 +aVWhen my roommate forgets to flush the toilet. +p57901 +aVWhen I did poorly on a test and I knew that there wasn't an excuse for not doing better. Made mistakes I could not believe I made. +p57902 +aVRemembering (at the time I did not feel guilt) in recent yrs. how angry I would get when I was babysitting my new brother and he would not stop crying. I did not do anything harmful or shocking. But I feel guilty for treating him the way I did especially since I adore him now. That's why I spoil him now. +p57903 +aVYesterday when I received a B on a history midterm. I felt overjoyed after having received C's previously. +p57904 +aVWhen I began school at UC. The pre-enrollment the classes, and the question of success really scared me. +p57905 +aVA month ago when one of my fellow workers got a promotion over me. It was just a small promotion but recognition was involved. +p57906 +aVWhen another fellow worker decided to leave the company. We had been very close and we would not be able to work with eachother any longer. +p57907 +aVThrough the media and their presentation of a kidnapped child who was raped. +p57908 +aVWhen I had not been accepted to a college which I dreamed of going to. I felt that I had let myself and my parents down. +p57909 +aVI told my parents (or more realistically) would not do what they wanted me to do anymore. I guess I sort of betrayed them after all they had done for me. +p57910 +aVWhen I drove partially across the country with my father. We stopped in a few towns and stayed overnight in motels. The joy I got was from the feedom I felt and the real beauty of the country. +p57911 +aVOne day before Christmas, I went shopping with my brother and his friend. We had a good time. But on the way home we were almost in an accident because the weather was bad. +p57912 +aVI can't remember being truly angry. Usually it's just disappointment that I feel. One situation would be with my brother. He and I used to be close but now he seems to be avoiding me. +p57913 +aV4 years ago my family decided to move from New York to California. From the time we decided to move until the time we left, I realized how much my friends cared for me. When we left and for a long time after that I was very sad. +p57914 +aVOnce when I was babysitting for some neighbors children I found roaches in ther bathroom. I had never seen a roach before but I called my mother to make sure that's what they were. And she came over and checked. +p57915 +aVThe first time I slept at my boyfriends house and had to walk down the hall to the shower in front of his housemates. I felt they were judging me. +p57916 +aVI was at school and afterwards went to work. After work I went to see a friend and stayed out late. when I got home my mother was awake and I felt guilty. +p57917 +aVThe last time I had sex. +p57918 +aVafter getting a fail notice for a math class, I realized I was not doing very well in school in any subject. I began to fear failing a class or two. +p57919 +aVPhysically fighting with my girlfriend because she just walked out of a room of my friends and had pushed and cursed at me when I went to find her. +p57920 +aVHearing about a friend back home that had to have his stomach pumped because he had overdosed on pills. +p57921 +aVAfter learning on the news about this man who killed more than 300 women and habitually copulated into their inert bodies. +p57922 +aVI had just masterbated with another boy. +p57923 +aVGoing out with another girl besides my girlfriend and not telling her. +p57924 +aVReading a letter from a close friend who said he missed me and cared for me. +p57925 +aVGoing to CAL not knowing anyone. +p57926 +aVWhen a close friend did not write. +p57927 +aVLeaving high school. +p57928 +aVWhen my roommate came home at 10 in the morning after sleeping with a guy she did not know because she got drunk. (Se has a boyfriend too). +p57929 +aVFooling around with this guy I did not know. +p57930 +aVNot noticing my roommates quietness or a sign of discomfort. +p57931 +aVI went home and visited with my family and friends. +p57932 +aVTaking a chemistry midterm. +p57933 +aVWhile I was away for the weekend some friends went into my room and played my very expensive stereo without asking me or my roommate. +p57934 +aVI asked a girl out on a date and she said no. +p57935 +aVI was playing a sport in an advanced PE class and many of the people were not advanced. +p57936 +aVI bought a possible answer to a homework problem which was completely inapplicable to the question due to my not having read about the subject matter. +p57937 +aVLately I've felt guilty because I'm folling behind in my classes and not studying much. +p57938 +aVReturning to school and rejoining my girlfriend after 3 months of separation from summer. +p57939 +aVWaiting for my girlfriend to come from her apt. to mine. She was very late and I thought something awful had happened. +p57940 +aVI bought a new bed for my apt. and it squeaks when you move on it. I tried to fix it but could not. +p57941 +aVFinding out that my grandfather had died. He lived in England and I had not seen him for 10 years. +p57942 +aVCleaning the bathroom of my apt. and realizing my roommate who had lived there all summer by himself had never cleaned the place. +p57943 +aVDoing poorly on an exam that I thought I should do well. +p57944 +aVCriticizing my mother when she refused to drive with the radio on. I told her that I thought she wasn't intelligent enough to cope with the radio. +p57945 +aVMy boyfriend and I were getting dressed up and putting make-up on to go to a Halloween Party. We were dressing up to be two mimes. It was very enjoyable and I thought we looked really good, it was an accomplishment. We were alone in his house. +p57946 +aVI needed a recommendation for something. I decided that the best person to get one from was a professor who I had never talked to before. I felt a lot of fear going up after class to ask him to recommend me considering he had never heard my name before. But I did. +p57947 +aVI had been searching for housing for Fall at UCB and I was finally offered a place - then an ordeal followed, first I accepted then refused - related to my parents judgment (they're paying for me). Turns out that I was so upset at what my Dad said to me that I hung up on him. He called back and threatened to cut me off financially and emotionally. +p57948 +aVWe got news that my (almost) 21 years old brother died while visiting Europe of a cerebral hemorhage. It finally hit me an hour after we saw his corpse in the coffin. It felt like a door between himself and everything had closed and locked forever. +p57949 +aVI was reading in the paper the feature on Henry Lucas who claims to have killed 380 people. He was a recreational killer and a necrophiliac and zoophiliac. He has raped and beaten many women and killed men too. +p57950 +aVThe people on my floor last year were very close. This year 4 of our best friends live together in an apartment. My boyfriend and I dropped by on one of their birthdays and stayed for dinner. Two other people had already been invited and I felt uncomfortable and unwanted. Then I realized I was the one who always called them and they rarely call me. +p57951 +aVI was talking to my mom on the phone and she told me that she had just gotten an award that day in front of all these people and she asked me if I wanted her to send me the article in the temple newsletter to me. I said no very quickly and felt guilty for not being more interested and hurting her feelings. +p57952 +aVWhen I found our my mother didn't have cancer. +p57953 +aVI was alone and someone tried to break in from our back door. +p57954 +aVWhen some friends betrayed my friendship. +p57955 +aVWhen I did bad on a chamistry midterm which I could have done well. +p57956 +aVWhen an employer of my younger sister (17 yrs) made a ""pass"" at her. +p57957 +aVDefying my parents and staying out all night when I wasn't supposed to. +p57958 +aVYelled at my parents for not buying me a car like other parents. +p57959 +aVRiding home from school after completing two midterms in two days, and feeling I did well on them. +p57960 +aVOccured while preparing for a midterm in Social Welfare that I thought was going to be very hard and felt unprepared for. +p57961 +aVArgument with roommate over a lock he had put on kitchen cupboard without telling anyone. +p57962 +aVDay time robbery of our house. +p57963 +aVRobbery mentioned under sadness. +p57964 +aVCaught lying to my father about a speeding ticket I had received. +p57965 +aVGetting a friend an open container ticket because I got caught speeding. +p57966 +aVWhen I found out I got accepted to Berkeley. +p57967 +aVBefore I moved away from home, I feared leaving. +p57968 +aVWhen a friend carelessly broke and object in my parent's house and did not apologize, or pay, or anything. +p57969 +aVI felt sadness when my grandfather died. +p57970 +aVThis person I know lied about how much income his parents made and received money through grants which he did not need. Another person is barely making it, did not lie, and did not receive enough money. +p57971 +aVAfter a big fight with my parents. +p57972 +aVI forgot about a close relatives's birthday. +p57973 +aVOn my birthday, my closest friends were here at Berkeley pithched in a lot of money each and bought me ten records to replace some of my records that were stolen. They threw a small surprise party for me too. +p57974 +aVWhile skiing in Squaw Valley, I was riding up a chair lift and right when the chair was above a sheer cliff of rocks, the chair lift stopped and all the chairs sagged and everything seemed to creak loudly. +p57975 +aVI received a poor grade on a midterm even though I got all the right answers and knew the material. I went to the TA to try to raise my grade and he wouldn't do it. +p57976 +aVMy girlfriend wanted to breakup for an indefinite amt. of time. She said that she couldn't commit herself fully to the relationship without going out with other people. I was her first boyfriend. +p57977 +aVI read in the newspaper about a 21 yr. old woman who was found naked and dead along a roadside. It turned out she had had two relatives 14 and 19 who were kidnapped, raped and killed earlier. +p57978 +aVI went to bed with a girl and the next day she thought it was the start of something serious and I just thought it was fun and I told her I wasn't interested in starting a serious relationship. +p57979 +aVI dreamed that this girl and I were cuddling in bed when my girlfriend walked in. I really love my girlfriend so I felt guilty and sad. I know that this is a wierd example but the dream and the feeling was clear to me as if it had really happened. +p57980 +aVBeing involved in a car accident and having my thumb caught in the glove compartment. My sister and I had a Fear of finally telling my parents, since my sister was the driver. +p57981 +aVA co-worker and I had to rush a project. I was only working there for one month and he for some years. Instead of letting me know that he wanted to do the project himself, he went to the superviser and let the superviser tell me to let the co-worker do it himself since he was quicker at it. +p57982 +aVLosing a pet chick. Our family had just put the chick outside a few days before and then one morning it was gone. +p57983 +aVHaving told a certain lie. +p57984 +aVI experienced joy at a friend's 22nd birthday party. We had good food, good liquid, good company, good music, and an overall warm atmosphere. The birthday girl and I communicate incredibly well. I felt very content, warm and inspired just talking with her giving her a neck massage. +p57985 +aVTwo summers ago my best friend and I drove into unknown mountains at midnight to pick up my broken car. We told one another horrifically scary ghost/murder stories and succeeded in scaring eachother pretty well - even though somewhere in our heads we knew the fears were unjustified. +p57986 +aVI had just seen my pseudo-girlfriend and our conversation angered me greatly. +p57987 +aVMy grandfather died thirteen years ago. +p57988 +aVWhen one individual takes advantage of and/or injures another relatively defenseless individual, consciously. I feel disgust mingled with anger. A person on my dorm floor verbally assaulted another person for having a certain religious belief. +p57989 +aVI borrowed $ 20.00 from a friend and paid him back much later than I had originally intended. +p57990 +aVI angered a close friend and he was injured. +p57991 +aVMy parents and brother came up over the weekend. We are a very close family. This was my first year away from home. They brought one jacko-lantern with a new design. That is the old joke that we have a great new design - it's always the same. +p57992 +aVI was to meet one of my friends (girl) at the library at 8:00 already dark. She would be walking alone. She was 45 minutes late but I kept waiting, calling her room and other places she could have been. +p57993 +aVWhile studying chemistry with a friend we became angry with eachother because we were both fed up. +p57994 +aVI received a letter from my grandmother. She has obviusly suffered a lot from my grandfather's suffering health. She mentioned things she had gotten him and he would never use. +p57995 +aVOne of my good friends told people something I had told her in confidence about someone else. +p57996 +aVI wanted my boyfriend to stay when he didn't. He stayed but when he left I felt ashamed because I should have let him leave when he wanted. I was too selfish. +p57997 +aVAt a party, I started talking to a guy I had seen in one of my classes. My boyfriend felt awkward and left to talk to a friend but kept on looking at me as I talked. +p57998 +aVFootball was a very big deal at my high school, so I was joyous when my school's team won the conference championship last year. +p57999 +aVI was driving on to a busy freeway during rush hour and it was slightly raining. A diesel truck was coming very close behind me and I was close behind a pick-up. I changed lanes and barely hit the truck and ran a Honda of the road. I was scared to death to go back and see if I caused him to crash. +p58000 +aVI was really pissed when the Russians boycotted the '84 Olympics. I had anger towards them and Jimmy Crter. I was very anxious to see it. +p58001 +aVIt made me very sad to hear that some construction company was going to build houses on the beautiful hills by my house. +p58002 +aVI vividly remember having feelings of disgust toward some of my jr. high classmates who didn't work at all on their schoolwork and who would coplain and take my tax money when I was older and more successful than they were. At the time I pictured some adults like this that I knew in the complaining situation. +p58003 +aVI could have died when I was caught cheating on a test in high school. That was my first and last time. +p58004 +aVWhen I didn't study for tests in High School. In particular remember a physics test. I didn't study because my friends talked me out of it and we did something else boring. I felt so helpless just being there - then guilt set in because I was very close to getting an A in the class. +p58005 +aVI took a math midterm and I knew I did really well and it was Friday so I felt great joy because the week was over and I did well on a test. +p58006 +aVWhen first came to CAL I went to a rally on Sproul and I later learned that the rally was conducted by the Moonie cult. They were taking pictures at the rally, so I was afraid that they would circulate the pictures and then kidnap people. I did not know how the cult worked. I was scared. +p58007 +aVWhen I was faced with writing an essay and I didn't want to do it I was angry that I had to write an essay and angry at myself for not having the time to write a good essay. +p58008 +aVI ran a race for the CAL track team and I did terribly and then the coach said that I should sit out for the season. I felt really sad because I wasn't going to be able to run. It was something I always had done and now I couldn't do it anymore. +p58009 +aVWhen I saw a girl in my economics discussion section smiling and asking stupid questions to the TA. just to get attention. She was obviously ass-kissing. It happens in every Econ. discussion held weekly. +p58010 +aVI was supposed to go out with my girlfriend one Saturday night, but I got really drunk with some friends earlier that afternoon and evening. So, I totally forgot about going out with my girlfriend. She showed up the next day, and that was when I remembered. +p58011 +aVI went to go get a bike innertube fixed. I fixed it and I was supposed to pay previously but I didn't. I said I would after I fixed the tire. After fixing the tire, the salesperson who helped me was gone so I walked out of the store without paying. I felt guilty so I went inside and paid for the tire. +p58012 +aVI had met someone and we became good friends. Our relationship grew closer and now he is my boyfriend. I felt joy when I found out how he felt about me. +p58013 +aVI feared that my dog's eye was infected too much. He had played around in the weeds and a foxtail had gotten under his eyelid. I took him to the vet and I feared that he may go blind because of the foxtail. +p58014 +aVOne of my friends kept criticizing me about everything I did. I thought she was kidding, but later I found out that she was serious. +p58015 +aVOne of my relatives became seriously ill. I felt sad because I didn't know if she will ever be the same again. +p58016 +aVI felt disgusted when I found out that someone had betrayed me. That person had been dishonest with me and I felt used. +p58017 +aVAfter taking a difficult midterm for one of my classes, I felt shame for not studying as much as I should have. I was ashamed of the results of the midterm. +p58018 +aVA close friend of mine was leaving for graduate school out of state. I had arranged to gather some people together the day before he left to be with him and have a good time, but I didn't pay as much attention to him as I should have. +p58019 +aVI spoke with a friend on the phone who I haven't seen in many years. It was a joyful event to talk to him. +p58020 +aVI was on this amusement park ride at Marriots Great America. It went way up in the air and then around and around. Heights are not my favorite spots in life. +p58021 +aVI typed up a letter for this physician at work. She didn't care for my style, even though she was not using correct English. I told her it was her letter and we would do it her way. +p58022 +aVRecently, my sister-in-law's horse was poisoned by a plant and died. The horse was very obedient and exceptional with children. +p58023 +aVI was disgusted at the behavior of these boys I work with in the scouting program. They showed a lack of interest, unrest, and at times just plain rude behavior. +p58024 +aVI had a test in the class and I had not adequately prepared myself. I didn't fare so well on the exam and I felt bad about it. +p58025 +aVI was supposed to have done some things for my mother, but just plain didn't get around to it. +p58026 +aVMy old boyfriend - yes the same one - asked me out. We had a good time. Then he asked me out the following week. He actually took interest. +p58027 +aVI was physically assaulted and sexually abused about a year ago. Just the feeling that I might not get away intact, or even alive, produced fear. +p58028 +aVMy boyfriend breaking up with me about 7 months after I had an abortion. Just the fact that he was ignoring me and continued to do so. +p58029 +aVMy nephew's mother just left one day (my brother and she were not married). My nephew, Anthony, was shaken. I was sad for him because a similar situation happened to me. +p58030 +aVMy friends and I were sitting at a restaurant. We were talking and a few of them said awful things about women. I became disgusted by their narrow-mindedness. +p58031 +aVI tried after months to begin talking to my boyfriend again. He ignored me. I felt I had lowered my pride and became his ""doormat"". +p58032 +aVI had found out that I was pregnant. I talked it over with my boyfriend and he was unsupportive - yet encouraged an abortion - I did. +p58033 +aVWhen I got accepted to CAL. +p58034 +aVMy apartment has had three robberies in the last month. The guy upstairs just got robbed making it the fourth. +p58035 +aVWhen my roommate's boyfriend assaulted me. He was threatening me, calling me names and pushing me around. +p58036 +aVI was going to go on a vacation to Texas this summer but was unable to go because of registration. +p58037 +aVI didn't do very well on a midterm and I'm disgusted with myself because I was prepared and thought I did well. +p58038 +aVWhen I dated my friend's boyfriend after they had broken up. +p58039 +aVA friend was going to come stay the weekend with me, but something came up and I cancelled out on him. +p58040 +aVAfter being depressed because of a very bad relationship, my first love called me and told me that he would always care for me no matter what I did. +p58041 +aVWhen my exboyfriend threw me around the dorms because I was talking on the phone to another guy of whom he was jealous, after we had an argument in which I thought we broke up. +p58042 +aVWhen someone tried to rape one of my best friends and he claimed it was her fault. He the hassled her, claimed she was loose, and threatened to sue her. +p58043 +aVMy mother kicked my surrogate father out and he in turn did not care for the dog, Afthur, he bought for the family. His lack of concern lead tho Arthur's death on the freeway. I loved Arthur like a brother. He was easy to talk to. +p58044 +aVI thought that the guy I had been associating with for over a year went out 2 or 3 times with a high school girl whom he claimed not to like. +p58045 +aVThe fact that I was pregnant. I was always considered level headed and did not have sex until 18 and out of high school. +p58046 +aVI was pregnant and thought that by not having the baby I would hurt the father like he did me regardless of the life we had created. +p58047 +aVI spent a lovely relaxing evening with my boyfriend. We played games and talked all evening. +p58048 +aVWhen I walked to church with my roommate, a bum told us to call the police and he started following us. +p58049 +aVWhen my roommate's moped was stolen I was very angry. +p58050 +aVWhen I heard my grandfather's wife had leukemia I was very sad. +p58051 +aVI was disgusted to find out that the water isn't filtered or purified before it leaves Latimer Hall from the drains. +p58052 +aVThe same for guilt would apply. +p58053 +aVI added a little ? to a yield in an experiment to get more of a yield. +p58054 +aVThird highest grade in the class and the best answer given for one question (the question was graded by the professor and he indicated he liked my answer). +p58055 +aVIn the recent lightning storm, bolts of lightning were hitting close by (1/8 mile). I was in bed at the time and was afraid I might be struck. +p58056 +aVWe are repainting rooms in my house. My mother started to enact plans to paint my room without consulting me. +p58057 +aVRecent break-up with my girlfriend. We had been together for over a year. I was overseas and discovered over the phone (while I was at work). +p58058 +aVI attended a ceremony in Denmark which is comparable to our Halloween. They build a large bonfire and place a life size dummy of a witch. The crowd cheered when the dummy burst into flames. +p58059 +aVI came home from school very keyed up. At the dinner table I unfortunately unloaded a lot of my hostility off on one of my parents. I'm ashamed that I didn't dispate and control these feelings before coming to the table or even let the energy build up in the first place. +p58060 +aVEating the last remains of dinner that someone else (unknown to me) had claimed. +p58061 +aVAfter watching the 49ers lose game after game, year after year, I was finally rewarded with a Super Bowl victory which made me extremely happy. +p58062 +aVWhile swimming, I hit my head at the bottom of the pool and required stitches. I later learned that the consequences could have been much more severe and that terrified me. +p58063 +aVI was rushing home from school because there was a 49er game that night. I got into a non-injury accident, which was all my fault, but destroyed the front of my car. The truck I hit was undamaged. +p58064 +aVWhen I learned that my dad had cancer. I knew he was going to the hospital for some tests. My mom told me when she picked me up one weekend from CAL to take me home. +p58065 +aVNow that the 49ers are winners, the fans are coming out of the woodwork and jumping on the bandwagon and that disgusts me. +p58066 +aVWhen I was small, I would always fight with my younger sister and one time I hit her and knocked the wind out of her. I felt real bad about it. +p58067 +aVWhen my grandfather was in a nursing home when I was young I never wanted to go and sometimes didn't have to and later I felt guilty. +p58068 +aVI felt joy when my boyfriend proposed to me in marriage. +p58069 +aVI felt fear when I was young and left in my big house all alone. +p58070 +aVAfter I said something that my boyfriend disagreed with, he walked away from me without discussing what bothered him. I became very angry with him for treating me this way. Yesterday, November 14. +p58071 +aVI felt sad when my boyfriend and I were apart for some time. +p58072 +aVI felt disgusted when I was in a restaurant which didn't appear to be clean and orderly. (I do not like to be in unclean environments). +p58073 +aVI felt ashamed when I was confronted by a teaching assistant that a close friend and I were accused of cheating on a math exam. +p58074 +aVWhen I did not defend my close friend when my father degraded him. I felt guilty for allowing my father to get away with his actions and for the hurt my friend felt. I cleared the matter up with my father a few weeks later. +p58075 +aVAfter much trouble getting together in the first place my boyfriend and I celebrated our first anniversary. +p58076 +aVI got caught shoplifting a package of gummy bears. +p58077 +aVSometimes when I go to work my crazy boss (a hyper Jewish lawyer) insists I do things his way (filing, typing, etc.). He sometimes blames me for things I didn't do, and I can't yell back at him. +p58078 +aVSince I moved into the dorms and I've been spending most of my free time with my boyfriend. I hardly see my old high school friends. I had several bad incidents with my 2 past best friends. +p58079 +aVI took a psych. experiment with a totally unappealing gay man as the experimentor, some homosexuals are funny or cute, but this guy was disgusting. Plus the experiment was about gays too. +p58080 +aVMy grades. When my parents say, ""How are you doing at school, getting good grades ?"" I say, ""Great, just fine !"" Actually, I feel ashamed about myself. +p58081 +aVI've had three midterms in the past two weeks and I hardly studied for any of them (like 1 or 2 days) I feel guilty that I hadn't studied and I got C's on all of them. +p58082 +aVWinning a close volleyball game. (I'm on the intercollegiate team at CAL) +p58083 +aVSpeaking in front of a large group of people. +p58084 +aVSame situation as before - having my car stolen. +p58085 +aVWhen a close friend drowned in the American River. +p58086 +aVGetting a low grade on my physics midterm. +p58087 +aVArguing with a friend over politics. She was more informed on the issues and made me feel very ashamed of my political ignorance. +p58088 +aVWhen my father's car got stolen from me. (A 1966 Ford Mustang - very hard to replace). +p58089 +aVGetting sent on a company expense trip to another state to work for a week at that plan. +p58090 +aVOn my second plane trip, we ran into unexpected turbulence. +p58091 +aVHaving my personal objects rearranged by someone else without my consent and having it arranged to their taste. Then trying to find a particular object they rearranged for an hour or more. +p58092 +aVDeath of my father. +p58093 +aVGetting back my math midterm, I received a lower grade than I thought I would get. After going through the questions I felt that the grader had graded harshly and I had made only a few ? errors. +p58094 +aVGetting a low grade on a midterm. +p58095 +aVPromising to do a task for a friend and just forgetting about it. +p58096 +aVWhen I finished my C.S. Project I was overjoyed. I felt relieved because it was due the next day and I was tired of looking at it. +p58097 +aVI overturned in a canoe a few years back and I didn't know how to swim. Although I had a life-jacket on I still panicked. +p58098 +aVI came out of the house at 7:20 am Monday morning getting ready t go to school and fight for a parking when I saw my car had a flat tire. +p58099 +aVAfter my little sister's Graduation from High School my grandmother became very sick. She passed away a few months later. +p58100 +aVWhen I saw a wino by some cans with Food Stamps and use the change to buy wine. +p58101 +aVI felt this when I was copying homework for one of my classes. +p58102 +aVAfter yelling at my girlfriend, I felt bad because she was ? crying and upset. +p58103 +aVA party with no worries (i.e. no tests homework etc.) many friends were present and good music. +p58104 +aVI'm afraid of not being able to go to the school I want because of suffering grades. +p58105 +aVI was stood up for a date function by someone who I really cared for. +p58106 +aVAfter blowing up and saying all the wrong things, I realized what I had done and hurt that person and myself. +p58107 +aVMy friends aren't working for the same common goal we all need to accomplish. +p58108 +aVI was supposed to do something and didn't. The person was really dependiong on me. +p58109 +aVAfter confronting the person who stood me up, I blew up and said all the wrong things. +p58110 +aVI realized the girl liked to be with me. +p58111 +aVThat I would do bad in a class and not get into Bus school. +p58112 +aVWhen my dad told me about something he had done against my mother. +p58113 +aVWhen I heard my sister got in a bad car accident. +p58114 +aVAn Engineer I know wants war so he can get a job making bombs. +p58115 +aVI did bad on a test I didn't study for. +p58116 +aVDecided at the last minute not to do something that I said I would do with a person. +p58117 +aVWhen I passed the B.A exams with first class results. +p58118 +aVWhen my B.A results had not come. +p58119 +aVWhen I failed my S.S.C exam. +p58120 +aVWhen my sister left home to go and live with her husband. +p58121 +aVI trusted a friend of mine, but she lied to me about something and this disgusted me. +p58122 +aVWhen I failed the S.S.C examination I felt very ashamed. +p58123 +aV I felt guilt when I was not co-operative with my mother for my exam. +p58124 +aVMy first feeling of falling in love. Coming across a person who made me feel love, happiness, joy, giving me a new and beautiful future, who made me dream. +p58125 +aVWhen I got to know that the friend I am closest to got engaged, and she was going away. I was overjoyed for her, but also felt frightened as I was very emotionally dependent on her. I did not know what I would do without her. +p58126 +aVI was angry at my brother over an argument we had together. We do have a few fights from time to time, and also at times I take out my anger on him. +p58127 +aVWhen I came to know that my feelings for someone were not reciprocated. +p58128 +aVI felt disgusted while studying for my applied psychology and mental testing papers in B.A. +p58129 +aVI had a habit of wetting my bed when I was young. One day, when I was invited to my friend's place to stay for the night, it happened again. I was ashamed of myself. +p58130 +aVI felt guilty when I lied to my parents. +p58131 +aVAfter my marriage I received the B.Sc results by post, I was very happy to learn that I had got very good marks - first class. +p58132 +aVA few weeks back my daughter had very high fever and I was scared that it might lead to brain damage or convulsions. +p58133 +aVI felt angry when my mother-in-law did not handle my daughter properly and she fell down from the bed and hurt her head. +p58134 +aVI was very sad when I could not take the M.A (I) exams due to illness, and a relative of mine disheartened me about it. +p58135 +aVWhen my parents-in-law scolded me, without any reason, in front of the other members of my family for the first time. They had called me from my room where I had been studying for my exams. +p58136 +aVWhen the teacher asked me a question in class, concerning something I had read earlier, and I did not know the answer, so I felt ashamed in front of the whole class. +p58137 +aVWhen my friend failed an exam by just one mark. During this exam she had asked me to show her my answer sheet and I had not done it. When the results came out, I thought that had I shown her my answer sheet she would have passed the exam. I felt guilty as I had failed her. +p58138 +aVWhen my family allowed me to do higher studies. +p58139 +aVWhen I decided to separate from my husband. +p58140 +aVWhen my father talks about our relatives and favours them, I feel angry. +p58141 +aV When my elders do not understand me in the right way. +p58142 +aVWhen my husband quarrelled with me for no reason at all. +p58143 +aVI went for a walk on the beach with a friend whom I had not seen for many months. The weather was very pleasant, we had some ice-cream and lots of fun on the beach. +p58144 +aVThat day I was alone at home after coming home from school. I did not know where everyone else had gone, I kept waiting for them to come back and nobody came. It was getting very late and I was terrified. +p58145 +aVI was walking on a street alone in the afternoon when there were not too many people on the street. A couple of guys were following me and I was ignoring them. Suddenly one of them came in front of me and started using dirty language and harrassing me. I got very angry and wanted to strike back at them. +p58146 +aVA close friend of mine was to get married in a weeks time when her father died of a heart-attack. I knew him well and felt bad on hearing of his death. +p58147 +aVA girl, who is a friend of mine was having an affair with a boy who is also a friend of mine. I got to know that this girl was also seeing another guy. Later on, she just broke off with this friend of mine without giving any explanations. This made him sad and depressed, and I felt disgust for this girl. +p58148 +aVI had always been first in my class and in the preliminary board exams I scored the highest marks. Then the exams were postponed and I neglected my studies as I was confident. However when the final results came out I felt ashamed as I had scored less than 60% marks and my rank in the class was fifth or sixth. +p58149 +aVI went to the cinema with my friends, without telling my mother about it as I had been to the cinema the day before also. When she asked me where I had been, I lied. +p58150 +aVWhen I got permission to study at a place which was far away from my home. +p58151 +aVI had gone to the hospital for my research and got late in reaching home. I feared that when I reached home there would be a quarrel because of my being late. +p58152 +aV I feel angry when somebody is unjust to me. +p58153 +aV I feel sad when somebody is unjust to me. +p58154 +aVWhen people around me did not understand me the right way. +p58155 +aVWhen I went for a picnic in Lonavala, I felt full of joy. +p58156 +aVWhen my brother had an epileptic attack and I was scared as to what would happen to him. +p58157 +aVI was angry this morning when I missed the train to university. +p58158 +aVWhen I missed my train this morning, I felt sad for some time. +p58159 +aVWhen I had exams a relative of ours, who lives in another city,came to visit us and I felt disgusted at him. +p58160 +aVI felt ashamed when I had not attended a class and the teacher asked me the reason for my absence. +p58161 +aVI acted in an English play in college and got the Best Actress award, while our play got the first place. +p58162 +aVI have done the teachers training course (B.Ed). During our training I was asked to handle the ninth standard class in a boys school. I was scared to face the class the first day. +p58163 +aVI was to meet a friend at the bus-stop (he was coming to visit us) and he did not turn up. After having waited for him for some time (about an hour) I called him up, to be told that he did not intend to come as he was feeling tired. +p58164 +aVWhen my sister died in a fire accident at home. +p58165 +aVWhen my husband told me about his pre-marital affairs. +p58166 +aVWhen I failed the ninth standard exam in school. +p58167 +aVI had gone to see one of our professors about a book, and I did not attend the class she took a few minutes later. +p58168 +aVWhen I passsed the M.S.C board exams with first class, which I had not expected. +p58169 +aV I have always been very scared and tense before an exam and before the declaration of the results. +p58170 +aVWhen my friend promised that she would come to my place, and did not turn up - I was annoyed at her. +p58171 +aV When someone tells me something that hurts me, I feel bad about it and also feel sad. +p58172 +aVI feel disgusted when people do not understand me in the right way, i.e they misunderstand me. +p58173 +aVWhenever I am late, I feel ashamed of myself even though no one tells me anything. +p58174 +aVI felt guilty when I lied to my parents. +p58175 +aVI was very happy when I passed the B.A with first class marks. +p58176 +aVWhile trying to board a train I missed the footsteps and fell down on the platform. +p58177 +aVI was having an argument with my brother on his behavior, then we started fighting and I got annoyed at him because he started teasing me. +p58178 +aVMy best friend got married and left her home-town to go and live in Poona. After her wedding I felt sad. +p58179 +aVI feel disgust at my neighbour, because she comes to our house with her child, who spoils our furniture. +p58180 +aVWhen I failed the twelveth standard exams I was ashamed at having to see my parents later. +p58181 +aVWhen my mother scolded me and I argued with her. +p58182 +aVWhen I passed the B.A exams with first class results. +p58183 +aVWhen I was coming back home alone at night. +p58184 +aVWhen I failed the M.S.C exams. +p58185 +aVWhen my father was ill. +p58186 +aVWhen my friend who is close to me got engaged and did not invite me. +p58187 +aVWhen I failed the M.S.C exam. +p58188 +aVWhen I fought with my friends. +p58189 +aVLast year I passed the B.A exams in Psychology in which I stood first in my class. Thus I got the first prize from the college. I was most happy to tell all this to my parents and friends. +p58190 +aVWhen I was 20 years old, I fell severely ill and was bed-ridden for 6 months. I felt very scared for my health and my studies. +p58191 +aVA few months ago when I was teaching, I suddenly became very angry at the children and slapped some of them. +p58192 +aVMy friend got married and went abroad, this made me feel sad and lonely. +p58193 +aVWhen a begggar approached me for money, I felt disgusted. +p58194 +aVWhen I got 1/2 out of 15 in Abnormal Psychology I felt ashamed. +p58195 +aVOnce I lied to my parents and this made me feel very guilty. +p58196 +aVWhen I got a first class in the twelveth standard exams, I was very surprised and happy and I had a very good time with my friends. +p58197 +aVI had a very horrible dream one night, I dreamt that I had fallen off a very crowded train. +p58198 +aVWhen I was at S.Y.Bajaj I wanted to get admission in another college and this was not easy and I felt angry. +p58199 +aVWhen my mother scolded me for something, very insignificant, without knowing the real cause of what had happened. +p58200 +aVI feel disgusted at my cousin, who is bad-mannered, does not know how to behave and talk to others, he does not respect elders and lies all the time. +p58201 +aVOne day in the TYBA class the teacher asked me a very simple question which I could not answer. Finally the teacher himself gave us the answer and my friends started laughing at me as I had not been able to answer a simple question. I knew the answer but feared that my response may be wrong. All this made me feel ashamed of myself. +p58202 +aVWhen I was taking the 11th standard exam, my friend who was sitting behind me asked me for some answers. The teacher looked at us just then and scolded both of us. Everyone started looking at us and I felt very guilty. +p58203 +aVAfter completing high-school, I wanted to go abroad for a holiday. I had never been abroad before and neither had I taken a holiday for a long time. When finally my parents agreed and we got the airplane tickets I was over joyed. +p58204 +aVIt so happened that while staying at anaunt's place I discovered that I was afraid of sleeping in pitch darkness. The room which my sister and I were sharing had no light, and I would refuse to sleep without having the light of the adjoining bathroom switched on. +p58205 +aVWhen I see people with burns I feel sad, actually I can not even express my feelings as I think that they must suffer a lot. +p58206 +aVI do not like one of our neighbours as they are very selfish. Whenever they want something or need help they come to see us, otherwise they do not even bother about people who live next to them. +p58207 +aVWhen some of my close friends and colleagues talk about me and my work and say that I am the brightest student of the college. +p58208 +aV In some special circumstances l lied to my parents, then felt guilty so I told them the truth and felt free. +p58209 +aVDay before yesterday my mother bought me a new pair of shoes, without my having asked for them. She told me that when she saw the pair of shoes she felt like buying them for me. I really liked the shoes and they made me feel that my mother cares for me. +p58210 +aVWhen for the first time I rode on a motorcycle with my brother. He was going so fast that I felt that I would fall off without my brother realizing it. +p58211 +aVOne of my friends asked me to go shopping with her, another friend of hers was also coming along. During the outing they kept talking to each other and I felt left out, even when I tried to talk to them they seemed not to listen to me and did not pay me much attention. +p58212 +aVTwo years ago my best friend died in an accident, just a day before my birthray. We were very close to each other and I felt very sad at loosing a close friend. +p58213 +aVWe had gone to our native village and I went to visit a tribal group which believes in Goddess Kali. As it was a festival day they had to offer a hen to the Goddess so they cut the head off a hen right in front of my eyes. I felt disgusted and evenb gave up eating meat after this incident. +p58214 +aVAs part of the assessment I had to speak on a subject in front of the class. I was not really prepared and I was just reading the stuff I had on a piece of paper, when some of the students asked me something I could not give them an answer. I felt ashamed as I had not prepared the topic. +p58215 +aVOne day I went to see a movie without my parents permission. It was an adult movie and I was scared that my parents would not allow me to see the movie. However after coming home I felt very guilty at what I had done. +p58216 +aVWhen my daughter gave her solo dance performance in Poona and there was a big applause, I was overjoyed. +p58217 +aVI was in a garden one evening and I saw a snake coming towards me. +p58218 +aVI am separated from my husband. The way he has behaved towards me makes me angry. +p58219 +aVWhen my husband lied to me, tricked me and when I had to leave my home. +p58220 +aVThe way my husband and his family treated me - unfairly, cruelly, and unjustly. +p58221 +aVI was ashamed at myself for having shouted at my daughter because of my marital break-up and the unfair way I was treated. +p58222 +aVWhile having an argument with my daughter, I got angry and over-excited and said angry words. +p58223 +aVWhen I got married. +p58224 +aVI was sitting on an electric swing, suddenly the machine went out of order while I was still in the upward position. +p58225 +aVA girl whom I trusted and with whom I had shared personal, confidential matters twisted the facts and told it to a common friend of ours. When this common friend told me the version my friend had told her, I was angry. +p58226 +aVWhen my elder sister died. +p58227 +aVMy husband falls ill and does not follow the doctor's advice on the treatment or the diet control. +p58228 +aVEvery time I do not write something well in English. +p58229 +aVWhen I could neither measure up to the expectations of the teacher nor to my own expectations in one of the assignments. +p58230 +aVThe day I got married was the happiest day of my life. Both of us felt that we were right for each other in every way and we had no doubts about our compatibility right from the day we got engaged. +p58231 +aVOne morning I was standing at the bus-stop and the bus passed by without stopping, even though there were only 8-10 passengers inside. I felt angry at the rude behaviour of the bus driver and conductor. +p58232 +aVAt the death of my friend's father and especially as this happened ten days before her wedding. +p58233 +aVI was disgusted at the existing red-tape in the government offices. I accquired my passport three months after having applied for it and I had to go back five times to them to correct a minor error. +p58234 +aVWhen I could not pass my exams with good marks. My wedding was to take place 15 days after the exams and I tried to convince myself that this was the reason for my not having done well. However, I thought that had I really put my mind to doing well at the exams I would have done well. +p58235 +aVWhen I succeeded in achieving a scholarship for which I had strived hard during a period of financial, personal and physical stress. +p58236 +aVWhen I had to travel alone, unescorted for the first time. It was an over-night journey by train to a distant place. +p58237 +aVI was not given a chance to explain to my close relatives as to why I could not go to visit them when they were ill. When I did go, they thought that I had been selfish and irresponsible duringtheir illness. +p58238 +aVI put in two years of hard work and it was neither looked at nor appreciated. +p58239 +aVDespite my being affectionate, sincere, and helpful to close relatives of mine; they turned around and accused me of being inconsiderate in my relationship with them. +p58240 +aVThe first time that I had to go up on the stage to give a speech. +p58241 +aVI could not take care of my mother when she was admitted to a hospital for surgery, I continued my studies as I could not get leave. +p58242 +aV I feel a sense of joy whenever I complete a piece of writing which is part of my work. Intense reading also brings me joy. I also feel happy when I reminiscent about them. +p58243 +aVI was coming home from a relative's place and it was about 9.30/10 P.M. I felt slightly apprehensive when I got off the bus and started walking towards my place. I was confident that nothing would happen to me, yet there was this slight feeling of fear. +p58244 +aVUncleaniness at my work place. The place is generally not very clean, but when it reaches a point, I get angry at the person who is supposed to clean the place and the people who are supposed to supervise him. +p58245 +aVThree weeks ago a friend of mine bid me good-bye before going abroad. I felt happy for her as she was achieving something by making the trip, but I also felt sad as I would not be seeing her for a long time. +p58246 +aVWhen we complained about the uncleanliness of the work place, the authorities agreed to have the place cleaned. Even after 2-3 days nothing had been done. I felt disgusted at the whole situation. +p58247 +aVI got into a tight pair of trousers and examined myself in the mirror. My back looked unpresentable and I felt ashamed at my wanting to wear those clothes that day. I quickly changed into another dress. +p58248 +aVWhen I do not put in the needed amount of hours of work or study for the day, I feel guilty and try to make up for the lost time. +p58249 +aVWhen I got the scholarship I was very happy as the finacial burden of the family was reduced. +p58250 +aVI experienced fear when I was not prepared for the final year degree exams. +p58251 +aVWhen the others did not do their bit of work on a group assignment task, and I had to do all the work. +p58252 +aVAfter having been ill, when I was coming back to the hostel, I felt very sad leaving home. +p58253 +aVWhen my friend got very low marks in field work even though he had worked throughout the year, I had this feeling. +p58254 +aVI felt ashamed when I fought with my mother on some issue, and caused her trouble. +p58255 +aVI had enough time to do my assignment, and I did not do it well. When the lecturer scolded me, I had this feeling. +p58256 +aVWhen I was selected at TISS X. +p58257 +aVWhen I almost walked on a snake. +p58258 +aVWhen I was insulted by a man. +p58259 +aVWhen my mother left for Kenya. +p58260 +aV When I see that the toilet is unclean. +p58261 +aVWhen my co-resident opened the bathroom door while I was bathing inside. +p58262 +aVWhen I could not complete my assignment on time. +p58263 +aVAt the pre-university, I was appreciated as an examplary student by our pricipal. This is something which made me feel very happy. +p58264 +aVWhen my sister lost her only son, who was sixteen years old. I felt very bad about it as this was the first death in my family and then I learned slowly to understand to life. +p58265 +aVWhen I was in a Christian institution, sometimes the nuns would send back the people who came to visit us when it was not the visiting hours. This disgusted me. +p58266 +aVOnce I was not able to give a relative, who was in a critical period, a helping hand. Whenever I think about it I feel guilty for letting down the person who trusted me to give him a helping hand. +p58267 +aVThe day I got a letter from the U.G.C informing me that I had been awarded the junior research fellowship. +p58268 +aVWhen I was working in Delhi, I had gone alone to see the hostel where I would be residing. +p58269 +aVWhen a relative, who had come to our place, created untidyness and dirtyness. +p58270 +aVWhen I had to leave home to go to some other place to study. +p58271 +aVWhen I went to visit a relative and saw how messy and dirty his place was, in the absence of his wife. +p58272 +aVWhen I broke-down while seeing off my friend. +p58273 +aV The day I have not worked (academic) hard enough. +p58274 +aV When I have achieved what I wanted to achieve, I feel the above stated emotion. Also when I am sucessful. +p58275 +aVOnce when I was walking alone at mid-night, I happened to put my foot on a frog, as it felt smooth I thought that it was a snake and I felt afraid. +p58276 +aVMy friend and I were to attend a very important meeting and he had promised to come and pick me up. But he did not turn up and I felt very angry at him. +p58277 +aVI was really hoping that I would pass the examination, but I failed and so I felt very sad. +p58278 +aV I feel disgusted at people who talk negatively about a person without knowing the person well. +p58279 +aV I have felt shame but am unable to remember any particular incident. +p58280 +aV Whenever I do something prohibited or wrong I feel guilty. +p58281 +aVWhen I stood first in the B.A exams. Earlier I had heard of these boys and girls who were toppers, but when I first heard of me having topped I could not believe it. +p58282 +aVWhen my son fell off the cot at the age of 5 months, I became very nervous and thought that it would cause defects in his head. +p58283 +aVI was very angry one day when my husband ignored me and slept on a separate bed. He had no reasons to doubt me or to neglect me and I had never imagined that he could do such a thing. +p58284 +aVWhen I heard the news of the death of my father. It was in the evening and I was alone all night in my room trying to remember the face of my father. +p58285 +aVOne day my colleague misbehaved with me. I felt disgusted and thought to myself that he could only do this because I was a woman. +p58286 +aVOne day I addressed my husband in an abusive manner in front of his friends. Later on I realized this myself and felt ashamed of myself. +p58287 +aVMy mother misunderstood me and prevented me from doing something. In return I did not talk to her for a few days, only later on I realized that what she had done had been for my good. +p58288 +aVWhen the results of the part I exams came out I felt tremendous joy in my heart. The results came out after a long period of worry and anxiety, so it gave me endless relief and joy. +p58289 +aVI felt afraid just before receiving the question paper of the part II exam. +p58290 +aVI remember that when I was in school I saw a case of partiality - one of the teachers gave private coaching classes to some girls and she would give these girls extra attention in class and would ignore the others. +p58291 +aVOn the last day of my school life I was very sad, specially on the farewell party day. I felt sad to leave behind my beloved teachers and friends. +p58292 +aVI was most disgusted when I had to make a nagging three day journey recently from Calcutta to Bombay. It was very boring and tiring. +p58293 +aVI remember that once, a friend did not co-operate with me due to some unavoidable reasons. Unaware of this I treated her unjustly till I realized everything, and then I felt ashamad of my deeds. +p58294 +aVI did badly in one of the vital exams, despite getting proper guidance from my parents. I felt guilty of improper use of the chances provided to me. +p58295 +aVWhen my honest intentions were marred by another's jealousy. +p58296 +aVWhen an event took place in another's life and which I thought I could have avoided. +p58297 +aVThe day I was happiest was the day when I received a phone call from Eve's Weekly to inform me that I had won the first prize of the All India Essay competition. I had won this prize when I was an under-graduate when even post graduates had participated. I had been judged by eminent judges and political scientists. +p58298 +aVFear is an emotion that I experience very often. Naturally this is during exams and subsequently while waiting for the results. However there is one occassion when I was paralyzed with fear. This was when I was doing my M.A.-I, and we had a series of student lectures. I was one of the participants and my lecture happened to be the opening lecture. I had been confident all morning, about twenty minutes before the lecture, my confidence started failing me. I felt my heart go cold, my lips go dry and I was really paralyzed. This incident of fear is still fresh. +p58299 +aVI experience this emotion quite often but the day I was most angry was the day I got pulled up for something I had not done. It happened during my school days, I had not spoken a word in class but the monitor had written my name on the board. So I had a remark in my callender which I had to get signed by my parents. This remark resulted in me being spanked. +p58300 +aVI have once been very sad and lonely. This was when I was trying to organize a play as a student (15 years). Instead of materializing, it fizzled out. The worst thing was that the play fell apart completely and I found myself weeping uncontrollably. Now when I think of it, I laugh it off; but at that time it was intense. +p58301 +aVThis is an incident that many of us witness in our everyday life in a city like Bombay. One day I was travelling by bus, three men dragged two fellows out of the bus. Once outside they were beaten into pulp. These two fellows, who got beaten, were pick-pockets and they were being beaten by all and sundry. I thought to myself -""what is life?"". It is one hell of a place where everyone is after someone else. One waits to cut the throat of the other one just for a living, (money). When I think about such things - the purpose of life, etc, I feel very disgusted and dejected. +p58302 +aVThis is an event I will never forget. I am considered a good mimic. This particular day we were waiting for a professor to take her class. This professor had a peculiar accent and a very horrible way of lecturing and to top it all we had this class at the fag end of the day. So this particular day I got into my element and started imitating the professor, and the professor entered the class right in the middle of it . I was unaware of her presence, some of my friends tried to warn me but it was of no avail as I was too engrossed in mimicing. Then I suddenly noticed the silence and turned around to see her entering the class. I do not know till today if she actually saw what I had been doing or she had completely ignored it. Through out that lecture I died of shame. All the more shameful was the fact that she gave me a character certificate. +p58303 +aVThis happened when it was finally confirmed that I had stood first in the university for the M.A exams. A few days before the official results were declared a clerk had brought the results unofficially. So I had been expecting the results but the confirmation allowed me to legitimately feel happy at my success. +p58304 +aVThis was when I was being followed home every day from the campus, by a stranger. He would follow me to the campus and then sit outside my class. If I was not there he would ask my friends as to where I was. He was a dark, ominous looking person and I was terrified of him as I did not know his intentions. I reported him to the security officer, who turned him over to the police. I was even more petrified then. +p58305 +aVA new gas connection was to be installed and the mechanic who came to do it was very rude to my mother and me. I rushed to thhe dealer with my mother and had a fight with the dealer as he seemed to be unreasonable and was taking the mechanic's side. Ultimately the matter was resolved after my father went and spoke to him. The mechanic was asked to apologize. +p58306 +aVThe day I was to receive my gold-medal for the M.A, my grandmother, who I loved very much, died after an illness. She died a few hours before the convocation. While I was attending the convocation I had to control my grief as she would not have liked me to miss it. It was a day she had been waiting for, but did not get to see. +p58307 +aVWe had come back from a programme and we were all (three girls) staying over at another girls placce. One of them started passing very nasty and outright bitchy remarks at me. It was brought on by a male colleague's compliments to me, this girl was herself interested in this guy. Bitchiness and catty remarks made by women never fail to disgust me. I can particularly remember this incident as she knew that I had not encouraged the guy. +p58308 +aVI was learning judo and my instructor wanted me to assist him in teaching girls judo at a suburban college. I was just a beginer, and he made me a green belt so that I would be able to command respect. This was against my principles, and yet I allowed myself to listen to him. I gave it up soon after, however I felt very ashamed at not sticking to my principles and at not having put my foot down earlier. +p58309 +aVI was coming back home with my mother when the purse I was carrying got stolen. It was done so swifty that I did not realize what had happened till much later. A lot of money and the keys of the house were lost. I was guilt ridden at my carelessness. I felt terrible as I do not normally loose things and this was quite important, especially the keys. +p58310 +aVInter-national sports events won by my favourite national team or player brings me joy, e.g when India won the World cup cricket match. +p58311 +aVWhen I had gone to a school picnic and was left behind in the forest. +p58312 +aVWhen I saw a few people beating a man who seemed to be a stranger. +p58313 +aVWhen India lost the Benson and Hedges cricket trophy. +p58314 +aVWhen I was responsible for getting my friend run-out in a vital cricket match. +p58315 +aVWhen India won the Prudential cup by beating West-Indies in the final match and became the world cricket champion. West-Indies was the strongest of the eight countries which participated in the competition. +p58316 +aVAs a child, one evening I had read a novel about ghosts and I had thus spent a sleepless night as I kept feeling that there were ghosts dancing around me. +p58317 +aVDespite our good performance and excellent results the management refused to meet our demands. +p58318 +aVWhen my beloved girlfriend got married to another person. +p58319 +aVWhen I heard that a 14 years old girl had been raped by four rikshaw drivers in our town. +p58320 +aVI feel ashamed at the fact that even after 35 years of independence 70% of the Indian poulation is still below the poverty line. +p58321 +aVI read about the national and social spirit and self-discipline of the people of developed coutries like U.S.A, England, France, Germany etc. Comparing this to the Indian people I felt guilty as they have no national spirit or self-discipline. +p58322 +aVI felt happy at the settlement of our marriage, even though we are from different socio-linguistic backgrounds our parents agreed to the wedding without any conflict or discussion. We had thought that they would object to the wedding but it did not happen. +p58323 +aVOne day, early morning my mother who is healthy fell ill. There was no doctor or compounder near by and for a few hours -8 A.M to 6 P.M she did not speak a single sentence, nor did she drink water or milk. There was no movement in her body and I felt really scared. I almost lost my confidence about her survival. +p58324 +aVOne day my elder brother badly scolded my father. This was the first time that I heard such abusive language from my brother. I requested him humbly not to use this kind of language but he did not care for what I was saying. Finally I picked up an axe to use against him, in the meanwhile people intervened. +p58325 +aVMy close friend and I applied to TISS for admission last year, unfortunately he failed to get admission. We had done our graduation together and are quite involved with each other, so we had wanted to do our Masters degree together. However, it did not work out as we had expected it to and this saddened me. +p58326 +aVMy classmate at TISS has the habit of biting his nails and ever since my childhood I have never liked this habit. This person is near me in class, dining hall and the campus so I suggested that he should stop biting his nails. However he found it difficult and my disgust feelings have not changed. +p58327 +aVI had this feeling before my graduation and never dared to speak to my relatives and friends. Because of this feeling I would avoid situations, however I do not know the reason for this. +p58328 +aVOne day my mother forced me to eat more and I refused, the next day she served me more rice and mutton pieces than usual. When I saw this I got very angry and scolded her, and refused to eat. Later I felt guilty and asked her to excuse me. +p58329 +aVWhen I was a student at the Institute doing my M.Phil degree, one of my professors called me before the convocation and told me ""You have got the gold-medal (first rank) in the university and tomorrow you will be on T.V"". +p58330 +aVWhen I was in my village one of my enemies had written a non-sense letter to a girl and he told the father of this girl that I was the culprit. When I got to know this I was scared as the girl's father was a worse man. +p58331 +aVWhen I was doing research a few months ago, I had asked the Institute to sponsor me for a computer course which was held in TISS. However, because of the administrative officer I could not get the money. +p58332 +aVWhen I was in Bombay one of my good friends was getting married and he had not informed me about it, this made me sad. +p58333 +aVI once got a phone call stating ""one of your friend is in jail, please come and see him"". When I went to the jail and saw him, I was disgusted. +p58334 +aVSome time back I had signed a letter which I had not read. What had happened is that something had been written against my friend and this went to the higher authorities. My friend asked me -""you also signed ?"" +p58335 +aVOne of my friends came to know through some other friends that I had applied for some course in an institute. He asked me ""why did not you tell me, I would also have applied."" At that I felt guilty. +p58336 +aV I am joyfull to be alive every night. +p58337 +aV On discovering the red-tapism and the bureaucratic, corrupt, decadent, degenerated infrastucture of every public utility, office and service; and the rampant corruption at every single level of education and other institutions. +p58338 +aVThe death of Jaya Prakash Narayan caused a great deal of sadness as I believed that he was the only true democrat and a ray of hope on the Indian horizon. +p58339 +aV This is an everyday feeling. Many situational events : causes are unclean and dirty environment, illiteracy, poverty and neglect of human resources, disgust at the lack of perception on the part of us ( educated few) for the lack of drive and drive towards their redemption. +p58340 +aVWhen I realized that I belonged to a country which is amongst the poorest in the world and that inspite of having the resources we do not utilize them. I was ashamed at myself and my country, shame at the lack of parity between the lifestyles of the citizens. +p58341 +aVWhen I realized that I was not working hard enough and was not being useful as an individual to the society or the family, guilt at spending money on uncalled for activities - in short wasting my life. +p58342 +aVMy joy knew no bounds when I was selected for a job even before having finished my studies. +p58343 +aVI was scared when I realized that I might miss the train which I was supposed to take. I was 1500 Kilometres away from home and when I heard the depart whistle I was still 150 feet away from the train. I finally made it. +p58344 +aVI felt angry when repeated pleas to the ticket collector and the co-passengers in order to make a queue fell on deaf ears. I have this feeling whenever someone is not disciplined and methodic in doing his duty. +p58345 +aVI am filled with gloom and sadness at the death of a person. More specifically, I felt sad after hearing the news of a death of a person who was hale and hearty and full of life, withvigour and plans for the next day but had no next day to cherish it. +p58346 +aVI feel disgusted since I am unable to cope with all the wordly affairs as I spend much precious time to pursue my hobby and to be admist the people I love and long to be with. +p58347 +aVI always feel ashamed when I do not succeed in accomplishing something in which I had put in all my efforts. +p58348 +aVAt times I have been attracted to conducts which are socially degraded due to their ill consequences, and then I feel guilty. +p58349 +aVWhen India first won the world cup cricket tournament. +p58350 +aVI was then in the 10th standard and was going to my native place. The last bus had already left and so I started walking, it soon became quite dark. The road was a village road and was deserted, I was not even sure if that was the right way. I finally reached home at 10 P.M. +p58351 +aVI was travelling from Delhi to Bombay. I had booked a seat one month back and I had also got a telegram confirming this. However, in the train my name had been omitted from the reservation sheet, and the one seat that was still vacant was alloted to another person who paid for it despite my requests for the seat. I was allowed to stay in the reserved compartment when I paid money. +p58352 +aVThe news of the natural calamity, an earthquake in which hundreds of Mexican people died. +p58353 +aVIn Punjab, when in the name of religion people killed each other during the agitation. +p58354 +aVI felt happy at the end of a 10 day student camp. We had shared our hopes and aspirations and in the open situation so generated, we had made strong frienships and experienced our own worth as well. +p58355 +aVOne of my fellow students had bunked field work and in my attempt to cover up for him I myself was exposed, though not directly. We were to meet our field work suprevisor and we were afraid of the consequences. +p58356 +aVI had made an error in planning a programme and had publicly accepted the mistake, despite repeated requests not to bring the matter for discussion a professor kept constantly passing remarks. I reacted angrily. +p58357 +aVI was in love with a girl but had to separate from her because of different commitments concerning life and career. I loved her as a person but could not agree with the life the future would demand. Parting from her was very sad. +p58358 +aVStudents on campus were unnecessarily creating trouble just to heckle the authorities - not to achieve something concrete, but to further their own interest. +p58359 +aVI had reacted angrily at a friend for no fault of his. I had raised my voice and had not cared for his opinion. +p58360 +aVI had promised to send something to a friend and it completely slipped my mind. I felt guilty for having forgotten. +p58361 +aVThis is one feeling I never betray, but I must confess that the last time I slighty felt happy was when I passed my M.A with a high rank. This was a few years ago when my friend told me about the result. +p58362 +aVA few weeks back I had a very important seminar and I had circulated my papers to all the panel members. A day before the seminar I realized that I had inadvertantly burdened certain derivations and I had failed to correct it. I feared that this would reflect very badly on my performance. Fortunately none of the panel members detected it and I felt relieved. +p58363 +aVA few days back a friend of mine poked me in the ribs for fun's sake, though I had warned him an infinite number of times that it really hurts me, he did it again. I usually ignore this but this time I flared up for a split second and threatened to bash him up. This is the latest incident when I lost my temper, though I felt very bad about it later. +p58364 +aVThe saddest moment in my life was when I lost my younger sister a few years back. +p58365 +aVYesterday, I was just about to cross the road when a country guy who was ahead of me spat out a mouthful of betel juice on the road. It was very windy and had I not checked my speed I would have had a very good shower of his saliva. Though I was not angry, I felt that these people were very indecent. +p58366 +aVYesterday while playing volley ball, there was one person extra and somebody had to out. A mess worker and I were the last ones to arrive and we had arrived at the same time. Rightfully one of us had to opt out of the game, as I was delaying leaving the mess worker opted out saying that I should play. I felt ashamed of myself. +p58367 +aVA few days back a friend of mine had asked me to call on him on Sunday. I had accepted it but later did not go for no specific reason. I just slept in my room. The next day this friend called me up and told me that he had been expecting me the day before and his wife had prepared a very good lunch for me, which had gone waste. I felt very bad about this incident and it has been growing in my heart ever since. +p58368 +aVWhen I got my B.Sc degree with first class. +p58369 +aVBefore the declaration of the S.S.C results. +p58370 +aVWhen I was punished in school for no serious mistake of mine. +p58371 +aVWhen I received the S.Y.J.C results, the marks I obtained were not up to my expectations and I missed admission in engineering. +p58372 +aVWhen I could not attend the college picnic due to some difficulties. +p58373 +aVWhen I was detained one day in school, by the vice-principal, for indiscipline. +p58374 +aVOne day at school I had quarrelled with a school-mate, and ultimately I had hit him hard. He, being physically weak had to visit his doctor and remain absent from school for two days. +p58375 +aVThis happened when I was in the 10th standard. The paddy crops were in a bad shape as it had not rained and there was no water in the well, so I was in a very sad mood. I came to the conclusion that I would ignore the paddy field, just 12 hours after this it rained for one hour. This was a very tense time and the rain brought me tremendous pleasure. +p58376 +aVAt the age of 16 I had gone to see a film in a nearby village, about 8 kms from my home. I started walking as there was no bus. I had to cross hills and as it was dark I could not identify the path. Half way through it started raining and as there was no shelter I ran four kms to reach home. +p58377 +aVOne day my room-mate started imitating me, doing what I had done a few hours back. I got very angry and started beating him up. +p58378 +aVA few months a close relative of mine died. I had never expected this to happen and was sad for a few months. +p58379 +aVOne day, at an important place I met a group of girls and while we were waiting for a bus these girls started smoking and commanded me to smoke; I felt very disgusted. +p58380 +aVA few months back I had gone to my friend's place and they offered me tea and coffee. I do not have the habit of drinking tea or coffee and so they offered me a glass of milk instead, so I felt ashamed. +p58381 +aVAt my native place I was riding my cycle, which did not have lights, at night and so a police man caught me. I requested him to let me go but he would not so after a few minutes I just escaped. +p58382 +aVAfter my graduation exams I was waiting to get admitted to a post graduation course, however the situation was not very favourable for me and I was upset. Suddenly, Bombay university offered me a seat and I landed up in Bombay for my post graduation studies. This happened last year and was very pleasant for me. +p58383 +aVThis was the worst incident of my hostel life. I was insulted by a close friend of mine on the eve of the New year and it totally spoiled my New year's night. +p58384 +aV When I feel that I have made a mistake. +p58385 +aVWhen I got my B.A degree with first class. +p58386 +aVI received a letter from my college telling me that I would not be allowed to sit for the exams because of my low attendance in class and the bad experience in the terminal exams. +p58387 +aVOnce a friend had pushed me and I had fallen on to a window which then broke. I was taken to tthe principal's office and he accused me of having broken the window. +p58388 +aVWhen I received my S.Y.J.C results which did not allow me to get admission in engineering. +p58389 +aVOnce when I was studying for my examination, I was asked to do some work which was unavoidable. +p58390 +aVMy teacher asked me a question which I failed to answer and I was told to stay behind after the class and give the answer after studying it from a book. +p58391 +aVDuring class one day I walked out of the class. The teacher noticed it and decided that he would take some action against me, when I realized this I approached him and told him that I was sorry for the incident and would not repeat it. +p58392 +aVWhen I passed the 12th standard board exams. +p58393 +aVMy illness a few years back. I was sevely down with malaria and asthma, I had lost my health, charm and cheerfulness completely. +p58394 +aVDuring the short period of my unemployment about six years back. +p58395 +aVMy father's death in January 1983 moved me deeply. The gloom prevailed for almost two years and I am still to recover from it. +p58396 +aVWhen I was 12 years old I was caught by the Ticket Collector when travelling without a ticket. +p58397 +aVA few lies that I had indulged in, a few years ago, while raising loans from my friends. +p58398 +aVAfter having finished my B.Sc, I was struggling hard to continue my studies and had taken the M.SC exam. I was not sure that I would be selected in the written exam. When I saw my name in the selected candidates list I was overjoyed. +p58399 +aVWhen I did not get admission in M.Sc after my B.Sc, I felt really bad. When I started my journey to Bombay, after having accepted my uncle's offer to come to Bombay, I was afraid, wondering if I would succeed or not. +p58400 +aVWhen I was dancing with a dame at a social, one of my friends who was interested in her came and took her away from me. I was really angry with him then. +p58401 +aVWhen a close friend, residing in the hostel, lost his father I really pittied him and the situation made me feel sad. +p58402 +aVAfter my +2, when I did not get admission in B.E I felt disgusted. +p58403 +aVWhen I was in the 12th standard, I could not speak English. One day, while talking with my relatives I used a wrong word and my cousin corrected me, believing that I did not know English. I really felt ashamed then. +p58404 +aVWhen I got low marks in the final year B.Sc exams, I felt guilty as I had not worked hard because I had been roaming around with my friends. +p58405 +aVI was doing an experiment and was not getting the appropriate result despite the fact that I had repeated the procedure 4-5 times. Then finally I got it right by a stroke of luck. +p58406 +aVOnce I was very frightened at night as I had a very fearful and terrifying dream, I could not go back to sleep for a long time. +p58407 +aVOnce I had an argument with my friends and I knew that I was right. My friends went on arguing with me even though they did not know the right thing. +p58408 +aVMy elder sister forced me to do a few things which I did not like to do. +p58409 +aVOnce I had torn a few pages off a library book and I felt ashamed at this. +p58410 +aVWhen I realized that I loved someone of the opposite sex. +p58411 +aVAfter I was thrown out of a car in an accident, this resulted in a fracture. +p58412 +aV During my childhood when I could not get what I wanted from my brother/sister and parents. +p58413 +aVI felt disgusted when I was in a helpless position at the loss of my fiancee. +p58414 +aVThe day my fiancee told me that it was bad that I could not write my mother tongue. +p58415 +aVI felt guilty when I thought that I was still not standing on my own feet. +p58416 +aVThe way this particular girl spoke, behaved, and reacted the first time I was introduced to her, I felt certain that something between us would materialize. +p58417 +aV Ther are many instances which are all equally irritating. +p58418 +aVWhen a girl did not answer a question, concerning my love for her, put forward to her. +p58419 +aVI most joyous moment was the day I got my marks. I was very happy when I came to know about my marks at the M.Sc (part I) examination where I got 71.5%. This was the highest marks I have ever scored in my life. +p58420 +aVI was travelling in a bus from school going home for holiday. In the bus unfortunately I stepped on a bag in which there were delicate things. +p58421 +aVWhen my brother was selected to the University of Malawi (the Polythecnic). I was very excited and I rejoiced due to one of our family members qualifying for University level at long last. +p58422 +aVOn May 20th I got a summon to appear in court on May 28th 1985 on the subject of impregnanting a school girl. I really feared of standing in the court in a few days time after this notice. I was also embarassed due to formal approach that was expected of me to the Principal. +p58423 +aVSometime ago I felt very angry when my mother wrote me telling me that my elder sister was messing up things at home by her internalised aggressive attitude towards parents and her husband. +p58424 +aVI felt very sad when I was in Form three to notice that my friend Barley Jumbe, had lost very expensive new sports short trousers. +p58425 +aVFour weeks ago I felt very much touched to find an asciatic patient who had asked the very morning to be tapped of the fluid, dying in the evening. I was really disgusted because this was the Medical staff's negligence. Had the Clinical officers done something that very morning he might have been alive today. +p58426 +aVTruely, I got very ashamed when my brother was sent out of Business Machines Limited Company due to improper handling of the office equipment in Sales Services. +p58427 +aVGuilt conscious struck me when I failed my Standard Two Examinations in 1972. I knew that I would suffer the consequences of what I had been doing during class hours: thus playing with friends and sometimes not even going to school. +p58428 +aVAfter sitting for the Standard 8 Exams for the second time in 1979, I had great joy when I heard that I was successful in the Examination when the results were out. +p58429 +aVI had a cousin whom I loved so much. Unfortunately she passed away suddenly and one time I had a dream in which I was talking to her yet she is dead. +p58430 +aVSomebody wanted to beat my brother at a wedding ceremony and I was trying to protect my brother but the other man was calling names to both of us. +p58431 +aVI never failed my examinations since Standard 1 but I experienced sad moments when I sat for Standard 8 Examination and I was not selected for Secondary School education in 1978. +p58432 +aVI had experienced odd moments one time when a patient came into the Ward in which I was working. The patient was badly burnt in the right side of her body. I was very nervous at the sight. +p58433 +aVWhen I was young I was playing football near my parent's house and while playing I fell on the ground. At first I thought I was not seen by anybody, but when my mother laughed I felt very ashamed. +p58434 +aVI had been on friendship with a certain girl for sometime and the love was going on well, but it happened that I made the friendship come to an end suddenly without good reasons. +p58435 +aVI was emotionally happy when I was in love with the girl I had longed for. +p58436 +aVI once felt that my last hour had come when I was unexpectedly found in the hands of. +p58437 +aVIt happened that my brother promised to give me money for school and then he told me that he had failed to fulfil his promise a day before school started. I became so angry for I thought my future would be ruined. +p58438 +aVI was all of the sudden sad when I heard that my cousin who usually paid school fees had passed away after a very short illness. +p58439 +aVThe first day I visited the hospital I was disgusted because I experienced offensive smell which I never expected. I nearly ran away from the course. +p58440 +aVI once felt shame when I failed to fulfil the promise to marry a daughter of a certain gentleman. +p58441 +aVI felt guilty when I was robbed of a friend's radio at Lilongwe bus depot after promising that I would keep it safe. +p58442 +aVWhen I heard a rumour that the 1st year exam results were out. I had fear that I might be one of the failures. +p58443 +aVSomebody was blaming me of a story which was not real and not true. +p58444 +aVDeath of my grnadfather after having been in hospital for so long with cancer of the Oesophagus. +p58445 +aVWhen mum had beaten my young sister just because she had received a letter from a boyfriend. +p58446 +aVWhen I had not done well in Geography at my MCE I was expected to get more than I did. +p58447 +aVWhen a patient had died soon after I had told the guardian to wait outside the ward. +p58448 +aVWhen I passed my Primary school leaving certificate and selected to go to a Boarding secondary school. +p58449 +aVWhen I was feeding a premature baby (7 months), the baby chocked. This was when I was working in children's ward I thought I had killed the baby. +p58450 +aVWe were just about to go into the Exam room and I didn't see all my writing materials plus the identification card from the place where I left them. +p58451 +aVWhen my boyfriend did not turn up in time as he promised he would be coming. +p58452 +aVThe time when I cleaned the house and everything was tidy, then my cousin, who is 4 years old, came with a muddy pot and made a mess of the whole thing. +p58453 +aVBad temper of the serving lady in the students' dining hall. +p58454 +aVTeacher suspected me stealing money. +p58455 +aVFailed to do what I had promised. +p58456 +aVSaw on TV China winning the gold medals. +p58457 +aVStaying in the room alone at night. +p58458 +aVAn old lady slipped and nobody helped her. +p58459 +aVA friend's mother died. +p58460 +aVSaw a dirty street. +p58461 +aVNot collecting homeworks in time to give the teacher. +p58462 +aVNot helping other people to do their homework. +p58463 +aVMade a wonderfull new friend. +p58464 +aVMy friend started to misunderstand and hurt me. +p58465 +aVInsulted by disgusting people. +p58466 +aVMy friend was badly hurt. +p58467 +aVSomeone not responding to my criticism. +p58468 +aVSwearing in public. +p58469 +aVHurt someone's feelings unintentionally. +p58470 +aVWhen you told everyone in the last lecture you will do all lectures again in English and everybody can come (not only English classes) +p58471 +aVBefore an examn. +p58472 +aVMy class leader told me I am not chosen for your English lectures. +p58473 +aVFinding out that the university will give first priority to qualified practioners and clinical years to go to your English lectures. +p58474 +aVFinding out that old and useless practitioners of retirement age will go to your English lectures and they do not understand English. +p58475 +aVChina cannot give your lectures bigger place and sound system. +p58476 +aVI am not good enough for your experiment I am doing. +p58477 +aVWinning a game after a long time of losing. +p58478 +aVAlmost had a bicycle accident. +p58479 +aVPeople not cueing in the dining hall. +p58480 +aVFailed an examn. +p58481 +aVSaw a real party leader. +p58482 +aVFailed to recagnize a friend on the street. +p58483 +aVForgot to collect post for a friend. +p58484 +aVBeing chosen to do your experiment with aphasia. +p58485 +aVYou may find out that I am stupid and not to let me do your experiment. +p58486 +aVA classmate told me I must have bribed the class leader to let me go to your English lecture. +p58487 +aVI was not chosen for the All English class. +p58488 +aVSaw my class leader acting like a God when he chose people to go to your English lectures. +p58489 +aVTalking to friends about how old you are and we cannot be as successful as you at your age. +p58490 +aVTelling friends about your nickname. +p58491 +aVI got better marks in the examn than many arrogant people. +p58492 +aVBefore the examn. +p58493 +aVInsulted by some stupid people. +p58494 +aVLost a friend. +p58495 +aVHear people talking at my back. +p58496 +aVSaw something stupid and ignorant happening in the countryside. +p58497 +aVI was very scared when I went to the examination hall for my M.Sc examination as I had studied a limited partion of the course thoroughly and I was in great doubt whether that would be asked. +p58498 +aVI was most angry when India lost the Triangular Cricket trophy held in Australia. I was so angry that I fought (orally) with my friend. +p58499 +aVI was very sad when I got the XIIth standard results, when I got low marks as compared to my friend and I could not get admission to courses like medicine. +p58500 +aVI was disgusted at myself when I dropped a vital catch, while playing a cricket match, and we lost the match; though the catch was difficult. +p58501 +aVThere is one thing which makes me feel shameful, when I see friends of my age group working and earning a lot, when I am still studying. A friend I met a week ago after a period of 5 years is earning more than Rs 3000/ month. +p58502 +aVI felt guilty when I read an advertisement for a job as a chemist in the newspaper and when my friend asked me if I had applied for that job, I told him that I had not even seen the paper of that day. +p58503 +aVWhen I got my first unknown compound while doing my M.Sc research, I was very happy. This is because my research was based on this type of reactions and compounds. +p58504 +aVI was very scared at the time of the Ty.B.Sc examination as I had decided to get 1st class results. I was afraid thinking of how the papers would be. +p58505 +aVWhen my neighbours accused my brother of stealing their rose-bush, I was very angry as he had not touched it at all. +p58506 +aVWhen I heard that my girlfriend was getting married to another person, I felt very sad. That day I did not eat anything and kept thinking of her all day long. +p58507 +aVWhen I had insulted my father two years back, at that time I was very angry due to some reasons. +p58508 +aVI felt very guilty when I tried to teach swimming to my younger brother, as I myself could not swim very well and my brother had started sinking to the bottom, however my elder brother saved him. +p58509 +aVThis happened a year when I was having a hard time, I got admission to do research despite obstacles in the procedure of admission. +p58510 +aVIt was the time when I was in no position to secure a Ist class in the M.Sc exam and this was likely to affect my career. +p58511 +aVI missed an opportunity to go abroad because of some silly mistakes for which I had to suffer a lot. +p58512 +aVIt was at the time of my M.Sc exam, when I was not in a position to take the exam after having studied seriously. +p58513 +aVWhen I opted for my research field, for them the percentage of marks was more important than my knowledge. +p58514 +aVWhen I was not in a position to control myself. I had said too much and had been cruel with no other than my mother. +p58515 +aVTwo days after the above incident, I was thinking about my morally shameful act and I felt sorry for that incident, but it was too late, however I did realize this. +p58516 +aVWhen I got the first compound through column. +p58517 +aVWhen I did not get the compound which is known. +p58518 +aVWhen I got low marks in B.Sc final. +p58519 +aVWhen my first love was not successful. +p58520 +aV When mix was coming from column for several days. +p58521 +aVWhen I had been angry at my friend without any reason. +p58522 +aVWhen I forced a close friend of mine to ask a girl things about herself. +p58523 +aVIt was about a fortnight ago, I was declared successful in the U.G.C exam this year (only four in Bombay succeeded). My joy knew no bounds. +p58524 +aVWhen I was a kid, I always opened the door to greet my father when he came back from work. One day it so happened that his hair was scattered due to over-crowding in the train, and when I opened the door as usual I saw something else. I was so scared that I could not talk. +p58525 +aVThis also happened when I was very small. I was beaten up by my mother for no fault of mine, I had just beaten up my younger brother for what I thought was his fault. I was very angry with my mother. +p58526 +aVAfter studying a lot for my H.S.C exams, I could not make it to the medical stream and I felt sad about this. +p58527 +aVWhen I got admission in M.Sc (I) Organic Chemistry, I was very happy. +p58528 +aVWhen I came to know that my exams were on two successive days and that there was very little time (about 9-10 hours) to study in between. +p58529 +aVI was very angry when my friend lost my practical's journal, which I needed to study for the exams. +p58530 +aVI was very sad when I did not get admission in the English college, as I had 1% less marks than they wanted. +p58531 +aVI was disgusted when our cricket team manager dropped me from the team. +p58532 +aVI was ashamed at myself when I saw that the other boys and girls of my age earn a lot of money by doing very good and hard work. +p58533 +aVI felt very guilty when a student, sitting in front of me in the exam, asked me a few questions and I did not show him the answers, though I knew them. +p58534 +aVWhen I passed the TOEFEL with very good marks. +p58535 +aVWhen I was going to take the practical exams. +p58536 +aVWhen I was teased by my friend for not scoring good marks in the exams. +p58537 +aVWhen I was ditched by my girlfriend. +p58538 +aVWhen I lost the notes of the lecturer I had borrowed from my friend. +p58539 +aVWhen I was teasing a girl, who turned out to be my brother's dame. +p58540 +aVWhen I was bluffing in front of my mother to get more money. +p58541 +aVThe moment I got the news that I had been selected for the U.G.C junior national research fellowship. It was a dream come true. +p58542 +aVMy brother lost his temper and started smashing things in the house. I was quite scared, that something terrible might happen, till the situation was brought under control. +p58543 +aVI wanted to go to Bhopal for relief work (gas tragedy). My boss simply refused to let me go, I was so angry that the only thought that came to my mind was to quit the job. +p58544 +aVA friend of mine was hospitalized after having been diagnosed as having typhoid, he had to forgo his exams and also his ambition of doing a dissertation at the M.A level. It was a very sad event for me and I felt very sorry for him so I volunteered to stay with him in the hospital. +p58545 +aVThere was a family fight in my house some time back. My uncle had given me a watch as a present and I lost it. During the fight he accused me of having sold the watch. I was disgusted at his false accusations. +p58546 +aVI had written a ""love-letter"" to a class-mate of mine, this was meant to be a joke. Unfortunately it fell in the wrong hands and I had to face the consequences. +p58547 +aVMy friend had written a letter to me, the contents of which I misunderstood and I wrote back a very harsh letter to her. On realizing the blunder I had made, I felt like hiding my face in the sand. +p58548 +aVI have a girlfriend, who is almost like a daughter to me. She is studying out of station and I get to see her only once a year. Her arrival is always a joyous one. +p58549 +aVWhile I was pushing a court roller out of a ditch, I slipped and fell down and the roller rolled back towards me -down slope-It is a miracle that I still have my legs intact. +p58550 +aVI was the compere at a party and all my efforts to get the show rolling were thwarted by the immobile, non co-operative guests. I felt frustation - bordering on anger. +p58551 +aVA railways officer, when asked by the ticket checker to produce his tickets, got very aggressive and started abusing and using his authority in a very wrong way. +p58552 +aVWhen I was successful at my work I was full of joy. +p58553 +aVWhen I was treated improperly by someone. +p58554 +aV When bad and disgusting language is uttered by people, or when someone tries to show what is beyond his own capacities. +p58555 +aV I missed my twin when I was on the verge of being thrown, which I disliked. +p58556 +aVWhen Kanishka was blown up, I really felt disgusted at people killing each other. +p58557 +aVWhen I received the best actor award at the inter-college drama competition. It gave me tremendous joy and satisfaction which lasted for several days. +p58558 +aVWhen my mother met with a serious accident and there was danger that she would not survive and if she did she would loose her memory. +p58559 +aVWhen an acquaintance of mine beat up another person for no just reason, and thus showed off his power. +p58560 +aVWhen a friend of mine died in a hiking accident. I was not present there and only got the news later. +p58561 +aVI felt this emotion when my name was announced on the radio that I had been selected to come to Lilongwe School for Health Sciences to take a training course as a Medical Assistat. +p58562 +aVI felt the above condition when I took my brother's bicycle to a market and unfortunately the bicycle was stolen and I didn't know how I could tell the owner about the stolen bicycle. +p58563 +aVI felt angry when my only pair of trousers was stolen and could not be able to find out who the thief was or anyone who knew about the story. +p58564 +aVI felt sad when my dear friend was needed from training school due to his failure in a number of subjects and simply didn't know what he had to do. +p58565 +aVI felt the emotion when I entered a certain ward in the hospital to visit my relative who was sick. +p58566 +aVI felt the above condition when I was found in a house playing with another man's wife where I was asked questions and I was unable to answer. +p58567 +aVI felt the emotion when I fought somebody who was drunk and tried to disturb us while we were having meals. +p58568 +aVWhen I was at school, no one thought I could pass my MCE so at the end of the year my name was announced on the radio that I had passed. I was the happiest person. +p58569 +aVI was living with my brother and one day he went away on business and I was left alone to look after the house and the property. At night thieves came and wanted to break into the house. +p58570 +aVMy young brother took my wristwatch in my abscence and sold it to his friend at a cheaper price. +p58571 +aVI had a girlfriend who lived several kilometers away from my home. One day she wrote me that she'd visit me. On her way she had a car accident and was badly injured. I was very sorry to see her lying in a bed in the hospital. +p58572 +aVOne of my best friends was found lying flat on the road because he was drunk and was taken by the police and put in a cell. I went to see him the following morning, the place was really a mess and was smelling badly. I didn't like it. +p58573 +aVIt was my father's birthday party when I was asked to bring a tray of tea and other drinks. +p58574 +aVOne day I took my playmates to the river to swim and play. One of them was epileptic so he drowned into the water. I felt guilty because it was me who took them there. +p58575 +aVWhen I was accepted to study at this school I was very happy. +p58576 +aVI was moving in the graveyard at 6.00 pm one day and was griped by fear because I was told that ghosts detain people moving there at night. +p58577 +aVThere is a mad boy in our village. This boy hit me with a raw paw-paw in the face. +p58578 +aVIt was last September when I felt very sad. It was when I heard that I was not selected to study in the University of Malawi. +p58579 +aVIn Ward 1A was an epileptic patient who was burnt the whole body and was stinking very much such that the whole ward was affected. Few people could come near him. +p58580 +aVAn out-patient asked me to read for him a certain prescription but I was unable to do so. The patient was dissappointed and lost hope in me. +p58581 +aVIt is some years ago when my mother found me stealing relish in the pot. It was fresh fish which was very appetising. +p58582 +aVIt was in December last year that I was chosen to come to this Institution to study as a Medical Assistant. +p58583 +aVIn March I was busy studying during the night I could only sleep two or three hours only for fear that I would be weeded and sent back. +p58584 +aVI once caught a letter in my girlfriend's handbag from a certain man. I felt anger. +p58585 +aVI was once nominated as an Officer Cadet in the Armed Forces and my name was cancelled on the list of nominees of those who were sent to Kenya for Training. +p58586 +aVThe time I went to see one of my girlfriends at Area 18 I found that she was not there but in the room she was sleeping, in the same room there were some women visitors with children so the room was smelling very badly with some faeces and urine in it so I didn't stay any longer. +p58587 +aVIt was last week on Sunday that I was walking with my girlfriend along Kawale road going to town so I tried to stop a car for a lift and the driver didn't stop and I felt shame because people were looking at us. +p58588 +aVI was once called in court in Zemba Traditional court to answer a charge of impregnanting a young lady, I felt guilty for she had some letters which I used to write her as an exhibit in court. +p58589 +aVThere was joy in me when I heard that I was to take a course as a Medical Assistant. +p58590 +aVWhen I saw a dead body in the mortuary I became afraid and I was filled with fear. +p58591 +aVA certain Area Party Secretary came home in the morning and said we had to leave our home and build somewhere and the reason being that they wanted to establish a market. The Chairman knew nothing about it and was very angry. +p58592 +aVI was so sad when I heard that my Uncle had passed away. He was the only man who was supporting my parents as well as myself. +p58593 +aVI was disgusted with my girlfriend's behaviour. She was going out with other boys who were also my friends. +p58594 +aVIt was a shameful moment when I heard that I had failed my Primary School leaving Certificate Exam in 1978. My girlfriend was there when the news was released. +p58595 +aVI took Pharmacology books from my friend's desk without permission and I was found guilty. +p58596 +aVWhen I was in Form 4, at Secondary School, I was elected as a school Library Assistant and also the leader of Catholic Students, so I felt very joyous. +p58597 +aVI broke my Uncle's Radio player accidentally and so I feared that he was going to cut me off from going to his house as well as playing it again. +p58598 +aVIt was in March 1985 when one of my fellow students borrowed my wristwatch and after sometime he broke a glass of that watch I got angry when he was telling me but the anger didn't take long to fade. +p58599 +aVWhen I was about to write my Junior Certificate Exams, I received sad news telling me that my elder sister had passed away. +p58600 +aVI was disgusted with the behaviour of one of my fellow students during my Secondary School life. He was a habitual noise-maker and caused great conflicts with the teachers. +p58601 +aVI remember when I was in Standard 6, I failed one of the terminal tests and I told my parents that I had passed but after they found out from the class teacher that I had failed, I was proved a liar. +p58602 +aVSometime back I came across a certain man who was badly beaten by some people because he was found raping the wife of the village headman. +p58603 +aVThe joy came to me when I heard that I was going to start a Medical course at the Lilongwe School for Health Sciences. +p58604 +aVThe emotion came when I misbehaved at school and the Principal threatened me that I was going to be expelled. +p58605 +aVThe emotion came when a certain boy opened my locker without my knowledge. +p58606 +aVThe sadness came to me when I heard that my girlfriend whom I loved so much got married to another man before a rebuff from her. +p58607 +aVThe emotion came to me when a certain girl who was not polite to her mother hit her sister severely. +p58608 +aVThe shame came when I was beaten by my teacher at school in front of boys and girls some of whom were my friends and a girlfriend apart from being classmates. +p58609 +aVIt was when I discovered that the girl who I had proposed was a friend's girlfriend. +p58610 +aVWhen I was told that I was selected to attend Medical Assistant Training. +p58611 +aVWhen I was told to attend an operation in theatre. +p58612 +aVThis situation happened when my friend John ate my banana which I kept in the cupboard. +p58613 +aVWhen I was told that my father had passed away. +p58614 +aVThis situation occurred when I entered into a smelling ward. +p58615 +aVThis situation happened when I was found kissing a girl who was my friend's girlfriend. +p58616 +aVThis situation happened when my friend me with a knife which I stole from him. +p58617 +aVWhen my father married a certain lady. The reception was held at Kasungu town Hall. +p58618 +aVAt night when I was coming from Lingadzi Inn I heard a hyena crying in the Lingadzi jungle. I was alone. +p58619 +aVI felt angry when I was told that I had not been selected to go to the University. +p58620 +aVI felt sad when I was told to walk out of the classroom because I was within the row of students who were making noise. +p58621 +aVI felt disgusted when a certain lady spoke words of sarcasm when I was trying to propose to her. +p58622 +aVWhen I broke a tea saucer. I felt ashamed. This was during the birthday of my girlfriend. +p58623 +aVI felt guilty when I was given a prize which belonged to someone else. +p58624 +aVMy girlfriend who had been very far away from me came to my place. She saw me and ran after me. I didn't know that she had come. I couldn't see her. She held my shoulders standing behind me. +p58625 +aVI was given a wristwatch by my first girl and after two days another girl of mine also gave me a wristwatch. +p58626 +aVMy girlfriend mentioned a certain girl's name who was my girl some time back and she is no longer mine that she said she was still mine. +p58627 +aVI had been caught red-handed having stolen some paw-paw. I was then taken the elders owning the paw-paws. +p58628 +aVI was double crossing Mercy and Maria. They one day came to know each other. I was found by Mercy red-haded when I was with Maria. +p58629 +aVI had a girlfriend in the same class I was. I did not do well in my Exams, but she did satisfactorily well and was taken into another class leaving me behind. +p58630 +aVOur Headmaster came to our hostel. The lights were off but there was a lot of noise. We shouted at him when he knocked at our door. We later saw that it was the Headmaster. +p58631 +aVThis happened when I was selected to go to Secondary school to start Form I in October 1980. +p58632 +aVAs I was taking venous blood from another patient I introduced air into the place of puncturing and there was a swelling which is dangerous to the patient hence I became afraid. +p58633 +aVMy lovely girlfriend double-crossed me and so that I found her chatting with another guy. +p58634 +aVI really became sad when mother passed away while I was very young. +p58635 +aVI was disgusted when my brother was arrested because of stealing money. +p58636 +aVI was ashamed when my classmates discovered that I fell in love with an uneducated girl. +p58637 +aVI felt guilty when I lost K43 for my friend when he was arrested. +p58638 +aVI felt joy when I passed my Malawi School Certificate of Education. +p58639 +aVWhen I had crossed Lilongwe forest I heard that there was a rabid hyena just near the path in the forest. +p58640 +aVI was angry when I heard that my only girl was going about with another man. So I decided to drop her but later the story came to be untrue. +p58641 +aVWhen I was not selected to go to the University of Malawi I felt very sad. +p58642 +aVWhen I was presumed to have stolen maize from the school garden. +p58643 +aVI once proposed my own niece whom I did not know but I discovered after she was my girlfriend. +p58644 +aVA certain colleague of mine sent me to buy a bag of flour for him, he gave me K20. Unfortunately I lost it. +p58645 +aVWhen I married my wife and took her home for the first time. +p58646 +aVWhen my friend was involved in a car accident. +p58647 +aVWhen I was charmed by my relatives. +p58648 +aVWhen my mother died in August 1978. +p58649 +aVWhen I entered the wound intensive care at the Central Hospital in Blantyre which was stinking. +p58650 +aVWhen I first failed my standard 8 exams for the first attempt for Form I selection. +p58651 +aVWhen I had beaten my auntie. +p58652 +aVMy friend took me to Civo Stadium to watch and listen to the music of the International singer Sam Mangwana. I had no hope of going there since I had no money so he gave me the money for admission. +p58653 +aVI had fear when I was left alone at the bus depot at night. I had problems of how to move to this place. +p58654 +aVI felt angry when I heard that my sister had failed the Examinations which we hoped she was going to pass with distinctions. +p58655 +aVI felt sad when I heard that my girlfriend was double-crossing me with the boy who is my best friend. +p58656 +aVI felt disgust when I saw a friend walking in stagnant water without putting on gum boots. +p58657 +aVI experienced shame when I failed to keep a promise to meet my friend at the bus depot. He later came and asked me why I had not turned up. +p58658 +aVI felt guilty of revealing a secret to my in-law. I told her that my brother and I had gone to disconight which is a thing my brother didn't want to let her know. Later my brother was accused of spending a night out. +p58659 +aVThe joy came when I first proposed a girl at Secondary School. +p58660 +aVAs I was in a ward one man died and I was instructed to watch the last offices. But this was my first time to see a dead person - fear came. +p58661 +aVI was very angry when I heard that my brother was beaten by his friends. +p58662 +aVI was very sad when I heard about the death of my teacher who taught me in Standard 8. +p58663 +aVI was disgusted to see a person vomitting and I was told to clean the place where the vomit was. +p58664 +aVI was ashamed when a certain friend of mine I used to move with failed to propose to a lady yet we always said to ourselves no lady can refuse our proposal. +p58665 +aVI felt guilty when one of my secondary teacher left me while I was in Form three, he was the only one who showed love to me. +p58666 +aVMy sister gave birth to twins, healthy ones. +p58667 +aVI was looking after my father's sheen in the forest. One day while playing with friends from neighbouring villages the flock escaped me and went into a far place. It became dark and I was afraid of father. I went home and hid myself. +p58668 +aVI planned to travel a distance of 20 kilometres on my bike. I planned this when I was working in the hospital. When I went to the house I found that a friend had taken my bike without my consent. +p58669 +aVIt was in the evening when I heard that my girl went to Zambia and that she would never come back. +p58670 +aVA sister broke a cup and when mother asked I was reported to have been responsible. +p58671 +aVOne day mother slaughtered a chicken for a brother who had come back for holiday. In everybody's absence I opened the foodstore and ate all internal organs of the chicken. When mother discovered, we were all called and I was found with hands stained with soup. I was ashamed being the eldest of all in the family. +p58672 +aVThis emotion happened when I passed my primary school examination and was selected for Secondary School. +p58673 +aVAt primary school I was accused by some boys of being in love with a certain girl in their class so they had to shout and beat the girl and the matter was reported to the headmaster. +p58674 +aVI was very angry when one day I went to see my girlfriend I talked to her and could not answer back. She was depressed for reasons which were not known to me. +p58675 +aVI was very sad when I was shouted at by Uncle and was told that I was not to be given school fees because I didn't go to work in the garden since I had gone to escort my sister to the bus depot. +p58676 +aVI was disgusted when I was told to dress a big rotten stinky wound which, coming closer, made me feel like vomitting. +p58677 +aVI was ashamed one day when we were found stealing and roasting maize cobs from Agricultural experimental projects. +p58678 +aVI felt guilty when the truth was known about my impregnating the girl we were staying with. +p58679 +aVIt was August 30th when I heard on the radio that I passed my M.C.E. exams and I was really happy and joyous because of the event. +p58680 +aVI was walking alone along the place where people fear that there are always thieves there and the people who kill their friends during the night two months ago. +p58681 +aVI once was accused of falling in love with someone's girlfriend which was not true because the girl was just a friend of mine. +p58682 +aVIt was when I failed standard 8 exams while all my friends passed and went to secondary school. In class I was always getting more marks than they did. +p58683 +aVMy first day to work in hospital, when I was dressing wounds I was disgusted when I came across one wound with a very bad smell. +p58684 +aVOne day I was with my girlfriend and other friends were behind us, I fell down because the place was slippery and I really felt ashamed. +p58685 +aVI felt guilty one day when I was accused of running away from classes and I was caught. +p58686 +aVIt was when I was allowed to take my wife away from her parents after being refused for three times on grounds that she should first write her examination. +p58687 +aVWhen two hyenas made crying noise on the window of my bedroom at home when I was preparing for my MCE examination during the night. +p58688 +aVIt was when my Instructor awoke me late at night to get prepared for the training at Military college when he was coming back from his personal social activities. +p58689 +aVI slept in a tent at the Barracks which caught fire at night and my best possessions got burnt in there. +p58690 +aVIt was when my father beat my mother while she was ill for three weeks and now she was recovering. +p58691 +aVWhen parents of a certain girl refused to let me marry their daughter because I was not fit to do so yet the girl accepted everything and later she followed what her parents insisted and she told me never to talk to her again. +p58692 +aVThe time I was at secondary school during the holiday I appeared to my father while heavily drunk and I talked nonsense like in some sort of carefree. +p58693 +aVThis came in when at one time I met a girl who I didn't expect to fall in love with me. Fortunately I tried my luck and she accepted my proposal. At the same time she was giving me a lot of money which was just like a miracle to me. +p58694 +aVWhen I was travelling at night. +p58695 +aVI experienced this when one of my friends reported to the Headmaster that I had gone out for beer, whilst the information was not true at all. So I had to fight the friend before the Headmaster. +p58696 +aVWhen I was at school. +p58697 +aVOne of those days when I was going to school with my brother and he annoyed me. +p58698 +aVThis was when one of the Clinical officers scolded us in the hospital on how to make beds but we did not deserve to be scolded. +p58699 +aVNO RESPONSE. +p58700 +aVThat was soon after the results of the interview which nearly 9,000 people attended in all the three regions of Malawi. My joy came after hearing on the radio that I was one of the people selected to undergo the Medical Assistant training at the L.S.H.S. +p58701 +aVFear came towards the end of May when the P.T.S. results were out after hearing the failure of my fellow three friends. +p58702 +aVI was once this week angry when soemone trying to compress my mind due to his nonsense speech which himself could not tolerate at all. +p58703 +aVThis condition accumulated in my mind when funeral news was brought to my awareness, that a close relative had passed away. +p58704 +aVA condition in which I was disgusted followed when I lost money on my way home from the college. +p58705 +aVI was very ashamed when I was neglected by a certain friend whom I was thinking loved me very much. +p58706 +aVI once felt guilty when a certain passenger in the same (ship, plane ?) which I boarded when coming from home lost his 10t which in fact fell into my pocket unknowingly. +p58707 +aVIt was when I was selected to go to a Secondary school to start form I. +p58708 +aVIt was when I stepped on a python (snake) unknowingly while it was sleeping near a baobab tree. +p58709 +aVIt was when my friend had stolen my money (K10) and had disappeared. +p58710 +aVIt was when my father was taken into detention by the CIDS for two years for a reason I don't know up to now. +p58711 +aVIt was when I drunk urine during my childhood thinking it was water. My friend had urinated in the tin. +p58712 +aVIt was when my father caught me with a girl in dark corners and asked me what I was doing there. +p58713 +aVIt was when I injured a friend accidentally with a stone. It made a cut on the cheeks which resulted in suturing. +p58714 +aVTime had struck 8 o'clock when I heard from the radio that I had been selected to Robert Blake Secondary School for Form I. I was very happy for the selection. My parents and I were very happy and full of joy. +p58715 +aVMy brother had bowel obstruction, having heard that he was going for surgery, I was afraid he might not come back to life after hearing of the General Anaesthesia. +p58716 +aVI felt very angry after one driver had run over my beloved niece. +p58717 +aVI was away to school (Primary). In my abscence my young brother at home got sick suddenly. My parents took him to hospital. On the way he died. It came to me as a sad, sudden and shocking news and I felt very sad. +p58718 +aVI felt disgusted when I went to one of the Central hospitals where my hope of getting good treatment was turned down by one of the doctors who said I was alright despite my feeling pain. +p58719 +aVI was in my room, I just heard that my Uncle had been caught in somebody's house with somebody's wife. He had to appear in court. I went to see what would happen to him. +p58720 +aVI felt guilty after hearing that my girlfriend with whom I had spent most of my time was pregnant. +p58721 +aVWhen I heard that I had passed Primary School Leaving Certificate and was selected to go for Secondary education. +p58722 +aVWhen I heard that there is teasing and bulling at Secondary School. +p58723 +aVWhen I heard that I was not to be provided with another pair of medical uniform. +p58724 +aVWhen I heard that my father had passed away. +p58725 +aVWhen I vomitted a lump of blood. +p58726 +aVWhen a certain girl I believed to be my life partner refused an engagement. +p58727 +aVWhen I didn't notify someone that he was summoned by a headmaster and as a result he ended being on a heavy punishment. +p58728 +aVI met my girlfriend on the way and she joyfully welcomed me on the way home. +p58729 +aVOne time I set up my journey at night going to a certain bar. On the way I met my friends and they told me that two people had died because of heavy fighting. I proceeded on but with fear. +p58730 +aVAn incident occurred to me when I was going home with my girlfriend. On the way, a man named Banda grabbed my girlfriend in my presence. I was really angry with him and as a result I threw stones at him and he ran away. +p58731 +aVWhen I found my baby whipped by my Auntie. I was really sad and up to this moment my sadness is still on. +p58732 +aVI was really disgusted when I saw one of my friends soiling on his clothes. I thought he was mad. +p58733 +aVOne day I went for a bath. I took off my clothes and as soon as I had finished my brother came in. I felt sad and I found no reason why he came in. +p58734 +aVOne day I took a packet of sweets from a certain Grocery at Nathenje. Then later on I started to feel guilty and realised that I had done a wrong thing to him. +p58735 +aVI felt happy when I saw my brother at the bus depot after 3 months without seing each other. +p58736 +aVWhen we were going to Nkhoma last Saturday the vehicle was moving very fast, so I feared we might crash since the road was too rough. +p58737 +aVWhen they put the blame on me when I scored the third goal at the match. +p58738 +aVI felt very sad when I lost my three Kwacha at civo Stadium when Sam Mangwana was playing some Rumba records. That was not what I expected, I wanted some Disco records. +p58739 +aVIn ward 2A there was a patient suffering from Syphilitic Paraplegia and had pressure sores. The wounds had offensive smell that only a few people .... the place. +p58740 +aVIt was when we were beaten or lost the football match by 5-1 and then I scored the third goal to my own side. +p58741 +aVWhen I scored the third goal to my own side at a football match against William Murray Secondary School and we were badly defeated. +p58742 +aVOn December the 28th I was filled with Joy when I was told by my bosses that I had been selected to attend a course at the Lilongwe School for Health Scienced in Lilongwe. +p58743 +aVIt was last week on Saturday night when I was at Mchesi. I feared to cross the Lilongwe River Bridge to come back to School due to darkness - until somebody had to escort me. +p58744 +aVIt was at Malawi Army, Dormer Squadron, when some of my workmates got promoted to Seargents (sgts); we were having similar Ranks. +p58745 +aVIt was mid May 1985, When we had a Test on Nursing. My classmate had an answer sheet, so he tried to peep. The Nursing Tutor caught him. During this time I was turning my question paper and it made noise. This friend blamed me of causing the whole matter for him to be caught. +p58746 +aVIn May somebody blamed me that I made him to be caught while peeping during the Nursing Test which made me feel disgusted. +p58747 +aVIn our class we had a test on Nursing, so a friend from the Army was caught peeping, by using a paper which had already answers which was written by him. So all of us from the Army got ashamed. +p58748 +aVIt was on January 1st 1985 when I accidentally broke a Fanta bottle in a certain bottle store in Zomba. +p58749 +aVI felt joy when I heard over the radio that I had been successful in my Primary School Leaving Certificate Examination and was selected for Secondary School. +p58750 +aVOne day I was busy day dreaming along the road and suddenly I heard the sound of jamming car braked behind me. I woke up from my dreams and it was about to crash me. +p58751 +aVWhen I was doing my last year at Secondary School I was robbed of my clothes, wristwatch and my pair of shoes. After investigations it was found that all the things were stolen by one of the boys in our hostel. +p58752 +aVIt was on 9th January 1983 when I received a message from home telling me that my father passed away on the previous day with a history of cancer of the oesophagus. This time I was doing my third year of my Secondary School. +p58753 +aVI was stopped from entering a party while I was at School but I had an Invitation card with me. This was done because they said I was too young to join elderly people. +p58754 +aVIn 1972 I failed my Examination because of my own crooky behaviour of dodging from Examinations. +p58755 +aVA child was admitted in hospital with Meningitis. I was asked to do lumber puncture to obtain Celebral Spinal fluid for diagnostic purposes. Since the condition was already bad, the child died as soon as I finished the procedure. +p58756 +aVWhen I had an anticipatory honey-moon with my fiancTe. +p58757 +aVWhen it was found that I had gone out of the school premises without permisssion and at the wrong time. +p58758 +aVWhen a classmate hit me on my occipital region when I was busy studying and concentrating on my classnotes. +p58759 +aVWhen my father died. +p58760 +aVWhen somebody made me touch human faeces. +p58761 +aVSoiled my short trousers with faeces. +p58762 +aVWhen a crawling child got burnt because of my negligence to keep the child away from the fire. +p58763 +aVWhen I heard my name being announced on the radio that I had been successful in an interview for admittance for a medical Assistant training course. I was really happy and I enjoyed myself by dancing to music from the Radio cassette. +p58764 +aVOne time I was injured when I was playing football at School in Blantyre. I was brought to the hospital while my leg was totally swollen. The x-rays confirmed there was no fracture but collection of blood n the muscles. I feared when they started to incise the swollen part with surgical blade. +p58765 +aVOne day I was really angry when all my food was eaten by a dog. My anger was against my mother because she was careless. She didn't keep the food in a hidden and proper place. +p58766 +aVOne day I came across a certain boy who was intruding my friendship as lovers with my girlfriend and I was very sad because I didn't expect that girl to disappoint me I regarded her as being very faithful. +p58767 +aVOne time at the hospital I passed near the intensive care room. The offensive smell that came out disgusted me in such a way that I didn't even dare to enter the room. +p58768 +aVAt one occasion I was ashamed of being refused after a proposal for a friendship with a certain girl. I was ashamed because she refused publically in the presence of my fellow friends. +p58769 +aVI once stole my father's money and denied having done it. Instead father threatened my young brother and he was beaten. He was innocent and I felt guilty. +p58770 +aVWhen I was selected to start Form I at Chilumba Secondary School out of the 100 pupils I was among the 4 who were successful. Family History showed that I had done better than all my brothers who had passed after repeating for several times. +p58771 +aVWe went fishing some 5 or 8 kilometers off the shore of Lake Malawi. Before we could settle down the lake became very rough to the point of threatening our lives. +p58772 +aVI was angered by a classmate who poured soup on to my clothes. He was trying to use a short-cut method in getting his supper. Coming behind my back, he wasn't noticed by me and as I was retreating from a hungry congested people I knocked his plate with my head. He didn't accept being wrong but blamed me for pouring his soup. +p58773 +aVI was sad when my MCE grades were out. I had gone for a football match a mile away from home. The mail found me there. I was disappointed and didn't play the other half of the match. +p58774 +aVI was dancing Malipenga (traditional dance). I exaggerated the steps I was supposed to make in the negative way. This happened in front of spectators. It was bad for our Boma (group) because I was on the front line where ability is displayed and it is this ability that counts when choosing the winning side. +p58775 +aVNews was spread that I had been found doing sexual intercourse with a small girl. At first this annoyed me but later on I became ashamed because many people seemed to believe it. +p58776 +aVI argued with my father on matters concerning marriage. Traditionally speaking, I was not supposed to, so I felt guilty of violating my traditions which I must hold in esteem. +p58777 +aVI passed my MCE Examination. at first I was worried but when I heard my name I had joy in my heart and I arranged for a trip to attend a wedding ceremony. +p58778 +aVI was studying in class at night. I was in Form II by then. There were rumours about an earthquake. That night dogs were chasing one another and passed through the window outside the classroom. Those who saw the dogs thought it was a lion and were terrified. Trying to run away the desks were dragged and there was a shaking movement. I thought it was an earthquake and jumped out of the window. +p58779 +aVSomeone told a lie that I had stolen his money. +p58780 +aVMy Uncle was beaten by his troublesome son. He fell unconscious and gained consciousness after some time. That time I was at school; this news reached me through someone. +p58781 +aVI felt disgust when I received visitors at an odd hour. I was seriously preparing for Examinations, so I did not appreciate their coming. +p58782 +aVI answered a certain question from Dr. Maqgda wrongly. She asked something about Femur and my answer was saying something concerning the brain. So I was very ashamed amongst my friends. +p58783 +aVI wrote a bad letter to someone concerning our relationship which we created ourselves. +p58784 +aVI met a certain lady at Mchesi and I proposed a word of love to her and at the same time she accepted my proposal. +p58785 +aVMy father gave me money for school fees and I didn't pay school fees instead I spent it on beer and did not tell him about this. +p58786 +aVThere was a cup final match between Limbe Leaf Wanderers and Silver Strikers and someone promised to give me some money for admission fee to watch this game. Unfortunately he did not give me. +p58787 +aVI had received bad news informing me that grandmother and grandfather had passed away. The first one to die was my grandmother and after two days grandfather died too. +p58788 +aVIt happened that one of my best friends just took my shirt without my knowledge, I hadn't put it on for many days and I was short of clothes. +p58789 +aVI had high-heeled shoes one time, but a certain girl who saw the shoes told me that they were out of fashion and I looked as an old man when I was in those shoes. +p58790 +aVI happened to have met one of my teachers in town during working hours. The badness was I didn't ask for permission to go out and I was guilty-conscious. +p58791 +aVPassing a very difficult examination which I didn't expect - MCE. +p58792 +aVAs we were going to Area 10 a dog chased me. I was afraid it might bite me. +p58793 +aVBrother took my money to use for his own purposes. +p58794 +aVAfter hearing the news about the death of my sister, I felt very sad. +p58795 +aVAfter buying a ticket, I lost it before I reached my destination and the bus Inspector dropped me at a place I didn't know. +p58796 +aVI was very much ashamed after a friend beat me at school and I was defeated. +p58797 +aVI hit my cousin badly after she threw away my dresses in a pit-latrine that the little girl fainted. +p58798 +aVWhen I was selected to a University College of Nursing. +p58799 +aVWhen one of my relatives went out at night leaving me and my friend alone, I cheated my parents that she didn't go out, after they had heard that she was out, I was afraid that she might have beaten me. +p58800 +aVWhen someone took my writing materials yet I was to write Examinations in a few minutes. +p58801 +aVWhen I failed my Standard 8 Examination for the first time. +p58802 +aVWhen a boy whom I refused to be my lover told all his friends that I was his girl he has refused me because I was not faithful to him. +p58803 +aVWhen someone pointed out that I was proud, yet I didn't dress up properly. This was when I and my friend went for a dnce one Saturday. +p58804 +aVAfter I had cheated my parents that I had lost my textbooks so they had to send me money. +p58805 +aVI felt joy when I heard my name being called on the radio as one of the students who had passed the interview of Nursing and was selected to start Nursing. +p58806 +aVI felt fear when one night my aunt and Uncle left me alone at their house to look after the baby when they went to a party. +p58807 +aVI felt angry at one time when I was chatting with friends and suddenly another friend joined us and started opposing any comment I added to our chatting. +p58808 +aVI felt sad when a thief stole all the clothes from my friend's cupboard at school (boarding). +p58809 +aVI felt disgusted when I was not given money for lunch at school by my father as a punishment for beating my little brother. +p58810 +aVI felt shame when I was asked by my cousin that I promised to buy her a birthday present but I didn't buy it for her in front of friends. +p58811 +aVI felt guilt when my friends were punished to slash grass at the gound because of making noise in class. I was in the group of noise-makers but I denied having done any noise. +p58812 +aVWhen I passed my MSCE Exams and was selected to go to college. +p58813 +aVI was with my boyfriend forgetting that I had left the house unlocked. Unfortunatly a thief came and stole all the kitchen utensils. Thereafter I was afraid of the consequences. +p58814 +aVMy best friend started moving out with my boyfriend. When I heard this my heart sank because I didn't expect that my own good friend could do such a thing, so I got angry. +p58815 +aVI was sad when I heard that my cousin died because of being bewitched by her husband's second wife. +p58816 +aVMy friend promised to take me out for a movie but he didn't turn up. +p58817 +aVI met a woman who was looking for our house. She stopped me but I ran away. When I arrived at home I found the same woman and she told my parents what had happened so I felt ashamed. +p58818 +aVI went to my boyfrien's house. There I found clothes of a certain girl. Without asking whose clothes they were I started tearing them only to realise that they were his sister's and so I felt guilty. +p58819 +aVWhen I was selected to come here. +p58820 +aVSomebody told her friend that she would hit me wherever we would meet. +p58821 +aVThis was when my boyfriend told me that I was double-crossing him with a certain boy. +p58822 +aVWhen I heard that my friend had started drinking beer. +p58823 +aVI went to a party and there were some cakes which weren't good and had a bad smell. +p58824 +aVOne day I was supposed to go to a movie with my boyfriend. In the morning I went to see my Auntie and I didn't come back up to evening. +p58825 +aVI slapped my sister's daughter and after several hours, she had a high temperature and she ended up being admitted in hospital. +p58826 +aVWhen the church choir came one Sunday after being away for some weeks. +p58827 +aVWhen I came home late one day. I was afraid I would be shouted at by my parents. +p58828 +aVWhen a little brother of mine damaged a cassette. +p58829 +aVI was watching T.V with my parents and some pornographic scenes came on, I felt uncomfortable and tried to distract my parents attention by talking to them. +p58830 +aVI saw a program on T.V where they had to saw a skull for an operation. +p58831 +aVWhen I decided not to out any longer with a girl whom I liked quite a lot. This made me feel low for a some time. +p58832 +aV No description. +p58833 +aVWhen I had my first boyfriend. +p58834 +aVI and my cousin went to a filmshow at night. We went without making it known to my mother. While we were there at interval, I came across my mother just close to where we sat. +p58835 +aVDuring the Xmas holiday, I and my best friend at Secondary School had planned to meet at a Cultural afternoon at the Mt. Soche Hotel after missing each other for such a long time. When I asked my mother for permission, she told me not to go for no good reason. I felt very angry with her. +p58836 +aVWhen I was transferred from Chichiri Secondary School to St. Mary's Sec. School. I was happy at Chichiri as a day scholer and had made a lot of friends. I was going to a boarding and that meant parting with my friends as well as my boyfriend for the first time. +p58837 +aVI felt disgusted when my cousin decided that she would stop going to school saying she wanted to get married. She was only 14 years by then and she didn't understand what she was thinking. +p58838 +aVWhen I failed my Primary school leaving Examinations. I never thought I would fail. When I heard I had failed I really felt ashamed of myself. +p58839 +aVOne time I felt guilty when I told one of my previous boyfriends we were through just because I never felt like having one at that particular time. +p58840 +aVI was filled with joy when I heard that I had been selected for a University course. +p58841 +aVSometime back, my boyfriend and I were having a walk nearby my parent's house. Suddenly we met my grandfather and I was afraid that he would report to my parents. +p58842 +aVOne day I was angry with my friend who went into my drawer and took a piece of paper on which I wanted to write a letter and used it for her business without my knowledge. +p58843 +aVIt was shocking news to me when I received a telegram from home telling me that my grandmother had passed away. I had to go home to attend the funeral but unfortunately I found that the burial had already taken place. +p58844 +aVI was disgusted with my brother's behaviour when he kept throwing things away because of his anger, after mum had shouted at him. +p58845 +aVI was ashamed with my biology lecturer when he asked me a question and I could not answer it. +p58846 +aVOne day I was chatting with children at home. Then I took a lump of soap and gave to one of them pretending that it was a sweet. I thought the child would realise that it was not. Unfortunately he did not and he put it in his mouth. +p58847 +aVI wrote a difficult Exam at one time while in my Secodary School. When the results were announced on the radio, I came second out of 80 students hence I felt joy. +p58848 +aVWhen the week for Exams came. I got afraid as to how I would tackle the questions. +p58849 +aVLast week a friend of mine called on me and said I was moody and difficult to persuade. With this I got angry with her. +p58850 +aVI experienced this emotion when my grandfather passed away. +p58851 +aVIn my village there was this tax collector who used to cheat people and collected more than was wanted, the surplus was for his family and himself. +p58852 +aVI felt ashamed when my lecturer said in class that I happened to be the dullest of all. +p58853 +aVI felt guilty when I was found to be the chief leader of making noise in class. +p58854 +aVWhen I received a beautiful birthday gift form my parents. +p58855 +aVWhen I was called for an Interview at Kamuzu College of Nursing. +p58856 +aVWhen I damaged my wristwatch which I liked very much. +p58857 +aVWhen my cousin passed away. +p58858 +aVWhen my fellow classmates were involved in a quarrel. +p58859 +aVWhen I failed Psychology examination when most of the students passed. +p58860 +aVWhen I promised to visit my boyfriend and I didn't fulfil the promise. +p58861 +aVI had stayed for months without seeing mother because our holidays were short and my home is far. Some times, mother came to see me at school, I was very joyful, and I didn't want her to go. +p58862 +aVOne day during our clinical practices, we had a very ill patient. Unfortunately the patient passed away. I had seen him dying and it was the first experience. During the night I became afraid fearing the dead body. +p58863 +aVIt was during the beginning of the term. I had K100 and kept it in my handbag. I left the handbag in the wardrobe but didn't lock it. Next time I found that K30 were stolen. +p58864 +aVMy best friend had failed Exams. She had to leave and so we got separated. +p58865 +aVI felt disgusted when my appointment to meet the E.N.T. specialist had been turned down. The specialist came from U.K. and went the same day and we do not have one. +p58866 +aVI had been telling lies and people discovered instantly that I was telling lies. I felt very shameful and I felt like disappearing from people. +p58867 +aVI had spent the weekend visiting relatives and friends and didn't study for Anatomy class on Monday. +p58868 +aVI had an interview for entry into college. The results were to be announced on radio. After a long period of waiting the results were released. I had succeded - tension was relieved by joy. +p58869 +aVWhen I stepped on a snake at home, it was dark but there was moonlight. +p58870 +aVI went to a fair where a guy who was drunk kept bothering me and in the end I got really angry. +p58871 +aVWhen I heard that my Uncle had passed away in a road traffic accident. +p58872 +aVI went to a party with my boyfriend who got so drunk and started vomiting. It was so disgusting. +p58873 +aVWe were writing Primary school leaving Examinations when I had fallen at the steps going into the Exam room. +p58874 +aVI was keeping a friend's Library book which went overdue. My friend was charged for the delay in returning the book to the Library. I felt guilty when I realised I was responsible. +p58875 +aVI was given a gift by my sister. There were many pleasant things in this parcel. +p58876 +aVI was alone walking in a deserted part of the city and I had some fear that some men would attack me and rob me. +p58877 +aVI wrote an Exam and happened to have not done as well as I thought I would. I was angry to myself for not having done so well. +p58878 +aVI lost my purse that had money in it. I was sad until I found it. +p58879 +aVI received a letter which was too strong for me. It said I had done something which I really didn't do. +p58880 +aVA friend of mine was shouting at me in a group of juniors. +p58881 +aVBefore going to school I usually take something to eat right at school and this time I took Father's money without him knowing it. I felt guilty and I returned the money. +p58882 +aVThe day I was told that I had passed my Malawi School leaving Exams and I was selected to go to college. +p58883 +aVWhen I was travelling home by bus and suddenly the bus hit and the bus leaned against a wall. +p58884 +aVI was angry when someone stole a magazine which I had borrowed from another friend and locked it in a drawer. +p58885 +aVWhen my best friend promised to come at my house and I had to prepare so many expensive things for her but only to learn at last that she would not turn up. +p58886 +aVI felt disgusted one day when, as we were eating, a child defecated on the table side. +p58887 +aVI felt ashamed one day when my teacher shouted at me in the presence of my boyfriend. +p58888 +aVI felt guilty one day when I stole a slice of bread in a cafeteria. +p58889 +aVWhen I had passed MCE examinations. +p58890 +aVI was afraid when my boyfriend came home because my parents disapproved him of his coming home. I thought they would chase me out of the house. +p58891 +aVI was angry when my friends said that I should not receive Nursing Science books because there was a rumour that I was intending to leave the college. +p58892 +aVWhen my cousin passed away. +p58893 +aVWhen I was a child I broke plates because I wasn't given food on the grounds of coming home late. +p58894 +aVI was ashamed of being laughed at by my colleagues when I failed to answer a question in the classroom. +p58895 +aVI felt guilty after stealing a cookery book from my colleagues. +p58896 +aVI was filled with joy when I heard that I had been selected to come here at Kamuzu College of Nursing. +p58897 +aVI was afraid to walk through the forest one day when I dropped off the bus around 6.30 pm. +p58898 +aVI was angry when somebody stole my half petticoat. +p58899 +aVI felt sad when my father was sick. +p58900 +aVI felt disgusted when somebody told me that my previous boyfriend was her boyfriend. +p58901 +aVI was ashamed when my boyfriend went to sit with another girl when he invited me to come to watch Drama festival. +p58902 +aVI felt guilt to have come back from home without seeing my father. When I went home he was at work. +p58903 +aVThe time I learnt that I had passed my Malawi School leaving Certificate Examinations. +p58904 +aVAfraid of a dead body. +p58905 +aVA tailor ran away with my skirt. +p58906 +aVCooks refused to give me food. +p58907 +aVI saw a septic, smelling wound. +p58908 +aVI was ashamed when I was being introduced to the church congregation. +p58909 +aVI cheated my boyfriend. +p58910 +aVA boy I had been admiring so much asked me to go out with him. +p58911 +aVI was playing with friends then I decided to splash some sand into a car which was moving nearby. The driver got angry and came to report to my parents. +p58912 +aVSometime back another girl who was in terms with my ex-boyfriend came to shout at me at twelve midnight. It was because she thought I was still interested in the boy. +p58913 +aVIn May 18th, 1984 my boyfriend went to the U.S.A. In December I was told he passed away. He had cancer of the Oesophagus. +p58914 +aVOne day I was walking with my boyfriend. We met my ex-boyfriend and out of jealousy he started calling me names. +p58915 +aVMy father who is very quiet discovered I was going out with a coloured boy. He called me names and was really upset. +p58916 +aVI was at a boarding school during my primary school days. I was broken so I pretended I was very sick. My father came and he picked me up. He spent a lot of money on medical expenses which all proved to be negative. +p58917 +aVWhen I passed standard 8 exams I jumped, rolled over the ground. +p58918 +aVI felt so afraid when dad fell ill, he had never suffered from that disease since and I had never seen him as he was. +p58919 +aVI was furious when the teacher pointed out in class that I was the quietest girl in class. +p58920 +aVIt was extremely sad to me when I heard that a patient who I was taking care of in hospital had passed away. He had some abdominal pains. +p58921 +aVI felt this situation when a certain woman from a close village shouted at my mother because she didn't get what she wanted, she wanted some salt to put in her relish. +p58922 +aVI was ashamed when I got the lowest result (mark) in class. All the same I didn't worry too much because I knew I would have got much better if I had read enough. +p58923 +aVAt one time while at primary school I lost a pencil case of a friend and I didn't mention it to her until after a fortnight. +p58924 +aVThe time I first saw my cousin who is living in Tanzania. +p58925 +aVI failed my Nutrition paper which was the paper ending the course. +p58926 +aVWhen a patient in the ward died (one who had been under my care). I felt as if I didn't give the appropriate care to the patient. +p58927 +aVI was filled with joy when I heard that I had passed my Secondary school leaving certificate exam. +p58928 +aVI was afraid when my mother left me alone to live in our house for one month. +p58929 +aVI was angry when my boyfriend did not turn up as promised. +p58930 +aVI was very sad when I heard that my uncle had passed away untimely at home. +p58931 +aVOne day my friend told me that she had heard that I was moving about with her boyfriend. I was disgusted with the news. +p58932 +aVI was walking one day and I met a man who wanted to ask me about my brother but I didn't stop to hear what he was saying. I was ashamed when I found him at home and he told my brother what had happened. +p58933 +aVI felt guilty when I tore a photograph I found at my boyfriend's place only to realise that it was his sister who was on the photograph. +p58934 +aVWhen my boyfriend came form Rumphi to Lilongwe for a visit I was very happy to see him and couldn't believe it was him with me. +p58935 +aVWhen I dream of anything terrifying I used to have fear for the rest of the day that the dream might come true e.g., being beaten (or eaten ?) by a snake. +p58936 +aVI had been in love with a certain young man who pretended to love me but one day I found out that he had another girlfriend who was also a friend of mine. +p58937 +aVI wrote a letter to my boyfriend but he couldn't answer it in time so as a defence mechanism I just found that I felt so sad about it and couldn't talk to anyone. +p58938 +aVOnce I offended a friend, instead of her coming to me to ask and discuss the matter she was just telling other people about it and say all she could about me. +p58939 +aVI was once chatting with friends. Then some boys came and joined us. These boys took all my 3 friends away and I was left alone in shame without knowing where to go from there. +p58940 +aVOne day I found an incontinent man in the ward. This patient had a guardian who couldn't give him a bath. So I just left him like that but felt guilty until I went back to give him a bath. +p58941 +aVWhen I heard that I had passed my end of first year exams and I was ready to enter 2nd year because I felt I had failed as they were very hard. +p58942 +aVI broke a window of a neighbouring house and I feared my mother's judgement and action on what I had done. +p58943 +aVThe headmistress at a secondary school accused me of banging the classroom door when I didn't in front of the whole class. +p58944 +aVI received a message that my elder brother was involved in a car accident and was admitted in hospital. +p58945 +aVThe carterer refused to give me sugar to add to my tea saying that there was no sugar whilst it was there, so I left the cafe disgusted without taking the tea. +p58946 +aVI insulted my friend for a small reason and after time I realised that I was wrong and felt ashamed; everytime I meet her I feel ashamed. +p58947 +aVMy patient died of Anaemia while I was organising blood transfusion for him, so I felt guilty, because I thought that may be I was slow. +p58948 +aVWhen I was selected to start Form I at Malosa Secondary school. +p58949 +aVWhen a thief entered the house in which I was sleeping. +p58950 +aVWhen my dress was stolen. +p58951 +aVWhen my grandmother died after a long illness. +p58952 +aVWhen I boarded Yanu Yanu bus I sat near a man who was smoking tobacco. +p58953 +aVWhen I refused to fetch water for my aunty while she was busy. +p58954 +aVWhen I hit my young sister without a valid reason. +p58955 +aVI was very joyful when I heard that I had passed the standard 8 exams. The day I heard the news was the day I celebrated my birthday. +p58956 +aVI was in the house at night and I heard a hyena crying outside. It cried for almost an hour and I feared it might break the window and enter inside the house. +p58957 +aVI was angry at the Cafeteria when the cook scolded and said many bad things about me without reason. He thought I was among the girls who did him wrong. +p58958 +aVI was very sad when I heard that my Auntie had passed away. +p58959 +aVI was disgusted the other day I was told to take off the dog's faeces around the house since they smelled bad I did the job but in the end I felt disgusted. +p58960 +aVI was very ashamed when I failed a test in Standard 7. The teacher told the other students to shout and laugh at me. +p58961 +aVI felt guilty because I stole some sweets from my father's grocery. When he asked me who stole the sweets I told him it was my brother who stole the sweets and he was scolded. +p58962 +aVWhen I heard that I had passed my MCE Exam, I spent the whole day dancing and eating sugarcanes from our garden. +p58963 +aVWhen I heard that my father had found a letter from my boyfriend and he was calling me to talk about it. +p58964 +aVWhen a certain boy went about saying that I am his girlfriend. I wrote him an insulting letter to him and called him names. +p58965 +aVWhen I heard that my father had passed away. I could not eat for a week and was only crying. I could not find the courage to go to bath. +p58966 +aVWhen a boy I hated most in our classroom took my T Jersey from my desk and put it on. +p58967 +aVWhen I wet my head (or bed ?) one day my sister discovered it and reported it to the other siblings. So my mother had to scold me. +p58968 +aVWhen I insulted my young sister for a very little misconduct of putting on my shoes. She wrote me an apology letter and the message she included made me feel guilty. +p58969 +aVIt was in 1983 September when MCE results were being announced on the radio. When I heard my name that I had done well I just kept quiet. I was so happy that I couldn't even talk. +p58970 +aVI was on my way home when suddenly Gule Wamkulu came from the bush and blocked the road. I was in fear and didn't know what to do. +p58971 +aVA certain man went to my parents and told them that I was married here, when I am here at school. When I went home for holidays my parents asked me about it and I was angry with that man. +p58972 +aVWhen I went home on holidays I found that my niece and nephew had passed away I was very sad for the children were not even sick before death but suddenly died. +p58973 +aVI met a certain lady at the bus depot who was using a bad language but was a very smart looking lady. +p58974 +aVI wore a dirty dress a certain day I was going to town I met an old friend who made a comment about my dress so I felt ashamed. +p58975 +aVOne day I shouted at my brother who didn't do any wrong to me only that I had a disappointment from a friend and projected it on to him. He cried and I felt guilty after sometime. +p58976 +aVI was joyful when I received a present (2 books and a pencil) from the headmaster in standard 6 because I had passed, I became No 1 and he said I was one of the pupils who had good behaviour. +p58977 +aVI went to the prayer meeting at night and unfortunately the car broke down, so my other sister said I had to walk alone from Ndirande to Chirimba at around midnight. So we reached home at 1 am. I was afraid of robbers and dardness. +p58978 +aVI was angry the other day because the teacher told me to sweep some orange peels. It was my friends who were supposed to sweep, but the teacher told me to do it. +p58979 +aVI was very sad when I heard that my brother had failed the standard 8 exams for the third time. +p58980 +aVI was very disgusted the first day I went to put a dead body in the Mortuary. There were many dead bodies and some were uncovered so we had to put on top of the other bodies. +p58981 +aVI was really shameful when my mother beat me in the presence of my friends because I didn't cook lunch up until 2 o'clock. +p58982 +aVI felt guilty the other day because I took two pieces of bread instead of one in the Cafeteria and some of the girls were short of bread. +p58983 +aVI was happy to hear that my sister had won a prize at running competition. +p58984 +aVI was afraid when I met my Uncle because this time I was with my boyfriend I thought I was not going to be given pocket money. +p58985 +aVI was angry when I had not been granted a leave out pass during the last weekend. +p58986 +aVI was sad to hear that my brother had a motorbike accident. +p58987 +aVI was disgusted when my little sister had been hit badly by her friends. +p58988 +aVI was ashamed to tell my mother that I fell down with a bicycle. +p58989 +aVI felt guilty when I had refused to lend money to my friend who needed it immediately. +p58990 +aVWhen my brother bought me a nice pair of shoes from South Africa. +p58991 +aVI was asked to join my friend in a boat at Mangochi Lake Malawi and when making a turn, it seemed as if the boat would sink on the side. +p58992 +aVSomebody took my wristwatch and promised to have it mended and later was telling me that he couldn't give it back to me because I was rude at a certain time. +p58993 +aVMy boyfriend didn't turn up after promising that he was coming. +p58994 +aVI was forced to go to a party with someone I didn't love and he was telling people that I was his girlfriend. +p58995 +aVWhen a certain drunk man slapped my buttocks when I was quietly standing waiting for a bus. +p58996 +aVI borrowed my friend's radio cassette and the plug cracked and some pieces broke off when the plug dropped off my hands. +p58997 +aVAfter passing my Malawi Certificate of Education Exam and being selected to Kamuzu College of Nursing. +p58998 +aVI was sleeping alone in the house at night. A boy putting on a short only knocked at the window whispering that I should open for him. +p58999 +aVThe patient whom I expected to get well suddenly passed away after he showed had his meals. +p59000 +aVWhen my grandmother passed away. +p59001 +aVI was told I shouldn't visit my sister because the holiday was short. +p59002 +aVI was the last among the list of failures in my class of Biology. +p59003 +aVI was to prepare relish for the family. I overcooked it and no one liked the meal that day. +p59004 +aVThe time when my sister had her first baby I was so happy and joyous because she stayed for two days after marriage before she had a child. +p59005 +aVSometime back I used to stay with my mum alone then time came when dad joined the family from his working place I found myself having fear for him for no cause at all. +p59006 +aVI was so angry with a patient who refused to take drugs. +p59007 +aVWhen I heard of the death of a friend who had just finished her training I felt very sad for she was young. +p59008 +aVWhen I saw a lady putting on a pair of trousers, I felt it was a disguise according to Malawi culture. +p59009 +aVSometime back I was coming from the wards and lice were all over my uniform since patient's blankets have a lot of lice. It happened that my boyfriend picked some lice from my white uniform. I was so ashamed. +p59010 +aVI used to have two boyfriends in the past. Then one of them wanted to get engaged to me. I agreed but was guilt-conscious for disappointing the other one. +p59011 +aVI felt joyful when I heard that I had been selected for College education. +p59012 +aVI was fearful when I realised that the relish was overcooked simply because I was not keen enough at checking whether there was still enough water in the relish or not, instead I was just playing with my friends. +p59013 +aVI felt angry when my friend told me that I had stolen her money. +p59014 +aVI felt sad when I heard that my cousin had passed away just suddenly. +p59015 +aVI felt disgust when I saw a drunkard vomiting very offensive matter. +p59016 +aVI flet shameful when I learnt that I cooked Nsima which was full of lamps in it. +p59017 +aVI felt guilty when I learnt that some of friends found the finished at the Cafeteria because I took food which was more than my share. +p59018 +aVI received money from my father at a time when I was completely broken. +p59019 +aVMy friend had been telling me about a certain bird which when it cries at night it's the sign that someone will die. So one night I was alone in the house and I heard the cry of the bird and I was afraid. +p59020 +aVOne of my friends went and told another friend of mine that I was going abut with another guy in Lilongwe besides the one I had. She said I was seen with him hand in hand. +p59021 +aVI received a letter form home telling me that my sister was very sick. +p59022 +aVSomebody went around spreading news that I like people with money. +p59023 +aVI fell off a bike in the presence of a lot of people. +p59024 +aVA person misinterpreted what I had told her. I had told her that I had failed to insert a NasoGastric tube but she went and scolded the patient that she was being uncooperative. +p59025 +aVI was selected to come here (University, College) when I was least expecting it. +p59026 +aVI had fear of my father (parents) when I first became pregnant. I was afraid of delivery itself and whether I would give birth to a stiiborn or a baby. +p59027 +aVIt was when I discovered that my boyfriend had another girl. I discovered it through a letter he wrote to the girl when he was away. When I asked him he accepted it. +p59028 +aVMy child passed away after a short illness when he was just eleven months old. I was only told about his death without knowing that he had been ill. +p59029 +aVMy father promised to send me pocket money at the month-end since I wanted to buy a new pair of shoes when I was at secondary school, but he didn't. +p59030 +aVI just opened the bathroom without knocking not knowing that someone was bathing inside, it happened to be my father. +p59031 +aVI beat my young sister because she refused to wash plates. She started crying and I felt sorry and guilty for what I did. +p59032 +aVAccepted by the college football team. +p59033 +aVFighting with class mates in Highschool. +p59034 +aVMade mistakes in exam. +p59035 +aVFailing examn. +p59036 +aVGiven duty by the leaders which I do not like to do. +p59037 +aVDid not finish homework. +p59038 +aVMake a mistake, offended my friend. +p59039 +aVArticle published in the college newspaper. +p59040 +aVWalking on a dark street with noone around. +p59041 +aVMy friend misunderstood me. +p59042 +aVMy grandmother died. +p59043 +aVClass leader told me to collect homework for him. +p59044 +aVDid not finish homework. +p59045 +aVDid not read reference when other people read them. +p59046 +aVFound money on the road and returned it to the owner through police. +p59047 +aVBefore examination. +p59048 +aVListening to long speech of the party leaders wasting my time. +p59049 +aVMy girl-friend left me. +p59050 +aVPeople not cueing in the college dining room. +p59051 +aVSaw the film about Eight Nations Army conquering Beijing. +p59052 +aVNo ideal result in the University entrance examn, guilty to family and friend. +p59053 +aVHelping in the nursery school. +p59054 +aVTelling my parents that I did not well in an examn. +p59055 +aVMy bed sheet (present of my parents) damaged by roommate. +p59056 +aVNot being accepted by classmates in university. +p59057 +aVWaiting for a bus not coming for a long time, and the bus drivers were having a long lunch. +p59058 +aVNot having good marks like other people for homeworks. +p59059 +aVNot handing in homeworks in time. +p59060 +aVGot a present from my friend for my birthday. +p59061 +aVLost my purse, the money in the purse belonged to my parents. +p59062 +aVSouth Korea winning more gold medals in the Asian Olympic (more than China). +p59063 +aVSaw the village I come from still pay money to buy wife. +p59064 +aVSaw my roommate messing up our room. +p59065 +aVFound out that I am not good at football. +p59066 +aVGave the wrong meal tickets to other people (my classmate). +p59067 +aVComing to this lecture and listen to you talking about feelings, I am so happy that foreigners have the same feelings as Chinese. +p59068 +aVDamaged the tap in the residental Hall. +p59069 +aVToo many people in TV room, I was not able to get a seat to watch TV. +p59070 +aVMy sister marrying a bad man. He is cruel to her. +p59071 +aVSaw my brother-in-law insulting my sister. +p59072 +aVMy sister was afraid of her husband. +p59073 +aVI was not able to help my sister to understand that her husband is a bad man before she was married to him. +p59074 +aVDiscussing psychology with my friends before the lecture. +p59075 +aVWaking up from a bad dream in a dark night with noone else around. +p59076 +aVI could not find my monthly tickets for the bus when I was on the bus. +p59077 +aVTwo little children (5/6 years old) begging for money, and noone gave them money. +p59078 +aVThe serving lady in the students' dining hall shouting at studennts. +p59079 +aVSitting on the bus seats supposed for disabled people, children and old people (by mistake) +p59080 +aVPassing by a good friend's home without coming in to visit him. +p59081 +aVYou told me psychology can help people to be happier. +p59082 +aVLeft alone in the dining hall at night. +p59083 +aVBus conductor insulted me for not buying a ticket (I forgot). +p59084 +aVSaw a father beating up his small child. +p59085 +aVClass leader getting me to do things he did not want to do. +p59086 +aVNot quick enough to help the lectors to catty things for the lecture. +p59087 +aVMy mother wrote me and said that I would not writ enough letters home. +p59088 +aVMy parents came to visit me. +p59089 +aVCould not find my way out in the college building at night. +p59090 +aVSaw in the TV South Korea cheating in the Asian Olympic games. +p59091 +aVGeneral Ye Jianying died. +p59092 +aVA girl I do not like kept coming to me and talking to me. +p59093 +aVFailing an examn. +p59094 +aVMade a misjudgement in a football match. +p59095 +aVMy friend told me he really likes me. +p59096 +aVGetting lost in a strange place. +p59097 +aVSouth Korea cheating for gold medals. +p59098 +aVMy friend has to go on field trips, he just told me. +p59099 +aVWhen I was the South Koreans on the TV. +p59100 +aVZhu Jianhau did not break the world record for China. +p59101 +aVUnable to help my mother to cook. +p59102 +aVI met a friend I had not seen for a long time on the street. +p59103 +aVGoing to the examn not well prepared. +p59104 +aVOverhear people talking about me and saying that I am stupid. +p59105 +aVHearing about developments of sience in the West a lot better than China. +p59106 +aVSome foreign students playing loud music late at night. +p59107 +aVNot being able to be selected for the dancing team. +p59108 +aVDid not get up early enough to watch my class football team playing against another team. +p59109 +aVScoared a goal in a football match. +p59110 +aVLeft alone in the dark in a big building. +p59111 +aVSomeone called me a disgusting nickname. +p59112 +aVNot getting on with someone of my classmates in high school. +p59113 +aVA woman picked her nose and spit right next to me. +p59114 +aVNot brave enough to take up a challenge in a group discussion. +p59115 +aVNot being a good host for a friend from a far away place. +p59116 +aVMy class winning against another class in a football match. +p59117 +aVWalking alone in the dark in a strange street. +p59118 +aVA friend forgot his appointment with me. +p59119 +aVA friend misunderstood me. +p59120 +aVA boy in my class talking too loud in the lecture. +p59121 +aVNot being able to have a party at home with friends. +p59122 +aVBeing miserable in a party when other people are friendly and happy. +p59123 +aVMeeting an old friend from high school. +p59124 +aVFacing a mad dog. +p59125 +aVMisunderstood deliberately by a close friend. +p59126 +aVMy old teacher in primary school died. +p59127 +aVGetting into a crowded bus. +p59128 +aVBeing rude to somebody who was impolite to me. +p59129 +aVNot accepting hints of intimate relation from a girl. +p59130 +aVMy old friend visited me in the university. +p59131 +aVListening to horrot stories at night. +p59132 +aVMy roommate was rude to me. +p59133 +aVMy uncle died in the Vietnam War. +p59134 +aVCueing in the students dining hall. +p59135 +aVArguing about price with private shop-assistant. +p59136 +aVNot being able to spend more time with a friend who was visiting me. +p59137 +aVScoring a goal in football match. +p59138 +aVFinding out that I am not an as able student as I thought. +p59139 +aVI was told to do something I did not want to do. +p59140 +aVFinding out that China is still backward in science. +p59141 +aVDoing this pointless questionnaire. +p59142 +aVInsulted by somebody. +p59143 +aVI am not doing what I should with this questionnaire. +p59144 +aVSaw in TV that China had the most gold medals in the Asian Olympic. +p59145 +aVJust arrived in the university, not knowing anybody. +p59146 +aVInsulted by teacher. +p59147 +aVFinding out I am not good looking. +p59148 +aVSomeone I do not like kept talking to me. +p59149 +aVFinding out from this lecture that China is backward in psychology. +p59150 +aVBeing rude to someone I do not like. +p59151 +aVJoining in a research group studying consumer's behaviour and helping the people in the shop with the sales. +p59152 +aVDiagnosis that I have a stomache ulcer. +p59153 +aVA classmate damaged ma iron and tried to hide the damage. +p59154 +aVNot winning a medal in the swimming contest. +p59155 +aVSome students talking when other people are having a nap. +p59156 +aVA friend asked for help and I was not able to help. +p59157 +aVChina winning the Asian Olympic. +p59158 +aVBefore an examn. +p59159 +aVKorean judges cheating. +p59160 +aVMy father left us for another woman. +p59161 +aVSaw my father with that woman he is married to now. +p59162 +aVHad to tell people that my parents are divorced. +p59163 +aVNot beeing able to stay with my mother for the National Day holiday. +p59164 +aVBeing together with my best friend. +p59165 +aVAlmost had a bicycle accident. +p59166 +aVHeard about someone telling lies about me to my best friend. +p59167 +aVMy best friend suddenly acting strange towards me. +p59168 +aVSaw someone messing up our room. +p59169 +aVAfter shouting at a friend. +p59170 +aVDid not do what I promised to do for a friend. +p59171 +aVMy best friend chosen for your English lectures. +p59172 +aVGetting ill. +p59173 +aVMy class leader told me the university won't let all of us go to your lectures because we are not All English Class. +p59174 +aVWhen I was not chosen to go to your English lectures. +p59175 +aVFinding out that the class leader can go to your lectures, and his English is worse than mine. +p59176 +aVChina cannot let you give more lectures because you are needed in the specialist clinics. We are so backward in medicine. +p59177 +aVI hated you for not letting me go and found out that it was not your decision. +p59178 +aVFinding out my best friend cannot go to the English lectures. +p59179 +aVHeard some postgraduate students talking about girls being unsiutable to do medicine. +p59180 +aVFailing in an examn. +p59181 +aVNot being able to convince my class leader that my friend is better than me to go to the English lectures. +p59182 +aVReceiving a letter from a boy I care. +p59183 +aVWatching a horror film. +p59184 +aVMy parents do not like my friend and told me not to go out with him. +p59185 +aVMy grandmother died. +p59186 +aVSaw someone spitting in public. +p59187 +aVFailing in an examn because of lazyness. +p59188 +aVLosing my temper to my sister. +p59189 +aVFinding out that I can go to your English lectures. +p59190 +aVStaying alone in a dark place. +p59191 +aVBeing sexually assulted on a bus. +p59192 +aVFinding out that my best friend could not go to university. +p59193 +aVSome boys not cueing in the dining hall. +p59194 +aVWatching TV about china is behind in winning gold medals. +p59195 +aVNot being able to help my friend to do homework. +p59196 +aVGetting into this university. +p59197 +aVBeaten up by a classmate in school. +p59198 +aVBeing insulted in public. +p59199 +aVA girl I love does not love me. +p59200 +aVSaw some girls dressed up like Americans +p59201 +aVFailing university entrance examn. +p59202 +aVNot handing in homework in time. +p59203 +aVGetting into this university to do medicine. +p59204 +aVFirst time in anatomy. +p59205 +aVMisunderstood by a close friend for the wrong reason. +p59206 +aVFinding out that China is poor, so we cannot have good reference books. +p59207 +aVForeign students playing loud music in the night before the biology examn. +p59208 +aVFinding out that the university police was afraid to stop the foreign students playing loud music (China's shame). +p59209 +aVNot doing well in the examn. +p59210 +aVAticle published. +p59211 +aVEarth crake. +p59212 +aVMade a statement that other people did not believe. +p59213 +aVSaw poverty in the countryside. +p59214 +aVSaw Chinese people flattering foreigners. +p59215 +aVNot being able to argue against class leaders. +p59216 +aVCould not help a student who needs help. +p59217 +aVChina winning the Asian Olympic games. +p59218 +aVStaying alone in the dark. +p59219 +aVBeing put down by the class leaders. +p59220 +aVFinding out that life span in China is shorter than in the West. +p59221 +aVGirls dressed like foreigners in the university. +p59222 +aVBeing insulted in public. +p59223 +aVInsulting other people. +p59224 +aVWhen I found out that I can travel with my best friend. +p59225 +aVWalking home in the dark from college. +p59226 +aVFinding out that I was deceived by a friend. +p59227 +aVNot doing well in an examn. +p59228 +aVFinding out that my best friend was deceiving me. +p59229 +aVFailing an examn because I did not work hard enough. +p59230 +aVNot acting on my promise. +p59231 +aVFinding out that I am not ill (not seriously). +p59232 +aVFinding out that my health condition may be against my attending university lectures. +p59233 +aVBought something bad from the shop and they refused to change it. +p59234 +aVRelative's death. +p59235 +aVSaw people quarreling in a bus. +p59236 +aVRunning away from a fire. +p59237 +aVForgot to give a present to my little nephew. +p59238 +aVFirst public speaking. +p59239 +aVGoing out alone in the dark. +p59240 +aVSaw some young people fighting for seats on a bus. +p59241 +aVMy mother's death. +p59242 +aVSaw people spitting in public. +p59243 +aVWent to a lecture about Chinese history and hear about the Opium War. +p59244 +aVFalling in love. +p59245 +aVMy friend will find out that I am in love with her. +p59246 +aVFalling in love although she is my friend (angry with myself). +p59247 +aVMy friend still trusts me as a friend. +p59248 +aVSomeone being arrogant to me. +p59249 +aVInsulted by a teacher in front of the class. +p59250 +aVFalling in love with a close friend. +p59251 +aVDoing unexpectedly well in an examn. +p59252 +aVBefore the examn. +p59253 +aVI wanted to borrow lecture notes from a friend and he did not lend me them. +p59254 +aVFinding out about the university does not have enough foreign currency to buy the yournals in your reference list. +p59255 +aVSomeone told me he was chosen for the English lectures because he was a good friend of the class leader. +p59256 +aVFinding out about Chinese money cannot buy foreign journals. +p59257 +aVLate for a lecture and therefore missed it. +p59258 +aVTalking to a close friend. +p59259 +aVRan into a parking car on a bicycle. +p59260 +aVInsulted for no reason. +p59261 +aVDid badly in an examn. +p59262 +aVSaw a man dressed as a woman. +p59263 +aVSaw a beggar on the street (China still so poor). +p59264 +aVCould not buy a reference book because I got up too late to cue. +p59265 +aVFound out that me and my best friend are both chosen for the English lectures. +p59266 +aVI may not be clever enough to understand your English lectures. +p59267 +aVTold by some people the class leader only choose his friends (not true). +p59268 +aVOne of my best friends was hurt by a girl he loves. +p59269 +aVSaw a very arrogant girl walking like a queen. +p59270 +aVChina cannot buy your reference. +p59271 +aVA friend asked to borrow my notes and I did not give them away (my notes too badly written) +p59272 +aVTalking to a close friend. +p59273 +aVGetting ill. +p59274 +aVFailed to be elected to be a class leader. +p59275 +aVFather lost his temper at home because he was mistreated at work. +p59276 +aVSaw someone who picked up a cigarette from the floor and smoked it. +p59277 +aVTelling a lie. +p59278 +aVNot getting the class paper in time for the lecture. +p59279 +aVMy father promoted to be a professor. +p59280 +aVAnatomy lesson and told we have to do it at night sometimes. +p59281 +aVHad an argument with my classmate for borrowed books. +p59282 +aVFinding out that we cannot have good references because China is poor. +p59283 +aVSaw someone licking his dining bowl. +p59284 +aVCriticized in front of the class. +p59285 +aVNot finishing homework in time. +p59286 +aVFound out that the girl I love loves me, too. +p59287 +aVReading a horror story alone. +p59288 +aVBeing refused to attend the neuropsychology lecture in the medical university. +p59289 +aVMy parents told me that they do not like my friend. +p59290 +aVSaw an arrogant girl walking pass by. +p59291 +aVNot finishing my duty as a class leader. +p59292 +aVMy friend had trouble and I was not able to help him. +p59293 +aVChina winning the Asian Olympic games (TV). +p59294 +aVLeft alone in the biology building surrounded by empty buildings. +p59295 +aVSomeone told me we are not as good as the All English Class. +p59296 +aVNot getting the reference paper. +p59297 +aVCueing for a bus and the drivers having long dinner. +p59298 +aVNot finishing homework. +p59299 +aVDid not return the library book on time. +p59300 +aVHear a very nice joke made by a friend. +p59301 +aVThinking about death when walking alone at night. +p59302 +aVFound out that someone I knew well has been misunderstanding me for 2 years. +p59303 +aVDeath of a relative. +p59304 +aVSomeone I know and respect sexually assulted a girl. +p59305 +aVMy father insulted by other people. +p59306 +aVMade a mistake at work. +p59307 +aVFound my name on the list of attending the English lectures. +p59308 +aVDoing anatomy alone for the first time. +p59309 +aVBeing insulted in front of my parents, and they believed other people (those insulting me). +p59310 +aVDeath of General Ye Jianying. +p59311 +aVSomeone had stolen an article from a library journal. +p59312 +aVNot doing well in the examn. +p59313 +aVNot finishing homework in time. +p59314 +aVDid well in an examn just before my father's birthday: the best present I can give to my father. +p59315 +aVI asked someone to bring some present to my father and found out that he is not a reliable person. I was afraid if my father would not get the presents he would be angry with me. +p59316 +aVSome classmates said I did not do enough social work. Therefore I was not elected as a ""Tree Good"" student. +p59317 +aVMy father won't be so pleased with me as if I was elected ""Three Good"". +p59318 +aVMy roommate's lack of consideration of me. +p59319 +aVMy sister said I am not a stable person, and I think she is right. +p59320 +aVMy sister forgot to bring presents for my birthday, I was rude to her. +p59321 +aVHad a nice letter from my close friend. +p59322 +aVStaying alone in the biology building after the dark. +p59323 +aVBeing insulted by my roommate (she is in the English Class). +p59324 +aVNot being able to do well to be chosen for the English lecture. +p59325 +aVMy roommate boasting about her English lectures. +p59326 +aVWhen the class leader read out the names of those chosen for the English lecture and I was not on the list. +p59327 +aVSome boys told me your nickname is ""Little Girl Doctor"", I did not tell them off and laughed with them. +p59328 +aVRelatives visiting me. +p59329 +aVFinding out the great difference between China and the West in science. +p59330 +aVSaw my unfair report. +p59331 +aVLecturers being unfair to me in reports. +p59332 +aVFinding out that some students are getting good reports they do not deserve. +p59333 +aVPeople impolite with me because I did not get a good report. +p59334 +aVI kicked the chair in the classroom to express my anger. +p59335 +aVFinding out I was chosen for the English lectures. +p59336 +aVMy roommate refused to walk with me to the English lectures. I have to walk alone in the dark. Lectures are in the biology building. +p59337 +aVMy roommate being unconsiderate. +p59338 +aVMy best friend was not chosen for the English lectures. +p59339 +aVSomeone told me I was chosen for the English lectures because I am good looking. +p59340 +aVNot doing well in the examn. +p59341 +aVSome boys talking about nicknames of the lecturers, and I was too afraid of them to stop them. +p59342 +aVFound out my wife (girl-friend?) pregnant. +p59343 +aVMy boat running into another boat. +p59344 +aVPunished by a leader. +p59345 +aVMy teacher's death. +p59346 +aVSaw a mate bribing the leader. +p59347 +aVInsulted by a woman in public. +p59348 +aVFight with my mate after a quarrel. +p59349 +aVReceiving a nice present from my parents. +p59350 +aVFinding out that I made a stupid mistake in the examn. +p59351 +aVFinding out about some girls who have been nice to the class leader in order to go to the neuropsychology lectures (English ones). +p59352 +aVFinding out I am not chosen for the English lectures. +p59353 +aVSome students whose English is worse than mine can go to your lectures (English lectures). +p59354 +aVInsulted by classmate in public. +p59355 +aVNot handing in homeworks in time. +p59356 +aVArticle published. +p59357 +aVWalking in the dark and thinking about ghost stories. +p59358 +aVHad an insulting letter from my father. +p59359 +aVBeing misunderstood by friends. +p59360 +aVSaw someone acting in a false manner in public. +p59361 +aVFailed in a piblic argument. +p59362 +aVPromised to do something for other people and did not do it. +p59363 +aVFinding out I am chosen to collect norms for Chinese aphasia (I will contribute to China's catching up with the West in neuropsychology). +p59364 +aVFinding out in your lecture that a doctor can make misdiagnoses because of ignorance in neuropsychology. +p59365 +aVSomeone talking about me at my back. +p59366 +aVFound out that my grandmother might have been misdiagnosed as a psychiatric patient because the doctor did not know about neurologism. +p59367 +aVSome students deliberately disobey me as a class leader. +p59368 +aVFinding out that China is backward in science. +p59369 +aVSome students have been calling lecturers nicknames and I was not able to find out who they were to stop them. +p59370 +aVGoing to a concert. +p59371 +aVFinding out that a boy I do not like is in love with me. +p59372 +aVBeing told that I have not got a personality. +p59373 +aVPower cut made me unable to listen to the songs sung by my favourite pop star. +p59374 +aVSomeone acting stupid in public. +p59375 +aVNot being able to answer question in a seminar. +p59376 +aVSaid something I should not have said in public. +p59377 +aVTalking to my close friend. +p59378 +aVHearing a strange noise in the biology building. +p59379 +aVInsulted by other people in the shop. +p59380 +aVMy good friend misunderstood me. +p59381 +aVBeing looked at by someone I do not like. +p59382 +aVI am chosen for the English lectures instead of my good friend and people told me that girls are more likely to be chosen. +p59383 +aVI was not able to explain well to my good friend to make him less angry. +p59384 +aVFinding out that the person I love understands me. +p59385 +aVWatching a horror film. +p59386 +aVBeing mistreated by other people. +p59387 +aVDeceived by other people and ran into trouble. +p59388 +aVSaw a selfish person doing a selfish thing. +p59389 +aVNot doing well in the examn. +p59390 +aVFinding out that I have misunderstood other people. +p59391 +aVHear my name on the list attending the English lectures. +p59392 +aVStaying alone in the room after midnight and reading horror stories. +p59393 +aVBeing told that I am a stupid person. +p59394 +aVMy parents failed to visit me as they promised. +p59395 +aVSome people not cueing in the dining hall. +p59396 +aVSaw on TV China not winning more gold medals in the Asian Olympics. +p59397 +aVNot handing in homework in time. +p59398 +aVHaving a good trip on a boat with good friends. +p59399 +aVSaw a classmate knocked down by a motorcycle. +p59400 +aVBeing sexually assulted on a bus and noone helped (people only laughed). +p59401 +aVBeing sexually assulted and told my friends about it (we cried together). +p59402 +aVHeard someone boasting his fortune telling and I knew he was lying. +p59403 +aVBeing criticized by teacher in public. +p59404 +aVShouting at my parents because I was angry about something else. +p59405 +aVGoing to see a good film with my best friend. +p59406 +aVSuddenly found out that I was the lasr one to leave the anatomy room. +p59407 +aVSome boys deliberately played tricks on me in the experiments. +p59408 +aVIqam chosen for your lecture and my best friend is not. Now he is angry with me and I cannot help him. +p59409 +aVListening to my roommate boasting about her new clothes. +p59410 +aVChina not winning more gold medals in the Asian Olympics. +p59411 +aVNot being able to help my friend to study English. +p59412 +aVBeing elected as class leader. +p59413 +aVWalking in the dark I saw something strange. +p59414 +aVYour prejudice against psychology students and education students (not allowing us to go to the medical university lectures). +p59415 +aVA friend's brother died. +p59416 +aVA wurm dropped on my head. +p59417 +aVNot doing well in an examn which was easy. +p59418 +aVWrongly accused a classmate. +p59419 +aVGetting into this university to do medicine. +p59420 +aVFirst time in anatomy. +p59421 +aVBeing insulted in public for the wrong reason. +p59422 +aVNot being chosen for the English lectures (my girl-friend chosen). +p59423 +aVMy roommate messing up our room. +p59424 +aVNot doing well in examns which I should do well (English examns). +p59425 +aVHeard that my girl-friend was chosen for the English lectures and I was not. I lost my temper and she is very upset now. +p59426 +aVSuccess in university entrance examination. +p59427 +aVI helped someone to do something and was found out. +p59428 +aVMisunderstood by friends. +p59429 +aVMy mother was ill and my father was not at home. +p59430 +aVMy roommate being nice to a party leader in order to get into the party. +p59431 +aVChina not doing well in the Asian Olympic games. +p59432 +aVNot collecting letters for my friend al I promised. +p59433 +aVDoing well in an examn. +p59434 +aVBefore the examn. +p59435 +aVSome foreign students playing loud music before the biology examn. +p59436 +aVFinding out that the girl I like does not like me. +p59437 +aVSaw two Canadian students boasting about how rich they are in Canada. +p59438 +aVFinding out that China does not have enough foreign currency to buy books. +p59439 +aVCalling lecturers nicknames when talking to housemen (They told ne you are even younger than they are so you should not be giving public lectures). +p59440 +aVHad a letter from my father (usually he does not write to me). +p59441 +aVBeing alone in the room at night. +p59442 +aVQuarreling with classmates. +p59443 +aVMy father told me in the letter that my mother is ill. +p59444 +aVMy roommate talking and shaking her bed at night. +p59445 +aVFinding out that I was deceived by my friend. +p59446 +aVA friend came to visit me and I was not there. +p59447 +aVFinding out my name on the list for English lectures. +p59448 +aVWalking out from the biology building. +p59449 +aVSomeone told me that I was chosen for English lectures because the class leader is going out with me (not true). +p59450 +aVMy sister bkoke her leg. +p59451 +aVSome boys boasting about their ability to tell dirty jokes. +p59452 +aVFinding out China is backward in science. +p59453 +aVWhen some housemen told me a young girl like you should not be allowed to lecture to consultants, I was too shy to argue against them. +p59454 +aVMade a wonderful driend who understands me. +p59455 +aVBeing chased in the dark by someone I did not know. +p59456 +aVMy best friend betrayed me and told other people my secrets. +p59457 +aVDisappointed by a friend. +p59458 +aVFinding out some people had been talking about me at my back. +p59459 +aVBeing sexually assulted in public. +p59460 +aVI did not reply to my friend's letter in time. +p59461 +aVWatching China winning the Asian Olympic games. +p59462 +aVSuddenly met someone in the biology building at night. +p59463 +aVBeing insulted by my roommate. +p59464 +aVNot getting an airplane ticket fot my mother. +p59465 +aVTalking with a nice girl. +p59466 +aVTalking about snakes. +p59467 +aVPeople not resprcting my opinion. +p59468 +aVLost my girl-friend. +p59469 +aVTalking to someone I disliked. +p59470 +aVCriticized by a teacher in public. +p59471 +aVNot being able to help my friend. +p59472 +aVGetting a letter from a friend who did not write for a long time. +p59473 +aVStaying in a relative's house which was broken in before. +p59474 +aVBeing insulted on a bus. +p59475 +aVInsulted by my mother. +p59476 +aVA relative not acting on her promise. +p59477 +aVFirst time going out with a boy and other people laughed at us. +p59478 +aVA friend wanted to give me a surprise into my room and I thought she was stealing from the room. +p59479 +aVBeing asked to go out by someone I care. +p59480 +aVBefore an important examn. +p59481 +aVMy parents do not like my friend and told me to stay away from him. +p59482 +aVMy friend not allowed to go to the English lectures. +p59483 +aVPostgraduate students talking about girls stupid. +p59484 +aVCtiticized by teachers in public. +p59485 +aVMy friend did not do well in the examn because I did not help him. +p59486 +aVI went on a picnic to the country side park. The beautiful scenary made me feel relaxed and every worry disappeared , thus the picnic was worthwhile. +p59487 +aVI am afraid of my academic results as I will face several problems. I am scared of my limitations and the unlimited problems and I do not know how to cope with them. +p59488 +aVI quarrelled with my brothers (twins) at home on saturday. One of them studies in a private school and the other one is repeating his form five. They do not know what they are doing. They follow every word of their teachers, books and systems. They always try to rationalize their bad acts by some game and they are satisfied with their awkward life. I have tried to persuade them very often but have failed. This time I had a fight as they have no voluntary spirit (they did not polish the floor). +p59489 +aVI have been thinking of changing my major for a few months. My original major was Chinese language and it blocks my way. I have to face many problems at the sametime and I do not know what is real and virtuous. I do not know if I am not interested in Chinese or if there are other factors which make me sad. I am not very clear on what I can do for the study of Communication and Journalism. I am not clear about what I can do. What are the limitations ? I hesitate but I feel more adjusted now. +p59490 +aVI had been forced to get together with strange and disgusting classmates. The things they talked about disgusted me and made me feel ill at ease. I knew that I would feel unhappy if I stayed there but I was defeated by the social norms. +p59491 +aVI had obviously done the work badly but my class-mates of the student's association did not blame me, they helped me do the work. +p59492 +aVI had not done my assignment seriously. I only pretended to finish the work as the work did not have any meaning for me. The whole thing made me feel guilty. +p59493 +aVI preached to a F.3 students in a gospel camp. They thus knew more about God and made up their minds to believe in Jesus. +p59494 +aVWhen the doctor told me that there was something wrong with my eye and I had to undergo an operation. +p59495 +aVI had left a student newspaper of the Chinese university on the table of the library. It had disappeared when I came back. +p59496 +aVOne of my class-mates had a disease unexpectedly, he had been in a coma for six days in a hospital before he died. +p59497 +aVSomeone, who was sitting very close to me, was smoknig in the compartment of an air conditioned mini-bus. +p59498 +aVIn the compartment of a public transport railway, I did not give my seat to an old man who was standing near me. It was another teenager who did so. +p59499 +aVOne saturday night I did some meaningless work and went to bed very late. Next morning I had was very sleepy so I continued sleeping even though I had work to do and I missed the Sunday service. +p59500 +aVWhen I attended the concert of a pop singer. +p59501 +aVI was afraid that I would fail an examination. +p59502 +aVI had too much homework and examinations and I did not know how to organize my work. +p59503 +aVWhen I forgot the lyrics during a song contest. +p59504 +aVBecause of the examination I had to study night and day. +p59505 +aVThe results of the mid term examinations were very poor. +p59506 +aVWhen I had a good result in the certificate examination. +p59507 +aVWhen I was walking along a road alone on my way to go shopping. +p59508 +aVIn the student's union there was someone who took the photocopies of two large volumes. I asked him to let me take a few, he refused it for an acceptable reason. +p59509 +aVWhen another person's mother died. +p59510 +aVI greeted a friend and he did not respond. +p59511 +aVIn an examination ,which other students found easy I could hardly think and did not know what to answer. +p59512 +aVI cut a friend's hair in anger, without any consideration. +p59513 +aVYesterday my friend gave me a gift and had dinner with me. +p59514 +aVOnce while walking along a hill; I fell down out of carelessness and I broke my left arm. +p59515 +aVLast week, my organization summoned an executive meeting and one of the executive member's pointed out a loop hole in the committee's administration. He could not suggest any improvements, so I quarrelled with him. +p59516 +aVThe death of my father. +p59517 +aVI was sitting in the bus and a man with a very unpleasant smell came and sat next to me, to top it all he smoked continously. +p59518 +aVWhen I was in the canteen of the United college I mistook a stranger for a classmate as I was not wearing my glasses. I realized that I had made this mistake when I saw him again carefully. +p59519 +aVI got up late and I could not go to my lessons on time. When I entered the class room the stare of the teacher and my classmates made me feel guilty. +p59520 +aVWhen my application for studying the masters degree was accepted. +p59521 +aVOnce at midnight, I was working alone at office and the phone suddenly rang. +p59522 +aVWhen I was concentrating on my work, my friend disturbed me continously. I asked him to stop but in vain. +p59523 +aVI had asked the teacher to write a recommendation letter for me, but I had not provided enough information and had run short of time. +p59524 +aVWhen I was talking to a person who is a hypocrite, I felt disgusted at his reaction. +p59525 +aVMy companion admired me when I did some work voluntarily. +p59526 +aVMy wrong behaviour made my loved one feel sad and uneasy. +p59527 +aVWhen I first heard ""I like you !"" from my boyfriend. +p59528 +aVWhen I received the higher level exam results, I mistook the grade E in mathematics for a grade F and I was shocked. +p59529 +aVI had planned to study for my mid-term exams on a certain day and my room-mate called me to ask me to go out for a stroll. I tried to make an excuse so as not to go out but she refused to listen to me and insisted that I go out with her. I find it unnecessary to talk to her anymore. +p59530 +aVDue to some reasons my boyfriend and I decided to separate. +p59531 +aVOnce when I had started to write a paper, there was a phone call for me. I had to go downstairs to receive it and after the conversation I discovered that all the information had disappeared from my mind. +p59532 +aVWhen the teacher asked me a question, I did not know the answer and I just stood still for about a few minutes without saying a word. +p59533 +aVOnce when I was in the cell group (religious activity) I found that almost everyone in the group read the bible daily and I felt guilty in my heart. +p59534 +aVWhen I read the newspaper that morning I found my candidature number on the admission list of the Chinese university. I was satisfied and happy and the cumulative anxiety disappeared. I only wanted to cry out that I had succeeded. +p59535 +aVTutorial again ! A fearful feeling came to me when I sat on the chair and looked at my fellow students all around. I was really scared that they would ask me some questions or challenge the ideas that I had presented. +p59536 +aVThe trick was really intolerable. They hid it, and I was worried and restless all day. When I saw them I really wanted to slap each one of them. +p59537 +aVA and I were walking along the new Asia stairway to the Chung Chi college for our lecture and I saw him with her. He put one arm around her shoulder and laugher brightly and joyfully. I did not dare and did not want to look, just walked by them quickly. The interest of talking to A disappeared and I just wanted to remain silent. But I did not want A to know and so I left him and went to F. I should have expected this to happen. +p59538 +aVKnowing that I had to do the survey with him I felt very reluctant. Although I do not know him I feel disgusted by just looking at him. Thinking that the project lasted several days I regreted having joined that project. +p59539 +aVDuring the lesson the teacher called me and asked me if I had reported that I was late. I pretended that I had but looking at her eyes I knew that she knew that I was lying. I thought that it was really bad luck that she had examined the list of the students who were late. +p59540 +aVThat evening when I opened the songbook while I was singing the song ""Those were the days"" that guilt feeling became stronger. The lyrics described well - I was really wrong. The wish that I had made was really bad. If she were with me I would really be happy and we would play happily together like the days in secondary school and she would not be disappointed and gloomy because of me. +p59541 +aVWhen I learnt that I could do further studies at the Chinese university. +p59542 +aVMy best frieend left school recently. The next day the weather turned bad suddenly and the male class-mates turned off the lights. I remained on the table and was scared. +p59543 +aVI was scolded by my mother for no reason. +p59544 +aVWhen I learnt that I had been betrayed by my friend. +p59545 +aVWhen I dined with my new friends, one of them kept reminding us that he was superior. +p59546 +aVWhile dining with some accquaintances I was asked something which I should have known but I did not know. +p59547 +aVMy friend came to the concert for my sake as it was me who had organized it and the concert was unsuccessful. +p59548 +aVI was accepted by the Chinese university. +p59549 +aVWaiting for the results of the High level examination. I was afraid of not being accepted. +p59550 +aVI had a date with a friend to see a movie and my friend was late. I waited for a long hour and was very angry. +p59551 +aVThe quarrel between my parents. +p59552 +aVDuring the Chinese lessons a student often showed off. Moreover he misbehaved and dressed very badly. So disgusting ! +p59553 +aVI saw a bag on the street and just then a stranger passed by. I picked up the bag immediately and gave it to the stranger as I thought that it belonged to him. But it was not his bag and I felt ashamed. +p59554 +aVI refused to lend my homework to a friend. +p59555 +aVOnce, before I had learnt to swim, I stepped on a slippery slope where there was a lot of moss and I slipped into the water. The water was very deep and I could not stand on my feet. I sank and had to use a lot of energy. +p59556 +aVOne day when I was sitting in a not very crowded bus, a middle aged woman was standing beside me. The person sitting next to me got up to get off and this woman pushed me and occupied the seat. Then she took off her shoes and put her feet on the seat. +p59557 +aVWhen I saw a horrible movie - Alien. +p59558 +aVIn 1983, my results at the university entrance exam were very poor - far from what I had expected. I thought that I would not be accepted at the university. +p59559 +aVI am disgusted by people who spoil their identity because of misbehaviour. This morning when I was in a crowded bus, I found a seat on which a university student was sitting on one side and he had put his bag and files next to him. There was very little space left and I sat down while he kept on reading. Even when I leaned on him he did not put his bag away. He did not respond and I felt very angry. +p59560 +aVDuring a lecture six students (including me) were asked to leave the class as we had not prepared for the lesson. I felt ashamed and angry. +p59561 +aVOne evening I went fishing with some friends but we could not fish as a fisherman had already put his net there. We pulled out the net to find only crabs in it so we threw the net away. The net was large and may have cost $1000. The fisherman used the net to earn a living and we had had thrown it. +p59562 +aVI had a very close friend who went to Canada after her F.B, his departure was unavoidable. When he came back during the Summer holidays I was very happy as nothing had changed between us. +p59563 +aVThe day before the university results came out I was both excited and scared. If I failed I did not know what I would do as I did not want to work, my family was ambivalent. +p59564 +aVBefore the certificate examination I was very poor in Biology (the worst result in my class). Ever since F.5 it had been getting poorer and poorer. I had tried my best and had spent most of my time studying this subject. Finally my results were so bad that I thought that it was just not fair. +p59565 +aVMy cat died from an illness. It had been with us for 7 years. It was a lovely cat. It had been ill for one or two weeks and the veterinary surgeon had told us that it was dying. +p59566 +aVIn secondary school I had a class-mate who talked too much. Once we went to the cinema after school and she sat next to me and commented the movie throughout - very disgusting. +p59567 +aVOur teacher had invited us to lunch and once at the canteen we started introducing ourselves. Two of the boys showed a lot of interest in knowing personal details and then they started talking about some activities held in the college. I had little interest in those activities so I talked to another student sitting next to me as I was afraid that they would ask me questions on those activities. +p59568 +aVMy younger sister wanted to take classes to learn a musical instrument. One Saturday morning my mother asked me to go with her for the registration. I did not want to go so I said that there might be many bad people at the club. As a resullt my sister was scolded by my mother. +p59569 +aVWhen I could study at university. +p59570 +aVWhen I forgot the lines of the play during an orientation camp. +p59571 +aVBefore the department meeting my friend ate a dish that I had prepared for this meeting. +p59572 +aVI had a very short term romance during the summer vacations. When we first met I felt excited but I wanted to avoid him after we had met a few times and so I proposed that we stay apart, I felt very sad then. +p59573 +aVI felt disgusted on seeing my boyfriend after our separation. One day he was begging at the mass transit railway station and at that moment I hated him. +p59574 +aVActing in a play at the orientation camp made me feel timid. +p59575 +aVI made my boyfriend so unhappy and depressed that I feel guilty. +p59576 +aVMy friend had organized a birthday party for me secretly, I was very happy not so much for the presents but because they seemed to care for me. +p59577 +aVMy 80 year old grandfather underwent three successive operations during a single year. The third operation was risky and I was scared that he would die and feared that my grandmother would be very sad. +p59578 +aVMy elder brother often criticizes my mother's cooking. Once he did it very impolitely and lost his temper. This made all of us very sad. I was very angry and I scolded him. He asked me not to interfere with what was his buisness. +p59579 +aVWhen my grandfather died I was extremely sad. However my family members did not have any special feelings, they said that he was already 80 years old. +p59580 +aVI was an instructior in a youth organization. Whenever we, the instructors would have a meeting the advisor would be present. He did not understand our worknig conditions but talked a lot and had a lot of outdated ideas. Whenever we disagreed with him he was very discontent and said that we had a prejudice against him. Why did he have to treat us as his subordinates ? +p59581 +aVWhen we received our academic result I learnt that my results were bad as I had not done my best. The results of my accquaintances were good and when they asked me about my results I really did not want to answer. +p59582 +aVWhen I was fighting with my elder brother I unintentionally hurt him in the eye with a wooden bar. I felt guilty and feared that he would be blind, fortunately he recovered after 15 days. +p59583 +aVI finished my homework; an important task. +p59584 +aVFear of the turn that the examination paper would take as I lacked confidence. +p59585 +aVMr C took my drawing pens, without having asked for my permission first, and lost them. He did not tell me about it till I asked him and then did not try to find them. +p59586 +aVWhen I learnt that I had to repeat the first year, I found the solution immediately but was blocked by many difficulties. +p59587 +aVAfter I had given the wrong answer to my students they pointed it out to me and I had to correct myself. +p59588 +aVI prayed unfaithfully. +p59589 +aVI am happpy when I get good results in the field of academics or athletics. +p59590 +aVOne day a fierce looking man came to our house and said that my father should apologize to him, however I was alone at home. +p59591 +aVMy cassmate laughed at me when I was being scolded by the teacher. +p59592 +aVI knew a girl so lovely that everyone would like her. But she refused to accept my Christmas present and I tried to forget her. +p59593 +aVI hate the behaviour of my so called friends, they use bad language, spit, boast and treat the youngsters badly. +p59594 +aVWhen I was young my mother told the neighbour that I had wet the bed. I felt ashamed thinking that the neighbour's children would get to know about it. +p59595 +aVOne day while we were strolling along the road one of my friends suggested that we go and watch a blue film. I was curious so I went along but I felt quite guilty later. +p59596 +aVThe day the results of the university entrance exam was published, I found my canditate number and I was very excited. +p59597 +aVOne night we were having a barbecue on the beach and I needed to go to my car, which was far away from the beach. It was very dark as there were no street lamps. I ran in the dark, very scared, I ran as fast as possible. +p59598 +aVI separated with the one I liked most. She refused all my dates and told me that she had dated another one. My heart seemed to cease beating. I was silent for some time and then I whispered goodbye and left without turning back. +p59599 +aVWhen I was a teacher in an evening school, a girl raised a lot of questions and expressed her opinions. She, very often, took a stand which was different from mine and she thought that it was better than mine. Her opinions were helpful academically, but she did not take into consideration my position in public. Also she seemed to be very talkative and so she disgusted me. +p59600 +aVI had lunch in a restaurant with a friend and I paid the bill. The change was that of a two dollar and a ten cent coin. As I was talking with my friend I took the two dollar coin and forgot to leave a tip. +p59601 +aVI was cold to my sister without meaning it, just because I was upset and frustated. +p59602 +aVWhen I learnt that I had been admitted to the university. +p59603 +aVAfter the interview for admission to the university and before the admission list was disclosed. I was scared that I would not be admitted and my fear lasted for quite some time. My fear disappeared only after the list was disclosed. +p59604 +aVWhen I was studying in the library - preparing for a test, two people sitting next to me talked to each other for 20 minutes. There were no other seats so I could not go elsewhere and I did not want to interrupt them, so I could only be angry in my heart. +p59605 +aVI had been separated from my girlfriend for about a year. On her birthday I put a present in her mailbox. I had spent two days choosing a suitable present for her. I waited for a few days and there was no reply from her; at last I received a thank-you card in my mailbox. On the card there was only my name, the words thank-you and her signature. I was very sad then. +p59606 +aVWhen I was travelling to school by bus, I went past a place where a sewer had been repaired. There was a bad strong smell which suffocated me and I wanted to leave the place immediately. +p59607 +aVI received the results of the test paper of my major subject and I found that my result was not as good as a classmate who had recently changed his major subject. I felt very ashamed. +p59608 +aVI had promised myself that I would do one good deed every day. One night I saw a beggar whose muscles had been atrophyed. I walked passed him thinking that he was feigning. Later I realized that he had not been pretending and I had a feeling of guilt as I had not kept my promise. +p59609 +aVTalkiing about the past happy hours with two friends at night in a camp a few months ago. We shared our feelings, notions and every hidden anxiety. I thought that they cared for me and I was very happy and satified. +p59610 +aVI remember that my form 2 teacher was very fierce and dogmatic. My feet would tremble whenever I saw her but I had to face the fact that I had to go for her class. +p59611 +aVOne night I could not practise my violin as my family was watching T.V with the lights off, so I wanted to listen to some tapes. It was dark so I asked my brother to bring me a torch, however he scolded me. I was so angry that I slammed my violin on the floor. +p59612 +aVMy mother suffers from a mental illness. One night she was not feeling well and was sent to the hospital. I was scared that she would die, and all night I was very sad and did not dare to close my eyes. +p59613 +aVAt the crowded conditions of living. I always quarrel with my elder brother as he puts the T.V volume at a deafening level and I can not practise my piano lessons. Thus I feel that my home is disgusting. +p59614 +aVI lost my temper at my mother while she was teaching me. I felt ashamed and sorry at having hurt my loving mother. +p59615 +aVI felt guilty at not having practised the piano. I waste my teacher's time and guidance. +p59616 +aVI watched a football match with my old friend. The performance of the team was very good and the team members were full of spirit. The match was excellent and every time a goal was scored I felt excited. +p59617 +aVWhen I got the midterm exam results, the results were below average and were near the lowest. I was scared of the final exam. +p59618 +aVWhen I came back to my hostel, my bed was full of newspapers and dirty clothes. My room-mate asked me to wash the clothes for him as he had no time (this was his responsibility). The food we shared had been eaten up by him (I ate little). +p59619 +aVMy sister was impolite to my father when the family was having lunch together at a restaurant. She thought that our parents had been prejudiced against her, this was an extreme thought. +p59620 +aVWhen I was giving private tutorials to my student; he would not concentrate and was lazy. He had not done the home work that I had assigned and his academic level was very low. It was a nuisance. +p59621 +aVDuring a meeting I said something wrong and the others laughed at me. +p59622 +aVI entered the hostel this year. My mother was ill and could not move and needed people to look after her. Every week I left home to go back to school, I felt guilty. +p59623 +aVI received a letter from a friend whom I was missing +p59624 +aVI feared that I would not be able to hand in the book-report on time as I had started working very late. The book was difficult to read and my teacher did not accept my work as it was handed in late. +p59625 +aVMy classmate always borrowed my notes and would not return it to me on time. When I had a test she was selfish and irresponsible and so delayed my studies. +p59626 +aVWhen I found that my coldness had hurt somebody's sincerity. +p59627 +aVWhen I was studying and someone disturbed me. +p59628 +aVMy teacher said that being university studets we did not have any self-initiative or self-control. +p59629 +aVI took french leave to do my homework. +p59630 +aVI realized that a fellow member had grown spiritually. I was the leader of a spiritual group and had prayed for him. He did not want to burn the incense but his mother forced him to do it. Finally his mother told him that he could discontinue if he got good results at school. +p59631 +aVLooking for the toilet in a dark place. +p59632 +aVI gave tutorial to a student and I found that he was lazy, he did not pay attention to what I taught. He did some easy questions wrong deliberately. +p59633 +aVI saw a lot of starving people in a T.V news report. +p59634 +aVOur neighbour came and gossiped, about others, with my parents. +p59635 +aVI promised a friend that I would return a book to it's owner for him , but I forgot to do it. +p59636 +aVSaw a blue film in a cinema. +p59637 +aVWhen I saw the certificate results, I did not feel very happy as I did not realize that I had got all the credits until my classmates pointed it out to me. My parents and my relatives praised me and I realized that my results were good i.e 2A, 5B, 2C. I felt satisfied with the results and was happy. +p59638 +aVAn hour before receiving the certificate results I was very frightened. When I saw others crying I felt very tense and as time went by my fear grew. +p59639 +aVMy classmate used her personal relations to get a seat for a subject that I wanted also. I had taken the pains to help him apply and I did not get selected. I did not like this as he had not told me the facts earlier, he need not have lied to me. +p59640 +aVWhen my mother went through an operation, it was not very serious but I was sad and could not sleep before the operation. +p59641 +aVDuring a recent meeting, Mr. A showed his excitement and overindulged in the notes delivered. Though his curiosity could not be blamed, his way of accquiring knowledge was an extreme behaviour e.g he always tried to know what I was reading and gained everything he could. +p59642 +aVWhen I was doing my homework at home, some relatives came and advised me to help my mother do the house-work. +p59643 +aVWhile quarreling with my brother I broke the glass door of the cupboard and a china doll. We were scolded by my father for breaking the door but we did not tell him about the door. +p59644 +aVWhen I was admitted to the Chinese universiity. +p59645 +aVAn inter-college basket-ball match. +p59646 +aVSomething was stolen. +p59647 +aVWhen I learnt that my close friend was going to immigrate. +p59648 +aVWhen the summer holiday job was almost over. +p59649 +aVDuring a meeting. +p59650 +aVFailed to keep an appointment. +p59651 +aVWhen I told my girlfriend a joke openly and frankly. +p59652 +aVOnce while crossing a road I was overcome with fear. +p59653 +aVMy intimate girlfriend told me that her father was opposed to our relationship and had insulted my integrity. +p59654 +aVWhen my studies are too demanding and I cannot cope with it. +p59655 +aVThe behaviour of people spitting everywhere. +p59656 +aVI could not finish my homework on time. +p59657 +aVAfter masturbation. +p59658 +aVWhen I finished the work that I had planned to do - my homework. +p59659 +aVI was not prepared for the exam but I wanted to sleep the night before the exam. +p59660 +aVSomeone played a trick on me. +p59661 +aVWhen the thing that made my friends and relatives sad happened to them. +p59662 +aVIt was a narrow and dirty passage which was located near the market and I had to stand there to wait for people. +p59663 +aVI had something wrong, saying wrong things and being impolite to someone, and this had embarrassed the this person. And I still meet the person. +p59664 +aVI said something which was against my conscience. +p59665 +aVSeveral good friends made me a surprise visit and this made me happy. They are my closest friends and we had not seen each other for a long time. +p59666 +aVThe hero was chased by a terrible vampire in a suspense and horror film shown on T.V. +p59667 +aVI worked with several classmates on a project. I was very anxious about the project while my partners showed no concern and when we had meetings on the project my classmates did not pay any attention. Some of them read books while the others argued on irrelevant questions. The meeting would go on for two hours without the main theme being discussed. We wasted time and could not reach a compromise. My classmates avoided doing the work and the responsibilities, they seemed to value other projects more than this one. +p59668 +aVOne of my good friends had to migrate to America. Our friendship had developed quite well and it was a pity as our friendship would fade. +p59669 +aVIn a study group, a person always liked to argue on some unimportant, irrelevant and minor points. He tried to persuade others in an unfriendly way. He was obstinate and would not accept other's point of view. +p59670 +aVOnce my presentation was the worst among my classmates as I had not prepared it well and had not seen it as important. My presentation was so confused that it clearly showed my poor preparation. +p59671 +aVI joked with an unfamiliar friend in an obstinate tone. I was afraid of his misunderstanding me and being hurt and angry at me. I felt sorry over my conduct and thought that I had to find an opportunity to apologize. +p59672 +aVI remember my religious experience. During a gospel camp, a few friends of mine decided to believe in God. The joy that I felt at that time was more than words can express. I blessed them and praised God in my heart. +p59673 +aVMy friend and I had offended our classmate unintenionally. We wanted to apologize to her so we decided to visit her. We knew that she was stubborn so we were frightened. When we rang her door bell, our fear was at it's climax +p59674 +aVMy girlfriend disliked it when I played majong (a game of gambling). I expressed my regrets and when I went to see her she neglected my existance. I was very angry and left in displeasure. +p59675 +aVWhen I said good-bye to my girlfriend. I had spent two years on developing this relationship and it was unsuccessful, I felt very sad. +p59676 +aVMy classmate got a ""B"" for his homework while I only got a ""C"". When we got the results he acted as if he did not merit this grade. I found that his humility was hypocritical and I found it disgusting. +p59677 +aVOnce in primary five, I had forgotten to take a book to class and the teacher punished me by asking me to stand at the back of the class. I thought about the way my mother would react if she saw me being punished. My mother was very good to me and though she did not see me punished, I felt sorry for her. +p59678 +aVI had fixed a meeting with my classmates and I missed it as I was tired. Besides everyone at the meeting was a stranger to me and I did not want to make friends with them. Whatever the reasons - I felt guilty. +p59679 +aVI learnt from the newspaper that I had been accepted at the Chinese university of H.K. It was 7 o'clock in the morning. Later I told my family and relatives about it and had tea with them very joyfully. +p59680 +aVI was camping in an old broken hut which had no lights. I had brought along a lamp which was not working very well. The door made strange sounds and I was sure that strange things were happening. The most terrifying bit was that there were many wardrobes in the hut and everytime that I looked in the glass of the wardrobe I felt that there were ""objects"" behind me. The whole night was spent in fear and restlessness. +p59681 +aVDuring a football match, the other team was rude and they hurt my team members and me. The coach was prejudiced against us and punished us unreasonably. Later we fought with each other and the match had to be cut short. +p59682 +aVI heard of the death of a closefriend of mine. I had gone camping with him shortly before his death and the whole thing seemed very sudden to me. +p59683 +aVA group of youngsters dressed in fads talked foul language on a bus. They also insulted the pedestrians on the road and were impolite to the passengers of the bus. +p59684 +aVIn a Christian gathering's lucky draw I mistook a girl's name for mine (a boy's name). I realized my mistake only when I went up to the stage for the prize. I did not know what to do as everyone was looking at me. I blushed and went back to my seat. +p59685 +aVWhile playing basketball I broke a team member's spectacles. His face was injured by the pieces of glass. It was not serious but I felt guilty and blamed myself for being too careless and vigorous in my game. +p59686 +aVAfter a busy day I went back to my hostel. I closed the door and had a drink, then I read my favourite book on the bed. Suddenly I felt peace and joy. +p59687 +aVWhen I went home and there was nobody, I waited till 2 A.M and still nobody. I was suddenly scared and anxious as this had never happened before. In addition my mother was very weak and I feared that she had met with an accident. Therefore I was anxious all night. +p59688 +aVYesterday I read in the newspaper that a 30 year old woman had abused her 2 month old son and had caused his death. I was very angry after reading this as this is not a human act and to abuse so fragile a life is not a forgivable sin. +p59689 +aVI had a schoolmate who went to the hospital as her brain was bleeding. She fell unconscious for three days and when I went to see her I saw the miserable state the family was in. Moreover I could not do nothing for her. I was very sad. Finally, she died. +p59690 +aVA tiresome person held me up all day long. I was very busy then (I can not remember what the problem was). He continously tried to make me talk to him and disturbed me. +p59691 +aVOne day, when I was sitting on the bus, there was an old woman standing beside me. I was very tired and sleepy and did not think of giving her my seat. A 50 year old woman who was sitting beside me got up and gave her seat to the old woman and said, "" Old woman, please take my seat, the youngstters these days are not used to giving their seats to others."" When I heard these words I was very ashamed of myself and wanted to get off the bus at once. +p59692 +aVAfter an exam I was in a very bad mood as I had done it very badly. At home, my mother took so long to ask me how things had gone that I lost my temper. I overreacted and made my mother cry. She still prepared lunch for me and did not scold me . Suddenly, I thought that it was my fault and I started crying. +p59693 +aVI was appreciated by others, especially my family members and my friends. +p59694 +aVWhenever I am alone in a dark room, walk alone on the street, sleep alone in the room at night or see something which is only partly visible. This emotion was very strong when as an 8 year old child I saw something horrible. +p59695 +aV Whenever I put myself in other's shoes and try to make the person happy, comfort him or make friends and I am misunderstood and rejected, especially when this person is a family member or a friend. +p59696 +aVThere was a conflict of interest between me and a close friend of mine. He only thought about his own interest and not about our friendship. This behaviour hurt his friends. Another incident is when a friend isolated himself without giving any reasons. +p59697 +aVWhen I saw a lot of rubbish and animal waste on the floor. +p59698 +aVWhen I was emotionally unstable I said things which may have hurt others or made them feel unhappy. When I calmed down I realized that I had been selfish and had not taken into consideration the feelings of others. Then I felt ashamed as someone pointed out my behaviour to me. +p59699 +aV When I break someone's things out of carelessness, or do something to make others feel unhappy or hurt the self-esteem / self-confidence of others, especially if they happen to be friends or family members. +p59700 +aVWhen I received the letter informing that I had been accepted to be a Chinese university student, I was excited as I had longed for it. +p59701 +aVOne day when I was a little boy, my friends asked me to play with them outside and to catch some boys. However our parents did not know that we were out and when I got home it was very late and I feared being scolded by my parents. +p59702 +aVWhen I learnt that a friend of mine had talked about me to another friend and had said wrong things about my abilities and attitudes. I was very angry. +p59703 +aVAbout two years ago my girlfriend suggested that we separate. This really gave me a shock as I had never thought that she would say such things. The reason she gave me was that we were not suited for each other. +p59704 +aVOnce while studying for my exam I found so many complicated words that it disgusted me. +p59705 +aVWhen I was young I felt ashamed when our relatives visited us and I hid myself. +p59706 +aVI was so excited once that I told my classmate that she was old, this hurt her and I felt guilty. +p59707 +aV During a certain period, I felt successful and extremely satisfied. When I found that any tasks or decisions that I had made were better than expected. +p59708 +aVI am scared when I stroll alone on the Chung Chi college campus. +p59709 +aVOne day, I discussed a very important question with A. A suddenly declared that he would not accept my position and thought that he himself was right. Moreover, he attacked strongly, not my opinion but me personally. +p59710 +aVWhen I learnt that I had failed an exam, This not only influenced my emotions but also other important tasks, it also made my record imperfect. +p59711 +aV I would classify subjectively, a certain gesture or the way of talking of a person as disgusting or inacceptable. +p59712 +aVI felt happy when I received the letter telling me that I had been admitted to the university. +p59713 +aVDuring the first year in university I had bad results in both the terms, especially the first term. I was afraid that I would not be promoted to the next year and that the others would go ahead of me. +p59714 +aVOnce my father slapped my mother for a small quarrel. +p59715 +aVA few years ago my mother suffered from canccer and died within two years. We had not finished our studies then and could not bear our responsibilities as her children. My mother had tried her best to take care of us but she lived in pain these two years. Neither the doctor nor we could do anything for her as cancer is incurable. I was very eager to replace her in suffernig , even die instead of her. +p59716 +aVI used to play with a group of classmates and I found out later that they were cheap in thought, behaviour and conduct - they would smoke, fight and speak foul language. I thought that they destroyed the image of college students. +p59717 +aVIt was discovered that I had received a warning letter as my G.P.A was very low. +p59718 +aVMany years back I quarrelled with my younger brother for a small reason. I used a pole to beat him and nearly broke his arm. He recovered after a treatment which lasted several months. After this our relationship was worse and he would not listen to me. +p59719 +aVOne Saturday afternoon, I deliberately dressed up nicely (I had been in a bad mood of late). I hoped to go for a walk in the soft sunlight to try and uplift my spirits. When I was having lunch in the canteen, two of my male classmates asked me as to why I was dressed so nicely (they had seldom joked with me before). One of them said that he had a lounge suit and we would look very nice if we wore them together. +p59720 +aVThe exam was drawing near and I wanted to prepare for it. But I had a lot of other things to do so I did not have much time to prepare for the exams. Whenever I sat down to study I was scared that I would not be able to finish it. +p59721 +aVA female classmate was always late for meetings which were for the homework and not social gatherings. We were very busy and the deadline was close but we had to waste half an hour or an hour waiting for her as we could do nothing else then. +p59722 +aVAfter a meeting ended we started talking about when we would have the next discussion ( I had many tests the coming week and could not have a meeting in between, I thought that they would understand this as they had always done). They did not understand my problem and thought that I should not have so many other activities. Their reaction made me burst into tears. +p59723 +aVWhen I was studying in the library a pair of lovers were sitting next to me talking in an intense and soft voice. They were disturbing others. +p59724 +aVDuring an informal discussion I contributed a lot even though I had not spent much time studying. Whenever someone said that someone was not paying attention, or that he had too many other things to do, or that the persoon was not trying his best, I would feel ashamed. +p59725 +aVOur class had organized a picnic in November. I was the class representative so I became the organizor. However the picnic was postponed by one week and I had something else to do then. Initially I did not ponder on what to do and decided to go for the picnic. When I had the time to think about it I thought that my decision was wrong. My classmates thought that I would go as I had signed my name but I did not go. I told another class representative that I was not going but he did not know the reason behind my not going. After the picnic my classmates asked me why I had not gone to the picnic and everytime someone mentioned it I was apologetic. I should have decided right in the begining that I would not go and then they would not see me as irresponsible i.e promising to go and changing my mind afterwards. +p59726 +aVIt was the first time I met him (my boyfriend Mr.W). It was during the first term Summer vacations. We met each other while handing in our homework. He invited me have a trip with him and we were together till 8 P.M. +p59727 +aVThe day the results of the certificate exam came out. I went to school and at first I did not feel frightened. By the time I reached the fourth floor ( the results were being given on the fifth floor) I found it difficult to walk and felt that I would die. +p59728 +aVOne day I had sunned my favourite shirt and was putting it back in the wardrobe when my younger brother snatched it from me and wore it. He had not had a bath and was very dirty. I scolded him but he answered back and locked himself up in a room. I was very angry so I starteed kicking on the door and abusing him loudly and freely. +p59729 +aVWhen I was a child I was playing on the upper deck of the bed with my brother. My parents slept on the lower deck. My father felt disgusted and beat me up. I felt very sad as my father had never beaten me or scolded me before. +p59730 +aVMy boyfriend and I did not have any contact with each other during the Summer holidays. I met him the day of the registration and looked through him. In the canteen he asked me if I wanted to have a drink and I said no as I did not want him to do me a favour. +p59731 +aVOn Christmas eve I went to a classmate's home with other classmates. The next morning when I came out of the toilet she said something and I did not understand what she was saying. When she pointed at my trousers I discovered that I had forgotten to zip them up. I rushed back to the toilet but by the time the others had guessed what had happened. +p59732 +aVOne night,when I was in primary 5 or 6, I felt thirsty so I fetched the thermos to pour a cup of water for myself. Then I saw my brother lowering his head and I, jokingly, poured the water on his head. +p59733 +aVI had gone camping with my old classmates and there was a storm. We were in a flurry but at that time I felt the love and concern of my friends. +p59734 +aVI was on a trip to Phillipines during Summer and I was staying in a hotel. The room I was staying in was very silent and had very dim lights. The last night I felt frightened and lay awake - I could hear some sounds around me and dared not open my eyes - I waited for dawn. +p59735 +aVI had a very good friend in secondary school. The year after our graduation I prepared to celebrate her birthday and I called off all my appointments. I got together the other friends and we were ready to give the entire day to her. However this friend disappeared on her birthday. When I phoned another friend I didcovered thay she was busy, I did not call her anymore. +p59736 +aVI am a Christian but I cannot find any meaning in life . It seems that I am deceiving myself but I cannot find the way out. +p59737 +aVA brother from one of the Christian fellowship often phoned me and talked to me for half an hour or more. However there was nothing important in the conversation and I found the person very disgusting. +p59738 +aVI felt shame when I found that I was almost last in the exam. +p59739 +aVOnce I bought my sister a pair of sports shoes as she was going to join an athletic meet. However the shoes were a little big and had a few flaws. She muttered all the way and blamed me for having wasted her money anf I felt guilty. +p59740 +aVWhen the result of the certificate exam was announced. I was surprised and happy as the result was better than I had expected. +p59741 +aVWhen I was young I got lost on the street and the police found me after a day. +p59742 +aVMy sister once stole my mother's money and made her very angry. After this my mother would beat her up for unreasonable reasons. One day my sister lent her book to a friend without telling my mother about it. When my mother learnt this she beat her up and even threatened her with a pair of scissors. +p59743 +aVMy academic result was poor and I had to repeat the second year. I felt sad about the coming several years. +p59744 +aVMy mother was always fastidious about my room, bed time, etc. She treated us strictly and punished us physically. These things were intolerable. +p59745 +aVI misunderstood a girl and thought that she loved me. One day when I was talking to her, her boyfriend appeared and I felt ashamed. +p59746 +aVWhen I was in P3 I was always punished as I would forget to do my homework. The first time that I was punished and not allowed to leave school, I slipped out of school. +p59747 +aVI was admited to the Chinese university of Hong Kong. The day the results were announced I looked in the newspaper and saw my candidature number. +p59748 +aVOne year, when I went to a camp, I was chased by a dog. I tried hard and finally managed to escape from it. My torch suddenly went off and we talked about ghost stories and I thought that there were ghosts. +p59749 +aVWhen I was in F4 I played a basket-ball match against another school's team. One of their team members kicked a team-mate of mine so I kicked him back and we had a fight with each other. +p59750 +aVI received the mid-term exam paper of one of my major subjects and I found that I had failed it. +p59751 +aVOnce at a camp a classmate criticized me in front of others. Now I find that this classmate is very disgusting. +p59752 +aVWhen I was in F4 I led my class to a riot. However the form master said that my conduct was good and asked me to tell him the names of those who had taken part in it. I replied that I did not know. +p59753 +aVI promised to join a meeting but did not turn up as I did not want to do the work. +p59754 +aV When my performance (homework or other work) is better than others. +p59755 +aVI found a problem in homework which would not get solved although I tried my best. +p59756 +aVI had a date with my girlfriend, the time and place had not been fixed. I asked her to phone me an hour later as it was midnight and I did not want to disturb her family. I waited several hours for her call, she did not call me that night. +p59757 +aVWhen I found that my ability to do ordinary work was worse than my fellow mates. +p59758 +aVI made friends with a classmate whose behaviour I did not like - he tried to flatter other people and did not respect me. +p59759 +aVMy guilty behaviour was found out by others. +p59760 +aVWhen my behaviour was immoral - thinking about sex. +p59761 +aVDuring my Summer vacations I planned a carnival for the community youth center with a few other volunteers. I was the head of the organizors and we spent over a month planning it. During this period we got to know and understood each other. We discovered each others potential and we planned many interesting things for the carnival. The day of the carnival everything was bright, the programmes went well and the attendants enjoyed it. I felt extremely excited about it. +p59762 +aVI was a prefect at secondary school. On the sports day I told others that I would take down the names of the people who misbehaved and after some time I sat down for a brief rest. Suddenly the head prefect came and scolded me in front of others. I was very angry as there were other prefects sitting and he picked on me. I thought that a brief rest was not serious enough to be blamed. +p59763 +aVI had joined a youth group that observed the affairs of our community and so I had many opportunities to contact the government and the committee members of the district board (a local executive structure). We always tried to consult and discuss with them, but we found that such people did not understand community affairs and they even dampened our enthusiasm in local affairs. I did not understand why they had decided to work as community leaders. +p59764 +aVOne day I was the leader of the weekly meeting of the Church fellowship. That day I had been preparing for the exams and did not estimate the time to travel to the church right and I was twenty minutes late. As I had not prepared well I led the meeting badly. I was ashamed of myself. +p59765 +aVI borrowed my classmate's notebook one week before the examination and I promised to give it back to her in two days time. I was very busy at that time and forgot many things; as I was not very often at home she could not contact me. When I started my revision I realized that her notebook had been on my desk for five days. I contacted her immediately and gave it back to her. Though she did not say anything I felt very guilty. +p59766 +aVWhen high level results were declared, I found my candidature number. I was very happy as I had not expected it. As I had been injured before the examination and I had performed poorly. +p59767 +aVOnce, when I was ten, I could not remember why my mother was so angry. She fainted suddenly and I was very scared as I did not know what to do . +p59768 +aVWhen I got into a bus I found that my wallet had been stolen. It was not a great loss from the monetary point of view but I lost some documents - identity papers. As a result I had to spend several days in order to get a new one. I will always remember all the work I had to do and the bad treatment I suffered because of the bureaucratic behaviour of the civil servant. I had already had bad luck and they treated me like a criminal. At one point of time I really wanted to quarrel with them. +p59769 +aVI quarrelled with my younger sister because I had said something against her boyfriend. Consequently she looked through me when she saw me as she thought that I was trying to separate them. She had misunderstood me. +p59770 +aVA few days back, I walked on a heap of faeces while walking on the road. I got goose flesh because of this. +p59771 +aVDuring the English lesson we were required to do a play. A few days after doing it the teacher asked us to do it again at a meeting and I forgot my part. +p59772 +aVOnce, my friend and I went to the Tai 60 to cycle. My mother had told me not to go. Unfortunately I broke my pectoral girdle and had to go to hospital. When my mother came to see me I felt guilty as I had not listened to her and I had to soon sit for a public examination. +p59773 +aVAfter attending a song contest proposed by a band called ""Chyne"" we (6 of us) waited for the members of the band to greet us in front of the stage. We went out after a few minutes as it was time to close the hall. We had been waiting at the entrance hall for ten minutes when three of the band members came out. They were very excited to see us, one of them was so excited that he had tears in his eyes. We felt very warm and close to each other. They took us back into the hall and we talked freely. We were together for about an hour and during this time we felt that they were very sincere. +p59774 +aVAt noon one Sunday I received a phone call telling me that my mother had been knocked down by a car at the street crossing and that her husband should go and see her. I could not believe this as my father and my mother had gone out together to buy lunch boxes. However I immediately ran to the scene of the accident. +p59775 +aVThe day the results of the Chinese university was announced I should have been very happy; however my grandmother, because of her prejudice and misunderstanding, started a quarrel with my mother. She expected me to take her side and she deliberately talked of my mother's wrong doings. I was very angry because - one my grandmother was not being reasonable and two because it should have been a happy day and three we had moved into a new house that day. +p59776 +aVWhen I was in lower six class during the Summer I joined a research group of the Chinese university student union. I knew a lot of CV students there. A year later one of them was travelling in mainland China and he got T.B. He died a few weeks after coming back to H.K. We all got together for the funeral and when I looked at the body for the last time I felt extremely sad. +p59777 +aVDuring these Summer vacations a schoolmate who was not in my class went to Britain. Before he left, his classmates and some of us who were accquainted with him had a B.B.Q on the beach. When I arrived I saw that some people , who were not close friends of the departing person(person A), were playing mahjong. Some others were playing bridge and A had nothing to do, besides it was A who had prepared the food. Later when we wanted to talk and his classmates did not even have the decency to listen to him. They only asked him a few questions half-heartedly and then they talked on their own. Some of their conversation was against me and another classmate. +p59778 +aVWhen I was in lower six I joined an interview group to interview the general public. One of my friends in the group lost her purse and she was very nervous. Five of us had to go another place so we left her, and planned to see her later. Then I heard her describing how her purse looked. I realized that I had seen her purse on the floor and had not wanted to do any thing about it. +p59779 +aVI went to a friend's baptism as she became a Christian after me and I realized that she was more enthusiastic about her spiritual life than I was. When I was with my brothers and sisters of Christ I had a guilty feeling which could not be dismissed easily. When pepole asked me as to when I would be baptised my guilt feeling deepened. +p59780 +aVWhen I received the result slip of the higher level examination (an university entrance exam) and saw that I had a very good possibility of being accepted into the university, I felt very excited. +p59781 +aVOne camping night, I listened to the ghost stories told by my classmates. +p59782 +aVLast week I had planned to play tennis and had booked a tennis court. However when I arrived at the university gym the clerk told me that the court was being used for lessons. +p59783 +aVWhen I was ill and had to stay at the hospital for a period of time. +p59784 +aVA few days back I was waiting for the bus at the bus stop. Before getting into the bus I had prepared the exact amount of coins to pay for the bus fair and when I got into the bus I put these coins into the box meant to collect the bus fair. I thought that I had paid and wanted to get inside. However the bus driver called me and asked me in an impolite way if the coins were stuck at the opening of the box. He had not seen me paying and there wasn't a stack of coins in the box. I could not understand this and the driver kept questioning me. He made me feel angry and at last i inserted a dollar coin in the box just to get away from him. Later I found that I had forgotten a few coins in my pocket and had not paid enough for the fair the first time. After I had entered the bus I could still hear him scolding me and I felt disgusted. +p59785 +aVA few days back I had a tutorial class and the teacher randomly assigned one person in each group to make a presentation. The discussion in our group had been confused and the presentation was not very well prepared. Unfortunately I was selected to present and I could not keep calm, was confused and result was very poor. I really felt ashamed. +p59786 +aVOnce I quarrelled with my sister and after this I deliberately messed up her belongings. +p59787 +aVI had a dream : I had a very close friend who had several stone houses in the New Territories (villages) but they did not have much furniture. He took me to see his fields (I had never seen them before) and there were several inches of clear water on which the sunshine was reflected. I wanted to sit among the short green plants in the fields but was afraid of treading the plants to death. My friend said ""They will not die"" and I sat down happily and my trousers did not get wet. +p59788 +aVAfter seeing a horror film - Omen. I could not sleep at night even though I closed my eyes. The last scene of the film kept coming back to me, I seemed to hear the girls in the film shouting at the devil. The devil did not have any expression on his face and I thought that he would choose me. +p59789 +aVMy friend often played a joke on me and sometimes I thought that he was a nonsensical person. Once when we went to a friend's house he walked in first and shut the door firmly behind him. I felt that he did not respect me and moreover I was his friend so he should not have behaved like that. I was very angry (as it is I was in a bad mood then). +p59790 +aVI suddenly found that those whom I considerered to be my good friends did not care for me. Although I could still be with them I felt unimportant. I deeply thought about the reason behind this so as to see who was responsible for this. Finally I made up my mind and decided not to expect too much from them. I was sad when I decided that they were no longer my good friends. +p59791 +aVI had a friend who was very kind to me. I tried my best to like him and understand him but when I was with him I could not help rejecting, criticizing and blaming him. I wanted to get away from him as soon as possible. +p59792 +aVMy teacher reminded us not to do a Summer job, however I did it for two months. Yesterday I was chatting with my teacher and when we talked of the Summer job, I felt ashamed. +p59793 +aVI wanted to get rid of a bad habit and it seemed that I had succeeded. However a year later I got the bad habit again. I felt useless as I always found excuses to explain my behaviour. As a result I felt guilty. +p59794 +aVA boy phoned me at night and wanted to talk to me for 30 minutes outside. I thought that he would reveal what he felt and would question me on our relationship. I treated him as a friend and did not want any misunderstandings. Therefore I refused to meet him and told him that I would see him the coming day. I was very unhappy as I feared having hurt him and got him into trouble. +p59795 +aVWe had fixed time for practice as we had to participate in the inter-department song contest. I arrived and found that there was nobody there. When I went to the canteen I found them eating lunch. I was so angry that I aired my greviances to one of them and then left. +p59796 +aVA friend told me that he had suffered in love and in academics. I shared his sadness. +p59797 +aVOne rainy day when the streets were wet, and as I was walking down a slope, I fell down out of my carelessness. There were many people and they saw me, so I felt ashamesd. Moreover I hurt my ankle and it was painful. +p59798 +aVOne night during dinner my nephew was naughty, so I quarrelled with my parents. I regreted this as my nephew was only two years old and I had to tolerate him ! The quarrel made my father think that his children may not take care of him in the future (it was a slip of the tongue and this made me realize that my father keeps his thoughts to himself). I was still very angry so I dropped my bowl and chopsticks and went to the kitchen to drink tea and then ran to the other side of the house. +p59799 +aVThat afternoon I rushed home to look at the result slip of the higher level as fast as possible. I opened the envelope very carefully and found that my results were much better than I had expected and thus I could enter the Chinese university. My diligence had paid and I was very happy. +p59800 +aVWhen I was young I had gone to an old lift and played with the antique lift. The guy discovered me and warned me, I was very frightened. +p59801 +aVWhenever my father smokes the smell makes me feel very uncomfortable. He never listens to my complaints and I curse him furiously in my mind. I cannot solve this problem by violence because of traditional moral values. +p59802 +aVMy got my mathematics test's marks and could not believe that it was true. In the past I would have at least 80% marks. Was I getting weaker at studies ? This made me feel that I should not expect too much from going to the university. +p59803 +aVMy friend and I worked for the community centre by holding a booth. One day my friend went off to another booth to play. This meant that I was very busy and could not maintain order. His behaviour disgusted me. +p59804 +aVWhen I was in a bus on my way to the examination centre, a man sitting opposite me kept looking at me continously. I did not know what was wrong. When I reached the centre I started strolling around as I still had a little time. Suddenly a man came and whispered ""You have forgotten to zip up your trousers."" I was at a loss to say anything and I felt very embarrassed. When I thought of the bus incident I felt even more ashamed. +p59805 +aVAt secondary school, one of my classmates lost her locker key. During a class I saw two other classmates holding a key and talking secretly. I do not know why I suspected them, also another classmate supported me. He remembers that these people had only one key in the key-ring, this had seemed strange to him. Besides another classmate said that he had seen them selling books at a book-shop and they should not have had such books. I told the teacher and the person was caught. He had sold the books and was forced to quit school. I found that I had not helped him as he stole later on also. I felt guilty +p59806 +aVOne night, my boyfriend expressed his love for me in the canteen in the presence of my friends by giving me a present. +p59807 +aVAfter listening to ghost stories with my classmates I had to back alone to the hostel at night. I had to walk through a long and quiet road and I was scared of meeting a ghost. +p59808 +aVI came across a girl at the school bus-stop, I had seen her several friends as she was a friend's friend. However my friend had never introduced me to her and when she got off the bus I smiled at her but she did not respond pretending not to have seen me. Her arrogant behaviour made me sick and angry. +p59809 +aVMy examination results were not satisfactory even though I had tried my best. Then I started wondering about my abilities for the major subject. However I did not know how to choose my major subject if I were to change it. +p59810 +aVWhen my roommate and I had dinner together we decided as to who would clean the bowls. One day when I came back from school I found that she had not cleaned up. Since I had to cook dinner I cleaned them myself and felt unhappy and disgusted. +p59811 +aVWhen I asked my classmate to teach me to do my homework, he asked me to study by myself first but I did not do it. When he asked me if I had studied, I felt very ashamed. +p59812 +aVI escaped from communicating with God for a long time. I did not read the scriptures and I did not pray. I felt that I was getting further and further away from God. I felt guilty as this was because of my laziness. +p59813 +aVWhen two female classmates and I were having lunch, we chatted and cracked jokes, I was very happy. However, I felt that I may have said something inappropriate which might cause them to have a bad impression of me. +p59814 +aVI did not do well in one of the subjects last term. I was afraid that I would fail. My result was a grade D, though it was not good I still passed. I felt more comfortable then. +p59815 +aVMy friend half-teasingly called me a bad nickname. I felt insulted and kicked his hip in anger. I was stable later and did not feel angry at him. In fact I was afraid that the other friends who were with us would think that I was an intolerant person. However I could not apologize, so I pretended that nothing had happened and smiled when I left. My friend did not say anything but just watched me leave. +p59816 +aVLast night I did not do very well in one of the subjects. Before the result was announced I feared that I would fail. Finally I got a D and as the results of the other subjects were not all good I felt a little sad. +p59817 +aVWhenever I spoke to a female classmate I felt disgusted. She said meaningless things and seemed to indicate something to me but I did not love/like her. +p59818 +aVOnce a female classmate told me that the clothes I wore seemed to be a child's clothes. On hearing this I felt a little ashamed and I criticized her clothes though there was nothing wrong with them. +p59819 +aVOnce while playing tennis with my classmate I lost a few tennis balls. I found one near the tennis court and took it to be mine despite thinking that it might belong to the student in the next court. I felt guilty. Later someone came to me to claim the ball and I gave it back to him. +p59820 +aVWhen I received a letter from the university telling me that my application had been accepted. +p59821 +aVAt primary school the teacher caught me cheating during a dictation. +p59822 +aVSomeone spread rumours about me. +p59823 +aVOne night my father suddenly suffered from a heart attack which lead to breathing difficulties. +p59824 +aVThe curriculum of the year ! The English course was very heavy. I had not prepared and the teacher asked several questions during class. The students were not ready to answer the questions and the teacher was frustated. +p59825 +aVI forgot to zip up my trousers, this was not noticed by anyone. +p59826 +aVPeeping. +p59827 +aVI had a picnic with old classmates, we chatted and played games. +p59828 +aVAt night when I was alone at home (all the family members usually get together at that time) someone knocked vigorously on the door. +p59829 +aVDuring the Physics experiment session I did not understand the content of the experiment and did not know how to do it. +p59830 +aVA man sexually aggressed a small girl in the bus but the girl did not dare to speak out. +p59831 +aVBeing unable to stop urinating on the bus. +p59832 +aVThere were old people in a crowded bus and I did not have the courage to give them my seat. I closed my eyes to sleep and then opened my book to read. In my heart I wanted to give them the seat. +p59833 +aVIt was the first time that I gave a birthday present to my friend. She wrote me a letter as she is my girlfriend. The content of the letter was so sweet that it made me feel very happy. +p59834 +aVIt was a week before the higher level results were announced. I had tried and failed many times and this was the last time that I was taking the exam. I knew that if i failed again I woulld have to enter the society. I imagined things during this period - I dreamt that I had entered university and it was a nice experience. When I thought about the future, an unexplainable fear rose in me. I feared being a worker and not having a bright prospect, I also feared the criticism of my relatives as my brother had gone to university. Whenevr I thought of this issue I could not eat or concentrate, and my heart beat increased. +p59835 +aVThe surname of my brother was different from ours. He often grinned at home and provoked others for the pleasure of it. This made me angry. +p59836 +aVWhen I was in primary 6, my father died. I was very young then and did not know what had happened. The weeping of my relatives and my tears made me sad. +p59837 +aVAt hostel, my roommate was a very selfish person and would avoid doing anyhting that did not concern him. A few of us prepared lunch together and had decided to share the work. My roomate had promised to do the same but I had to wash the bowls everytime after dinner. I tried to wait and thought that he would realize his fault. I did not want to tell him to do the work as he is a university student and ought to have self-respect. He disappointed me and so every time I saw him I tried to avoid him and did not want to keep any contact with him. +p59838 +aVMy friend had many female friends and I thought that they were his lovers. I would scold him but he did not accept my advice. Later I learnt from his girlfriends that this was not true. I felt ashamed at having misunderstood him. +p59839 +aVIn the past I used to think that my mother was a very nagging person. When I started living at the hostel we had little time to meet each other. Whenever I went home she would take care of me. I gradually realized that what she had done was for my own good. So very time I saw her I felt guilty. +p59840 +aVIn August,1983, the long awaited ""big envelope"" (a document for C.U.H.K admission) arrived. It was in the afternoon and I had not been doing anything. When the postman, with his big bag, knocked on the door I knew what it was about. I hurriedly opened the envelope and my mood at that time is hard to describe. It lasted several hours and only calmed down later. +p59841 +aVOn Christmas eve,1984, I had just finished the exams and was afraid as the results of one of my major subjects had been very unsatisfactory. I thought that I had only a 50% chance of passing. Even if I failed this subject I would not need to repeat. However I liked this subject very much and my results were bad because of my lazyness. If I was forced to change to a minor in this subject I would be very unwilling. +p59842 +aVIn September 1984, I was forced to live with someone I did not like. The first week we were at loggerheads and our conversation was like a debate. The atmosphere was very bad. When he learnt that I had got 95 marks in a test he told me "" A failure, You lost 5 marks."" I was very angry, not because my marks were lower than his, but because I could not tolerate his pride. I did not show my discontentment and carried on doing my work. +p59843 +aVThis issue worried me rather than saddening me. In mid September I went to Guanggho alone. I was looking for an accomodation in the evening and after having walked 2 or 3 miles I still could not find anything. What could I do? I was not worried about sleeping on the streets but because of some procedural problems. I finally found a place to sleep at 8 o'clock. +p59844 +aVMy roommate liked to listen to some meaningless songs which had melody but had no content. We lived together so when he played the recorder I was forced to listen to them. I could not tell him that I did not like to listen to the songs, as I had no right to disturb the freedom of others. So I would find a pretext to leave the room and go somewhere else. +p59845 +aVLast Summer I went camping with some C.U students. As I was working then, I had to leave the second night (some of them had joined us the first night). Next morning, 6 o'clock, a female classmate knocked on our door and tried to wake us up. I was not fully conscious and I said something which I should not have. I realized the trouble I had made and wanted to hide. Later I said sorry to her and the matter came to an end. +p59846 +aVI lied to one of my best friends. +p59847 +aVI received a letter from a distant friend. +p59848 +aVMy parents were out and I was the eldest at home. At midnight a male stranger phoned us and spoke to me in a rough language. I hung up and heard someone walking outside our door. +p59849 +aVTwo years back someone invited me to be the tutor of her grand-daughter. The grand-daughter asked me some questions in mathematics so I taught her. However she did not listen to me and this made me feel unhappy. The second year it was the same. When I entered university the girl's parents suggested that I be employed as their daghters tutor. They told me that at university there was no homework and I would have a lot of time so they made a time-table for me which required me to be the tutor five days a week. They did not respect me and anyway I had another child to teach. +p59850 +aVI had taken the responsibility to do something and I had prepared for it. However I failed because of my timidity. After three attempts I still could not adapt to the atmosphere and failed as before. I felt imcompetent and felt that the others would think that I had not prepared for it. +p59851 +aVI was at home and I heard a loud sound of spitting outside the door. I thought that one of my family members would step on the spit and bring the germs in the house. +p59852 +aVI did not do the homework that the teacher had asked us to do. I was scolded immediately. +p59853 +aVI had shouted at my younger brother and he was always afraid when I called out loudly. +p59854 +asS'val_ind' +p59855 +(lp59856 +I4352 +aI796 +aI2552 +aI3072 +aI4581 +aI5925 +aI6075 +aI2881 +aI1696 +aI5999 +aI2803 +aI1491 +aI5113 +aI3445 +aI7142 +aI3528 +aI269 +aI2812 +aI2624 +aI6891 +aI3766 +aI3832 +aI1354 +aI7081 +aI5906 +aI1090 +aI7043 +aI1673 +aI6808 +aI5124 +aI2253 +aI5141 +aI7426 +aI6887 +aI2145 +aI3646 +aI5602 +aI5473 +aI6507 +aI5998 +aI5898 +aI672 +aI801 +aI1660 +aI7343 +aI3887 +aI4232 +aI1213 +aI337 +aI3522 +aI7440 +aI422 +aI1412 +aI4861 +aI1304 +aI3852 +aI5821 +aI4180 +aI3788 +aI2264 +aI1795 +aI3267 +aI1470 +aI1156 +aI5877 +aI5534 +aI5731 +aI5146 +aI3358 +aI2671 +aI1191 +aI6009 +aI7302 +aI4295 +aI189 +aI1532 +aI2458 +aI2560 +aI5380 +aI4432 +aI519 +aI2545 +aI7172 +aI3570 +aI2525 +aI2615 +aI6502 +aI6420 +aI5543 +aI4831 +aI464 +aI2455 +aI3286 +aI1465 +aI5178 +aI4101 +aI7160 +aI5242 +aI838 +aI2643 +asS'test_ind' +p59857 +(lp59858 +I1606 +aI6645 +aI4403 +aI6715 +aI2944 +aI2068 +aI7009 +aI5970 +aI6452 +aI5387 +aI4819 +aI3032 +aI175 +aI4459 +aI6867 +aI6354 +aI4539 +aI5704 +aI1627 +aI276 +aI2816 +aI182 +aI4529 +aI4612 +aI1691 +aI3786 +aI6228 +aI6291 +aI7462 +aI5527 +aI1836 +aI6540 +aI5053 +aI4475 +aI2855 +aI7265 +aI6031 +aI1750 +aI6784 +aI1268 +aI1045 +aI5252 +aI5863 +aI4794 +aI2920 +aI1775 +aI6156 +aI3550 +aI321 +aI6049 +aI5591 +aI3791 +aI4795 +aI3397 +aI2988 +aI3240 +aI7010 +aI3011 +aI2546 +aI2757 +aI33 +aI4153 +aI821 +aI7323 +aI1049 +aI2007 +aI1055 +aI6037 +aI3141 +aI1568 +aI5719 +aI1860 +aI322 +aI3253 +aI3380 +aI6121 +aI4309 +aI5947 +aI6449 +aI7316 +aI378 +aI2376 +aI5504 +aI1916 +aI6859 +aI1543 +aI3837 +aI4189 +aI5148 +aI1615 +aI4910 +aI7205 +aI5511 +aI2583 +aI3435 +aI4582 +aI3836 +aI6176 +aI127 +aI1306 +aI712 +aI4848 +aI4543 +aI547 +aI4886 +aI4542 +aI1971 +aI4699 +aI5258 +aI7150 +aI3378 +aI2590 +aI4338 +aI1070 +aI6522 +aI2723 +aI2848 +aI5381 +aI2391 +aI5476 +aI1502 +aI723 +aI2565 +aI5461 +aI783 +aI1068 +aI1307 +aI6528 +aI2002 +aI5144 +aI613 +aI5706 +aI7444 +aI3854 +aI2575 +aI1408 +aI501 +aI197 +aI1672 +aI1430 +aI3426 +aI3411 +aI5261 +aI1446 +aI2950 +aI76 +aI6284 +aI5984 +aI1496 +aI6581 +aI7079 +aI3306 +aI5102 +aI526 +aI6805 +aI2364 +aI3741 +aI5106 +aI347 +aI6142 +aI849 +aI4383 +aI5792 +aI5766 +aI4491 +aI5514 +aI4197 +aI7218 +aI4124 +aI7262 +aI6148 +aI789 +aI5214 +aI5583 +aI1452 +aI395 +aI5110 +aI7113 +aI4268 +aI3204 +aI4750 +aI5116 +aI5535 +aI6435 +aI1934 +aI4345 +aI1184 +aI4394 +aI5988 +aI2570 +aI4780 +aI1785 +aI7096 +aI7195 +aI6688 +aI6356 +aI4832 +aI4652 +aI1678 +aI2328 +aI3958 +aI770 +aI6233 +aI7041 +aI7075 +aI3186 +aI2240 +aI4399 +aI159 +aI1609 +aI6069 +aI498 +aI2301 +aI7307 +aI3149 +aI5703 +aI5271 +aI1586 +aI7392 +aI3985 +aI296 +aI705 +aI2661 +aI6725 +aI4791 +aI6954 +aI5127 +aI6526 +aI4158 +aI7031 +aI4614 +aI7090 +aI3412 +aI5715 +aI6852 +aI2171 +aI4217 +aI3510 +aI5355 +aI843 +aI6999 +aI6010 +aI3503 +aI3844 +aI5795 +aI358 +aI2101 +aI1327 +aI1973 +aI4165 +aI4039 +aI6078 +aI1323 +aI6952 +aI4536 +aI4620 +aI4770 +aI2620 +aI6331 +aI5712 +aI5856 +aI2506 +aI4005 +aI3168 +aI5770 +aI6745 +aI400 +aI4461 +aI4853 +aI292 +aI3304 +aI3573 +aI4488 +aI4233 +aI1116 +aI572 +aI6116 +aI6087 +aI4133 +aI195 +aI6178 +aI991 +aI2211 +aI5571 +aI4147 +aI4438 +aI1460 +aI1661 +aI1734 +aI7448 +aI6563 +aI2466 +aI7245 +aI637 +aI3733 +aI4784 +aI1890 +aI7442 +aI4168 +aI431 +aI5300 +aI1992 +aI3605 +aI3495 +aI6750 +aI610 +aI4721 +aI2997 +aI171 +aI282 +aI4289 +aI5686 +aI2212 +aI42 +aI4385 +aI858 +aI6355 +aI540 +aI3310 +aI3970 +aI2155 +aI1197 +aI6052 +aI5815 +aI5224 +aI7052 +aI3339 +aI3309 +aI2474 +aI5154 +aI4215 +aI4035 +aI7439 +aI1391 +aI951 +aI3465 +aI3102 +aI1717 +aI2078 +aI6003 +aI4709 +aI1998 +aI2906 +aI3400 +aI7209 +aI583 +aI5233 +aI5182 +aI446 +aI3383 +aI7335 +aI2285 +aI5045 +aI325 +aI4669 +aI5502 +aI4732 +aI1494 +aI5197 +aI5895 +aI6965 +aI5169 +aI3517 +aI792 +aI573 +aI5204 +aI6802 +aI1265 +aI2036 +aI50 +aI2481 +aI2418 +aI735 +aI644 +aI4318 +aI3787 +aI5979 +aI7170 +aI1083 +aI3356 +aI4725 +aI1444 +aI5044 +aI847 +aI762 +aI3134 +aI959 +aI5418 +aI1276 +aI1582 +aI1891 +aI4136 +aI5048 +aI6235 +aI2489 +aI5217 +aI725 +aI1611 +aI6485 +aI3680 +aI3732 +aI6223 +aI5275 +aI585 +aI5210 +aI3645 +aI5908 +aI5459 +aI2725 +aI4226 +aI2406 +aI4096 +aI6468 +aI4471 +aI4132 +aI6209 +aI3650 +aI4108 +aI4236 +aI1310 +aI6684 +aI3000 +aI4181 +aI1846 +aI1788 +aI4944 +aI5803 +aI1393 +aI1447 +aI6567 +aI4706 +aI6936 +aI2389 +aI1647 +aI5386 +aI5426 +aI4470 +aI7013 +aI5854 +aI6243 +aI4760 +aI550 +aI2490 +aI181 +aI607 +aI6679 +aI5860 +aI673 +aI2787 +aI5421 +aI5869 +aI2384 +aI4143 +aI3678 +aI6411 +aI1745 +aI5359 +aI6402 +aI3950 +aI634 +aI1796 +aI2843 +aI2516 +aI4885 +aI6740 +aI4204 +aI5829 +aI6303 +aI84 +aI5635 +aI184 +aI5283 +aI3161 +aI5496 +aI2729 +aI659 +aI3930 +aI7176 +aI757 +aI1622 +aI6850 +aI1949 +aI3546 +aI6899 +aI5268 +aI6230 +aI5620 +aI3726 +aI2767 +aI6723 +aI6737 +aI6079 +aI2180 +aI2227 +aI1499 +aI4736 +aI5010 +aI4746 +aI5519 +aI6617 +aI4357 +aI6312 +aI5799 +aI238 +aI732 +aI5130 +aI11 +aI2822 +aI6412 +aI3521 +aI4081 +aI1812 +aI4327 +aI7027 +aI3674 +aI1878 +aI6696 +aI1188 +aI1638 +aI1067 +aI4771 +aI2280 +aI1071 +aI1556 +aI2403 +aI3708 +aI5186 +aI2317 +aI5067 +aI2603 +aI1166 +aI13 +aI6786 +aI7470 +aI6382 +aI5454 +aI6451 +aI883 +aI3792 +aI6681 +aI458 +aI7238 +aI2658 +aI3360 +aI5309 +aI2399 +aI1222 +aI7465 +aI7385 +aI85 +aI32 +aI4553 +aI1940 +aI6046 +aI1397 +aI4731 +aI4914 +aI6352 +aI3707 +aI7116 +aI2584 +aI7019 +aI1912 +aI1613 +aI1549 +aI4868 +aI5341 +aI4151 +aI7334 +aI965 +aI5950 +aI2022 +aI6497 +aI204 +aI681 +aI4521 +aI2851 +aI6396 +aI4362 +aI7376 +aI579 +aI4319 +aI6021 +aI1990 +aI2887 +aI4515 +aI6099 +aI278 +aI4299 +aI1264 +aI1105 +aI552 +aI6268 +aI3774 +aI1477 +aI6886 +aI5143 +aI758 +aI704 +aI4179 +aI6641 +aI3621 +aI5832 +aI4559 +aI7216 +aI1371 +aI3910 +aI7319 +aI747 +aI1874 +aI559 +aI6595 +aI2809 +aI3248 +aI1262 +aI5316 +aI1861 +aI3321 +aI7399 +aI4287 +aI307 +aI6810 +aI4827 +aI1334 +aI6463 +aI7166 +aI7226 +aI364 +aI1909 +aI4526 +aI5160 +aI4743 +aI2110 +aI3345 +aI5462 +aI2559 +aI3593 +aI3065 +aI3811 +aI3876 +aI7374 +aI5191 +aI4449 +aI6296 +aI5308 +aI3867 +aI5075 +aI317 +aI3476 +aI5394 +aI3484 +aI7395 +aI5198 +aI5131 +aI1022 +aI6366 +aI2984 +aI2639 +aI4411 +aI6924 +aI23 +aI5299 +aI3382 +aI1967 +aI6454 +aI6596 +aI7048 +aI3561 +aI5267 +aI5826 +aI5740 +aI4662 +aI1123 +aI6642 +aI3126 +aI2438 +aI7231 +aI3480 +aI6012 +aI7380 +aI3392 +aI2636 +aI5658 +aI6231 +aI919 +aI5834 +aI15 +aI820 +aI3249 +aI240 +aI2154 +aI419 +aI4191 +aI7401 +aI799 +aI4042 +aI2252 +aI6090 +aI6981 +aI1017 +aI3610 +aI1760 +aI7097 +aI4193 +aI7102 +aI3124 +aI6543 +aI1286 +aI784 +aI5630 +aI4787 +aI232 +aI1482 +aI1834 +aI5820 +aI3589 +aI577 +aI2347 +aI6664 +aI5517 +aI6619 +aI6623 +aI3220 +aI1302 +aI6062 +aI5400 +aI6363 +aI1167 +aI4290 +aI3272 +aI6958 +aI4177 +aI4175 +aI6165 +aI2261 +aI1517 +aI2858 +aI6665 +aI4631 +aI1758 +aI7212 +aI4223 +aI2871 +aI3900 +aI2875 +aI6112 +aI6484 +aI7400 +aI7230 +aI734 +aI1338 +aI173 +aI3020 +aI492 +aI1956 +aI3305 +aI3092 +aI4040 +aI3385 +aI4617 +aI7241 +aI1987 +aI7039 +aI1807 +aI4393 +aI2417 +aI5190 +aI64 +aI2837 +aI7022 +aI1988 +aI1257 +aI3284 +aI2164 +aI651 +aI4156 +aI205 +aI4541 +aI2925 +aI20 +aI2286 +aI4091 +aI4983 +aI6196 +aI2249 +aI3271 +aI2039 +aI6211 +aI2845 +aI6558 +aI4082 +aI2144 +aI2722 +aI5001 +aI5520 +aI6574 +aI338 +aI6442 +aI6161 +aI6869 +aI3139 +aI7321 +aI345 +aI6666 +aI3889 +aI2315 +aI6158 +aI248 +aI6592 +aI1364 +aI2133 +aI1644 +aI1997 +aI6327 +aI639 +aI867 +aI5503 +aI3390 +aI6746 +aI2452 +aI1657 +aI7427 +aI1771 +aI4986 +aI4275 +aI3289 +aI515 +aI2174 +aI2659 +aI1078 +aI2550 +aI1471 +aI5733 +aI4235 +aI3490 +aI543 +aI971 +aI2095 +aI4584 +aI1589 +aI1898 +aI1947 +aI1025 +aI1637 +aI6077 +aI6915 +aI6422 +aI6368 +aI3355 +aI2870 +aI6001 +aI563 +aI7114 +aI1633 +aI5157 +aI2435 +aI5194 +aI1057 +aI7153 +aI4941 +aI7187 +aI4713 +aI7224 +aI2597 +aI4528 +aI304 +aI3908 +aI310 +aI2746 +aI1413 +aI459 +aI3894 +aI6057 +aI3712 +aI6164 +aI4638 +aI1223 +aI5450 +aI3029 +aI6410 +aI1151 +aI6829 +aI6777 +aI5664 +aI6707 +aI3506 +aI4898 +aI2177 +aI4632 +aI657 +aI5648 +aI6976 +aI5837 +aI426 +aI4278 +aI4495 +aI5568 +aI5752 +aI629 +aI6654 +aI5572 +aI3097 +aI3815 +aI4745 +aI2041 +aI1488 +aI5818 +aI2940 +aI3862 +aI6320 +aI4527 +aI5554 +aI3429 +aI6388 +aI6961 +aI3888 +aI3785 +aI1983 +aI4726 +aI3987 +aI1943 +aI4602 +aI4664 +aI1674 +aI4597 +aI6941 +aI2379 +aI3389 +aI2913 +aI51 +aI2330 +aI4493 +aI5018 +aI7270 +aI5152 +aI40 +aI6550 +aI5140 +aI6778 +aI562 +aI5310 +aI3049 +aI5937 +aI4076 +aI6469 +aI1640 +aI2044 +aI830 +aI538 +aI3734 +aI1948 +aI489 +aI4135 +aI5577 +aI3416 +aI107 +aI2511 +aI7344 +aI5311 +aI4001 +aI4945 +aI2860 +aI4169 +aI5802 +aI5831 +aI3559 +aI5420 +aI2433 +aI4415 +aI4833 +aI6514 +aI7441 +aI5980 +aI2005 +aI73 +aI6636 +aI1040 +aI4498 +aI6475 +aI4892 +aI4378 +aI3586 +aI1074 +aI5272 +aI2083 +aI3332 +aI2355 +aI6153 +aI6646 +aI4858 +aI48 +aI1530 +aI7192 +aI2060 +aI5343 +aI6226 +aI7143 +aI4070 +aI6085 +aI4591 +aI3258 +aI3902 +aI1027 +aI7301 +aI3268 +aI1486 +aI3446 +aI3523 +aI5711 +aI327 +aI6950 +aI473 +aI4806 +aI2893 +aI4862 +aI2523 +aI4022 +aI1389 +aI1097 +aI415 +aI4573 +aI5346 +aI2362 +aI6731 +aI5614 +aI1126 +aI3108 +aI5025 +aI1314 +aI4401 +aI1042 +aI963 +aI6415 +aI4155 +aI6350 +aI1182 +aI12 +aI1748 +aI939 +aI3353 +aI3576 +aI4325 +aI2071 +aI6340 +aI192 +aI1996 +aI4012 +aI6210 +aI1512 +aI3337 +aI5835 +aI4049 +aI4053 +aI1336 +aI6728 +aI1164 +aI3647 +aI1827 +aI1870 +aI5619 +aI7468 +aI5086 +aI4017 +aI3574 +aI7066 +aI4061 +aI2136 +aI1328 +aI5806 +aI3979 +aI6870 +aI5707 +aI6687 +aI1978 +aI4740 +aI2097 +aI6532 +aI6092 +aI5876 +aI2758 +aI1806 +aI5660 +aI2934 +aI5393 +aI4857 +aI7089 +aI6335 +aI6527 +aI4365 +aI2448 +aI6847 +aI7315 +aI383 +aI2160 +aI4008 +aI3422 +aI3048 +aI2540 +aI1146 +aI2687 +aI2517 +aI2675 +aI5235 +aI3294 +aI5397 +aI7292 +aI7112 +aI5357 +aI3649 +aI7120 +aI803 +aI1368 +aI3895 +aI1117 +aI898 +aI1170 +aI7240 +aI6541 +aI341 +aI7060 +aI4601 +aI4728 +aI1652 +aI6676 +aI2957 +aI6016 +aI2892 +aI3131 +aI2613 +aI7379 +aI6861 +aI804 +aI1538 +aI5698 +aI1290 +aI6201 +aI774 +aI4881 +aI1705 +aI4577 +aI1009 +aI4913 +aI2459 +aI437 +aI4262 +aI3833 +aI331 +aI2185 +aI4613 +aI6689 +aI3982 +aI2113 +aI2131 +aI403 +aI209 +aI7118 +aI7249 +aI4815 +aI3481 +aI3541 +aI997 +aI4417 +aI2960 +aI161 +aI3688 +aI1962 +aI4157 +aI4846 +aI1921 +aI5485 +aI5650 +aI5559 +aI4788 +aI5398 +aI6202 +aI4202 +aI4128 +aI6733 +aI6473 +aI5017 +aI7430 +aI767 +aI2526 +aI4516 +aI6257 +aI2753 +aI2245 +aI3190 +aI3924 +aI2592 +aI6199 +aI2333 +aI2794 +aI4140 +aI1730 +aI4084 +aI504 +aI1669 +aI201 +aI4650 +aI6444 +aI3927 +aI3735 +aI4694 +aI5200 +aI6995 +aI475 +aI6889 +aI4464 +aI3746 +aI689 +aI3427 +aI4889 +aI6557 +aI7425 +aI1175 +aI5830 +aI4418 +aI2813 +aI3462 +aI241 +aI5486 +aI6027 +aI5759 +aI2226 +aI6445 +aI4416 +aI2912 +aI1629 +aI4354 +aI6700 +aI695 +aI3508 +aI794 +aI2697 +aI5413 +aI7107 +aI693 +aI1847 +aI6717 +aI5940 +aI3914 +aI2127 +aI5133 +aI4822 +aI482 +aI5008 +aI1899 +aI5081 +aI1520 +aI4739 +aI1366 +aI6635 +aI4389 +aI1979 +aI3061 +aI5368 +aI1521 +aI5961 +aI566 +aI7366 +aI1591 +aI1573 +aI3739 +aI5231 +aI6873 +aI2373 +aI2199 +aI4094 +aI2953 +aI3532 +aI6818 +aI4102 +aI5024 +aI4595 +aI3338 +aI3679 +aI5225 +aI623 +aI4324 +aI4007 +aI7210 +aI2752 +aI5882 +aI3409 +aI4928 +aI4121 +aI2425 +aI4469 +aI1541 +aI1818 +aI987 +aI7244 +aI5996 +aI3069 +aI571 +aI5507 +aI1712 +aI2879 +aI2632 +aI2304 +aI6039 +aI1522 +aI7243 +aI5440 +aI2334 +aI7163 +aI1077 +aI5872 +aI4027 +aI6682 +aI952 +aI3783 +aI4679 +aI3675 +aI7197 +aI4247 +aI6927 +aI6169 +aI5395 +aI6417 +aI3354 +aI2165 +aI6424 +aI4190 +aI7260 +aI483 +aI3795 +aI5026 +aI3085 +aI7234 +aI6358 +aI1822 +aI1299 +aI886 +aI3171 +aI1050 +aI3254 +aI5290 +aI3755 +aI7092 +aI2416 +aI7154 +aI6144 +aI3401 +aI2198 +aI2736 +aI3482 +aI4919 +aI6045 +aI7046 +aI1851 +aI3498 +aI3555 +aI1091 +aI3996 +aI57 +aI2589 +aI4682 +aI144 +aI1383 +aI750 +aI4762 +aI3229 +aI958 +aI3369 +aI343 +aI5959 +aI6578 +aI2868 +aI324 +aI264 +aI4018 +aI450 +aI1343 +aI6059 +aI3430 +aI6788 +aI6794 +aI6150 +aI5741 +aI4596 +aI3292 +aI5525 +aI6217 +aI1232 +aI1677 +aI5019 +aI878 +aI3662 +aI4146 +aI4813 +aI6285 +aI1889 +aI5468 +aI213 +aI6616 +aI7259 +aI6385 +aI3288 +aI3819 +aI138 +aI5236 +aI2857 +aI5742 +aI4817 +aI1244 +aI1599 +aI286 +aI2432 +aI3227 +aI4843 +aI1481 +aI900 +aI5657 +aI6905 +aI3017 +aI2814 +aI561 +aI1270 +aI3974 +aI29 +aI4748 +aI720 +aI5126 +aI1373 +aI4346 +aI5474 +aI1037 +aI5452 +aI242 +aI1131 +aI4829 +aI6391 +aI4037 +aI3250 +aI4575 +aI2763 +aI2638 +aI5976 +aI4625 +aI967 +aI3903 +aI4993 +aI1280 +aI6189 +aI2409 +aI7133 +aI4973 +aI3652 +aI740 +aI2586 +aI6425 +aI2930 +aI137 +aI5689 +aI4163 +aI3721 +aI5329 +aI2201 +aI5728 +aI4118 +aI4684 +aI5259 +aI3842 +aI1837 +aI3143 +aI6562 +aI5009 +aI206 +aI1708 +aI1879 +aI5971 +aI68 +aI1458 +aI4777 +aI6374 +aI166 +aI335 +aI6552 +aI5702 +aI7140 +aI2404 +aI1789 +aI7369 +aI6188 +aI3245 +aI5422 +aI1516 +aI491 +aI3497 +aI2679 +aI4723 +aI3407 +aI5177 +aI2507 +aI5423 +aI2708 +aI1814 +aI6630 +aI3980 +aI5701 +aI5433 +aI6263 +aI1882 +aI3877 +aI5315 +aI3493 +aI1809 +aI4254 +aI6195 +aI3262 +aI6460 +aI2297 +aI441 +aI3595 +aI4120 +aI4594 +aI6973 +aI1473 +aI6394 +aI565 +aI4348 +aI2691 +aI6862 +aI882 +aI6325 +aI5022 +aI1295 +aI5819 +aI2965 +aI2439 +aI517 +aI6775 +aI3804 +aI6768 +aI7098 +aI6491 +aI2916 +aI5078 +aI4313 +aI5050 +aI3623 +aI6172 +aI1478 +aI2204 +aI1724 +aI6626 +aI5592 +aI1794 +aI5138 +aI3666 +aI5528 +aI3117 +aI5043 +aI1000 +aI3094 +aI1801 +aI1581 +aI4052 +aI384 +aI6180 +aI556 +aI4251 +aI4560 +aI6042 +aI447 +aI4960 +aI580 +aI5665 +aI813 +aI1421 +aI2088 +aI5402 +aI1872 +aI3236 +aI5605 +aI6260 +aI3884 +aI7071 +aI1957 +aI1935 +aI911 +aI4758 +aI3947 +aI5077 +aI7253 +aI773 +aI4985 +aI6511 +aI2929 +aI2883 +aI3076 +aI5055 +aI1590 +aI4660 +aI272 +aI5569 +aI6521 +aI4483 +aI5301 +aI2260 +aI4468 +aI5861 +aI4364 +aI1245 +aI6471 +aI3336 +aI309 +aI753 +aI7007 +aI149 +aI3781 +aI1044 +aI6187 +aI6292 +aI3777 +aI4574 +aI5595 +aI7403 +aI1813 +aI4546 +aI4873 +aI3648 +aI497 +aI2128 +aI1013 +aI6724 +aI2989 +aI5322 +aI3868 +aI2072 +aI4961 +aI3699 +aI1294 +aI2801 +aI984 +aI2765 +aI3121 +aI6264 +aI1467 +aI2669 +aI4123 +aI6959 +aI6944 +aI3772 +aI4452 +aI1741 +aI5922 +aI1019 +aI912 +aI5621 +aI6073 +aI2175 +aI4429 +aI2267 +aI842 +aI6781 +aI2359 +aI3617 +aI353 +aI1655 +aI7351 +aI833 +aI669 +aI2437 +aI4363 +aI3210 +aI6464 +aI5746 +aI376 +aI4655 +aI1252 +aI2797 +aI451 +aI5967 +aI3169 +aI2998 +aI4442 +aI5897 +aI505 +aI2900 +aI6848 +aI3973 +aI3599 +aI4772 +aI3269 +aI3179 +aI6247 +aI3075 +aI2491 +aI929 +aI7051 +aI2999 +aI2959 +aI4060 +aI2775 +aI564 +aI5107 +aI2825 +aI1662 +aI4485 +aI5899 +aI5796 +aI3178 +aI3723 +aI1941 +aI1342 +aI5550 +aI6593 +aI487 +aI4434 +aI3748 +aI4707 +aI5674 +aI6159 +aI9 +aI7201 +aI6101 +aI1031 +aI3042 +aI462 +aI7145 +aI6251 +aI2138 +aI3068 +aI5529 +aI7413 +aI5211 +aI2219 +aI4126 +aI2880 +aI942 +aI616 +aI1825 +aI2618 +aI914 +aI2457 +aI1737 +aI2760 +aI1932 +aI2663 +aI344 +aI2973 +aI1698 +aI5913 +aI5688 +aI1702 +aI4651 +aI5444 +aI6118 +aI2628 +aI1417 +aI315 +aI6419 +aI1395 +aI4186 +aI143 +aI3940 +aI2410 +aI6058 +aI7050 +aI6191 +aI7274 +aI3115 +aI2049 +aI3088 +aI957 +aI4549 +aI6716 +aI4522 +aI266 +aI1079 +aI1510 +aI6093 +aI114 +aI6098 +aI6295 +aI5499 +aI4689 +aI2106 +aI1111 +aI4496 +aI1405 +aI207 +aI4774 +aI2824 +aI2428 +aI3600 +aI5376 +aI3366 +aI5187 +aI170 +aI2103 +aI2779 +aI6033 +aI788 +aI7300 +aI6137 +aI3957 +aI2093 +aI4571 +aI4981 +aI5054 +aI3408 +aI1449 +aI3419 +aI111 +aI5339 +aI2856 +aI6730 +aI4239 +aI3587 +aI5561 +aI2685 +aI188 +aI7387 +aI6500 +aI6324 +aI4712 +aI4194 +aI455 +aI2846 +aI4106 +aI4412 +aI3776 +aI7024 +aI6386 +aI4006 +aI1347 +aI5566 +aI3989 +aI6756 +aI6585 +aI5981 +aI6379 +aI6269 +aI4355 +aI5111 +aI2519 +aI396 +aI2398 +aI2045 +aI5579 +aI6007 +aI5247 +aI4212 +aI3802 +aI2749 +aI5983 +aI7304 +aI703 +aI5478 +aI1868 +aI3091 +aI7122 +aI3058 +aI5292 +aI5295 +aI3872 +aI3351 +aI6919 +aI2656 +aI484 +aI3664 +aI4869 +aI1479 +aI2873 +aI3849 +aI2842 +aI2102 +aI5036 +aI1504 +aI3406 +aI2889 +aI1553 +aI281 +aI5060 +aI3730 +aI221 +aI4104 +aI3668 +aI5334 +aI3761 +aI2167 +aI1840 +aI2283 +aI950 +aI2566 +aI3038 +aI7466 +aI6267 +aI6105 +aI3691 +aI3915 +aI1432 +aI7108 +aI3386 +aI5524 +aI2388 +aI7308 +aI885 +aI31 +aI5482 +aI1824 +aI1823 +aI1229 +aI7058 +aI1938 +aI2468 +aI4875 +aI954 +aI7469 +aI3026 +aI2498 +aI468 +aI3327 +aI6758 +aI3858 +aI5174 +aI1011 +aI921 +aI3291 +aI2382 +aI2092 +aI7443 +aI4932 +aI119 +aI7267 +aI2351 +aI4812 +aI4710 +aI7464 +aI5099 +aI2573 +aI1628 +aI7233 +aI6909 +aI4751 +aI4277 +aI4615 +aI3953 +aI1106 +aI5383 +aI6709 +aI2970 +aI6044 +aI414 +aI5027 +aI4645 +aI3216 +aI7222 +aI4420 +aI6979 +aI7032 +aI5205 +aI6530 +aI6341 +aI7025 +aI2967 +aI920 +aI1014 +aI7084 +aI3326 +aI2279 +aI5273 +aI6525 +aI6506 +aI5228 +aI5575 +aI2275 +aI1423 +aI1272 +aI6855 +aI2769 +aI98 +aI2445 +aI5351 +aI5613 +aI7434 +aI2189 +aI2374 +aI2020 +aI5237 +aI4611 +aI5483 +aI4160 +aI4579 +aI305 +aI3173 +aI2733 +aI4322 +aI1251 +aI5716 +aI7056 +aI500 +aI5265 +aI2766 +aI3558 +aI1831 +aI1198 +aI2325 +aI1285 +aI6742 +aI6933 +aI3614 +aI590 +aI308 +aI6602 +aI2901 +aI819 +aI999 +aI283 +aI857 +aI5625 +aI2772 +aI420 +aI6378 +aI2576 +aI5093 +aI2499 +aI5348 +aI2405 +aI7236 +aI2313 +aI5176 +aI2759 +aI250 +aI822 +aI6360 +aI7169 +aI2423 +aI1776 +aI1095 +aI4567 +aI1225 +aI6714 +aI7221 +aI3191 +aI3562 +aI5115 +aI2922 +aI7438 +aI6529 +aI5936 +aI3170 +aI3758 +aI3963 +aI1199 +aI1260 +aI6433 +aI2505 +aI1648 +aI4466 +aI6467 +aI5243 +aI3853 +aI7454 +aI5904 +aI1830 +aI2556 +aI1454 +aI96 +aI1035 +aI2323 +aI1773 +aI2415 +aI1639 +aI4711 +aI3754 +aI2918 +aI3154 +aI1513 +aI52 +aI5868 +aI6279 +aI3308 +aI4610 +aI1163 +aI6342 +aI142 +aI421 +aI4509 +aI4328 +aI3129 +aI5280 +aI7257 +aI7428 +aI1675 +aI1086 +aI502 +aI2336 +aI4252 +aI6048 +aI4110 +aI7457 +aI5787 +aI5052 +aI2981 +aI132 +aI4360 +aI6317 +aI904 +aI3544 +aI34 +aI5989 +aI1688 +aI5221 +aI1799 +aI5255 +aI3438 +aI2717 +aI5838 +aI4570 +aI4661 +aI5320 +aI7228 +aI4339 +aI3281 +aI5812 +aI2422 +aI5557 +aI6138 +aI297 +aI2121 +aI4654 +aI3024 +aI6047 +aI7132 +aI2748 +aI1039 +aI4198 +aI5634 +aI868 +aI6289 +aI4424 +aI2664 +aI1703 +aI7365 +aI101 +aI6536 +aI5209 +aI4388 +aI3352 +aI6863 +aI6980 +aI2006 +aI3151 +aI2611 +aI6437 +aI2947 +aI1982 +aI6307 +aI781 +aI6925 +aI295 +aI5023 +aI3021 +aI2463 +aI1275 +aI3975 +aI780 +aI222 +aI4916 +aI481 +aI3006 +aI4257 +aI3654 +aI3536 +aI6535 +aI6343 +aI4244 +aI194 +aI6826 +aI6668 +aI2027 +aI1053 +aI1337 +aI2383 +aI6304 +aI7121 +aI2158 +aI6843 +aI682 +aI4230 +aI4957 +aI5560 +aI4377 +aI2011 +aI5692 +aI524 +aI2040 +aI5780 +aI5608 +aI1765 +aI6323 +aI5852 +aI6823 +aI2718 +aI2869 +aI5963 +aI5020 +aI2554 +aI5427 +aI4259 +aI1927 +aI6549 +aI2254 +aI5276 +aI2393 +aI4987 +aI6598 +aI6115 +aI5538 +aI4117 +aI529 +aI2140 +aI215 +aI2890 +aI496 +aI1666 +aI1209 +aI2314 +aI2148 +aI4430 +aI6618 +aI6923 +aI348 +aI4423 +aI688 +aI4095 +aI3230 +aI3632 +aI7296 +aI1107 +aI850 +aI4704 +aI4296 +aI4173 +aI252 +aI5844 +aI6018 +aI601 +aI1206 +aI2657 +aI895 +aI558 +aI1419 +aI6000 +aI6545 +aI3045 +aI7371 +aI546 +aI3613 +aI5158 +aI413 +aI6583 +aI3994 +aI6749 +aI6657 +aI829 +aI6495 +aI7093 +aI4253 +aI3527 +aI3274 +aI6901 +aI113 +aI330 +aI4294 +aI948 +aI5269 +aI4504 +aI3639 +aI100 +aI3132 +aI4558 +aI6472 +aI2292 +aI4900 +aI6266 +aI7061 +aI1738 +aI5435 +aI7077 +aI7396 +aI6962 +aI3628 +aI1958 +aI5775 +aI5037 +aI6607 +aI5700 +aI5822 +aI3500 +aI3421 +aI5063 +aI38 +aI5911 +aI5405 +aI6868 +aI6864 +aI115 +aI7223 +aI4245 +aI5685 +aI6648 +aI3405 +aI2577 +aI4642 +aI95 +aI807 +aI4874 +aI2956 +aI3001 +aI6119 +aI1332 +aI6627 +aI5365 +aI3949 +aI3334 +aI4370 +aI3280 +aI5880 +aI6111 +aI678 +aI54 +aI3128 +aI7405 +aI5505 +aI1781 +aI5509 +aI2126 +aI2378 +aI3725 +aI2501 +aI1953 +aI1950 +aI6136 +aI3757 +aI2543 +aI3838 +aI6841 +aI806 +aI3951 +aI392 +aI5737 +aI1084 +aI4131 +aI877 +aI5457 +aI4729 +aI6935 +aI4618 +aI1559 +aI99 +aI1130 +aI1324 +aI1409 +aI4064 +aI5739 +aI2069 +aI4280 +aI805 +aI3873 +aI3372 +aI178 +aI4544 +aI1096 +aI1650 +aI1415 +aI1885 +aI7038 +aI92 +aI186 +aI1931 +aI5030 +aI5287 +aI1212 +aI2923 +aI6650 +aI323 +aI6125 +aI4203 +aI7384 +aI122 +aI2578 +aI3530 +aI4306 +aI5644 +aI470 +aI6844 +aI5338 +aI1144 +aI4953 +aI6609 +aI3583 +aI1214 +aI5714 +aI2569 +aI4624 +aI4933 +aI6533 +aI3031 +aI5091 +aI5403 +aI2666 +aI6089 +aI949 +aI499 +aI4376 +aI116 +aI3524 +aI1711 +aI6015 +aI2281 +aI260 +aI1428 +aI2504 +aI3197 +aI6603 +aI6827 +aI130 +aI3164 +aI223 +aI1193 +aI567 +aI4028 +aI4195 +aI6375 +aI4119 +aI6569 +aI1710 +aI4353 +aI4492 +aI1246 +aI4876 +aI5500 +aI2804 +aI2788 +aI6955 +aI4069 +aI1218 +aI2311 +aI1308 +aI4063 +aI2064 +aI5910 +aI83 +aI7263 +aI1584 +aI7156 +aI598 +aI6455 +aI3448 +aI7198 +aI1015 +aI4506 +aI4547 +aI5232 +aI2773 +aI6476 +aI131 +aI3417 +aI3460 +aI6286 +aI287 +aI4561 +aI4062 +aI3677 +aI4667 +aI3192 +aI4811 +aI2122 +aI4623 +aI5749 +aI4097 +aI4090 +aI2129 +aI592 +aI5890 +aI1061 +aI5166 +aI1531 +aI6423 +aI3898 +aI294 +aI7158 +aI7016 +aI6076 +aI836 +aI5944 +aI349 +aI2223 +aI1680 +aI4781 +aI219 +aI5460 +aI1855 +aI3057 +aI4977 +aI37 +aI2711 +aI5948 +aI438 +aI1139 +aI6308 +aI485 +aI4473 +aI2176 +aI2038 +aI2147 +aI3922 +aI4996 +aI5330 +aI2963 +aI21 +aI2299 +aI7207 +aI6436 +aI4702 +aI5555 +aI5366 +aI4798 +aI686 +aI1537 +aI7047 +aI7103 +aI471 +aI6851 +aI4893 +aI4312 +aI1075 +aI6553 +aI4187 +aI7190 +aI6663 +aI5785 +aI3459 +aI3779 +aI2390 +aI1292 +aI4381 +aI6693 +aI6624 +aI1722 +aI3147 +aI6294 +aI3341 +aI1951 +aI2143 +aI7294 +aI4878 +aI3473 +aI7276 +aI4922 +aI6024 +aI5034 +aI1598 +aI6466 +aI2720 +aI1563 +aI4484 +aI2181 +aI4447 +aI4824 +aI4335 +aI5335 +aI2783 +aI1540 +aI4765 +aI6811 +aI2600 +aI7217 +aI4231 +aI3153 +aI4489 +aI4033 +aI2087 +aI2016 +aI3455 +aI3365 +aI1152 +aI4566 +aI5286 +aI6762 +aI1291 +aI2776 +aI6102 +aI3053 +aI1933 +aI6910 +aI3796 +aI2676 +aI3991 +aI5656 +aI1121 +aI3738 +aI6218 +aI5323 +aI6166 +aI594 +aI2289 +aI7272 +aI3709 +aI2184 +aI3569 +aI69 +aI6227 +aI1617 +aI1459 +aI7367 +aI5946 +aI1939 +aI3936 +aI6831 +aI4369 +aI5755 +aI6182 +aI5776 +aI3007 +aI696 +aI3070 +aI7305 +aI3205 +aI6815 +aI3631 +aI6487 +aI2745 +aI5833 +aI7326 +aI812 +aI1207 +aI973 +aI5238 +aI3817 +aI2730 +aI1026 +aI7422 +aI4757 +aI4460 +aI3008 +aI1923 +aI752 +aI2876 +aI5825 +aI2191 +aI3805 +aI284 +aI4031 +aI6754 +aI2692 +aI7394 +aI5972 +aI152 +aI1181 +aI4705 +aI6505 +aI3870 +aI5655 +aI2291 +aI6921 +aI1475 +aI4964 +aI1597 +aI7125 +aI3585 +aI897 +aI4883 +aI7040 +aI1360 +aI6672 +aI4673 +aI27 +aI4826 +aI6597 +aI5962 +aI6032 +aI4200 +aI5216 +aI1991 +aI4264 +aI5654 +aI1196 +aI6160 +aI6207 +aI7479 +aI4077 +aI5472 +aI1873 +aI6722 +aI5350 +aI3960 +aI3841 +aI970 +aI7264 +aI1192 +aI6095 +aI976 +aI6538 +aI3799 +aI3243 +aI1721 +aI4605 +aI1767 +aI4810 +aI1069 +aI3491 +aI5195 +aI1574 +aI1636 +aI5219 +aI1127 +aI7414 +aI3208 +aI979 +aI3504 +aI3637 +aI312 +aI3619 +aI7475 +aI6036 +aI655 +aI595 +aI2872 +aI798 +aI6510 +aI3177 +aI2271 +aI1515 +aI5924 +aI4882 +aI3871 +aI652 +aI1602 +aI2061 +aI1398 +aI1866 +aI5175 +aI1952 +aI1312 +aI6019 +aI109 +aI7045 +aI3625 +aI1101 +aI2188 +aI5059 +aI3166 +aI4747 +aI3156 +aI4408 +aI2443 +aI7246 +aI2761 +aI6152 +aI4840 +aI3364 +aI7099 +aI3928 +aI6387 +aI606 +aI6149 +aI3172 +aI5827 +aI1601 +aI3577 +aI6060 +aI1919 +aI6913 +aI1466 +aI4343 +aI7138 +aI2420 +aI1 +aI7435 +aI1141 +aI1437 +aI2605 +aI4894 +aI541 +aI3673 +aI6414 +aI5540 +aI2303 +aI4583 +aI1194 +aI4176 +aI5805 +aI3608 +aI4687 +aI1642 +aI2850 +aI6072 +aI5332 +aI5363 +aI748 +aI6902 +aI1104 +aI1787 +aI4589 +aI5147 +aI835 +aI5094 +aI6353 +aI2257 +aI2952 +aI4279 +aI6496 +aI3744 +aI2231 +aI5627 +aI6674 +aI7429 +aI1051 +aI3728 +aI4855 +aI614 +aI5016 +aI4695 +aI5436 +aI3703 +aI2018 +aI5975 +aI6055 +aI1896 +aI7417 +aI793 +aI2224 +aI982 +aI602 +aI1211 +aI1946 +aI7362 +aI6040 +aI2104 +aI6767 +aI7406 +aI4409 +aI5369 +aI4856 +aI6966 +aI5696 +aI1707 +aI5230 +aI167 +aI5632 +aI5607 +aI6344 +aI1928 +aI4734 +aI4849 +aI5531 +aI7200 +aI5849 +aI4216 +aI5325 +aI389 +aI5128 +aI5810 +aI6628 +aI6254 +aI1439 +aI6691 +aI6100 +aI2835 +aI3981 +aI7167 +aI1503 +aI5326 +aI6770 +aI1183 +aI2157 +aI2885 +aI3340 +aI5730 +aI4552 +aI4458 +aI4724 +aI5916 +aI3316 +aI578 +aI6066 +aI6277 +aI3278 +aI2258 +aI7336 +aI6258 +aI2558 +aI3554 +aI1443 +aI2086 +aI3667 +aI5279 +aI4166 +aI738 +aI5180 +aI1431 +aI694 +aI6345 +aI4145 +aI4807 +aI530 +aI1093 +aI4270 +aI3263 +aI7239 +aI2319 +aI2273 +aI6515 +aI3195 +aI2074 +aI6625 +aI4467 +aI1282 +aI6512 +aI1548 +aI3964 +aI7204 +aI371 +aI239 +aI1253 +aI7460 +aI4906 +aI4921 +aI6633 +aI6236 +aI2974 +aI3659 +aI518 +aI4167 +aI3505 +aI4691 +aI3214 +aI1733 +aI4125 +aI5051 +aI1612 +aI4332 +aI7391 +aI6050 +aI4851 +aI2142 +aI7247 +aI1593 +aI1052 +aI5977 +aI6124 +aI873 +aI3718 +aI1120 +aI5809 +aI6559 +aI7069 +aI3080 +aI1989 +aI4182 +aI1190 +aI608 +aI4016 +aI3946 +aI4046 +aI4221 +aI6185 +aI5909 +aI1914 +aI6599 +aI3899 +aI2735 +aI1583 +aI5391 +aI179 +aI604 +aI5270 +aI393 +aI2265 +aI889 +aI2076 +aI6361 +aI2690 +aI365 +aI2255 +aI3938 +aI5364 +aI2395 +aI936 +aI4576 +aI3251 +aI3880 +aI2200 +aI3565 +aI5484 +aI6984 +aI5256 +aI4269 +aI6128 +aI1959 +aI1619 +aI5493 +aI848 +aI2863 +aI615 +aI1320 +aI6413 +aI4113 +aI1089 +aI5342 +aI3107 +aI618 +aI6632 +aI4036 +aI1969 +aI2118 +aI7450 +aI3478 +aI2054 +aI5642 +aI7062 +aI4514 +aI5798 +aI2023 +aI3081 +aI2508 +aI666 +aI2380 +aI7268 +aI3519 +aI4741 +aI881 +aI6588 +aI1618 +aI2741 +aI2302 +aI5845 +aI3847 +aI5058 +aI1963 +aI2003 +aI2108 +aI3687 +aI1547 +aI824 +aI6612 +aI1900 +aI7458 +aI3512 +aI7338 +aI1480 +aI6856 +aI3232 +aI5884 +aI7202 +aI4637 +aI4248 +aI2820 +aI1817 +aI7271 +aI3114 +aI5841 +aI1539 +aI3598 +aI1514 +aI4111 +aI1567 +aI880 +aI363 +aI6703 +aI417 +aI2644 +aI3320 +aI5930 +aI4701 +aI7194 +aI818 +aI3483 +aI2513 +aI3399 +aI6986 +aI2968 +aI5035 +aI6673 +aI3331 +aI6054 +aI1396 +aI6297 +aI5257 +aI2601 +aI841 +aI7330 +aI1382 +aI1587 +aI6591 +aI2495 +aI5667 +aI2995 +aI5570 +aI2014 +aI2430 +aI2195 +aI6063 +aI3932 +aI4672 +aI5935 +aI6996 +aI679 +aI5624 +aI3710 +aI6232 +aI3477 +aI5465 +aI2130 +aI6287 +aI6459 +aI7342 +aI1462 +aI4320 +aI7402 +aI472 +aI2222 +aI3751 +aI6314 +aI6812 +aI2081 +aI2216 +aI2895 +aI1469 +aI90 +aI2214 +aI5479 +aI2205 +aI3162 +aI2595 +aI1845 +aI6086 +aI3033 +aI4015 +aI3683 +aI2795 +aI3954 +aI3525 +aI6806 +aI7446 +aI4918 +aI576 +aI1195 +aI7328 +aI1784 +aI2085 +aI597 +aI3096 +aI6678 +aI4021 +aI5321 +aI5723 +aI1226 +aI75 +aI1239 +aI7354 +aI5189 +aI7237 +aI5097 +aI5521 +aI3276 +aI5636 +aI6179 +aI2287 +aI5375 +aI6735 +aI203 +aI4644 +aI1507 +aI5246 +aI2847 +aI1298 +aI4472 +aI1881 +aI5699 +aI1147 +aI1810 +aI1490 +aI1859 +aI5515 +aI6005 +aI145 +aI992 +aI2105 +aI4030 +aI6457 +aI6738 +aI961 +aI1805 +aI1605 +aI1474 +aI198 +aI2055 +aI4321 +aI777 +aI631 +aI3394 +aI1204 +aI1819 +aI5494 +aI5344 +aI7185 +aI74 +aI5449 +aI5207 +aI2562 +aI3279 +aI7386 +aI289 +aI4550 +aI933 +aI3062 +aI1786 +aI4603 +aI6957 +aI4697 +aI3807 +aI2641 +aI474 +aI1646 +aI7478 +aI3036 +aI2077 +aI3690 +aI6381 +aI5563 +aI5532 +aI4390 +aI369 +aI4896 +aI7415 +aI3771 +aI136 +aI6321 +aI2228 +aI2079 +aI6690 +aI928 +aI4220 +aI4356 +aI2109 +aI5982 +aI2874 +aI2537 +aI2082 +aI1683 +aI6348 +aI1339 +aI6858 +aI3317 +aI3736 +aI874 +aI1651 +aI4979 +aI128 +aI1509 +aI6708 +aI3003 +aI3451 +aI1905 +aI4347 +aI4814 +aI3440 +aI2635 +aI4949 +aI2695 +aI193 +aI628 +aI1157 +aI1908 +aI3257 +aI350 +aI6043 +aI2486 +aI7329 +aI5431 +aI4222 +aI7035 +aI1143 +aI5215 +aI6322 +aI998 +aI2278 +aI2057 +aI642 +aI7364 +aI6453 +aI3319 +aI6030 +aI7086 +aI6222 +aI4255 +aI4551 +aI3110 +aI5057 +aI5905 +aI4456 +aI490 +aI1463 +aI2907 +aI2927 +aI4494 +aI1729 +aI2937 +aI5942 +aI5562 +aI5337 +aI1888 +aI1726 +aI2826 +aI3501 +aI3845 +aI6846 +aI2250 +aI2208 +aI1713 +aI2670 +aI3295 +aI1076 +aI1060 +aI1519 +aI4587 +aI1178 +aI5361 +aI2028 +aI727 +aI3993 +aI6660 +aI4260 +aI603 +aI4505 +aI4510 +aI742 +aI586 +aI7076 +aI3681 +aI1892 +aI2193 +aI6783 +aI5900 +aI3301 +aI1966 +aI3622 +aI4395 +aI4266 +aI2444 +aI7455 +aI1331 +aI2248 +aI3489 +aI7381 +aI1455 +aI733 +aI2295 +aI3282 +aI155 +aI424 +aI6406 +aI1828 +aI3548 +aI6013 +aI1358 +aI2146 +aI302 +aI231 +aI7042 +aI124 +aI884 +aI891 +aI2047 +aI6579 +aI2646 +aI6503 +aI1335 +aI4793 +aI3255 +aI5666 +aI4580 +aI2259 +aI4477 +aI5552 +aI927 +aI1689 +aI1588 +aI5367 +aI3885 +aI67 +aI5633 +aI1718 +aI91 +aI6739 +aI7021 +aI1671 +aI2134 +aI5599 +aI6601 +aI3801 +aI6600 +aI3722 +aI6479 +aI1981 +aI4274 +aI5409 +aI2716 +aI656 +aI1918 +aI5162 +aI4676 +aI4688 +aI1016 +aI3729 +aI6820 +aI1608 +aI5870 +aI6494 +aI6920 +aI6555 +aI3137 +aI16 +aI4783 +aI3256 +aI1058 +aI2647 +aI5388 +aI2053 +aI2094 +aI4629 +aI2587 +aI6948 +aI917 +aI3713 +aI2654 +aI6407 +aI4708 +aI7078 +aI907 +aI2700 +aI3986 +aI7175 +aI5 +aI2026 +aI6248 +aI2832 +aI7337 +aI7177 +aI2251 +aI6769 +aI4988 +aI3140 +aI4674 +aI4150 +aI3537 +aI5095 +aI1936 +aI1757 +aI2182 +aI6108 +aI7054 +aI3584 +aI3148 +aI1871 +aI2719 +aI3264 +aI7432 +aI6074 +aI2462 +aI2838 +aI4398 +aI4340 +aI2514 +aI6903 +aI340 +aI853 +aI6299 +aI5096 +aI6129 +aI3882 +aI2162 +aI2755 +aI3944 +aI1215 +aI3780 +aI4023 +aI216 +aI5134 +aI560 +aI2385 +aI1384 +aI7148 +aI2547 +aI3116 +aI5862 +aI2331 +aI2823 +aI6702 +aI6659 +aI509 +aI5429 +aI4766 +aI6499 +aI3064 +aI5302 +aI555 +aI3955 +aI5679 +aI5119 +aI4628 +aI5675 +aI977 +aI826 +aI5670 +aI2099 +aI6143 +aI516 +aI7398 +aI255 +aI3347 +aI553 +aI6104 +aI172 +aI6753 +aI5021 +aI3752 +aI893 +aI1679 +aI6576 +aI828 +aI2899 +aI4907 +aI7349 +aI5164 +aI1780 +aI4329 +aI3486 +aI5068 +aI6998 +aI2897 +aI3375 +aI4371 +aI5159 +aI2502 +aI1297 +aI3893 +aI771 +aI2414 +aI6908 +aI2487 +aI3159 +aI3701 +aI5298 +aI2125 +aI394 +aI5647 +aI4592 +aI3696 +aI5294 +aI4019 +aI6215 +aI4940 +aI2327 +aI5934 +aI5615 +aI6213 +aI993 +aI2810 +aI3125 +aI1798 +aI190 +aI4838 +aI6261 +aI1975 +aI3234 +aI139 +aI1489 +aI5556 +aI6168 +aI4880 +aI5867 +aI5751 +aI1461 +aI6608 +aI2119 +aI5066 +aI3768 +aI1911 +aI3431 +aI2915 +aI117 +aI22 +aI2117 +aI600 +aI2582 +aI4225 +aI3657 +aI5040 +aI6945 +aI7159 +aI5389 +aI7269 +aI5578 +aI5289 +aI2296 +aI5108 +aI721 +aI4142 +aI4010 +aI3436 +aI1142 +aI3428 +aI5150 +aI7289 +aI2985 +aI809 +aI3879 +aI1346 +aI5360 +aI1704 +aI1365 +aI2896 +aI7208 +aI2194 +aI5734 +aI5248 +aI2689 +aI5743 +aI2798 +aI199 +aI6922 +aI2218 +aI4821 +aI7178 +aI7087 +aI7152 +aI4344 +aI3533 +aI1695 +aI1965 +aI4531 +aI17 +aI3907 +aI449 +aI7375 +aI1410 +aI5817 +aI2377 +aI5250 +aI2196 +aI6692 +aI890 +aI557 +aI261 +aI1739 +aI7139 +aI2993 +aI151 +aI5390 +aI3363 +aI4425 +aI4271 +aI5516 +aI4297 +aI5518 +aI3821 +aI6275 +aI6721 +aI1877 +aI5041 +aI7008 +aI4909 +aI5098 +aI3760 +aI4533 +aI7248 +aI1656 +aI7452 +aI746 +aI1237 +aI3921 +aI5090 +aI5757 +aI4405 +aI2742 +aI4462 +aI7355 +aI1880 +aI5523 +aI6446 +aI1832 +aI126 +aI6334 +aI5336 +aI5171 +aI7463 +aI3464 +aI1842 +aI3830 +aI1635 +aI6401 +aI1168 +aI3193 +aI2808 +aI5071 +aI5584 +aI643 +aI4229 +aI4497 +aI6028 +aI7151 +aI4847 +aI1684 +aI5590 +aI626 +aI3931 +aI7073 +aI4099 +aI7015 +aI722 +aI4703 +aI271 +aI3764 +aI6440 +aI3828 +aI4572 +aI1779 +aI4440 +aI7261 +aI5718 +aI6146 +aI1020 +aI452 +aI5601 +aI6561 +aI3590 +aI7155 +aI6787 +aI1497 +aI6789 +aI2371 +aI985 +aI2473 +aI2033 +aI2282 +aI4997 +aI4201 +aI5172 +aI3564 +aI3384 +aI4668 +aI4051 +aI744 +aI2928 +aI7437 +aI5471 +aI1564 +aI316 +aI3211 +aI4635 +aI3737 +aI4164 +aI56 +aI3560 +aI5109 +aI3843 +aI5690 +aI19 +aI4692 +aI864 +aI6798 +aI7350 +aI1374 +aI2321 +aI2159 +aI5031 +aI4830 +aI4820 +aI7341 +aI6486 +aI7168 +aI7250 +aI2799 +aI3926 +aI3925 +aI1595 +aI43 +aI7258 +aI2343 +aI4690 +aI3749 +aI5753 +aI1557 +aI71 +aI1725 +aI6772 +aI6157 +aI3189 +aI1416 +aI1560 +aI2532 +aI5995 +aI3313 +aI4482 +aI4565 +aI4372 +aI759 +aI2623 +aI3616 +aI3601 +aI4998 +aI1849 +aI5907 +aI6319 +aI5677 +aI105 +aI5597 +aI5307 +aI1088 +aI4441 +aI4067 +aI2243 +aI2677 +aI823 +aI391 +aI5371 +aI7119 +aI6651 +aI5416 +aI6711 +aI3018 +aI5889 +aI4980 +aI5274 +aI2512 +aI6246 +aI25 +aI6130 +aI4000 +aI3762 +aI336 +aI5170 +aI5726 +aI3891 +aI7083 +aI4380 +aI2782 +aI4075 +aI7449 +aI5121 +aI1254 +aI4500 +aI3984 +aI1233 +aI5406 +aI1954 +aI1399 +aI6874 +aI7180 +aI5439 +aI3098 +aI432 +aI3827 +aI6771 +aI183 +aI2750 +aI815 +aI4404 +aI1701 +aI6914 +aI6051 +aI53 +aI1149 +aI1351 +aI5811 +aI2715 +aI4823 +aI7203 +aI1576 +aI5206 +aI6376 +aI713 +aI3529 +aI887 +aI1867 +aI1790 +aI1843 +aI791 +aI5588 +aI1476 +aI6904 +aI2329 +aI2994 +aI4249 +aI4768 +aI1129 +aI4436 +aI7006 +aI3398 +aI2680 +aI3349 +aI5551 +aI436 +aI2345 +aI1850 +aI2830 +aI6649 +aI4387 +aI6061 +aI7416 +aI4243 +aI2400 +aI6214 +aI7461 +aI2229 +aI6278 +aI910 +aI5611 +aI2617 +aI6006 +aI3135 +aI570 +aI7002 +aI622 +aI1004 +aI3213 +aI1145 +aI1269 +aI6671 +aI5896 +aI4999 +aI6029 +aI1381 +aI699 +aI834 +aI106 +aI3103 +aI7165 +aI996 +aI6141 +aI2482 +aI246 +aI4738 +aI1442 +aI2051 +aI6720 +aI1033 +aI1248 +aI3202 +aI6647 +aI4634 +aI311 +aI4273 +aI2050 +aI1153 +aI5888 +aI7472 +aI6509 +aI6801 +aI3615 +aI386 +aI6572 +aI202 +aI479 +aI5864 +aI3468 +aI1266 +aI6982 +aI3475 +aI3778 +aI2983 +aI5604 +aI2791 +aI3238 +aI2996 +aI1235 +aI3514 +aI909 +aI5033 +aI2607 +aI5492 +aI5317 +aI4384 +aI5943 +aI7303 +aI7242 +aI2786 +aI4219 +aI6531 +aI662 +aI2529 +aI1743 +aI3653 +aI7171 +aI2090 +aI4374 +aI6428 +aI4756 +aI44 +aI5969 +aI1816 +aI986 +aI3597 +aI4116 +aI1803 +aI401 +aI7067 +aI2962 +aI1524 +aI1523 +aI6604 +aI6450 +aI4308 +aI905 +aI3039 +aI3826 +aI1714 +aI360 +aI265 +aI7059 +aI755 +aI5488 +aI3224 +aI3698 +aI7179 +aI1154 +aI5487 +aI875 +aI1624 +aI263 +aI6403 +aI1826 +aI5530 +aI3101 +aI6940 +aI7214 +aI5564 +aI4285 +aI7411 +aI5073 +aI5807 +aI5012 +aI5223 +aI2098 +aI3458 +aI6697 +aI7144 +aI2784 +aI620 +aI158 +aI2531 +aI4970 +aI5029 +aI3413 +aI1113 +aI3437 +aI5886 +aI6017 +aI1910 +aI2401 +aI3848 +aI1325 +aI418 +aI3119 +aI2660 +aI5545 +aI790 +aI4834 +aI2116 +aI36 +aI2338 +aI5694 +aI7471 +aI5676 +aI3118 +aI6967 +aI454 +aI3063 +aI2633 +aI1220 +aI118 +aI5117 +aI154 +aI5082 +aI4396 +aI2541 +aI840 +aI2115 +aI3157 +aI3122 +aI2964 +aI3368 +aI2407 +aI3027 +aI3511 +aI4331 +aI1287 +aI6316 +aI3044 +aI6605 +aI4842 +aI6259 +aI288 +aI466 +aI894 +aI6883 +aI1575 +aI4188 +aI448 +aI7080 +aI7017 +aI5414 +aI4899 +aI1468 +aI4930 +aI3997 +aI1697 +aI1580 +aI535 +aI3588 +aI4088 +aI6065 +aI1411 +aI1034 +aI7312 +aI3829 +aI6456 +aI2308 +aI6096 +aI3531 +aI4888 +aI1267 +aI2153 +aI6488 +aI3439 +aI5582 +aI4055 +aI5965 +aI7279 +aI554 +aI1171 +aI3217 +aI1676 +aI6262 +aI385 +aI2738 +aI3325 +aI1897 +aI3105 +aI6727 +aI2173 +aI7310 +aI5114 +aI7477 +aI6560 +aI3015 +aI3093 +aI3937 +aI6658 +aI1001 +aI856 +aI5758 +aI3633 +aI1118 +aI5761 +aI6315 +aI5865 +aI6822 +aI2461 +aI3670 +aI262 +aI7057 +aI1665 +aI4206 +aI532 +aI866 +aI2935 +aI7130 +aI4134 +aI7357 +aI3520 +aI5804 +aI2942 +aI3509 +aI6896 +aI1098 +aI3636 +aI72 +aI2650 +aI4109 +aI407 +aI2710 +aI5065 +aI5606 +aI7456 +aI5345 +aI1854 +aI3547 +aI2239 +aI1566 +aI7389 +aI153 +aI3866 +aI1376 +aI859 +aI5846 +aI568 +aI6421 +aI78 +aI5137 +aI6219 +aI587 +aI6773 +aI408 +aI6670 +aI4992 +aI5903 +aI2602 +aI5537 +aI1305 +aI1224 +aI2203 +aI536 +aI6761 +aI3009 +aI169 +aI1241 +aI1263 +aI1687 +aI1838 +aI351 +aI1529 +aI2704 +aI7284 +aI5978 +aI3794 +aI7094 +aI2634 +aI5430 +aI4649 +aI2834 +aI4693 +aI947 +aI3542 +aI6139 +aI1561 +aI581 +aI6669 +aI3831 +aI2232 +aI5669 +aI3916 +aI397 +aI2476 +aI5709 +aI6184 +aI7184 +aI1321 +aI5836 +aI6853 +aI5192 +aI2350 +aI7219 +aI2849 +aI2493 +aI918 +aI4622 +aI4066 +aI5481 +aI1862 +aI2917 +aI2979 +aI3594 +aI6875 +aI4805 +aI4208 +aI1456 +aI381 +aI6726 +aI2790 +aI1663 +aI6792 +aI901 +aI4867 +aI5653 +aI4534 +aI6349 +aI5501 +aI636 +aI3247 +aI5007 +aI6409 +aI4333 +aI4799 +aI1159 +aI1114 +aI6192 +aI5997 +aI4520 +aI4241 +aI2137 +aI2500 +aI275 +aI650 +aI3814 +aI4410 +aI273 +aI3443 +aI6885 +aI3535 +aI4859 +aI3797 +aI593 +aI5873 +aI314 +aI1387 +aI6960 +aI7173 +aI575 +aI5645 +aI1857 +aI5609 +aI4224 +aI3704 +aI1858 +aI1829 +aI6969 +aI876 +aI6719 +aI2976 +aI1128 +aI356 +aI135 +aI1944 +aI1236 +aI4782 +aI3809 +aI6371 +aI4947 +aI1216 +aI2882 +aI4863 +aI1917 +aI2688 +aI635 +aI3112 +aI4852 +aI7254 +aI1720 +aI5955 +aI980 +aI2941 +aI1293 +aI3686 +aI5567 +aI6586 +aI3393 +aI5736 +aI741 +aI945 +aI4818 +aI3684 +aI5793 +aI5244 +aI3513 +aI3086 +aI5285 +aI5548 +aI1063 +aI924 +aI6577 +aI46 +aI2622 +aI2905 +aI279 +aI5218 +aI4185 +aI2859 +aI599 +aI714 +aI1501 +aI2426 +aI5616 +aI2878 +aI7026 +aI811 +aI2958 +aI2553 +aI7123 +aI2904 +aI4943 +aI3104 +aI5352 +aI3978 +aI3798 +aI6926 +aI1054 +aI2332 +aI3474 +aI6876 +aI6520 +aI4647 +aI3259 +aI2975 +aI300 +aI234 +aI1333 +aI5347 +aI1180 +aI7322 +aI7286 +aI1709 +aI3012 +aI6939 +aI6763 +aI2524 +aI3813 +aI4087 +aI3689 +aI4314 +aI2705 +aI3318 +aI1603 +aI200 +aI7232 +aI6571 +aI7288 +aI6695 +aI7280 +aI2197 +aI4085 +aI3322 +aI2169 +aI5412 +aI6814 +aI2381 +aI1185 +aI683 +aI1356 +aI4086 +aI1769 +aI6439 +aI7325 +aI2075 +aI6622 +aI6916 +aI125 +aI1544 +aI6365 +aI1404 +aI467 +aI3874 +aI4877 +aI2888 +aI6431 +aI2009 +aI1007 +aI4045 +aI4501 +aI6398 +aI6734 +aI89 +aI869 +aI1255 +aI5480 +aI4130 +aI1243 +aI2471 +aI6589 +aI4975 +aI2921 +aI3941 +aI157 +aI1008 +aI6755 +aI1994 +aI6225 +aI5165 +aI2424 +aI6680 +aI3943 +aI1369 +aI1945 +aI1869 +aI1301 +aI7014 +aI5708 +aI4744 +aI2563 +aI4989 +aI4976 +aI2192 +aI1258 +aI1600 +aI1986 +aI2152 +aI2768 +aI769 +aI6301 +aI6200 +aI5103 +aI214 +aI2762 +aI4073 +aI5842 +aI5747 +aI5966 +aI4284 +aI3552 +aI863 +aI7306 +aI6517 +aI4237 +aI5786 +aI1012 +aI5264 +aI3909 +aI5939 +aI2170 +aI6197 +aI7028 +aI6 +aI6298 +aI2472 +aI2619 +aI2931 +aI6993 +aI3956 +aI4334 +aI7206 +aI3607 +aI2037 +aI2926 +aI1811 +aI3983 +aI6244 +aI4171 +aI6975 +aI6634 +aI28 +aI6614 +aI6551 +aI298 +aI2829 +aI4305 +aI1551 +aI5002 +aI3488 +aI5089 +aI5153 +aI5760 +aI429 +aI2421 +aI1363 +aI5188 +aI1884 +aI268 +aI7327 +aI3912 +aI2290 +aI4525 +aI6389 +aI469 +aI6513 +aI5455 +aI1592 +aI185 +aI537 +aI1815 +aI6206 +aI1723 +aI4301 +aI6652 +aI1378 +aI5092 +aI6983 +aI6971 +aI3881 +aI4276 +aI1435 +aI3087 +aI5986 +aI4737 +aI7182 +aI5923 +aI1109 +aI433 +aI832 +aI2326 +aI224 +aI5778 +aI1036 +aI1429 +aI3626 +aI4043 +aI7313 +aI810 +aI3307 +aI4934 +aI718 +aI2631 +aI3176 +aI3470 +aI6008 +aI328 +aI4630 +aI5901 +aI2579 +aI4715 +aI1073 +aI5451 +aI3160 +aI1457 +aI3518 +aI5954 +aI7359 +aI39 +aI776 +aI6839 +aI697 +aI4079 +aI2318 +aI6492 +aI6890 +aI2946 +aI2815 +aI983 +aI3201 +aI1110 +aI1791 +aI6972 +aI1023 +aI6302 +aI7018 +aI6879 +aI4210 +aI6878 +aI7229 +aI6336 +aI3883 +aI1326 +aI6675 +aI5313 +aI5432 +aI6239 +aI5952 +aI6640 +aI743 +aI4435 +aI1125 +aI6337 +aI4078 +aI6252 +aI5618 +aI2612 +aI4072 +aI6282 +aI4902 +aI3212 +aI5129 +aI2886 +aI2852 +aI6383 +aI2877 +aI1808 +aI3784 +aI3551 +aI1119 +aI619 +aI4426 +aI4406 +aI3019 +aI6380 +aI3403 +aI1484 +aI3929 +aI2277 +aI2015 +aI3917 +aI2247 +aI62 +aI2596 +aI3078 +aI4903 +aI2593 +aI510 +aI4092 +aI3090 +aI3892 +aI2366 +aI4479 +aI1210 +aI66 +aI6256 +aI4633 +aI4002 +aI280 +aI2731 +aI2370 +aI2533 +aI6748 +aI1436 +aI3627 +aI94 +aI211 +aI5941 +aI2238 +aI1349 +aI4093 +aI4938 +aI2764 +aI2048 +aI3300 +aI3150 +aI65 +aI285 +aI711 +aI4671 +aI3995 +aI277 +aI4974 +aI301 +aI7104 +aI2013 +aI1289 +aI63 +aI1686 +aI4845 +aI3196 +aI1904 +aI1134 +aI685 +aI5379 +aI2919 +aI5808 +aI6270 +aI1329 +aI4228 +aI3311 +aI3181 +aI6329 +aI4267 +aI2230 +aI2419 +aI1740 +aI5784 +aI41 +aI3023 +aI2831 +aI7275 +aI7397 +aI1340 +aI1221 +aI3992 +aI4445 +aI4218 +aI724 +aI7135 +aI4959 +aI3348 +aI6799 +aI2864 +aI3682 +aI2008 +aI220 +aI5453 +aI729 +aI5851 +aI633 +aI3609 +aI5373 +aI5768 +aI802 +aI6429 +aI4358 +aI6011 +aI4174 +aI7361 +aI217 +aI4608 +aI4059 +aI2536 +aI5638 +aI5392 +aI665 +aI2478 +aI4523 +aI4925 +aI4238 +aI4315 +aI7266 +aI3343 +aI5974 +aI4923 +aI425 +aI4122 +aI463 +aI4839 +aI6280 +aI3933 +aI319 +aI1002 +aI6849 +aI5185 +aI1585 +aI638 +aI3553 +aI1024 +aI5378 +aI6332 +aI3184 +aI3285 +aI582 +aI736 +aI2346 +aI2237 +aI707 +aI964 +aI7128 +aI989 +aI1961 +aI1046 +aI3188 +aI974 +aI2220 +aI5779 +aI3572 +aI6656 +aI4056 +aI896 +aI7063 +aI3604 +aI3060 +aI4242 +aI3120 +aI6293 +aI2163 +aI2436 +aI4636 +aI4803 +aI861 +aI4513 +aI4792 +aI4563 +aI24 +aI6928 +aI5790 +aI461 +aI4192 +aI6430 +aI7111 +aI5046 +aI4029 +aI4283 +aI1925 +aI411 +aI6736 +aI82 +aI258 +aI5083 +aI5374 +aI4742 +aI2269 +aI2202 +aI5662 +aI4427 +aI4936 +aI1804 +aI5710 +aI2135 +aI2544 +aI3362 +aI1173 +aI1906 +aI5032 +aI6710 +aI2454 +aI6310 +aI3167 +aI5573 +aI3051 +aI3945 +aI5958 +aI1445 +aI1621 +aI1179 +aI1706 +aI2861 +aI165 +aI3485 +aI5014 +aI865 +aI5425 +aI4675 +aI3863 +aI6384 +aI845 +aI3745 +aI1161 +aI1242 +aI1833 +aI3359 +aI2465 +aI1048 +aI2052 +aI5305 +aI1607 +aI6637 +aI1856 +aI4448 +aI4963 +aI3066 +aI4609 +aI6547 +aI2740 +aI3823 +aI3731 +aI4014 +aI236 +aI6900 +aI523 +aI3472 +aI4789 +aI3200 +aI129 +aI6056 +aI1434 +aI7227 +aI4984 +aI4761 +aI962 +aI5061 +aI3825 +aI3441 +aI5576 +aI7183 +aI5469 +aI1770 +aI2990 +aI3759 +aI5547 +aI3545 +aI1835 +aI2348 +aI6895 +aI3793 +aI4288 +aI494 +aI4068 +aI3976 +aI5254 +aI6041 +aI2139 +aI5651 +aI1375 +aI6685 +aI1839 +aI2520 +aI3449 +aI3136 +aI5362 +aI2029 +aI3740 +aI4773 +aI1162 +aI5042 +aI7412 +aI6483 +aI1372 +aI3420 +aI808 +aI251 +aI2625 +aI6443 +aI3968 +aI6084 +aI7005 +aI1385 +aI6732 +aI4437 +aI3100 +aI7383 +aI4450 +aI2943 +aI990 +aI6014 +aI2585 +aI5797 +aI61 +aI6203 +aI2368 +aI926 +aI6546 +aI5542 +aI7068 +aI1876 +aI4141 +aI6377 +aI2017 +aI3265 +aI121 +aI5296 +aI1753 +aI7072 +aI3810 +aI6997 +aI1505 +aI4256 +aI2241 +aI7220 +aI5306 +aI3002 +aI667 +aI5533 +aI5640 +aI731 +aI3298 +aI1754 +aI4643 +aI4258 +aI2535 +aI7408 +aI2352 +aI4209 +aI5132 +aI6884 +aI4598 +aI2210 +aI5840 +aI5104 +aI6951 +aI1064 +aI7418 +aI1203 +aI180 +aI1654 +aI994 +aI6339 +aI2456 +aI3207 +aI797 +aI7324 +aI2510 +aI2065 +aI2686 +aI2726 +aI3961 +aI4564 +aI3074 +aI5745 +aI7106 +aI5464 +aI7372 +aI3904 +aI2616 +aI906 +aI1317 +aI6364 +aI5220 +aI1402 +aI3283 +aI1526 +aI7127 +aI3244 +aI1418 +aI2492 +aI1518 +aI244 +aI4105 +aI527 +aI1219 +aI2568 +aI4298 +aI5794 +aI6133 +aI5318 +aI4828 +aI4727 +aI7215 +aI5774 +aI6311 +aI4926 +aI1536 +aI5000 +aI3004 +aI1228 +aI3314 +aI663 +aI6035 +aI3059 +aI7390 +aI1313 +aI5475 +aI525 +aI3618 +aI719 +aI3556 +aI5284 +aI3753 +aI640 +aI6438 +aI3106 +aI7388 +aI710 +aI6023 +aI5956 +aI6956 +aI5203 +aI1715 +aI6942 +aI1160 +aI5155 +aI5179 +aI140 +aI6881 +aI2853 +aI6110 +aI3330 +aI3303 +aI1772 +aI1649 +aI1124 +aI5135 +aI6395 +aI2538 +aI4670 +aI6071 +aI6779 +aI6782 +aI4639 +aI6369 +aI749 +aI5580 +aI1453 +aI2320 +aI1577 +aI1066 +aI6147 +aI611 +aI1390 +aI6131 +aI4825 +aI6351 +aI5628 +aI5539 +aI412 +aI1728 +aI456 +aI4775 +aI6234 +aI6785 +aI3913 +aI3433 +aI6667 +aI3296 +aI7053 +aI3534 +aI1761 +aI1406 +aI4433 +aI717 +aI5199 +aI2793 +aI2637 +aI6175 +aI6392 +aI7004 +aI4026 +aI5721 +aI1863 +aI3824 +aI4946 +aI1746 +aI3620 +aI488 +aI4683 +aI5011 +aI4790 +aI4948 +aI6897 +aI5049 +aI1578 +aI674 +aI6621 +aI5756 +aI3226 +aI58 +aI5717 +aI4074 +aI5333 +aI739 +aI5266 +aI2571 +aI7346 +aI1259 +aI2678 +aI955 +aI1970 +aI4931 +aI6845 +aI5843 +aI2580 +aI2084 +aI97 +aI5358 +aI2206 +aI434 +aI5881 +aI7110 +aI176 +aI6629 +aI2168 +aI969 +aI5738 +aI1498 +aI5985 +aI4720 +aI4375 +aI1506 +aI4816 +aI2408 +aI256 +aI4844 +aI827 +aI3434 +aI2642 +aI1386 +aI4303 +aI6615 +aI4129 +aI88 +aI5508 +aI6564 +aI6493 +aI2978 +aI5062 +aI4641 +aI5245 +aI4240 +aI6838 +aI852 +aI1148 +aI3692 +aI2479 +aI1081 +aI4422 +aI7137 +aI4048 +aI4924 +aI174 +aI6594 +aI3067 +aI2262 +aI5859 +aI5928 +aI934 +aI7136 +aI6482 +aI3198 +aI5788 +aI1274 +aI1087 +aI1140 +aI6480 +aI2233 +aI2527 +aI4665 +aI377 +aI332 +aI4400 +aI3658 +aI5463 +aI1610 +aI1021 +aI4041 +aI3711 +aI2891 +aI342 +aI4161 +aI5735 +aI7436 +aI7420 +aI2215 +aI569 +aI6432 +aI5668 +aI765 +aI4568 +aI2358 +aI1362 +aI5828 +aI5586 +aI267 +aI6186 +aI1783 +aI1596 +aI3901 +aI4300 +aI3415 +aI5587 +aI7186 +aI5725 +aI814 +aI4047 +aI4446 +aI1579 +aI3606 +aI1217 +aI4508 +aI163 +aI3543 +aI4337 +aI6760 +aI2909 +aI5729 +aI5512 +aI6181 +aI1309 +aI6834 +aI7100 +aI1433 +aI2010 +aI7251 +aI1247 +aI6544 +aI2361 +aI930 +aI5594 +aI2606 +aI3252 +aI2031 +aI3130 +aI2 +aI3312 +aI5789 +aI225 +aI6305 +aI6427 +aI6757 +aI2936 +aI6171 +aI1485 +aI787 +aI5883 +aI2567 +aI4359 +aI6080 +aI6712 +aI6701 +aI5434 +aI1920 +aI2132 +aI6082 +aI1511 +aI2446 +aI3016 +aI596 +aI4680 +aI2464 +aI4098 +aI5249 +aI3714 +aI6508 +aI7278 +aI3886 +aI2021 +aI4621 +aI108 +aI2955 +aI1699 +aI1296 +aI2412 +aI2751 +aI988 +aI1330 +aI6220 +aI4796 +aI2477 +aI5312 +aI624 +aI6929 +aI4939 +aI4149 +aI6373 +aI2034 +aI2867 +aI2046 +aI6250 +aI5491 +aI7065 +aI2293 +aI4569 +aI5005 +aI2945 +aI3187 +aI7161 +aI6686 +aI4428 +aI3377 +aI4657 +aI112 +aI3043 +aI5964 +aI2667 +aI6372 +aI3635 +aI6174 +aI4465 +aI3865 +aI1200 +aI1138 +aI2309 +aI7433 +aI5585 +aI1380 +aI612 +aI3611 +aI7101 +aI30 +aI5118 +aI3379 +aI892 +aI4778 +aI653 +aI5100 +aI5617 +aI7467 +aI2187 +aI7404 +aI1886 +aI1782 +aI1072 +aI2744 +aI7196 +aI6610 +aI18 +aI4205 +aI1570 +aI3782 +aI3270 +aI7157 +aI2266 +aI5324 +aI5404 +aI7117 +aI1632 +aI2186 +aI4115 +aI1732 +aI6744 +aI675 +aI4020 +aI120 +aI1010 +aI6821 +aI5120 +aI7299 +aI3083 +aI2235 +aI2645 +aI2298 +aI2662 +aI2771 +aI6766 +aI2387 +aI3640 +aI227 +aI1693 +aI2598 +aI3203 +aI3694 +aI380 +aI3856 +aI3469 +aI4317 +aI2696 +aI5356 +aI981 +aI3727 +aI2503 +aI3820 +aI5885 +aI6300 +aI6991 +aI5541 +aI6882 +aI3526 +aI700 +aI1995 +aI6795 +aI5136 +aI2747 +aI4681 +aI3580 +aI768 +aI3395 +aI3231 +aI1865 +aI1848 +aI6780 +aI486 +aI2807 +aI6631 +aI4349 +aI3376 +aI5419 +aI5643 +aI2149 +aI2496 +aI1926 +aI4159 +aI55 +aI3563 +aI6946 +aI2207 +aI5772 +aI2800 +aI6819 +aI6140 +aI326 +aI2954 +aI2862 +aI3219 +aI1357 +aI1420 +aI1571 +aI5918 +aI14 +aI1749 +aI80 +aI3878 +aI7421 +aI2724 +aI539 +aI1500 +aI1028 +aI1344 +aI4951 +aI4929 +aI5470 +aI903 +aI3935 +aI1685 +aI5401 +aI1821 +aI4884 +aI2728 +aI2626 +aI6426 +aI160 +aI3155 +aI4995 +aI6575 +aI4024 +aI6359 +aI374 +aI6068 +aI1976 +aI7373 +aI4272 +aI2781 +aI5801 +aI5855 +aI825 +aI698 +aI1065 +aI5596 +aI4478 +aI405 +aI7213 +aI4402 +aI3456 +aI5953 +aI3693 +aI4837 +aI1202 +aI2217 +aI1937 +aI0 +aI7474 +aI4234 +aI5991 +aI3035 +aI4310 +aI3806 +aI4373 +aI5765 +aI1768 +aI3660 +aI6934 +aI3539 +aI4476 +aI4316 +aI2673 +aI3906 +aI1080 +aI150 +aI254 +aI1240 +aI1271 +aI1085 +aI1542 +aI3773 +aI1955 +aI1189 +aI6606 +aI2805 +aI2522 +aI646 +aI5240 +aI7332 +aI6987 +aI1392 +aI5201 +aI3861 +aI975 +aI5637 +aI5013 +aI3676 +aI6655 +aI2894 +aI1594 +aI908 +aI2706 +aI7409 +aI3750 +aI6022 +aI5003 +aI495 +aI6083 +aI4599 +aI3185 +aI1565 +aI141 +aI2324 +aI3790 +aI960 +aI4735 +aI609 +aI6408 +aI6326 +aI6800 +aI4548 +aI6840 +aI7235 +aI4530 +aI6949 +aI4966 +aI4935 +aI2854 +aI2932 +aI6088 +aI4860 +aI761 +aI1762 +aI477 +aI3630 +aI2150 +aI627 +aI2096 +aI6992 +aI3581 +aI4413 +aI692 +aI102 +aI6860 +aI1176 +aI4444 +aI2025 +aI1558 +aI7023 +aI104 +aI2714 +aI3702 +aI2844 +aI7193 +aI6833 +aI4057 +aI1999 +aI187 +aI93 +aI6911 +aI6590 +aI6370 +aI3277 +aI940 +aI6824 +aI3414 +aI1727 +aI2712 +aI3920 +aI7034 +aI3113 +aI4034 +aI3557 +aI649 +aI522 +aI2707 +aI1744 +aI1793 +aI2674 +aI3228 +aI2453 +aI6271 +aI2774 +aI3461 +aI661 +aI3275 +aI3857 +aI3850 +aI5659 +aI6807 +aI4578 +aI6399 +aI941 +aI1913 +aI3233 +aI5384 +aI3071 +aI5069 +aI7333 +aI7124 +aI3452 +aI4307 +aI1440 +aI5526 +aI2681 +aI4994 +aI4752 +aI5671 +aI2555 +aI1341 +aI4011 +aI4779 +aI3717 +aI2000 +aI4797 +aI3367 +aI7283 +aI2924 +aI390 +aI5912 +aI6107 +aI3642 +aI3373 +aI1003 +aI4969 +aI4955 +aI444 +aI2475 +aI1902 +aI4152 +aI3502 +aI5408 +aI966 +aI2070 +aI7298 +aI212 +aI1261 +aI5282 +aI6103 +aI5123 +aI6990 +aI2972 +aI6729 +aI1150 +aI3998 +aI3769 +aI2777 +aI5848 +aI5087 +aI3990 +aI4004 +aI218 +aI511 +aI6752 +aI1438 +aI2865 +aI4958 +aI632 +aI5410 +aI2648 +aI2244 +aI3175 +aI1844 +aI1318 +aI3644 +aI7164 +aI3046 +aI6362 +aI4379 +aI2841 +aI4342 +aI3335 +aI1112 +aI110 +aI359 +aI6053 +aI3055 +aI1797 +aI2354 +aI5973 +aI5039 +aI4937 +aI3816 +aI6743 +aI5646 +aI938 +aI5314 +aI2655 +aI291 +aI4499 +aI148 +aI2732 +aI6974 +aI3041 +aI5377 +aI5558 +aI5672 +aI2594 +aI3896 +aI7029 +aI7423 +aI5866 +aI5072 +aI1135 +aI6943 +aI2447 +aI2833 +aI259 +aI2778 +aI2221 +aI782 +aI1345 +aI1136 +aI3665 +aI4562 +aI2651 +aI5497 +aI764 +aI2056 +aI6804 +aI3977 +aI164 +aI1283 +aI2470 +aI4172 +aI3361 +aI4386 +aI2672 +aI6568 +aI6764 +aI1643 +aI870 +aI641 +aI4733 +aI4114 +aI4382 +aI7431 +aI4698 +aI2058 +aI5732 +aI5960 +aI6977 +aI6163 +aI2694 +aI2480 +aI5028 +aI4585 +aI191 +aI6328 +aI2141 +aI7424 +aI728 +aI2792 +aI7049 +aI4071 +aI6397 +aI1700 +aI7011 +aI6898 +aI5763 +aI1820 +aI357 +aI913 +aI6825 +aI851 +aI4184 +aI2386 +aI4350 +aI1659 +aI7225 +aI3860 +aI7256 +aI2043 +aI2427 +aI4183 +aI306 +aI2001 +aI410 +aI4431 +aI5506 +aI3381 +aI2156 +aI2770 +aI1400 +aI937 +aI5122 +aI5661 +aI4990 +aI7287 +aI5222 +aI3487 +aI2621 +aI5874 +aI3952 +aI6318 +aI3342 +aI3323 +aI625 +aI3013 +aI3315 +aI3084 +aI226 +aI6832 +aI1922 +aI2702 +aI2693 +aI1448 +aI3967 +aI7318 +aI1059 +aI229 +aI584 +aI4912 +aI2307 +aI5510 +aI4211 +aI5683 +aI512 +aI2649 +aI5213 +aI5437 +aI5074 +aI5438 +aI1231 +aI6224 +aI4139 +aI2910 +aI6698 +aI3266 +aI1555 +aI4545 +aI7189 +aI5782 +aI3634 +aI2951 +aI544 +aI680 +aI2734 +aI3661 +aI1492 +aI5477 +aI5783 +aI3612 +aI756 +aI5623 +aI2372 +aI5015 +aI534 +aI1425 +aI1894 +aI4538 +aI5262 +aI3578 +aI3582 +aI1279 +aI1735 +aI123 +aI81 +aI7000 +aI6070 +aI5565 +aI6718 +aI3959 +aI2063 +aI3432 +aI1495 +aI4537 +aI3423 +aI6461 +aI3567 +aI59 +aI6872 +aI6240 +aI1158 +aI5226 +aI4600 +aI6094 +aI5600 +aI6706 +aI2948 +aI5085 +aI2012 +aI6004 +aI4162 +aI2652 +aI3496 +aI5673 +aI5489 +aI5288 +aI831 +aI5513 +aI5681 +aI3724 +aI7037 +aI1535 +aI2032 +aI6842 +aI5088 +aI6183 +aI6347 +aI5887 +aI4802 +aI7109 +aI4065 +aI6504 +aI6683 +aI2161 +aI6836 +aI3183 +aI4089 +aI5629 +aI303 +aI1205 +aI3919 +aI3297 +aI4502 +aI1802 +aI668 +aI4749 +aI4518 +aI5919 +aI2518 +aI2429 +aI5546 +aI4904 +aI654 +aI3672 +aI2557 +aI3808 +aI3705 +aI3442 +aI428 +aI4653 +aI6330 +aI5293 +aI3453 +aI6537 +aI4463 +aI6221 +aI2534 +aI1281 +aI5791 +aI1895 +aI2629 +aI6162 +aI3142 +aI846 +aI6953 +aI549 +aI1984 +aI2360 +aI4263 +aI5139 +aI4013 +aI6699 +aI925 +aI528 +aI995 +aI6489 +aI817 +aI2484 +aI6404 +aI1155 +aI670 +aI3028 +aI7070 +aI2796 +aI387 +aI3685 +aI760 +aI6416 +aI6985 +aI5800 +aI4368 +aI439 +aI7174 +aI1907 +aI49 +aI2123 +aI5445 +aI4302 +aI1115 +aI6114 +aI2059 +aI2811 +aI4901 +aI1407 +aI3056 +aI605 +aI4920 +aI6447 +aI6106 +aI4107 +aI6816 +aI2817 +aI7377 +aI4956 +aI6238 +aI542 +aI3174 +aI5447 +aI3287 +aI4627 +aI2528 +aI2827 +aI4503 +aI648 +aI6281 +aI6400 +aI5813 +aI3388 +aI3579 +aI4887 +aI4759 +aI6346 +aI5839 +aI5773 +aI862 +aI778 +aI3864 +aI3575 +aI6803 +aI3566 +aI5553 +aI5682 +aI352 +aI3138 +aI5467 +aI6828 +aI684 +aI3235 +aI2908 +aI2394 +aI677 +aI1623 +aI1403 +aI2828 +aI4962 +aI133 +aI3742 +aI5319 +aI664 +aI7353 +aI7348 +aI7419 +aI2431 +aI5070 +aI533 +aI2609 +aI6242 +aI4982 +aI589 +aI2630 +aI3206 +aI6249 +aI6857 +aI4590 +aI6155 +aI6964 +aI5372 +aI366 +aI2572 +aI3402 +aI1977 +aI716 +aI4890 +aI751 +aI1634 +aI4453 +aI5415 +aI4 +aI4776 +aI5929 +aI146 +aI5428 +aI2353 +aI709 +aI4227 +aI7293 +aI2178 +aI1692 +aI346 +aI3410 +aI706 +aI574 +aI4454 +aI478 +aI6123 +aI3988 +aI4419 +aI3111 +aI726 +aI3695 +aI2411 +aI4148 +aI2120 +aI2073 +aI6229 +aI855 +aI7363 +aI362 +aI253 +aI4879 +aI367 +aI5253 +aI1527 +aI1778 +aI5417 +aI6988 +aI406 +aI2754 +aI4044 +aI1682 +aI1670 +aI1208 +aI3834 +aI6877 +aI617 +aI6963 +aI7105 +aI4648 +aI26 +aI3494 +aI5871 +aI5853 +aI3374 +aI2274 +aI247 +aI4604 +aI3540 +aI5145 +aI2684 +aI7410 +aI3948 +aI4421 +aI7311 +aI785 +aI1483 +aI5695 +aI5466 +aI2884 +aI6539 +aI2151 +aI4214 +aI1172 +aI6405 +aI3651 +aI1169 +aI4586 +aI147 +aI6994 +aI3812 +aI2821 +aI1924 +aI1029 +aI3638 +aI1545 +aI2971 +aI6705 +aI6662 +aI968 +aI3479 +aI4895 +aI3971 +aI1620 +aI6067 +aI514 +aI730 +aI7036 +aI3396 +aI7055 +aI3199 +aI4619 +aI4556 +aI5824 +aI2024 +aI6880 +aI3215 +aI4908 +aI5448 +aI3290 +aI7095 +aI1427 +aI5167 +aI3089 +aI4965 +aI2089 +aI6283 +aI3022 +aI2588 +aI2521 +aI2840 +aI3260 +aI2969 +aI2434 +aI6978 +aI7340 +aI6556 +aI2987 +aI3966 +aI1893 +aI6587 +aI3444 +aI440 +aI1755 +aI6177 +aI5549 +aI249 +aI5161 +aI2392 +aI7473 +aI1316 +aI7393 +aI775 +aI3082 +aI6253 +aI3133 +aI7001 +aI871 +aI6931 +aI6194 +aI409 +aI177 +aI5327 +aI6765 +aI4808 +aI551 +aI2542 +aI7115 +aI3897 +aI4490 +aI4511 +aI5303 +aI1377 +aI6523 +aI7347 +aI6064 +aI6306 +aI5727 +aI5456 +aI5892 +aI4717 +aI6145 +aI1751 +aI2310 +aI5684 +aI1972 +aI1250 +aI3144 +aI1401 +aI7356 +aI507 +aI1322 +aI3697 +aI4540 +aI2340 +aI1852 +aI354 +aI5446 +aI943 +aI2246 +aI70 +aI2785 +aI3241 +aI4800 +aI3 +aI6109 +aI2460 +aI1736 +aI2450 +aI2818 +aI4677 +aI6470 +aI7033 +aI442 +aI647 +aI5149 +aI5641 +aI6830 +aI3079 +aI2080 +aI4517 +aI6694 +aI6518 +aI1288 +aI5680 +aI1201 +aI3934 +aI6097 +aI5915 +aI4972 +aI2062 +aI795 +aI1853 +aI7162 +aI4038 +aI5193 +aI953 +aI77 +aI3246 +aI503 +aI4927 +aI3715 +aI7285 +aI6542 +aI1284 +aI4905 +aI6661 +aI763 +aI1234 +aI4911 +aI134 +aI3629 +aI932 +aI4336 +aI1094 +aI3052 +aI5748 +aI6135 +aI3242 +aI671 +aI1315 +aI6501 +aI3716 +aI6120 +aI388 +aI5080 +aI3859 +aI2713 +aI6565 +aI6796 +aI5612 +aI3602 +aI2627 +aI1041 +aI2977 +aI6912 +aI1968 +aI7459 +aI373 +aI1985 +aI3765 +aI2004 +aI5987 +aI1426 +aI5281 +aI3034 +aI2111 +aI5229 +aI6272 +aI1546 +aI1915 +aI7291 +aI6117 +aI6038 +aI5260 +aI6813 +aI2509 +aI506 +asS'train_ind' +p59859 +(lp59860 +I423 +aI1550 +aI1716 +aI1493 +aI5622 +aI2497 +aI1974 +aI5921 +aI2986 +aI4656 +aI4897 +aI3700 +aI5713 +aI1719 +aI800 +aI5992 +aI1554 +aI772 +aI2294 +aI916 +aI521 +aI4486 +aI1030 +aI1528 +aI1388 +aI7044 +aI293 +aI5781 +aI5173 +aI6091 +aI7309 +aI7091 +aI1102 +aI7339 +aI7211 +aI4769 +aI854 +aI2042 +aI972 +aI6570 +aI4865 +aI5850 +aI4050 +aI233 +aI3218 +aI3182 +aI7447 +aI922 +aI6020 +aI946 +aI3839 +aI5125 +aI7382 +aI1664 +aI3158 +aI4785 +aI493 +aI6516 +aI5084 +aI3293 +aI3237 +aI2938 +aI3596 +aI416 +aI5498 +aI1792 +aI3962 +aI3972 +aI404 +aI860 +aI1572 +aI3624 +aI1227 +aI6865 +aI5931 +aI5544 +aI430 +aI1901 +aI2836 +aI7030 +aI3010 +aI2341 +aI5663 +aI237 +aI3763 +aI4607 +aI7370 +aI3516 +aI4512 +aI4414 +aI1658 +aI2866 +aI5208 +aI4753 +aI6548 +aI7255 +aI4487 +aI7290 +aI837 +aI457 +aI5949 +aI2344 +aI5705 +aI690 +aI737 +aI1100 +aI2727 +aI691 +aI3418 +aI79 +aI1980 +aI4366 +aI4801 +aI2933 +aI3747 +aI379 +aI4588 +aI2743 +aI318 +aI4954 +aI5626 +aI6573 +aI1043 +aI2469 +aI2316 +aI3643 +aI2451 +aI1645 +aI6866 +aI4524 +aI2234 +aI6643 +aI5603 +aI4443 +aI7453 +aI3329 +aI591 +aI6338 +aI4361 +aI168 +aI3424 +aI196 +aI6126 +aI4835 +aI3387 +aI2441 +aI6892 +aI4532 +aI3775 +aI5370 +aI3261 +aI2982 +aI1352 +aI270 +aI368 +aI5639 +aI3099 +aI2551 +aI6309 +aI480 +aI1273 +aI1047 +aI4700 +aI4754 +aI3603 +aI3719 +aI5574 +aI2172 +aI5687 +aI103 +aI4457 +aI5340 +aI2839 +aI2367 +aI6208 +aI5156 +aI274 +aI290 +aI6854 +aI2268 +aI3969 +aI4870 +aI1534 +aI3743 +aI3756 +aI5894 +aI4557 +aI3350 +aI7074 +aI5697 +aI1319 +aI6774 +aI2209 +aI3073 +aI2397 +aI6458 +aI3466 +aI6644 +aI2483 +aI5382 +aI2548 +aI7297 +aI6113 +aI6968 +aI1667 +aI7020 +aI6255 +aI708 +aI3641 +aI3302 +aI4054 +aI5142 +aI3538 +aI5227 +aI6582 +aI2564 +aI47 +aI1472 +aI6212 +aI3165 +aI1103 +aI1353 +aI3942 +aI6498 +aI3911 +aI3077 +aI1694 +aI2721 +aI243 +aI2756 +aI1929 +aI3324 +aI3571 +aI3840 +aI4282 +aI3822 +aI4716 +aI1177 +aI5411 +aI5926 +aI2683 +aI2349 +aI6704 +aI872 +aI4866 +aI4032 +aI6465 +aI2312 +aI4058 +aI6613 +aI7295 +aI4083 +aI7131 +aI779 +aI3457 +aI4872 +aI1132 +aI3671 +aI1681 +aI2402 +aI6241 +aI4952 +aI210 +aI3123 +aI1056 +aI839 +aI2653 +aI2898 +aI923 +aI3855 +aI2449 +aI1359 +aI4291 +aI5105 +aI1249 +aI5932 +aI5522 +aI2992 +aI3328 +aI1174 +aI6127 +aI3209 +aI6198 +aI3357 +aI7445 +aI6809 +aI2442 +aI1361 +aI5277 +aI6653 +aI4730 +aI2488 +aI4663 +aI645 +aI445 +aI4009 +aI4311 +aI2980 +aI4763 +aI4474 +aI4535 +aI4659 +aI1018 +aI4854 +aI6713 +aI6930 +aI2112 +aI5354 +aI660 +aI6034 +aI6237 +aI5006 +aI2614 +aI5589 +aI5441 +aI6638 +aI2599 +aI1277 +aI7368 +aI5631 +aI978 +aI6290 +aI3592 +aI4871 +aI4455 +aI5724 +aI4616 +aI3767 +aI3163 +aI1964 +aI3239 +aI3223 +aI508 +aI816 +aI6759 +aI329 +aI6937 +aI5762 +aI6893 +aI5183 +aI2124 +aI5297 +aI2114 +aI5744 +aI4207 +aI5184 +aI3222 +aI2485 +aI6871 +aI7085 +aI3499 +aI899 +aI6273 +aI5649 +aI1005 +aI6620 +aI5353 +aI2911 +aI5875 +aI4293 +aI1569 +aI4025 +aI6817 +aI5858 +aI2949 +aI3025 +aI235 +aI5610 +aI5990 +aI6167 +aI548 +aI5278 +aI3047 +aI320 +aI5291 +aI5443 +aI7352 +aI3800 +aI313 +aI6519 +aI5968 +aI786 +aI355 +aI257 +aI5927 +aI1552 +aI3467 +aI3463 +aI2966 +aI5917 +aI5878 +aI3851 +aI3371 +aI6481 +aI5304 +aI1256 +aI5593 +aI5693 +aI5536 +aI6154 +aI3005 +aI4080 +aI1690 +aI7451 +aI2067 +aI588 +aI4686 +aI4719 +aI2256 +aI2902 +aI7126 +aI2668 +aI4915 +aI453 +aI5598 +aI2107 +aI3370 +aI6894 +aI435 +aI1300 +aI6907 +aI1763 +aI6639 +aI2591 +aI3180 +aI2035 +aI3450 +aI2610 +aI4138 +aI5771 +aI844 +aI5722 +aI1394 +aI4351 +aI5399 +aI5331 +aI4196 +aI2739 +aI7064 +aI888 +aI5678 +aI2780 +aI6947 +aI4555 +aI5920 +aI754 +aI2225 +aI3404 +aI399 +aI1742 +aI7360 +aI5764 +aI2701 +aI6151 +aI3549 +aI1764 +aI1137 +aI333 +aI6245 +aI6313 +aI3145 +aI443 +aI1883 +aI1230 +aI5038 +aI8 +aI2300 +aI6677 +aI4809 +aI687 +aI4480 +aI4804 +aI4326 +aI2698 +aI6216 +aI2539 +aI4137 +aI1424 +aI1993 +aI476 +aI4967 +aI6173 +aI5957 +aI2019 +aI5879 +aI6938 +aI2100 +aI7277 +aI4554 +aI1756 +aI3656 +aI6448 +aI1450 +aI915 +aI5458 +aI1379 +aI630 +aI3835 +aI5196 +aI2574 +aI658 +aI1887 +aI5847 +aI7003 +aI7273 +aI4755 +aI5239 +aI4718 +aI2665 +aI2337 +aI4658 +aI2709 +aI1841 +aI6288 +aI4100 +aI3818 +aI7141 +aI3299 +aI4154 +aI6524 +aI4286 +aI1186 +aI3221 +aI7 +aI2030 +aI1099 +aI4722 +aI1630 +aI6276 +aI4199 +aI7146 +aI299 +aI3706 +aI4178 +aI7282 +aI245 +aI2703 +aI6265 +aI5945 +aI5151 +aI6837 +aI6584 +aI3109 +aI3663 +aI7281 +aI2903 +aI2183 +aI3515 +aI2991 +aI3225 +aI1187 +aI3391 +aI5442 +aI5396 +aI701 +aI3655 +aI6490 +aI3454 +aI3669 +aI1464 +aI2276 +aI4696 +aI5424 +aI4003 +aI6970 +aI2335 +aI6205 +aI1133 +aI3720 +aI6367 +aI5234 +aI3333 +aI465 +aI6418 +aI6204 +aI5064 +aI6790 +aI4391 +aI3030 +aI3346 +aI5490 +aI2288 +aI931 +aI370 +aI1414 +aI6170 +aI2263 +aI1942 +aI1641 +aI5994 +aI6797 +aI6434 +aI4685 +aI4367 +aI4864 +aI334 +aI6002 +aI6917 +aI1006 +aI520 +aI2190 +aI7147 +aI2375 +aI3425 +aI1631 +aI6747 +aI1604 +aI1451 +aI1082 +aI2272 +aI4439 +aI2699 +aI1350 +aI2413 +aI766 +aI7134 +aI1422 +aI4714 +aI4304 +aI5349 +aI2305 +aI5047 +aI7345 +aI2357 +aI4646 +aI2363 +aI1303 +aI7407 +aI2356 +aI402 +aI3492 +aI5076 +aI1441 +aI6274 +aI6134 +aI7129 +aI5691 +aI2608 +aI1774 +aI4942 +aI3037 +aI935 +aI6776 +aI2581 +aI4392 +aI2802 +aI7199 +aI715 +aI1930 +aI7088 +aI7378 +aI2242 +aI2682 +aI4323 +aI745 +aI6751 +aI3146 +aI6741 +aI3014 +aI1355 +aI621 +aI4606 +aI4971 +aI6081 +aI3194 +aI4397 +aI7314 +aI1562 +aI1777 +aI4891 +aI361 +aI5750 +aI208 +aI4170 +aI1038 +aI1752 +aI3152 +aI3591 +aI3054 +aI6580 +aI2091 +aI2322 +aI1766 +aI2467 +aI4246 +aI6477 +aI60 +aI4261 +aI7476 +aI156 +aI3875 +aI3770 +aI1348 +aI5814 +aI1626 +aI4103 +aI5951 +aI1960 +aI2339 +aI4767 +aI5993 +aI4678 +aI2396 +aI1508 +aI6611 +aI4281 +aI3923 +aI5407 +aI7358 +aI3344 +aI5816 +aI5112 +aI4519 +aI5056 +aI4968 +aI1122 +aI4481 +aI3846 +aI4330 +aI5101 +aI1875 +aI3803 +aI7331 +aI6989 +aI6906 +aI944 +aI3918 +aI3507 +aI3127 +aI162 +aI4451 +aI5328 +aI702 +aI6793 +aI6025 +aI5385 +aI4991 +aI676 +aI2789 +aI5720 +aI45 +aI5891 +aI1747 +aI5857 +aI6888 +aI2961 +aI5777 +aI2179 +aI6357 +aI2369 +aI4507 +aI5652 +aI2284 +aI1370 +aI5079 +aI382 +aI1759 +aI2549 +aI7188 +aI3789 +aI2939 +aI1668 +aI7082 +aI6193 +aI86 +aI6393 +aI5581 +aI6932 +aI513 +aI7191 +aI6835 +aI4144 +aI1903 +aI1731 +aI531 +aI2914 +aI1533 +aI1092 +aI5241 +aI5902 +aI2604 +aI6333 +aI4292 +aI1864 +aI2494 +aI230 +aI4836 +aI2365 +aI6918 +aI1616 +aI6190 +aI1311 +aI1032 +aI5263 +aI6441 +aI6791 +aI1525 +aI2166 +aI5202 +aI5168 +aI902 +aI3273 +aI7181 +aI6026 +aI1108 +aI2640 +aI4626 +aI1653 +aI2440 +aI3905 +aI3050 +aI372 +aI3447 +aI5212 +aI3965 +aI460 +aI4213 +aI6132 +aI3890 +aI5251 +aI1278 +aI2819 +aI6122 +aI6478 +aI1800 +aI5914 +aI2737 +aI6390 +aI228 +aI4407 +aI398 +aI3939 +aI5181 +aI4640 +aI6474 +aI4978 +aI4850 +aI5769 +aI35 +aI5754 +aI5004 +aI5893 +aI1165 +aI427 +aI7149 +aI2342 +aI2270 +aI4265 +aI2306 +aI1062 +aI4786 +aI2236 +aI3869 +aI4341 +aI375 +aI5767 +aI6554 +aI5163 +aI5495 +aI545 +aI956 +aI7317 +aI6534 +aI3471 +aI6462 +aI4950 +aI4127 +aI3568 +aI2561 +aI4593 +aI7320 +aI7252 +aI2515 +aI1238 +aI2066 +aI87 +aI2213 +aI3999 +aI6566 +aI7012 +aI4250 +aI5938 +aI2530 +aI4666 +aI1487 +aI1625 +aI4112 +aI1367 +aI4841 +aI5933 +aI3040 +aI3095 +aI10 +aI5823 +aI4764 +aI879 +aI339 +aI4917 +aI2806 +aI1614 +as. \ No newline at end of file diff --git a/data/SCv1/raw.pickle b/data/SCv1/raw.pickle new file mode 100644 index 0000000..e2b3e0e --- /dev/null +++ b/data/SCv1/raw.pickle @@ -0,0 +1,21980 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +cnumpy.core.multiarray +scalar +p5 +(cnumpy +dtype +p6 +(S'i8' +p7 +I0 +I1 +tp8 +Rp9 +(I3 +S'<' +p10 +NNNI-1 +I-1 +I0 +tp11 +bS'\x01\x00\x00\x00\x00\x00\x00\x00' +p12 +tp13 +Rp14 +sa(dp15 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p16 +tp17 +Rp18 +sa(dp19 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p20 +tp21 +Rp22 +sa(dp23 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p24 +tp25 +Rp26 +sa(dp27 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p28 +tp29 +Rp30 +sa(dp31 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p32 +tp33 +Rp34 +sa(dp35 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p36 +tp37 +Rp38 +sa(dp39 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p40 +tp41 +Rp42 +sa(dp43 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p44 +tp45 +Rp46 +sa(dp47 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p48 +tp49 +Rp50 +sa(dp51 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p52 +tp53 +Rp54 +sa(dp55 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p56 +tp57 +Rp58 +sa(dp59 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p60 +tp61 +Rp62 +sa(dp63 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p64 +tp65 +Rp66 +sa(dp67 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p68 +tp69 +Rp70 +sa(dp71 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p72 +tp73 +Rp74 +sa(dp75 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p76 +tp77 +Rp78 +sa(dp79 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p80 +tp81 +Rp82 +sa(dp83 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p84 +tp85 +Rp86 +sa(dp87 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p88 +tp89 +Rp90 +sa(dp91 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p92 +tp93 +Rp94 +sa(dp95 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p96 +tp97 +Rp98 +sa(dp99 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p100 +tp101 +Rp102 +sa(dp103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p104 +tp105 +Rp106 +sa(dp107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p108 +tp109 +Rp110 +sa(dp111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p112 +tp113 +Rp114 +sa(dp115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p116 +tp117 +Rp118 +sa(dp119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p120 +tp121 +Rp122 +sa(dp123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p124 +tp125 +Rp126 +sa(dp127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p128 +tp129 +Rp130 +sa(dp131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p132 +tp133 +Rp134 +sa(dp135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p136 +tp137 +Rp138 +sa(dp139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p140 +tp141 +Rp142 +sa(dp143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p144 +tp145 +Rp146 +sa(dp147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p148 +tp149 +Rp150 +sa(dp151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p152 +tp153 +Rp154 +sa(dp155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p156 +tp157 +Rp158 +sa(dp159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p160 +tp161 +Rp162 +sa(dp163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p164 +tp165 +Rp166 +sa(dp167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p168 +tp169 +Rp170 +sa(dp171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p172 +tp173 +Rp174 +sa(dp175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p176 +tp177 +Rp178 +sa(dp179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p180 +tp181 +Rp182 +sa(dp183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p184 +tp185 +Rp186 +sa(dp187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p188 +tp189 +Rp190 +sa(dp191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p192 +tp193 +Rp194 +sa(dp195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p196 +tp197 +Rp198 +sa(dp199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p200 +tp201 +Rp202 +sa(dp203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p204 +tp205 +Rp206 +sa(dp207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p208 +tp209 +Rp210 +sa(dp211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p212 +tp213 +Rp214 +sa(dp215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p216 +tp217 +Rp218 +sa(dp219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p220 +tp221 +Rp222 +sa(dp223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p224 +tp225 +Rp226 +sa(dp227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p228 +tp229 +Rp230 +sa(dp231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p232 +tp233 +Rp234 +sa(dp235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p236 +tp237 +Rp238 +sa(dp239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p240 +tp241 +Rp242 +sa(dp243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p244 +tp245 +Rp246 +sa(dp247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p248 +tp249 +Rp250 +sa(dp251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p252 +tp253 +Rp254 +sa(dp255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p256 +tp257 +Rp258 +sa(dp259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p260 +tp261 +Rp262 +sa(dp263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p264 +tp265 +Rp266 +sa(dp267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p268 +tp269 +Rp270 +sa(dp271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p272 +tp273 +Rp274 +sa(dp275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p276 +tp277 +Rp278 +sa(dp279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p280 +tp281 +Rp282 +sa(dp283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p284 +tp285 +Rp286 +sa(dp287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p288 +tp289 +Rp290 +sa(dp291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p292 +tp293 +Rp294 +sa(dp295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p296 +tp297 +Rp298 +sa(dp299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p300 +tp301 +Rp302 +sa(dp303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p304 +tp305 +Rp306 +sa(dp307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p308 +tp309 +Rp310 +sa(dp311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p312 +tp313 +Rp314 +sa(dp315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p316 +tp317 +Rp318 +sa(dp319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p320 +tp321 +Rp322 +sa(dp323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p324 +tp325 +Rp326 +sa(dp327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p328 +tp329 +Rp330 +sa(dp331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p332 +tp333 +Rp334 +sa(dp335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p336 +tp337 +Rp338 +sa(dp339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p340 +tp341 +Rp342 +sa(dp343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p344 +tp345 +Rp346 +sa(dp347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p348 +tp349 +Rp350 +sa(dp351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p352 +tp353 +Rp354 +sa(dp355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p356 +tp357 +Rp358 +sa(dp359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p360 +tp361 +Rp362 +sa(dp363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p364 +tp365 +Rp366 +sa(dp367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p368 +tp369 +Rp370 +sa(dp371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p372 +tp373 +Rp374 +sa(dp375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p376 +tp377 +Rp378 +sa(dp379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p380 +tp381 +Rp382 +sa(dp383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p384 +tp385 +Rp386 +sa(dp387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p388 +tp389 +Rp390 +sa(dp391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p392 +tp393 +Rp394 +sa(dp395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p396 +tp397 +Rp398 +sa(dp399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p400 +tp401 +Rp402 +sa(dp403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p404 +tp405 +Rp406 +sa(dp407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p408 +tp409 +Rp410 +sa(dp411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p412 +tp413 +Rp414 +sa(dp415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p416 +tp417 +Rp418 +sa(dp419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p420 +tp421 +Rp422 +sa(dp423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p424 +tp425 +Rp426 +sa(dp427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p428 +tp429 +Rp430 +sa(dp431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p432 +tp433 +Rp434 +sa(dp435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p436 +tp437 +Rp438 +sa(dp439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p440 +tp441 +Rp442 +sa(dp443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p444 +tp445 +Rp446 +sa(dp447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p448 +tp449 +Rp450 +sa(dp451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p452 +tp453 +Rp454 +sa(dp455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p456 +tp457 +Rp458 +sa(dp459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p460 +tp461 +Rp462 +sa(dp463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p464 +tp465 +Rp466 +sa(dp467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p468 +tp469 +Rp470 +sa(dp471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p472 +tp473 +Rp474 +sa(dp475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p476 +tp477 +Rp478 +sa(dp479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p480 +tp481 +Rp482 +sa(dp483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p484 +tp485 +Rp486 +sa(dp487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p488 +tp489 +Rp490 +sa(dp491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p492 +tp493 +Rp494 +sa(dp495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p496 +tp497 +Rp498 +sa(dp499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p500 +tp501 +Rp502 +sa(dp503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p504 +tp505 +Rp506 +sa(dp507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p508 +tp509 +Rp510 +sa(dp511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p512 +tp513 +Rp514 +sa(dp515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p516 +tp517 +Rp518 +sa(dp519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p520 +tp521 +Rp522 +sa(dp523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p524 +tp525 +Rp526 +sa(dp527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p528 +tp529 +Rp530 +sa(dp531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p532 +tp533 +Rp534 +sa(dp535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p536 +tp537 +Rp538 +sa(dp539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p540 +tp541 +Rp542 +sa(dp543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p544 +tp545 +Rp546 +sa(dp547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p548 +tp549 +Rp550 +sa(dp551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p552 +tp553 +Rp554 +sa(dp555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p556 +tp557 +Rp558 +sa(dp559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p560 +tp561 +Rp562 +sa(dp563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p564 +tp565 +Rp566 +sa(dp567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p568 +tp569 +Rp570 +sa(dp571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p572 +tp573 +Rp574 +sa(dp575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p576 +tp577 +Rp578 +sa(dp579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p580 +tp581 +Rp582 +sa(dp583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p584 +tp585 +Rp586 +sa(dp587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p588 +tp589 +Rp590 +sa(dp591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p592 +tp593 +Rp594 +sa(dp595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p596 +tp597 +Rp598 +sa(dp599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p600 +tp601 +Rp602 +sa(dp603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p604 +tp605 +Rp606 +sa(dp607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p608 +tp609 +Rp610 +sa(dp611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p612 +tp613 +Rp614 +sa(dp615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p616 +tp617 +Rp618 +sa(dp619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p620 +tp621 +Rp622 +sa(dp623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p624 +tp625 +Rp626 +sa(dp627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p628 +tp629 +Rp630 +sa(dp631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p632 +tp633 +Rp634 +sa(dp635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p636 +tp637 +Rp638 +sa(dp639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p640 +tp641 +Rp642 +sa(dp643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p644 +tp645 +Rp646 +sa(dp647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p648 +tp649 +Rp650 +sa(dp651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p652 +tp653 +Rp654 +sa(dp655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p656 +tp657 +Rp658 +sa(dp659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p660 +tp661 +Rp662 +sa(dp663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p664 +tp665 +Rp666 +sa(dp667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p668 +tp669 +Rp670 +sa(dp671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p672 +tp673 +Rp674 +sa(dp675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p676 +tp677 +Rp678 +sa(dp679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p680 +tp681 +Rp682 +sa(dp683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p684 +tp685 +Rp686 +sa(dp687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p688 +tp689 +Rp690 +sa(dp691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p692 +tp693 +Rp694 +sa(dp695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p696 +tp697 +Rp698 +sa(dp699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p700 +tp701 +Rp702 +sa(dp703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p704 +tp705 +Rp706 +sa(dp707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p708 +tp709 +Rp710 +sa(dp711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p712 +tp713 +Rp714 +sa(dp715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p716 +tp717 +Rp718 +sa(dp719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p720 +tp721 +Rp722 +sa(dp723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p724 +tp725 +Rp726 +sa(dp727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p728 +tp729 +Rp730 +sa(dp731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p732 +tp733 +Rp734 +sa(dp735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p736 +tp737 +Rp738 +sa(dp739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p740 +tp741 +Rp742 +sa(dp743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p744 +tp745 +Rp746 +sa(dp747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p748 +tp749 +Rp750 +sa(dp751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p752 +tp753 +Rp754 +sa(dp755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p756 +tp757 +Rp758 +sa(dp759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p760 +tp761 +Rp762 +sa(dp763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p764 +tp765 +Rp766 +sa(dp767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p768 +tp769 +Rp770 +sa(dp771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p772 +tp773 +Rp774 +sa(dp775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p776 +tp777 +Rp778 +sa(dp779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p780 +tp781 +Rp782 +sa(dp783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p784 +tp785 +Rp786 +sa(dp787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p788 +tp789 +Rp790 +sa(dp791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p792 +tp793 +Rp794 +sa(dp795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p796 +tp797 +Rp798 +sa(dp799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p800 +tp801 +Rp802 +sa(dp803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p804 +tp805 +Rp806 +sa(dp807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p808 +tp809 +Rp810 +sa(dp811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p812 +tp813 +Rp814 +sa(dp815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p816 +tp817 +Rp818 +sa(dp819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p820 +tp821 +Rp822 +sa(dp823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p824 +tp825 +Rp826 +sa(dp827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p828 +tp829 +Rp830 +sa(dp831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p832 +tp833 +Rp834 +sa(dp835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p836 +tp837 +Rp838 +sa(dp839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p840 +tp841 +Rp842 +sa(dp843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p844 +tp845 +Rp846 +sa(dp847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p848 +tp849 +Rp850 +sa(dp851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p852 +tp853 +Rp854 +sa(dp855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p856 +tp857 +Rp858 +sa(dp859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p860 +tp861 +Rp862 +sa(dp863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p864 +tp865 +Rp866 +sa(dp867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p868 +tp869 +Rp870 +sa(dp871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p872 +tp873 +Rp874 +sa(dp875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p876 +tp877 +Rp878 +sa(dp879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p880 +tp881 +Rp882 +sa(dp883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p884 +tp885 +Rp886 +sa(dp887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p888 +tp889 +Rp890 +sa(dp891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p892 +tp893 +Rp894 +sa(dp895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p896 +tp897 +Rp898 +sa(dp899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p900 +tp901 +Rp902 +sa(dp903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p904 +tp905 +Rp906 +sa(dp907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p908 +tp909 +Rp910 +sa(dp911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p912 +tp913 +Rp914 +sa(dp915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p916 +tp917 +Rp918 +sa(dp919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p920 +tp921 +Rp922 +sa(dp923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p924 +tp925 +Rp926 +sa(dp927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p928 +tp929 +Rp930 +sa(dp931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p932 +tp933 +Rp934 +sa(dp935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p936 +tp937 +Rp938 +sa(dp939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p940 +tp941 +Rp942 +sa(dp943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p944 +tp945 +Rp946 +sa(dp947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p948 +tp949 +Rp950 +sa(dp951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p952 +tp953 +Rp954 +sa(dp955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p956 +tp957 +Rp958 +sa(dp959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p960 +tp961 +Rp962 +sa(dp963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p964 +tp965 +Rp966 +sa(dp967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p968 +tp969 +Rp970 +sa(dp971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p972 +tp973 +Rp974 +sa(dp975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p976 +tp977 +Rp978 +sa(dp979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p980 +tp981 +Rp982 +sa(dp983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p984 +tp985 +Rp986 +sa(dp987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p988 +tp989 +Rp990 +sa(dp991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p992 +tp993 +Rp994 +sa(dp995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p996 +tp997 +Rp998 +sa(dp999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1000 +tp1001 +Rp1002 +sa(dp1003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1004 +tp1005 +Rp1006 +sa(dp1007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1008 +tp1009 +Rp1010 +sa(dp1011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1012 +tp1013 +Rp1014 +sa(dp1015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1016 +tp1017 +Rp1018 +sa(dp1019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1020 +tp1021 +Rp1022 +sa(dp1023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1024 +tp1025 +Rp1026 +sa(dp1027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1028 +tp1029 +Rp1030 +sa(dp1031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1032 +tp1033 +Rp1034 +sa(dp1035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1036 +tp1037 +Rp1038 +sa(dp1039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1040 +tp1041 +Rp1042 +sa(dp1043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1044 +tp1045 +Rp1046 +sa(dp1047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1048 +tp1049 +Rp1050 +sa(dp1051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1052 +tp1053 +Rp1054 +sa(dp1055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1056 +tp1057 +Rp1058 +sa(dp1059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1060 +tp1061 +Rp1062 +sa(dp1063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1064 +tp1065 +Rp1066 +sa(dp1067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1068 +tp1069 +Rp1070 +sa(dp1071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1072 +tp1073 +Rp1074 +sa(dp1075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1076 +tp1077 +Rp1078 +sa(dp1079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1080 +tp1081 +Rp1082 +sa(dp1083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1084 +tp1085 +Rp1086 +sa(dp1087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1088 +tp1089 +Rp1090 +sa(dp1091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1092 +tp1093 +Rp1094 +sa(dp1095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1096 +tp1097 +Rp1098 +sa(dp1099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1100 +tp1101 +Rp1102 +sa(dp1103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1104 +tp1105 +Rp1106 +sa(dp1107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1108 +tp1109 +Rp1110 +sa(dp1111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1112 +tp1113 +Rp1114 +sa(dp1115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1116 +tp1117 +Rp1118 +sa(dp1119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1120 +tp1121 +Rp1122 +sa(dp1123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1124 +tp1125 +Rp1126 +sa(dp1127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1128 +tp1129 +Rp1130 +sa(dp1131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1132 +tp1133 +Rp1134 +sa(dp1135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1136 +tp1137 +Rp1138 +sa(dp1139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1140 +tp1141 +Rp1142 +sa(dp1143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1144 +tp1145 +Rp1146 +sa(dp1147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1148 +tp1149 +Rp1150 +sa(dp1151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1152 +tp1153 +Rp1154 +sa(dp1155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1156 +tp1157 +Rp1158 +sa(dp1159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1160 +tp1161 +Rp1162 +sa(dp1163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1164 +tp1165 +Rp1166 +sa(dp1167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1168 +tp1169 +Rp1170 +sa(dp1171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1172 +tp1173 +Rp1174 +sa(dp1175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1176 +tp1177 +Rp1178 +sa(dp1179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1180 +tp1181 +Rp1182 +sa(dp1183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1184 +tp1185 +Rp1186 +sa(dp1187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1188 +tp1189 +Rp1190 +sa(dp1191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1192 +tp1193 +Rp1194 +sa(dp1195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1196 +tp1197 +Rp1198 +sa(dp1199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1200 +tp1201 +Rp1202 +sa(dp1203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1204 +tp1205 +Rp1206 +sa(dp1207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1208 +tp1209 +Rp1210 +sa(dp1211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1212 +tp1213 +Rp1214 +sa(dp1215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1216 +tp1217 +Rp1218 +sa(dp1219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1220 +tp1221 +Rp1222 +sa(dp1223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1224 +tp1225 +Rp1226 +sa(dp1227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1228 +tp1229 +Rp1230 +sa(dp1231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1232 +tp1233 +Rp1234 +sa(dp1235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1236 +tp1237 +Rp1238 +sa(dp1239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1240 +tp1241 +Rp1242 +sa(dp1243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1244 +tp1245 +Rp1246 +sa(dp1247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1248 +tp1249 +Rp1250 +sa(dp1251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1252 +tp1253 +Rp1254 +sa(dp1255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1256 +tp1257 +Rp1258 +sa(dp1259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1260 +tp1261 +Rp1262 +sa(dp1263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1264 +tp1265 +Rp1266 +sa(dp1267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1268 +tp1269 +Rp1270 +sa(dp1271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1272 +tp1273 +Rp1274 +sa(dp1275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1276 +tp1277 +Rp1278 +sa(dp1279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1280 +tp1281 +Rp1282 +sa(dp1283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1284 +tp1285 +Rp1286 +sa(dp1287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1288 +tp1289 +Rp1290 +sa(dp1291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1292 +tp1293 +Rp1294 +sa(dp1295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1296 +tp1297 +Rp1298 +sa(dp1299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1300 +tp1301 +Rp1302 +sa(dp1303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1304 +tp1305 +Rp1306 +sa(dp1307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1308 +tp1309 +Rp1310 +sa(dp1311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1312 +tp1313 +Rp1314 +sa(dp1315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1316 +tp1317 +Rp1318 +sa(dp1319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1320 +tp1321 +Rp1322 +sa(dp1323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1324 +tp1325 +Rp1326 +sa(dp1327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1328 +tp1329 +Rp1330 +sa(dp1331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1332 +tp1333 +Rp1334 +sa(dp1335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1336 +tp1337 +Rp1338 +sa(dp1339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1340 +tp1341 +Rp1342 +sa(dp1343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1344 +tp1345 +Rp1346 +sa(dp1347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1348 +tp1349 +Rp1350 +sa(dp1351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1352 +tp1353 +Rp1354 +sa(dp1355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1356 +tp1357 +Rp1358 +sa(dp1359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1360 +tp1361 +Rp1362 +sa(dp1363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1364 +tp1365 +Rp1366 +sa(dp1367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1368 +tp1369 +Rp1370 +sa(dp1371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1372 +tp1373 +Rp1374 +sa(dp1375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1376 +tp1377 +Rp1378 +sa(dp1379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1380 +tp1381 +Rp1382 +sa(dp1383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1384 +tp1385 +Rp1386 +sa(dp1387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1388 +tp1389 +Rp1390 +sa(dp1391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1392 +tp1393 +Rp1394 +sa(dp1395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1396 +tp1397 +Rp1398 +sa(dp1399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1400 +tp1401 +Rp1402 +sa(dp1403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1404 +tp1405 +Rp1406 +sa(dp1407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1408 +tp1409 +Rp1410 +sa(dp1411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1412 +tp1413 +Rp1414 +sa(dp1415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1416 +tp1417 +Rp1418 +sa(dp1419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1420 +tp1421 +Rp1422 +sa(dp1423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1424 +tp1425 +Rp1426 +sa(dp1427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1428 +tp1429 +Rp1430 +sa(dp1431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1432 +tp1433 +Rp1434 +sa(dp1435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1436 +tp1437 +Rp1438 +sa(dp1439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1440 +tp1441 +Rp1442 +sa(dp1443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1444 +tp1445 +Rp1446 +sa(dp1447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1448 +tp1449 +Rp1450 +sa(dp1451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1452 +tp1453 +Rp1454 +sa(dp1455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1456 +tp1457 +Rp1458 +sa(dp1459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1460 +tp1461 +Rp1462 +sa(dp1463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1464 +tp1465 +Rp1466 +sa(dp1467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1468 +tp1469 +Rp1470 +sa(dp1471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1472 +tp1473 +Rp1474 +sa(dp1475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1476 +tp1477 +Rp1478 +sa(dp1479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1480 +tp1481 +Rp1482 +sa(dp1483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1484 +tp1485 +Rp1486 +sa(dp1487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1488 +tp1489 +Rp1490 +sa(dp1491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1492 +tp1493 +Rp1494 +sa(dp1495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1496 +tp1497 +Rp1498 +sa(dp1499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1500 +tp1501 +Rp1502 +sa(dp1503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1504 +tp1505 +Rp1506 +sa(dp1507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1508 +tp1509 +Rp1510 +sa(dp1511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1512 +tp1513 +Rp1514 +sa(dp1515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1516 +tp1517 +Rp1518 +sa(dp1519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1520 +tp1521 +Rp1522 +sa(dp1523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1524 +tp1525 +Rp1526 +sa(dp1527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1528 +tp1529 +Rp1530 +sa(dp1531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1532 +tp1533 +Rp1534 +sa(dp1535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1536 +tp1537 +Rp1538 +sa(dp1539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1540 +tp1541 +Rp1542 +sa(dp1543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1544 +tp1545 +Rp1546 +sa(dp1547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1548 +tp1549 +Rp1550 +sa(dp1551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1552 +tp1553 +Rp1554 +sa(dp1555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1556 +tp1557 +Rp1558 +sa(dp1559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1560 +tp1561 +Rp1562 +sa(dp1563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1564 +tp1565 +Rp1566 +sa(dp1567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1568 +tp1569 +Rp1570 +sa(dp1571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1572 +tp1573 +Rp1574 +sa(dp1575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1576 +tp1577 +Rp1578 +sa(dp1579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1580 +tp1581 +Rp1582 +sa(dp1583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1584 +tp1585 +Rp1586 +sa(dp1587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1588 +tp1589 +Rp1590 +sa(dp1591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1592 +tp1593 +Rp1594 +sa(dp1595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1596 +tp1597 +Rp1598 +sa(dp1599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1600 +tp1601 +Rp1602 +sa(dp1603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1604 +tp1605 +Rp1606 +sa(dp1607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1608 +tp1609 +Rp1610 +sa(dp1611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1612 +tp1613 +Rp1614 +sa(dp1615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1616 +tp1617 +Rp1618 +sa(dp1619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1620 +tp1621 +Rp1622 +sa(dp1623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1624 +tp1625 +Rp1626 +sa(dp1627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1628 +tp1629 +Rp1630 +sa(dp1631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1632 +tp1633 +Rp1634 +sa(dp1635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1636 +tp1637 +Rp1638 +sa(dp1639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1640 +tp1641 +Rp1642 +sa(dp1643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1644 +tp1645 +Rp1646 +sa(dp1647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1648 +tp1649 +Rp1650 +sa(dp1651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1652 +tp1653 +Rp1654 +sa(dp1655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1656 +tp1657 +Rp1658 +sa(dp1659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1660 +tp1661 +Rp1662 +sa(dp1663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1664 +tp1665 +Rp1666 +sa(dp1667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1668 +tp1669 +Rp1670 +sa(dp1671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1672 +tp1673 +Rp1674 +sa(dp1675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1676 +tp1677 +Rp1678 +sa(dp1679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1680 +tp1681 +Rp1682 +sa(dp1683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1684 +tp1685 +Rp1686 +sa(dp1687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1688 +tp1689 +Rp1690 +sa(dp1691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1692 +tp1693 +Rp1694 +sa(dp1695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1696 +tp1697 +Rp1698 +sa(dp1699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1700 +tp1701 +Rp1702 +sa(dp1703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1704 +tp1705 +Rp1706 +sa(dp1707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1708 +tp1709 +Rp1710 +sa(dp1711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1712 +tp1713 +Rp1714 +sa(dp1715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1716 +tp1717 +Rp1718 +sa(dp1719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1720 +tp1721 +Rp1722 +sa(dp1723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1724 +tp1725 +Rp1726 +sa(dp1727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1728 +tp1729 +Rp1730 +sa(dp1731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1732 +tp1733 +Rp1734 +sa(dp1735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1736 +tp1737 +Rp1738 +sa(dp1739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1740 +tp1741 +Rp1742 +sa(dp1743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1744 +tp1745 +Rp1746 +sa(dp1747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1748 +tp1749 +Rp1750 +sa(dp1751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1752 +tp1753 +Rp1754 +sa(dp1755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1756 +tp1757 +Rp1758 +sa(dp1759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1760 +tp1761 +Rp1762 +sa(dp1763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1764 +tp1765 +Rp1766 +sa(dp1767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1768 +tp1769 +Rp1770 +sa(dp1771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1772 +tp1773 +Rp1774 +sa(dp1775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1776 +tp1777 +Rp1778 +sa(dp1779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1780 +tp1781 +Rp1782 +sa(dp1783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1784 +tp1785 +Rp1786 +sa(dp1787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1788 +tp1789 +Rp1790 +sa(dp1791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1792 +tp1793 +Rp1794 +sa(dp1795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1796 +tp1797 +Rp1798 +sa(dp1799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1800 +tp1801 +Rp1802 +sa(dp1803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1804 +tp1805 +Rp1806 +sa(dp1807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1808 +tp1809 +Rp1810 +sa(dp1811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1812 +tp1813 +Rp1814 +sa(dp1815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1816 +tp1817 +Rp1818 +sa(dp1819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1820 +tp1821 +Rp1822 +sa(dp1823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1824 +tp1825 +Rp1826 +sa(dp1827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1828 +tp1829 +Rp1830 +sa(dp1831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1832 +tp1833 +Rp1834 +sa(dp1835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1836 +tp1837 +Rp1838 +sa(dp1839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1840 +tp1841 +Rp1842 +sa(dp1843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1844 +tp1845 +Rp1846 +sa(dp1847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1848 +tp1849 +Rp1850 +sa(dp1851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1852 +tp1853 +Rp1854 +sa(dp1855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1856 +tp1857 +Rp1858 +sa(dp1859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1860 +tp1861 +Rp1862 +sa(dp1863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1864 +tp1865 +Rp1866 +sa(dp1867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1868 +tp1869 +Rp1870 +sa(dp1871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1872 +tp1873 +Rp1874 +sa(dp1875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1876 +tp1877 +Rp1878 +sa(dp1879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1880 +tp1881 +Rp1882 +sa(dp1883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1884 +tp1885 +Rp1886 +sa(dp1887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1888 +tp1889 +Rp1890 +sa(dp1891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1892 +tp1893 +Rp1894 +sa(dp1895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1896 +tp1897 +Rp1898 +sa(dp1899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1900 +tp1901 +Rp1902 +sa(dp1903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1904 +tp1905 +Rp1906 +sa(dp1907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1908 +tp1909 +Rp1910 +sa(dp1911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1912 +tp1913 +Rp1914 +sa(dp1915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1916 +tp1917 +Rp1918 +sa(dp1919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1920 +tp1921 +Rp1922 +sa(dp1923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1924 +tp1925 +Rp1926 +sa(dp1927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1928 +tp1929 +Rp1930 +sa(dp1931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1932 +tp1933 +Rp1934 +sa(dp1935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1936 +tp1937 +Rp1938 +sa(dp1939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1940 +tp1941 +Rp1942 +sa(dp1943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1944 +tp1945 +Rp1946 +sa(dp1947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1948 +tp1949 +Rp1950 +sa(dp1951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1952 +tp1953 +Rp1954 +sa(dp1955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1956 +tp1957 +Rp1958 +sa(dp1959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1960 +tp1961 +Rp1962 +sa(dp1963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1964 +tp1965 +Rp1966 +sa(dp1967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1968 +tp1969 +Rp1970 +sa(dp1971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1972 +tp1973 +Rp1974 +sa(dp1975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1976 +tp1977 +Rp1978 +sa(dp1979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1980 +tp1981 +Rp1982 +sa(dp1983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1984 +tp1985 +Rp1986 +sa(dp1987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1988 +tp1989 +Rp1990 +sa(dp1991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1992 +tp1993 +Rp1994 +sa(dp1995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1996 +tp1997 +Rp1998 +sa(dp1999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2000 +tp2001 +Rp2002 +sa(dp2003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2004 +tp2005 +Rp2006 +sa(dp2007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2008 +tp2009 +Rp2010 +sa(dp2011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2012 +tp2013 +Rp2014 +sa(dp2015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2016 +tp2017 +Rp2018 +sa(dp2019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2020 +tp2021 +Rp2022 +sa(dp2023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2024 +tp2025 +Rp2026 +sa(dp2027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2028 +tp2029 +Rp2030 +sa(dp2031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2032 +tp2033 +Rp2034 +sa(dp2035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2036 +tp2037 +Rp2038 +sa(dp2039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2040 +tp2041 +Rp2042 +sa(dp2043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2044 +tp2045 +Rp2046 +sa(dp2047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2048 +tp2049 +Rp2050 +sa(dp2051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2052 +tp2053 +Rp2054 +sa(dp2055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2056 +tp2057 +Rp2058 +sa(dp2059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2060 +tp2061 +Rp2062 +sa(dp2063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2064 +tp2065 +Rp2066 +sa(dp2067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2068 +tp2069 +Rp2070 +sa(dp2071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2072 +tp2073 +Rp2074 +sa(dp2075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2076 +tp2077 +Rp2078 +sa(dp2079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2080 +tp2081 +Rp2082 +sa(dp2083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2084 +tp2085 +Rp2086 +sa(dp2087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2088 +tp2089 +Rp2090 +sa(dp2091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2092 +tp2093 +Rp2094 +sa(dp2095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2096 +tp2097 +Rp2098 +sa(dp2099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2100 +tp2101 +Rp2102 +sa(dp2103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2104 +tp2105 +Rp2106 +sa(dp2107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2108 +tp2109 +Rp2110 +sa(dp2111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2112 +tp2113 +Rp2114 +sa(dp2115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2116 +tp2117 +Rp2118 +sa(dp2119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2120 +tp2121 +Rp2122 +sa(dp2123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2124 +tp2125 +Rp2126 +sa(dp2127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2128 +tp2129 +Rp2130 +sa(dp2131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2132 +tp2133 +Rp2134 +sa(dp2135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2136 +tp2137 +Rp2138 +sa(dp2139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2140 +tp2141 +Rp2142 +sa(dp2143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2144 +tp2145 +Rp2146 +sa(dp2147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2148 +tp2149 +Rp2150 +sa(dp2151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2152 +tp2153 +Rp2154 +sa(dp2155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2156 +tp2157 +Rp2158 +sa(dp2159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2160 +tp2161 +Rp2162 +sa(dp2163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2164 +tp2165 +Rp2166 +sa(dp2167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2168 +tp2169 +Rp2170 +sa(dp2171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2172 +tp2173 +Rp2174 +sa(dp2175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2176 +tp2177 +Rp2178 +sa(dp2179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2180 +tp2181 +Rp2182 +sa(dp2183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2184 +tp2185 +Rp2186 +sa(dp2187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2188 +tp2189 +Rp2190 +sa(dp2191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2192 +tp2193 +Rp2194 +sa(dp2195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2196 +tp2197 +Rp2198 +sa(dp2199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2200 +tp2201 +Rp2202 +sa(dp2203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2204 +tp2205 +Rp2206 +sa(dp2207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2208 +tp2209 +Rp2210 +sa(dp2211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2212 +tp2213 +Rp2214 +sa(dp2215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2216 +tp2217 +Rp2218 +sa(dp2219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2220 +tp2221 +Rp2222 +sa(dp2223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2224 +tp2225 +Rp2226 +sa(dp2227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2228 +tp2229 +Rp2230 +sa(dp2231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2232 +tp2233 +Rp2234 +sa(dp2235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2236 +tp2237 +Rp2238 +sa(dp2239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2240 +tp2241 +Rp2242 +sa(dp2243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2244 +tp2245 +Rp2246 +sa(dp2247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2248 +tp2249 +Rp2250 +sa(dp2251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2252 +tp2253 +Rp2254 +sa(dp2255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2256 +tp2257 +Rp2258 +sa(dp2259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2260 +tp2261 +Rp2262 +sa(dp2263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2264 +tp2265 +Rp2266 +sa(dp2267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2268 +tp2269 +Rp2270 +sa(dp2271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2272 +tp2273 +Rp2274 +sa(dp2275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2276 +tp2277 +Rp2278 +sa(dp2279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2280 +tp2281 +Rp2282 +sa(dp2283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2284 +tp2285 +Rp2286 +sa(dp2287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2288 +tp2289 +Rp2290 +sa(dp2291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2292 +tp2293 +Rp2294 +sa(dp2295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2296 +tp2297 +Rp2298 +sa(dp2299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2300 +tp2301 +Rp2302 +sa(dp2303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2304 +tp2305 +Rp2306 +sa(dp2307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2308 +tp2309 +Rp2310 +sa(dp2311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2312 +tp2313 +Rp2314 +sa(dp2315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2316 +tp2317 +Rp2318 +sa(dp2319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2320 +tp2321 +Rp2322 +sa(dp2323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2324 +tp2325 +Rp2326 +sa(dp2327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2328 +tp2329 +Rp2330 +sa(dp2331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2332 +tp2333 +Rp2334 +sa(dp2335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2336 +tp2337 +Rp2338 +sa(dp2339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2340 +tp2341 +Rp2342 +sa(dp2343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2344 +tp2345 +Rp2346 +sa(dp2347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2348 +tp2349 +Rp2350 +sa(dp2351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2352 +tp2353 +Rp2354 +sa(dp2355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2356 +tp2357 +Rp2358 +sa(dp2359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2360 +tp2361 +Rp2362 +sa(dp2363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2364 +tp2365 +Rp2366 +sa(dp2367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2368 +tp2369 +Rp2370 +sa(dp2371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2372 +tp2373 +Rp2374 +sa(dp2375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2376 +tp2377 +Rp2378 +sa(dp2379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2380 +tp2381 +Rp2382 +sa(dp2383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2384 +tp2385 +Rp2386 +sa(dp2387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2388 +tp2389 +Rp2390 +sa(dp2391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2392 +tp2393 +Rp2394 +sa(dp2395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2396 +tp2397 +Rp2398 +sa(dp2399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2400 +tp2401 +Rp2402 +sa(dp2403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2404 +tp2405 +Rp2406 +sa(dp2407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2408 +tp2409 +Rp2410 +sa(dp2411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2412 +tp2413 +Rp2414 +sa(dp2415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2416 +tp2417 +Rp2418 +sa(dp2419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2420 +tp2421 +Rp2422 +sa(dp2423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2424 +tp2425 +Rp2426 +sa(dp2427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2428 +tp2429 +Rp2430 +sa(dp2431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2432 +tp2433 +Rp2434 +sa(dp2435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2436 +tp2437 +Rp2438 +sa(dp2439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2440 +tp2441 +Rp2442 +sa(dp2443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2444 +tp2445 +Rp2446 +sa(dp2447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2448 +tp2449 +Rp2450 +sa(dp2451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2452 +tp2453 +Rp2454 +sa(dp2455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2456 +tp2457 +Rp2458 +sa(dp2459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2460 +tp2461 +Rp2462 +sa(dp2463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2464 +tp2465 +Rp2466 +sa(dp2467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2468 +tp2469 +Rp2470 +sa(dp2471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2472 +tp2473 +Rp2474 +sa(dp2475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2476 +tp2477 +Rp2478 +sa(dp2479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2480 +tp2481 +Rp2482 +sa(dp2483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2484 +tp2485 +Rp2486 +sa(dp2487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2488 +tp2489 +Rp2490 +sa(dp2491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2492 +tp2493 +Rp2494 +sa(dp2495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2496 +tp2497 +Rp2498 +sa(dp2499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2500 +tp2501 +Rp2502 +sa(dp2503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2504 +tp2505 +Rp2506 +sa(dp2507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2508 +tp2509 +Rp2510 +sa(dp2511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2512 +tp2513 +Rp2514 +sa(dp2515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2516 +tp2517 +Rp2518 +sa(dp2519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2520 +tp2521 +Rp2522 +sa(dp2523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2524 +tp2525 +Rp2526 +sa(dp2527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2528 +tp2529 +Rp2530 +sa(dp2531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2532 +tp2533 +Rp2534 +sa(dp2535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2536 +tp2537 +Rp2538 +sa(dp2539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2540 +tp2541 +Rp2542 +sa(dp2543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2544 +tp2545 +Rp2546 +sa(dp2547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2548 +tp2549 +Rp2550 +sa(dp2551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2552 +tp2553 +Rp2554 +sa(dp2555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2556 +tp2557 +Rp2558 +sa(dp2559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2560 +tp2561 +Rp2562 +sa(dp2563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2564 +tp2565 +Rp2566 +sa(dp2567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2568 +tp2569 +Rp2570 +sa(dp2571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2572 +tp2573 +Rp2574 +sa(dp2575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2576 +tp2577 +Rp2578 +sa(dp2579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2580 +tp2581 +Rp2582 +sa(dp2583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2584 +tp2585 +Rp2586 +sa(dp2587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2588 +tp2589 +Rp2590 +sa(dp2591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2592 +tp2593 +Rp2594 +sa(dp2595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2596 +tp2597 +Rp2598 +sa(dp2599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2600 +tp2601 +Rp2602 +sa(dp2603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2604 +tp2605 +Rp2606 +sa(dp2607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2608 +tp2609 +Rp2610 +sa(dp2611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2612 +tp2613 +Rp2614 +sa(dp2615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2616 +tp2617 +Rp2618 +sa(dp2619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2620 +tp2621 +Rp2622 +sa(dp2623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2624 +tp2625 +Rp2626 +sa(dp2627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2628 +tp2629 +Rp2630 +sa(dp2631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2632 +tp2633 +Rp2634 +sa(dp2635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2636 +tp2637 +Rp2638 +sa(dp2639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2640 +tp2641 +Rp2642 +sa(dp2643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2644 +tp2645 +Rp2646 +sa(dp2647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2648 +tp2649 +Rp2650 +sa(dp2651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2652 +tp2653 +Rp2654 +sa(dp2655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2656 +tp2657 +Rp2658 +sa(dp2659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2660 +tp2661 +Rp2662 +sa(dp2663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2664 +tp2665 +Rp2666 +sa(dp2667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2668 +tp2669 +Rp2670 +sa(dp2671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2672 +tp2673 +Rp2674 +sa(dp2675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2676 +tp2677 +Rp2678 +sa(dp2679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2680 +tp2681 +Rp2682 +sa(dp2683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2684 +tp2685 +Rp2686 +sa(dp2687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2688 +tp2689 +Rp2690 +sa(dp2691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2692 +tp2693 +Rp2694 +sa(dp2695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2696 +tp2697 +Rp2698 +sa(dp2699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2700 +tp2701 +Rp2702 +sa(dp2703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2704 +tp2705 +Rp2706 +sa(dp2707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2708 +tp2709 +Rp2710 +sa(dp2711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2712 +tp2713 +Rp2714 +sa(dp2715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2716 +tp2717 +Rp2718 +sa(dp2719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2720 +tp2721 +Rp2722 +sa(dp2723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2724 +tp2725 +Rp2726 +sa(dp2727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2728 +tp2729 +Rp2730 +sa(dp2731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2732 +tp2733 +Rp2734 +sa(dp2735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2736 +tp2737 +Rp2738 +sa(dp2739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2740 +tp2741 +Rp2742 +sa(dp2743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2744 +tp2745 +Rp2746 +sa(dp2747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2748 +tp2749 +Rp2750 +sa(dp2751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2752 +tp2753 +Rp2754 +sa(dp2755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2756 +tp2757 +Rp2758 +sa(dp2759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2760 +tp2761 +Rp2762 +sa(dp2763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2764 +tp2765 +Rp2766 +sa(dp2767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2768 +tp2769 +Rp2770 +sa(dp2771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2772 +tp2773 +Rp2774 +sa(dp2775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2776 +tp2777 +Rp2778 +sa(dp2779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2780 +tp2781 +Rp2782 +sa(dp2783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2784 +tp2785 +Rp2786 +sa(dp2787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2788 +tp2789 +Rp2790 +sa(dp2791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2792 +tp2793 +Rp2794 +sa(dp2795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2796 +tp2797 +Rp2798 +sa(dp2799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2800 +tp2801 +Rp2802 +sa(dp2803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2804 +tp2805 +Rp2806 +sa(dp2807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2808 +tp2809 +Rp2810 +sa(dp2811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2812 +tp2813 +Rp2814 +sa(dp2815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2816 +tp2817 +Rp2818 +sa(dp2819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2820 +tp2821 +Rp2822 +sa(dp2823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2824 +tp2825 +Rp2826 +sa(dp2827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2828 +tp2829 +Rp2830 +sa(dp2831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2832 +tp2833 +Rp2834 +sa(dp2835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2836 +tp2837 +Rp2838 +sa(dp2839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2840 +tp2841 +Rp2842 +sa(dp2843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2844 +tp2845 +Rp2846 +sa(dp2847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2848 +tp2849 +Rp2850 +sa(dp2851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2852 +tp2853 +Rp2854 +sa(dp2855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2856 +tp2857 +Rp2858 +sa(dp2859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2860 +tp2861 +Rp2862 +sa(dp2863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2864 +tp2865 +Rp2866 +sa(dp2867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2868 +tp2869 +Rp2870 +sa(dp2871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2872 +tp2873 +Rp2874 +sa(dp2875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2876 +tp2877 +Rp2878 +sa(dp2879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2880 +tp2881 +Rp2882 +sa(dp2883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2884 +tp2885 +Rp2886 +sa(dp2887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2888 +tp2889 +Rp2890 +sa(dp2891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2892 +tp2893 +Rp2894 +sa(dp2895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2896 +tp2897 +Rp2898 +sa(dp2899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2900 +tp2901 +Rp2902 +sa(dp2903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2904 +tp2905 +Rp2906 +sa(dp2907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2908 +tp2909 +Rp2910 +sa(dp2911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2912 +tp2913 +Rp2914 +sa(dp2915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2916 +tp2917 +Rp2918 +sa(dp2919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2920 +tp2921 +Rp2922 +sa(dp2923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2924 +tp2925 +Rp2926 +sa(dp2927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2928 +tp2929 +Rp2930 +sa(dp2931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2932 +tp2933 +Rp2934 +sa(dp2935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2936 +tp2937 +Rp2938 +sa(dp2939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2940 +tp2941 +Rp2942 +sa(dp2943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2944 +tp2945 +Rp2946 +sa(dp2947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2948 +tp2949 +Rp2950 +sa(dp2951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2952 +tp2953 +Rp2954 +sa(dp2955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2956 +tp2957 +Rp2958 +sa(dp2959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2960 +tp2961 +Rp2962 +sa(dp2963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2964 +tp2965 +Rp2966 +sa(dp2967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2968 +tp2969 +Rp2970 +sa(dp2971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2972 +tp2973 +Rp2974 +sa(dp2975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2976 +tp2977 +Rp2978 +sa(dp2979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2980 +tp2981 +Rp2982 +sa(dp2983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2984 +tp2985 +Rp2986 +sa(dp2987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2988 +tp2989 +Rp2990 +sa(dp2991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2992 +tp2993 +Rp2994 +sa(dp2995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2996 +tp2997 +Rp2998 +sa(dp2999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3000 +tp3001 +Rp3002 +sa(dp3003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3004 +tp3005 +Rp3006 +sa(dp3007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3008 +tp3009 +Rp3010 +sa(dp3011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3012 +tp3013 +Rp3014 +sa(dp3015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3016 +tp3017 +Rp3018 +sa(dp3019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3020 +tp3021 +Rp3022 +sa(dp3023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3024 +tp3025 +Rp3026 +sa(dp3027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3028 +tp3029 +Rp3030 +sa(dp3031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3032 +tp3033 +Rp3034 +sa(dp3035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3036 +tp3037 +Rp3038 +sa(dp3039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3040 +tp3041 +Rp3042 +sa(dp3043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3044 +tp3045 +Rp3046 +sa(dp3047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3048 +tp3049 +Rp3050 +sa(dp3051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3052 +tp3053 +Rp3054 +sa(dp3055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3056 +tp3057 +Rp3058 +sa(dp3059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3060 +tp3061 +Rp3062 +sa(dp3063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3064 +tp3065 +Rp3066 +sa(dp3067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3068 +tp3069 +Rp3070 +sa(dp3071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3072 +tp3073 +Rp3074 +sa(dp3075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3076 +tp3077 +Rp3078 +sa(dp3079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3080 +tp3081 +Rp3082 +sa(dp3083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3084 +tp3085 +Rp3086 +sa(dp3087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3088 +tp3089 +Rp3090 +sa(dp3091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3092 +tp3093 +Rp3094 +sa(dp3095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3096 +tp3097 +Rp3098 +sa(dp3099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3100 +tp3101 +Rp3102 +sa(dp3103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3104 +tp3105 +Rp3106 +sa(dp3107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3108 +tp3109 +Rp3110 +sa(dp3111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3112 +tp3113 +Rp3114 +sa(dp3115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3116 +tp3117 +Rp3118 +sa(dp3119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3120 +tp3121 +Rp3122 +sa(dp3123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3124 +tp3125 +Rp3126 +sa(dp3127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3128 +tp3129 +Rp3130 +sa(dp3131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3132 +tp3133 +Rp3134 +sa(dp3135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3136 +tp3137 +Rp3138 +sa(dp3139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3140 +tp3141 +Rp3142 +sa(dp3143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3144 +tp3145 +Rp3146 +sa(dp3147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3148 +tp3149 +Rp3150 +sa(dp3151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3152 +tp3153 +Rp3154 +sa(dp3155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3156 +tp3157 +Rp3158 +sa(dp3159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3160 +tp3161 +Rp3162 +sa(dp3163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3164 +tp3165 +Rp3166 +sa(dp3167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3168 +tp3169 +Rp3170 +sa(dp3171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3172 +tp3173 +Rp3174 +sa(dp3175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3176 +tp3177 +Rp3178 +sa(dp3179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3180 +tp3181 +Rp3182 +sa(dp3183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3184 +tp3185 +Rp3186 +sa(dp3187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3188 +tp3189 +Rp3190 +sa(dp3191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3192 +tp3193 +Rp3194 +sa(dp3195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3196 +tp3197 +Rp3198 +sa(dp3199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3200 +tp3201 +Rp3202 +sa(dp3203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3204 +tp3205 +Rp3206 +sa(dp3207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3208 +tp3209 +Rp3210 +sa(dp3211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3212 +tp3213 +Rp3214 +sa(dp3215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3216 +tp3217 +Rp3218 +sa(dp3219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3220 +tp3221 +Rp3222 +sa(dp3223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3224 +tp3225 +Rp3226 +sa(dp3227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3228 +tp3229 +Rp3230 +sa(dp3231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3232 +tp3233 +Rp3234 +sa(dp3235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3236 +tp3237 +Rp3238 +sa(dp3239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3240 +tp3241 +Rp3242 +sa(dp3243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3244 +tp3245 +Rp3246 +sa(dp3247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3248 +tp3249 +Rp3250 +sa(dp3251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3252 +tp3253 +Rp3254 +sa(dp3255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3256 +tp3257 +Rp3258 +sa(dp3259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3260 +tp3261 +Rp3262 +sa(dp3263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3264 +tp3265 +Rp3266 +sa(dp3267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3268 +tp3269 +Rp3270 +sa(dp3271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3272 +tp3273 +Rp3274 +sa(dp3275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3276 +tp3277 +Rp3278 +sa(dp3279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3280 +tp3281 +Rp3282 +sa(dp3283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3284 +tp3285 +Rp3286 +sa(dp3287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3288 +tp3289 +Rp3290 +sa(dp3291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3292 +tp3293 +Rp3294 +sa(dp3295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3296 +tp3297 +Rp3298 +sa(dp3299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3300 +tp3301 +Rp3302 +sa(dp3303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3304 +tp3305 +Rp3306 +sa(dp3307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3308 +tp3309 +Rp3310 +sa(dp3311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3312 +tp3313 +Rp3314 +sa(dp3315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3316 +tp3317 +Rp3318 +sa(dp3319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3320 +tp3321 +Rp3322 +sa(dp3323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3324 +tp3325 +Rp3326 +sa(dp3327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3328 +tp3329 +Rp3330 +sa(dp3331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3332 +tp3333 +Rp3334 +sa(dp3335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3336 +tp3337 +Rp3338 +sa(dp3339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3340 +tp3341 +Rp3342 +sa(dp3343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3344 +tp3345 +Rp3346 +sa(dp3347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3348 +tp3349 +Rp3350 +sa(dp3351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3352 +tp3353 +Rp3354 +sa(dp3355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3356 +tp3357 +Rp3358 +sa(dp3359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3360 +tp3361 +Rp3362 +sa(dp3363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3364 +tp3365 +Rp3366 +sa(dp3367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3368 +tp3369 +Rp3370 +sa(dp3371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3372 +tp3373 +Rp3374 +sa(dp3375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3376 +tp3377 +Rp3378 +sa(dp3379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3380 +tp3381 +Rp3382 +sa(dp3383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3384 +tp3385 +Rp3386 +sa(dp3387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3388 +tp3389 +Rp3390 +sa(dp3391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3392 +tp3393 +Rp3394 +sa(dp3395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3396 +tp3397 +Rp3398 +sa(dp3399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3400 +tp3401 +Rp3402 +sa(dp3403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3404 +tp3405 +Rp3406 +sa(dp3407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3408 +tp3409 +Rp3410 +sa(dp3411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3412 +tp3413 +Rp3414 +sa(dp3415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3416 +tp3417 +Rp3418 +sa(dp3419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3420 +tp3421 +Rp3422 +sa(dp3423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3424 +tp3425 +Rp3426 +sa(dp3427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3428 +tp3429 +Rp3430 +sa(dp3431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3432 +tp3433 +Rp3434 +sa(dp3435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3436 +tp3437 +Rp3438 +sa(dp3439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3440 +tp3441 +Rp3442 +sa(dp3443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3444 +tp3445 +Rp3446 +sa(dp3447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3448 +tp3449 +Rp3450 +sa(dp3451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3452 +tp3453 +Rp3454 +sa(dp3455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3456 +tp3457 +Rp3458 +sa(dp3459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3460 +tp3461 +Rp3462 +sa(dp3463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3464 +tp3465 +Rp3466 +sa(dp3467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3468 +tp3469 +Rp3470 +sa(dp3471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3472 +tp3473 +Rp3474 +sa(dp3475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3476 +tp3477 +Rp3478 +sa(dp3479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3480 +tp3481 +Rp3482 +sa(dp3483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3484 +tp3485 +Rp3486 +sa(dp3487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3488 +tp3489 +Rp3490 +sa(dp3491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3492 +tp3493 +Rp3494 +sa(dp3495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3496 +tp3497 +Rp3498 +sa(dp3499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3500 +tp3501 +Rp3502 +sa(dp3503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3504 +tp3505 +Rp3506 +sa(dp3507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3508 +tp3509 +Rp3510 +sa(dp3511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3512 +tp3513 +Rp3514 +sa(dp3515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3516 +tp3517 +Rp3518 +sa(dp3519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3520 +tp3521 +Rp3522 +sa(dp3523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3524 +tp3525 +Rp3526 +sa(dp3527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3528 +tp3529 +Rp3530 +sa(dp3531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3532 +tp3533 +Rp3534 +sa(dp3535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3536 +tp3537 +Rp3538 +sa(dp3539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3540 +tp3541 +Rp3542 +sa(dp3543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3544 +tp3545 +Rp3546 +sa(dp3547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3548 +tp3549 +Rp3550 +sa(dp3551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3552 +tp3553 +Rp3554 +sa(dp3555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3556 +tp3557 +Rp3558 +sa(dp3559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3560 +tp3561 +Rp3562 +sa(dp3563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3564 +tp3565 +Rp3566 +sa(dp3567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3568 +tp3569 +Rp3570 +sa(dp3571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3572 +tp3573 +Rp3574 +sa(dp3575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3576 +tp3577 +Rp3578 +sa(dp3579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3580 +tp3581 +Rp3582 +sa(dp3583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3584 +tp3585 +Rp3586 +sa(dp3587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3588 +tp3589 +Rp3590 +sa(dp3591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3592 +tp3593 +Rp3594 +sa(dp3595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3596 +tp3597 +Rp3598 +sa(dp3599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3600 +tp3601 +Rp3602 +sa(dp3603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3604 +tp3605 +Rp3606 +sa(dp3607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3608 +tp3609 +Rp3610 +sa(dp3611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3612 +tp3613 +Rp3614 +sa(dp3615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3616 +tp3617 +Rp3618 +sa(dp3619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3620 +tp3621 +Rp3622 +sa(dp3623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3624 +tp3625 +Rp3626 +sa(dp3627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3628 +tp3629 +Rp3630 +sa(dp3631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3632 +tp3633 +Rp3634 +sa(dp3635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3636 +tp3637 +Rp3638 +sa(dp3639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3640 +tp3641 +Rp3642 +sa(dp3643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3644 +tp3645 +Rp3646 +sa(dp3647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3648 +tp3649 +Rp3650 +sa(dp3651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3652 +tp3653 +Rp3654 +sa(dp3655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3656 +tp3657 +Rp3658 +sa(dp3659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3660 +tp3661 +Rp3662 +sa(dp3663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3664 +tp3665 +Rp3666 +sa(dp3667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3668 +tp3669 +Rp3670 +sa(dp3671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3672 +tp3673 +Rp3674 +sa(dp3675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3676 +tp3677 +Rp3678 +sa(dp3679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3680 +tp3681 +Rp3682 +sa(dp3683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3684 +tp3685 +Rp3686 +sa(dp3687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3688 +tp3689 +Rp3690 +sa(dp3691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3692 +tp3693 +Rp3694 +sa(dp3695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3696 +tp3697 +Rp3698 +sa(dp3699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3700 +tp3701 +Rp3702 +sa(dp3703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3704 +tp3705 +Rp3706 +sa(dp3707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3708 +tp3709 +Rp3710 +sa(dp3711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3712 +tp3713 +Rp3714 +sa(dp3715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3716 +tp3717 +Rp3718 +sa(dp3719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3720 +tp3721 +Rp3722 +sa(dp3723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3724 +tp3725 +Rp3726 +sa(dp3727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3728 +tp3729 +Rp3730 +sa(dp3731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3732 +tp3733 +Rp3734 +sa(dp3735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3736 +tp3737 +Rp3738 +sa(dp3739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3740 +tp3741 +Rp3742 +sa(dp3743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3744 +tp3745 +Rp3746 +sa(dp3747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3748 +tp3749 +Rp3750 +sa(dp3751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3752 +tp3753 +Rp3754 +sa(dp3755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3756 +tp3757 +Rp3758 +sa(dp3759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3760 +tp3761 +Rp3762 +sa(dp3763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3764 +tp3765 +Rp3766 +sa(dp3767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3768 +tp3769 +Rp3770 +sa(dp3771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3772 +tp3773 +Rp3774 +sa(dp3775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3776 +tp3777 +Rp3778 +sa(dp3779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3780 +tp3781 +Rp3782 +sa(dp3783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3784 +tp3785 +Rp3786 +sa(dp3787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3788 +tp3789 +Rp3790 +sa(dp3791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3792 +tp3793 +Rp3794 +sa(dp3795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3796 +tp3797 +Rp3798 +sa(dp3799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3800 +tp3801 +Rp3802 +sa(dp3803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3804 +tp3805 +Rp3806 +sa(dp3807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3808 +tp3809 +Rp3810 +sa(dp3811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3812 +tp3813 +Rp3814 +sa(dp3815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3816 +tp3817 +Rp3818 +sa(dp3819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3820 +tp3821 +Rp3822 +sa(dp3823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3824 +tp3825 +Rp3826 +sa(dp3827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3828 +tp3829 +Rp3830 +sa(dp3831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3832 +tp3833 +Rp3834 +sa(dp3835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3836 +tp3837 +Rp3838 +sa(dp3839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3840 +tp3841 +Rp3842 +sa(dp3843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3844 +tp3845 +Rp3846 +sa(dp3847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3848 +tp3849 +Rp3850 +sa(dp3851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3852 +tp3853 +Rp3854 +sa(dp3855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3856 +tp3857 +Rp3858 +sa(dp3859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3860 +tp3861 +Rp3862 +sa(dp3863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3864 +tp3865 +Rp3866 +sa(dp3867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3868 +tp3869 +Rp3870 +sa(dp3871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3872 +tp3873 +Rp3874 +sa(dp3875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3876 +tp3877 +Rp3878 +sa(dp3879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3880 +tp3881 +Rp3882 +sa(dp3883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3884 +tp3885 +Rp3886 +sa(dp3887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3888 +tp3889 +Rp3890 +sa(dp3891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3892 +tp3893 +Rp3894 +sa(dp3895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3896 +tp3897 +Rp3898 +sa(dp3899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3900 +tp3901 +Rp3902 +sa(dp3903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3904 +tp3905 +Rp3906 +sa(dp3907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3908 +tp3909 +Rp3910 +sa(dp3911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3912 +tp3913 +Rp3914 +sa(dp3915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3916 +tp3917 +Rp3918 +sa(dp3919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3920 +tp3921 +Rp3922 +sa(dp3923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3924 +tp3925 +Rp3926 +sa(dp3927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3928 +tp3929 +Rp3930 +sa(dp3931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3932 +tp3933 +Rp3934 +sa(dp3935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3936 +tp3937 +Rp3938 +sa(dp3939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3940 +tp3941 +Rp3942 +sa(dp3943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3944 +tp3945 +Rp3946 +sa(dp3947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3948 +tp3949 +Rp3950 +sa(dp3951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3952 +tp3953 +Rp3954 +sa(dp3955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3956 +tp3957 +Rp3958 +sa(dp3959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3960 +tp3961 +Rp3962 +sa(dp3963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3964 +tp3965 +Rp3966 +sa(dp3967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3968 +tp3969 +Rp3970 +sa(dp3971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3972 +tp3973 +Rp3974 +sa(dp3975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3976 +tp3977 +Rp3978 +sa(dp3979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3980 +tp3981 +Rp3982 +sa(dp3983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3984 +tp3985 +Rp3986 +sa(dp3987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3988 +tp3989 +Rp3990 +sa(dp3991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3992 +tp3993 +Rp3994 +sa(dp3995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3996 +tp3997 +Rp3998 +sa(dp3999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4000 +tp4001 +Rp4002 +sa(dp4003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4004 +tp4005 +Rp4006 +sa(dp4007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4008 +tp4009 +Rp4010 +sa(dp4011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4012 +tp4013 +Rp4014 +sa(dp4015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4016 +tp4017 +Rp4018 +sa(dp4019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4020 +tp4021 +Rp4022 +sa(dp4023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4024 +tp4025 +Rp4026 +sa(dp4027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4028 +tp4029 +Rp4030 +sa(dp4031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4032 +tp4033 +Rp4034 +sa(dp4035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4036 +tp4037 +Rp4038 +sa(dp4039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4040 +tp4041 +Rp4042 +sa(dp4043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4044 +tp4045 +Rp4046 +sa(dp4047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4048 +tp4049 +Rp4050 +sa(dp4051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4052 +tp4053 +Rp4054 +sa(dp4055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4056 +tp4057 +Rp4058 +sa(dp4059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4060 +tp4061 +Rp4062 +sa(dp4063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4064 +tp4065 +Rp4066 +sa(dp4067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4068 +tp4069 +Rp4070 +sa(dp4071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4072 +tp4073 +Rp4074 +sa(dp4075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4076 +tp4077 +Rp4078 +sa(dp4079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4080 +tp4081 +Rp4082 +sa(dp4083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4084 +tp4085 +Rp4086 +sa(dp4087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4088 +tp4089 +Rp4090 +sa(dp4091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4092 +tp4093 +Rp4094 +sa(dp4095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4096 +tp4097 +Rp4098 +sa(dp4099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4100 +tp4101 +Rp4102 +sa(dp4103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4104 +tp4105 +Rp4106 +sa(dp4107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4108 +tp4109 +Rp4110 +sa(dp4111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4112 +tp4113 +Rp4114 +sa(dp4115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4116 +tp4117 +Rp4118 +sa(dp4119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4120 +tp4121 +Rp4122 +sa(dp4123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4124 +tp4125 +Rp4126 +sa(dp4127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4128 +tp4129 +Rp4130 +sa(dp4131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4132 +tp4133 +Rp4134 +sa(dp4135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4136 +tp4137 +Rp4138 +sa(dp4139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4140 +tp4141 +Rp4142 +sa(dp4143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4144 +tp4145 +Rp4146 +sa(dp4147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4148 +tp4149 +Rp4150 +sa(dp4151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4152 +tp4153 +Rp4154 +sa(dp4155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4156 +tp4157 +Rp4158 +sa(dp4159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4160 +tp4161 +Rp4162 +sa(dp4163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4164 +tp4165 +Rp4166 +sa(dp4167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4168 +tp4169 +Rp4170 +sa(dp4171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4172 +tp4173 +Rp4174 +sa(dp4175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4176 +tp4177 +Rp4178 +sa(dp4179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4180 +tp4181 +Rp4182 +sa(dp4183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4184 +tp4185 +Rp4186 +sa(dp4187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4188 +tp4189 +Rp4190 +sa(dp4191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4192 +tp4193 +Rp4194 +sa(dp4195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4196 +tp4197 +Rp4198 +sa(dp4199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4200 +tp4201 +Rp4202 +sa(dp4203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4204 +tp4205 +Rp4206 +sa(dp4207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4208 +tp4209 +Rp4210 +sa(dp4211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4212 +tp4213 +Rp4214 +sa(dp4215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4216 +tp4217 +Rp4218 +sa(dp4219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4220 +tp4221 +Rp4222 +sa(dp4223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4224 +tp4225 +Rp4226 +sa(dp4227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4228 +tp4229 +Rp4230 +sa(dp4231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4232 +tp4233 +Rp4234 +sa(dp4235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4236 +tp4237 +Rp4238 +sa(dp4239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4240 +tp4241 +Rp4242 +sa(dp4243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4244 +tp4245 +Rp4246 +sa(dp4247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4248 +tp4249 +Rp4250 +sa(dp4251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4252 +tp4253 +Rp4254 +sa(dp4255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4256 +tp4257 +Rp4258 +sa(dp4259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4260 +tp4261 +Rp4262 +sa(dp4263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4264 +tp4265 +Rp4266 +sa(dp4267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4268 +tp4269 +Rp4270 +sa(dp4271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4272 +tp4273 +Rp4274 +sa(dp4275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4276 +tp4277 +Rp4278 +sa(dp4279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4280 +tp4281 +Rp4282 +sa(dp4283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4284 +tp4285 +Rp4286 +sa(dp4287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4288 +tp4289 +Rp4290 +sa(dp4291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4292 +tp4293 +Rp4294 +sa(dp4295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4296 +tp4297 +Rp4298 +sa(dp4299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4300 +tp4301 +Rp4302 +sa(dp4303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4304 +tp4305 +Rp4306 +sa(dp4307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4308 +tp4309 +Rp4310 +sa(dp4311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4312 +tp4313 +Rp4314 +sa(dp4315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4316 +tp4317 +Rp4318 +sa(dp4319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4320 +tp4321 +Rp4322 +sa(dp4323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4324 +tp4325 +Rp4326 +sa(dp4327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4328 +tp4329 +Rp4330 +sa(dp4331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4332 +tp4333 +Rp4334 +sa(dp4335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4336 +tp4337 +Rp4338 +sa(dp4339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4340 +tp4341 +Rp4342 +sa(dp4343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4344 +tp4345 +Rp4346 +sa(dp4347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4348 +tp4349 +Rp4350 +sa(dp4351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4352 +tp4353 +Rp4354 +sa(dp4355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4356 +tp4357 +Rp4358 +sa(dp4359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4360 +tp4361 +Rp4362 +sa(dp4363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4364 +tp4365 +Rp4366 +sa(dp4367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4368 +tp4369 +Rp4370 +sa(dp4371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4372 +tp4373 +Rp4374 +sa(dp4375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4376 +tp4377 +Rp4378 +sa(dp4379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4380 +tp4381 +Rp4382 +sa(dp4383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4384 +tp4385 +Rp4386 +sa(dp4387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4388 +tp4389 +Rp4390 +sa(dp4391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4392 +tp4393 +Rp4394 +sa(dp4395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4396 +tp4397 +Rp4398 +sa(dp4399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4400 +tp4401 +Rp4402 +sa(dp4403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4404 +tp4405 +Rp4406 +sa(dp4407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4408 +tp4409 +Rp4410 +sa(dp4411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4412 +tp4413 +Rp4414 +sa(dp4415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4416 +tp4417 +Rp4418 +sa(dp4419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4420 +tp4421 +Rp4422 +sa(dp4423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4424 +tp4425 +Rp4426 +sa(dp4427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4428 +tp4429 +Rp4430 +sa(dp4431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4432 +tp4433 +Rp4434 +sa(dp4435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4436 +tp4437 +Rp4438 +sa(dp4439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4440 +tp4441 +Rp4442 +sa(dp4443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4444 +tp4445 +Rp4446 +sa(dp4447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4448 +tp4449 +Rp4450 +sa(dp4451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4452 +tp4453 +Rp4454 +sa(dp4455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4456 +tp4457 +Rp4458 +sa(dp4459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4460 +tp4461 +Rp4462 +sa(dp4463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4464 +tp4465 +Rp4466 +sa(dp4467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4468 +tp4469 +Rp4470 +sa(dp4471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4472 +tp4473 +Rp4474 +sa(dp4475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4476 +tp4477 +Rp4478 +sa(dp4479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4480 +tp4481 +Rp4482 +sa(dp4483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4484 +tp4485 +Rp4486 +sa(dp4487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4488 +tp4489 +Rp4490 +sa(dp4491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4492 +tp4493 +Rp4494 +sa(dp4495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4496 +tp4497 +Rp4498 +sa(dp4499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4500 +tp4501 +Rp4502 +sa(dp4503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4504 +tp4505 +Rp4506 +sa(dp4507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4508 +tp4509 +Rp4510 +sa(dp4511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4512 +tp4513 +Rp4514 +sa(dp4515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4516 +tp4517 +Rp4518 +sa(dp4519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4520 +tp4521 +Rp4522 +sa(dp4523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4524 +tp4525 +Rp4526 +sa(dp4527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4528 +tp4529 +Rp4530 +sa(dp4531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4532 +tp4533 +Rp4534 +sa(dp4535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4536 +tp4537 +Rp4538 +sa(dp4539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4540 +tp4541 +Rp4542 +sa(dp4543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4544 +tp4545 +Rp4546 +sa(dp4547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4548 +tp4549 +Rp4550 +sa(dp4551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4552 +tp4553 +Rp4554 +sa(dp4555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4556 +tp4557 +Rp4558 +sa(dp4559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4560 +tp4561 +Rp4562 +sa(dp4563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4564 +tp4565 +Rp4566 +sa(dp4567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4568 +tp4569 +Rp4570 +sa(dp4571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4572 +tp4573 +Rp4574 +sa(dp4575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4576 +tp4577 +Rp4578 +sa(dp4579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4580 +tp4581 +Rp4582 +sa(dp4583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4584 +tp4585 +Rp4586 +sa(dp4587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4588 +tp4589 +Rp4590 +sa(dp4591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4592 +tp4593 +Rp4594 +sa(dp4595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4596 +tp4597 +Rp4598 +sa(dp4599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4600 +tp4601 +Rp4602 +sa(dp4603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4604 +tp4605 +Rp4606 +sa(dp4607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4608 +tp4609 +Rp4610 +sa(dp4611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4612 +tp4613 +Rp4614 +sa(dp4615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4616 +tp4617 +Rp4618 +sa(dp4619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4620 +tp4621 +Rp4622 +sa(dp4623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4624 +tp4625 +Rp4626 +sa(dp4627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4628 +tp4629 +Rp4630 +sa(dp4631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4632 +tp4633 +Rp4634 +sa(dp4635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4636 +tp4637 +Rp4638 +sa(dp4639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4640 +tp4641 +Rp4642 +sa(dp4643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4644 +tp4645 +Rp4646 +sa(dp4647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4648 +tp4649 +Rp4650 +sa(dp4651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4652 +tp4653 +Rp4654 +sa(dp4655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4656 +tp4657 +Rp4658 +sa(dp4659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4660 +tp4661 +Rp4662 +sa(dp4663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4664 +tp4665 +Rp4666 +sa(dp4667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4668 +tp4669 +Rp4670 +sa(dp4671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4672 +tp4673 +Rp4674 +sa(dp4675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4676 +tp4677 +Rp4678 +sa(dp4679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4680 +tp4681 +Rp4682 +sa(dp4683 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4684 +tp4685 +Rp4686 +sa(dp4687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4688 +tp4689 +Rp4690 +sa(dp4691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4692 +tp4693 +Rp4694 +sa(dp4695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4696 +tp4697 +Rp4698 +sa(dp4699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4700 +tp4701 +Rp4702 +sa(dp4703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4704 +tp4705 +Rp4706 +sa(dp4707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4708 +tp4709 +Rp4710 +sa(dp4711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4712 +tp4713 +Rp4714 +sa(dp4715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4716 +tp4717 +Rp4718 +sa(dp4719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4720 +tp4721 +Rp4722 +sa(dp4723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4724 +tp4725 +Rp4726 +sa(dp4727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4728 +tp4729 +Rp4730 +sa(dp4731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4732 +tp4733 +Rp4734 +sa(dp4735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4736 +tp4737 +Rp4738 +sa(dp4739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4740 +tp4741 +Rp4742 +sa(dp4743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4744 +tp4745 +Rp4746 +sa(dp4747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4748 +tp4749 +Rp4750 +sa(dp4751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4752 +tp4753 +Rp4754 +sa(dp4755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4756 +tp4757 +Rp4758 +sa(dp4759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4760 +tp4761 +Rp4762 +sa(dp4763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4764 +tp4765 +Rp4766 +sa(dp4767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4768 +tp4769 +Rp4770 +sa(dp4771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4772 +tp4773 +Rp4774 +sa(dp4775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4776 +tp4777 +Rp4778 +sa(dp4779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4780 +tp4781 +Rp4782 +sa(dp4783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4784 +tp4785 +Rp4786 +sa(dp4787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4788 +tp4789 +Rp4790 +sa(dp4791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4792 +tp4793 +Rp4794 +sa(dp4795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4796 +tp4797 +Rp4798 +sa(dp4799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4800 +tp4801 +Rp4802 +sa(dp4803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4804 +tp4805 +Rp4806 +sa(dp4807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4808 +tp4809 +Rp4810 +sa(dp4811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4812 +tp4813 +Rp4814 +sa(dp4815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4816 +tp4817 +Rp4818 +sa(dp4819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4820 +tp4821 +Rp4822 +sa(dp4823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4824 +tp4825 +Rp4826 +sa(dp4827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4828 +tp4829 +Rp4830 +sa(dp4831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4832 +tp4833 +Rp4834 +sa(dp4835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4836 +tp4837 +Rp4838 +sa(dp4839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4840 +tp4841 +Rp4842 +sa(dp4843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4844 +tp4845 +Rp4846 +sa(dp4847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4848 +tp4849 +Rp4850 +sa(dp4851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4852 +tp4853 +Rp4854 +sa(dp4855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4856 +tp4857 +Rp4858 +sa(dp4859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4860 +tp4861 +Rp4862 +sa(dp4863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4864 +tp4865 +Rp4866 +sa(dp4867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4868 +tp4869 +Rp4870 +sa(dp4871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4872 +tp4873 +Rp4874 +sa(dp4875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4876 +tp4877 +Rp4878 +sa(dp4879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4880 +tp4881 +Rp4882 +sa(dp4883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4884 +tp4885 +Rp4886 +sa(dp4887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4888 +tp4889 +Rp4890 +sa(dp4891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4892 +tp4893 +Rp4894 +sa(dp4895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4896 +tp4897 +Rp4898 +sa(dp4899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4900 +tp4901 +Rp4902 +sa(dp4903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4904 +tp4905 +Rp4906 +sa(dp4907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4908 +tp4909 +Rp4910 +sa(dp4911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4912 +tp4913 +Rp4914 +sa(dp4915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4916 +tp4917 +Rp4918 +sa(dp4919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4920 +tp4921 +Rp4922 +sa(dp4923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4924 +tp4925 +Rp4926 +sa(dp4927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4928 +tp4929 +Rp4930 +sa(dp4931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4932 +tp4933 +Rp4934 +sa(dp4935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4936 +tp4937 +Rp4938 +sa(dp4939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4940 +tp4941 +Rp4942 +sa(dp4943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4944 +tp4945 +Rp4946 +sa(dp4947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4948 +tp4949 +Rp4950 +sa(dp4951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4952 +tp4953 +Rp4954 +sa(dp4955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4956 +tp4957 +Rp4958 +sa(dp4959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4960 +tp4961 +Rp4962 +sa(dp4963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4964 +tp4965 +Rp4966 +sa(dp4967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4968 +tp4969 +Rp4970 +sa(dp4971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4972 +tp4973 +Rp4974 +sa(dp4975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4976 +tp4977 +Rp4978 +sa(dp4979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4980 +tp4981 +Rp4982 +sa(dp4983 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4984 +tp4985 +Rp4986 +sa(dp4987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4988 +tp4989 +Rp4990 +sa(dp4991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4992 +tp4993 +Rp4994 +sa(dp4995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4996 +tp4997 +Rp4998 +sa(dp4999 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5000 +tp5001 +Rp5002 +sa(dp5003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5004 +tp5005 +Rp5006 +sa(dp5007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5008 +tp5009 +Rp5010 +sa(dp5011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5012 +tp5013 +Rp5014 +sa(dp5015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5016 +tp5017 +Rp5018 +sa(dp5019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5020 +tp5021 +Rp5022 +sa(dp5023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5024 +tp5025 +Rp5026 +sa(dp5027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5028 +tp5029 +Rp5030 +sa(dp5031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5032 +tp5033 +Rp5034 +sa(dp5035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5036 +tp5037 +Rp5038 +sa(dp5039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5040 +tp5041 +Rp5042 +sa(dp5043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5044 +tp5045 +Rp5046 +sa(dp5047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5048 +tp5049 +Rp5050 +sa(dp5051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5052 +tp5053 +Rp5054 +sa(dp5055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5056 +tp5057 +Rp5058 +sa(dp5059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5060 +tp5061 +Rp5062 +sa(dp5063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5064 +tp5065 +Rp5066 +sa(dp5067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5068 +tp5069 +Rp5070 +sa(dp5071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5072 +tp5073 +Rp5074 +sa(dp5075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5076 +tp5077 +Rp5078 +sa(dp5079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5080 +tp5081 +Rp5082 +sa(dp5083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5084 +tp5085 +Rp5086 +sa(dp5087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5088 +tp5089 +Rp5090 +sa(dp5091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5092 +tp5093 +Rp5094 +sa(dp5095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5096 +tp5097 +Rp5098 +sa(dp5099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5100 +tp5101 +Rp5102 +sa(dp5103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5104 +tp5105 +Rp5106 +sa(dp5107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5108 +tp5109 +Rp5110 +sa(dp5111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5112 +tp5113 +Rp5114 +sa(dp5115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5116 +tp5117 +Rp5118 +sa(dp5119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5120 +tp5121 +Rp5122 +sa(dp5123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5124 +tp5125 +Rp5126 +sa(dp5127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5128 +tp5129 +Rp5130 +sa(dp5131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5132 +tp5133 +Rp5134 +sa(dp5135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5136 +tp5137 +Rp5138 +sa(dp5139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5140 +tp5141 +Rp5142 +sa(dp5143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5144 +tp5145 +Rp5146 +sa(dp5147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5148 +tp5149 +Rp5150 +sa(dp5151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5152 +tp5153 +Rp5154 +sa(dp5155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5156 +tp5157 +Rp5158 +sa(dp5159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5160 +tp5161 +Rp5162 +sa(dp5163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5164 +tp5165 +Rp5166 +sa(dp5167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5168 +tp5169 +Rp5170 +sa(dp5171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5172 +tp5173 +Rp5174 +sa(dp5175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5176 +tp5177 +Rp5178 +sa(dp5179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5180 +tp5181 +Rp5182 +sa(dp5183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5184 +tp5185 +Rp5186 +sa(dp5187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5188 +tp5189 +Rp5190 +sa(dp5191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5192 +tp5193 +Rp5194 +sa(dp5195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5196 +tp5197 +Rp5198 +sa(dp5199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5200 +tp5201 +Rp5202 +sa(dp5203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5204 +tp5205 +Rp5206 +sa(dp5207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5208 +tp5209 +Rp5210 +sa(dp5211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5212 +tp5213 +Rp5214 +sa(dp5215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5216 +tp5217 +Rp5218 +sa(dp5219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5220 +tp5221 +Rp5222 +sa(dp5223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5224 +tp5225 +Rp5226 +sa(dp5227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5228 +tp5229 +Rp5230 +sa(dp5231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5232 +tp5233 +Rp5234 +sa(dp5235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5236 +tp5237 +Rp5238 +sa(dp5239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5240 +tp5241 +Rp5242 +sa(dp5243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5244 +tp5245 +Rp5246 +sa(dp5247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5248 +tp5249 +Rp5250 +sa(dp5251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5252 +tp5253 +Rp5254 +sa(dp5255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5256 +tp5257 +Rp5258 +sa(dp5259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5260 +tp5261 +Rp5262 +sa(dp5263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5264 +tp5265 +Rp5266 +sa(dp5267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5268 +tp5269 +Rp5270 +sa(dp5271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5272 +tp5273 +Rp5274 +sa(dp5275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5276 +tp5277 +Rp5278 +sa(dp5279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5280 +tp5281 +Rp5282 +sa(dp5283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5284 +tp5285 +Rp5286 +sa(dp5287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5288 +tp5289 +Rp5290 +sa(dp5291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5292 +tp5293 +Rp5294 +sa(dp5295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5296 +tp5297 +Rp5298 +sa(dp5299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5300 +tp5301 +Rp5302 +sa(dp5303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5304 +tp5305 +Rp5306 +sa(dp5307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5308 +tp5309 +Rp5310 +sa(dp5311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5312 +tp5313 +Rp5314 +sa(dp5315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5316 +tp5317 +Rp5318 +sa(dp5319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5320 +tp5321 +Rp5322 +sa(dp5323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5324 +tp5325 +Rp5326 +sa(dp5327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5328 +tp5329 +Rp5330 +sa(dp5331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5332 +tp5333 +Rp5334 +sa(dp5335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5336 +tp5337 +Rp5338 +sa(dp5339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5340 +tp5341 +Rp5342 +sa(dp5343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5344 +tp5345 +Rp5346 +sa(dp5347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5348 +tp5349 +Rp5350 +sa(dp5351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5352 +tp5353 +Rp5354 +sa(dp5355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5356 +tp5357 +Rp5358 +sa(dp5359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5360 +tp5361 +Rp5362 +sa(dp5363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5364 +tp5365 +Rp5366 +sa(dp5367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5368 +tp5369 +Rp5370 +sa(dp5371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5372 +tp5373 +Rp5374 +sa(dp5375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5376 +tp5377 +Rp5378 +sa(dp5379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5380 +tp5381 +Rp5382 +sa(dp5383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5384 +tp5385 +Rp5386 +sa(dp5387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5388 +tp5389 +Rp5390 +sa(dp5391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5392 +tp5393 +Rp5394 +sa(dp5395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5396 +tp5397 +Rp5398 +sa(dp5399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5400 +tp5401 +Rp5402 +sa(dp5403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5404 +tp5405 +Rp5406 +sa(dp5407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5408 +tp5409 +Rp5410 +sa(dp5411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5412 +tp5413 +Rp5414 +sa(dp5415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5416 +tp5417 +Rp5418 +sa(dp5419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5420 +tp5421 +Rp5422 +sa(dp5423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5424 +tp5425 +Rp5426 +sa(dp5427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5428 +tp5429 +Rp5430 +sa(dp5431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5432 +tp5433 +Rp5434 +sa(dp5435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5436 +tp5437 +Rp5438 +sa(dp5439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5440 +tp5441 +Rp5442 +sa(dp5443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5444 +tp5445 +Rp5446 +sa(dp5447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5448 +tp5449 +Rp5450 +sa(dp5451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5452 +tp5453 +Rp5454 +sa(dp5455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5456 +tp5457 +Rp5458 +sa(dp5459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5460 +tp5461 +Rp5462 +sa(dp5463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5464 +tp5465 +Rp5466 +sa(dp5467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5468 +tp5469 +Rp5470 +sa(dp5471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5472 +tp5473 +Rp5474 +sa(dp5475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5476 +tp5477 +Rp5478 +sa(dp5479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5480 +tp5481 +Rp5482 +sa(dp5483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5484 +tp5485 +Rp5486 +sa(dp5487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5488 +tp5489 +Rp5490 +sa(dp5491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5492 +tp5493 +Rp5494 +sa(dp5495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5496 +tp5497 +Rp5498 +sa(dp5499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5500 +tp5501 +Rp5502 +sa(dp5503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5504 +tp5505 +Rp5506 +sa(dp5507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5508 +tp5509 +Rp5510 +sa(dp5511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5512 +tp5513 +Rp5514 +sa(dp5515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5516 +tp5517 +Rp5518 +sa(dp5519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5520 +tp5521 +Rp5522 +sa(dp5523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5524 +tp5525 +Rp5526 +sa(dp5527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5528 +tp5529 +Rp5530 +sa(dp5531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5532 +tp5533 +Rp5534 +sa(dp5535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5536 +tp5537 +Rp5538 +sa(dp5539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5540 +tp5541 +Rp5542 +sa(dp5543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5544 +tp5545 +Rp5546 +sa(dp5547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5548 +tp5549 +Rp5550 +sa(dp5551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5552 +tp5553 +Rp5554 +sa(dp5555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5556 +tp5557 +Rp5558 +sa(dp5559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5560 +tp5561 +Rp5562 +sa(dp5563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5564 +tp5565 +Rp5566 +sa(dp5567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5568 +tp5569 +Rp5570 +sa(dp5571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5572 +tp5573 +Rp5574 +sa(dp5575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5576 +tp5577 +Rp5578 +sa(dp5579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5580 +tp5581 +Rp5582 +sa(dp5583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5584 +tp5585 +Rp5586 +sa(dp5587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5588 +tp5589 +Rp5590 +sa(dp5591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5592 +tp5593 +Rp5594 +sa(dp5595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5596 +tp5597 +Rp5598 +sa(dp5599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5600 +tp5601 +Rp5602 +sa(dp5603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5604 +tp5605 +Rp5606 +sa(dp5607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5608 +tp5609 +Rp5610 +sa(dp5611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5612 +tp5613 +Rp5614 +sa(dp5615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5616 +tp5617 +Rp5618 +sa(dp5619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5620 +tp5621 +Rp5622 +sa(dp5623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5624 +tp5625 +Rp5626 +sa(dp5627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5628 +tp5629 +Rp5630 +sa(dp5631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5632 +tp5633 +Rp5634 +sa(dp5635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5636 +tp5637 +Rp5638 +sa(dp5639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5640 +tp5641 +Rp5642 +sa(dp5643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5644 +tp5645 +Rp5646 +sa(dp5647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5648 +tp5649 +Rp5650 +sa(dp5651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5652 +tp5653 +Rp5654 +sa(dp5655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5656 +tp5657 +Rp5658 +sa(dp5659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5660 +tp5661 +Rp5662 +sa(dp5663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5664 +tp5665 +Rp5666 +sa(dp5667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5668 +tp5669 +Rp5670 +sa(dp5671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5672 +tp5673 +Rp5674 +sa(dp5675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5676 +tp5677 +Rp5678 +sa(dp5679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5680 +tp5681 +Rp5682 +sa(dp5683 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5684 +tp5685 +Rp5686 +sa(dp5687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5688 +tp5689 +Rp5690 +sa(dp5691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5692 +tp5693 +Rp5694 +sa(dp5695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5696 +tp5697 +Rp5698 +sa(dp5699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5700 +tp5701 +Rp5702 +sa(dp5703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5704 +tp5705 +Rp5706 +sa(dp5707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5708 +tp5709 +Rp5710 +sa(dp5711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5712 +tp5713 +Rp5714 +sa(dp5715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5716 +tp5717 +Rp5718 +sa(dp5719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5720 +tp5721 +Rp5722 +sa(dp5723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5724 +tp5725 +Rp5726 +sa(dp5727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5728 +tp5729 +Rp5730 +sa(dp5731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5732 +tp5733 +Rp5734 +sa(dp5735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5736 +tp5737 +Rp5738 +sa(dp5739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5740 +tp5741 +Rp5742 +sa(dp5743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5744 +tp5745 +Rp5746 +sa(dp5747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5748 +tp5749 +Rp5750 +sa(dp5751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5752 +tp5753 +Rp5754 +sa(dp5755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5756 +tp5757 +Rp5758 +sa(dp5759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5760 +tp5761 +Rp5762 +sa(dp5763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5764 +tp5765 +Rp5766 +sa(dp5767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5768 +tp5769 +Rp5770 +sa(dp5771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5772 +tp5773 +Rp5774 +sa(dp5775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5776 +tp5777 +Rp5778 +sa(dp5779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5780 +tp5781 +Rp5782 +sa(dp5783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5784 +tp5785 +Rp5786 +sa(dp5787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5788 +tp5789 +Rp5790 +sa(dp5791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5792 +tp5793 +Rp5794 +sa(dp5795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5796 +tp5797 +Rp5798 +sa(dp5799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5800 +tp5801 +Rp5802 +sa(dp5803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5804 +tp5805 +Rp5806 +sa(dp5807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5808 +tp5809 +Rp5810 +sa(dp5811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5812 +tp5813 +Rp5814 +sa(dp5815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5816 +tp5817 +Rp5818 +sa(dp5819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5820 +tp5821 +Rp5822 +sa(dp5823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5824 +tp5825 +Rp5826 +sa(dp5827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5828 +tp5829 +Rp5830 +sa(dp5831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5832 +tp5833 +Rp5834 +sa(dp5835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5836 +tp5837 +Rp5838 +sa(dp5839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5840 +tp5841 +Rp5842 +sa(dp5843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5844 +tp5845 +Rp5846 +sa(dp5847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5848 +tp5849 +Rp5850 +sa(dp5851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5852 +tp5853 +Rp5854 +sa(dp5855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5856 +tp5857 +Rp5858 +sa(dp5859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5860 +tp5861 +Rp5862 +sa(dp5863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5864 +tp5865 +Rp5866 +sa(dp5867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5868 +tp5869 +Rp5870 +sa(dp5871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5872 +tp5873 +Rp5874 +sa(dp5875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5876 +tp5877 +Rp5878 +sa(dp5879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5880 +tp5881 +Rp5882 +sa(dp5883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5884 +tp5885 +Rp5886 +sa(dp5887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5888 +tp5889 +Rp5890 +sa(dp5891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5892 +tp5893 +Rp5894 +sa(dp5895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5896 +tp5897 +Rp5898 +sa(dp5899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5900 +tp5901 +Rp5902 +sa(dp5903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5904 +tp5905 +Rp5906 +sa(dp5907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5908 +tp5909 +Rp5910 +sa(dp5911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5912 +tp5913 +Rp5914 +sa(dp5915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5916 +tp5917 +Rp5918 +sa(dp5919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5920 +tp5921 +Rp5922 +sa(dp5923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5924 +tp5925 +Rp5926 +sa(dp5927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5928 +tp5929 +Rp5930 +sa(dp5931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5932 +tp5933 +Rp5934 +sa(dp5935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5936 +tp5937 +Rp5938 +sa(dp5939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5940 +tp5941 +Rp5942 +sa(dp5943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5944 +tp5945 +Rp5946 +sa(dp5947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5948 +tp5949 +Rp5950 +sa(dp5951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5952 +tp5953 +Rp5954 +sa(dp5955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5956 +tp5957 +Rp5958 +sa(dp5959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5960 +tp5961 +Rp5962 +sa(dp5963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5964 +tp5965 +Rp5966 +sa(dp5967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5968 +tp5969 +Rp5970 +sa(dp5971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5972 +tp5973 +Rp5974 +sa(dp5975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5976 +tp5977 +Rp5978 +sa(dp5979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5980 +tp5981 +Rp5982 +sa(dp5983 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5984 +tp5985 +Rp5986 +sa(dp5987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5988 +tp5989 +Rp5990 +sa(dp5991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5992 +tp5993 +Rp5994 +sa(dp5995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5996 +tp5997 +Rp5998 +sa(dp5999 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6000 +tp6001 +Rp6002 +sa(dp6003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6004 +tp6005 +Rp6006 +sa(dp6007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6008 +tp6009 +Rp6010 +sa(dp6011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6012 +tp6013 +Rp6014 +sa(dp6015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6016 +tp6017 +Rp6018 +sa(dp6019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6020 +tp6021 +Rp6022 +sa(dp6023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6024 +tp6025 +Rp6026 +sa(dp6027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6028 +tp6029 +Rp6030 +sa(dp6031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6032 +tp6033 +Rp6034 +sa(dp6035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6036 +tp6037 +Rp6038 +sa(dp6039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6040 +tp6041 +Rp6042 +sa(dp6043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6044 +tp6045 +Rp6046 +sa(dp6047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6048 +tp6049 +Rp6050 +sa(dp6051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6052 +tp6053 +Rp6054 +sa(dp6055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6056 +tp6057 +Rp6058 +sa(dp6059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6060 +tp6061 +Rp6062 +sa(dp6063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6064 +tp6065 +Rp6066 +sa(dp6067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6068 +tp6069 +Rp6070 +sa(dp6071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6072 +tp6073 +Rp6074 +sa(dp6075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6076 +tp6077 +Rp6078 +sa(dp6079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6080 +tp6081 +Rp6082 +sa(dp6083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6084 +tp6085 +Rp6086 +sa(dp6087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6088 +tp6089 +Rp6090 +sa(dp6091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6092 +tp6093 +Rp6094 +sa(dp6095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6096 +tp6097 +Rp6098 +sa(dp6099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6100 +tp6101 +Rp6102 +sa(dp6103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6104 +tp6105 +Rp6106 +sa(dp6107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6108 +tp6109 +Rp6110 +sa(dp6111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6112 +tp6113 +Rp6114 +sa(dp6115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6116 +tp6117 +Rp6118 +sa(dp6119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6120 +tp6121 +Rp6122 +sa(dp6123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6124 +tp6125 +Rp6126 +sa(dp6127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6128 +tp6129 +Rp6130 +sa(dp6131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6132 +tp6133 +Rp6134 +sa(dp6135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6136 +tp6137 +Rp6138 +sa(dp6139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6140 +tp6141 +Rp6142 +sa(dp6143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6144 +tp6145 +Rp6146 +sa(dp6147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6148 +tp6149 +Rp6150 +sa(dp6151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6152 +tp6153 +Rp6154 +sa(dp6155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6156 +tp6157 +Rp6158 +sa(dp6159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6160 +tp6161 +Rp6162 +sa(dp6163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6164 +tp6165 +Rp6166 +sa(dp6167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6168 +tp6169 +Rp6170 +sa(dp6171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6172 +tp6173 +Rp6174 +sa(dp6175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6176 +tp6177 +Rp6178 +sa(dp6179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6180 +tp6181 +Rp6182 +sa(dp6183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6184 +tp6185 +Rp6186 +sa(dp6187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6188 +tp6189 +Rp6190 +sa(dp6191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6192 +tp6193 +Rp6194 +sa(dp6195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6196 +tp6197 +Rp6198 +sa(dp6199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6200 +tp6201 +Rp6202 +sa(dp6203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6204 +tp6205 +Rp6206 +sa(dp6207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6208 +tp6209 +Rp6210 +sa(dp6211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6212 +tp6213 +Rp6214 +sa(dp6215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6216 +tp6217 +Rp6218 +sa(dp6219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6220 +tp6221 +Rp6222 +sa(dp6223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6224 +tp6225 +Rp6226 +sa(dp6227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6228 +tp6229 +Rp6230 +sa(dp6231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6232 +tp6233 +Rp6234 +sa(dp6235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6236 +tp6237 +Rp6238 +sa(dp6239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6240 +tp6241 +Rp6242 +sa(dp6243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6244 +tp6245 +Rp6246 +sa(dp6247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6248 +tp6249 +Rp6250 +sa(dp6251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6252 +tp6253 +Rp6254 +sa(dp6255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6256 +tp6257 +Rp6258 +sa(dp6259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6260 +tp6261 +Rp6262 +sa(dp6263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6264 +tp6265 +Rp6266 +sa(dp6267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6268 +tp6269 +Rp6270 +sa(dp6271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6272 +tp6273 +Rp6274 +sa(dp6275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6276 +tp6277 +Rp6278 +sa(dp6279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6280 +tp6281 +Rp6282 +sa(dp6283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6284 +tp6285 +Rp6286 +sa(dp6287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6288 +tp6289 +Rp6290 +sa(dp6291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6292 +tp6293 +Rp6294 +sa(dp6295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6296 +tp6297 +Rp6298 +sa(dp6299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6300 +tp6301 +Rp6302 +sa(dp6303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6304 +tp6305 +Rp6306 +sa(dp6307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6308 +tp6309 +Rp6310 +sa(dp6311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6312 +tp6313 +Rp6314 +sa(dp6315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6316 +tp6317 +Rp6318 +sa(dp6319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6320 +tp6321 +Rp6322 +sa(dp6323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6324 +tp6325 +Rp6326 +sa(dp6327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6328 +tp6329 +Rp6330 +sa(dp6331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6332 +tp6333 +Rp6334 +sa(dp6335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6336 +tp6337 +Rp6338 +sa(dp6339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6340 +tp6341 +Rp6342 +sa(dp6343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6344 +tp6345 +Rp6346 +sa(dp6347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6348 +tp6349 +Rp6350 +sa(dp6351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6352 +tp6353 +Rp6354 +sa(dp6355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6356 +tp6357 +Rp6358 +sa(dp6359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6360 +tp6361 +Rp6362 +sa(dp6363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6364 +tp6365 +Rp6366 +sa(dp6367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6368 +tp6369 +Rp6370 +sa(dp6371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6372 +tp6373 +Rp6374 +sa(dp6375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6376 +tp6377 +Rp6378 +sa(dp6379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6380 +tp6381 +Rp6382 +sa(dp6383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6384 +tp6385 +Rp6386 +sa(dp6387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6388 +tp6389 +Rp6390 +sa(dp6391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6392 +tp6393 +Rp6394 +sa(dp6395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6396 +tp6397 +Rp6398 +sa(dp6399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6400 +tp6401 +Rp6402 +sa(dp6403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6404 +tp6405 +Rp6406 +sa(dp6407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6408 +tp6409 +Rp6410 +sa(dp6411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6412 +tp6413 +Rp6414 +sa(dp6415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6416 +tp6417 +Rp6418 +sa(dp6419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6420 +tp6421 +Rp6422 +sa(dp6423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6424 +tp6425 +Rp6426 +sa(dp6427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6428 +tp6429 +Rp6430 +sa(dp6431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6432 +tp6433 +Rp6434 +sa(dp6435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6436 +tp6437 +Rp6438 +sa(dp6439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6440 +tp6441 +Rp6442 +sa(dp6443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6444 +tp6445 +Rp6446 +sa(dp6447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6448 +tp6449 +Rp6450 +sa(dp6451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6452 +tp6453 +Rp6454 +sa(dp6455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6456 +tp6457 +Rp6458 +sa(dp6459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6460 +tp6461 +Rp6462 +sa(dp6463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6464 +tp6465 +Rp6466 +sa(dp6467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6468 +tp6469 +Rp6470 +sa(dp6471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6472 +tp6473 +Rp6474 +sa(dp6475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6476 +tp6477 +Rp6478 +sa(dp6479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6480 +tp6481 +Rp6482 +sa(dp6483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6484 +tp6485 +Rp6486 +sa(dp6487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6488 +tp6489 +Rp6490 +sa(dp6491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6492 +tp6493 +Rp6494 +sa(dp6495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6496 +tp6497 +Rp6498 +sa(dp6499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6500 +tp6501 +Rp6502 +sa(dp6503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6504 +tp6505 +Rp6506 +sa(dp6507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6508 +tp6509 +Rp6510 +sa(dp6511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6512 +tp6513 +Rp6514 +sa(dp6515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6516 +tp6517 +Rp6518 +sa(dp6519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6520 +tp6521 +Rp6522 +sa(dp6523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6524 +tp6525 +Rp6526 +sa(dp6527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6528 +tp6529 +Rp6530 +sa(dp6531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6532 +tp6533 +Rp6534 +sa(dp6535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6536 +tp6537 +Rp6538 +sa(dp6539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6540 +tp6541 +Rp6542 +sa(dp6543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6544 +tp6545 +Rp6546 +sa(dp6547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6548 +tp6549 +Rp6550 +sa(dp6551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6552 +tp6553 +Rp6554 +sa(dp6555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6556 +tp6557 +Rp6558 +sa(dp6559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6560 +tp6561 +Rp6562 +sa(dp6563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6564 +tp6565 +Rp6566 +sa(dp6567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6568 +tp6569 +Rp6570 +sa(dp6571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6572 +tp6573 +Rp6574 +sa(dp6575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6576 +tp6577 +Rp6578 +sa(dp6579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6580 +tp6581 +Rp6582 +sa(dp6583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6584 +tp6585 +Rp6586 +sa(dp6587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6588 +tp6589 +Rp6590 +sa(dp6591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6592 +tp6593 +Rp6594 +sa(dp6595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6596 +tp6597 +Rp6598 +sa(dp6599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6600 +tp6601 +Rp6602 +sa(dp6603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6604 +tp6605 +Rp6606 +sa(dp6607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6608 +tp6609 +Rp6610 +sa(dp6611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6612 +tp6613 +Rp6614 +sa(dp6615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6616 +tp6617 +Rp6618 +sa(dp6619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6620 +tp6621 +Rp6622 +sa(dp6623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6624 +tp6625 +Rp6626 +sa(dp6627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6628 +tp6629 +Rp6630 +sa(dp6631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6632 +tp6633 +Rp6634 +sa(dp6635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6636 +tp6637 +Rp6638 +sa(dp6639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6640 +tp6641 +Rp6642 +sa(dp6643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6644 +tp6645 +Rp6646 +sa(dp6647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6648 +tp6649 +Rp6650 +sa(dp6651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6652 +tp6653 +Rp6654 +sa(dp6655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6656 +tp6657 +Rp6658 +sa(dp6659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6660 +tp6661 +Rp6662 +sa(dp6663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6664 +tp6665 +Rp6666 +sa(dp6667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6668 +tp6669 +Rp6670 +sa(dp6671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6672 +tp6673 +Rp6674 +sa(dp6675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6676 +tp6677 +Rp6678 +sa(dp6679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6680 +tp6681 +Rp6682 +sa(dp6683 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6684 +tp6685 +Rp6686 +sa(dp6687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6688 +tp6689 +Rp6690 +sa(dp6691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6692 +tp6693 +Rp6694 +sa(dp6695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6696 +tp6697 +Rp6698 +sa(dp6699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6700 +tp6701 +Rp6702 +sa(dp6703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6704 +tp6705 +Rp6706 +sa(dp6707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6708 +tp6709 +Rp6710 +sa(dp6711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6712 +tp6713 +Rp6714 +sa(dp6715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6716 +tp6717 +Rp6718 +sa(dp6719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6720 +tp6721 +Rp6722 +sa(dp6723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6724 +tp6725 +Rp6726 +sa(dp6727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6728 +tp6729 +Rp6730 +sa(dp6731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6732 +tp6733 +Rp6734 +sa(dp6735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6736 +tp6737 +Rp6738 +sa(dp6739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6740 +tp6741 +Rp6742 +sa(dp6743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6744 +tp6745 +Rp6746 +sa(dp6747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6748 +tp6749 +Rp6750 +sa(dp6751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6752 +tp6753 +Rp6754 +sa(dp6755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6756 +tp6757 +Rp6758 +sa(dp6759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6760 +tp6761 +Rp6762 +sa(dp6763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6764 +tp6765 +Rp6766 +sa(dp6767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6768 +tp6769 +Rp6770 +sa(dp6771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6772 +tp6773 +Rp6774 +sa(dp6775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6776 +tp6777 +Rp6778 +sa(dp6779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6780 +tp6781 +Rp6782 +sa(dp6783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6784 +tp6785 +Rp6786 +sa(dp6787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6788 +tp6789 +Rp6790 +sa(dp6791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6792 +tp6793 +Rp6794 +sa(dp6795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6796 +tp6797 +Rp6798 +sa(dp6799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6800 +tp6801 +Rp6802 +sa(dp6803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6804 +tp6805 +Rp6806 +sa(dp6807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6808 +tp6809 +Rp6810 +sa(dp6811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6812 +tp6813 +Rp6814 +sa(dp6815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6816 +tp6817 +Rp6818 +sa(dp6819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6820 +tp6821 +Rp6822 +sa(dp6823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6824 +tp6825 +Rp6826 +sa(dp6827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6828 +tp6829 +Rp6830 +sa(dp6831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6832 +tp6833 +Rp6834 +sa(dp6835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6836 +tp6837 +Rp6838 +sa(dp6839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6840 +tp6841 +Rp6842 +sa(dp6843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6844 +tp6845 +Rp6846 +sa(dp6847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6848 +tp6849 +Rp6850 +sa(dp6851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6852 +tp6853 +Rp6854 +sa(dp6855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6856 +tp6857 +Rp6858 +sa(dp6859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6860 +tp6861 +Rp6862 +sa(dp6863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6864 +tp6865 +Rp6866 +sa(dp6867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6868 +tp6869 +Rp6870 +sa(dp6871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6872 +tp6873 +Rp6874 +sa(dp6875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6876 +tp6877 +Rp6878 +sa(dp6879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6880 +tp6881 +Rp6882 +sa(dp6883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6884 +tp6885 +Rp6886 +sa(dp6887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6888 +tp6889 +Rp6890 +sa(dp6891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6892 +tp6893 +Rp6894 +sa(dp6895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6896 +tp6897 +Rp6898 +sa(dp6899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6900 +tp6901 +Rp6902 +sa(dp6903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6904 +tp6905 +Rp6906 +sa(dp6907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6908 +tp6909 +Rp6910 +sa(dp6911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6912 +tp6913 +Rp6914 +sa(dp6915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6916 +tp6917 +Rp6918 +sa(dp6919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6920 +tp6921 +Rp6922 +sa(dp6923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6924 +tp6925 +Rp6926 +sa(dp6927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6928 +tp6929 +Rp6930 +sa(dp6931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6932 +tp6933 +Rp6934 +sa(dp6935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6936 +tp6937 +Rp6938 +sa(dp6939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6940 +tp6941 +Rp6942 +sa(dp6943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6944 +tp6945 +Rp6946 +sa(dp6947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6948 +tp6949 +Rp6950 +sa(dp6951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6952 +tp6953 +Rp6954 +sa(dp6955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6956 +tp6957 +Rp6958 +sa(dp6959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6960 +tp6961 +Rp6962 +sa(dp6963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6964 +tp6965 +Rp6966 +sa(dp6967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6968 +tp6969 +Rp6970 +sa(dp6971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6972 +tp6973 +Rp6974 +sa(dp6975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6976 +tp6977 +Rp6978 +sa(dp6979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6980 +tp6981 +Rp6982 +sa(dp6983 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6984 +tp6985 +Rp6986 +sa(dp6987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6988 +tp6989 +Rp6990 +sa(dp6991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6992 +tp6993 +Rp6994 +sa(dp6995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6996 +tp6997 +Rp6998 +sa(dp6999 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7000 +tp7001 +Rp7002 +sa(dp7003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7004 +tp7005 +Rp7006 +sa(dp7007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7008 +tp7009 +Rp7010 +sa(dp7011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7012 +tp7013 +Rp7014 +sa(dp7015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7016 +tp7017 +Rp7018 +sa(dp7019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7020 +tp7021 +Rp7022 +sa(dp7023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7024 +tp7025 +Rp7026 +sa(dp7027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7028 +tp7029 +Rp7030 +sa(dp7031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7032 +tp7033 +Rp7034 +sa(dp7035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7036 +tp7037 +Rp7038 +sa(dp7039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7040 +tp7041 +Rp7042 +sa(dp7043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7044 +tp7045 +Rp7046 +sa(dp7047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7048 +tp7049 +Rp7050 +sa(dp7051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7052 +tp7053 +Rp7054 +sa(dp7055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7056 +tp7057 +Rp7058 +sa(dp7059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7060 +tp7061 +Rp7062 +sa(dp7063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7064 +tp7065 +Rp7066 +sa(dp7067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7068 +tp7069 +Rp7070 +sa(dp7071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7072 +tp7073 +Rp7074 +sa(dp7075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7076 +tp7077 +Rp7078 +sa(dp7079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7080 +tp7081 +Rp7082 +sa(dp7083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7084 +tp7085 +Rp7086 +sa(dp7087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7088 +tp7089 +Rp7090 +sa(dp7091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7092 +tp7093 +Rp7094 +sa(dp7095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7096 +tp7097 +Rp7098 +sa(dp7099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7100 +tp7101 +Rp7102 +sa(dp7103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7104 +tp7105 +Rp7106 +sa(dp7107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7108 +tp7109 +Rp7110 +sa(dp7111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7112 +tp7113 +Rp7114 +sa(dp7115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7116 +tp7117 +Rp7118 +sa(dp7119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7120 +tp7121 +Rp7122 +sa(dp7123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7124 +tp7125 +Rp7126 +sa(dp7127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7128 +tp7129 +Rp7130 +sa(dp7131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7132 +tp7133 +Rp7134 +sa(dp7135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7136 +tp7137 +Rp7138 +sa(dp7139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7140 +tp7141 +Rp7142 +sa(dp7143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7144 +tp7145 +Rp7146 +sa(dp7147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7148 +tp7149 +Rp7150 +sa(dp7151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7152 +tp7153 +Rp7154 +sa(dp7155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7156 +tp7157 +Rp7158 +sa(dp7159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7160 +tp7161 +Rp7162 +sa(dp7163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7164 +tp7165 +Rp7166 +sa(dp7167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7168 +tp7169 +Rp7170 +sa(dp7171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7172 +tp7173 +Rp7174 +sa(dp7175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7176 +tp7177 +Rp7178 +sa(dp7179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7180 +tp7181 +Rp7182 +sa(dp7183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7184 +tp7185 +Rp7186 +sa(dp7187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7188 +tp7189 +Rp7190 +sa(dp7191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7192 +tp7193 +Rp7194 +sa(dp7195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7196 +tp7197 +Rp7198 +sa(dp7199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7200 +tp7201 +Rp7202 +sa(dp7203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7204 +tp7205 +Rp7206 +sa(dp7207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7208 +tp7209 +Rp7210 +sa(dp7211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7212 +tp7213 +Rp7214 +sa(dp7215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7216 +tp7217 +Rp7218 +sa(dp7219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7220 +tp7221 +Rp7222 +sa(dp7223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7224 +tp7225 +Rp7226 +sa(dp7227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7228 +tp7229 +Rp7230 +sa(dp7231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7232 +tp7233 +Rp7234 +sa(dp7235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7236 +tp7237 +Rp7238 +sa(dp7239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7240 +tp7241 +Rp7242 +sa(dp7243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7244 +tp7245 +Rp7246 +sa(dp7247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7248 +tp7249 +Rp7250 +sa(dp7251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7252 +tp7253 +Rp7254 +sa(dp7255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7256 +tp7257 +Rp7258 +sa(dp7259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7260 +tp7261 +Rp7262 +sa(dp7263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7264 +tp7265 +Rp7266 +sa(dp7267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7268 +tp7269 +Rp7270 +sa(dp7271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7272 +tp7273 +Rp7274 +sa(dp7275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7276 +tp7277 +Rp7278 +sa(dp7279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7280 +tp7281 +Rp7282 +sa(dp7283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7284 +tp7285 +Rp7286 +sa(dp7287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7288 +tp7289 +Rp7290 +sa(dp7291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7292 +tp7293 +Rp7294 +sa(dp7295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7296 +tp7297 +Rp7298 +sa(dp7299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7300 +tp7301 +Rp7302 +sa(dp7303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7304 +tp7305 +Rp7306 +sa(dp7307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7308 +tp7309 +Rp7310 +sa(dp7311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7312 +tp7313 +Rp7314 +sa(dp7315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7316 +tp7317 +Rp7318 +sa(dp7319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7320 +tp7321 +Rp7322 +sa(dp7323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7324 +tp7325 +Rp7326 +sa(dp7327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7328 +tp7329 +Rp7330 +sa(dp7331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7332 +tp7333 +Rp7334 +sa(dp7335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7336 +tp7337 +Rp7338 +sa(dp7339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7340 +tp7341 +Rp7342 +sa(dp7343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7344 +tp7345 +Rp7346 +sa(dp7347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7348 +tp7349 +Rp7350 +sa(dp7351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7352 +tp7353 +Rp7354 +sa(dp7355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7356 +tp7357 +Rp7358 +sa(dp7359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7360 +tp7361 +Rp7362 +sa(dp7363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7364 +tp7365 +Rp7366 +sa(dp7367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7368 +tp7369 +Rp7370 +sa(dp7371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7372 +tp7373 +Rp7374 +sa(dp7375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7376 +tp7377 +Rp7378 +sa(dp7379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7380 +tp7381 +Rp7382 +sa(dp7383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7384 +tp7385 +Rp7386 +sa(dp7387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7388 +tp7389 +Rp7390 +sa(dp7391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7392 +tp7393 +Rp7394 +sa(dp7395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7396 +tp7397 +Rp7398 +sa(dp7399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7400 +tp7401 +Rp7402 +sa(dp7403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7404 +tp7405 +Rp7406 +sa(dp7407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7408 +tp7409 +Rp7410 +sa(dp7411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7412 +tp7413 +Rp7414 +sa(dp7415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7416 +tp7417 +Rp7418 +sa(dp7419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7420 +tp7421 +Rp7422 +sa(dp7423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7424 +tp7425 +Rp7426 +sa(dp7427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7428 +tp7429 +Rp7430 +sa(dp7431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7432 +tp7433 +Rp7434 +sa(dp7435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7436 +tp7437 +Rp7438 +sa(dp7439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7440 +tp7441 +Rp7442 +sa(dp7443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7444 +tp7445 +Rp7446 +sa(dp7447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7448 +tp7449 +Rp7450 +sa(dp7451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7452 +tp7453 +Rp7454 +sa(dp7455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7456 +tp7457 +Rp7458 +sa(dp7459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7460 +tp7461 +Rp7462 +sa(dp7463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7464 +tp7465 +Rp7466 +sa(dp7467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7468 +tp7469 +Rp7470 +sa(dp7471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7472 +tp7473 +Rp7474 +sa(dp7475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7476 +tp7477 +Rp7478 +sa(dp7479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7480 +tp7481 +Rp7482 +sa(dp7483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7484 +tp7485 +Rp7486 +sa(dp7487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7488 +tp7489 +Rp7490 +sa(dp7491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7492 +tp7493 +Rp7494 +sa(dp7495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7496 +tp7497 +Rp7498 +sa(dp7499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7500 +tp7501 +Rp7502 +sa(dp7503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7504 +tp7505 +Rp7506 +sa(dp7507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7508 +tp7509 +Rp7510 +sa(dp7511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7512 +tp7513 +Rp7514 +sa(dp7515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7516 +tp7517 +Rp7518 +sa(dp7519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7520 +tp7521 +Rp7522 +sa(dp7523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7524 +tp7525 +Rp7526 +sa(dp7527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7528 +tp7529 +Rp7530 +sa(dp7531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7532 +tp7533 +Rp7534 +sa(dp7535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7536 +tp7537 +Rp7538 +sa(dp7539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7540 +tp7541 +Rp7542 +sa(dp7543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7544 +tp7545 +Rp7546 +sa(dp7547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7548 +tp7549 +Rp7550 +sa(dp7551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7552 +tp7553 +Rp7554 +sa(dp7555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7556 +tp7557 +Rp7558 +sa(dp7559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7560 +tp7561 +Rp7562 +sa(dp7563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7564 +tp7565 +Rp7566 +sa(dp7567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7568 +tp7569 +Rp7570 +sa(dp7571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7572 +tp7573 +Rp7574 +sa(dp7575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7576 +tp7577 +Rp7578 +sa(dp7579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7580 +tp7581 +Rp7582 +sa(dp7583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7584 +tp7585 +Rp7586 +sa(dp7587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7588 +tp7589 +Rp7590 +sa(dp7591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7592 +tp7593 +Rp7594 +sa(dp7595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7596 +tp7597 +Rp7598 +sa(dp7599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7600 +tp7601 +Rp7602 +sa(dp7603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7604 +tp7605 +Rp7606 +sa(dp7607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7608 +tp7609 +Rp7610 +sa(dp7611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7612 +tp7613 +Rp7614 +sa(dp7615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7616 +tp7617 +Rp7618 +sa(dp7619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7620 +tp7621 +Rp7622 +sa(dp7623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7624 +tp7625 +Rp7626 +sa(dp7627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7628 +tp7629 +Rp7630 +sa(dp7631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7632 +tp7633 +Rp7634 +sa(dp7635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7636 +tp7637 +Rp7638 +sa(dp7639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7640 +tp7641 +Rp7642 +sa(dp7643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7644 +tp7645 +Rp7646 +sa(dp7647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7648 +tp7649 +Rp7650 +sa(dp7651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7652 +tp7653 +Rp7654 +sa(dp7655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7656 +tp7657 +Rp7658 +sa(dp7659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7660 +tp7661 +Rp7662 +sa(dp7663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7664 +tp7665 +Rp7666 +sa(dp7667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7668 +tp7669 +Rp7670 +sa(dp7671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7672 +tp7673 +Rp7674 +sa(dp7675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7676 +tp7677 +Rp7678 +sa(dp7679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7680 +tp7681 +Rp7682 +sa(dp7683 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7684 +tp7685 +Rp7686 +sa(dp7687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7688 +tp7689 +Rp7690 +sa(dp7691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7692 +tp7693 +Rp7694 +sa(dp7695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7696 +tp7697 +Rp7698 +sa(dp7699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7700 +tp7701 +Rp7702 +sa(dp7703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7704 +tp7705 +Rp7706 +sa(dp7707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7708 +tp7709 +Rp7710 +sa(dp7711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7712 +tp7713 +Rp7714 +sa(dp7715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7716 +tp7717 +Rp7718 +sa(dp7719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7720 +tp7721 +Rp7722 +sa(dp7723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7724 +tp7725 +Rp7726 +sa(dp7727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7728 +tp7729 +Rp7730 +sa(dp7731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7732 +tp7733 +Rp7734 +sa(dp7735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7736 +tp7737 +Rp7738 +sa(dp7739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7740 +tp7741 +Rp7742 +sa(dp7743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7744 +tp7745 +Rp7746 +sa(dp7747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7748 +tp7749 +Rp7750 +sa(dp7751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7752 +tp7753 +Rp7754 +sa(dp7755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7756 +tp7757 +Rp7758 +sa(dp7759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7760 +tp7761 +Rp7762 +sa(dp7763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7764 +tp7765 +Rp7766 +sa(dp7767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7768 +tp7769 +Rp7770 +sa(dp7771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7772 +tp7773 +Rp7774 +sa(dp7775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7776 +tp7777 +Rp7778 +sa(dp7779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7780 +tp7781 +Rp7782 +sa(dp7783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7784 +tp7785 +Rp7786 +sa(dp7787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7788 +tp7789 +Rp7790 +sa(dp7791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7792 +tp7793 +Rp7794 +sa(dp7795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7796 +tp7797 +Rp7798 +sa(dp7799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7800 +tp7801 +Rp7802 +sa(dp7803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7804 +tp7805 +Rp7806 +sa(dp7807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7808 +tp7809 +Rp7810 +sa(dp7811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7812 +tp7813 +Rp7814 +sa(dp7815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7816 +tp7817 +Rp7818 +sa(dp7819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7820 +tp7821 +Rp7822 +sa(dp7823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7824 +tp7825 +Rp7826 +sa(dp7827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7828 +tp7829 +Rp7830 +sa(dp7831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7832 +tp7833 +Rp7834 +sa(dp7835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7836 +tp7837 +Rp7838 +sa(dp7839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7840 +tp7841 +Rp7842 +sa(dp7843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7844 +tp7845 +Rp7846 +sa(dp7847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7848 +tp7849 +Rp7850 +sa(dp7851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7852 +tp7853 +Rp7854 +sa(dp7855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7856 +tp7857 +Rp7858 +sa(dp7859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7860 +tp7861 +Rp7862 +sa(dp7863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7864 +tp7865 +Rp7866 +sa(dp7867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7868 +tp7869 +Rp7870 +sa(dp7871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7872 +tp7873 +Rp7874 +sa(dp7875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7876 +tp7877 +Rp7878 +sa(dp7879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7880 +tp7881 +Rp7882 +sa(dp7883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7884 +tp7885 +Rp7886 +sa(dp7887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7888 +tp7889 +Rp7890 +sa(dp7891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7892 +tp7893 +Rp7894 +sa(dp7895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7896 +tp7897 +Rp7898 +sa(dp7899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7900 +tp7901 +Rp7902 +sa(dp7903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7904 +tp7905 +Rp7906 +sa(dp7907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7908 +tp7909 +Rp7910 +sa(dp7911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7912 +tp7913 +Rp7914 +sa(dp7915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7916 +tp7917 +Rp7918 +sa(dp7919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7920 +tp7921 +Rp7922 +sa(dp7923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7924 +tp7925 +Rp7926 +sa(dp7927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7928 +tp7929 +Rp7930 +sa(dp7931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7932 +tp7933 +Rp7934 +sa(dp7935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7936 +tp7937 +Rp7938 +sa(dp7939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7940 +tp7941 +Rp7942 +sa(dp7943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7944 +tp7945 +Rp7946 +sa(dp7947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7948 +tp7949 +Rp7950 +sa(dp7951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7952 +tp7953 +Rp7954 +sa(dp7955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7956 +tp7957 +Rp7958 +sa(dp7959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7960 +tp7961 +Rp7962 +sa(dp7963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7964 +tp7965 +Rp7966 +sa(dp7967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7968 +tp7969 +Rp7970 +sa(dp7971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7972 +tp7973 +Rp7974 +sa(dp7975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7976 +tp7977 +Rp7978 +sa(dp7979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7980 +tp7981 +Rp7982 +sa(dp7983 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7984 +tp7985 +Rp7986 +sa(dp7987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7988 +tp7989 +Rp7990 +sasS'texts' +p7991 +(lp7992 +S"So in order to discuss an article you made up a bunch of stuff that wasn't in the article, implied it was in the article, and failed to discuss anything that was actually in the article. I see. Will this be a one time thing, or is this the sort of thing we should expect from you on a regular basis? Just wondering." +p7993 +aS"Old habits die hard and dogs don't pay attention to clocks!" +p7994 +aS'They only need 1/4 of the legislature, so they\'ll probably get that. But if it actually gets to the polls? The conservatives took a big hit when they ran around screaming "If gays get married society will collapse and we\'ll all be doomed!!!11!1!!" and then nothing happened. And of course the most organized group in Mass. opposing gay marriage is the Mass. Catholic church, and people aren\'t going to take kindly to a bunch of child rapers telling them what\'s right and wrong. The anti-gay side really doesn\'t have much to work with; it\'ll largely be a contest of good will and common sense vs. scare tactics, and the scare tactics have already been proven wrong.' +p7995 +aS'well if you think the sun goes around the earth then its time for apocalypse.' +p7996 +aS'I dunno. What is the scoop here? You complain about the responses we give, and yet you keep coming back for more. Even people with down syndrome learn enough to only stick their hands in the open flame once.' +p7997 +aS'yea...it\'s like ordering a pizza. First the paleontologist digs up a bone or other artifact...then he calls the lab, tells them what he found and gives them the date they can expect the bone to arrive for "testing." Then the lab asks him from what organism the bone once belonged and also what toppings, I mean dates, he wants for his bone. Then the paleontologist gives him the range of dates that most suit his presuppositions.....Then the paleontologists sends in the bone fed-ex, along with a gift-certificate to the finest steakhouse in town and two tickets to the ballgame, and then sits back and waits for the results. Finally, just to be on the safe side, the paleontologist repeats this scenario with at least 2 more labs...this way just in case one doesn\'t cooperate he has backup and he can pick a date from any number of labs.' +p7998 +aS'Abstinance?! Heaven forbid.' +p7999 +aS'So, in summation, your position is that the US should be more like the Europeans? Should we also bathe less frequently? Have poor dental hygeine? Become an "also ran" economy? No thanks. I have no desire to mimic Europe.' +p8000 +aS'I see. Then what you are claiming is that creationists are the ones who should define the vocabulary to be used by evolutionary biologists. Would it then be ok for atheists to define the vocabulary of Christianity?' +p8001 +aS'BREAKING NEWS: SHOOTING IN DALLAS OFFICE TOWER - CTnow Ah, the good old gun-crazy US of A.' +p8002 +aS'Just trying to help out where I can, and if it proves you right well that makes a first time huh?Sarge its a first!!' +p8003 +aS'More silliness on your part. Think about it. Gay couples together for 40 or 50 years. That means they were living together in the 1950s and 1960s. Those people were the foundation of the gay-pride movement.' +p8004 +aS'So cross jurisdictional escort is a fairly common occurrence in the area. You will note that it is not the local cops talking about not being informed....it is the author of the article whining about it.' +p8005 +aS"And yet it's usually the liberal democrats who are in favor of murdering innocent children..." +p8006 +aS"So you're saying that the ones who're eligible to carry a gun, those who're 21 or older, never been convicted of a crime, undergo fingerprinting, pay hundreds of dollars, attend an eight hour course held by the police, pass a firearms safety class, and weight three months to finally get their permit, would intentionally use it as an excuse to murder a teacher over a trivial matter like an unfavorable grade? Wouldn't it just be easier, as well as more likely, for an emotionally disturbed student to just illegally bring a gun to school and kill their teacher, rather than waiting for a legal alternative to commit murder and go to prison anyway?" +p8007 +aS"Well then who do I have to call? I'd like to report Brady for being in possession of 13,000 rounds of restricted armor piercing ammunition and 100 guns, most of which have been illegally modified for full-auto firing capabilities, as well as an uncounted number of IEDs. The link doesn't work, BTW." +p8008 +aS'Jesus! Another scientific illiterate. The facts are the observations. And the point is not to test facts but to explain them with an hypothesis that suggests a prediction as a consequence that can be tested by experimentation.' +p8009 +aS"You mean that hole that has been observed and proven, repeatedly? Climate Change is a controversy in the same way as the earth being broadly spherical is a controversy. There's a group of nutters who think the earth is flat; doesn't mean there is any reason to believe it is." +p8010 +aS'Props for what? Refusing to read your middle school biology textbook?' +p8011 +aS'YES, of course, they could not actually hunt, since that would be illegal, possibly a felony, whihc could lead to forfeiture of your rights.' +p8012 +aS'and' +p8013 +aS"Just a reminder, Belfrey: Don't hold your breath..." +p8014 +aS'Is the little baby upset? Too bad.' +p8015 +aS'Thats a very compact piece of logic. I imagine that you are a very efficient individual.' +p8016 +aS'Its better then being dead.............' +p8017 +aS"So are you saying that the people of India aren't upset about what happened and how the police chose to hide instead of engage the enemy and thus let hundreds of people be violently murdered? Are you saying that the people of India aren't seeking changes so they can arm themselves accordingly so if something like this happens again they'll be better prepared to handle it?" +p8018 +aS'Who but a creationist would ever make such a laughable claim?' +p8019 +aS'At least you are aware of your own mental deficiencies.' +p8020 +aS'And you are only trying to earn yourself brownie points in hell.' +p8021 +aS"Here's a link for you: Two Eyes Fish Amphibians Reptiles Birds Mammals Coincidence? Limited Imagination? Interrelation?" +p8022 +aS'I see. So, you know the souls of others? and how God will judge them? Interesting. That certainly does settle a few things....' +p8023 +aS'F--k\'in A! right! I don\'t want some damn MAN deciding what\'s going to be legal for my body. They have NO experience with the female anatomy except what they manage to bag, they shouldn\'t be allowed to decide for us. They have no idea what pregnancy is like, the damage it does to our bodies and our minds, and they don\'t have to pay to support a child that we were forced to accept at knifepoint. Where is the logic is violating women a second time? Where\'s the justification for it? Doesn\'t the life of the unintended mother account for anything at all? Do you men have any idea of the dangerous precdent you\'d be setting up with a total ban on abortion? Women who have been raped and essentially told "You WILL have this child, you WILL carry it to term, or you WILL go to prison!" would likely commit suicide as a result, meaning that TWO lives are gonna be lost.' +p8024 +aS'Oh, we already know a bunch of events that he played a role in. They even made it into a song! Please allow me to introduce myself I\'m a man of wealth and taste I\'ve been around for long, long years Stole many man\'s soul and faith And I was \'round when Jesus Christ Had his moment of doubt and pain Made damn sure that Pilate Washed his hands and sealed his fate Pleased to meet you Hope you guess my name But what\'s puzzling you Is the nature of my game I stuck around St. Petersburg When I saw it was a time for a change Killed the Czar and his ministers Anastasia screamed in vain I rode a tank Held a general\'s rank When the blitzkrieg raged And the bodies stank Pleased to meet you Hope you guess my name, oh yeah Ah, what\'s puzzling you Is the nature of my game, oh yeah (woo woo, woo woo) I watched with glee While your kings and queens Fought for ten decades For the gods they made (woo woo, woo woo) I shouted out, "Who killed the Kennedys?" When after all It was you and me (who who, who who) Let me please introduce myself I\'m a man of wealth and taste And I laid traps for troubadours Who get killed before they reached Bombay (woo woo, who who) Pleased to meet you Hope you guessed my name, oh yeah (who who) But what\'s puzzling you Is the nature of my game, oh yeah, get down, baby (who who, who who) Pleased to meet you Hope you guessed my name, oh yeah But what\'s confusing you Is just the nature of my game (woo woo, who who) Just as every cop is a criminal And all the sinners saints As heads is tails Just call me Lucifer \'Cause I\'m in need of some restraint (who who, who who) So if you meet me Have some courtesy Have some sympathy, and some taste (woo woo) Use all your well-learned politesse Or I\'ll lay your soul to waste, um yeah (woo woo, woo woo) Pleased to meet you Hope you guessed my name, um yeah (who who) But what\'s puzzling you Is the nature of my game, um mean it, get down (woo woo, woo woo) Woo, who Oh yeah, get on down Oh yeah Oh yeah! (woo woo) Tell me baby, what\'s my name Tell me honey, can ya guess my name Tell me baby, what\'s my name I tell you one time, you\'re to blame Oh, who woo, woo Woo, who Woo, woo Woo, who, who Woo, who, who Oh, yeah What\'s my name Tell me, baby, what\'s my name Tell me, sweetie, what\'s my name Woo, who, who Woo, who, who Woo, who, who Woo, who, who Woo, who, who Woo, who, who Oh, yeah Woo woo Woo woo ~Sympathy for the Devil; by the Rolling Stones' +p8025 +aS'Translation = "I\'ve closed my brain off and I\'ve got not nothing."' +p8026 +aS"So you are saying that despite the majority of the public opposing gay marriage, opposing it may be the wrong direction? Good for you. You're getting it." +p8027 +aS'Oh my goodness. This is a trick called semantics. I guess you got sucked in. Yes, abortion is used as contraception unfortunately.' +p8028 +aS'We have a terrorist supporter among us, objecting to restrictions on terrorists! Why do you hate America?' +p8029 +aS"See, this is where reading the page would have helped you out alot. No where does it say that organisms evolve with a changing environment. That's what WW would like it to say, but it says nothing of the sort. All it talks about is a different approach to modeling cell behavior. Critical reading skills, they're really essential if you're going to try to debate science." +p8030 +aS'Seeing the article you linked to was written in 2002, over three years ago, do you think the author could perhaps incorporate the new data and rename his piece, "Maybe There Is Some Truth About Pedophile Priests After All"?' +p8031 +aS'So what? The allele frequency, even in your example has still changed. A change in an allele frequency in a population over time is, by definition, evolution. What did you think that evolution was?' +p8032 +aS'I think there are few better things than self-evident irony. I love it.' +p8033 +aS"Well I don't know about you guys, but I was baptized so I'm out of that eternal damnation thing." +p8034 +aS'Really. Have you got any quotes from them endorsing monopolies?' +p8035 +aS'Oh, his brain wasn\'t there, huh? Musta just been involuntary reflexes that allowed him walk from a store to the "home" that he stayed at. Oh, and please show me some cases of foetuses walking to the store like this man did when he was attacked, and then we can start comparing. Looks like VT is back with his usual strawmen and sensationalism.' +p8036 +aS'Well, at some point they are sentient beings(surely you agree), that\'s the point that the fetus becomes a person in my opinion. Before that it\'s not really too bad. I don\'t have a problem with people "having sex in an improper way" or choosing to "screw each other how they would like to screw each other". I do have a problem with people creating a feeling being and then killing it, as is the case when fetuses become sentient and are aborted. You also say that it is my opinion, which it is, but it is also your opinion. You have said that women who have abortion because they arn\'t responsible are making bad decisions. First off, it\'s not punishment, it\'s taking responsibility for your actions. I have addressed the men, this is what I\'m talking about, it was in my last post. Are you really reading the my posts? I said "They(men) should have to raise the child also as they are equally to blame". If I could take some of the birthing pain from women and give it to mwn, I would. The bottom line is that women know that if pregnancy occurs their will be pain, yet some do not protect themselves against it. Why would it then be my responsibility to take that pain into account? They accepted the risk when the didn\'t try to protect against it. Yeah, like the one that I addressed the men in, right? I have never said that we should punish 12 year old orphans. Show me where I said that. I said that the parents should help raise the child if they have the means. Would that put a slight damper on the 12 year olds social life? Probably, but she will be an adult soon enough and she should take some responsibility for her actions. The father should have to do the same. Why do you admit that the actions of the 25 year old are tragic but you don\'t want her to take responsibility? How does being poor limit your responsibility to protect yourself? I know a poor woman who has 10 kids just hoping that one day she would find a man that would be willing to help raise the rest. Also, what do you mean by "less fortunate? It never happened but she kept having kid after kid and hoping it would. Should she be excused for her behavior because she is poor? No, she kept going to BARS looking for good men. Bad choices = bad outcome. Do you think that this is proof that abortion is necessary? Nope, abortion IS NOT the answer in cases like this, only responsibility can solve the problem. The bad thing is that only one of the men do anything for the children and he doesn\'t do enough. She has never filed for child support and the kids are almost never disciplined. I don\'t want to do anything as far as laws are concerned. I would recommend that she and the father raise the child, but sadly that may not happen. I will just continue to have pity for all of the irresponsible "lovers" out there.' +p8037 +aS"Is there some sort of a symbolic potent phallic aspect to holding a gun in one's hand? Is Sarah Palin being a manly sort when she shoots a wolf from a helicopter?" +p8038 +aS'No. Anyone who sticks to beliefs that a god created the earth just 6,000 years ago is an XXXXX. People are free to believe that a god created the Earth billions of years ago though without deserving the "XXXXX" label. Hope this clarifies things for you.' +p8039 +aS"There are a few slight problems with that theory. First of all the evidence fits perfectly with that book you speak of. If predicts that all creatures came about suddenly and completely formed. This is all we have ever observed. The earliest creatures -according to your theories dating- had incredibly formed eyes etc. and no ancestors among the fossils It also predicts that animals will produce the same kind of animals , this is all that has ever in the history of the world been observed. +It predicts the heavens will show a perfect order and can be used for signs and for seasons and for days and for years. That is all that has ever been observed in the history of the world. It predicts that recorded human history will be less that 10k years. That is what we observe. It predicts that man has always been intelligent and ancient language and buildings confirm this. It predicts that billions of fossils will be found in rock laid down by water all over the world, this we have observed. It predicts there will be pathways in the sea, this is so. It predicts that the heating of the air will create wind and this is so. It predicts that the sea is the source of rain and it is so. It predicted 800 years in advance that the Messiah the King would ride in to erusalem on a donkey to the exact day . That He would be crucified and his side pierced with a spear and cry out My God , My God why has thou forsaken me ?and it was so. It was predicted the ones who crucified him would cast lots for his garments and they did. That three days later He would rise from the dead and He did. That DNA mutates does not prove anything other that it mutates. It is almost always harrmul or fatal and has never been observed to change one kind of an animal into another. That the species that adapt to their environment survive and those that don't die is a self evident truth not evidence. About as intellectually stimulating as saying most things who fail to survive die. Fossils exist. Now that is a brilliant statement. Why not say , water exist , or sand is? All dating methods are based on circular logic. If the date agrees with the theory it is correct , if not it must be contaminated. It is based on an assumtion of the quantity of some radioactive substance in a material at some time in the past and how much has decayed when compared to the rate of decay gives us a date. Fortunately we already knew the earth was very old or evolution could not have occured. We know how old fossils are because of the rocks they are in and how old the rocks are by the fossils in the rocks. If the 2 are in the wrong place then we know there was an overthrust which is basically a miracle from God which is allowed because evolution needs it. Life forms in the millions so therefore it must has started out as a random bunch of chemicals that created itself on a planet that created itself and evolved into the millions we see now. Another brilliant deduction. You are on a roll. Believe our eyes. Oh you must mean all those times you are walking down the beach and trip all over the lobe finned fish coming on shore for the first time. Or the thousands of times we have seen a lizard with half a wing or a beaver giving birth to an armadillo. Yes , seeing is believing. You present a brilliant argument. How could anyone argue with your brand of logic? That would be senseless." +p8040 +aS"Actually they apologised because it's a bit of a fad amongst the limp-wristed politicians at the moment. And anyway, the blood is fairly even on both sides." +p8041 +aS'And LIVING ones even more... ok Adolph.' +p8042 +aS'Please stop demonstrating your complete inability to understand evolutionary theory. How is Texas Stadium meaningful in the population of the earth? Do various blimp pilots who soar over Texas Stadium have better sexual success than you? You seem to be a bit of a sad sack.' +p8043 +aS'Hmmm... interesting. Where does this inalianable right derive from and how does it really work? I mean, clearly you cannot create your own army called Islamic Jihad of Al queda Supporters and start to develop weapons of mass destruction on your own farm, regardless if that organisation actually interfer with someone else. As for bootlicking Please drop the rethorics and explain how you mean instead.' +p8044 +aS"So what you're saying is that by mentioning both in the same post, I'm saying that unless someone is a YEC then they aren't a christian? Because that is what you attributed to me. Yet you have yet to post evidence of me saying that to anyone. Nor have you supported your original claim here, you said this: Last I checked, no credible fossil fuel firm hired YEC geologists. Prove this assertion since you researched it thoroughly enough to start a thread about." +p8045 +aS'HEY!! We agree on something.' +p8046 +aS"So let's just kill them and be done with it. Is that what you're saying?" +p8047 +aS'You believe that your interpretation of the Christian Bible is more correct than his, and he believes that his interpretation of the Christian Bible is more correct than yours. This is quite simple, but that\'s never really helped you see the problem before... Yeesh. Even when I spell it out, he still can\'t keep it straight. No, marc, you\'re looking at the wrong quote. Try reading what I write. Yes, you can expect accusations of quote mining to be common when you commonly quote mine. Say, do you think these two things could possibly be related? "Concise and readable" takes a backseat to accurate. As I said, Miller overemphasizes views outside the mainstream of atheism and tries to paint all of atheism with the same brush. In fact, he picks a single atheist to spend three paragraphs on, then moves past his exaggerated claim. And with good reason. marc\'s impeccable reading comprehension strikes again. marc thinks I was responding to a different point, despite the clear explanation of his "citation about atheists using evolutionary findings to support their concepts." I figure it\'s his latest attempt at a dodge. Ignorance and incomprehensible babbling has gotten old to him, apparently. Considering atheists don\'t believe in the supernatural, there\'s nothing else left. Now tell me how your truism actually means anything. Lewontin did not say to forbid access to the Bible or other texts. You simply assume that he said that because you want to build as much of a strawman as you possibly can. See, if you had just quoted Lewontin instead of trying to censor his words, maybe you would have understood. ... Then again, probably not. I keep forgetting that your Persecution switch is fused in the "on" position. Yes, Lewontin mentions the New York Times... the home furnishing supplement of the New York Times, in metaphoric comparison to the stage set of The Honeymooners. But you don\'t have a problem with your blatant misrepresentation, do you? No, no, anything to brainwash the kiddies and advance your delusion of massive conspiracy... If Miller truly does understand Lewontin\'s point, he does a pisspoor job of explaining it. Lewontin says to eliminate the irrational and employ the intellectual. Frankly, I see nothing wrong with this; why do you? The best case you\'ll ever be able to make regarding Lewontin\'s claims in this book is that he believes that a certain path to truth is the most effective. You claim that your path to truth is the most effective. Once again, we have no reason to believe either one of you over the other based on these statements alone. Which Dawkins books that promote atheism (and by atheism, I mean atheism, not evolution) are required reading in public schools? Cite specific instances and include evidence that the ACLU rejected the cases. This coming from the person who omitted so much that I had to elaborate on and quote from the book multiple times? No thanks, I\'d rather make fun of your whining and your incomprehensible comprehension. Oh, you didn\'t read the part where he distanced himself from atheism? The one where he explained that evolution is compatible with theism? I guess you missed it... It was only, you know, the vast majority of the book. Oh, good, I get to do this again! They\'re not Christians, just like Judge Jones isn\'t a Lutheran. (Your foot should still be in your mouth over that one, but you never learn.) They\'re all phonies, aren\'t they, marc? Lucky for marc, he can accurately assess people\'s belief systems without knowing the slightest thing about their beliefs. But I have this "power," too:marc is an atheist. Sure, he says all this fundie Christian stuff, but he\'s really an atheist. I know it in my heart because my own belief system, infallible and based upon the teachings of God himself, tells me so. I know, because I know Christians, and marc\'s not a Christian. He\'s just a big phony. And there you go... atheist. Clearly, I\'ve correctly labeled you, and you are nothing but a false teacher.Pathetic, marc. Absolutely, positively pathetic. In other words, marc has absolutely no resolution to this conundrum except to leave us with this oh-so-powerful exchange: marc [about Miller]: "He\'d think differently if he interpreted the Bible the same way I do." Miller [about marc]: "He\'d think differently if he interpreted the Bible the same way I do." *ahem*.... marc [about Miller]: "He\'d think differently if he interpreted the Bible the same way I do." Miller [about marc]: "He\'d think differently if he interpreted the Bible the same way I do." Yes, I\'d speculate that he doesn\'t have such trouble "stomaching" priests. After all, he shares their beliefs, and not those of preachers of other (e.g. Protestant) sects, many of whom refuse to recognize Catholicism as truly Christian... Keep on diggin\', marc. I love helping you reach new lows.' +p8048 +aS"Your use of language is rather colourful here (lying propagandist!) and smacks of hyperbole. What is being critisised here is bad application of the scientific method in relation to National Geographic's articles on the nature of relationship between birds and dinosaurs. I think Olsen makes some very pertinent points, but at no stage is he saying that evolution does not occur or the possibility that there is no link between any theropods and birds ever. What he correctly draws attention to is poor peer review and less than conclusive evidence to support the hypothesis of the article's author. In turn this is a stinging criticism of the NG given its high profile, reputation and claim to being a leading forum for the presentation of science in a popular format." +p8049 +aS"It's sophomoric remarks like that that hurt the gay cause in America. God isn't mocked, though. And I doubt the people are either. And I'm glad California outlawed the sin. The only thing you have left is to hope the far left, spiritually-stunted judges in the US Supreme Court are pro Sodom and Gomorrah." +p8050 +aS'So you\'re claiming that you "transformed" from part of your mother to a human. So you\'re claiming that you were once almost your mom\'s arm or leg? lol! Biologically, this is simply a farce statement.' +p8051 +aS'Give me three good reasons why a thirteen year old girl from Plam Beach, that are practial not religous please, should not have an abortion and I will promise not to make fun of you. Much. Judges do this everyday. This case just made the news.' +p8052 +aS'So did you read his mind to determine exactly why he bolded that particular set of words? You are the first mind reader I have encountered here. And considering your disdain and rejection of science from cosmology to biology what does it matter if something is terrible science. According to you all science should be terrible. Why do you attempt to use a tool which you reject as being useful?' +p8053 +aS'You mean you can choose how you accept it?' +p8054 +aS"So in other words, you're saying that somewhere along the lines, God changed his mind." +p8055 +aS'And yet you seem to feel we should leave these issues to the government, which has done nothing but corporate takeovers in regard to banks, automotive industries, and now health care.' +p8056 +aS"Because parents of children without Downs never die prematurely. C'mon Simone." +p8057 +aS'Well you never know cause your pro life and for the death penalty.' +p8058 +aS"Almighty nature? You mean you believe in the universe? Welceom to the club. I think we can all agree we're part of the universe. Except for skeptics, they delude themsleves into thinking they cannot know (which they claim to know). -Mach" +p8059 +aS"Yes, you are 100% correct. Criminals would be sure to pay the tax on their illegally owned pistol, just like they pay income tax on drug money. Oh, wait they don't pay tax on their drug money. Most criminals break the law you see." +p8060 +aS"So you're going to live with the Amish eh?" +p8061 +aS'Wrong again sherlock. All of this animosity is after the fact to why radical islam considers our christian Nation to be hypocritical due to the exporting of our pop culture of hedonistic sexual and moral depravity. That was why they signed fatwas against us originally. It is the abortions, gay marriage and our women walking around half naked that caused that lack of respect to occur. And you can thank the immoral left for that contribution to Americas image. It was the Left that coined the phrase, "If it feels good, do it," Not the Right.' +p8062 +aS"Are we talking about the same Obama here? The same one, who's head of the DHS, told law enforcement to be on the lookout for anyone who disagreed with the government?" +p8063 +aS"*walks in* *looks at posters* *notes no fundies have spoken out yet* Well, it's OBVIOUS that you don't have a discerning spirit and are thinking with your carnal mind. If you'd only have accepted the truth of the undying and never changing word of God, then you'd understand. You just gottsta believe first. It's as simple as that. But, no, you go right on hating God and you'll soon see where that will get you. BURNING IN HELL!!! Hahahah, FOOL! You are soo going to roast. In pain. FOR EVER! But, that's not my words. That's Gods! Me? I love you. I love you long time. Like forever even. If only you'd accept Jesus into your heart. Cause if you did. You'd see no contradictions in what you posted. Seriously... Drink the flavoraid. edit: Capitalize, size increase, italicize and underline various parts of my post. Color them some and insert random, out of contest bible passages to support my claims." +p8064 +aS'In the case of Demorats and liberals; it is monkey see, monkey do.' +p8065 +aS'And the man who impregnated the woman should walk away totally free of all responsibility! Spoken just like an total misogynist!' +p8066 +aS"Well, this guy is so bad ad arguing and so good at alienating people that if we sent him into the abortion forum, it is likely, he'd be so ineffective at defending his pro-life position thathe'd actually be contributing to the pro-choice position..." +p8067 +aS"Tiger is entitled. Because of his money and fame, he's entitled to some hot and not-so-hot action." +p8068 +aS'If I ever see Arch defend a position at EvC I will eat my hat and the hat of my fiance, too.' +p8069 +aS'Yeah, I should, then we could have a more intelligent converstation You understand that in the Plaxico Burris case, the "authorities" did just exactly that, found ammo of a different caliber and assumed he had those guns too. Article today on that at RKBA. Of course, you would probably be more interested in this: Texas jury jails man 35 years for marijuana possession | Raw Story At first I thought maybe you had come to see old Doc and got waylaid on the way. Nice to see you posting whatever!' +p8070 +aS"Is that what you said right before they started banning assault weapons? 'Oh, let's just see what Sarah Brady wants to do?' Obviously, you're gullible. Since you're such a brainiac and all, why don't you visit the UN website and see what your beloved UN is up to? And again, read this slower this time (if that helps) 'On the other hand, not one acceptable reason for individuals owning guns is mentioned.'" +p8071 +aS'And if that was the accepted rule for Constitutional interpretation we would still have Jim Crow and the 14th Amendment would be as useful as the 3rd. Total Fail on your part again Galileo . . .' +p8072 +aS'So atheists are capable of goodness, love, kindness, generosity and sympathy but they have no meaning unless one conforms the the fundamentalist christian morality.' +p8073 +aS'Like talking to Richard?' +p8074 +aS'And pray tell what new and interesting creatures have you seen the present ones evolve into this week?' +p8075 +aS'Wow ehat a brave new world you live in.... Now lets say just 1% of all gun owners resisted (in the us that is several hundred thousand peppered through the land). With media attention to such infighting between government and citizens how do you deal with this?' +p8076 +aS"Here's a novel idea - how about the right gives up the abstinence programmes (scientifically unproven) and improves access to and information on b/c to stop women having UPPs in the first place? Just a thought." +p8077 +aS'And you say juleacatz is the one who views pregnancy as a punishment for women.' +p8078 +aS"Like the crusades and the inquisition? How about the Southern Baptist Convention, formed at the end of the Civil War with the express purpose to discriminate against blacks? And of course, the KKK and the Aryan Brotherhood make the same claims as you. Of course, you're going to tell me that you are a christian and they aren't. But when people tell me they are christians you aren't always around so I just never turn my back on them. That way, even if they are follow that strange pull to make a bad decision, I will at least have my eye on my money." +p8079 +aS'Ahh. Now I see why you turned into an agnostic, if you even believed Christianity in the first place.' +p8080 +aS'Really? I have not seen one coherent idea from both of them combined.' +p8081 +aS'But don\'t you see? They aren\'t sure. They don\'t know. They didn\'t "prove" anything!!' +p8082 +aS"Oh, dear. I seem to have lost you again. 'Peer' just means a group of people holding the same biases." +p8083 +aS'No, I for one dislike your posts because I know you intentionally write irrational posts to help support your religious cause. Just for the record montalban, basically every single legitimate scientist is "pro-evolution". Creation theory is not taught in public schools, not by chance, but because...*gasp* it\'s RELIGIOUS MUMBO JUMBO. There is no evidence to support it. Creation fiction has made no progress with it\'s "faith-based" (lackofevidence) with rational people. And I\'ll also say that I\'d welcome ad hominem over irrational thinking any day. Ad hominem is just a lack of patience, or someone who doesn\'t care to hide their emotion or opinion. Irrational thinking on the other hand is often only cured by death. Someone guilty of ad hominem can still hold a rational debate. The irrational..well, why bother? -Mach' +p8084 +aS"Apparently you've got one powerful set of rose colored glassed. I guess you spend a lot of money on those 1-900 psychics too. Nowhere is it scientifically inaccurate? Are you serious? Waxy" +p8085 +aS"Well you better hurry up. Aren't you like 113 years old or something?" +p8086 +aS'I\'d rather be "offed" than to live with a wild eyed screaming banshee like yourself setting policy and demanding impossible tasks. Are the police SOB\'S too? I don\'t suppose you would object to the friendly neighborhood rapist getting shot by a gun owning neighbor now would you?' +p8087 +aS'** Again, sez u.' +p8088 +aS"What's your point? Unicorns breathe toxic gas and have low density, so they can get around all they want." +p8089 +aS'Biblical literism is the only way to view the Bible. I could \'metaphorically\' say that Dawkins really believes in God in his own way, because he said that ID is possible for this planet because aliens may have seeded the first self replicating molecule here Millions of years ago. That is silliness or even foolishness. Nothing taken literally from the Bible is irrational. God is rational and His creation is rational. In fact, the "Scientific Method" originated from the idea that the Physical Universe operates on rational physical laws because the Creator did it in logical fashion. What did we have b4 that? "Dragons eating the moon during an eclipse\'? Angry gods causing volcanoes to erupt? Apollo racing his fiery chariot across the sky every day?' +p8090 +aS"So reading and literature aren't to be taught? I love it. More stupid, paranoid parents for me to mock mock mock. They are sooo part of a great big problem. A problem that sees my kid getting threatened and bullied - so I feel totally justified in my mocking. Frankly, there are days I would like to kick them in the teeth." +p8091 +aS'Six people out of, at the very least one million, at the very most five million. Are you really gonna prosecute one million plus people based on the actions of six individuals? Are you expecting a 1,000% perfection standard from gun owners? How many catholic priests have molested little children? Should we hold them all responsible? How many gun control supporters also support the killing of unborn children? Or better yet, how many game animals have died of starvation and disease, because gun control supporters lobbied against hunting seasons?' +p8092 +aS'I loved this part: So Miller says that ID is less worthy, scientifically, than even Young Earth Creationism!!!!!!!!!!!!!!!!!!!!!!!!!!' +p8093 +aS"I don't know how this can be true. Thank God that I didn't grow up with my biological father. I'm not really interested in being a jerk." +p8094 +aS'As long as we cut off the privates of the fathers as well.' +p8095 +aS"Zardozy, honey, whushoo gotta b'lieve in? You related to that Frenchie guy with the skinny wife?" +p8096 +aS'If we did not have criminals, we wouldnt have "shoot outs" as you so call them.' +p8097 +aS"So you're a historian now? Yes, you are right - the Civil War was fought to keep the union in tact. But, it is also a fact that Abraham Lincoln, the Commander in Chief of the Union Army, did not believe that the union could be preserved unless slavery was abolished. According to who? Though it may not have been practiced to its fullness, it in no way follows that all men are not created equal. Someone who actually had knowledge about the Civil War would certainly know that Lincoln did not believe the Union could be preserved unless slavery was abolished. And I don't expect you to. The reason you won't go into how all men were created equal during reconstruction is because you cannot prove that all men are not created equal." +p8098 +aS'And liquor.' +p8099 +aS'So you\'re saying that God is a "respector"?-of-persons - iow, the mom\'s "more"-important to *God*? than the unborn.' +p8100 +aS'No biggie, right? Typical creationist "teach the controversy" stuff. But wait! The "encyclopedia" follows this up with it\'s damning evidence to show the many holes in the ToE! Read on evolutionists, and despair!!' +p8101 +aS"Oh but you forgot the rest of my secret plan. Just like Hitler, first you take the guns, then you send them to 'jail'. A jail with 'showers' and 'ovens'. The most important part of the plan is make sure anti-gunners don't have guns. Which ofcourse is not a problem." +p8102 +aS'How were they able to get an "aggravated assault" charge pinned on you? I\'m assuming she never had a mark on herself to show the cops. Had you two had a previous domestic call history with the police? Hopefully justice will be served when you get your day in court. Then you\'ll get to experience the wonder that is "family court", if you haven\'t already. You have my sympathies.' +p8103 +aS"And let's do away with these stinking debate forums! So if it's silly to discuss that, what about brand of trucks? Would that also be silly? V10 Gasoline or 6.0 Diesel? How big a tire can you put on a stock 3/4 ton truck? See, you're right. It's just silly." +p8104 +aS'No, they don\'t. Creationists do. "Why haven\'t all animals turned into humans?"' +p8105 +aS'And I propose we put lunatics who make threats to completely legitimate doctors in a state mental ward for a few years to straighten them out. As to the abortion issue, are the pro lifers really that willing to risk one of their precious fetuses over a traffic ticket?!' +p8106 +aS'so is it better to be murdered by a knife than a gun? final thought, you are advacating removing hundrides of millions of dollers of property from millions of legal gun owners, becouse of thousandes of scum bags.' +p8107 +aS"You're starting to sound like someone who understands evolution. I don't see your argument here, you're basically supporting the steps necessary for natural selection. What you describe is one small step for evolution, you just have to repeat this 1,000,000 times over various other environmental and competitive contraints and viola, you'll probably see evolution at work on a scale that you can recognize. You're almost there montalban! -Mach" +p8108 +aS'Oh gosh , a whole bunch of cut/pastes from a 14 year old that is showing off their lack of knowledge. These are not unknown situations, and are very easily explained.' +p8109 +aS'And I suspect WW understands it about as well as you do...' +p8110 +aS'wow....there is a real person under there. Good luck on your recovery, chemist.' +p8111 +aS"Well, actually, I did find it funny even though I'm a male (or at least, I think I am?)...probably because it's a joke and I know I'm not like the stereo-typical male so I can laugh at them. PS, I'm so unique because I'm so humble and would never brag about my bulging muscles, manhood and amazing intellect." +p8112 +aS"So you refuse to engage in an informal debate on the topic, but you all of a sudden are itchin' for a formal debate? How about you make the challenge?" +p8113 +aS"I know you don't. So what?" +p8114 +aS'Oh.. that makes sense. Because, it sounds exactly like modern day republicans.' +p8115 +aS'(Playing devil\'s advocate) And, by what authority would you deny a woman\'s "right to choose" an abortion that happens to be "late in her pregnancy?"' +p8116 +aS'You are like, so totally noble and sensitive! I really admire your pro-humanity stance. That is going out on limb.' +p8117 +aS'So the real victim here is that society won\'t be as you WANT it to be, and that\'s the real "casualty" here... Wow!' +p8118 +aS'I believe Alan Keyes already have used that term on us. (Alan Keyes, the ultra-concervative Republican Candidate for the Illinois Senate seat - in opposition to Barack Obama. The Maryland resident the Republican party had to recruit because they couldn\'t find anyone else in their right mind who would go against Barack. Also the very same Maryland resident/Television talkshow host who beratted Hilary Clinton for moving to NY and expecting to be able to "represent" NY\'ers. Yeah, look who\'s the hypocrit now.)' +p8119 +aS'What about them? Is this a question?' +p8120 +aS'Nor is there any need for some mythical molecular elemental, nebulas natural selection, or mystical transitionals based on peicemeal forensics and antithestic rhetoric.' +p8121 +aS"You mean to tell me that you would deny a woman's right to her own body for a zygote, yet you have no problem murdering real human beings? Sounds like a conservative to me..." +p8122 +aS'I think the same about religion. Why should you get your way and tryannise women, and I not get mine?' +p8123 +aS'How do you know?' +p8124 +aS'Well, j, the blah blah blah part was pretty important. It said, "Seife is referring to how information continues to exist in some form after it has been violently altered; the smoke from a burning newspaper contains data about the newspaper\'s content, albeit impossible to reconstruct, and even black holes seem not to truly eradicate the information in the matter they consume. All of which has nothing to do with Dembski\'s claim..." which is true. One definition has nothing to do with the other. Blah blah blah. http://www.uncommondescent.com/index.php/archives/903' +p8125 +aS'Well bravo for you - they must not be all that good considering. Or did you simply learn to be deceptive yourself and confuse that with deception by others? Who can say?' +p8126 +aS"No, you're the NRA's wet dream." +p8127 +aS'How tolerant. Lets talk about the Spanish Inquisition.' +p8128 +aS'what about to d-y-k-e-s marrying each other, would you call it "butch-ery"?' +p8129 +aS"Well, I suppose creationists would object to careful definition of terms and the assiduous distinguishing of fact from non-fact, wouldn't they? It runs counter to all they hold dear." +p8130 +aS'If blacks are offered a bus ride, why does it matter where they sit while they are on the bus? They get all the same benefits. What\'s the beef...except that you can\'t say that you\'re at the "front of the bus"?' +p8131 +aS'Because you are a Darwinist - this predictible insult testifies to my rightness. Your approval/compliments would of supported my wrongness. Ray M.' +p8132 +aS'Oh they think they can Doc! They think that we gun owners are the terrorist! Personally. I think that all of this talk about Gun Control is happening because they are mad. They are MAD that a Black Man! Is in the White House!' +p8133 +aS'Oh, I get it\xe2\x80\xa6 Flashlights and I-Pods have souls and consciousness.' +p8134 +aS'and where did they find the participants for this study, bath houses and bars? Gay men are a hidden population in statistical relms. It is very hard to get a true random sample of data on gay men. Studies will say whatever the funder of the study wants it to say. You just get data from the right place. If you want gay men to look like raging alcoholics get your study participants in a bar. If you want them to look like sexaholics then you get your study subjects in bathouses. The truth is that to have honest statistical data you need RANDOM SAMPLES.' +p8135 +aS"You know what is absolutely incredible about you little child? You constantly make the most blatantly ignorant and irrational statements which have no basis at all in reality, yet you actually think you are being intelligent. (Note childs quote in my siggy, below.) And you really should look up definitions before using words when you have no idea what they mean. Didn't you start a thread about that, hypocrite? You are talking to a person who accepts Intelligent Design as a rational explanation for Mans origin, yet you are so ill informed that you allege he is aligned with a belief in animism, when animism was founded in pagan religions and asserts that pretty much everything has a soul and spirit. Animism (from Latin anima (soul, life)[1][2]) commonly refers to a religious belief that souls or spirits exist in animals, plants and other entities, in addition to humans.[3] Animism may also attribute souls to natural phenomena, geographic features, and even manufactured objects. Religions which emphasize animism in this sense include Shinto, Hinduism and pagan faiths such as folk religions and Neopaganism.Animism - Wikipedia, the free encyclopedia Now show me a christian who defends ID, believes that, you mental midget." +p8136 +aS"Sinjin, we aren't talking about the 17th and 18th centuries." +p8137 +aS"And they wonder why the science community doesn't take them seriously..." +p8138 +aS"That is your belief. You've no evidence provided other than it is just your belief." +p8139 +aS'You know, I\'d believe that more if there were people like the Shindler family who have pushed for federal courts to intervene and destroy the sanctity of marriage. There is nothing you could do or say that would convince me that Americans somehow have any respect for marriage whatsoever. What heterosexuals have done to destroy this institution from the inside out only tells me that heteros are simply spoiled children who have the attitude of: "If we can\'t make it work, we aren\'t going to allow anyone else to come in and do marriage better."' +p8140 +aS"Since when was having the gov't recognize a marriage a human right?" +p8141 +aS"Oh no. The main disagreement between theistic evolutionists and Fundmentalists is that Fundies aren't worshipping God, but a false idol of their own making." +p8142 +aS"And if I did then so what? Hiter's Mom and Saddam's Mom both were given the option to abort their pregnancies by nurses and decided against it. So I guess this makes pro-lifers responsible for the holocaust and the slaughter of Kurds?" +p8143 +aS"Me, too. I'd probably throw in some counseling as well, just for starters." +p8144 +aS'You know, I\'m thinking of suggesting that they put a permanent link to an online dictionary on this forum. http://dictionary.reference.com/search?q=designed You could take "intelligently" to mean that the being is conscious of what it\'s doing; that it\'s doing what it is purposefully.' +p8145 +aS'How strange. It seems that Habbit\'s definition of the word definition is meaningless. Physicists and chemists can define what they mean by the word "carbon," but according to Habbit that is just their opinion. According to Habbit, carbon can be a chocolate candy meant to be eaten in a car. That may be his opinion and he considers it as valid as specific definitions assigned to words used by experts in any given field.' +p8146 +aS'Not! OK, too short, Not!' +p8147 +aS'And you have just described "creation science." No application of the scientific method. No testing. The conclusions are known before the judicious quoting of scientific authority has even begun. I notice that you use one of those quotes of a scientific authority below. You show that you are what you decry.' +p8148 +aS"It has a financial impact on ALL taxpayers. To say that it has no impact on anyone else is disengenuous. Wow! You can read Wiki's pseudo-knowledge. I'm impressed! Now, tell me how the court can rule a California Constitutional Amendment to be unconstitutional before it strikes down the Federal Law that gives states the FEDERAL right to ignore other state's gay marriages." +p8149 +aS"So you've never repeated a sin?" +p8150 +aS"I'm not going to go into what is wrong with the idea of God without knowing it is what we mean we speak the word. Excuse me if I am mistaken, but it seems that you are getting defensive on your belief before I even begin a debate. I'm simply looking for any one wishing to participate on the nature / existance of God. If you find my questions to be complete nonsense and that I'm only here to critize theism than you need not participate. thebootfitter," +p8151 +aS'Just can\'t satisify "them thar\' Moralizers." I remember the election of 1960, and how many were worried about JFK taking his "orders from Rome." Maybe that is why we are a land of laws, not of men.' +p8152 +aS"Well, then, I guess that in America we can't possibly be safe from kill-happy gunners can we?" +p8153 +aS'Have you seen who our current President is?' +p8154 +aS'If you dont believe that muslims love life they will cut your head right off! Its an easy choice if you ask me.' +p8155 +aS'oh, sure...ok...whatever you say.' +p8156 +aS"Target shooting and handgun hunting, for starters. There's also self-defense, although not many people seem to have a great desire to defend themselves. If there's no legal use for a handgun, then why do all those cops carry them?" +p8157 +aS'Like the crazy idea the Earth goes around the Sun.' +p8158 +aS"So it's alright for a Evo to insult you and go off on a tangent, and expect to get answer. What's the point in answering if your being mocked, before you give answer. Now I know why there are few Creo's on this forum." +p8159 +aS'i think slave holder\'s asked a similar question to people who believed slavery was wrong. "what are they worth anyways?? why do they deserve to be treated like us?" hmm' +p8160 +aS"you know what..you are right, any unwanted person should be killed. Lets start with nursing homes and then move on to mental health clinics. After that, we should kill all the poor people because they don't really help society that much. OH! and don't forget the handicapped...who would wanna live like that? Kill them...it is merciful...who cares what they want anyway, they don't know what they are saying. Then we will have a wonderful society" +p8161 +aS'Oh, and I found this from here: http://www.jci.org/cgi/content/full/112/9/1291 "The discovery of species-specific as well as universal intercellular signaling molecules reveals that bacteria interact with one another using surprisingly sophisticated mechanisms of communication. In nature, bacteria are rarely found in isolation, and evolution appears to have provided a mechanism that allows them to detect when they are in heterogeneous communities, to assess the proportions of self and other in mixed-species environments, and to respond to this information by appropriately modulating gene expression." It appears biologists haven\'t gotten it wrong, evolution is the explaination for bacterial signaling. And the bacteria still isn\'t exhibiting any intelligence. The only one getting anything wrong here is you.' +p8162 +aS'Could you avoid your constant use of strawman`s fallacies please?' +p8163 +aS"So, whether the embryo/fetus/whatever-you-want-to-call-it has rights seems to be a non-issue. Because, for pro-choice folk, even if it has rights, it still is preferable to ensure that it can be legally killed. Of course, it is obvious to everyone that an entity does not need rights in order to have legal protections. But I'll let that slide for now." +p8164 +aS'Blah, blah, blah. Stop throwing out discredited and biased stories. Explain in your own terms, exactly how having a gun makes you more likely to be shot. Explain the mechanics of how this works. Go on and try, make some sense rather than cherry picking poorly executed "studies" that prove nothing. You made the claim that if you have a gun in your possession, this fact magnifies your chances of somehow being shot. What you suggest can only happen if magic somehow exists, like the legally-owned guns sends out powerful magnetic waves to attract the criminals and hypnotizes them to shoot in a situation that they normally wouldn\'t shoot.' +p8165 +aS'Repeating superstitious nonsense makes it no less mythological than the first, second and third time you were shown it to be so. Skeletons, even from the BRONZE age, let alone your incorrect reference to the stone age, are not fossils.' +p8166 +aS'as in anyone can purchase a fire arm without a background check or gun safety training? not a good option. my apology if that was a failed sarcasm. -a|ex' +p8167 +aS'I presume that is a joke. Criminals have always had guns ban or not' +p8168 +aS'Good lesson! Always take the easy way out to try and avoid consequences of actions. Instead of leaving a note on a car saying you accidently hit you...you should just casually drive away. Thanks Simone! probably because this is an abortion forum and not a forum about the Iraq War..not only that, there is no parallel. the fetus would be a real person...and it seems like....in order to make the iraq war/abortion connection....you would have to support the war!' +p8169 +aS'Time to get a helmet...' +p8170 +aS'http://www.nytimes.com/2009/06/25/wo.../25orphan.html But they are not fetuses, alas, so who gives a damn?' +p8171 +aS"Really! Why not? I'm very interested. I think you're wrong, but I'm interested. Why? I think you're right, but prisoners usually marry women, don't they?" +p8172 +aS"Don't count on it. Republicans do not believe in equality, individual freedom, or human rights. They only kowtow to their religious right masters. If Republicans trully belived in individual freedom, equality, and human rights the would wholeheartedly support this legislation." +p8173 +aS"People with big egos have libidos that keep up. what's new? It's an unfortunate accompanying characteristic. The only reason that this was even posted was because it was another attempt to discredit anyone that is against gay marriage. The fact that most politicians cheat isn't a revelation." +p8174 +aS'Read what i actually wrote for a change Yank.' +p8175 +aS"You claim god is unknowable (partially or otherwise, it does not matter). You claim to know something of the unknowable, thus, you make a self-contradictory statement. Again. For what...the third time? Drop it, you're arguing illogically and I'm embarassed for you." +p8176 +aS"So you've got nothing to offer but a whining rant? Just because you don't like it, doesn't mean that the evidence doesn't exist. By the way, why don't you offer some reliable evidence to support your foolish claims above. Creationist web sites don't do it for me. Peer reviewed literature please." +p8177 +aS"Where are those organizations with such scientific rigor? If they truly do exist, they must be in the position to understand the God of the Gaps they're worshipping has become microscopic." +p8178 +aS'Ah, I see. Your reasons are secret reasons. On a debate forum, about gay rights, you oppose it based on....well you won\'t say! Nice debate. Who\'s really playing the game here? I have already listed on a number of posts why it\'s not constitutional. Since you missed it (It\'s only the first post in the thread) For gay coupes right to be married (Or the same legal status) 1. Human rights with regards to legal classifcation and the benefits therein are desired by comitted consenting adults of the same gender. 2. It\'s a contract between two consenting adults. 3. A contract that does not violate anyone\'s legal rights or cause any significant ill effects to the public welfare. It\'s unconstitutional to allow one group of people access to marriage rights (hetero couples only), and not allow it to female/female and male/male couples when they are obviously lobbying for it in significant numbers. It\'s now a public issue on a significant scale. Of course, maybe if you had a REASON for objecting to gays being treated equally with regards to the rights of marriage, we would understand not only why you are reluctant to back your claim, but why your reason is also not constitutional. You can call it games, I call it justifying my position while pointing out how opponents of gay rights, such as yourself, really can\'t make any reasonable justification for their desire to restrict human rights, other than saying "well I want to"...or in your case... "shhh...it\'s a secret". You know what WE call it on the debate forum when one side refuses to present or rebut arguments? Losing the debate. I realize winning and losing..i.e. being right and being wrong are not concepts found in religion, where anything goes...but out here in the real world actions have consequences, and words...yes, imagine that, have specific meanings. You verbally support a movement that restricts human rights, yet won\'t give us reasons for your position. I find that appalling. Yet you are content with labeling me as "playing games". How ironic. -Mach' +p8179 +aS"Maryland already has the law on the books. It's effect thus far has only been to eliminate certain makes and models from the Maryland marketplace and to extinguish the sale of certain collectables." +p8180 +aS'So if it can be operated by means other than human control, are you saying a dog can operate it, maybe a monkey, thats something we see everyday. You are trying to split hairs Penfold, for a gun to be fired weather robotically, or training a primate to fire one still requires human intervention, so stop acting stupid because you are not stupid.' +p8181 +aS"Talking about traitors, brady you are IT. Meanwhile on the other board you started previous to cutting and running like the coward you obviously are, Bryan posted a challenge to you. If you choose to accept the challenge which I have money that you do not accept, (so don't dissapoint me), be sure to read his guidelines so you will not make strawman arguments and red herring arguments. I am betting you cannot carry on a sustained debate without falling flat on your face" +p8182 +aS"And more people have died from anti-gun Senator Ted Kennedy's driving than will ever die from my AR-15." +p8183 +aS'Answers include but are not limited to: \xe2\x80\xa2 People need a solution for the Problem of Evil. \xe2\x80\xa2 People want to have an "objective" standard for good and evil. \xe2\x80\xa2 God said it, I believe it, that settles it.' +p8184 +aS'We DID learn about selective hearing in health class.' +p8185 +aS"Well good at least you are aware there is no reason beyond your opinion of morality against gay marriage. So by all means don't marry a man and the problem is solved." +p8186 +aS'Oh, well, that convinces me.' +p8187 +aS'Such black and white thinking places the Supreme Court and the NRA at one time in the category of gun banners. The Supreme Court stated that only firearms in common use receive Second Amendment protection. The NRA once supported a ban on Saturday Night Specials: "Viewed realistically, junky .22 handguns that retail for as little as $7.98 . . . aren\'t suited for target shooting, handgun hunting, or police or protection purposes. Most honest-to-goodness gun owners wouldn\'t have one around. Yet the reckless use of such junk has harmed legitimate firearms ownership." -"Restraint on TV, Cheap Handguns Wins Favor," American Rifleman, (March 1968) "On the Saturday Night Special, we are for it [banning] 100 percent. We would like to get rid of these guns."36 -NRA Executive Vice President Maxwell Rich, Senate Hearings on Saturday Night Special Ban, (September 13, 1971)' +p8188 +aS"So, in order to be against gay marriage, a person has to be faithful in his own marriage? Gimme a break. He supports what his constituents want him to support or he doesn't get elected. In case you haven't noticed, the majority of Americans are against gay marriage." +p8189 +aS"oh, it's obvious that non-darwinists have no affect on you guys. Nothing will ever change your mind because your mind is not made up on the evidence...it's made up on your worldview and your belief in materialism." +p8190 +aS'Oh, but Sina does not live in a womb so she is unimportant.' +p8191 +aS'Is that a threat?' +p8192 +aS'You mean to tell me you would deny a life to be lived out and someone to get away with a harmful crime?? wow, sounds like a liberal to me..' +p8193 +aS'I dunno. Those Priuses are so small inside and out. How much explosive compound could Hasan fit into the thing and still be able to get in and drive it?' +p8194 +aS'Of course, when wabbit says "dishonesty," he means "oversimplification"; the NMSR webpage is clearly designed for the layperson, not the geneticist. When he says "scientist," he means "shameless hack." Spetner argued that this is not an example of an increase in information until he had it repeatedly and undeniably shown to meet Spetner\'s own definition of information. Only now has he said, "Okay, so it\'s an increase, therefore it\'s not random." Classic moving the goalposts syndrome. But if wabbit would like to continue leaning on Spetner as a "reliable source," I won\'t stop him. More fun for me.' +p8195 +aS'OH! And I just finished breakfast... Can anyone say, "Fly By!"' +p8196 +aS"Could it partially be the fact that they don't want antiquated belief system dogma making their decisions? Must have access to a sonogram sounds like a lobby group attempting to sway opinion while enhancing revenue. Does the legislation force pregnant women who have not chosen abortion to have a sonogram? Raising children creates post-delivery stress syndrome." +p8197 +aS'And you can be described as a "pre-dead corpse" as well. Histrionic revisionist linguistics only serve to push some form of dishonesty agenda that can not stand by itself on the facts. It is the coward\'s route. Are you a coward??? Golly gee. Scared already? Ah, so the dictionary is the ultimate authority? And all the way down to the 5th definition no less? New name for you: "Dictionary boy." Thanks for demonstrating that you really are nothing but a sophist (Go look THAT up in your precious dictionary).' +p8198 +aS"So, by your logic, if there's a bad cop in New York, then all the cops in Boise, Idaho must be bad as well." +p8199 +aS"Well so is falling out of a building onto a piece of rebar. Or getting mashed in a car crash. There are a lot more of those than shootings but you don't seem to care. Why is that? Is it because you love to dance in blood?" +p8200 +aS'Well feel free to disprove evolution anytime.' +p8201 +aS'Prove something besides your ignorance? Homo-erectus and Neandertals differ in cranium size, bone size, bone structure, number of bones as well as the length and width of individual bones. I can see why people are laughing at you' +p8202 +aS'Nothing like quoting experts willing to stick their scientific necks out, huh? Or in your second quote: "But it now appears the warming from greenhouse gases has been offset by a strong cooling effect from dimming - in effect two of our pollutants have been cancelling each other out. This means that the climate may in fact be more sensitive to the greenhouse effect than previously thought." Huh?' +p8203 +aS'So your claim is that the laws of physics have changed? You see, it is not a matter of design. It is a matter of the physical limits of wood. Wood is flexable, and the longer the piece of wood, the more bend there is in it. Possibly you have seen a roof with wood supports that spans a large area. To do it requires huge trusses unless you add column supports. And I\'ll bet there aren\'t any spans of over 300 ft. where only a wood truss is used. For a ship/barge the problem becomes worse. If you make the keel thick in an effort to reduce the hogging and snaking, you reduct the room available inside. Even at that, it would be impossible to eliminate all of the flexing and that flexing would spring the planks of the hull. There is no calking that has been devised that can fill an ever changing gap between planks. And, of course, recourse to a miracle is the standard creationist answer when faced with evidence that their mythology isn\'t historic. "POOF! Goddidit!" And so, what is the point of the whole exercise in the first place? Why didn\'t God just POOF the ark into existance or just POOF anyone he didn\'t like out of existance? He wanted to teach the only just man in the world a lesson? Sure worked. First thing Noah did was to get drunk.' +p8204 +aS'I see, we just keep on adding legs until they match. BTW, they walk on those "jumping" legs also. Why are they not refered to as "Walking/Jumping" legs. However, if you feel you need to conqure another contradiction, here\'s a couple more. How long did Jesus stay ressurected? Luke says one day, Acts says Forty days. ------------------------------------------------ Using a literal reading and the Gospels, recreate a timeline of the crucifixion of Jesus.' +p8205 +aS'Atheism is for cynical, self-righteous twits' +p8206 +aS'So all the creatures you see today came about suddenly and fully formed? And you observed this? If this happened, the only one who couldobserve it is God.' +p8207 +aS'Oh dear, deluded philisopher nutter alert. No one can empirically prove anything. Fact. End of discussion.' +p8208 +aS"How about a sin tax of $100 dollars each time you log on and $10 dollars a word for each time you speak one? It's fair because it would help pay for all the lying propaganda damage you do to society. Rights come with responsibilities. On guns, no can do. SCOTUS has ruled many times that a right freely stated in the Constitution cannot be compelled to purchase a license nor a fee to exercise. NEXT!" +p8209 +aS"So montalban. Why don't you tell us about creationism. What is the theory? What is the evidence? What predictions can be made. We can assume that since you haven't responded to previous requests that there is no theory and no evidence. It is only superstition based on childish mythology." +p8210 +aS'But they consider the exact same thing inside a human that has yet to be implanted a pregnancy? Double standards much?' +p8211 +aS'You think its bad now? Watch what happens if Gov\'t takes control. I saw a great tagline the other day, it said "If the US get socialized medicine where will Canadians get healthcare?" Anyone who doesn\'t like insurance premiums is free not to pay them, at least until the gov\'t takes over. Happy New Year' +p8212 +aS'And where exactly is your proof that "Stop, don\'t touch, leave the area, tell an adult" is indoctrination and translates to "go out and buy a gun, buy as many guns as possible, obsess over the gun, etc."' +p8213 +aS'So the radiometric data stand: the Earth, moon, and older meteorites are all 4 or so billion years old, not just a few thousand. Changing Decay Rates? Another Creationist attempt to counter radiometric dates that are incompatible with their young-Earth religious position is to claim that decay rates are not constant, thereby throwing a monkey wrench into the calculations. There are at least two problems with this argument. First, it is not at all clear how varying decay rates could result in multiple decay sequences all agreeing on the age of an object. Remember, for example, the oldest exposed rocks on earth, dated using different parent radioisotopes? All five of the decay sequences (Rb-Sr, Pb-Pb, U-Pb, Th-Pb, and Lu-Hf) clustered right around 3.7 billion years. If decay rates vary enough to throw off dates by billions of years, why would they vary in exactly the way needed to consistently produce the same results? Second, radioactive decay of nuclei is not comparable to chemical reactions. In chemistry, the rate at which chemical reaction proceeds can be altered in a number of ways, such as by changing the temperature, acidity, pressure, or reactant concentrations. Such changes, however, have essentially no effect on nuclear decay. In fact, experimental attempts to alter decay rates have been made, but failed.' +p8214 +aS"So biology didn't exist before the theory of evolution was formulated?" +p8215 +aS'And it is heat that resets the clock. Thus it is volcanic rock and ash that can be dated most reliably.' +p8216 +aS"you mean like partially pregnant or almost pregnant or almost a virgin? I don't have a beef with God, I only pick on guys shorter or weaker than I." +p8217 +aS"Actually the defending of ATF wouldn't do much with regular guns since they have little to do with them. ATFs function is with NFA guns, which you probably know little, or nothing about." +p8218 +aS'Well is this serious science or is this ring-around-the-rosie on Sesame Street? Am I just supposed to play make-believe and/or use my imagination? I can do that -- for instance, when I play with my kids, I\'m real good at playing the role of "Ken" when we imagine that "Barbie goes to the beach" Surely the fossil record shows gradualism or not. I bought a book a while back at a half-price bookstore from Niles Eldredge. He says the following about gradualism: ---------------------------------------- Change in this manner (gradualism) is just not found in the fossil record. pg. 48 Darwin invented the myth that species were not real to convince the world of the nonmyth that evolution had occured. pg. 52 Darwin\'s prediction that long-term evolutionary change should produce a systematic pattern of gradual, progressive change in the fossil record was faulty. pg. 53 As we have seen in the previous chapter, the usual conception casts evolution as a gradual, steady process of adaptive change. And we have already seen that the fossil record conflicts with that view. pg. 57 We\'re faced more with a great leap of faith -- that gradual, progressive, adaptive change underlies the general pattern of evolutionary change we see in the rocks -- than any hard evidence. pg. 57 ------------------------------------ I guess I would consider myself more of a PE guy than a gradualist simply because of what the fossils indicate. It seems to me that instead of evolving gradually that animals evolve quickly -- like the spiders on my shed. (do you find it odd that they emerged yellow in the spring?) It seems butterflies have this same ability.....Evolution sure is amazing! For instance, Monteiro said, the darker wing patterns that show up in butterflies that emerge in the spring serve to warm up the butterfly faster, whereas butterflies that emerge in the summer have lighter colors. "Also, many butterflies that emerge in the wet season in the tropics have large, conspicuous marks on their wings that deflect the attacks of predators while the butterflies are actively finding mates and laying eggs, while the dry-season cohorts are very cryptic, trying to blend in with their environment and not attract any attention from predators until the rains arrive again," she said http://unisci.com/stories/20021/0313021.htm' +p8219 +aS'So when your God killed all of the helpless, little first borns in Egypt he too was another baby-killing liberal? You are very amusing and naive.' +p8220 +aS'Then 99% of creationists are not informed as far as I can tell. It seems that your position is that "informed" creationists are neo-Darwinists, fully accepting of the theories of evolution.' +p8221 +aS'This one certainly seems to be out of context, as reading a mere 2 verses farther yields the statement that "[Menahem] did what was evil in the sight of the Lord. Are you then suggesting that what Menahem did was wrong? I would agree. And so, apparently, does God.' +p8222 +aS'Color is a function of the wavelength of light. Thus, quantum considerations aside, there are a nigh infinite number of colors. Humans, of course, can only see a subset of those colors, ranging from about 400 to 700 nanometers. In particular, our eyes have cells "tuned" to three ranges of wavelengths; blue, red, and green. You could think of those as short, medium, and long wavelengths. By extrapolating from the relativity intensities from the particular cells we can "figure out" what wavelength is entering our eyes. http://www.cambridgeincolour.com/tut...perception.htm Does this dispell your confusion? Edit: And just to address one other point, scientists are well aware of the limitations of the human eye. That\'s why, when exact determination of color is important, machines that can read precise wavelengths are used, rather than relying on the known to be limited instrument which is the human eye.' +p8223 +aS'And I just spent all that money on a new camera. Pity.' +p8224 +aS'And you think the British would do that?' +p8225 +aS'Oh? And what is the specific amount of pot you have to smoke before you become a drug crazed fiend?' +p8226 +aS"Well then. All of the ex-christians have it both ways don't they. Since they are saved they can lie, cheat, steal and have wild, illicit sex (following the example of several christian preachers)." +p8227 +aS'You mean like a tapeworm? Should removing tapeworms be illegal too?' +p8228 +aS'Yea, and so is gardening. Both are "murdering" living things. Both do not mentally exist. A strand of DNA is the only difference, which isn\'t very much.' +p8229 +aS'Well as long as you ignore the evidence, why do you need proof. Blind faith works just fine.' +p8230 +aS'Interesting sigline. Let?s explore it further. So, if I?m a woman working in a high crime area of a city at night and carry a handgun for my protection because I?m only 5? tall and 100 pounds and couldn?t engage in hand-to-hand combat with a 250 pound assailant, I?m a coward?' +p8231 +aS'Looks like you\'re not asking for objections to the conclusions and analysis this time around, like you were here. I guess it is wise only to argue on the grounds you know your opponent will find the most irritating or difficult. At any R.A.T.E. (ha ha ha...), I\'ll repeat the objections raised on the old forum, which move to doubt the sufficiency of the empirical data: From http://www.creationresearch.org/crsq...1_1/Helium.htm: "Thus our new diffusion data support the main hypothesis of the RATE research initiative: that God drastically accelerated the decay rates of long half-life nuclei during the earth\'s recent past." The empirical data is missing, Zero. The problem with the empirical data in support of the above statement, is that it does not exist.' +p8232 +aS'Is this a rational statement? If so, prove it rationally, by science.' +p8233 +aS"This should be in the science section, not the CvE section. Don't give SS any more reason to believe that the big bang is part of biology." +p8234 +aS"Since I don't believe believe that everything had a common ancestor , a rock , I consider all ancient reptiles dinosaurs. If that is incorrect in your book so be it. We are not debating the definition of dinosaurs." +p8235 +aS'Then argue with yourself. Why bother having others answer for themselves' +p8236 +aS'Yes. What would a former Archbishop of Canterbury know about Christianity?' +p8237 +aS"So the police can be there instantly if you have an intruder? They can respond before you even call them? Wow, you have some fast-responding police! That's fine if that's what you want. But I'd prefer take personal responsibility for myself and my family, thank you, rather than trust the police who may or may not be reliable, trustworthy, and likely won't be there fast enough to stop an attack before it happens." +p8238 +aS"And I was correcting you. If you are offended then that's the breaks." +p8239 +aS"Crammed with them, sure, why not? It's easy, only a few million light years. The scientific method is used in weather forecasting too." +p8240 +aS'yes, we will send you to the camps and all of us will gather in our black robes and dance around a fire while we make you dig ditches.' +p8241 +aS'and for you MIT stat loving freaks: http://web.mit.edu/~noto/Public/bk_v8.pdf' +p8242 +aS'Yep when about 99.99% of a cows diet is grass...I guess we should be eating that instead. It is hard to urinate in one corner of the toilet. If all ground that is being used for livestock is "wonderfully transformed" into grain production there will be many many wild species that will go extinct due to lack of uncultivated land.' +p8243 +aS"Well, thank you for the riveting example of Poe's law in action. Parody or actual argument? Only the poster knows for sure." +p8244 +aS"Just helping something live doesn't affect evolution unless it affects the ability to reproduce viable offspring. If there was no nylon before the 1940s and there is an organism that can survive by eating NOTHING else, what does that tell you? There could not have been a population of nylon-eating bacteria before 1940. This is a new population that did not exist before." +p8245 +aS"That's so trite that it is meaningless." +p8246 +aS"Come on, now. You're talking about a city where the dead vote in every election." +p8247 +aS"We've answered these questions already over and over again and you'll get the same ones as well." +p8248 +aS'What if a 13 year old girl comes up to you and asks for sex, and you agree? Are you forcing yourself on to her?' +p8249 +aS"So you plan to move out of N.Y.in a year or two,and own a gun?why not now?N.Y.laws are sticker than most,but not all.You want to teach your kids to shoot?Better do it now,later on it will probably be harder. Well if you don't think that gun control is the most important issue in the world and you totally agree that people should be able to own guns,but yet you have no problems with states making it mandatory for gun owners to have permits,thats almost a contradiction of terms for someone that says their pro gun. I may be wrong but is anyone saying or implying total gun freedom? What we are saying is, to many laws on it no more. 35-40 years ago we didn't have all this B.S.about it,you wanted a gun you went and got one (in other words very readily available) Walk down the street with one and you didn't have a S.W.A.T.team on you. We have seen to many gun rights taken so yeah every time a new policy or amendment comes along we are antsy about it. So if you support every amendment made to the constitution pertaining to guns, than I submit your not to interested in owning a gun. And for the record:gun toting bandits(out here we say bandito's)are jumping out of every ally{figuratively speaking}.But the pro-gunners know that if the anti-gunners had their way,only the bandito's have guns." +p8250 +aS'So what? How long did the idea of magical creation out of nothing in 6 days hold prevelance before somebody actually challenged it scientifically?' +p8251 +aS'Well I suppose I could\'ve always put up a sign that said "Trespassers will be held with legal counsel, robbers will be shot, survivors will be shot again" but you\'re just welcoming trouble with that.' +p8252 +aS"Well, that is the argument that one hears from creationists so often. So when are you going to get to the most delicious, highly satisfying entertainment? Even more important, when are you going to expose the theory of evolution? YOu don't seriously propose that your little series of cow pies is actually meaningful, do you?" +p8253 +aS'Actually, that honour is reserved for the usual representations of those who advocate young earth creationism.' +p8254 +aS"And that's why I think you are a troll. There really aren't any experts here. There are several who are knowledgable in a variety of topics, but that knowledge seems to me to be the result of being both educated and widely read. It also indicates an ability to reason and an open mind." +p8255 +aS"And that is more likely than a magical being who poofed everything from nothing, don't you agree?" +p8256 +aS'Actually, it makes sense only to you. If you look at nature for just a little while, you willl become aware of a great deal of death. But it is mostly very economical since scavengers make sure that there is minimal waste.' +p8257 +aS'You mean like allowing for, and funding, comprehensive sex education, birth control, and parenthood planning? Those things alone would reduce the number of abortions significantly. However, we live in a nation that would fire a Surgeon General for stating that masturbation is healthy. We live in a nation that believes that sex is only of the penis-vaginal penetration variety. We live in a nation where most pregnancy are unplanned. We\'re so busy "protecting\' our children, that we don\'t realize that the best protection is information.' +p8258 +aS'You know what? You\'re starting to remind me an awful lot of reverend Jackson and reverend Phlaeger (the one who said they were going to kill anyone that didn\'t support their ideas of gun control). The claimed that a gun shop owner was intentionally violating the laws of Chicago and selling all kinds of weapons to gang members, simply by being one mile outside of the Chicago city limits. Your entire argument is that since there are firearms dealers within a certain distance to the Mexico/America border, then they must obviously be outfitting the mexican drug cartels. You\'ve hung yourself with this article you just posted, and I\'m gonna explain why. The ATF has said there are 6,700 licensed dealers along the border, meaning they know exactly where they are. So why exactly isn\'t the ATF going in there and breaking them up for their illegal activities? After all if close proximity is an unquestionable sign of guilt, then the ATF must know that these guys are equipping mexican drug cartels with fully automatic machine guns (the kinds that the American people can\'t ever get) and grenades and rocket launchers, and maybe even the odd nuclear warhead. The ATF shut down Red\'s Trading Shop on matters as insignificant as typos. So why aren\'t they going in and shutting down these rogue dealers if they\'re doing anything wrong? It\'s illegal to own an automatic weapon of any sort without a federal tax stamp, and it\'s not possible for civilians to own post-\'86 model automatic weapons, so why isn\'t the ATF doing something about it if they\'re breaking the laws? Seriously Aussie, what is it, is the ATF saying "We know they\'re breaking the laws, but they\'re not doing anything illegal we can bust them on"?' +p8259 +aS"You're right it'll be fighting the war in Iraq. )Nah, really it'll be from social security, etc etc." +p8260 +aS"Showing the RIDICULOUS nature of some gun laws! Even the Antis can't (or maybe won't) obey them! Ridiculous paperwork traps that even caught and surprised the Queen of gun control! If they had arrested her, they would have gotten a Real criminal off the streets and NOW our society would have finally been safe! Ridiculous! But it was a good thing for her, that Bloomburg and his Illegal Mayors weren't around when she broke America's gun laws!" +p8261 +aS"How about this explanation - you're reading WAAAAAY too much into your precious Bible." +p8262 +aS"So if Jitobear's mother had the option to abort Jitobear in utero, you want Jitobear to have the same option with any children she carries? That's awfully progressive of you." +p8263 +aS"And why not? After all, Grimm's Fairy Tales is a wonderful read and who can deny the happiness Santa brings to 2nd graders? What's a bit more fantasy gonna hurt?" +p8264 +aS"Actually he is, and he's posted on this thread. It is a pity that you're unwilling to debate, but endeavour a smear campaign as you did on the Science and Math posts. I would advise you read the above quote before talking again" +p8265 +aS"Actually, breeding horses and donkeys isn't an effort to create a new species. Where did you get such a thoughtless idea. And neither is interbreeding lions and tigers. However, you don't seem to be aware that neither ligers or tigons are sterile. They are capable of breeding with each other or with either of the parent species. And then there are polar bears and brown bears, which can and will interbreed if given the opportunity. And the offspring are perfectly fertile." +p8266 +aS"well that won't help you when you go to hell...Woo hoo" +p8267 +aS"Methinks that our friend supersport has been reading too much of the Animorphs book series (which was very popular among my two children) - I wouldn't put it past him to try to use something like that to produce the case." +p8268 +aS"Really! Why not? I'm very interested." +p8269 +aS'I take it you have no understanding of science, much less the scientific method?' +p8270 +aS'I think you could teach gun-control at a gun-free school, too. Sex-education is also taught in schools that forbid their pupils to couple on the school yard .' +p8271 +aS"They're going after retailers selling ones that don't. Duh!" +p8272 +aS'Again, as an ignorant layman, I can only get the gist of this material, but how anyone could possibly argue against the genetic code as a product of intelligent design is beyond me.' +p8273 +aS'Gee the thimble wearing comic relief slides in.' +p8274 +aS'I see you know nothing about the subject...hardly a surprise.' +p8275 +aS"Ha, that is just an idiotic perspective. We'd have no laws (and many important ones) if you can't make a bill that doesn't affect you. Sorry Civil Rights legislation!" +p8276 +aS'Minor quibble. Omnipotence merely means that a being is capable of all things. It states nothing about how awkward or difficult these things are. Making a galaxy may require some serious brainsweat, whilst making a person may not... Anyway, besides that I agree with you!' +p8277 +aS"So, evolution is falsified because Ford didn't draft chimps to work the assembly lines? I've never seen such nonsense paraded about with such pride. I'd congratulate you on your win DamEtel, but I'm more impressed with your patience." +p8278 +aS"Oh no, it's not too complex for us to understand. So please explain to we simpletons how Intelligent Design is nothing more than animism. But first, here is the truth regarding this newest perverse propaganda you are promoting." +p8279 +aS"I thought you said that you had been following the converstaion. I guess you didn't understand any of it." +p8280 +aS"Women's rights actually exist, unlike the Christian God." +p8281 +aS'Way to go NRA,makes um look good ya know,kinda like they can give a little here and there.' +p8282 +aS'http://www.nytimes.com/2009/09/27/ma...27tools-t.html In other words, a lot of these kids never grow up. And then they get guns. And, did I mention the hormone was testosterone?' +p8283 +aS'and she would have been better by aborting the baby? That makes no sense. Instead of seeing your baby die naturally you would rather not look and kill it yourself. The same person died no matter how you look at it.' +p8284 +aS"Don't get me wrong sleazyrider I love babies, they're delicious!" +p8285 +aS'So your saying I have no right to disagree unless I can prove and refute evolution and science. Right, you can come back down to earth now. I can disagree with what I want to and no one an explanation, however that wasn\'t my intent. [quote]You have the right to defend yourself, but when you resort to comments such as "get a life" to socialist, we start (or merely confirm our existing notions) that you no idea what you are talking about when you disagree with science and evolution.[quote/] Oh you mean this comment from Socialist, "I am not considering your points anymore, so In a way I am. I just like making fun of them. It\'s entertaining". It\'s funny how you forgot to include his comment. What scientific answer would you have me give?' +p8286 +aS'You throw personal insults more than I do. So when will YOU grow up?' +p8287 +aS"To me, your point would be easier to decipher if you made a long story short. I'd rather read your point of view on the subject, without reading a mini -series of someone who wan't me to feel sorry for them. Do people who choose to have an abortion expect a welcoming committee?" +p8288 +aS'If our guns are mearly popguns as you just described them, then why do you want to take them from us so badly. Maybe you are considering a life of crime as a carrer, and your afraid of being shot, is that whats really going on here.' +p8289 +aS"Oh what a shame! Especially if it's true! Where did you get the idea that ID theory is not based on evidence and/or testing?" +p8290 +aS'Yes they sure will.... with what 776 accidental deaths last year due to guns as opposed to 3,402 accidental drownings seems like more should be spent on preventing drownings than guns. But if your intellect is not up to understanding hyperbole (literary form of exageration to express a point) I will try in the future to keep it down to your level.' +p8291 +aS"Oh, I don't know. Grow food in a garden, gather it from various wild sources, hunt game animals in the forest." +p8292 +aS"But I suppose the Pope is going to hell Here is a link to a website that has a brief list of translational fossils, there are gaps but that could mean that we have yet to find those fossils, or we have found them but no one has made the link yet. You also keep stating that evolution is theory, we all agree it is still a theory but it is the most plausible theory that fits the evidence found that Evolution is the most likely mechanism to explain that we have lots of different species, to condense it to the real basics just think of it as the ancestry of the species.(Apologies for condensing the Theory into those small sentences could be here forever explaining Evolution ) N.B Evolution does not mention how life started, there is another Scientific Theory on the Origin of life on Earth, but I can not think of it at this moment. Hunter it is really not good form on a message board when debating a subject to say someone is going to hell because they don't agree with your viewpoint, present your evidence why you believe that evolution is incorrect and we can have a proper debate." +p8293 +aS"Oh. Then you're just a dupe rather than being dishonest. Your information comes from a moonie. Funny that the Discovery Institute doesn't mention that. The fact that he decided to study biology with the express purpose of disproving evolution. So he had made up his mind that it was wrong before he undertook to find out what is was. Wells was encouraged by the Rev. Moon. He is known selective presentation of data." +p8294 +aS'Really? So, university presidents and trustees -- the overwhelming majority of whom have no connection with evolution, and most of whom are considerably more politically conservative than university faculties -- are behind the whole thing? Wow. You know, this sort of claim requires evidence. I would like see your evidence of university administration involvement. Got any? And who are the "top" in the peer-review process? Editors? Please explain what you mean.' +p8295 +aS"Most of the laws of the Peoples Republic of Kalifornia are aimed at rendering the citizens into prey. You can't point to many that don't. Self defense is not allowed there I am afraid." +p8296 +aS'I think it is hilarious that you still think that in order to do a detailed study of evolution, you have to read 10 different books on it and take brainwashing classes from a university. Maybe you just like making yourself feel superior to me...who knows...' +p8297 +aS'the cricket in the pliers feels pain... When you start to squeeze a cricket with a pair of pliers, it starts to wiggle and tries to get away so as not to get crushed by the pliers. Is it because the cricket feels pain?' +p8298 +aS'So, you are talking an incredibly expensive drug that MAY work 20% of the time when it is used. Are they just letting these people die....giving them morphine for the pain and letting them waste away? No' +p8299 +aS"Translation: we let you work and we let you vote, even though you let us down ('This is because of imperfection ...'); so even though 'men are not without blame too', the Fall is mainly your fault, so accept your inferior status and PIPE DOWN! Now, any guesses as to what organs thinking_person thinks with? Clue: they're not above his waist." +p8300 +aS'You mean "No! sex" , \'til you want *response-ably* to nurture a baby. What novel ideas!' +p8301 +aS'Yours. ..........' +p8302 +aS"I don't give a damn about the circumstances of the unborn either(obvious here I am not saying I don't care what happens to either, but for the sake of whether or not we should kill the unborn this is my stance). Neither one should have a right to kill the other...and for that matter, no one else should be allowed to come up and murder the women or the unborn. So my views are still treating them as equals. and I will ask you to stay away from more assumtions that you can't prove." +p8303 +aS'What a trite statement.' +p8304 +aS'and a brain with no body kept on life support is only a brain...no person. If beg the question here. I deny that a level of intelligence is needed to deserve rights. I disagree that what you can do is a requirement..only what you are (that being a human). Still, I quoted you as saying "a basic human fundamental right"...I am not sure what this right is or where it comes from or why it is fundamental or why it only applies to the humans you think it should apply to. Perhaps we should restrict it to only white folks again...after all, white folks are the only humans with white skin which makes them different from all other wildlife...right?' +p8305 +aS'Have you lost your mind? I got no idea what you are talking about.' +p8306 +aS'So Bush is responsible for the death of Third World mothers now?! Get real! There are billions of people on this planet, chose another vilian for a change.' +p8307 +aS"Yes, amazing, how they weren't people before." +p8308 +aS'So both daughters get daddy ******, shag him and get pregnant. And considering that God smites people for just about anything and everything in the Bible, he seems silently approving in this case.' +p8309 +aS"Like, I said, I can't take men's position on abortion seriously b/c they can spout off all they want; however their viewpoint must be affected somewhat by the fact that they will never actually have to make the decision themselves. As far as circumcision...um...who cares? J/k. I really don't know what to think about that. Never given it alot of thought, as I've never had a penis, don't plan on growing one, and therefore I can't have a valid point of view. Do whatever feels best to you. Get my drift? Hey, you two, Clerisian and Steeeve, quit arguing semantics. Geesh!" +p8310 +aS'So where will you be moving to?' +p8311 +aS'Oh God no. If there is anything more boring than twits talking, its twits' +p8312 +aS"My pursuit of happiness is denied by trees existing. Let's burn them down and destroy the environment. It's much better than me being unhappy." +p8313 +aS'Great idea. Explain why all the tests that prove it wrong are irrelevant.' +p8314 +aS'Less than a playstation, of course!' +p8315 +aS'Except that that would be the author\'s words, not a direct quote. Notice the absence of quotation marks? Special Agent Newell never said "17% came from the US". The author has as much trouble with the stats as you. 17% of the total have been traced to the US. We don\'t know the percentage of the total that did indeed come from the US but is untraced or untraceable. See the difference?' +p8316 +aS'Yep it is easy. Lizards didn\'t evolve an avian lung. This should be easy for the creationist: The avian lung is far more efficient than the mammalian lung. Why didn\'t your god therefore fit the superior lung design to mammals, especially that apparent "special creation", us humans? Also please explain why he fitted a superior eye design to squid and octupuses than what he fitted to all vertibrates. Once you have answered these two easy questions, I\'ve a few hundred more for you' +p8317 +aS"Chalk it up to the fact that -- although not all the time -- a good part of the time, the same people are pretty anti-anything education. We shouldn't expect them to argue positions that make sense." +p8318 +aS'Oh, I get it. So you believe, but you don\'t exactly "believe".' +p8319 +aS'8. Gay marriage will encourage people to be gay, in the same way that hanging around tall people will make you tall. This may be true because you cant chance your height...but let me tell you... hanging around jack asses will make you a jack XXX' +p8320 +aS"But what if it is unconstitutional, like Prop. 8? No, it doesn't. Are you saying homosexuals aren't American? Are you saying that more of gay's right should be stripped, including that of protest? How dare them fight for their own freedoms? I should lend you my time machine, and you should go tell this to Malcom X. And you still haven't responded to my post." +p8321 +aS'Many of the Christian denominations are ignoring them the same way they ignore the prohibitions against pork, mixed cloth, and stoning your children to death because they sass you.' +p8322 +aS"Okay Yankee Fan. Keep pretending that it doesn't. Well, if you never read the article, you wouldn't be pretending as that would be an argument from position of ignorance." +p8323 +aS"Well, as we can see from other recent posts, your reading comprehension is below high school level. I don't get it. Why do folks think lying enhances their POV?" +p8324 +aS"So, you're just an anti-geologist, anti-cosmologist, anti-archaeologist, anti-physicist, and probably a few more that I can't be arsed to think of right now. *shrugs* Might as well get it over with and just say you're an anti-science religious nutter." +p8325 +aS"I'd love to see an explanation about how the study of the natural world disproves the existence of all Deities. Especially the Deistic Gods. And I'd love to see how science is suppose to disprove a being that is not bound by logic, reason or any laws. What science can do is disprove that God was directly responsible for this or that, the sun rising, the rain season, etc. Did you perhaps realize that many scientists are Buddhists because Buddhism which has beings that behave as Gods with such powers and exist partially within the natural and supernatural? Or are you again assuming all religions don't exist except for Christanity?" +p8326 +aS'And YET! The good mayor has the time, money, and extra man power to go to other cities and look for crimes? Heck. I have been to New York, and he has an awful lot of nerve going anywhere else looking for crimes to solve. And what criminal enterprises has the people of his good city people supplied other cities with. I mean besides the crimes his investigators committed. Drugs, thugs, and murderers to name a few. Bloomberg, stay the heck where you belong!' +p8327 +aS'So, in your scenario, Prototype, are you anti-choice folk going to force us who believe in choice, who believe that a woman owns her very own body, are you going to place us in re-education jails so that we, too, believe that a fertilized egg is a human being?' +p8328 +aS'OH GOODY! Another meaningless quote.' +p8329 +aS"Which wouldn't make a darn bit of difference - apart from the tiny matter of women dying and suffering permanent harm, but don't let that bother you. you'll also have to amend the constitution to remove any references to bodily autonomy. get ready to donate your kidney!" +p8330 +aS'This brings up an interesting point, and that is that science is extremely limited. Using your logic, persons should not have believed in the fact that the earth is a round object floating in space before it was proven scientifically, even though it was a fact then, as it is now. This fact was written about in scripture long before science "proved" it, just as the description of the hydrological system was described in scripture long before scientists figured it out. THIS is where the evidence can be found for the validity of the Bible. When you find scripture after scripture of historical fact and scientific reference that is found to be accurate, you should tend to take is seriously. The problem with science is its arrogance. It\'s inability to see that truth can be found in other areas is a real handicap. Add to that theories like evolution that disguise themselves as science, and you have a real problem. One does not stand on a train track with a train barreling down on them to "prove" they will die. This "fact" is usually taken to be reliable, even though that person hasn\'t "proven" it to be true through experimentation. If you need scientific proof for everything you believe, you have a real problem. If this were the case, no legal decision on guilt or innocence could be rendered in a court room, since the decision is usually rendered based on the preponderance of the evidence related to a crime that was commited in the past. We have the same problem with the origin of life and evolution of species - macro changes that supposedly occured in the past. As such, every availble form of investigation should be followed up on. This includes metaphysical possibilities. They can be investigated just as evolution is, buy the study of history, manuscripts, archeological methods and statistical and prophetic evidences. Both scientists and creationists are talking about investigation to find truth, and to self limit your investigative techniques is not only reckless, but might be a form of self delusion. Requiring truth to conform to your standards, as scientists of the past did, can either cause great delay in finding truth, or cause you to miss it entirely.' +p8331 +aS'And of course, the theory of gravity isn\'t "physically" proven either. Neither is the heliocentric theory or atomic theory or the germ theory of disease. However, evolution has been observed to occur and the current theories are the best explanations that we have for the observations. As far as your mangling of the "Out of Africa" theory, it would be nice if you actually learned what you are talking about before you babble such nonsense.' +p8332 +aS"Yes. It's part of this massive conspiracy. We're trying to thin out your population so we can take Australia for our own." +p8333 +aS"He wasn't discussing abortion nor was He promoting it. He was declaring war on an unclean people whom He commanded the Jews to wipe out in a time of WAR. Again you rip an event out of context and attempt to imply God was endorsing abortion." +p8334 +aS'Argh. Atheism is no belief in a god, "without belief in god". Why would you try to prove a negative? Did you wake up today and believe in a UNI because you couldn\'t prove it didn\'t exist? Richbee has a long way to go to "prove" anything other than his fondness for rhetoric. -Mach' +p8335 +aS"So students don't deserve their constitutional rights?" +p8336 +aS'Wrong. It was Soviet women. The USSR no longer exists. Unless you believe that those godless commies are just playing possum?' +p8337 +aS"You jsut don't get it. You act like two wolves and a sheep voting on what to have for lunch. You as a hetero get to go and get married to the person of your choice but I do not. What part of that do you not understand. You say this isn't personal and for you this is true but for me the man I love is nothing but a stranger to me in the eyes of the law. How cruel can you be" +p8338 +aS'yeah ok buddy. Just because you can not figure out what those little numbers on the end of the things I have posted nor simply because you lack the mental fortitude to look back to some of my older posts or click and R*E*A*D the links to see that I have indeed provided ample backing does not mean that I haven\'t been doing MY job. Now do you have anything of substance to add "Tim"? "Futue te et ipsum caballum tuum"' +p8339 +aS'what other forest? By your logic there would only be one left in the entire world, and it would be what, the size on central park?' +p8340 +aS"So, if a baby is having trouble breathing that's been born already, you don't consider it a 'person'? Methinks you've not thought through the implications of your argument here at all." +p8341 +aS'Yes that actually did happen. And knowing our nanny state government where anything that could cause harm is banned we have it banned. BTW do any of you know of some great airsoft fields over in USA?' +p8342 +aS'I think this post pretty much sums up the depths of your prejudice, and the thoroughness of your ignorance. A child should endure physical abuse before being allowed to be adopted by a loving gay couple? Being abused physically is preferential to being adopted by a loving gay couple? I always have to chuckle when people are so eager to reveal their prejudices in such a way that demonstrates they are completely non-credible as any type of character witness...' +p8343 +aS'Come back when you learn the difference between climate and weather.' +p8344 +aS'Just so we\'re clear here, your idea of "proving your point" that I\'m dishonest is to call me dishonest. Yeah, not quite how it works outside of Archie-land. Sorry.' +p8345 +aS"Traitor? More like the boy wised up on the matter. So, Brady, how's it feel to have all your work and hopes destroyed in the blink of an eye? How does it feel to know that your last best hope for a disarmed society has abandoned you by the side of the road, and you're now out of options and the only thing left to do is eat the crow?" +p8346 +aS'Well that explains your anger. I hope you are blessed with homeliness. Makes your commitment easier to keep. How old are you now?' +p8347 +aS'Actually there is one other point of view. The "Don\'t Care What the Bible Says" one.' +p8348 +aS"[quote=zsu2357;361463][quote=Penfold;361428]Wrong. It is a precision machine designed to kill effectively. It can be operated by other than human means. Yes, you would be wrong. No, they don't. True, but nobody suggested there was such a grey area. We accept your word. I have never seen this, do you have examples? So far as I am aware, nobody but you believes this to be the case.[/QUOT ET phone home, fed-ex just delivered your case of 9mm shells lol." +p8349 +aS'Well maybe that will teach him to get a education for once. Still, my analogy is quite true. Furthermore both words are meant by creationists to argue evolution is faith. Dishonest, but that is essentialy the mantra of creationism. "Lie, cheat, steal and fabricate to get people to be believe."' +p8350 +aS'Oh well thats tough hat to victims of rape then. Somehow I doubt this will survive legal challenges, assuming Gov.Rounds actually signs the Bill.' +p8351 +aS'No, billsco, I\'ve never had an insight which would reveal the creationist mindset in the way you describe: I wouldn\'t mind seeing an occasional imp or two on my ceiling. I\'ve also wondered (like Waxy) about the motives of the scientists who at first patiently, and then satirically, address the "arguments" of the religious enthusiasts who so desperately want to trash evolution. Are the resident biologists performing an altruistic service or just entertaining spectators like me ?' +p8352 +aS'You mean like they are happy wile having sex?' +p8353 +aS'And I suppose they are also responsible for the evolution of utterly insane mental cases such as yourself? And for electing GBII. And for Saddam Hussein. And for the drought in the South currently. And for cancer and AIDS. And heck why stop there why not for the Devil himself. All those sodomites must have become the original demons in hell I suppose.' +p8354 +aS'2, A. Myth; Complete fabrication.' +p8355 +aS'What Would Jesus Carry?' +p8356 +aS'Does this seem a little ironic to anyone else? Either becoming intoxicated is acceptable or it isn\'t, why does the method make one acceptable and practitioners of the other "losers"? For the record I don\'t drink, smoke or partake of illegal drugs.' +p8357 +aS'My my, did someone get up on the wrong side of the bed or what, of course you realize that you just gave me the answer I was looking for, not that I didnt already know the answer, I just wanted you to say it. I dont believe I need a clue, so I will let you have it instead Brady.' +p8358 +aS'Now, I could ask the same thing.' +p8359 +aS"I believe we have a human responsibility to one another. That we are our brother's keeper. Tell me, Bassman, if there aren't enough jobs, and the costs of medical care are skyrocketing through the roof, what do you suggest your fellow Americans do? Just drop dead?" +p8360 +aS'Except that it does nothing of the sort... But then, what can we expect from somebody citing a website trying to sell you liquid vitamin supplement... Nevertheless, we look into the Pottenger\'s cats claim. Here is a page called, "Lesson of the Pottenger\'s Cats Experiment: cats are not humans." Although it\'s a page aimed at explaining why this "experiment" is not applicable to humans, it exposes the other, erm, flaws in this experiment. The one striking me based on the wikipedia list of diets for the groups should be obvious to everyone: many of these cats were being deprived of protein. This page confirms and elaborates. In fact, its first point is that today\'s cats have no problem reproducing for several generations on today\'s cooked food. The difference is that good owners don\'t feed their pets deficient diets. The real irony here is that this experiment -- were it reliable -- would be the antithesis of supersport\'s Lamarckism. In order for supersport to be supported, the cats being fed inadequate diets would re-develop those broken pathways for manufacturing essential amino acids. Obviously, they did not. The only thing we see here is the effect of poor (i.e. positively malnutritive) diet. We can conclude that supersport\'s Morton\'s demon is pretty much in full control. There\'s no other explanation for somebody seeing this experiment and thinking it supports Lamarckism, or even counters evolutionary theory, even if he doesn\'t know the basics of experimentation and nutrition.' +p8361 +aS'Because all scientists hate god. Again, this is a fact.' +p8362 +aS'So you actually know enough, you can see the beginning and end of time, you know what is inside each and every individual on the planet so much so that you can say God is wrong to do any given act? How is this possible oh great and mighty oz?' +p8363 +aS'So can women can cure themselves? Is that what you mean? Or do you mean that once they forgive themselves they can move on to help other women do the same? thanks in advance...' +p8364 +aS'-------------------------------------------------------------------------- (Time.)' +p8365 +aS"Well, both traffic in waste material. Many traps are present in each for them to function properly. And don't forget where biological evolution and plumbing both lead you--into a cesspool." +p8366 +aS"So you agree that it's not necessary to have high capacity magazines because gun owners can reload quickly when defending themselves against a criminals. Good we can agree on at least one thing." +p8367 +aS'Well all you have to do is tell us the minimum time during which it could happen by NDS theory and then how long it actually took and we can compare the numbers. Of course you will have to detail how you arrived at both sets of numbers. Enjoy' +p8368 +aS"Actually, shootings happen because a person points a firearm at someone and pulls the trigger. This is illegal. You can't make it more illegal than it already is. Shootings do not happen because of gun happy nuts running around. Nobody has ever been injured anywhere by any gun happy nut running around. Many have been injured by criminals who disobey the law. As far as puncture wounds, do stabbings count? Or, as it appears, are you only concerned with those caused by firearms?" +p8369 +aS"And I didn't have to choose to be homosexual. It is a natural inclination. I chose not to hide or lie about who I am. However you are the one who seems to be under the delusion that being gay is a choice. Once again I ask you if it is just a choice then you choose to be gay this moment." +p8370 +aS"So your biased reading of the Bible coupled with your personal flaws and your misunderstanding of science is the basis of your religiosity? Somehow I don't think that's something you'd really want to brag about..." +p8371 +aS"Well lets speculate about how many possible explanations we could concoct if left to supposition. I'm talking about the only two explanations for the origins of life that have ever been entertained as viable empirically testable concepts in modern science." +p8372 +aS"I think that I don't have quite enough Tobasco in my Bloody Mary." +p8373 +aS'No, of course not. Instead, you call us "liberals" and then call liberals racist.' +p8374 +aS'What can ya expect when they killed free speech in favor of hate speech tribunals? Diversity at work maybe?' +p8375 +aS'http://www.nytimes.com/2009/02/24/he...4hospital.html But a fetus in the womb is far more important than the lives and health of these women.' +p8376 +aS'So Starguy since you are obviously afraid of guns and won\'t go near, you don\'t have to worry about any"violent testosterone\'s" but if you want to be friendlier well you know how to do it. OUCH.' +p8377 +aS"Oh yeah and did i forget to mention. How in the world do you get off saying I'm a liar? by the time im twenty two i will have accomplished so much more than you have. You pedegouge/scholars mistake being intellectual with blending in with everyone else. Try and stand out from the croud next time." +p8378 +aS'Well, you have proven yoruself to be a man with no brain, that is for sure. The definition that was given was the one that scientists use, not the layperson.' +p8379 +aS"It's kind of funny that they claim this happened, but can't get the woman to come out and say it?" +p8380 +aS'So,are you saying that all anti-gunners are fearless??? If so,,I must laugh.' +p8381 +aS'Well when the second amendment was written, "modern military weapons" were black powder rifles. Feel free to defend yourself with black powder rifles. In addition, what are the non-recreational benefits of guns. In other words, what would we lose by taking away automatic guns (since I know your manly self could never part with every weapon you own.)' +p8382 +aS'Over the Internet that can be a particularly difficult call...' +p8383 +aS'Oh really? Gun ownership allowed these "lunatics" as you call them, to become government dictators? If I owned 50 guns and 10,000 rounds of ammunition, you\'re saying I could run the government with an iron fist all by myself, just like that? Any random person can just appoint themselves God over the entire nation, without a single ounce of resistance just because they\'re armed?' +p8384 +aS'Rather unsurprisingly, the U.S. constitution does not have any bearing on Australian law.' +p8385 +aS"Wouldn't it be wonderful if women everywhere would not bleed to death after childbirth?" +p8386 +aS'Neither are yours. *GEE* *gasp* *amazement* *realization* thistownwilleat-' +p8387 +aS'He or she is still subject to attracting a mate more effectively than other monkeys, as a step toward producing offspring more effectively via any number of mechanisms.' +p8388 +aS'LOL! By that logic children entering a school with substandard English skills are just as much a threat to others as armed children entering a school with no training in firearms.' +p8389 +aS'How would I fill in some of the gaps? Here was my sequence: something like unicellular life to multi-cellular life, random multi-cellular conglomerations to an amoeba, to a fish, to a dinosaur, to a mammal, to an ape, and finally to a man??' +p8390 +aS'Archie, why should anyone even bother with you? You ask someone to explain polystrate fossils-three people do. You plug your ears and go "la-la-la, I can\'t hear you", then demand that someone explain polystrate fossils. Someone else posts 100 categories of evidence against a global flood, and you wave it away as "evo lies". Yet you demand we take your biased site at face value. I swear, you get dumber by the minute.' +p8391 +aS'Oh, right. And what would yours be? "We the humble people of the human species have decided to break away from Britan rule and form our own bubble community. No one has any rights whatsoever, and we restrict our citizens to living in bubbles because we cherish each life, from skin cells to bacteria to plants to embryos. In fact, we really have no purpose in life, we just life to not kill other lives.' +p8392 +aS'HELLO!! THAT\'S WHY!! Then we see the standard dance of how innocent and objective science really is. 6) And the standard "theistic evolution" dance. Atheistic evolutionists can\'t get along without it! I wonder if Kenneth Miller will see the movie, and comment on it. I wonder if he\'d have refused to be a part of it.' +p8393 +aS'Even the ones that are destined to go extinct without producing any "daughter" species? Apeart from that quibble though, you are right. But don\'t tell the creationsts; it\'ll only confuse them' +p8394 +aS'But you debate with it?' +p8395 +aS"Oh thats not politically kerect and secially wif the chosen one doing the world apology toure I don't see that going down. Well lay a few on us sin baby. Give us the deal." +p8396 +aS"Because none of these issues were raised in the Heller case! What's the matter with people like you! Your statement is like claiming that the Supreme Court obviously thinks abortion is alright because they didn't address the issue during the Heller case." +p8397 +aS'Millions of Athiests trying to make up for lost time' +p8398 +aS'-------------------------------------------------------------------------- True,true,true.Iff God created man in his own image and i look like God then God must be in a lot of trouble.' +p8399 +aS"Also, the world has ended and you are just in denial. We don't need random assertions, so support your claims!" +p8400 +aS"So, why don't you give it a try???" +p8401 +aS'Nor does the fact that he was a Christian prove all Christianity is wrong.' +p8402 +aS'http://www.thelizlibrary.org/liz/004.htm Normal, frequent or expectable temporary side effects of pregnancy: * exhaustion (weariness common from first weeks) * altered appetite and senses of taste and smell * nausea and vomiting (50% of women, first trimester) * heartburn and indigestion * constipation * weight gain =snip=' +p8403 +aS'I disagree, it depends on the nature of insult. "You suck! What kind of a dumb name is \'Robbie\' anyway?" Hardly requires a stretching of the old grey matter. But the snappy one-liner and the witty retort, or just a carefully crafted insult all require a fair amount of intelligence and insight. Flat out denial requires least thought. I.e. "you\'re wrong!", "you\'re wrong \'cos God says so!" "You\'re wrong \'cos Dawkins says so!' +p8404 +aS'Not all threads need to be courttroom style debates. If you choose to aid in establishing a working consensus fine. If you want simply to rave and rant there are plenty of venues where you can do that. Your participation is welcome as long as you are a participant and are seriously trying to resolve the issue. Otherwise for heavens sake go do something else.' +p8405 +aS'Oh, OK then.' +p8406 +aS'Uranus. Is. A. Ball. Of. Gas. Genius.' +p8407 +aS"Link me to one saying weed 'addiction' is worse than alcoholism please." +p8408 +aS'So the Establishment Clause was included to promote atheism, eh?' +p8409 +aS'Who is killing children? Except for George Bush who has seen to the killing of thousands of children in Iraq.' +p8410 +aS"How do you know if they WANT to believe in a deity? They simply don't." +p8411 +aS'I think what he meant to say was, "I can see Finland from my basement."' +p8412 +aS"And you have a right to cling to superstition and magic as true. But that doesn't make mythology true." +p8413 +aS"So you still choose to believe that someone who's a victim of crime should be punished as if they committed the crime themselves?" +p8414 +aS"Oh, it certainly is an issue. Martin Killias, a Swiss criminologist, did find a link between gun ownership and homicide in Switzerland. However, my point was to ask you if you would be willing to abide by such regulations. The law in Switzerland requires that military weapons kept in the home be unloaded and stored under lock and key. I don't think Switzerland is a gun-nut utopia." +p8415 +aS"Jesus was a retarded ancient hippie who walked passed people who were starving and dying, yet didn't help them. Jesus is a man who ignored his family and considered his disciples family instead. Jesus is a man who didn't come to preach peace, but use a sword. Jesus is a man who didn't repudiate much of the Old Testament atrocities. Jesus is bad, and Jesus is GOd, therefore God is bad. I don't care what the biblical stoner said." +p8416 +aS'Really? If "nature" meant for all things to reproduce through heterosexual methods then maybe all other forms of reproduction would not exist, hmm. They would have been "eliminated" because heterosexuality is far superior. Think again. The majority of organisms on this planet reproduce using binary fission (bacteria dividing), asexual reproduction (there goes your "individual gratification argument), and zygotic reproduction. None of these things require sexes of any type. Even animals that have "normal" sexual reproduction can reproduce using a process known as parthenogenesis, in which only a female is required to produce offspring (turkeys and lizards do this). If homosexuality isn\'t natural or is inferior, then why do we see examples of it in nature. The bonobo (closely related to the chimpanzee) exhibits heterosexual and homosexual activity in both genders in the wild, and the bonobo and humans share a very common ancestor. Look, you can\'t say that one way of reproduction is "the standard" since it is clear that different species reproduce in a variety of ways. You also can\'t say that homosexuality is a disorder if you follow your previous logic that what is "natural" is valid. Also, you said that heterosexuality is superior because it has a "greater purpose". By implying that something has a purpose, you stray from the realm of Science by assuming a teleology. If you want to assume that things were given "purpose" by some higher being, that\'s fine, but you\'ll have to stick to religion to defend your argument. In science, it is impossible to assume a purpose. For example, what is the purpose of a river? To flow to the ocean? To carve a canyon? To carry sediment? You can say what something is good at doing, or what it does, but you cannot say what it was "made" for (purpose) without implying some grand design that can be easily provided by your local religion. As for hetero and homosexuality, it can be said that heterosexuals are better at producing offspring than homosexuals. Does that automatically make heterosexuality superior based on the arbitrary criterion of number of offspring produced? So in the eyes of a value system that believes that something is valued higher that creates more offspring or "life", heterosexuality would be superior. But in the eyes of science and reason, your argument doesn\'t hold water.' +p8417 +aS'Not much of anything else either, it would seem.' +p8418 +aS"No I can't marry them becasue some of them are married. Also none have intent to li ve within Mass." +p8419 +aS'Darned Swiss gun laws!' +p8420 +aS'And God lives in Heaven, with Jesus sitting on the right side of Him.' +p8421 +aS"And you don't actually see the circulariey in your position? The Bible is inspired by god because the Bible says that it is inspired by god. What if I wrote a book in which I declared that the book was inspired by god? Good for you? I'll do it if you give me the word. And what about the Book of Mormon? Takes your book and goes one better. Also inspired by god because it says that it is inspired by god." +p8422 +aS'Go do a Google search and find out. How many babies have you supported killing?' +p8423 +aS'OMG Brady, he betrayed HIS PEOPLE? and I thought WE THE PEOPLE were his people.' +p8424 +aS'Oddly enough, the Mass constitution reads: Article XVII. The people have a right to keep and to bear arms for the common defence. And as, in time of peace, armies are dangerous to liberty, they ought not to be maintained without the consent of the legislature; and the military power shall always be held in an exact subordination to the civil authority, and be governed by it. So apparently they came to their senses later.' +p8425 +aS"Before you were claiming it was a slippery slope. Now you're claiming it's a strawman. Perhaps you don't understand what either term means." +p8426 +aS"Oh yeah, generalizations are cool! Let's all jump on this bandwagon! Black people bad, white people good. Muslims bad, Christians good. Fission bad, fusion good. Geez." +p8427 +aS'So you are not an American? You believe that your religion should be forced on everyone by the government? Is it OK if I am allowed to teach your children my religion?' +p8428 +aS'My bad, Daewoo. How inconsiderate of me!' +p8429 +aS'So now you are saying that the earth doesn\'t move? I get it. The earth used to be fixed at the center of the universe when those Bible verses were written but God changed it. Now it orbits the sun like the other planets. Actually, the verse does say that grasshoppers have four legs. There is no mention of jumping legs. You supplied that because it is foolish to claim otherwise. That\'s what I mean when I say that you reject parts of the Bible that you see as foolish. When you have accepted the evidence that the Bible is in error (4 legs on a grasshopper, sun at center of solar system, rabbits chewing cud, an unmoving earth) you add elements that aren\'t in the Bible and declare it without error. You "interpret" and then claim that you are reading it literally. Pick one and go with it. You seem to claim that you accept the Bible literally and then add whatever you feel is necessary to make it rational.' +p8430 +aS'Mongoloid? Is this 1937?' +p8431 +aS'In the thousands of scientific papers that present the thousands of bits of evidence that go to prove evolution beyond all sensible sane and reasonable doubt.' +p8432 +aS'Oh damn it...and I was going to sell this joke and retire!' +p8433 +aS'Milesian Race vs Anglo-Saxon race. They just happen to be Protestants and Catholics. Sorry, I should have known that would be over your head.' +p8434 +aS"You know what is far worse than not executing murderers? Letting 'em sit around, watch tv, and eat pizza. ;\\ LEVIATHAN" +p8435 +aS"It seems that the high priest of Global Warming is so unconcerned about its reality that In the past year, Gore's home burned through 213,210 kilowatt-hours (kWh) of electricity, enough to power 232 average American households for a month. http://news.newsmax.com/?SKIDYNyQ-GW...mo_code=6539-1" +p8436 +aS"Isn't it interesting that TQ is so hard up for a reason to attack me that he must himself use a fallacious position to do it from. Thanks TQ, for being so consistent in your dishonesty." +p8437 +aS'Thanks for the complement on intelligence.' +p8438 +aS"Oh? You worked on Bowling? When did the NRA and KKK ever burn a cross together? Hmmm? I can take a hint. Just something about that movie tells me Mike Moore is anti-gun. Hey how about Chuck Hestons speech? Some how I got the impression he gave the speech in Denver? Did you? You know the 'from my dead hands speech'. Anyhow how did Chuck Heston get to wear TWO different suits from one speech? Anyhow. If Mike Moore of Flint Michigan was behind that counter, would Mike Moore be alive? Survive with broken facial bones? Survive with internal injuries? Or overhelming beat his attacker that he survives unhurt and stopped his attacker?" +p8439 +aS"Just as being anti-gun won't compensate for being born with a small brain." +p8440 +aS'The guys who want guns in their homes to protect themselves from burglars or "just in case we need to pull off another revolution" call others full of fear and mistrust?' +p8441 +aS"Current 'treatment' includes: Use of a placebo Laying on of hands Prayer Tossing salt over thy shoulder Planting 3 kernels of rice in the ground under your home Saying the Pledge of Allegience And thanking the Obamasiah for a bountiful crop of beets. Oh, and if you can locate the witch, have her confess to the crime of making you ill...and punished for doing so...you stand a better chance of living longer with said cancers." +p8442 +aS'Ok...many many people have been killed in Africa because of the policies of the countries in the EU, South America, Asia, and so on....this hypocrisy annoys me.' +p8443 +aS"Shh shhh it's ok mellow mellow mellow. Relax you have managed to go from legalizing gay marriage to a collapse of our legal system and the downfall of man's ability to reason and govern himself in two paragraphs. Maybe gay people would like to enjoy some of the happiness you get from your marriage and same as you that happiness is worth the oppressiveness incurred as a result. You may have more in common with gay people than you think." +p8444 +aS'So it would be more loving to severely beat the child...forever? "Hey Timmy, remember when you were 3 and you wrote on the wall with that crayon? *BAM* *SMACK*"' +p8445 +aS"But that is a misunderstanding of what the big bang theory is. What it isn't is an explosion. I don't suppose you have actually studied any astrophysics or astronomy upon which you base your rejection of the big bang, have you?" +p8446 +aS"Duh! You don't seem to have a grasp on what science is. Science isn't a search for truth. It is an attempt to explain observations naturalistic events without appeals to gods, angels, or demons." +p8447 +aS"Yes. it's called global dimming, and yes, I trust mainstream scientific organizations. If you knew anything about science, scientists usuallyspeak in terms of COULDS, possibliites, and likely, because science isn't 100% and scientific facts aren't absolute. THey are largely evidence-supported conjectures. You can't prove anything 100%. They are giving reasonable estimates. That's how climatology works." +p8448 +aS"Because of course,... people with genetic malady's have no right to their lives anyway. Right?" +p8449 +aS"1) It's Habbit. You could at least take 5 seconds to get my name right. 2) Considering you and your friends are the ones complaining, not debating? 3) Actually, none of my posting privileges have my revoked. Try again." +p8450 +aS"If we were to debate whether God made us perfect as he could have, then of course we can make the point that he obviously doesn't exist." +p8451 +aS'** The "methodology" of science is not materialism/mechanism/darwinism, but simply empiricism leading inductively/abductively to hypotheses regarding regularities in causation in nature that can be tested via the predictive experimentation of the scientific method. Neither empiricism or the epistemological process of the scientific method are the exclusive property of materialism/mechanism, nor did they originate from within that metaphysic, despite the beliefs of materialist/mechanists to that effect. Unfortunately, some 150 years ago, that methodology was set aside, and has remained out of sight, with regard to the hypothesis that is generally referred to as \'darwinism\'.' +p8452 +aS'Well said. It is a disgrace that the "Flat Earth" side of the argument never gets a look in geography lessons and that the "Spontaneous Creation" side of the argument never gets a look in when teaching kids about the life cycle of insects. Do you realise that they refuse to present the "Cheese" side of the argument when teaching about the moon these days? It\'s outrageous, how can our kids get a balanced education if such bias is allowed to continue!' +p8453 +aS"Where'd Noah get Tasmanian tigers?" +p8454 +aS"I see you still don't understand what a strawman is. It is hard to have a strawman when the comment wasn't directed at any particular claim...." +p8455 +aS"Bingo. Old fossils can be corrupted (contaminated, to be precise) by contacting anything from human skin to pollen in the air. This would add a relatively large amount of carbon to the fossil and would indicate that the fossil is recent. It's not hard to imagine this happening in the hands of inexperienced scientists... *cough* Creationists *cough*" +p8456 +aS'Look at Hawaiian Honeycreepers. Willful ignorance is a way of life. http://www.answers.com/topic/hawaiian-honeycreeper-1' +p8457 +aS"So what does this have to do with the topic? Alcohol is legal, marijuana isn't, but they both serve the same purpose (getting high), so why should one be illegal and the other not?" +p8458 +aS'You see, that\'s the problem: "generally". You obviously know little or nothing of how prejudice works in this country.' +p8459 +aS'Because his, as a Christian, doesn\'t follow the Christian Bible to anywhere near the extent that mine does. "Quote mine" - looks like that will be a common acusation here. If I keep things concise and readable, I\'m quote mining. That quote wasn\'t about atheists using evolutionary findings to support their concepts, it was about atheists being comfortable with theistic evolution, far more than "believers" (creationists) And that didn\'t have a thing to do with my point. Again, it was irrelevent to my point. Atheists believe the only source of truth is secular - it goes without saying. No, Lewontin didn\'t say to give people the power to discover the truth, he\'s saying to give elites like him the authority to point them to "correct" sources of truth. Read note #47 for chapter 6. Miller didn\'t misinterpret him at all. In note #47, Lewontin even mentioned the NY Times! Because there are no ACLU lawsuits when Dawkin\'s book is required reading in public schools. We have to more and more, as atheism is established. It\'s a deal, if you\'ll put a hold on lecturing me about reading comprension as you ignore very relevant notes in the rear of the book. The one where he bragged about defeating Henry Morris, a Christian? (pp 172, 173) Sure they were, Christians are always opposing Christianity! All they have to do is claim to be a Christian, and there\'s no way they could be a false teacher! And that\'s all irrelevent, because pages 240-243 concern what happens in the world today, not what happened concerning creation. His feelings about God\'s interactions with the world today would be different if he had a basic knowledge of the Bible. Even though the Bible says God did. His understanding of the Bible is very undeveloped and limited. So you\'re implying that when he made his snide little comment about "preachers", he wasn\'t referring to priests? I\'ve seen it all now. As I said, I hope to learn if all theistic evolution does not believe in original sin. I\'d like to know if all Catholics believe the creation story is nothing but a fairy tale.' +p8460 +aS"And what of when you go by some moral standard to determine what is right and wrong in other peoples' lives as well? What? you don't do that? Bull. You can't tell me you never have an opinion or judgment on anything anyone else does. But by your logic, that would be imposing on them. Sorry, that dog just doesn't hunt. Everyone has some basis for the views they have about they way they think society would be best. There's no law that says people can't participate in that process with religion or anything else as their moral basis. 'Imposing religion' is not the same as using religion as a basis, and it's the fact that you are wrong on this that's why religious people are continually able to have religion as their basis of social change, just as equally as anything else." +p8461 +aS"So, then you DO feel that what you did was a sin. Otherwise you wouldn't have asked forgiveness for it. I have one question. What was your motivation for starting this thread? Was it to try and somehow prove that a person can be a Christian and have an abortion? Just curious. IMO, you are right that you are forgiven for it, as God is a forgiving and loving God. But I hope you don't do it again." +p8462 +aS'Well, either the real or imaginary Phyllis implied those things in the post under discussion.' +p8463 +aS"I believe the hunter who handed the rifle to the actor and the TV crew lacked an awareness of the firearm's potential danger, another police official said. How is anyone to learn any potential of a firearm if it is to be locked away and not seen? Besides that little piece about lacking awareness I don't really buy it. A gun death is a gun death, whoever pulls the trigger?Serious question, Penfold, and I will even dispense with the COMRADE,are you a plant just to get people going?or did you actually have someone close to you hurt or killed by a firearm? and if so I apologize.'" +p8464 +aS"That's the trick, isn't it? If its a threat. But since when is a fetus a threat? Sure, when the fetus is endangering the mother's life, fine. But 97% of the time, it's not. Can a woman kill using her own body? Steal? Rape? No, of course not. I can't rape anyone and get away with it because I used my own body. Next time you get caught stealing, tell the judge that you were using your own body to do it, and you can do whatever you want with your own body. Enjoy the following laugh. And prove to me that a fetus is not a living human. In fact, find ANYTHING that is made of cells and is or was not living." +p8465 +aS'Really? Funny, my son, even before I "came out" didn\'t think gays were bad or being gay was bad. He saw hate as being the real evil...and you exemplify that just perfectly...brava!' +p8466 +aS'Again Monty has shown that he doesn\'t bother to learn what he is talking about before he speaks. It is not true that science has "found" the mitochondrial Eve, nor is it true that it shows that one person can have all the DNA necessary for all the variation in human population. Both ideas are ridiculous in the extreme. The mitochondrial (note spelling monty) Eve is a mathematical concept. If the estimates of the mutation rate of mitochondrial DNA are correct, then she lived about 200,000 years ago or so. And of course, the variation in human populations is carried by the nuclear DNA, not the mitochondria. High school biology students know this. And, of course, recent analysis has shown that every gene in the human genome has an average of 14 alleles. Since a single person can carry only two alleles of any gene, monty\'s assertion becomes pure nonsense. Hank says:' +p8467 +aS"And amusingly enough, you who claim you don't have any interest in changing the outcome spend soooo much time posting on these threads... Perhaps that's another claim that's just false in your opinion?" +p8468 +aS'And you can "lol" all you want. So tell me what it is about a brain that has not developed that requires more protection than a brain that is temporarily out of commission? And yes, we could very well debate potentials, but that is a different branch of the bigger picture and personally I don\'t see a reason to go down it, at least not at this point.' +p8469 +aS'According to Montalban, he doesn’t use sarcasm and quite often bitterly complains when I use it. Opps, maybe he made a mistake and is trying to cover it up. LOL' +p8470 +aS'Well nobody has turned up the Ark have they, termites could assure that if properly used. After 40 days and more they would be ravenous.' +p8471 +aS"And you're accusing him of not debating properly? That's the best you can do?" +p8472 +aS"60% accepting Roe v Wade is a high figure don't you think? More people support abortion then the president." +p8473 +aS'And a good one at that. I can hear the wheels a-spinnin’' +p8474 +aS'So how can evilutionists have any confidence in carbon dating if they keep updating the calibration curve? Huh?' +p8475 +aS'Let me see if I have this right, Priscilla. You admit your ignorance of the topic and you refuse to read the linked article in order to learn the topic of the thread, and yet you are willing to offer an opinion. As Mr. Jack said, interesting.' +p8476 +aS'well that could happen if somhow you mutated into some..i dunno...600 armed person. ?' +p8477 +aS'And how do you know what other animals can analyze? Is that another supreme abilities of us humans? To read the minds of animals?' +p8478 +aS"So you deny that this man is a victim? Realize that the gunshot drew attention, and attention is something criminals don't want. Maybe without that gunshot, the guy would've been beaten to death. But I suppose you'd be happier, because at least the old man wasn't a gun owner. Or I suppose you think he should've let the criminal have the money; all that is needed for evil to triumph is for good men to do nothing." +p8479 +aS'but you too are a figment of my imagination, and you only think you are a giant alien dreaming about this world because i imagined you as such. you cannot disprove this either.' +p8480 +aS'But why? What is so important about an embryo that it can be given a "person" status?' +p8481 +aS'Good. The less moronic "spirituality" in each state the better. Let\'s move out of the dark ages as fast as we can.' +p8482 +aS"No, back to school... turn in what educational credntials you feel you have, and just stay at the coffeehouses... at least you have a .005% of hearing someone ineject some truth in one of those sidewalk tete a' tete's you nutters are so fond of... but here you are dead wrong. Have you ever heard of an egg? ever heard of a sperm? An egg is still considered a multiple cell organism, and a sperm as well. You're gonna have a hard time pulling that one off." +p8483 +aS'Actually quite a common name in South America... but I know what you mean.' +p8484 +aS"''No, actually the earth is 150 years old. FACT. And its age never changes. FACT.'' -Chris Formage, Grand Theft Auto: San Andreas." +p8485 +aS'Actually what sank that debate was a bunch of paleontologists from K state who started arguing for punctuated equilibrium. That was pretty much the end. I remember one board member was quoted as saying "These are public schools. We are luck if we can teach the kids to read"' +p8486 +aS'Since animals can operate them, gun owners obviously need sufficient training to make sure they are used safely. It seems they need a lot more. On the other hand, the problem is largely self-limiting, since the cretinous owner either dies or hopefully learns from their stupidity once they recover from their injuries.' +p8487 +aS"Raw Data: Past Deadly U.S. Mass Shootings - Local News | News Articles | National News | US News - FOXNews.com That's just the most egregious mass shooting in the good old US of A." +p8488 +aS"Wow, make up your mind. Either populations change over time (evolve) or they don't. Would your wingless beetles be able to produce wings again if they were somehow beneficial again? You are starting to sound like Darwin and his finches." +p8489 +aS'Hey thanks for the "edited/out of context sermon." Peter was rebuked for interfering with the plans of God. Oh . . . Christ never said to throw the sword away. . . "put it away" means put it away in the sheath. Mark 8: 31 And He began to teach them that it is necessary for the Son of man to suffer many things and to be rejected of the elders and chief priests and scribes, and to be killed, and after three days to rise again. 32 And He spoke the word openly. And taking Him aside, Peter began to rebuke Him. 33 But turning around and seeing His disciples, He rebuked Peter, saying, Go behind Me, Satan, because you do not mind the things of God, but the things of men. 34 And calling near the crowd with His disciples, He said to them, Whoever desires to come after Me, let him deny himself and take his cross, and let him follow Me. 35 For whoever desires to save his life, he shall lose it. But whoever shall lose his life for My sake and the gospel, that one shall save it. 36 For what shall it profit a man if he gain the whole world, yet damage his soul? 37 Or what shall a man give as an exchange for his soul? 38 For whoever may be ashamed of Me and My words in this adulterous and sinful generation, the Son of man will also be ashamed of him when He comes in the glory of His Father, along with the holy angels. Matt 26: 47 And as He was yet speaking, behold, Judas came, one of the Twelve. And with him was a numerous crowd with swords and clubs, from the chief priests and elders of the people. 48 And the one betraying Him gave them a sign, saying, Whomever I may kiss, it is He; seize Him. 49 And coming up at once to Jesus, he said, Hail, Rabbi. And he ardently kissed Him. 50 But Jesus said to him, Friend, why are you here? Then coming up, they laid hands on Jesus and seized Him. 51 And, behold, one of those with Jesus, stretching out the hand, drew his sword and struck the slave of the high priest and took off his ear. 52 Then Jesus said to him, Put your sword back into its place. For all who take the sword shall perish by a sword. 53 Or do you think that I am not able now to call on My Father, and He will place beside Me more than twelve legions of angels? 54 How then should the Scriptures be fulfilled, that it must happen this way?' +p8490 +aS"78.4 years? Well excuse me but I intend to live much longer than that. I was thinking about 112.7 years. Yeah. That's about right." +p8491 +aS'Oh? Since you are so inquisitive about my medical procedures, would you like the readout of my last yearly physical? My cholesterol levels? Whether or not my blood sugar content was high?' +p8492 +aS'But maybe god does not hate gays, maybe he just hates the ones that demand to have sex with people whether they want it or not.' +p8493 +aS'You made the claim. Another lie from the radical cheap seats!' +p8494 +aS'Yeah, yeah we can all do math. Why do you even bother? You said statistics is just a game. -VOR Take it seriously.' +p8495 +aS'You\'re getting rusty NATO. It was a college campus. Guns ARE banned where this happened. Maybe simone can explain yet another instance of a shooting in a "gun free zone"? How many of these shootings on "gun free" college campuses need to happen before we ever get a comment on how these bans are working so well? I mean, after an average of once a week, you would think suggesting banning guns would be a laughable suggestion. Yet, after every shooting where guns are completely banned, there seems to be a suggestion that we need stricter gun control. How do you get tighter than 100% forbidden? Anyone care to state the definition of insanity for posterity?' +p8496 +aS"If you had bothered to spend more than two seconds actually looking up what happened, you would've seen that Joe Horn was cleared of all wrong doings by a grand jury, not on the grounds of the new Castle Doctrine of Texas, but the already existing laws that permits the use of deadly force for preventing property crimes. These laws were on the books for years before Texas officially adopted the NRA endorsed Castle Doctrine. And even so, what're you complaining about? Would you rather Joe Horn be the one killed and the criminals alive today?" +p8497 +aS'I think jyoshu has posted a BS meter which is pretty nice.' +p8498 +aS'Quote from your appeal to authority: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' +p8499 +aS'And it isn\'t the job of the school to teach anyone about your god. That is the job of the parents. If it is a good idea to teach about your god in the public school, it is also a good idea to teach about mine. How about Wicca and Islam. A good idea, right? But if some creationists don\'t like their children learning science, then they should put them in their own "christian" schools where they can become scientific illiterates who think that heliocentrism is a fact.' +p8500 +aS'Try the ( Law of Common Sense) . If your an ex-atheist, you already know the ( Law of Relativity ).' +p8501 +aS'you told me in an earlier post that the mother should die, even if they predict the fetus will kill the mother. your bible states otherwise.' +p8502 +aS'So Simone, if the shooter had instead driven his Toyota Prius into a crowd, killing many as a result, would you call for banning Toyota Priuses?' +p8503 +aS'Actually, they have. But only Leviticus and Numbers.' +p8504 +aS"Atheists tend to ignore information they don't like also." +p8505 +aS'Sometimes? The state of the public education system in the US is downright criminally neglectful.' +p8506 +aS'If you are open minded enough to consider an opposing point of view, Maybe one day you and I can debate those claims. But if you are a typical drive by post and run away "choicer?" I wouldn\'t be interested. I digress! The purpose of this thread (as I understand it) was for people to introduce themselves and say a little about their position. The purpose of this thread was not to debate our differences. I\'ll not respond to any more "baiting" of that sort in this thread. If you have questions about the details of my views, I will gladly answer those. As I may have some questions about yours.' +p8507 +aS'Yes, the university one is quite possibly the most nonsensical. I will never understand why people seem to think that the mere presence of a weapon makes it somehow more likely that there is going to be a problem. I have lots and lots of guns, right here at my house. Last year, the murder rate at my house was 0. I think that we can most likely maintain the same this year. What school are you at?' +p8508 +aS'Way to make a controversial, unsupported assertion, Winston!' +p8509 +aS"I see. Sounds too nebulous to stand up to scrutiny in the US. I'm guessing that the SCOTUS would strike down such as law as being too vague." +p8510 +aS'Maybe what they\'re saying is "Grow some balls and practice civil disobedience by violating anti-Constitutional Laws that threaten your safety.' +p8511 +aS'How extraordinary that Catholic theologians understand the Old Testament better than the folks who wrote it because they "have more books to understand that passage." Yeah, there has been a lot of Catholic blather written to obfuscate the Bible.' +p8512 +aS"So you think that, if murders were legal, there would still be the same number? How about robberies, or rapes? There are plenty of those, the law can't be having any effect... In short, I'm saying that making anything illegal reduces that thing. Criminalising murder results in less murder, criminalising drugs leads to reduced supply of drugs (compare any drug with nicotine, or alcohol), and criminalising guns would lead to a similar reduction." +p8513 +aS'And creationism was investigated and explored completely and shown to be false.' +p8514 +aS'All forms of life? Animal life? Plant life? The mold growing in your bathroom?' +p8515 +aS'If a woman does not want to be pregnant, she can abstain from sex. It works!' +p8516 +aS'Chastity rather than promiscuity.' +p8517 +aS'Oh, I dunno guys... I think I\'ve been saved. *sings* "I\'ve been redeemed, by the blood of the lamb..." ummm... barbequed lamb.... rare... yumm.... I\'m wondering, Benjamin, if you would trade some photos of the Holy Pink Bunny for the shroud of Turin?' +p8518 +aS'Abstinence until you are old enough to handle sexual relationships responsibly should most certainly be preached along with information about and access to birth control. There are plenty of us who have no interest in the institution of marriage - your religion should not determine who amongst is a sexually active adult. Not to mention we have got to stop pushing the gotta get married have a partner to be a happy seccuesful person message - ESPECIALLY TO GIRLS - it will lead to sex, for heaven forbid they be SINGLE.' +p8519 +aS"not bad for a procedure that doesn't exist." +p8520 +aS"Well, let's see. 1 This is a skull from a modern human, the differences representing pathological deformities. 2 The dating is based on disputed methodology. Creation scientists have proved that radioisotope dating is unreliable. 3 The two pieces are only assumed to be from the same individual. 4 Where's the conclusive DNA evidence? (A nod to easyrider on the Religion board.) 5 These claims are made by scientists, and all science is an atheistic conspiracy against religion (thank you marc9000). 6 So where's the missing link between the new fossil and us? Huh? Huh? Sadly, past experience suggests that creationists can wriggle on indefinitely." +p8521 +aS"Wow, you PROVED the Big Bang to be a big dud? I didn't see this clear refutation of a longheld scientific theory written up in any of the peer reviewed scientific journals. I must have overlooked it. Can you give the reference to your article?" +p8522 +aS'What in the name of heaven is "passive particulate selection" is that found in quantitative genetics in some obscure corner - I challenge you to produce a reference to the term in the open literature. And Mendel\'s theory was itself (if anything is) particulate in nature and it was NOT derived from Darwin at all. It preceded Darwin and later of course DID serve as a plug in addition to supplant Darwins own inadequate theory of inheritance. And of course Mendel is long ago supplanted by much more detailed and modern genetic knowledge. As to "dynamic sytemic adaptation" I also suggest you need to document where that term originates from other than yourself. Just what does that mean which is NOT covered by the vary-select-inherit process? Please tell us oh mighty lagomorph how antibiotic resistance arises by "dynamic systemic adaptation" instead of plain old VSI processes and how you distinguish the two. [QUOTEHave to go now.[/quote] Good because my tolerance for people who pontificate in pseudoscientific terms while pretending to themselves that they know what they are talking about is wearing very very thin.' +p8523 +aS'Apes are sentient...guess your theory is out the window. Either that or Apes need to be freed from the zoo.' +p8524 +aS"And yet the species that exist today are the exact same as the species during the high oxygen content? That makes little sense. It's like saying the world was vastly different before yet perfectly suited for the species that exist today. That is COMPLETELY nonsensical. Where did all of the oxygen go?" +p8525 +aS'You are one crazy poster Steeeve. 62 posts in 2 days. You live on here or what? Well, anyway, I like your style so far, so keep up the good work.' +p8526 +aS"I'm now slightly less confused about why I've never seen this discussed before." +p8527 +aS'However, that would make supersport a comic genious. Tough call. Waxy' +p8528 +aS'Said like a lazy, ignorant person who would rather live off the sweat of others than go out and earn for himself.' +p8529 +aS"What, you mean like this story (http://news.bbc.co.uk/1/hi/sci/tech/3136266.stm) of scientists warning about ocian acidity levels from 2003? Global warming is old news too: it doesn't seem to have reached the more remote parts of the world though, like North America for example." +p8530 +aS'And thus the human condition is explained at last!' +p8531 +aS'So you think Zeus and all the other Greek gods exist?' +p8532 +aS'hmm. really, I think it is. and so does the pope.' +p8533 +aS'attack on the definition of marriage? Why is it an "attack" to include gay couples in as married? Would it be an "attack" on something for blacks to not have to be segregated from whites?' +p8534 +aS"I know! How dare they just not sit back and accept the discrimination they so rightly deserve. It's just incredible the amount physical and emotional damage you would undergo if these people are given the same kind of respect you are. We can't have that! This may be a a government for the people, and I am sorry but you are only part of the people and to be granted the respect of people if you screw and love the people that the majority say you have to screw and love. God bless er Buddha bless er Mohammed bless...er Rhiannon bless America!" +p8535 +aS'Maybe they just drink too much coffee. And you probably work with more "reefer heads" than you think.' +p8536 +aS"And in those 150 years, all the evolutionists in the world haven't been able to falsify or debunk the book of Genesis. Of course, in their own deluded minds, they actually believe they have done just that." +p8537 +aS'So you dont know?' +p8538 +aS"Bob!!!! You're bad!!!!" +p8539 +aS'So penfold and brady you are in favour of denying citizens rights even though they have not been proved to have commited any crime? Ed Kennerdy was on that list so should he be discriminated against even though he has commited NO crime? What is next putting black people on the list purely because of the colour of their skin? You sicken me you two. Why on gods earth would terrorists be buying civilian guns when they could just use AK47? Did you sniff petrol as a youngster as you seem to have.' +p8540 +aS'Innocent life? We have had some interesting debates here where Christians have yielded to evidence that the state executes innocents yet they still support the death penality. As I recall, the woman who committed adultry was guilty and subject to death under the law (of Moses) yet Christ said one without sin should throw the stone. Are Christians that support the death penality without sin? In-house debate? Whose house? Dono' +p8541 +aS"LOL. \xe2\x80\x9cBats haven't evolved in millions of years\xe2\x80\x9d" +p8542 +aS'What is your theory about the foot fetish gene ?' +p8543 +aS'The reality is that it\'s the ANTI-GAY side who too often include pretenses of "society imploding"... Can you name me anybody who has asserted "society imploding" or "weight of legal quagmire" on the "gay pride movement" side? Once again, you run away with pointless strawman arguments...' +p8544 +aS'You know why. Because they want you to stop posting. Most of them want to rant, and they don\'t want their rants challanged. It\'s typical of the whole evolutionary community, I\'m afraid. Obvious_child and I are exploring this up in the "numbers" thread.' +p8545 +aS'The Muslim invasion. You guys need targets right?' +p8546 +aS'Did you get another cracker polly?' +p8547 +aS"So I can take this as a quote to use for you in the future to show you that (at one time) you didn't disagree with that argument? Good to know! It's bookmarked!" +p8548 +aS'Doesn\'t matter if they "give it up" or not. They don\'t legally issue death certificates for abortions. Imagine that. Death certificates are ONLY issued to once living persons. OH WAIT!!! I think we just proved that a ZEF is not a "person"' +p8549 +aS'So what are you trying to do here - smother everyone with bafflegab ?' +p8550 +aS'Yes, it seems you never learn, so I have no hope of educating you, and absolutely no intention. Since you ask nicely, the answer is "Supreme soveriegn authority", i.e. the fact that governments are established among men to secure their basic rights-- i.e. they not left to individual whims to respect or violate as each pleases, in the model of classic anarchy. States are thus delegated by their People, with the power to to protect these rights through laws. I believe we\'ve gone over this before; you didn\'t understand it then, I doubt you will now... or ever. It\'s still true, however: ignorance is never disproof. If you form your own nation, you can name yourself the sovereign and construe the laws however you choose; however that\'s neither here nor there.' +p8551 +aS'Some interesting information, that website where you got your link from, "Reasons To Believe" (RTB) is not a creationist organisation. It is run by compromising Christians, such as Dr Hugh Ross. Answers in Genesis have got quite a lot of information on him and as a result have even more rebuttals to his arguments. Here are several links: http://www.answersingenesis.org/docs/4149.asp http://www.answersingenesis.org/docs/4128.asp I did notice, however, that the RIB article was written in the year 1999. This is most pecular, because the AiG article in which Dr Russell Humphreys defends himself is written in the year 2000. The following link is a very brief summary of how Dr Humphreys defended himself and his new Relativistic Cosmology from compromising Christians and evolutionists: http://www.answersingenesis.org/docs...10-10-2000.asp The following link is where Dr Russell Humphreys defends himself. It shows both the arguments and his rebuttals: http://www.trueorigin.org/ca_rh_03.asp I would strongly suggest that you read it. I can definitely see how you may doubt Dr Humphreys new Cosmology, that was a pretty heavy attack, the much of it went zip, right over my head. But I just can\'t help but feel that they mis-interpreted several lines and are using some straw man attacks. I personally cannot see anything wrong with his arguments, although if there is, he has given way for a new area of cosmology, a Creationist Cosmology. I hope that this helps clear up this little problem regarding "Starlight and Time". Got to go, Matt.' +p8552 +aS"You are on some different planet there. Science doesn't need one conclusion or the other. The traditional classification of neandertals has been Homo sapiens neanderthalensis, i.e., in the same species. Then genetic work suggested that neandertals were distinct enough to merit being a separate species [Hodges, S. B., 2000, Human Evolution: A start for population genomics. Nature (7 Dec. 2000): 408(6813):652-653.]. Results since then have been mixed. Some DNA work indicates a 5% admixture from Neandertals (Plagnol V, Wall JD, 2006, Possible ancestral structure in human populations. PLoS Genetics @ http://genetics.plosjournals.org/per...20105.eor&ct=1 ). Various fossils continue to suggest some interbreeding. (Note also that a genetic finding of no interbreeding does not conflict with fossilized hybrids - it merely says that any hybrids or hybrid lines ended up dying out before they contributed to any lineages that were successful all the way to the present.) A finding of 99.5 to 99.9% genetic similarity is what we expect, given the clear similarity of the two groups." +p8553 +aS'Once one is adept at finding evidence after a conclusion is presumed, all sorts of "proofs" reveal themselves. What\'s next, Nostradamus?' +p8554 +aS'Now you are being insulting. Evolution makes no statments about your god. For that matter, neither does cosmology, astronomy, chemistry, physics or geology.' +p8555 +aS"Math is confusing too, doesn't mean we should get rid of it." +p8556 +aS'joke ( P ) Pronunciation Key (jk) n. Something said or done to evoke laughter or amusement, especially an amusing story with a punch line. A mischievous trick; a prank. An amusing or ludicrous incident or situation. Informal. Something not to be taken seriously; a triviality: The accident was no joke. An object of amusement or laughter; a laughingstock: His loud tie was the joke of the office. Calm down, kid.' +p8557 +aS"As far as I'm aware your aim is for abortion not to happen, my point is that despite making it illegal it will still happen -- making it illegal is not achieving your aim. Hence my point is sound, and as such it is a good point." +p8558 +aS"...? Either you've misread what I said, twisted what I said, or you're just stupid." +p8559 +aS'Yep thats true. There in separate buildings but right next to each other. I see it being about as attractive as a crack house next to a school with a revolving door in front.' +p8560 +aS'I believe my wording was "very rare". Please do not exaggerate my statements by mis-quoting me. But as you have mentioned it, care to produce some figures on the frequency of partial birth abortions? Its just you have a habit of making over-inflated statements to support your arguements.' +p8561 +aS'So which came first? The liquor or the egg?' +p8562 +aS"You know, from the title, I was sure this would be about The hitchhikers guede to the galaxy' bible fish..." +p8563 +aS"Well, that's because all those things happened during the Age of Law (the god of swift and harsh justice bit), whereas now we're in the Age of Grace (the god is all-forgiving bit), so . . . . er . . . hang on a minute." +p8564 +aS"Homosexuals are attracted to adults of the same sex. Pedophiles are attracted exclusively to children. There are people, such as the case with these priests, who molest children, who are not pedophiles. Molestation, like rape, isn't about sexual attraction. It is VIOLENCE. People don't molest or rape because they are so turned on they can't help themselves, they do it to HURT somebody. Get some information before shooting off at the mouth VOR. Most of those priests were probably niether gay nor pedophiles. I HATE IT - when people spread this ****. It is FALSE information that does nothing but HARM. It puts blame on the innocent while the guilty get ignored and children get hurt. Do not use this lie to justify your bigotry - for you do so at the cost of innocent people - adults and children." +p8565 +aS"we should turn this entire forum into a mythical/religion vs mythical/religion origin debate. let's see how well the creationists here do against Hindu, Norse, Egyptian, Zoroastrian, Manichean, Yezidi and the whole host of other religion's beliefs of origin." +p8566 +aS'How is mythology relevant?' +p8567 +aS'Actually not.' +p8568 +aS"Oh, WW, come on now. If you say something to me about how Vitality works, and I say 'that's a stupid / simple-minded idea', are you seriously telling me you wouldn't take that as a personal attack?" +p8569 +aS'How can they? If they exist in the mind and not on there own, then I can chose not do think about or believe in these laws (Bivalency, Involution, Idempotency,Identity, (Non-)Contradiction, Excluded Middle, Contraction, Commutatively, DeMorgan\'s, Associatively, Distributivity) and they stop existing? Or I could say, "hofflenosh" is a concept I think is stupid and does not exist, come to think of it, the law of excluded middle is a stupid concept so it does not exist either. If is existed only in the mined, it would not be absolute. It would be your opinion of the law of logic existing against someone that says they do not exist.' +p8570 +aS'Yes, have you?' +p8571 +aS'Say hello to my little friend! We the people, through our State Governments!' +p8572 +aS'For bringing health care to women without the means ? For providing Pap Smears, Mammograms, and birth control for women without the means ? Providiing pre-natal, and post-natal care ? Oh, heck, let the women die of breast cancer and uterine cancer ! Why not; bash Gays, then you bash the women.' +p8573 +aS'You are SO insulting. "Oh, the poor dears have been through too much and are considering an action I disagree with so they must not be thinking clearly." Who are you to say they aren\'t thinking clearly? I\'ll give it to you, Bassman. You are the most polite, best veiled misogynist I have ever encountered. You nearly had me fooled.' +p8574 +aS'But will you listen?' +p8575 +aS'I think the correct term is Priuseses' +p8576 +aS"Hit that one right on the head, Symbiote. I'd like to hear supersport's response to this." +p8577 +aS'And Hogwarts seems like a great school according to the first Harry Potter.' +p8578 +aS'Well let me say that so far that you haven\'t been doing a very good job. My arguments are completely solid, and you haven\'t even gotten close to refuting them. You accuse me of being stupid because my mom watched star trek, you refute my arguments by providing the defonition of masturbation and periods, and then you call me illogical and tell me to think about my statements more deeply. [quote]You said that you can only abort in the first and second trimester, which I already know. But saying that you don\'t exsist in these stages is a huge misstatement.[quote] Let me rephrase that. The beginnings of my body existed. What you know as "me" the person who\'s saying this, did not exist. My brain, which is really "me" did not exist.' +p8579 +aS"Just when you think WW's debating skills can't get any worse..." +p8580 +aS'So you yourself could have gone gay but chose to be attracted to women?' +p8581 +aS"Oh yes, Mr Behe makes a comfortable living out of selling to the ignorant. His newest book is just a rehash of his old book, and has the very same flaws that have been destroyed over and over again. As for your 'religious authors' being respected.. they are respected perhaps by the fundamentalists that do not understand what science is about." +p8582 +aS'And the comments section is usually where the real comedy lies.' +p8583 +aS"So you'd ask on these issues even if you didn't know if they had signed it?" +p8584 +aS'Well I guess you apparently trust the political bunch and rich and famous.' +p8585 +aS'Do you want them all dead?' +p8586 +aS"You know what? You're officially too clueless to post on this thread. You obviously haven't bothered yourself to figure out what's going on, so I'm going to kindly ask that you leave until you figure out what is going on. As I escort you out the door (metaphorically), let me just repeat something for you that was in the FIRST SENTENCE of the article that you obviously couldn't be bothered to read... I'll even make it nice and big so maybe it will help with your reading comprehension! collect detailed data about each abortion performed -- and post it all on a public Web site. Feel free to rejoin us when you figure out what's going on." +p8587 +aS'end where? ambiguously phrased. if "here"="death", then yes! by definition, yes!' +p8588 +aS'Oh! I get it! abortion is fun, it is only a traumatic experience (to kill your unborn son/daughter) for "unbalanced" women' +p8589 +aS'Which demonstrates your failure to see the big picture.' +p8590 +aS'why are you afraid of guns? has one jumped up and shot at you? you should never fear a gun, respect the gun.' +p8591 +aS"While it may be true that an ovum is formed during the mother's fetal stage, an ovum is not a unique human entity in and of itself. It does not become a unique human entity until it is fertilized at conception. (Do you like semantics games?)" +p8592 +aS'Translation; "Do what I say or I will kick your @ss." Sounds a lot like the mafia. And you love this diety?' +p8593 +aS'BECAUSE I SAID SO! LOL,... I\'m so silly. I just had to post it. Seriously, I decided that I will actually construct my summary online, Iangb. If you (or anyone else) cares to, you will be able to watch as I edit and construct my argument. It may be lengthy so keep it in mind that if I have to divide it up, and you post in the interim, I will have to delete this first half and move it to the end. By the way,... other than working some things out in my head,... I don\'t have anything prepared to post. This will be a work in progress. ... this will take quite a while. (Maybe days) I see you are watching, and don\'t want you thinking this will be developing quickly. I will let you know when I\'ve concluded. --Chuz *** Note to Ian. In my attempt to compile my \'summary\' I have realized that I never actually completed my arguments. It\'s kind of hard to summarize that which hasn\'t already been presented. So, my sumarization if you will- will now consists of two parts. First my arguments and then my summary. WORK IN PROGRESS; The Argument BIOLOGICALLY SPEAKING, A HUMAN INDIVIDUAL\'S LIFE BEGINS AT CONCEPTION Definitions; A Begin Being Biologically Child Conception Egg Embryo Fetus Gamete Human Individual Life MetamorphosisOrganism Sperm Zygote-DICTIONARY.COM A Begin Being Biologically Child Conception Egg Embryo Fetus Gamete Human Individual Life Metamorphosis Organism Sperm Zygote-- FREE DICTIONARY.COM Child Due Process Clause Person --FINDLAW.COM Links Logic A distinct Human organism American College of Pediatricians The Human Organism When does a human individual\'s life begin The Physiology of Aging Human Growth and Aging Wikipedia; LIFE When Does Life Begin? QUOTES; SPERM; "During fertilization, the nucleus of a sperm fuses with the nucleus of the much larger egg cell (the female reproductive cell) to form a new organism".-The American Heritage\xc2\xae Science Dictionary Barack Hussein Obama; "We need fathers to recognize their responsibility doesn’t just end at conception." William Jefferson Clinton- "If two cells join in the process that begins to make a human being, are they living? Answer? No one disputes that. " and "When does the soul enter the body so that to terminate the living organism amounts to killing a person? That is the question."' +p8594 +aS'Thank you for your criticism. :D' +p8595 +aS'And of course, the sea of Montalban\'s assertions as science, the sea of Montalban\'s out of context quotes, or the sea of Montalban\'s misrepresentations of what others have said. It seems that Montalban knows the "TROOTH" and won\'t be discouraged with facts. Sadly, Montalban knows what he believes and reality seems to be irrelevant.' +p8596 +aS"What difference does it make? Do you only care about frequent killings and choose to ignore isolated incidents? If so doesn't that mean that innocent people dying only interests you when it's in large enough numbers that you can try and exploit them for your own selfish agendas?" +p8597 +aS"Actually, they didn't. The whole tragedy was caused by gun control. If even one student was packing when that occured, 33 lives could have been saved. But no, more victims of botched laws and corrupt politicians." +p8598 +aS'You didn\'t bother to read the link, I see, which said: "During the 70-year Babylonian captivity, from 606-537 B.C., the southern kingdom of Israel, Judah, had lost it\'s national sovereignty, but retained it\'s tribal staff or national identity.2 It is very significant that in the book of Ezra we read that during the 70-year Babylonian captivity the Jews still retained their own lawgivers or judges.3 The Jews maintained their identity and judicial authority over their own people even during 70 years of slavery. The scepter had not been lost during the Babylonian captivity."' +p8599 +aS"What are you afraid of, Trebor?? The whole world wants to know why you keep avoiding this question: According to your own Jewish Tanakh, is God the Creator of the heavens and earth, and man? Will he give a pertinent answer or evade it again?? I'm betting he won't answer the question." +p8600 +aS'And...?' +p8601 +aS"Given your very poor English (spelling, punctuation and basic sentence structure), I think the assumption that anyone can understand 'exactly what you are saying' is a very poor one. Smiley PS I have highlighted some of the errors in latest attempt." +p8602 +aS'FDR saved this country? If I recall, it was in 1933 that, because of a combination of weakened capital situations from Reconstruction Finance Corporation loans which published lists of the loan takers, and a nation-wide banking holiday, banks around the country went through a new wave of demise, dropping the D/C and D/R ratios so sharply that, in one month alone, the money stock (M2) fell a whopping 4 1/2%. Wasnt it under FDR that the NIRA codes, and, after 1935, the NLRA, enacted minimum wages, driving up nominal wages and thus unemployment? Wasnt it during FDR administration that the reserve ratio was *doubled*, sending us back into another recession starting 1937? The only thing FDR "saved" was the depression for a couple more years. -GFA' +p8603 +aS'And you don\'t have any picture. You have no idea of what recessive really means, do you. Actually, since the first observation of a black peppered moth in 1848, several other mutations have caused other variations of color in peppered moths. They are intermediate between the typica and the carbonaria, but they are extremely rare. These alleles form a hierarchy of dominence in which the carbonaria is the full dominant, and the typica is fully recessive. Please define "kind." Please define "variation." Please explain the origin of this "variation in kind."' +p8604 +aS"Gun Control is not on this list of crime contributing factors. However banning guns would leave the law-abiding defenseless in the face of these criminal predators. Why don't you work for changing these conditions instead of working for something that has no effect on reducing crime (gun control). However, if you think you can prove gun control will work as crime control, then go for it! Maybe you can cower us with your overwhelming evidence." +p8605 +aS"If this is your stance, then it's your job to prove it correct. Show us that Britain is just fine, show us that the criminals aren't awarded more protection than their victims. Show us thimble head. Show us or shut up." +p8606 +aS"So you don't believe that life had an origin! WOW so you think its always been present on the Earth? Not even the bible goes that far! And you fail to account for the observation that there IS life." +p8607 +aS"When's the last time you heard of someone being killed by the accidental discharge of a fire extinguisher? Or when the last time a fire extinguisher was stolen from a home and then used in the commission of a crime? And don't you think the likelihood of being in a car accident is greater than that of being required to shoot someone?" +p8608 +aS"What does spelling have to do with your own opinion? Again this isn't just about you although I think you did resort to correcting someone's spelling and just didn't answer the question. This has nothing to do with being entitled to your own opinion. It is equally bad for anyone to resort to personal attacks on either side of the debate." +p8609 +aS'hey, watch yourself.........watch it..' +p8610 +aS'You should refrain from calling others arrogant Mr. Kettle.' +p8611 +aS'So if you quoted Ted Kennedy when he said to his wife in an event that wasn\'t even publicized "Good morning, sweetie", that would be an answer?' +p8612 +aS'Yep, suppressing natural behavior is always the way to go. We should also get them to stop pooping.' +p8613 +aS'Blah, blah. So you looked something up. Adds nothing.' +p8614 +aS'After reading that I had to go talk to Ralph on the big white telephone.' +p8615 +aS"Ladling out the guilt again, Maximus? Don't forget take a large helping for yourself." +p8616 +aS'I think if that happened, Texas probably will go back to being the lone star state.' +p8617 +aS'I note that you consider yourself irrational, though I could not possibly comment. There are times that I am grateful that your parents chose to live on the wrong side of the Atlantic, but then I allow for your need to identify with your adopted home and reject the motherland. You flatter yourself in assuming that you were any part of my considerations when choosing to post. The button reference is a play on words known as a pun.' +p8618 +aS'Well Im not hunting animals' +p8619 +aS'Actually, no, they do NOT. The first three ALL describe God causing them - are you saying the bible is describing God\'s actions negatively? Or are you saying that killing your precious foetuses is just fine as long as the persons carrying them are "wicked". Sorry, but you need to get an argument, Phyllis. +++++++++++++++++++++++++++++++++++++++++++ Spelling and grammar for this post has been checked and cleared +++++++++++++++++++++++++++++++++++++++++++' +p8620 +aS'Yes, and since some might not, it should not be mentioned at all? Personally I only know a half dozen people who have had abortions (at least that I know if). 1 of them doesn\'t care, she has had 6 or 8 abortions...pretty much used them instead of the pill. 2 are pro life zealots now and feel terrible about the fact they had aboortions. 2 are pro life, but not zealots. The final one was overwhelming pro choice prior to her abortion. Attended rallies and everything. SHE felt so bad about havinghte abortion afterwards that 6 months later she blew her head off. She could not get it out of her head that she had killed a baby. She became totally obsessed and finally cracked. So, yea...maybe it is not so out of line for people, including men, to say "Think about it real hard because a lot of people regret it". You don\'t have to get shot to know it hurts.' +p8621 +aS"It is impossible to read something that can't be found." +p8622 +aS"I think he's referring to intelligent, educated people with a good sense of humour (good looking too ) who aren't paranoid beyond reason, can spell correctly and know what real beer is. Smiley" +p8623 +aS'I think you and my ten year old could really connect. Happy Easter, Jim. You really are one of my favorite conservatives.' +p8624 +aS"And don't forget the part that we're all hot for her, too." +p8625 +aS'Translation: "Shut up, I\'m right!"' +p8626 +aS'How the hell can you narrow it down to three? The competition in the entire top ten is fierce.' +p8627 +aS'Oh what a corageous maverick you are.' +p8628 +aS"Because it works. How much money is pumped into microchip design and production? IBM engineers must be so corrupt; the temptation to lie about quantum theory so they can pretend to offer faster processors must be overwhelming! And don't get me started on the evolutionary algorithms they use - clear evidence of atheist bias and lying. As if evolution could design better microchips! Research based on evolutionary theory is well funded because there's massive potential for return on investment. Who funds ICR? If you're so keen to follow the money, at least do it consistently." +p8629 +aS"Yes, socialist. Check the definition. I don't watch Fox. Is that the best you can do?" +p8630 +aS"I believe that this is what they call 'sarcasm'. As for the second part of your comment, why am I not surprised?" +p8631 +aS'So doing a detailed study of something requires that one takes a class for it in a university and reads books papers written on it by "real scientists"? Wow, I never knew that. Thanx for enlightening me.' +p8632 +aS'You could learn a lot from this quote.' +p8633 +aS'So taking away all their guns would have been better? The ruling party was certainly well armed how about the other parties?' +p8634 +aS'My first line of defense for up to 300 yards is an M4 (specops m16) flattop with an ACOG scope and tritium backup sights, 14.5 barrel with a 1/7 twist with mccluek (sp) muzzle brake to make it the legal 16 inches. foward pistol grip and a surefire light mounted to my knights RASII. I keep 45 grains in the clips so they frange and not penatrate walls. I keep a second clip with 77gr noslers in a mag-cinched clip for longer range shots. I use a long range Shephered scope on my .308 chambered m14 for shotting zombies out to 1000 yards. And to compliment my defensive ability I keep a romanian AK in my bugout bag with a surefire light and an OKO red dot scope for quick egress when reliability is of most importance and close range firefight is likley. (this in not to mention the plethora of pistoles and handguns I keep for home defense also). THe m4 is 1.5 MOA, The M14 (m1a) is sub MOA, and the AK is a typical 3-4moa. BTW. I have had military and civilian training in all of these weapons I also keep a well trained Caucasian Mountain dog roaming the house at night so if anyone where to make it inside I doubt there would be anything left of him by the time I got there... Preparedness my friends... Now VoR probably keeps his Rechargable phone next to his bed and a whistle around his wifes neck and a fancy pug roaming the house... Dear Mr. Criminal, Which house would you like to break into. SIncerely, 1 constitutional rights violator and 1 law abiding citizen.' +p8635 +aS"So all jellyfish die on the beach? Hardly. Let's use this same type of logic though. A jellyfish is pretty fragile, as you pointed out. Wouldn't a jellyfish that was very rapidly covered in sediment be broken into many pieces, if not ground to a paste? Wouldn't this entirely rule out the possibilty of preservation in this manner?" +p8636 +aS"Way to miss the entire point, Clerisian. My point was that is it a horrible experience for many women, and that I wish we could strive towards a society where abortions were no longer needed. Wishful thinking by a midtwenties female who just went through the most horrifying experience of her life, forgive me if I didn't clarify well enough. I can't imagine that anyone would disagree with that." +p8637 +aS'OH FREE MARKET???? IM goin to take the embryos and fetuses slain in abortion centers and turn it into a new food source and sell it at the grocery store!!!!!!!!!!!!!!!!' +p8638 +aS'And I would appreciate your refraining from calling your mythology a theory.' +p8639 +aS'Utter XXXX. Doctors will regularly provide advice on lifestyle changes to those at risk of a variety of diseases and conditions, contact information as to where they can find support in making those lifestyle changes, and if appropriate refer them to psychologists to assist them in making those changes. Dentists will give long lectures on the evils of eating sugar and suggest appropriate snack replacements for sugary foods. What else does "walking the walk" entail? Should the "medical establishment" follow their patients around and forcibly prevent them from having a lifestyle they believe to be harmful? Then why aren\'t doctors who advise rest and plenty of fluids for a cold in jail? Oh right, because you\'re lying, as usual. Doctors ARE schooled in nutrition, however inadequately, this doesn\'t mean they\'re going to recommend crackpot "raw food" dietary schemes to prevent destructive "lamarckian evolution" on the basis of a single flawed experiment on cats.' +p8640 +aS"Oh dear. Have you ever looked at a human spine? It is curved: it's bent. A straight spine is a knackered spine. As to the hands bit, what are you on about? You are aware I hope that the story that the nosey elephant got it's trunk because a crocodile grabbed the end and stretched it is just a story?" +p8641 +aS'What quaint illogic. Only people who marry can get divorced, so a reduction in people marrying has no effect on rising divorce rates. If anything, a rising divorce rate among fewer marriages points to an even higher divorce rate than "normal".' +p8642 +aS'by this stupidity a KKK mob with guns is a militia!' +p8643 +aS'On the contrary, the wet dreams of those slavering over these appalling British figures miss the fact that bad as they are, those 3 or 4 more murders in the USA per hundred thousand population equates to your likelihood of being murdered there as at least ten times higher than in that dangerous place Britain. Suck on that.' +p8644 +aS"So that's a problem of \xe2\x80\x9cfundamentalism\xe2\x80\x9d, and not a problem with the one creating the \xe2\x80\x9cparody\xe2\x80\x9d? Apparently the creation of parodies for \xe2\x80\x9cfundamentalism\xe2\x80\x9d is a large part of atheism." +p8645 +aS"So? Life is cheap. You can't change that, the least you can do is profit from it. And people call me a leftist! That's a hardcore capitalist view." +p8646 +aS'Just to add more fuel on the fire :P' +p8647 +aS'Can you read? You linked to a site that is essentially a bibliography. The title is "Feminism AND Science." Did you intend to mislead?' +p8648 +aS'He was probably an XXXXX to begin with then.' +p8649 +aS'God talk about a bunch of foo foo poop! What are you a girl? Any way honey, dont you think that net result was a lot of people who for one reason or another could not resist there biological programming will get AIDS because they were told not to have sex in place of getting condoms? I cant believe I had to explain that to you.' +p8650 +aS'No. Perhaps some effort into educating yourself would be appropriate. I presume that you expected a yes answer and your next question would have been, "why are there still monkeys/apes?" I sincerely request that you look at all of the skulls in the following two pictures. Please give me your opinion as to what each of these may be and how they came about. Please be aware that "GAWD DID IT" is laughable. I am aware that you are usually free from thought, but please make an exception and think about your answers. http://home.houston.rr.com/bybayouu/skulls.html http://home.houston.rr.com/bybayouu/skulls2.html' +p8651 +aS"Cars don't breed. Or didn't you know that?" +p8652 +aS'Since when? So if I were to post a news article where someone says that pedophilia should be legalized, then it means I agree with them? I thought this was a discussion board. That means we, you know, DISCUSS THINGS. Now, if I had said "Here is AiG\'s article and I couldn\'t agree with them more", then you would have an argument. As I did not, you don\'t. Now, do you retract your false statement that what you quoted was my reasoning?' +p8653 +aS"Kudos to your counterpart for nicely wrapping up all the creationist talking points into one nice essay. He did an excellent job of paraphrasing answersingenesis, he even hit all the highlights, right down to the human footprints with dinosaurs. I dont' even know where to begin. The part on geology and the earth's magnetic field was so idiotic it's hard to fathom that someone actually wrote that as a serious point. I'm continually astounded by the lengths creationists will go to to try and justify their beliefs. The only thing more astounding is their conviction in the belief of their own rhetoric. Waxy" +p8654 +aS'depends on your definition of "human being."' +p8655 +aS"No surprise there. You would have to invest some thought to define something. Why don't you just consult your Little Golden Dictionary?" +p8656 +aS'Proving, yet again, some Democrats are, after all, honorable men and women.' +p8657 +aS'Really? From what university did you earn your science degree that makes you qualified to make judgements about what is science?' +p8658 +aS'So your answer to the question then is "Nothing", Marc?' +p8659 +aS"But apparently they can't say no to renting the property for a gay wedding, even if they decide to just say 'no' to everyone and get out of business. go figure" +p8660 +aS'There is no god that supports the forcing of women to suffer and carry out unplanned pregnancies, just because some PL advocate spits it our. "Sorry, were going to force you to give birth, those men over there have decided". Thats as ridiculous as saying "There is no god to condones the slaughter of thousands of innocent life forms inside of the cut" (referring to disinfecting a cut). Pro-lifers have been dropped on their head too many times.' +p8661 +aS"so why is population control a good arguement for abortion? Why don't we kill old people too..." +p8662 +aS'And many of the questions that creationists ask.' +p8663 +aS'Because all scientists hate god, this is a fact.' +p8664 +aS'Yeah. They should just be more consistent and have no hypocrisy in a stance that just discriminates against gays... ' +p8665 +aS'So what else is new? Does Texas support the death penalty?' +p8666 +aS"haha...I'll remember this next time I think of accusing you of spitting in one direction" +p8667 +aS"Yeah they were. Mostly killed by criminals with guns. Now prove that any legislation that Obama could have enacted would have prevented those deaths. I'm not holding my breath and I'm not expecting a rational response either..." +p8668 +aS'Really, did it take long? ROFL. Did they turn grass into a tree or maybe rice into a tomato? Got pics?' +p8669 +aS'Oh really the people who where behind the petition drive here in michigan want to deny me marriage, Here I will let the head of the organization that spearheaded the drive explain it in her own words. http://www.bpnews.net/bpnews.asp?ID=19408' +p8670 +aS'And when the President speaks in public we could hand out guns to the audience so that they could respond to any assassination attempt.' +p8671 +aS'Cute. And I can come up with about 5,000 to 7,000 examples that do have a bright orange muzzle.' +p8672 +aS'Oh yeah right, like sociopaths who are bent on killing and slaughtering everyone around them, can be fixed with something as stupid as school counseling.' +p8673 +aS'So in other words your God put you on Earth to stop people from killing so your God could kill them eventually?' +p8674 +aS'There ya go, Tither, three guys out of several hundred thousand?' +p8675 +aS'I believe they got XXXXXX at all the conservates on this board. So they went and joined a commie discussion board where they feel more welcome and can send congrats to each other for being smarter than regular people.' +p8676 +aS'And yet the post-Dunblane handgun ban happened after only one event.' +p8677 +aS"And secondly, it's a bit rich for them to call it murder when a blastocyst can turn into a tumour. And oncologists murder tumours all the time..." +p8678 +aS"Well, I haven't mutated into some other species last time I checked." +p8679 +aS'And a lot of blacks were killed through hangings. Are you against rope vendors?' +p8680 +aS"So? God also says he made you out of dirt and then supernaturally lifting the dirt from the ground into the woman's uterus. Oh well, I suppose it is all beliefs no matter how silly it sounds." +p8681 +aS'Once cannot abort a pregnancy if it has not begun. The morning after pill prevents a pregnancy from ever occuring by preventing the fertilized egg from implanting. If one considers pregnancy to begin at conception (i.e. fertilization of the egg), then petri dishes are pregnant when eggs are fertilized on them ("conception") for later IVF. Do we really want to be considering petri dishes pregnant?' +p8682 +aS'Oh joy another drive by with absolutely no proof or evidence.' +p8683 +aS'Including the universe?' +p8684 +aS"In my lifetime, we've made huge strides, but there's a lot more to learn." +p8685 +aS'Oh look, a lie. Imagine my surprise. Truth: Scientists have extrapolated that the universe expanded from an incredibly dense mass. The Big Bang theory does not posit that this mass "popped" into existence; in fact, we have no idea what happened less than 10^-43 seconds after expansion began. It is a common interpretation that there was no time "before" the mass existed, therefore the first law of thermodynamics was not violated.' +p8686 +aS'So, how many unborn babies did your God drown in Genesis? Talk about hypocrisy.' +p8687 +aS"So, you consider a so called theory which allows a 10 billion year gap out of an alleged potential 10 to 20 billion year age for the occurrence to be the most credible theory? And is actually supported by evidence? If they have any evidence, why the 10 billion year gap for wiggle room? No wonder you accept evolution as a rational possibility. The fact is, they have no credible evidence at all as the big bang is nothing more than a deduction based on theoretical mathematical equations which can neither be confirmed or verified. Just read the link and consider the factors cosmologists must consider before even doing the math required to come up with an age. Now consider how skewed the outcome must be if they are incorrectly interpreting even one aspect of the info they are relying on for the equations which result in an age. Any errors in those results and the out equations are useless. Thus, the 10 billion year gap in their cosmological guessing game. How Old is the Universe? Now consider the creator of the big bang theory itself. Edwin Hubble proposed the big bang as a possible beginning of the Universe based on the perceived expansion of the universe from a tiny central singularity back in 1929. Since then it has become the holy grail of the scientific community in explaining how Time and Space began. http://www.umich.edu/~gs265/bigbang.htm This theory is made up of nothing more than the imaginings of a young cosmologist back in 1929 yet has been adopted as a rational theory by the scientific community as if they are a bunch of lemmings who will grasp at any explanation which doesn't claim that God did it." +p8688 +aS"There you go. It's difficult to find which side of your mouth to talk out of when the facts are the facts!" +p8689 +aS"How would you like to have a parasite in your body and not be given treatment to remove it based solely on the fact that even parasitic organisms are living things and deserve life? Not pretty is it? Imagine being one of those guys in the Alien movies and you've got a chestburster in you that's gonna kill you once its fully gestated, but you're not allowed to have an operation to have it removed from your body because of an intergalatic treaty declaring that all life is precious and must be observed." +p8690 +aS'and thats just kiddish!' +p8691 +aS'Oh my stars and garters. He actually admitted what "the real issue" is.' +p8692 +aS"I dunno. Do you think the Tooth Fairy will be happy with people drink-driving? Any argument from a religious stand-point necessitates proving that said religion is true. Do that, and you'll get a lot of respect from a lot of people." +p8693 +aS"In other words, the author seems to think that because Mendel didn't know about genes mutating, we must continue to believe they don't. Complete and utter nonsense from beginning to end." +p8694 +aS'Way to support your controversial assertion, Bell.' +p8695 +aS'You mean the truth of thousands of young teen girls dead with a coat hanger in hand? Abortion is a neccessity so that it can be regulated. People will have abortions legal or not legal. At least provide a safety net other than a coat hanger.' +p8696 +aS"The Book of Genesis is either secular or observed history? Somebody get marc a dictionary, please. (And I'd link him to a long list of observed instances of speciation, but he'd ignore it yet again.)" +p8697 +aS"But on the other hand, Genesis isn't a scientific document. No wonder. Why would a bronze age nomad from the Levant be aware of at least 3 tailless species of primates, or even the tailed primates from Africa, South America, and even Madigascar. If they aren't mentioned in the Bible, do they exist?" +p8698 +aS"So...all Christians have some sort of brain damage, trebor? You're not getting any better at this are you?" +p8699 +aS'As the great Spock said Logic dictates that logic need not apply in this situation.' +p8700 +aS'Really? Then why did you start off your little rant by admitting that "...microevolution cannot be reasonably disputed." Evolution has been observed, and that is a fact. Speciation in both plants and animals has been observed, and that is a fact. Apparently you don\'t know what a theory is. Might it not be wise to learn just a little about science before you make yourself look so foolish? Theories explain facts.' +p8701 +aS"So is Jesus, aka God, a liar? Or was not even one of the millions of believers who prayed for Terri Schiavo's life to be saved really God's child? Gee, I wonder how many people out there are being led by a pastor, priest, or what have you, that prayed but God didn't listen because that religious leader is a fraud? Hmmm, maybe the rape or molestation of young boys, adulty, and so on, by religious leaders is more widespread than anyone could have imagined?!?!?!" +p8702 +aS'I love this line. I assume by "harm" you mean an actual physical harm or some kind or another (physical in this case includes loss of items). So this would cut our laws in half. Walk around naked? No big deal! Have sex on the street why doing cocaine...go for it! Drunk in public? Who cares! The list can go on forever.' +p8703 +aS"You need to experiment with the notion that you will be sexually attracted to your own sex. After you're done, come back and report your findings!" +p8704 +aS"But you are the accuser. I've read the Bible and I have studied religion, more than you can imagine. I have also studied biology, performed experiments and reached conclusions. The problem is that you seem unable to think for yourself." +p8705 +aS"So what? They aren't worth anything, are they? Does it matter if we kill them? No, in your reasoning it doesn't because there are no absolutes." +p8706 +aS"It's usually easier to take the immoral path. Stealing's easier than working. Lying's easier than telling the truth. Being a deadbeat parent is easier than being a good parent. The list goes on and on." +p8707 +aS"I still haven't heard an answer to this yet?" +p8708 +aS'This is not to say that every current dictionary includes such a definition... yet... but a number of major on-line ones demonstrably do, and to my knowledge human civilization has yet to suffer any negative effects. (By the way, the above entries also include the typical "husband and wife" kind of arrangement as well. Funny how words can have more than one meaning, isn\'t it?)' +p8709 +aS'Well, you ignored the part where I said "voting". But IMO legislative solutions ARE part and parcel to popular appeal because legislators are voted in on that basis. ANY legislator claims to "do what\'s right." So elections tend to be popularity contests. And legislators tend to want to keep their constituents happy. Oh and just to make sure you understand this Kronos so as not to get off in the wrong direction, this is my opinion, just like everything else I\'ve said. It is not a lie.' +p8710 +aS'Well... You can apparently read, but what you have apparently chosen to read - and accept - says much.' +p8711 +aS'Interesting how the study was set in Pittsburgh, Pennsylvania. They\'re a city known for violence and gang-related issues. I wouldn\'t be the least bit surprised if those that were shot and counted in this "study" were known gang members who were either shot by their intended victims, or by other rival gang members.' +p8712 +aS"So they're failing because they're XXXXXX?" +p8713 +aS'Who said anything about "redefining" it? I said you would still HAVE YOUR "traditional marriage" according to YOUR chosen religion.' +p8714 +aS"I think that Comrade Brian is pulling our collective legs by pretending to be a die-hard, uninformed, living-in-denial communist, when in fact he's a just another guy trying to have a laugh by trolling the boards. I truly find it hard to believe that anyone could be so completely uninformed about capitalism and socialism." +p8715 +aS'Spoken like a true man.' +p8716 +aS"Really? I haven't seen you post your support for any law or proposal that would punish criminals in the most severe ways possible. All I've ever seen you post support for is more laws that criminalize things that aren't crimes and do nothing to harm others." +p8717 +aS'so watching TV sports = bad daddy? do you let your boyfriend/girlfriend or husband watch TV sports or only feminist approved TV channels?' +p8718 +aS'So, one set of creationists are XXXXXX, but the others are not?' +p8719 +aS'And if one accepts that gay citizens have equal rights under that Constitution, then one has to accept that a ban on gay marriage is intrinsically unconstitutional.' +p8720 +aS'You know, considering how little ray knows about science, do you think we could write a creationist load of **** and take these XXXXXX for all their money?' +p8721 +aS"Don't even think about contriving how gay marrige violates YOUR RIGHTS assmonkey. That's the most ludicrous, inane statement I have yet heard from the Religious Right." +p8722 +aS'Well, they ARE ultimately the ones that create a vehicle that can travel at break neck speed...perhaps they are partially liable? Joke.' +p8723 +aS'I see -- in your opinion is it is "illegitimate", therefore it must be so. I think I trust the legal opinions of the courts more, but then, they do occasionally make mistakes. It\'s just not at all obvious they\'ve made one in this instance.' +p8724 +aS"So what? A person has a right to defend themselves, as spelled out in the Constitution. Or would you rather the 80 year old just get beaten to death for his $262? Or maybe you'd feel better if he'd suffered the same fate as the home invader over in Maryland. He made the mistake of breaking and entering into a student house and was slaughtered with a sword. And what point are you trying to make anyway? It's not like the 80 year old went on a killing spree of anything. Nobody got murdered. So what're you moaning about?" +p8725 +aS'And could you be anymore of a drama queen about it, using the raw sweage thing. That is such a stretch of the truth. People straight and gay have been sodomizing for years and their are very few cases of any of e coli every year. Stop drama queening out!' +p8726 +aS"No, I'm your regional manager." +p8727 +aS"They can't, if you value science and common sense, however, science and common sense are irrelevent in their world." +p8728 +aS'You know something is wrong with this world when people attack the act of posting an opinion (that of Ms. King) and another condemns the idea that someone may read it and develop their own opinion. Saving lives is not just a Republican goal. And yes it is an act of desperation. All acts are an act of desperation when it comes to saving the natural process of life with out interference of those who place their comfort above the life inside them. Whatever is wrong outside the womb, is not the fault of the inhabitant within the womb.' +p8729 +aS"Just so you don't shoot them!" +p8730 +aS'Will the Obama administration come for your guns?' +p8731 +aS'I think maybe you have hit yourself in the head with the Bible a few times too often.' +p8732 +aS'As opposed to being denied the joys that most of us experience in life. Convenient. http://dictionary.reference.com/browse/sophistry' +p8733 +aS'Sometimes the state of the education system in the USA makes me cry.' +p8734 +aS"And, I'm sure you ask yourself that very question before you unzip your fly and whip out your pecker, right?" +p8735 +aS'Of course we can ignore all the emotional and physical problems women lose when terminating a pregnancy.' +p8736 +aS'So sorry, I was trying to figure out why God lets some women down, and yet favored you. I always assumed it was a mixture of physiology, luck, etc. Sometimes bad things happen, sometimes good things happen. But you claimed God was the one who saw you through and made sure your daughter was born healthy and functional...So, again, in a similar situation (trust in God, doctors say baby will be born damaged, etc), if it turns out the doctors were right, is God to blame for letting me down? Or was it, in fact, just the way things are sometimes? Or does God just randomly hear some prayers, but not others? No, no...lemme guess. "God has a plan for us all"?' +p8737 +aS'Hehehehehehe. That made me laugh, but you actually make a good point. They should have I AM JUST A THEORY written on them, otherwise kids will regard them as fact and then where will we be?' +p8738 +aS"Like you were raised? Looks like it didn't work and now those hormones must be kicking in? Nothing worse than a menopausal female grinding her ax...their favorite victims? Males." +p8739 +aS'Oh, ok, I can be politically correct if it makes you feel better. How about I refer to them as "intelligence deficient". And I was really not referring to bona fide "retarded" individuals (those with true pathology). I agree that there is nothing funny about that. How about I refer to them as people who drive like XXXXXX...Is that better?' +p8740 +aS'so we are making progress. It seems that SS is now admitting that evolution by natural selection really does happen. He admits that his examples are not what he claims they are. We also see that he objects for religious rather than scientific reasons and is aware of it. Good for you SS. Sadly, he seems to be falling back on that old creationist saw about "where are the intermediates."' +p8741 +aS'Oh, it was going so well too' +p8742 +aS"So when somebody with bad intentions breaks and crawls in through a window, and shuts off your power so you can't use the telephone, and comes busting through your basement door, shooting them is vigilante justice? To you this situation doesn't qualify as self-defense? I highly doubt the woman is lying about the entire matter, because if she was the prosecuting attorney and the police wouldn't be so willing to not press charges against her." +p8743 +aS'There goes said intelligence...' +p8744 +aS"And lets not neglect the fact that he was tetotal and a vegetarian to boot. Well, looky here we all learnt today that bad people can have have good characteristics............ Sounds like Pastor Russell Johnson's representation of truth is as selective as it is self serving." +p8745 +aS"So it doesn't matter that someone dies in their forties from hunger and cold because they are homeless and penniless, whilst another lives in luxury with the best food and medicines until his 80s: they are both equal? What planet do you live on, for it sure aren't the real world..." +p8746 +aS'You\'ve gotta love when ignorance lends itself to incredible mistakes like the above statement. "Excepting" that there is some magical sky man is precisely what atheists do. Looks like we have another Einstein who wants to test his opinions with people who actually know what they\'re talking about. lpdm, you\'d better learn quickly, or I don\'t think you\'ll like it here as much as you were hoping.' +p8747 +aS"Because it's simply too obviously true?" +p8748 +aS'None... unless she uses abortion as a form of birth control and has them regularly.' +p8749 +aS'HOLY SH*T, marc. You\'re doing EXACTLY WHAT THE REVIEW SAYS YOU PEOPLE DO. You\'re making the claim without giving any explanation. "OMG TEH SCEINCES IS ATHIESTIC BECUZ THEY JUST AER!!" Thanks for making it extremely clear. Refuting a point by demonstrating it isn\'t very effective. Seriously, how disconnected from reality does one have to be in order to do something like this?' +p8750 +aS'Should all drivers have to help pay for harm done by irresponsible drivers?' +p8751 +aS"So being easy to know makes it good? methinks that's not quite right." +p8752 +aS'And your Orwellian position is showing.' +p8753 +aS"Oh, well. Apparently you want to talk molecular chemistry whereas I was hoping to discuss organismic evolution. Too bad. Good luck with anyone who wants to debate your topic, but it just doesn't interest me." +p8754 +aS"I'd be curious if Berkowitz studied whether a sword or club produced the same effect as a firearm? Short of castrating all boys at the onset of puberty, I'm afraid boys will be boys." +p8755 +aS'/hypothetical mode on. The State murders an innocent man. /hypothetical mode off.' +p8756 +aS"You mean, intelligent design, which has been proven in court to be not science, and to be a front for certain religious agenda's, and straight forward arguments based on ignorance of the evidence and logical fallacies. If you look at the organizations that push I.D. , you will see they have a religious agenda . The discovery institute is funded by religious organizations, and every one of the board will admit they thing the 'intelligent designer' is the Christian god. Read the 'wedge strategy' from them." +p8757 +aS'Again, "THE MOST OVERTURNED COURT IN HISTORY"' +p8758 +aS'And you are on intimate terms with the Queen, eh? By the way, what is it exactly that that little thingy above signifies? I hope I have used the right emotive whatchamacallit.' +p8759 +aS'Neener neener - is it time to go in from the playground yet?' +p8760 +aS"Personally, I believe that god doesn't exist, and I have a link, too! By the way, sorry for all the links, but I have found that since creationism has been so well refuted elsewhere, I don't have to do too much work. It also helps that I'm presenting evidence, right?" +p8761 +aS'And oddly enough you have been given several on silver platters. Perhaps you need to visit a neurologist and get checked for memory problems? Just to remind you once more - SICKLE CELL TRAIT is a mutation AND it benefits the phenotype under specific definable conditions. Do you really want to get hit about the head with that bat yet again?' +p8762 +aS'I see. So the Bible is true because you claim it is true.' +p8763 +aS'Oh! Did you mean something like this in gun free France: http://www.guardian.co.uk/internatio...ews+-+guardian Those weapons were cheap and from an eastern block country. Machine guns are for sissy American felons. Real felons in gun free France use anti-tank weapons.' +p8764 +aS'This must comfort you.' +p8765 +aS"that's right, i don't want ANOTHER parental figure to tell me what to do, when to do it, and how to do it." +p8766 +aS"You must know a lot of Abortionist to make that claim. And Obviously they must have had you 'round for dinner to know how much they make and where they live. If you have so many Abortionist friends then why are you so anti choice?" +p8767 +aS'Hey, thanks for the quote! Am I published now?' +p8768 +aS"So, which is it? You don't want violators of Federal law to have guns, yet you don't want them to get rid of them either. Can't possibly do both, now can you? Which one? Do the law breakers keep them, or not? Make it against the law to keep the guns...now make it against the law to sell them. DUH! I guess we'll just hang out in limbo-land!" +p8769 +aS"Because deer don't live in Africa." +p8770 +aS'Sure let me have your sermon/propaganda of misinformation since it doesn\'t match the context of the Scriptures. propaganda n : information that is spread for the purpose of promoting some cause. mis\xc2\xb7in\xc2\xb7form Pronunciation Key (msn-f\xc3\x83\xc2\xb4rm) tr.v. mis\xc2\xb7in\xc2\xb7formed, mis\xc2\xb7in\xc2\xb7form\xc2\xb7ing, mis\xc2\xb7in\xc2\xb7forms To provide with incorrect information. con\xc2\xb7text Pronunciation Key (kntkst) n. 1. The part of a text or statement that surrounds a particular word or passage and determines its meaning. 2. The circumstances in which an event occurs; a setting. And since your "experience" does not guarantee you to be an expert I will stick to the context which matches what I have said. Job 32: 4 And Elihu had waited for Job with words, because they were older than he in days. 5 When Elihu saw that there was no answer in the mouth of the three men, then his anger burned. 6 And Elihu the son of Barachel the Buzite answered and said, I am young, and you are very aged; so I held back and was afraid to make my knowledge known to you. 7 I said, Days will speak, and many years will make wisdom known. 8 But it is a spirit in man giving them perception, even the breath of the Almighty. 9 It is not the great that are wise, nor the aged who perceive justice; 10 so then I say, Listen to me; I will declare my knowledge, I also.' +p8771 +aS'Oh I understand plenty. What you want is a system where a person is held responsible for crimes that they didn\'t commit. You want "guilty by association" extended to the point of ridiculousness where anybody who even met the criminal even once can be held as an accomplice.' +p8772 +aS'Maybe He spoke very slowly. Anyway, Creationism is not synonymous with Christianity. Literalists have a problem, not all Christians.' +p8773 +aS"Edmund, you still haven't come out of that wardrobe." +p8774 +aS"We need to ban box cutters. We need to ban box cutter shows. We need to prohibit box cutters on school campus. We need to to ban extra efficient assault box cutters because the can open more boxes than regular boxes. We need to register all box cutters. We need to reduce the box cutter supply to prevent box cutters from getting to criminals. Regular people don't need box cutters, they can just use pointy sticks to cut tape on boxes. Did you notice. They did not use guns. Terrorist in our country used box cutters and fertilizer and U-hauls to kill people. We need to ban fertilizer and U-hauls........." +p8775 +aS"Sorry did I say pacifist?I meant yellow bellied pacifist.However if its any consolation, I meant anti's in general not just you Sinj.sorry if it sounded that way." +p8776 +aS"You mean Priests? Because I hear the ladies are crawling all over them, can't get enough of that catholic loving..." +p8777 +aS"Actually it's all men." +p8778 +aS"And that's what scientists will do. No change there, then. Now, on the subject of long-held religious views, how many so-called Christians will have a rethink when presented with new findings?" +p8779 +aS"What makes you think I don't. Yours is not the only religion on earth!! And I didn't just jump to the concluision that your soul needed concern, so don't jump to it with me." +p8780 +aS'Quote Mining. You got to love it. Always fascinating when stuff is dishonestly taken out of context. Normally, we see this from creationists, but you are by no means the first prolifer who has engaged in this practice. But lets look at it' +p8781 +aS'Who cares?' +p8782 +aS'And there we go again. Re-read the bit about dancing around the land mines, if you in fact did read it the first time.' +p8783 +aS"Well, the short version is that shortly after the big bang, the universe was filled by a hot quark plasma. As it expanded and cooled, the process of nucleosynthesis produced the primordial elemental abundance, primarily hydrogen, with some deutirium, helium, and lithium. The physics is well understood, and verified by observation. Quantifying uncertainties in primordial nucleosynthesis without Monte Carlo simulations At roughly a billion years of age, stars and galaxies formed, some fraction of the stars that formed were massive supergiants, that burned up their hydrogen into other elements, up to the atomic number of iron. This occurred at a tremendous rate and in a few more billion years, these stars went supernova and exploded. Prior to going supernova, these stars go through a phase where the outer layers of the star are shed, providing ways to transport the lighter elements away from the star. You can see this in the following link: Hubble Chemically Analyzes the Ring around Supernova 1987A The trememdous radiation of the supernova permits the formation of elements with atomic numbers higher than iron. The force of these explosions scattered the newly created elements, creating vast gas and dust clouds. Eventually, the shockwave of another explosion initiated the collapse of one of these clouds, and the spinning hydrogen cloud begins to heat , eventually initiating nuclear fusion, and becoming our sun. As the sun began to increase it's heat output, the volatile remains of the accretion disk are driven away from the inner portion of the solar system, leaving mostly heavy elments. Comets bombarded the inner solar system, transporting water, carbon, and amino acids to the newly forming earth, making dirt. In short, a truely wonderful creation." +p8784 +aS'Well any group or individual not spouting left-tard drivel is actually a hate group. The military is of such low intellect that they are easy to sway into hate groups. Hence the homeland insecurity warning on returning veterans.' +p8785 +aS'No Christian sin??? Other then the intent to kill and then doing so' +p8786 +aS"By far most speech about homosexuality from those who don't approve is not hate speech. You've been listening to too much propaganda from gay lobby groups who think demonizing and working toward persecuting Christians for their beliefs is the best means to an end. If Canada limited it's persecution only to those who are trying to change the law, there wouldn't be a problem." +p8787 +aS'And you have been refuted time after time. Lies, damn lies and statistics is a starting point. Its the false idea of the more powerless you render yourself the safer you will be. I bet you strongly believe its possible to pick up a turd by the clean end.' +p8788 +aS'Well, I see that Hunter continues with his intentional ignorance. Even though it has been explained to him on several occasions, he still chants his "evolution is only a theory" mantra in hopes that his audience will be as ignorant as he. Yes, evolution is a theory. In science that means that it has been tested and accepted as essentially correct. Evolution is a theory just as gravity is a theory - several in fact; Newtonian gravity, general relativity, and quantum gravity. None of those theories actually work in all situations. But for all practical purposes, evolution has been proven. That\'s easy since evolution has been observed and the theories are build on the facts of those observations. You will notice that Hunter hasn\'t proven any of his assertions. He just knows that there are talking snakes, and magical beings that make people out of dirt. Sure - go ahead and start with the Bible so you can get the mythology of two different creation stories, an impossible flood, and such fantasies as a man being swallowed by a whale or the any human would know about a god that wagers with Satan, out of the way. Not only will you find no proof to support the Bible, you won\'t evern find any evidence.' +p8789 +aS"But...but... I just swallowed 56 zygotes so that they could vote by proxy through me for the Ripofflican(tm) party this upcoming election so they can win. Now I'm going to have all that indigestion for nothin'. As to driving...don't care. What I'll miss most is all of those credit card offers that come in their names. There's just so much that they, living though me want to 'buy now and pay later' on. You saying they can't do that? But, that's just the argument Chem99a and I are having in another thread. And this is what it devolves down into. Parasite attached to a human and one that's coaxes it (often with governmental support) to nurish it...not much difference. Personally, I'd rather have the sucker permanently attached to me so I'm not forced to think about feeding it or changing it's diaper. I'd also take a kick to the ribs over cholic crying. Silly neglegence laws... Yep. I do think some would be willing to work towards compromises that would make the most happy. Jitobear seems to be one from my observations. But, others want it their way. I dislike abortion but can see in some circumstances that there really isn't much of an alternative. I also see that most anti-abortionists often don't help to provide alternatives. I don't want to make it illegal per se but do want to work towards reducing the instrances in which a woman would see it as a more viable alternative. It'd be nice if society and science would progress to that point. But, since it isn't and since I'm evil(tm), kill it. Go ahead...be a murderer. Muahahahaha. Evil WINS! Go evil, go evil, go evil... Um, isn't evil subjective?" +p8790 +aS"Only if she's piloting at the same time." +p8791 +aS"Oh ye of little faith. I'm sure he's capable of being much more stupid than that!" +p8792 +aS"Do you have a fire extinguisher in your house? I have never had a fire in my kitchen but I still keep a fire extinguisher in there. I look at wearing firearms for self defense the same way I look at wearing a seat belt. I wear it and pray I'll never need it, but I'll be damn glad I'm wearing it if I do need it. God Bless" +p8793 +aS'Oh no! Here comes Palin, run for cover. Because I really fear ignorant and hypocritical conservatives. As to your argument, while were out calling fertilized eggs "men", lets call plant life "men" as well.' +p8794 +aS'So if I come and insult and demonize you or somebody you love - you might still consider me a good person?' +p8795 +aS'Those walking sperm will be funding your social security in the future, Matt. What will your sperm be doing besides causing stains?' +p8796 +aS'Oh I\'m so sure that\'s the case. "Well the economy\'s at the worst I\'ve ever seen and I don\'t have a job and can\'t possibly provide a living for my family and we\'re in danger of losing our house and living on the streets, but I don\'t think I\'ll save us all a lot of pain and agony because I don\'t have a gun meaning that it\'ll just be too much work to kill ourselves." Yeah right, like a lack of having a gun would\'ve kept this family from dying in this instance. Your comments cheapen the value of life.' +p8797 +aS"And by old fashion I assume you mean Greece a couple of thousand years ago. That's the only place and time I can think of off hand where the populace (by which I mean landed men in this case) could vote to change laws. In this country the correct procedure for a citizen to change an unjust law is via the courts, and always has been. However, I don't think that is, in fact, what Jyoshu was refering to." +p8798 +aS'In other words youre happier because the old man did something criminal and broke the law. Admit it.' +p8799 +aS'Can your intellect explain infinity...such a tasty word' +p8800 +aS'You need to learn what a metaphor is, if english is your first language you must have been dropped out of school as a baby. When the researchers say plants "know" they are near their genetic cousins, they don\'t mean they have a conscious awareness of it and deliberately alter their growth patterns. That is, it is a specific physical response to a specific physical stimuli, and the plants could be made to do the same thing by the presentation of the same stimulus in the absence of any other plants. Of course, you aren\'t interested in testing things, because that would be too materialist for you. You just prefer to skim articles and fail to understand metaphors, that\'s true "psychical science".' +p8801 +aS'You got THAT right!!!!!!!!!!!!!!!!!!' +p8802 +aS'So, it was a form of birth control?' +p8803 +aS'Not necessarily. When "life" begins is irrelevant, because flowers and weeds don\'t have rights yet they are a life form. The thing that determines rights is intelligence. Not how much or how little, but whether someone has it at all. A spec of dirt has no intelligence. It won\'t pop up and say "hey! How ya doin!" unless you\'re on crack. We\'ve actually killed intelligent entities for less than the consequences of carrying out an unwanted pregnancy. We hunt, and we go to war. Even though I do not agree with war, I do agree with hunting, and I myself hunt on occasion. However, that is off topic. The point is, carrying out an unwanted pregnancy can have devastating effects, and those next 18 years could hold her back from her life. Its awful how she will have to liver her life. If she gets an abortion, the embryo does not (to quote another opinion) "mentally exist". Now, hunting is really only done for recreation, and maybe a good meal. They would\'ve been almost just as well off if they went to the local taco bell. Sure, they\'d prefer hunting, but its really only done for fun and exercise. I, myself, value an animal over an embryo at its current stage. The only reason I don\'t completely think an animal is worth more is because that embryo has a chance of becoming a human. Then again, the animal does mentally exist and has full awareness, and the embryo is really just a sitting cellular watersack with no organs.' +p8804 +aS"Well what do you expect?! Everytime gun owners try and do anything to combat crime, you liberal sissies yell and scream about vigilantism and foam at the mouth as you talk about how we're taking the law into our own hands and that we'll be administering death sentences without trials for matters as trivial as jaywalking! You want us to combat crime, but you don't want us to actually do anything. Make up your mind already!" +p8805 +aS"And I'm guessing by your misinformed posts that you have not been high before. Did you recently watch a film called Reefer Madness by any chance?" +p8806 +aS"You are apparently unwilling to extend your thinking process to the other side of the argument Galileo, and by this I mean, and repeat that it isn't criminals owning hand guns which we defenders of gun rights are fighting for. WE AGREE THAT CRIMINALS SHOULDN'T BE ARMED, and the laws already exist on the books to punish them when convicted criminals are caught with guns. But your solution to disarm all honest citizens in the belief that this will make them unavailable to criminals also is ludicrous to the point of self destructive insanity. It is that premise which we are fighting against through the NRA and other lobbying efforts." +p8807 +aS"Probably because buildings aren't biological or reproductive." +p8808 +aS'What, to be "open-minded?" or to embrace your definition of "tolerance?"' +p8809 +aS'And the moon could fall from the sky, too.' +p8810 +aS'Oh, well when you put it that way.... Maybe you could address this one thing. "The total elimination of arms from society." You\'d think someone from Brady might have said this somewhere, sometime, that you could compare to the memo. I would.' +p8811 +aS'Oh, gee! There goes my irony meter. It pegged and started smoking at the end of the first sentence. Archy is just being christian by trying to impose his twisted morality on everyone.' +p8812 +aS"Well, I think it is best to use a real source. Like the Australian FBI, called the A.I.C.. The latest figures. Violent crimes from 1996 to 2007 (per 100,000 persons per year) Homicide is pretty much a flat line no? However there violent crime is not. And to be fair, Australia's murder rate has always been significantly lower then ours and they should be congratulated for there socialization for it too. So if gun related crime goes down but the murder rate remains relatively flat, but other violent crimes go up, then what is thew point of mentioning that GUN Related crime went down?" +p8813 +aS'You go to hell when you do not ask for FORGIVENESS from your sins and ask Christ to govern your life and help you to stop sinning. I am still a sinner, but I am forgiven and I ask Christ daily to help me with my fleshly desires.' +p8814 +aS'Golly gee. Scared already?' +p8815 +aS"Just because you don't hold the same beliefs as we do, does not invalidate our belief. I feel sorry for you if all you have to believe in is a small petri dish of algae. You do need absolute proof if your going claim it as the only possible way of creation." +p8816 +aS'And you are proud of that?' +p8817 +aS"Yes, with a crime rate larger than New York City, Chicago, Philadelphia, San Francisco, Los Angeles, Indianapolis, and Las Vegas, they're a wonderful example to follow, aren't they?" +p8818 +aS'Interesting how the study was set in Pittsburgh, Pennsylvania. They\'re a city known for violence and gang-related issues. I wouldn\'t be the least bit surprised if those that were shot and counted in this "study" were known gang members who were either shot by their intended victims, or by other rival gang members. Blah, blah, blah. Stop throwing out discredited and biased stories. Explain in your own terms, exactly how having a gun makes you more likely to be shot. Explain the mechanics of how this works. Go on and try, make some sense rather than cherry picking poorly executed "studies" that prove nothing. You made the claim that if you have a gun in your possession, this fact magnifies your chances of somehow being shot. What you suggest can only happen if magic somehow exists, like the legally-owned guns sends out powerful magnetic waves to attract the criminals and hypnotizes them to shoot in a situation that they normally wouldn\'t shoot.' +p8819 +aS'Yes come over here and live in gun hating australia could you. THen when you call the cops after your father has been murdered and you kidnapped and torchered because you cannot have a gun for self defence you can wait 9 HOURS for the police to come and find your bloodied body lying on the ground. When you think of it 9 hours is not that long, I can fly from QLD to Japan in that, or play 3 baseball games back to back or run 3 marathons back to back. I am sure that somebody of your "intelligence" will have no problems with distracing some murders for 9 hours. Why carnt US soldiers carry guns on base for self defense? Please winston i cnallenge you to show us some cold hard facts that taking guns away from the law abiding drives crime down. Perhaps that family could have done it in the 9 hours it took for the police to come.' +p8820 +aS"I know this may seem obvious to most people, but it seems to have escaped the notice of creationists. Birds are tetrapods, as are amphibians, reptiles, and mammals. Birds didn't just grow wings. Wings are adaptions of the front limbs that were covered with feathers. Perhaps you are unaware of the evidence that indicates that maniraptors had feathers, probably for thermoregulation. Saying that there is no mechanism for birds to grow wings when they previously had none is like saying that there is no mechanism for mankind to grow arms when he previously had none. You see, mankind's closest relatives are the two species of chimpanzee - they are quadrupeds." +p8821 +aS"I thought I'd give Brady and Penfold a chance to tell us what a bad man this guy was for defending himself like that. BTW, here in Alaska he didn't need to have a concealed carry permit. Here, if you can legally own a gun you can carry it with a few exceptions. Merry Christmas" +p8822 +aS'Rofl\xe2\x80\xa6 What were they supposed to do if they stayed in the egg longer with more time to feed off of it? Shrink?' +p8823 +aS"I see. So what you are saying is that you are unsure about evolution and wish to explore it. Great. Then start with one of those unreasonable and dumb arguments and present it. Why are you more reasonable and not so dumb? It's easy to do what you have done. I can claim that invisible pink unicorns push the moon across the sky. I can claim that you are unreasonable and dumb because you disagree with me. But it is meaningless unless I am willing to show that I have a pair and can step up and show why I am right. Do you have a pair?" +p8824 +aS'Am i stupid or something... whats a YEC? Young Energetic Children? Yacking Economistic Critters Yummy expensive cupcakes? Maybe im just dumb or something... i hope it was one of those three for my sake.' +p8825 +aS"Mehhh.... You probably went to a Catholic school. But now that you've stopped 'devoting' your 'life' to the God of the Bible, you've 'devoted' yourself to another god, Yourself. Typical case." +p8826 +aS"And I wasn't asked if I wanted my federal tax dollars to go towards hetero benefits and to support their walking sperm." +p8827 +aS'Please, I beg you, stop trying to jam the world into your "creation" account through reason. You just won\'t get anywhere through reason, if your first choice is to believe the bible (any religious works) as truth, and go from there. What you just said is "[adaptation] would be mutation by natural selection, not evolution" First, the adaptation refers to the adaptation of the species. A population of wingless beetles survives. The missing wings is the mutation, and isn\'t caused by anything other than a mutation, it\'s not a result of their being winds, or there being a god, it\'s just a mutation in the gene code. The gene for the wings can dissappear into the endless gulf of other discarded mutations since those organisms that carry it will most likely die off before reproductive age. It can also be left in the DNA sequence, unused, and not active, unless some other mutation activates it. ( A large percentage of our DNA seems to be unused garbage code). When this happens, your species evolved. What is your point, that beetles can evolve? Yes, they do. All life on earth seems to. Yet you don\'t think it\'s due to evolution? Mind-boggling. Who is telling you evolution is "bad" or "wrong"? Only if you arrive at that conclusion WITHOUT religion, can you even begin to have a discussion on it. Evolution in life only requires: DNA replication Mutations A natural environment (that is, what we see here on earth, a complex system) time Which of these do you feel is "incorrect"? We can prove any of these, why persist? -Mach' +p8828 +aS'My money is on parents as singular.' +p8829 +aS"So what is the bible then? Simply a nice story-book for you to read from? If Genesis is simply a representative story from which we can interpret the actions of god to mean natural selection and evolution, what about the ten commandments? It always amazes me to hear people with positions like this insist that it is okay to play fast and loose with their interpretations of Genesis or the Arc, but God really does hate the homosexuals. It says so in Leveticus, right? So it must be word perfect truth... This bit about the origins of the earth? Oh, we just interpret that as god designing evolution. But that part about people burning in hell for eternity, that's true, right?" +p8830 +aS"So in your own words the police want to go on murder sprees, because they're armed. According to you the military is just waiting for the first convenient excuse to open fire on anyone, be them designated enemies or just innocent bystanders." +p8831 +aS"You mean your hypothetical I presume? Murder violates the rights of the murdered by relieving them of their life. That's why it's illegal. You're a bit slow I see." +p8832 +aS'So it is claimed.' +p8833 +aS"Really? I have argued that God is an epic liar? Can you point out me arguing that at all you EPIC LIAR? Once again you are interpreting what I have said through that sick and unbalanced mind of yours, and then extrapolating that I am now arguing in favor of calling my God an EPIC LIAR. Is it absolutely impossible for you to debate issues while actually responding to what we really say rather than reading into what we say and redefining it to fit your warped and perverse perspective? I mean, how sick and disturbed must your powers of reason and logic be for you to interpret my argument that Man, because of our linear view of time, is misreading the fact that God placed the stars in space at the same time much more recently than it appears to us to have occurred, that God is then an epic liar? Is God responsible for how we interpret the evidence when we attempt to do it apart from placing Him first and foremost into the equation? Is He the liar? Or are you who think like that deceiving yourselves by ignoring His place in the creation of time and space? It is just completely beyond you to think from an honest and objective perspective, isn't it obvious child! But for a more practical answer, imagine this. In the beginning, space was a void which spanned all of eternity. Only one object/energy source encompassed all of it from one end of its massive emptiness to the other, and that person was my God Yahweh. And in one second or minutes time, he spoke all of the stars that have ever existed, at different intensities and strengths, which causes them to burn out at different times. But he placed them at the very inner and outer limits of time and space at that time. Liken it to a farmer with a hand full of seeds. He pulls back his arm and throws those seeds to the end of the plot of land he is sowing at that time. To the ants on the ground, if they measured the time it would take to reach the farthest seed, it would represent a great distance, but to the farmer it was just one arms throw in time to disperse hundreds of seeds at one time. Now here we are as finite creatures who can only see time from our linear perspective. Time is plastic. Our linear measure is man made for our convenience only. That you place what we call the measure of so called light years is arbitrary at best. But I am getting too deep for you and this discussion. The point is that our God has the ability to place the stars in every corner of not only what we again, arbitrarily call our universe, but throughout all of time and space. But to we puny finite humans who have invented telescopes, it appears that these stars we are seeing today are ancient based on the perceived yet arbitrarily arrived at distance you believe they are from us. But since you are unable to even grasp the hugeness of our God, you also fail to appreciate that light years are a measure of distance rather than time. So by that definition alone, it is foolish to equate it with Earth time rather than Gods ability to reach any distant place in time and space and place stars there." +p8834 +aS"Well Spam&Scram is certainly the strangest of the anti-evolution crowd I've come across. He even proclaims that animals change as fact, not something that Creationists concede lightly. He claims to know very little then decides he knows it all... (OK that's more like a Creationist.) It might be intresting to see what happens if he came into contact with Creationists." +p8835 +aS'Oh, good, I get to do this again! They\'re not Christians, just like Judge Jones isn\'t a Lutheran. (Your foot should still be in your mouth over that one, but you never learn.) They\'re all phonies, aren\'t they, marc? Lucky for marc, he can accurately assess people\'s belief systems without knowing the slightest thing about their beliefs. But I have this "power," too:marc is an atheist. Sure, he says all this fundie Christian stuff, but he\'s really an atheist. I know it in my heart because my own belief system, infallible and based upon the teachings of God himself, tells me so. I know, because I know Christians, and marc\'s not a Christian. He\'s just a big phony. And there you go... atheist. Clearly, I\'ve correctly labeled you, and you are nothing but a false teacher.Pathetic, marc. Absolutely, positively pathetic.' +p8836 +aS"Just like you did with your astounding ignorance of erosion? Fresh Organic Sample is just as old as centuries old time capsule because they are both on top of the ground! Where do you buy your South American Villagers Dinosaur commercial art? I'd love to give some to the kids!" +p8837 +aS'Wow! You really have been paying attention to the Democratic smear campaign of the healthcare insurance industry, haven’t you? Did you also pay attention to their relative profit margins VS those of other industries? It was 2.2% ROI!!! Banks make 10X that much and I don’t hear your demagoguery directed at them. In fact over 35 other industries make higher profits than health insurance companies. Try doing some of your own research for a change and stop listening to DNC brainwashing. If they spent \xc2\xbd of the time that they spend railing against the current healthcare insurance companies on something more pertinent, like shutting off the unlimited money supply to banks, this country would be able to pay for our, and probably Canada’s, healthcare.' +p8838 +aS'I dunno, maybe it was in the third trimester?' +p8839 +aS'Oh No, everyone! Our Mollusca has been undercut! Whatever shall we do?' +p8840 +aS'wow, I never thought a qoute would be so stupid as to compare it to a house. Fine then what if I compare your head to a house that is housing ur brain. But it would be perfectly legal to rip it out and steamroll it on the street for allto see. (by ur rules of course this would be a perfectly acceptable thing to do)' +p8841 +aS"You repeat that like it actually means something! Could it that your side is paranoid looking for some vast Right Winged conspiracy? Maybe it's Bush's fault!" +p8842 +aS"Oh no an open minded church that doesn't hate? GASP! And sorry but the bible has many interpretations as is clearly seen in the WIDE and VAST amount of differing denominations. Just because their not closes binded right wing bigots doesn't mean you can grill them cause their interpretation is different..." +p8843 +aS"I'm not surprised that no one on your side of the debate would correct you, but wolves and dogs are both members of the same species. The Canid species, specifically the Gray Wolf, or the Canis lupus which the domesticated dog is an extremely close relative of, differing from it by at most 0.2% of mtDNA sequence. The evolution of the domestic dog The earliest remains of the domestic dog date from 10 to15 thousand years ago21; the diversity of these remains suggests multiple domestication events at different times and places. Dogs may be derived from several different ancestral gray wolf populations, and many dog breeds and wild wolf populations must be analysed in order to tease apart the genetic sources of the domestic dog gene pool. A limited mtDNA restriction fragment analysis of seven dog breeds and 26 gray wolf populations from different locations around the world has shown that the genotypes of dogs and wolves are either identical or differ by the loss or gain of only one or two restriction sites22. The domestic dog is an extremely close relative of the gray wolf, differing from it by at most 0.2% of mtDNA sequence. In comparrison, the gray wolf differs from its closest wild relative, the coyote, by about 4% of mitochondrial DNA sequence14 (Fig. 4). Therefore, the molecular genetic evidence does not support theories that domestic dogs arose from jackal ancestors24. Dogs are gray wolves, despite their diversity in size and proportion; the wide variation in their adult morphology probably results from simple changes in developmental rate and timing 25. Link to source site: http://www.idir.net/~wolf2dog/wayne2.htm Here's a lineage graph: http://www.idir.net/~wolf2dog/images/W2FIG4.gif And what fossil records can you show that one species of animal has evolved into another species of animal?" +p8844 +aS'http://www.talkorigins.org/indexcc/list.html Somehow merely clicking the link makes you look like a hypocrite.' +p8845 +aS'You are, in effect, telling me that putting someone in a position that will inevitable leave them dead does not make you responsible for their death. If I fire a bullet at your head, while that bullet is in mid-air, I am no longer doing anything to hurt you, and you are fine. However, I have set in motion affects that will result in your demise. This makes me responsible for your death.' +p8846 +aS'Wonder what "euthanization" is. Never heard of it before, and neither has the dictionary.' +p8847 +aS"It was a pretty clear rebuttle of the idea that the ToE breeds social elitism, Marxism, and Nazisim. I guess you're right though, SS. This wasn't nearly as entertaining as a slough of out-of-context quotes to show that ToE-accepting biologists reject the ToE." +p8848 +aS"So if everyone had a sign on them and a water pistol then would you be happier or does everyone need to have a gun? Should everyone who has a gun have a sign as well? Is the deterrent of a gun diminished without the sign? I'm also not going to address my brother in every single post. He is a shining example of why I don't like guns but that doesn't mean I'm going to talk about him constantly." +p8849 +aS'Not in matters of atheism. Tell me, when science discovers something that seems to agree with the 150 year old writings of Darwin, are the writings of Darwin disregarded? Or is that type of history trumpeted to the masses?' +p8850 +aS"** It's up to you. Stop bringing up red herrings and/or arguing by personal attack, or don't expect me to treat your posts with any less contempt than I have for most of what's been posted to this board." +p8851 +aS'You mean like how you suck any rationale thought or discourse from a debate topic? Talk about ABORTING.' +p8852 +aS'lol...you read my whole post only to conclude with "what\'s your point." Evolutionist brilliance on display. I\'m not mistaking nothing for nothing. I know my stuff. You obviously know nothing and don\'t care to learn it.' +p8853 +aS"^ This is the funny part!.... My answer: .45acp strapped to your hip... .05 seconds to respond to threat... Crocidile Dundee's answer: Call the police... 1-30 seconds to get to the phone.... 1-3 seconds to dial police (if you have 911) 30 Seconds to 5 minutes to splain yourself..... 5-30-??? time for police to respond.. My analysys: Your dead!!! Having the logic bus mow you down: PRICELESS!! (sorry Kelvin... COuld not resist!)" +p8854 +aS'And from where did you get this idea? Please provide your references.' +p8855 +aS'Because those who are pro life are against a womens right to own her own body. Her body her choice and none of anyone elses business. Remember control freaks are everywhere.' +p8856 +aS"** Back to the dark side,eh, and 'argument by personal attack upon the character of your opponent'?" +p8857 +aS'But in terms of legality and constitutionality, do you believe that they should still be prohibited? Also, how can god hate? I thought he was true love. Scratch that-- I thought he was unknowable. Thanks' +p8858 +aS'Because you say so?' +p8859 +aS"Any proof that he was a murderous sociopath? It's your assertion... I can't help but feel you're grasping at straws." +p8860 +aS"So the fact that it is not legally recognized is the problem. What is the reason it's not legally recognized? Because the couple is gay." +p8861 +aS"No, think about what you just said. A cancer cell doesn't mutate, it attacks healthy cells and causes the destruction of healthy tissue. Kinda like liberals in a healthy society - they are the free radicals of the body politic, huh... go figure." +p8862 +aS"So, how many kids do you have? And, do you know their names? What they like to do? It doesn't sound like you've been much of a dad if all you did is providing for them. Did you watch TV sports the rest of the time?" +p8863 +aS"So according to you, you'd prefer it if only the bad guys are armed, because that makes it easy to tell who's the bad guy and who's the good guy; being the good guy is never armed, and thus never able to defend themselves." +p8864 +aS'So will they be in front of or behind a leaf?' +p8865 +aS'** I "pretend" to nothing. I am not "pretending" to beilieve you to be a materialit/darwinist. I do believe exactly that. And as for your threat to make my arguments look silly, I\'m not shaking in my boots. I\'ve made your arguments look presumptuous, pretentious and silly, but you have never yet succeeded in doing that to any of mine.' +p8866 +aS'So what\'s your solution, keep all blacks unarmed so the bad blacks can\'t hurt the good blacks? I guess you\'ve decided to drop your argument that the Second Amendment was a racist tool designed to keep blacks "in their place" under the thumb of their masters.' +p8867 +aS'So which is it: the action is moral, the action is immoral, or there is no answer? You seem confused.' +p8868 +aS"Stop telling me to look at the big picture when you've had both of your eyes gouged out! Your entire statement here is beyond stupid. If the criminals felt that the only time to be armed was when their intended victims could fight back, then the criminals in DC would never be armed and the police wouldn't have needed to introduce gun shot sensors in the city. But since DC was the murder capital of the United States, that says an absence of hard targets isn't a guarantee that the abusers will play fair and not use weapons." +p8869 +aS"Just like it's the job of the gun control lobby to try and pass an overwhelming, unreasonable level of fear of an inanimate object?" +p8870 +aS'Then by that standard, christianity is horse puckey! Christians contradict each other. Oh! But wait. Anyone who disagrees with you isn\'t "really" a christian.' +p8871 +aS'NO PERMIT IS REQUIRED IN VIRGINIA! You can legally carry a firearm there if you are legally allowed to own one. Virginia performs an FBI background check and issues a permit UPON REQUEST for those who would like the convenience of carrying in another state that does require a permit. This statistic is just those who have requested one! Imagine how many people who lawfully carry THAT HAVE NOT requested one! I would imagine the number of folks legally carrrying is WAY more that those who have went through the trouble of filing a request. Yet, in THREE YEARS, people who lawfully carry a gun have "killed" 107 people? OOOOOOH! Wow! So us legal carriers have committed one tenth of one percent of all gun "killings"? (Notice they don\'t say if these are justified or not.) Just to see how that looks - - - .01% - - There. That\'s how it looks: .01%. It\'s obvious why they don\'t compare this statistic to the average for the percentage of "killings" by the rest of the population who don\'t even carry guns. Because it would show that "killings" by people who don\'t even carry guns outnumber "killings" by those who do by a HUGE margin. The VPC can\'t have that now, can they? When you show the ENTIRE statistic, it makes gun carriers look SAFER than the regular population. The HORROR! It would mean the VPC\'s point of view would be....uh....WRONG!' +p8872 +aS'Do you have any evidence that this is so? Why would they be totally useless - is it just because you can\'t imagine a use? Why do you think that a small, quick dinosaur with relatively long arms (not like the short useless arms of T. rex that couldn\'t even reach its mouth) with three very sharp claws would be useless? Look at this picture. http://research.amnh.org/vertpaleo/feather18.jpg Those don\'t look like totally useless masses to me. The problem is that you imagine that wings sprouted from nothing and must have been useless until they were fully formed as you think they should be. That\'s not the case. They didn\'t spring from nothing as useless masses. They were the front limbs, with quite impressively clawed, grasping hands. They could have even been used for climbing, as is the case of hoatzins that have claws on their wings until they get their primary flight feathers. The could have been used for grasping food that they were able to catch because of the speed assist from imprefectly formed wings. You propose yet another "I just can\'t imagine how it happened so it must not be true" creationist argument.' +p8873 +aS'And would you care to tell us just what those "official ideological goals" are and where we might find a certifiable copy of them?' +p8874 +aS'And you, on the other hand, because you are not educated in science in general, and evolutionary theory (why the quotation marks?) specifically, are qualified to correct those of us who spent years in study of the topic.' +p8875 +aS'How informative.' +p8876 +aS'Well he can defend his tax difficulties by claiming he is a creationist and thus cannot be trusted with quantitative processes involving a bit of mathematics. Then again he can tell IRS that GOD will provide and they should contact Bush to get Gods cell number. I am sure that IRS, GOD, and Hovind can work it all out.' +p8877 +aS"Gee, Jo, you really should have read your sources. There is one part in here about the French 'navy' and Churchill you really should read" +p8878 +aS'And the Violence Policy Center is somehow more trustworthy?' +p8879 +aS"Well, you're writing from an embryo's point of view, when an embryo doesn't even have a point of view. It would be like writing from a rock's point of view." +p8880 +aS"Here's some advice, if you're going to try and crack on me, make your 'jokes' (I'll be nice and call them that) less passive and more active, grammar-wise. Crim- A definition is the meaning of word that someone created using their own opinions. Is there a difference? And, a circle could be called a circle in the English language, but I could make up a new language in which a circle would be called a square and a square a circle." +p8881 +aS'And ends with the woman, whose body is the one having to endure the pregnancy.' +p8882 +aS'Oh they are? Thats strange... I could not find where exactly they stand on any of thier numerous websites, just more restrictions... And the old HCI was not "moderate"' +p8883 +aS'probably because this is an abortion forum and not a forum about the Iraq War..not only that, there is no parallel.' +p8884 +aS'BWAAAAAAAHAHAHAHAHAHAHAH![/quote]So you are saying that my DNA reflects the fact that I live in Texas?' +p8885 +aS'So SS. Please explain it all to me. Please show that you are not conclusion jumping and making unwarranted extrapolation based on poor understanding of the material. In other words, show me that you understand by explaining the research to me. Thanks.' +p8886 +aS'Funny. It is you who have "abso-freaking-lutely" no qualms about forcing gays and lesbians to pony up dough for Mr and Mrs. John Q Taxpayers marriage and divorce, all the whie denying them the chance to follow the same course as Mr. and Mrs. John Q. Taxpayer. You my friend are a complete hypocrite. Either give them marriage or quite taxing them to help yours. On another topic, I find it sad that you were ever given the position of moderator with your hateful and dishonest posts like this one. Very glad that it was stripped from you.' +p8887 +aS'You make the supposition that before the NRA got to a politician that he/she was in a state of purity before. Q: How can you tell when a politican is telling a lie? A: When their lips move.' +p8888 +aS'So the "Origin of Species" has more information for theistic evolutionists than the Bible does?? Does theistic evolution believe in Satan?' +p8889 +aS'You have to be off for more than 4 days and after that I would get the princely sum of \xc2\xa379.15 per week..hardly worth having. Unlike teachers I cannot stay at home and get paid when it snows too.' +p8890 +aS"Really? I don't think you know what you are talking about. Please provide evidence to back your claim. Thanks." +p8891 +aS'Is that the entire Pro-Choice objection? Is that the whole Pro-Choice argument? Does it really boil down to a question of pregnancy versus death, rather than slavery versus death? If so, I am Pro-Life.' +p8892 +aS"Just another example of using a verse meant for personal use and applying it to wars. Sorry, just doesn't work that way." +p8893 +aS'Unfortunately, Michael Moore is a XXXXX. While a thousand gun control laws couldn\'t prevent 9-11, if there weren\'t ANY gun control laws, 9-11 would surely have been preventable. But, Michael Moore, being a XXXXX, would never be able to draw such a logical conclusion. It isn\'t "liberal" enough for his tastes.' +p8894 +aS'Since always?' +p8895 +aS"Just imagine Noah's checklist! There." +p8896 +aS'Well Nozz. I hear Canada or Mexico are looking for a few good(did I say good?) men. Kind of a dirty trick to pull on them though.' +p8897 +aS'Oh really, so blowing yourself and a bunch of other innocent people up in the name of Allah is a "great teaching"?' +p8898 +aS"Again your failure to understand what science is and how it works. Whatever your apostle tells you, science can't deny that something you may have seen is true. It can deny that it isn't science if it cannot be explained by naturalistic observation. Most especially, if the observation can't be repeated by another, then it isn't science. Science can make no assertion as to what you saw. You may think it is wonderful, but LSD had that effect. How strange that you think that your emotions are scientific. Actually, it's sad." +p8899 +aS'When is science going to get started on the book of Exodus? Job? Proverbs?' +p8900 +aS"What illogical tripe. The above is factually not true. It's also the garbage that the Word of Faith movement hangs on to get people to conform to their message. Seriously, I act like a 13 year old quite often...I only WISH I'd become one...simply becasue youth is wasted on the young. I also act like a God. Flexing my might and power on a whim. I'm still waiting for adoration and worship. There is no 'act' there either IS or IS NOT." +p8901 +aS'Well... someone hasn\'t been following the campaigns for the so-called "protection of marriage" amendments, federal or state.' +p8902 +aS"Yes, because although we trust our military with anti tank missiles, .50 machine guns, artillery, fighter planes, cruise missiles and even nuclear weapons, god knows you wouldn't want them parading around in public with a glock under their jacket unless they have renewed their permit in person. I would have thought that people would have learned their lesson from the federal assault weapon ban. It was expensive to enforce, a major sore spot for a fairly large percentage of the population, and had no real positive effect, mainly due to the fact that it addressed no identifiable problem. You expect such things from a liberal stronghold like california, a state with high crime that is always on the verge of bankruptcy, out of control labor costs, where they can't even keep the power on all the time becuase their environmental regulations are so rediculously stringent that the fiscal realities of building new powerplants are soo terrible that nobody would even consider it. I thought people were more intelligent in your new state, George." +p8903 +aS'I see you Americans deal as loosely with the French and Spanish languages, as you do with English! Surely it is something like Viva Libertad , or Vive la Liberte, but Viva La Liberty ????? Leo' +p8904 +aS"So lets ban cars... They kill people... And think all the money could go to public transportation. Also we should ban baseball bats as thats the obvious next step in weaponry... Don't forget archery... Can't have the subjects have any of that... Since we are taking away all these weapons to coddle the masses, Will the government be disarming too? I see a need for both kinds of weapons as a freeman." +p8905 +aS"What about speculative and theoretical sciences? Is a circle 'real'?" +p8906 +aS'Bertvan: Does this self-organization force \xe2\x80\x9cwhip up\xe2\x80\x9d complex features intelligently and purposefully? Or does it \xe2\x80\x9cwhip them up\xe2\x80\x9d by some unknown deterministic process in which creativity is somehow achieved by accident?' +p8907 +aS"Your god is also the god of deceit. Why else would he erase all evidence of such a flood? Why erase the bones from the animals that must have died as the emigrated from the arks resting place? Answer those two and I'll have lots more" +p8908 +aS"It also isn't a baby yet either. It is called a fetus." +p8909 +aS"You may not have intended to, but you've given your carte blanche support for a woman to do what ever with her she wishes, with regards to her family - and you'd stick out of it, regardless. Also, interestingly, there's no man in this 'idealy free' family of yours." +p8910 +aS'Forgive me for laughing; no, not really ha, ha, ha ha ha Could it be that people here as well as Canada and the rest of the world has figured out your infantile "grading system of States" is a complete sham and your very reason for existing is but an anti-constitutional farce and has lost any claims you have or will make? You stand alone now brady, with simply a few still clinging to the false hope of having others pay for your failures and unConstitutional stance so you can sit on your hands while you keep harping on overturning the 2A.' +p8911 +aS'You ask others for their opinion, and then refuse to listen when it\'s offered. The truth is that you don\'t see the analogy as valid. We do. We see a situation where, like blacks before, people disapprove of a group of people and want to segregate one group from the other. Sometimes, they refuse to offer any alternative. Sometimes, they offer a separate alternative. That argument cuts both ways. The question comes up regarding what\'s YOUR beef on the issue? Why are you so insistent on maintaining two separate groups? Is it because you want to reserve marriage as "prestigous" whereby gays are kept out? Under interracial marriage, no black person was prohibited from marrying either. Should people have been satisfied with interracial couples being classified as "civil unions"? Today, we recognize that racism is wrong. Yet some people still persist with homophobia. They fail to have a historical context on the real meaning of the methodology they recommend. Frankly, that\'s like saying "You can\'t be Jewish, but you can pick any sect of Christianity you want to. You can\'t wear a star of david, but you can wear a cross. So that\'s *equal*"... You\'re saying we can marry HETEROSEXUALLY, so HOMOSEXUALS must pretend that\'s equal??? Makes no sense... If I call somebody "male", that restricts no rights from them. It doesn\'t require they go to a separate place to get their rights. And quite frankly, insisting on keeping one definition FOR A RIGHT (at the exclusion of gays) is "satisfying the ego" of the homophobic group. "attack on the definition of marriage"? Why is it an "attack" to include gay couples in as married? Would it be an "attack" on something for blacks to not have to be segregated from whites?' +p8912 +aS"Did I claim you did start the thread? Vitroilic hatred, nope pity is the word you are needing there. No I merely pointed out your style of debate. Which I noticed you made no attempt to say it was wrong. Hence guilty as charged simone. Yep that would be the left's method for free speech. Speech you don't want to hear is banned. On the flip side any conservative speech needs a liberal counterpoint. Am I right simone baby?" +p8913 +aS'I think this is pretty much common sense. I think some study is in order, though. Everybody....put a sign in your window that says "This is a gun free home" and we will see if the incidents of robberies goes up among group memebers.' +p8914 +aS"So it's the scientific community that sets up communication within a society, and then the dumb old common peasants come along and screw it all up? Hahaha \xe2\x80\x93 sorry but I'm not convinced." +p8915 +aS"You are FINALLY catching on. This is why we go to war against folks like Saddam regarding WMDs, or declare sanctions against Syria and Irans, but we do not go to war with the french or the british over WMD's. WMD's are inanimate objects, and we all know that inanimate objects are incapable of waging wars. We also know that instable governments and tyrannical leaders are fully capable of waging war, and have done so in the past. It is good to see some of the GG's finally coming over to the side of comon sense!" +p8916 +aS"It surely doesn't sound like he's a Nazi to me, but then again, I don't suffer from paranoid delusions either." +p8917 +aS"And who would pick the 'some'? Perhaps you also believe they should be placed on Ritilin...for their own protection...because their teachers (without medical training) diagnose the infamous ADD demon in them. Not to get off topic too far, some teachers evidently have trouble recognizing the difference between students that can't seem to pay attention and themselves (the teachers) being in dire need of coming across as interesting. What makes you think teachers or parents could ever become adept at recognizing who needs to put on birth control? Shall we wait 'til one becomes pregnant? Shall we offer a survey of sexual activities?...to what age group?" +p8918 +aS'Oh yeah, like that hasn\'t been tried before /sarcasm It darn sure isn\'t about crime control. No doubt some nefarious excuse to farther control the people and attempt to charge user fees to discourage a right. No doubt sinjin will approve so "they" can match fingerprints and type of ammo to the DROS registration file? The early birds get the worm After June, the best spots may already be taken and kalifornia laws will be shot down and they will be left with just what they claimed to want...nothing economical, an end to registration, people carrying loaded guns and buying cases of ammo out of State (no tax) while crying wa wa wa wa wa! Don\'t forget Jerry Brown will probably have some changes of his own. Seems he is more pro rights and 2A than \'da terminator\'.' +p8919 +aS'Then their arguments are based on sheer ignorance.' +p8920 +aS'gooey cute as this reads, how is this relevant to the philosophy discourse?' +p8921 +aS"You were asked to give us your explanation of evolution. So far you've just regurgitated creationist arguments against it, without showing that you actually understand what you're arguing against. But instead of trying to answer the question that was asked of you, you just spat out some more quotes. The least you could have done was to use quotes that explained evolution as you percieve it, but they're not even on topic, going on about morality and atheism! You continue to confirm your ignorance for us." +p8922 +aS"Oh - so you don't want to force me through pregnancy at any cost to me? You will let me make what decision is best for me? You will actually realize that I am in the best position to know?" +p8923 +aS'Your stated stereotype of the person in the story is racist. It\'s a racist stereotype and you know it. You\'re so entrenched in your own world and nothing outside of it, you wouldn\'t know the "truth" if came into your face like a lemon meringue pie. Indeed the court\'s reasoning may have been as racist as your own. Indeed, the article describes how the court\'s reasoning was even a surprise to the police officers\' attorney because it was so out of line with what is expected of conduct during arrests. She was not violent and she had an obvious health condition. Whatever you think about what she was intending to do or not -- though she communicated quite clearly -- is rather irrelevant given the offense and those surrounding circumstances. I bet this is your opinion ANY time the story concerns a black defendent and a white police officer. Because you\'re a racist. But it is o.k. for them to repeatedly break the law like yourself speeding again and again, as long as they sign the ticket. What hogwash. Actually, there is, my poor addle-minded friend. Indeed, you can argue that she was even exercising her responsibility as a citizen with more civic-mindedness than many because she non-violently and patiently refused to sign the ticket. She has a right not to sign. As H.D. Thoreau said to Emerson in jail, when Emerson said to him, "Henry why are you here?" -- Henry answered, "Ralph, why are you not?" LOL. Well that\'s so nice of the copy who let you know. And that\'s very interesting -- "every time" -- Archangel. How many times have you been stopped? And for going how fast? I\'m sure it was a lot more than 35 mph! And you have the nerve to talk about "responsibility" or how this woman was a jerk? Or to call me names? Dearest, I never speed because I take my responsibilities as a citizen so seriously, and i have never received a speeding ticket. Were you driving under the influence as well? How many lives did you put at risk, Archangel? What pomposity! What hypocrisy!' +p8924 +aS"Yep. They're free to marry a member of the opposite sex just like any other American." +p8925 +aS"Really? I wasn't aware that the definition had changed. I do know that a definition was formulated as part of the modern synthesis back in the 1930s and 40s. That is the definition I learned some decades ago, it is the one I have always used, and it is the one that I still find in modern biology texts. It is also the one that all biologists that I know use, and of course the meaning definition of what evolutionary biologists mean when they talk about evolution should be determined by evolutionary biologists themselves. It seems kind of an empty exercise to invent a definition that isn't what evolutionary biologists mean and then argue against it in an effort to disprove evolution. Let me put it this way, do you think that it would be acceptable in a discussion of Christianity if I were allowed to invent my own definition of what a Christian means when he talks about salvation? So please, please tell us about some of these changing defintions. Like I said, I've been using the same one for over 40 years and wasn't aware that it had changed." +p8926 +aS'So god is unnatural?' +p8927 +aS'Is there a defined number of posts he could make in the other threads so that you would consider them "finished"?' +p8928 +aS'You forgot one. For trying to bring eugenics to the US. We wouldn\'t want those "poor negros" reproducing now would we?' +p8929 +aS'You just say this because you want to murder helpless wromb-trapped human beings. You cannot just say you personally believe something in a debate.' +p8930 +aS'Or, given that this is about feasts, a waist is a terrible thing to mind.' +p8931 +aS'How often to you poke your nose into monkey genitals in order to know that?' +p8932 +aS"I don't have to say anything here, your post made it sound sick enough. Yes, freedaom at all cost. Isn't that the theory this country was founded by?" +p8933 +aS'And here ladies and gentlemen we have the evidence of why I am justified in calling the likes of "stormboy" an XXXXX. The guy tries to discuss science when he is so utterly lacking in basic science that he thinks that the earth spins to "keep[s] the oceans from falling off towards the sun"... stormboy, there is a thing called gravity: it is what "keep[s] the oceans from falling off towards the sun". Now please go away and get an education, then when you have even the faintest idea of what you are talking about (which you currently do not), come back and attempt to debate. It will be for your own good as you are just making yourself look a prat by staying here.' +p8934 +aS"Oh, just come right out and say it, women are subhuman, all they are is wombs. Come on, let's show the true colors of the pro-fetus movement." +p8935 +aS'oh brother.. so what if a minority of americans wanted to legalize murder. this is rediculous.' +p8936 +aS"Oh! mememe! I have an idea! The museum staff hire (or possibly abduct) a few evolutionists and put them in stocks. The visiting kids then come to the gallery to give Mum and Dad a break for an hour and get to ask the scientists questions about the origin of the earth and why fossils are different from things alive today. Each time an evolutionist gives an answer based on science they get pelted with the leftover veg from the dino pit lunchtime display. This way the kids learn an important lesson in how to deal with scientists as well as being good for the environment by putting all that veg the dinos wouldn't eat to good use! Yay!" +p8937 +aS'The comment of someone with an IQ of about 48. Ray M.' +p8938 +aS"Excuse me, I stand corrected. For 'pretend' please substitute 'wrongly believe'." +p8939 +aS"Yes, and those apartments are frequently broken into, in the broad daylight, because criminals know that they won't be harmed." +p8940 +aS'Oh dear, you are one of those people: a "twit absolutist" as you might say. Please keep your silly "ism" labels to yourself. "Moral relativist" is like "rectangular square": it\'s a tautology.' +p8941 +aS"Quick question - What particular qualification of Dr. Olson's makes his opinion on the subject superior to all others? Given your fondness for posting this essay of his (in his entirety) as your ultimate justification, that should be an easy one for you. Waxy" +p8942 +aS"People make mistakes (excepting some pro-evolutionists who respond with anger and blame others of 'twisting their words'.)" +p8943 +aS'The point is that these laws against cheaply manufactured handguns are no more than economic restrictions on gun ownership. This is similar to old english laws which established actual economic requirements for owning weapons. Gun accidents happening due only to poor construction are rare. This is just another form of people control, keeping weapons out of the hands of the poor so as to lessen their importance in politics. "Screw them, they can\'t do anything about it."' +p8944 +aS'Just to be pedantic, a better analogy would be: "If you are here, why do you have brothers and sisters?"' +p8945 +aS'which is pretty much the same thing. The majority of representatives get their way. The representatives are elected by a majority. Being overally picky about it gets you no where...we pretty much have a majority rules nation. And we still haven\'t settled the question about how you think you can impose your belief on others but I can\'t. The "convention" idea didn\'t work, the idea that you aren\'t imposing a belief on others didn\'t work, so what is next?' +p8946 +aS'Let me try explaining this another way. According to the logic presented in the original article: Gun Owners : discrimination by gun control laws :: Serial Rapists : discrimination by anti-rape laws You see, it\'s the RELATIONSHIP that I\'m comparing. That\'s what an analogy is. I\'m NOT comparing the gun owners to the serial rapists, but rather the RELATIONSHIP between discrimination and gun owners as presented in the original article and the RELATIONSHIP between discimination and serial rapists. What do you mean "my ultimate agenda"? I want regulation of the gun trade as there is regulation of the trade of every product with specific control laws that apply to each product. Does this mean a complete ban? No. Let\'s compare this to a drivers license. Yes I realize that\'s not a product, but it is regulated similar to the way guns should be regulated. It varies from state to state, but there is typically a driver\'s ed class, driving with an instructor, and a driving test. A person must pass all of these things before recieving a license. A person must also meet other qualifications such as vision requirements. Then, in my state, when a person recieves his or her license, it is only a provisional license, meaning that he or she cannot drive between midnight and 5 a.m. This lasts for eighteen months unless there are any moving violations, in which case the period starts over. These are all reasonable restrictions. These ideas can be applied to gun control. There could be gun training and gun tests. Background information such as prior criminal activities should be checked. Guns should not be made available at unregulated events such as gun shows. These sort of regulations are also similar to those on prescription drugs. A person must have a prescription from a real doctor, and he or she can only purchase or pick up the medicine from certified locations. This is clearly not a fringe view since a large number of people support gun control. You may disagree with this view, but it clearly is not a fringe view. Nor is it a sign of mental instability. The constitutionality of gun control is clearly debatable. It\'s not exactly simple. You can\'t ignore "well regulate." Even GunCite, a pro gun website, says, " \'To put in good order\' is the correct interpretation of well regulated, signifying a well disciplined, trained, and functioning militia." Disciplining, training. That sounds like controlling. And if it was such a simple constitutional issue, why hasn\'t the Supreme Court made a difinitive ruling on it? If anything, it has ruled in favor of gun control, saying in the Miller case that "The Second Amendment must be interpreted and applied with a view to its purpose of rendering effective the Militia." Regardless, the constitutionality of a law does not make it wrong or right. Slavery was once allowed under the Constitution, but that did not make it wrong or right. I never labeled your view as anarchistic. I said that UNLESS you are an anarchist, you are not in support of COMPLETE, 100%, ABSOLUTE freedom. What objective means are you using to determine that gun ownerships is a basic civil right? First you assume that since I have liberal views on this subject, I agree with the actions of all other liberals, and second you assume that all other liberals commit the same actions. I have not once mentioned "saturday night special." My laws are meant to target all gun crime and gun accidents. Should we not have laws against gun crime (not laws against guns) because most gun violence is minority on minority. Sould we not have murder laws because a disproportionate number of murders are commited by minorities?' +p8947 +aS"Seriously? That's your reasoning? By such logic, swimming with sharks means that humans always have coexisted with sharks, including the ancient ones that preceded the dinosaurs. By such logic, since humans can coexist with insects, we must have been around during the carboniferous period." +p8948 +aS'So now you want to demonstrate that you are also ignorant of the fossil record?' +p8949 +aS"Actually when you read every thing you have to rationalize (lie) what God actually did, for God was done with everything then started again. THe stories don't parallel each other they intersect." +p8950 +aS"Wouldn't it be wonderful if, in this male-centered world, drugs were designed to be women-friendly, especially pregnant women-friendly?" +p8951 +aS'Yippie doo! A 23 year old quote from an ornithologist defending his point of view. And his point of view has (or had) merit. But since then, several feathered dinosaurs (not birds) have been found. It has also been shown that the difference between a scale and a feather may be no more than a single point mutation. (You do know what I\'m talking about, don\'t you Calli? You do know what a "point mutation" is, don\'t you?) Bottom line is that there may be no intermediate between scales and feathers. A single point mutation produces feathers from scales. Various kinds of feathers require only further mutation.' +p8952 +aS"So, we on this board aren't receptive to your proselytizing? Sorry about that. This particular forum is intended to be a scientific discussion, based on logic and evidence. We certainly don't want to waste your time. The door is over there. I find your dismissive, superior attitude to be offensive, to be honest., so I can't say I'll miss you. But should you ever want to discuss evolution and creation in terms of actual science you will be welcome to return." +p8953 +aS'Recall I mentioned your use of hyperbole earlier? its in that sentence as well' +p8954 +aS'At your service: Comparison I could\'ve just circled the whole thing, but this makes it clearer. Plus it\'s overall body shape is "fatter"' +p8955 +aS"What's your definition of pure?" +p8956 +aS'Yeah, a license to murder the unborn...........' +p8957 +aS"Why do 14 bus loads, 500 SCIU members, need 2 Police squad cars from DC to protect them from 1 Home owner? Fishy? I don't think so! I think the COPS were there to Intimidate the one home owner, just like SEIU was there to do! Cops! Of all things, they used Washington DC COPS! Cops! No? What am I missing? Makes one wonder if things got out of hand and the protesters started throwing rocks through the window, and if the terrified home owner would have stepped out with a fire arm, am I wrong to think that the DC police would have shot the home owner? Seriously What the heck gives? Cops! Part of the angry mob? If nothing else, 500 people trashed this guys lawn! That is for sure. Am I missing something here, or am I correct to think that we have totally degenerated into Chicago style intimidation politics? See the video for reasons why I believe this." +p8958 +aS"So if genesis can't explain some things then it is false? Ok, genesis, and all you theologians out there, a quick question off the top of my head. Using only scripture, please explain why dinosaurs are extinct." +p8959 +aS"Don't like it when the person you're arguing against can be as sarcastic as you are, huh? I understand, I get these types of whines all the time. thistownwilleat-" +p8960 +aS"I believe murder is wrong, and there shouldn't be any of it in a perfect world, but i'm not going to force my morality down your throat and force you to abide to MY principals while demanding you abandon your own. But it's not about me, it's about the person being killed. Think about it." +p8961 +aS"I think I hear a bell dinging!! Ding! Ding! Let the round begin. Your giving me the invite, and I'm willing to take it. Now I'm not going to make any comments on your ex, or whatever he is to you. Because I don't know him enough to assume anything about him. But I will make general statements on the effects of gay marriages on children. I have seen so many documents, on teens the are confused about their sexual orintation, because of living i the house with their gay parents. On girl wondered if she was gay because her mother was with another woman. She felt that was normal behavior. And started to concider being with girls herself. But was confused when she started to like men. She actually thought that liking men was abnormal. Until others told her it is normal to like men. A boy had almost the same experience, he did not know if he too should like men, because his father did. Often he would fight back desires for females, because he thought he needed to be with men. Not only that by he was ridculed by classmates because of his father being gay. Alot of children endure harassment because of living in a house made up of parents of the same sex. Just because it did not happen to your son, dose not mean that it dose not happen. And your experience is only a fraction of 1% of the experiences that children go through because of having gay parents. It is impossible to say that it dose not happen. If it dose not happen to a few, then thats fine. But the majority suffers, and that far outweighs the few that don't suffer because of having gay parents." +p8962 +aS'Perfect. A creationists caught repeating the same refuted arguments on different forums. Resistance is met, run like a coward to another forum.' +p8963 +aS'So long as they do not contain my DNA, yes.' +p8964 +aS'So I pray to chance every night before I go to bed?' +p8965 +aS"Reasonable gun regulation is an oxymoron like military intelligence. You mean like Bill Ayers (sic) and his wife or Carl Rowen? Wait my bad they aren't from the right." +p8966 +aS"You think it was Me? You are yet again, confused. I don't even know what a DROS is. Department of Registration Ohio State? That would be my best guess, seeing that I am from Ohio!" +p8967 +aS'90% of the people in the world are Christians? XXXXX-' +p8968 +aS"Marilyn - I'll look at your site if you look at mine... http://www.nra.org/" +p8969 +aS"If science deals with how information is gathered, different ways of analyzing, and different hypothesis, then it involves worldviews. The base for the worldview of a sizable part of the population should not be excluded. Maybe in Saddam Hussien's Iraq, maybe in communist Russia, but not in the United States." +p8970 +aS"Amen !! Punish the whore ! If she would have just had the kid she would discover what we all know ... That the child would have been loved and protected given a nurturing home by her because she isn't really smart enough to know what she wants. She MUST have the kid , when it arrives all will be well !! We just know it !" +p8971 +aS'oh please dont give me that XXXX... its so great that you can try to turn that whole statement and point at me being at fault but that in and of itself shows you are at fault because you think that without your way the world would cease. Honestly, the world has lived without gay marriage its whole existence.... so why implement it now?? SHouldnt that say something about the human race when it steeps so low to want to call homosexuals married couples?' +p8972 +aS'To Clive14: Darwin never produced a "Theory of Human Evolution". R--i--g--h--t. And I\'m a Shakespearean act--o--r. Darwin\'s book titled "On the Origin of Species by Means of Natural Selection or the Preservation of Favoured Races in the Struggle for Life" sure seems to me to suggest that he had an idea on the evolution of man. Darwinian evolution was (and still is) inherently a racist philosophy, teaching that different groups or "races" of people evolved at different times and rates, so some groups are more like their ape-like ancestors than others. Darwin believed, for instance, that the Australian Aboriginals were considered the missing links between an ape-like ancestor and the rest of mankind". Many indigenous peoples died because of Darwinian evolution, so don\'t give me such rubbish that Darwin never did a theory of human evolution. Darwin\'s evolutionary scheme went something like this: Evolutionary ancestor --> Australoid --> Negroid --> Mongoloid --> Caucasoid. Perhaps you best go home and check up on your own theory before you post such a remark. And people think that creationists are mis-informed! This is true of the unscientific use of the word "theory". In science, "theory" is equivalent to "fact". There is a theory of gravity for example. Is gravity just guesswork therefore? Once again, falsehood. If a theory is equivalent to fact, than why do they have two different things. In science, using you above example, gravity is a fact (I don\'t think that there is a theory of gravity, at least it is not in the HSC Physics course when we were studying it!). By definition, a theory is an explanation of observed facts and laws. It is supported by experiments upon which it is based, and is confirmed by experiments designed to test predictions based on the explanation. Now where in that definition is the word fact either used or implied? Now where, a theory is like a story to explain observed facts and phenomenon. A theory does not mean the idea is "fact". It is just a story used to explain how some observed phenomenon may have either came into existence, or why and how it behaves the way it does. You mis-interpretation of scientific terms is noted. I disagree. Faith is believing something to be true regardless of the evidence. People have faith in the Bible. People do not (or should not) have faith in evolution. I agree with your definition of faith. Bible believing creationists must take it by faith that there is a God, and that the Bible is the Inspired Word of God. Evolutionists (for the most part, i.e. most are atheistic), however, must take it by blind faith that there is no God and that the Bible is not the Inspired Word of God. Your last sentence struck me as to how brainwashed some (or many people) are in the lie of evolution (microorganism into people evolution). For one, evolutionists must take it by blind faith that stuff has evolved, i.e. there is very few fossils that support this notion. The fossil record dismisses and is a crushing critque of Darwinian evolution. For example, Dr Ronald R. West (paleoecology and geology) stated in his article "Paleoecology and uniformitarianism" which was published in Compass, vol.45, May 1968, p. 216: "Contrary to what most scientists write, the fossil record does not support the Darwinian theory of evolution [microorganism to man] because it is this theory (there are several) which we use to interpret the fossil record. By doing so we are guilty of circular reasoning if we then say the fossil record supports this theory." In addition to this, Dr David B. Kitts (School of Geology and Geophysics, Department of History of Science) in his article "Paleontology and evolutionary theory" in Evolution, vol. 28, September 1974, p. 467 says the following: "Despite the bright promise that paleonotlogy provides a means of "seeing" evolution, it has presented some nasty difficulties for evolutionists the most notorious of which is the presence of "gaps" in the fossil record. Evolution requires intermediate forms between species and paleontology does not provide them. The gaps must therefore be a contingent feature of the record." What they are saying is that the fossil record does not show evolution, but we will continue to believe it even though we have no proof of the theory of evolution (i.e. microorganism to man evolution). Evolution has been proven. Creation has been disproven. This whole argument is over stubbornness on the part of people with faith who cannot bring themselves to accept that evolution has been proven and creation has been disproven. Four words that always gets an evolutionist into trouble, "Evolution has been proven". If you refer to what you call "micro-evolution" (to which creationists call "Varriation within a "kind"") than I would agree with you. Species change all of the time, but it is important to know that the species never get more complex, they are constantly losing gentic information (i.e. DNA) and becoming less complex. With natural selection, things lose an ability that will enable a species to survive in an environment (usually by the way of mutations). So since varriation within a kind (or micro-evolution - always a loss of DNA) has been proved, this is also further evidence to the creationary model. The macro-evolution has not been proven. Nor does the fossil record bear out many evidences for this, as many leading evolutionary scientists have (or are comming) to realise. Creation has not been disproven, as you falsely claim. Otherwise, the evolutionists here on this forum would be able to hammer the creationist arguments, and thus far they have not. This fact alone is evidence against you. They only gain an advantage when we start having silly debates on things that I do not know much on, nor have studied up on, such as geological features for an example. We have the same rocks, so of course the evolutionists are going to claim that in many cases I am wrong - as they have a different interpretation to me. Or they have a different story to explain who a land structure got there to me. Both stories are based on the evidence, so it is hard to get through to one another. Sadly, time restricts me from continuing.' +p8973 +aS'This topic was discussed in another thread. Kelvin said that- "If it were not the private ownership of guns in 1941, you would be speaking Japanese if you live on the Westcoast, German if you live on the Eastcoast." Urban Legend. It should be illegal for women to have sex.' +p8974 +aS'um... gee... its killing a baby... now.. before 8 weeks, its not in the form of a human being.. at 4 weeks, its a fish.. at 5.. its a rodent.. but after 8.. its in the shape of a human... there is no way around that fact.' +p8975 +aS'All sin undermines society, including illicit gay sex sin. Or have you forgotten Sodom and Gomorrah? Coming to a San Francisco bath house near you.' +p8976 +aS"I didn't mention evolution in this topic. You did." +p8977 +aS"And the resemblance of the bill of a platypus to that of a duck is superficial. You don't actually try to learn the basic facts about anything before you speak out, do you?" +p8978 +aS"I'd be pretty dumb to buy something from someone who doesn't even believe in what they're selling. Those teachers may teach it, but they don't believe in it." +p8979 +aS'The ATF declared both .30 cal M2 AP and 5.56mm M855 Ball (w/steel penetrator) to be "non-AP" rounds. For those of you that have a problem with law abiding citizens having and using "AP" ammo....wake up! We ARE law abiding so what are you worried about.....or do you think I don\'t "need" it? If so..who are you to tell me what I "need"? I have a rifle match next month...I think I\'ll go load up some AP for it since AP tends to shoot better in my M1 than regular Ball. :D' +p8980 +aS'So taking peoples rights away is an american value? I think I will push for legislation to make cancer surgery illegal. After all cancer cells are human life too and with modern medical tech they could become a human being also.' +p8981 +aS'Actually yes, but not for the purposes of ilegal search or seisure, I have active duty military friends. They drop by all the time. Obviously your great lack of friends makes that idea hard to understand.' +p8982 +aS"So you support allowing a 10 y/o to buy an Uzi and carry it into a federal court house or school as long as he does not commit a crime? Wow. And your logic about taking criminals off the street and then having no gun control concerns would be perfect...if we had a finite number of criminals. We don't. New murderers and theives and carjackers and dope dealers and bank robbers and child rapists are born every day." +p8983 +aS'Why you quoted me is questionable. What I posted was merely a series of mathematical equations proving that Hovind is completely full of ****. How you consider mathematical equations "mockery" I don\'t know, but more likely, you did not bother to watch the video. Instead, in your normal fashion, you simply ASSUMED what you wanted to believe and then went from there rather then actually looking at what it was and what it had to say. Your post more accurately is towards the link that AA posted in defense of his beliefs (yet failed to realize was satirizing those beliefs). Furthermore, I\'m not an atheist even though your poor definition wants me to be.' +p8984 +aS'Read THIS slower:' +p8985 +aS'That money will never be paid. "Doctor" Hovind (his doctorate is from an unaccredited diploma mill) has phrased his offer in such a way that it is impossible to get it. Numbers 1-4 have absolutely nothing to do with evolution, but gullable people fall for it. Number 1 is actually impossible to prove. Hovind probably doesn\'t even have $250,000. In 1996 he declared bankruptcy, and there\'s no reason to believe that his financial situation has suddenly improved. He claims that "a wealthy friend", whom he refuses to name, has the money. The committee that is supposed to evaluate claims is similarly anonymous, but he has hinted that it\'s filled exclusively with creationists, who are certainly not unbiased. Read about Kent Hovind. He really is a worthless piece of scum.' +p8986 +aS'That "somebody" was a Jesuit priest, the idea met some initial resistance because of it\'s religious overtones. But the overwhelming evidence in favor of it carried the day. You should study some history too.' +p8987 +aS"Try the link. You've done the 'name calling', at least you could be honest about what you are doing." +p8988 +aS"That's great for women! What about the rights of their children?" +p8989 +aS"Well, it does take some scientific knowledge to understand the evidence for evolution. One doesn't expect Creationists to possess it." +p8990 +aS'Is it correct to assume that in the presence of the precursors of the standard genetic code (e.g. intermediates of glucose degradation and the citric acid cycle), the intimate relationship between these molecules resulted in the inevitable organization of the genetic code (global optimum of the system)? Articles 5-7 These articles discuss fascinating mathematical representation of the genetic code. For example, in article 6 a representation of the genetic code as a six\xe2\x80\x93dimensional Boolean hypercube is proposed. Abstract:' +p8991 +aS"President Obama has correctly characterized the Bill of Rights is a list of negative Rights against government. The point is, that the only rights that the government, and or any anti-gunner, or department has, is the infringements we grant them through laws etc. Taking the info in this article at face value. What was a legal practice to do just yesterday landed this guy in a jackpot for not knowing what or how the Govt. is going to interpret the law to mean today. This is a common problem with, and not to directly pick on the ATF, but gun dealers complain about this all the time. EVEN an FBI agent himself cannot predict, nor curry a favorable interpretation. What kind of country and legal system do we want? Surely you can see that this kind of stuff is not in ANY WAY Shape of Form, fair to do to a Right that our Constitution says is Inalienable. Or to a person who was an impeccable reputation. Would you like to be treated in this manner? The article says, what he did is not illegal, but in the hands of someone with an axe to grind, maybe they didn't like him, or maybe the prosecutor is Anti-gun etc, lands this guy in a jackpot! Now can you see the problem with this? I know lets apply all of this to computers! We will just make up any law as we go. How'd that be?" +p8992 +aS'When talking to a person professing Christianity, the Bible is binding. If the Bible advises that abortion is murder, then it is so regardless of what the secular systems of the day have to say about it. When talking with one accepting the principles of Christianity, the premiere of those being that the Bible is binding, the existence of the soul is not up for debate. The position of Bassman, I believe, would be that there is no legitimate right to terminate a pregnancy, especially from the stand-point of the Bible, which of course, is binding to those professing Christianity.' +p8993 +aS'Good idea!' +p8994 +aS'No, they do not. I know several people in England who posess weapons the bought on the street. How are the gun laws in england working when you can buy a machine gun? Before the ban, england had lower numbers when it came to firearms related deaths. They also had lower crime numbers. The sociological differences between England and the United States are not be be discounted. It is interesting to note that crime rates in England seem to be rising now that the gun ban has been around for a while. There is even a movement by public officials to arm police officers in response to the rising rate of violent crime. There isa n article and debate about it right here on the forums. The biggest difference lately in the statistics in England in the US is not the numbers, it is how they are recorded. If a guy is confronted by three people outside a bar and shot to death, but the gus get off during trial, it is still recorded in America s a three person homocide. In england, it is NOT recorded. I get the London Times, and they have done several articles accusing th British government of manipulating crime figures. I think that if we in America only recorded solved crimes in our crime statistics, we might become one of the most cime free contries in the world!' +p8995 +aS"Well, the claim isn't that they were identical, just that they preceded Jesus and were very similar." +p8996 +aS'So what we have here is a lie, based on a distortion, which is itself a fallback position from a fallback position from a fallback position from an evidence-free made-up graph about the magnetic age of the earth. And creationists say the truth is constant...' +p8997 +aS'No Ted Kennedy is not a fundie but Vitter is. For God sake the pope is a nazi and a fundie. Marlene Elwell, the nazi *itch, who put the evil mariage amendment on the michigan ballot is a Roman Catholic also. If you are a christian and you believe in the suppression of homosexuality then you are a fundie and a christianist.' +p8998 +aS'The question is illogical. By declaring the existence of an all powerful God then saying God cannot do something is not a comment on his powerfulness but rather the direct representation of his nature. Your question by its very statement does not test wether or not God is all powerful but wether or not God is comprehensible. See another thread for that topic. The statement that God is all powerful defines his nature. To state then that he cannot do something outside of his nature as proof of the non existence of his nature is circular in logic.' +p8999 +aS"And an even funnier thing is it won't affect his wallet at all." +p9000 +aS"And, what percentage is that? How was the poll conducted? Who conducted it? How was the determination made about who was a 'scientist'?" +p9001 +aS"No. You're missing the point. Al wants you to think all we have to do is stop emitting CO2. He wants you to fear something that he knows how to fix...so you'll give him prizes for being a genius and solving the problem. Al Gore is a shyster...just like Michael Moore. Documentary, my XXX! Tell me, what has caused the global warming on Mars?...Jupiter? I understand the temperatures there have been rising more in the past few years than before. Think it could be resulting from their industrial age? ...and he's pretty much a hypocrit about what we should do. Check the stats on his personal home. Check the emissions rating of his antique private jet. He claims to be doing his part by leading a carbon neutral life...which means he merely paid for permission to continue polluting the earth with his inefficient means of private transportation and his energy sucking home. He claims that sea levels will rise 20 feet or so shortly, yet he bought a million dollar condo near sea level in California. We should all decrease what we spew into the air (and what we send to landfills). This fact does not diminish the lies told by Al Gore...the ones that got him an Oscar and a Nobel Peace Prize, both of which become more meaningless each year. Gore, a shyster http://newsbusters.org/blogs/noel-sh...d-return-oscar http://www.globalwarminghoax.com/news.php?extend.29 1." +p9002 +aS'My recollection is similar to yours. I encountered it in an AP biology class in high school, we spent about 1/2 the extra-long class in labs (I think that was the primary difference). The giraffe example was an "aha" moment for me personally, I suspected life changed, but the specifics I had never thought about. I recall a disclaimer at the start of the section, but I don\'t recall the exact wording. -Mach' +p9003 +aS'You are getting to a more complicated area where "mental existence" no longer matters. I\'ve explained earlier that it isn\'t exactly the same as "self defense" so I don\'t think a similiar response is needed. Furthermore, you are saying mental existence is not solely the thing that gives you value but rather it depends on outside influences and chance. At some point it just seems like the stance on abortion is that the woman is more important no matter what. This is why I claim some will rank humans above other humans...a dangerous precedent which we have tried before.' +p9004 +aS"But only if they're willing to receive one. Most aren't." +p9005 +aS'i\'m impressed! this is a very precise description, in regular english and yes, the deduction in 9 seems presumptious if all we state is God has a "possibility of existence". how this was cleverly cleared up (from the same source site) was simply a trip back to the definition: "greatest possible being". the "greatest possible being", by definition, MUST have a possible existence. in otherwords, we cannot assume that there is a possibility that the greatest possible being does not exist. yeah, it sounds like the whole "proof" is pointless because your premise is already the proof just keep in mind that for the purposes of this proof, God is defined as "the greatest being possible". as long as that definition is maintained, the proof works... does that mean that God exists? hmmm....' +p9006 +aS'you know why? because God touches our hearts like nothing you have ever felt before. it is amazing' +p9007 +aS"This makes more sense then anything else I've heard on this thread." +p9008 +aS"I'm not arguing that gun control will change the nature of men- though guns may make them more willing and confident to engage in crime. With guns criminals can do even more damage. Adding guns to crime is like adding gasoline to a fire- it makes an already existing problem worse. If you think that just as many people die from stabbing and beatings in other developed nations as people die from guns in the US then you need to do more research." +p9009 +aS"Yes, they do show a faithful devotion to the ultimate reality that there are no gods. You're an atheist, aren't you?" +p9010 +aS'This also applies to tapeworms. I fail to see how it is therefore relevent to any debate on abortion.' +p9011 +aS'So, your saying an eyewitness would mean nothing. Yeah right.' +p9012 +aS"Well, not completely, but yes, quite the same. However, this is irrelivent- she wasn't a person, because she was in a coma. Does that give me the right to kill her? Of course not! What about fetuses born in comas? Can we kill them? What about people in vegetative states? After all, they arn't perfect, so let's kill them!" +p9013 +aS"Oh. You just lost me. The fact is, Jesus warned his followers that they would be persecuted for his sake. Read Matthew 10:5-42, if you care for the full text. Basically he told them they would be beaten, thrown in prison, crucified, and put to death if they followed him. And that is exactly what happened to the disciples and all those who gave a witness for Christ as Lord and Savior. The various Roman emperors in those years of the early church sought to kill every Christian they could find, men, women, and children. Christians were crucified by the thousands, covered in pitch, and sit afire to provide light for the emporer's lavish garden parties. They were killed in the arena by wild animals and tortured to death in numerous ways. They were called martyrs, which now means one who dies for a cause. The word is Greek and means \xe2\x80\x9cwitness\xe2\x80\x9d. These witnesses for Christ were killed for their faith. How many Christians would we have today if they had to die for their faith? In spite of everything that the emperor did, they could not kill the Christians fast enough. More were believing in Christ every day, and eventually even the Roman emperor himself became a Christian and Christianity was embraced and sanctioned." +p9014 +aS'So he failed to follow procedure? So was one of the procedures to assist the child in holding the gun while the gun was being fired and to not stand at a distance? If that\'s the case then the instructor at the firing range was also partially at fault because it was also his responsibility to supervise the child. And I just found this: "SPRINGFIELD, Mass. - Authorities in Massachusetts are considering whether criminal charges should be filed in the death of an eight-year-old boy who accidentally shot himself with an Uzi submachine-gun at a gun show. "Hampden County District Attorney William Bennett says he hasn\'t been able to find any law that would authorize a child to possess or fire a machine-gun." Criminal charges possible in boy\'s Uzi death, Massachusetts authorities say - Yahoo! Canada News So not only is allowing children to fire machines guns irresponsible it may also be illegal.' +p9015 +aS"Yes the facts speak for themselves, they just don't sing the song you think they do. No biologist will find any need at all to wave any hands in this instance, for as you say the facts DO speak for themselves." +p9016 +aS'Excellent point Doc' +p9017 +aS'The definition of manslaughter is when one\'s actions, which end up killing someone, display a reckless disregard for the dangers of the situation. That\'s not a proper legal definition, but it\'ll do. Now, you want to argue that pro-lifers would be forced into the counterintuitive conclusion that ALL miscarriage is manslaughter, and thus their position is ridiculous. I\'m saying that they would only be forced to admit that a very small portion of miscarriage is manslaughter, and a portion that they would probably be willing to make a case for. I\'m not saying "miscarriage is not manslaughter," but only "miscarriage is not always manslaughter." For example, if a woman took perfectly good care of herself and did nothing dangerous, but had a miscarriage anyway, she would obviously not have committed manslaughter. If a woman had one drink with dinner, but she was carrying a very unhealthy fetus and it died, then she would not have committed manslaughter, because that was not reckless. I pointed out the "you-shouldn\'t-be-drinking-and-having-unprotected-sex" argument as a position somebody might hold, but I think that it would probably be judged as unrepresentative of the definition of manslaughter. So obviously, miscarriage cannot be manslaughter in the sense of "every instance of A is an instance of B."' +p9018 +aS'Technically, all syllogisms need two premises, first of all. "Step two" and "step three" were a dilemma, not separate steps. Learn to read. Dilemma: You only read Scenario 1, which was: step two -God can create a rock he cannot lift - Step three - God cannot lift the rock conclusion - God is not all powerful Scenario Two was - God cannot create such a rock - Therefore, there is something God cannot do - Therefore, God is not all-powerful The only case in which God could truly be all-powerful is if he can somehow both create an unbreakable rock and then break it, which defies the Law of Non Contradiction and is thus absurd. Thus, the notion of all-powerfulness, which leads to such a notion, is also absurd.' +p9019 +aS'So what\'s the deal when GWB "gives" $3,000 but the insurance premiums cost $6,000, the family can\'t make up the difference and the $3,000 goes unspent. All we\'ve accomplished is to transfer $ out of the U.S. Treasury. You think it\'s a good idea to just give money away and not get anything for it? You\'re thinking of the Clinton years when there was a surplus.' +p9020 +aS'Yes, every living thing is made up of cells.' +p9021 +aS'We agree! Excellent!' +p9022 +aS'If your friend is hearing voices in her head to walk into traffic, she needs some psychiatric help.' +p9023 +aS'You pointed out someone that had 6 fingers. I said that making a copy is not creating anything new, I never mentioned anything about reproduction.' +p9024 +aS"Can't argue with this illogic." +p9025 +aS"Well, I would agree that as many constitutional ammendments probably would not have passed, but I certainly don't think they all would not have been passed, and I don't think that Massachusettes allowing same-sex marriage was a bad thing. Constitutional ammendments are difficult to overcome, but no one can ever change a law if people aren't willing to take a stand and fight for it. Can you tell that I love the quote in Jyoshu's signature?" +p9026 +aS"Actually it wouldn't. Since there is no rational, believable evidence for creationism, it wouldn't be any more believable if evolution were disproved. As an example, I dare you to start a thread in an appropriate forum and give us tested evidence for a global flood as depicted in Genesis. Good luck." +p9027 +aS'Well, how else were they supposed to reproduce?' +p9028 +aS'Well if you just shoot someone and they die then they dont get their day in court so they dont get due process. The fifth says you cant lose your life without due process.' +p9029 +aS'Purposefully communicating information as a means to an end... wound healing.' +p9030 +aS"The subject matter would be life forms. The units would depend on which particular aspect you were studying For instance to the question 'what units of measurement would you use for the effect of evolution? I would say genetic changes that have patterns. ID would have that and more." +p9031 +aS'Said the troll that lives in the UK' +p9032 +aS"Are you saying that given enough time you can come with answers? That's a statement of faith." +p9033 +aS"I may be a pro-gunner but what doe's that have to do with with gay rights? Since I'm a pro- gunner I won't force my life style or views on you,if you don't force yours on me.Deal? After all you seem to be the expert on gay rights." +p9034 +aS"Why do people on the pro-gun side continuously try to oversimplify the issue? No one is really arguing that there would be zero murder without guns. The question is would there be less murders without guns. In developed nations with stricter gun laws there are less murders. At any rate, I don't think you can draw such conclusions based on one incident." +p9035 +aS"A person going to Hell is a consequence of sin. God doesn't want it, but he can't stop it." +p9036 +aS"I don't believe Hell is a place either (or even if I believe in hell to begin with), but tell me more about what you mean by this. It sounds interesting." +p9037 +aS'actually they probably drifted much faster than that.....probably upon a pole reversal.' +p9038 +aS'and section 6' +p9039 +aS'After what the Fins been through, fighting the mother country, the Soviet Union under Lenin and then Russia and Germany and finally Germany, I doubt they are going to let their own government take away their guns?? Most folks have learned to leave those Finns alone.' +p9040 +aS"The Brady Campaign whines more than they act. Making handguns legal in Chicago wouldn't make them happy. Sending the national guard in wouldn't make them happy. They don't have a solution for the problem, but they're right there to whine about it. They're just like the Federal Government; they find something simple and complicate it." +p9041 +aS'Define "many". What you really mean one is too much. Even when the one is used soles for personal defense. Besides your in Austraila, no one cares what you think.' +p9042 +aS"In point of fact, the low birth rate in most of Europe is not due to the availablity of abortion, but to good sex education and the ready availablity of effective contraception to everyone who needs it. See this study, for instance: http://www.advocatesforyouth.org/PUB...heet/fsest.htm People have small families because they want small families. In point of fact, the abortion rate in Europe is generally much lower than the rate in the US, due, again, to education and contraception. Would you force folks to have children they don't want?" +p9043 +aS'Unions fought to keep children out of work for the same reason they fought to keep blacks and women out of work - they want a monopoly on employment.' +p9044 +aS"I don't have the time nor the funding to put this in video form like Harris and Dawkins. I don't think many, if any, Christians really do - satire about atheism isn't a strong Christian practice, not nearly as strong as atheist satire about Christianity, it seems. Maybe that's what made Poe's Law so notable in the beginning of this thread." +p9045 +aS"Well, actually society has said that 18 is the dividing line. It can then also say, that under certain circumstances, for a particularly bad person, in some cases it will be considered if the person is 16 or 17. That's why we have all the judges and lawyers, etc..." +p9046 +aS'It is horribly oppressive of women, though, to oppose both abortion and contraceptives. That means that women will have no control over their pregnancies at all.' +p9047 +aS'It depends on the particular situation. Some adoption agencies ask about it, and some don\'t. Most social workers who do home studies are aware that they have gay clients doing adoptions. Some adoptive gay parents are out about it, and some keep it quiet. There are currently some foreign countries that require adoptive single parents to sign an affadavit that says, "I am not homosexual." Those are the rules of some foreign countries, notably China, not the United States or any state. China has recently placed greater restrictions on prospective adoptive parents. They have sharply limited the opportunities for single people to adopt, and it looks like they may prohibit single-parent adoptions entirely. They have also instituted a weight requirement for all adoptive parents. In the case of a couple, their combined weight has to be below a certain figure or they are not allowed to adopt. No fat people allowed to adopt, which cuts out possibly most Americans.' +p9048 +aS"yes, but adam wasnt created with hereditary information or from sperm and egg cells. adam was the prototype. any subsequent humans should be born following the fashion in which adam was made. otherwise adam could have been shaped like a goat and still bear human children, because god could have formed him into whatever shape or lack of shape he wanted, yet put the genetic information in him to produce human offspring. why should adam's children look like adam? wouldnt adam's children be born the way adam was created, or not?" +p9049 +aS"And your analysis is flat out lacking. What everyone else seems to realize is that the reason Obama won is because of FAR higher turnout, many by African American voters. (Who more tend to be ... taa daa! ... Democrats!) There is definitely a considerable discrepancy in Obama supporters and gay marriage supporters. Of that, there can be no doubt. And your anaysis of the FL situation is completely removed from reality. FL requires a vote of over 60% for an amendment to pass. It wouldn't pass at 59%, let alone 50. So not only do you demonstrate a lack of even knowing what was needed there, it doesn't even fit as an apt comparison." +p9050 +aS'I think you present a good point, but part of the test here is to see how my post is reponded to; silence from certain people tells us things in inself. So far it seems my initial estimation of the issue is about right- the idelogy being upheld helps some people ignore the effect the punitive policy imposes.' +p9051 +aS"A slimey claim you cannot support as usual. In developed Nations, the U.S. is far down the list as has been posted on this very board at least 5 times. Those 'other' Nations also have far more crime and violent crime than the U.S." +p9052 +aS'And here our Government says: Rights and Responsibilities' +p9053 +aS'So sorry; I have a friend who works and lives in the D.C. area, but he has residency in Mass., because he owns a home there. And he was able to be married only because he owns a home there ?' +p9054 +aS'thatisnt stupid, its what teh bible says. teh dinosaurs are heavier thatn humans so they sunk and humans foated. the arc protecid the rest ans they died later when humans kiled them tehy still see dinos today in congo so some survivd.' +p9055 +aS'Well, I suppose that the reply it took me almost 5 minutes to type, a couple more to check and a couple to correct will not suffice now.' +p9056 +aS"Why is that propoganda? It's exactly what you do." +p9057 +aS"Well, given that your term is a fabrication of the creationist's mind, I suppose you're right. Evolutionists don't actually exist. Therefore you could assign whatever traits you wanted to them, including dishonesty. Evolutionist is a term designed to cast evolution as a faith based notion. The problem is there is no faith in evolution, faith is a belief in something with no proof. Evolution has proof. Therefore it cannot be a faith based idea. A typical creationist attack is to misrepresent their target by creating a strawman of it. They then declare it is wrong and by proxy, the actual theory wrong. It's fundementally weak, but inline with a belief that is scientifically unsound." +p9058 +aS"Actually, not at all true. The organisms of the Cambrian look little like modern animals. It is only the major phyla that are recognized by the derived characteristics. For example, the cordates first arise in the early Cambrian, along with primitive inverebrates. You can safely say that no animal living today looks much like any living then. For example, there were no amphibians, no reptiles, no insects, no birds, and of course, no mammals. Your shotgun approach isn't actually worth answering in any detail. It isn't even your work." +p9059 +aS'And how is your think group any different, you all think alike just as gun owners all think alike. So stop calling the kettle black.' +p9060 +aS"You mean to tell me it's a falsehood?? I don't believe it." +p9061 +aS'Let\'s not confuse our readers. supersport is not saying it\'s evolution; he\'s saying that "evolutionists" say that it\'s evolution. It should be clear now to the readers that scientists recognized perfectly well that this is an example of plasticity.' +p9062 +aS"No I don't think that tying your tubes is abortion. I only think abortion comes into play when there is actually cells forming to make a baby, and you get them scraped out, or abort a baby before or after the third trimester. Plus I heard that if you tie the tubes, when you decide you want a baby you can untie the tubes, to conceive a baby. But burning is another thing. But unless there is actual cells forming it is not abortion" +p9063 +aS'Same thing happened in Rwanda. First they put the names of all Tutsis on lists. Then, the Hutu came around with machettes and took them off of the lists....permanently.' +p9064 +aS"Then there's that state thaht wants to remove the use of BC and AD from the calendar. I guess they'll change it to some neutral like plus and minus numbers just to stay with the rest of the world....or maybe 2005 will change to 133,956,373,278." +p9065 +aS"There's absolutely no way in hell this could be legal in any sense. That California school got ***** slapped for expelling a student who had a gun off campus, beyond the jurisdictional reach of the school. So how can this school believe they can get away with such an insane policy?" +p9066 +aS"Thank God. I too hope it doesn't keep going back and forth. While I live across the river in Parkville, Missouri, I used to live in Overland Park Kansas and went to school there. I think they are generally pretty good public schools, it's just the state school board that keeps effing everything up when they get some christonazis on board." +p9067 +aS'One day you\'re going to realize that you\'re evangelizing" and "witnessing" have pushed far more people away from religion then has brought them in." "You\'re not telling people about God, you\'re guilting them and putting them down. You\'re drawing an imaginary line that separates "us" from "them", and you\'re cutting yourself off from other people. When Jesus "evangelized" (I believe with all my heart he would hate that word), he made honest friends, not with the purpose to "convert" them. He didn\'t hand them a track and scare them into being a Christian. No wonder people hate Christians, for God\'s sake I\'m starting to hate Christians." Maybe you should follow your own advice... jim: Yes, God loves Saddam but He hates the way he is acting.' +p9068 +aS"You're working at the wrong end of the problem. We need young to survive. It's the old that are expendable." +p9069 +aS'The quality of life ethic is far different from sactity/dignity of life ethic. A quality of life ethic carried out to its logical conclusions does not promote a pro-life society. Instead, there would be genocide against the handicapped, elderly, and people who people of power have deemed life unworthy of life. The problem with this ethic is that it is centered in arbritrary people deciding arbritarily which person passes the "quality of life" test.' +p9070 +aS'A soul has a consciences, it can be emotionally moved from different states of being. This is how the Bible can say ones soul is moved; saddened; joyous. Etc. I think therefore I am. Meaning a soul is emotional and so it really has no body. The soul is what we ask the Lord to preserve. 1Peter 1[9] Receiving the end of your faith, even the salvation of your souls. Hamburger does not have a soul, it is dead meat. People eat brains and all the pieces of an animal. No soul. The soul is consciences. Under some conditions it can return, not after death or before a brain though. We know that to be impossible. Fetuses do not get emotional; there is no mind to speak of. No soul there to trouble. If you?re on a machine and a doctor determines your brain is dead, the soul is not there. The body could see hell or heaven and there is no emotional effect. No soul for that. Read the Bible. Don?t listen to fools; you?re a person with a soul. Use it.' +p9071 +aS'So even though you can legally conceal carry right up to the gate of the national parks, and you can legally hunt within the parks, somehow concealed carry in the parks will become more dangerous?' +p9072 +aS"That's because its sophistry. Its an inherent contradiction and it simply means we don't have the capacity to understand it. Another more common example is that the assertion that the universe cannot be endless, and yet as far as we know it is. Trying to understand it is for us humans like an ant trying to fathom the theory of relativity. Damn are we ever conceited as a race...we seem to think that if we can't understand something, it cannot be. We also tend to think, in every generation, that we have achieved somehow the pinnacle of progress." +p9073 +aS'So why should merchant ships be required to go unarmed and defenseless in dangerous areas?' +p9074 +aS"It is worse then that they just don't get it. Once you put some civil rights on the ballot nothing is off limits. Freedom of speech, religion, assembly ect.. they are all up to be voted out of existence for an unpopular minority by the majority. They just don't get it." +p9075 +aS'And she was having unprotected sex? So she knew becoming pregnant was a possibility? Yeah, I could see that being condemned by pro-lifers.' +p9076 +aS'OK try the US Constitution. We are a representative democratic republic not a majority rule nation. Majorities hold certain powers but they are limited. Minorities continue to have rights which may not be infringed by the majority. Amibiguity and sharing of interests in various types of personal and social decisions is a necessary component of this system. We are built on compromise and that has served us well.' +p9077 +aS"So, we are debating creation, yet you don't consider quoting the bible, the single most important original proponent of the creation account and to you, it doesn't qualify as a source for what is being discussed here? You say this and expect to be taken seriously?" +p9078 +aS'State-level governments are largely worthless, in my opinion. It is complete absurdity to allow Constitutions to be ammended based on the vote of the people. People as a whole are largely biased, uninformed, and care only about the wellbeing of the majority, persecuting the minority any chance they get. Simply put, the will of the people is too often to benefit the majority and persecute the minority, and this can be seen everywhere throughout history. The will of the people often deserves to be not only ignored but put in a little can and crushed, for the voice of the people is not the voice of the people at all; it is the voice of the majority. I cannot know the intentions of the creators of the California goverment when they created their judicial system, but if it was anything like the intentions of the founders of our nation, then the judges are doing precisely what it was intended to do: judge laws which persecute the minority, assuring that the government cannot engage in such persecution without a whole lot of effort and not having to fear retaliation. If the point of judges was simply to give in to whatever pesecution 51% of the population wishes to force upon the other 49%, then our government would be tyrannical in no time. You may feel that a bad precedent was set, but I consider it a far worse precedent for a judge to have given into the majority, to ignore what he feels is a destruction of freedom and equality, simply because it is popular to do so. I would also recommend that the California Constitution be judged based on the fact that it likely has conflicting statements, for example, it may state that everyone must recieve equal protection under the law, of which this is a clear denial. The California judge would probably not have the authority to refer to the Federal Constitution; it would have to be taken to the Federal Courts for that.' +p9079 +aS'Three questions: What country operates under an "unbridled capitalism" system? Can you name any nation that has operated under your idea of socialism successfully? If the American system of government is so terrible, why do we have one of the highest standards of living on earth? Just because you think you are entitled to what I earn doesn\'t make it so. Earn your own.' +p9080 +aS"The fear of God? What God? Only yours or any God? How about the fear of something greater than yourself? Would that be progress? I'm not trying to inform you or anyone else of anything at this time. I posted thread originally to get reactions to it so that I could better judge whether those views were valid or not. As a side affect people may be influenced by the debates that happen here, but I am doing this for myself more than I am for anyone else. So don't think I'm trying to push anyone to believe anything, although I do wish for people to question their own views as a way to best understand what they believe in and why they believe it. Based on the way you posted here, it is my guess you are unwilling to do that in the case presented here." +p9081 +aS'Actually they do. Whether or not you think they should is another matter entirely. Did you not notice where the article came from? From a paper in India. I also found articles on the same subject from papers all over the country as well as in other countries such as Romania. Save your snobbery for someone else.' +p9082 +aS'Humans cannot cleanse themselves of their sins.' +p9083 +aS'This was pretty much my understanding of how natural selection was viewed before Darwin. Nonetheless, I think that my point still stands. Darwin proposed that natural selection is responsible for the diversification of species. This pre-Darwin concept denies this. My understanding is that anti-evolutionists refused to accept that natural selection could have led to the diversification of species. Until recently, when they realized that evolutionary theory could help out in their how-many-animals-could-fit-on-the-ark dilemma; now they suddenly take an idea from evolutionary science and propose that suddenly all the present species could "micro-evolve" from a few ancestral "kinds" on the ark.' +p9084 +aS"I say that you need to take into consideration the number of criminals that'll disregard the lock and try and break down the door anyway. That's why smart people don't rely exclusively on locks and security systems for their own protection." +p9085 +aS'But you are smart enough to realize that the ban on gay marriage has nothing to do with it.' +p9086 +aS"WOW simone, are you kidding me? You will use this story as an example of how dangerous giving birth is on this American forum by referring to a story from Sub Saharan Africa? And you consider this a rational argument? Here's another quote from your link: Fistulas are a scourge of the poor, affecting two million women and girls, mostly in sub-Saharan Africa and Asia So tell us, PLEASE!!! How is this an argument which justifies abortions in America where Fistulas is virtually unknown as a result of child birth? Tell me how this quoted section below applies to any aspect of medical care in the USA. The women filled most of Ward 2, a long, one-story building with a cement floor and two rows of closely spaced beds against opposite walls. All had suffered from obstructed labor, meaning that their babies were too big or in the wrong position to pass through the birth canal. If prolonged, obstructed labor often kills the baby, which may then soften enough to fit through the pelvis, so that the mother delivers a corpse. Obstructed labor can kill the mother, too, or crush her bladder, uterus and vagina between her pelvic bones and the baby’s skull. The injured tissue dies, leaving a fistula: a hole that lets urine stream out constantly through the vagina. In some cases, the rectum is damaged and stool leaks out. Some women also have nerve damage in the legs. One of the most striking things about the women in Ward 2 was how small they were. Many stood barely five feet tall, with slight frames and narrow hips, which may have contributed to their problems. Girls not fully grown, or women stunted by malnutrition, often have small pelvises that make them prone to obstructed labor." +p9087 +aS"No Archie I wouldn't dare do anything sexual outside of the missionary position without a ring on my finger... As far as superior or better umm no Archie. As a governor of a state he has to be for all peoples not just the ones that fund his campaign.. Unless of course the constitution is flawed and there's a tiny little clause excluding him from upholding all aspects of the document. And once again YOUR god commanded Archie not America's god or every person on this planet. Don't you understand that there is a separation between church and state? Or did you throw that out the window too? Oh and the state of Texas is making school children take a bible class. Doesn't matter if the kids an atheist or agnostic or doesn't believe in it or was raised differently their still making them read it. Way to go Texas for overstepping the boundaries of church and state... But no Archie I'm merely stating that this nut doesn't consider gays or lesbians equal peoples under the law where they need protection. Doesn't matter that I can pull up thousands of incidents of hate crimes due to a persons sexual orientation, doesn't matter that Gay and Lesbian teens are harassed up to the point of suicide let alone god forbid their allowed to even have rights. Point being is a public official elected to serve and protect all peoples under the law for the common good has stated just to do the opposite.." +p9088 +aS'First, I think you may have misunderstood the "pro-life mantra" seeing how many pro-lifers think it permissable to disconnect life-support systems in certain circumstances, which necessarily results in a person\'s death. But nevertheless, I think we agree that for purposes of the abortion discussion, it is a closer analogy to assume the violinst is only connected for nine months, and no longer than if we assume the violinist to be connected for some other arbitrary period of time. Am I correctly discerning an agreement on that?' +p9089 +aS"So then women who are pregnant shouldn't be allowed to 1) Smoke 2) Take any kind of drug that could possibly harm the child 3) Drink or do any otherwise legal action? And VOR takes another giant step towards fascism." +p9090 +aS'Actually, I meant the behaviour refered to in her post was interesting.' +p9091 +aS'What about the pain and death inflicted upon the innocent women and girls forced to give birth? Have you no regard for them?' +p9092 +aS"You think open carrying of loaded handguns in public will become fashionable in CA? I think if anyone took to this they'd find themselves asked to leave establishments routinely." +p9093 +aS'You are distorting my view. I certainly do not think that I am "god" or that everyone has to revolve around my standard. However, I do think that morality has to have a rational basis behind it. This is my particular rational basis. My moral code certainly isn\'t my own invention but is based on the moral codes which I have often heard expressed by others, as well as the moral code of the German philosopher Kant (often referenced in secular moral discussions). Most people from childhood are taught morals at least partly from the same points of view I use. After all, how often have you heard the phrase "How would YOU like it if that happenned to you?" or something similar. That is essentially the same as my basis of morality. It seems to be very common. Even many religions use a similar basic appoach - "Do unto others...". Of course, we all differ enough in our psychology that we might have some differences in how we would expect to be treated by others. So, this approach that I present would not lead to the same result in all people. Also, this approach depends on the capabilities of the person to see the big picture and to be able to fully see things from the other person\'s point of view. Since we are imperfect in these skills, it certainly helps to have moral discussions, moral mentors, etc. who can enlighten us in various situations. It is not a perfect method but at least it is not arbitrary since it is based on reason. Note that the famous German philosopher Kant gave a similar secular moral code in his Categorical Imperative: "Act only according to that maxim whereby you can at the same time will that it should become a universal law". Your view doesn\'t seem to be based on reason but on a blind trust in a religious authority that tells you that a particular set of rules is right and must not be questioned. For those of us who do not hold the same beliefs as you, those rules often seem quite arbitrary. Sometimes some of the reasons behind those rules are illucidated, often not. Sometimes the rules are the same as those derived by secular reasoning, sometimes not. Personally, I would prefer an imperfect moral code that at least is based on reason and is refineable to one that is immovable and based on arbitrary standards. On a last note, there certainly could be moral codes that are based neither on religion nor on some version of the moral code which I have presented. If so, I would be quite interested in hearing them.' +p9094 +aS'I think that the type of weapon does make a difference. A tyrant would be more dangerous to the world if he was armed with WMDs rather than knives.' +p9095 +aS'And sometimes, necessary.' +p9096 +aS'Contraceptives (for example a condom/ the pill) aren\'t going to last a month effectively. Then there\'s the fact that contraceptives, given the above data, can still be 99% effective, as it doesn\'t mention how many pregnancies they\'ve prevented. What does the writer make of this though? "According to this, condoms have a high failure rate for pregnancy."' +p9097 +aS'the fetus would be a real person...and it seems like....in order to make the iraq war/abortion connection....you would have to support the war!' +p9098 +aS'Not heard that before! made me laugh almost as much as your lettuce eating Tyrannosaur' +p9099 +aS"So you have a scumbag democrat screeching hate speech and we are supposed to believe its true! Get real baby even you don't believe this unless you have donated a vital organ associated with reasoning." +p9100 +aS"Why is it when Creo's don't believe something, Evo's always think because they have studies or what have you that we Creo's have to accept it as proof. I mean you don't accept anything as proof from Creo's. If Creo's did some carbon testing and did it accurately and got some anomaly's, you'd still reject it. I didn't lie not even by ignorance. I just don't believe it's true, but I take it I'm not allowed my beliefs . What fact has disproved my worldview, my worldview is intact as it ever has been?" +p9101 +aS'In other words, you think a Supreme Court decision should only shut down the debate if it\'s a decision you agree with. Roe v. Wade and Heller do share some striking similarities. For example, Scalia stated in Heller: "Nothing in our opinion should be taken to cast doubt on long-standing prohibitions on the possession of firearms by felons and the mentally ill, or laws forbidding the carrying of firearms in sensitive places such as schools and government buildings, or laws imposing conditions and qualifications on the commercial sale of arms." However, the text of the Constitution has as much to say about such restrictions as it does about abortion. I\'ve heard that Scalia has been criticized for making such a statement because there is no clear historical precedent dating back 200 years of banning felons from owning firearms. So neither the text of the Second Amendment nor tradition justifies such restrictions. It is an example of judicial lawmaking.' +p9102 +aS'Another oft-repeated lie.' +p9103 +aS'Another strawman. Explain to me how new information and new features equals to new structures and body parts. Those links have long been refuted http://www.creationwiki.org/(Talk.Or...dd_information http://www.creationwiki.org/(Talk.Or...e_new_features' +p9104 +aS'They do offer a good insulating blanket which would keep the body of the reptile warm which in turn, would allow the reptile to remain active for a longer period of time. This means more time to hunt and reproduce carrying the mutation onwards.' +p9105 +aS'Oh you little tramp!' +p9106 +aS"Apart from the 'horizontally instead of vertically' part which I didn't understand - we're a hundred or so years too late, unfortunately. You might as well ask for an example of a book or website on cosmology that 'admits' the sun may just be a big ball of fire pushed by a scarab beetle, and not a nuclear furnace about which the earth orbits. There comes a point where continuing to seriously 'consider' a viewpoint becomes a waste of time and resources, because sufficient testing has been done and evidence recovered to discount it. We may one day encounter evidence that completely overturns the whole applecart, but so far it hasn't happened." +p9107 +aS"no base for calling it a human being? Other than the fact that a fetus is scientifical a human being. Seems you have no basis for saying I can't call a fetus a human being." +p9108 +aS'Like the docking simulation, in development there is a pre-existing fitness landscape (the womb). Both processes converge on similar endpoints each time it is run, both process are biased to a few endpoints and both processes reach local optima (e.g. skin cells) after the process id complete. http://mybroadband.co.za/vb/picture....pictureid=1857 Figure 1: Similarities between development and a docking simulation employing a memetic algorithm. There are certainly many parallels between our own designed simulated docking runs and the development of life.' +p9109 +aS"Cornell's writings consistently place him within the collective right camp. Even the arguments that are attributed to him which start this thread show his collective right desire. His claim to neutrality in the individual/collective right debate is as disingenuous as his interpretations of the SCOTUS opinions in both Miller and Cruikshank: Greatest Threat to Second Amendment? Greatest Threat to Second Amendment? Whether ?neutral? or not, Cornell has proven himself capable of distorting SCOTUS opinions when he does not find that they suit his collective right tastes." +p9110 +aS"Damn, your links sure show a lack of knowledge. Do you have any sources that aren't ignorant as all heck? While Hoyle came up with the term 'the big bang', he was mocking it. Hoyle was a proponent of the Steady State concept of the universe, which he held on to long after it was disproved by empirical evidence. FFS, if you are going to use a source, have one that at least has the history of the theory right? Yes, the estimated age of the universe changed over time. We got increasingly more sophisticated ways to measure it. In the last 30 years, the age estimate has not significantly changed, but the +/- has narrowed drastically. Do try to use a source that isn't over 30 years old." +p9111 +aS"This was a comment on the physics book that has biographies of great physicists that were Bible believing christians. Right. Many believed in alchemy (they were wrong), harmful effects of night air (they were wrong), spontaneous growth of maggots from rotting meat (they were wrong), rats arising from grain (they were wrong), and the Bible (they were wrong). If it is important that Newton believed in the Bible, why isn't it as important that he believed in alchemy and did not believe in the divinity of Christ. There isn't any such thing as science from a Christian perspective. Either it is science, or it isn't. You claimed to have studied evolution. You didn't. Why would you tell us that you did?" +p9112 +aS"Actually you're wrong. Actually you're very, very wrong. The 5th Amendment, and all the other amendments in the Bill of Rights, only provide protections against government interference, not interference from your neighbors and people who don't have governmental jobs. But just for the sake of argument, if you want to argue how the man's rights were violated, how about we discuss the rights of the woman? Doesn't she have a right to not be raped? Doesn't she have a right to be secure in her own home against forced invasion?" +p9113 +aS'That is the kind, not degree. Chimps are not a higher animal. They are different. interesting' +p9114 +aS"To clarify: is it the womans choice whether the guy is prosecuted after he has been named, or is it the states? By what you've said so far, it seems that all this law does is give woman the power to punish men if they get pregnant by them; despite the fact that the woman was just as consenting as the man at the time of the coitus. There are also contraceptive paths for women that don't involve condoms. If a woman gets pregnant because she forgot to take the pill that morning and always relied on that rather than on condoms to stop her getting pregnant, why should the man be punished? The message here should be simple. If you don't want an abortion, and aren't currently in a position where you can support your children, don't have unprotected sex. At the moment, it is the woman's choice alone whether she has an abortion or not, so it is the woman who has to look after the child if she is single after its birth. If you want to add men to that equation, you have to add them in both places - give them the legal right to 'have an abortion' (force their partner to have one), and make them legally responsible for the child if they do not do so. Then you have an entirely connected couple from coitus onwards; both consenting to sex, both choosing not to have an abortion and both caring for the child after birth. I doubt that that law would be a popular one, either - but if you are going to force a man to take equal legal responsibility for a child, you have to give them equal legal opportunity to avoid it." +p9115 +aS"And that's when her career and popularity took a nosedive. Now that she's no longer playing the activist, she's becoming popular again." +p9116 +aS"Notice the double-standard here? The homosexual lobby accuses us of harassment, yet they are willing to provide names and addresses of people who oppose their agenda. I can't wait to see the backlash from this one." +p9117 +aS'The process of evolution has no scientifically known teleology and follows no known predestined plan. It does not teach that there cannot be any such things as teleology or forethought. This is where your mistake lies.' +p9118 +aS"He has a bit more basic information about R.A.T.E. on his webpage. TO also has a page critiquing R.A.T.E. methodology. Sorry, I know you're looking for more substantial personal feedback, but this is some good basic information that doesn't rely upon a billion links. You also might consider asking this question on iidb.org, and maybe Dr. Meert will respond to you personally. More importantly, let us not get hung up on analyzing the raw empirical data only. For example, if I use a stopwatch to time how long it takes for light to flood the room after I turn on the switch, and I come up with 0.06s, you can't argue with my empirical data: I timed it at 0.06s. The fact that human response time is comparatively lousy and that a stopwatch is awful for extremely short time intervals is more significant that the stopwatch reading itself. This is the primary error that R.A.T.E. makes." +p9119 +aS"It is an acronym for 'Y'oung 'E'arth 'C'reationist. In other words... someone who believes that the earth is only 6,000 - 10,000 years old and was created in six days by a being known as God." +p9120 +aS'Argueing with penfold is like wrestling a pig in the mud, the pig enjoys it.' +p9121 +aS'If logic was invented by man that would mean that when people did not exist neither did logic. That does not sound logical to me. Most people believe there is life eleswhere in the universe (I\'m not saying I do but I just want to illustrate a point). If logic was invented by man does that mean aliens elsewhere in the universe do not have logic to guide them? Just a question. "In Christ are hidden all the treasures of wisdom and knowledge." (Colossians 2:3)' +p9122 +aS'well...you gotta point there.' +p9123 +aS'See above, yet again' +p9124 +aS'My responses are in bold.' +p9125 +aS'How is killing a child pro child?' +p9126 +aS"they may respect life but what about respecting the quality of life? if they cared about their children's future they would not breed like rabbits. It is callous to use their children to win the 'numbers game' quality before quantity. I don't deny that abortion is murder in the womb though." +p9127 +aS"Yes it is, police aren't obligated by the US Constitution to protect individual citizens. If they were, lawsuits could be filed every time a crime is committed, and the police would go bankrupt really quick." +p9128 +aS'Actually, the storm lasted for 40 days and 40 nights. The ark was actually afloat for a year or so. So I guess the answer is that the ark had all kinds of pestilent insects winging about and biting and stinging the occupants. The problem is, how did these aquatic breeders actually propagate in the feces and urine infested bilge of the ark?' +p9129 +aS"No, hiding as an option has not changed since the days of old, with the slight difference that it used to be easier to get out of range. I'm talking about mace, stun guns, tazers, home security (double glazed windows, rhino locks, burglar alarms, CCTV/fake CCTV, panic rooms) and so on. Although you are quite right to point out that hiding is an option. Non-confrontation for the win. Highwaymen? At the time of the Constitution there weren't exactly vast suburbs that could be prowled by thieves looking for an open window. Burglary today is more... casual than it used to be, largely thanks to the wonders of home insurance. No, unjust laws are still passed. If a group of people decide otherwise they become 'terrorists' and are treated as such. Might may not make right, but it does make legal, and the US government has a lot of might. If only widespread gun ownership was 'safe'..." +p9130 +aS"Or perhaps Mach just doesn't understand the concept of an 'analogy.' No one was claiming they want 'rights restricted' because of of bathrooms. He's either being beligerent by intentionally portraying the analogy as a premise, or incredibly dense. I'm starting to wonder if it's the latter . . . ." +p9131 +aS'Is that not agnostic? You leave yourself open to change if evidence dictates it. Sorry if this is just turning into word games.' +p9132 +aS"No. you're not making any sense. Where is symbiote? I got a horrible argument for him to dispell." +p9133 +aS'You lost me there. Try them how and for what?' +p9134 +aS"You SERIOUSLY need to take a basic biology course so you can stop sticking your foot in your mouth An egg is NOT larva, and larva is NOT a caterpillar, and a caterpillar is NOT a butterfly - much the same as a zygote is NOT a embryo, and a embryo is NOT a fetus, and a fetus is NOT a baby, and a baby is NOT an adult. I challenge you to prove that a larva is exactly the same as a butterfly. If you can't even do something as simple as that, then you'll never understand the process/transformation of what a human has to go through, and THAT in and of itself should give you a clue as to how much in denial you are in, and how much you have to twist the truth around just to justify your version of events. Deal with it!" +p9135 +aS'Reasonable people would look for justification for their beliefs. Many who have beliefs based on faith, however, accept things because they feel like accepting them. Including, absolute truths, and contradictions. The resultant SHOULD be peaceful acceptance because after all, they can both be correct, yet be in contradiction, according to faith-based belief systems. The reality would probably be, as you say, that they would mix up faith and reason and start claiming one is "actually correct", and the other is "The work of the devil", and proceed to clobber the other religion, absorb their members, abordb the traditions that were "popular" from the other religion, rename them and re-color them to match their religion, and carry on proclaiming truth and the afterlife and mercy and whatever else pops into their heads. That\'s of course, based on what I\'ve seen and read. -Mach' +p9136 +aS'Correct. Form letters go in a junk pile. Individual letters are a different matter.' +p9137 +aS"I believe this is wrong. But this is a private company, and if they want to discriminate based on religion, that's fine, just as a church may outlaw atheists. Do I agree with it? No. But does it have to do with our debate? No. This is about the science classroom. Also, again abiogenesis is a hypothesis, the same level as ID." +p9138 +aS"http://www.homeoffice.gov.uk/rds/pdfs2/hosb703.pdf It doesn't look like the UK has been doing too bad. Crime has actually been decreasing." +p9139 +aS'Somehow I don\'t think a high percentage of Ham\'s "facts" are facts.' +p9140 +aS'No, I think that he\'s right on target. The drug dealers that are caught here in Michigan usually get caught with weed AND more hardcore drugs. Theyy\'re "full service" dealers. Weed is a gateway drug, you know.' +p9141 +aS"Well, I have heard people on the pro-gun side say that most defensive gun uses don't involve firing even one round. So limiting the capacity would probably have less of an effect on the ability to defend yourself than on crime. So why are people from the gun lobby always whining about restrictions like this? When semi-automatic rifles were banned in Australia, hunters welcomed the law. They saw it as a challenge because it takes greater skill to shoot an animal with a bolt action rifle. Not so in America where some gun owners like to use guns that could take down planes to shoot small animals." +p9142 +aS'And yet the article is about a legal matter.' +p9143 +aS"Mother's choice at all times." +p9144 +aS"Actually, it's not conjecture. The genetic makeup of the several subspecies of arctic foxes bear it out. The dominant allele is rare because it is less adaptive. The dominant allele is most likely ancestral. But even foxes below the Arctic circle show differences in their fur between summer and winter. So yes, foxes that were able to change color in the north had a differential reproductive advantage over those who couldn't." +p9145 +aS'Is there something wrong with choosing to have a cheese sandwich as opposed to peanut butter and jelly? Do you prefer actually having to make personal moral choices or do you need a rigid and inviolable instruction manual to run your life?' +p9146 +aS'After. Christian fundamentalism is somewhat recent. It arose as a backlash to discoveries being made in science in the 19th century. From one follower of a 7th Day Adventist prophetess came "flood geology" in the early 20th century. Later, in the renewal of interest in the adequate teaching of science in the U.S. in the 1960s, there arose more modern "creation science." It began by adopting the flood geology of the 7th Day Adventists as the base. Creation science begins with the assertion the the creation stories, the flood story, even the mythology of Job and Jonah, are literally true. Creation scientists then attempt to distort the evidence to support this particular version of the Bible. When creationists realized that the biological evolution of species does occur, they decided that God had created original "kinds" and then allow hyper evolution after that. Creationists call hyperevolution variation in kind.' +p9147 +aS'Yes, it\'s very subjective. I was using evil as an example that was incorrectly used on the website. Even though evil is subjective, you can still be evil. (you can do evil to take away your goodness, but the only way to make yourself colder is by removing your heat, not adding "cold") No, but there is proof that it\'s that way, which can be seen through a combination of personal experience and the experiences of others. The classic example about seeing that the Earth is round is that of the horizon. Why do ships appear to sink as they approach it?' +p9148 +aS"Incorrect. Evolution is not something that must be adhered to. It is a scientific theory. As such, if evidence was brought to light that evolutionary theory couldn't account for, then the theory would be altered or scrapped. It's really quite simple." +p9149 +aS"So now Wiesmann's barrier is the most important thing to the ToE? Somehow I doubt that biologists agree, but obviously creationists have more authority on the topic of evolution..." +p9150 +aS"23,000 firearms were handed in when the UK had its gun ban. According to your logic those people that handed in their firearms can still be prosecuted because they took possession of a firearm prior to the ban. I don't think so." +p9151 +aS"Right. It's called stasis. Species that are well adapted to their environments tend to change little in a stable environment. It is still true that fossil crocs are not the same as modern crocs. There are obvious differences." +p9152 +aS'Then should not your challenge be re-worded to say "What might be the best..." Because at present we are not at a stage where by we know everything about \'pain\' therefore in the current climate, rather than what might be known down the track, I think I have met the majority of your challenge. After-all, you are insisting now on what \'you can measure\', and we can\'t measure all that there is about pain, at present.' +p9153 +aS'Some? 90% is more than some in my opinion. That is a horrible waste. Just think if we could retain 50% of the energy we consumed. We could start eating 1/5th of what we normally eat.' +p9154 +aS"Because the Iliad and Odyssey do not claim to be divine does not mean they should be placed under a different threshold as the Bible. Otherwise, it's special pleading on your part, and thus logically fallacious. This is one of many inconsistencies between skeptics in regards to the scrutiny of the Bible. They are unwilling to put the standards they have on the Bible against other books similar in age. If they did, there would not be a single book left standing." +p9155 +aS"Well, I didn't really mean to go that far. But I'm talking about problems like that all worked out, thought about previously, and that the problem was worked out. I'm talking more about, what if you could make laborers stronger, scientists smarter, and rid us of physical and mental abnormalities ( such as down syndrome, narcolepsy, etc.). I don't think of making everyone the same for that reason. I'm just saying, what if there was a way to better society without going overboard? If the problems were worked out, which I'm sure they will be, what would your moral view on it be?" +p9156 +aS'I know that. I asked those questions to show how dumb and ridiculous unkerpaulies question was - took it to other examples where such a question is obviously ridiculous to illustrate the ridiculousness of his question.' +p9157 +aS"And I would like to know why that is. I asked the question in post #2 and got no answer. Are laypersons lacking in intelligence so much that it's hopeless for them to be on the same communication level with scientists? Since they share the same society, put their pants on one leg at a time in the same way, eat, sleep, and share economic processes in comparable ways, it seems to me it would be beneficial for them and laypersons both to understand each other when they use identical terms. (like the word, \xe2\x80\x9ctheory\xe2\x80\x9d)" +p9158 +aS"Because you asked me to quote your lies. I did. Not only can you not find whichever source you claim speaks of birds' infrared vision, you apparently can't find any source that does so. Despite this, you've been whining about how visible and UV camouflage must be moot because of birds IR vision. And to top it off, rather than admit to your mistaken memory, you're blaming the imaginary source:" +p9159 +aS'How is that silly? You do realize that the vast majority of firearms used in crimes are stolen no? And many of those are stolen from legal buyers. While it is a poor argument to argue that firearms should be banned for that primary reason, the underlying principle of control over supply is hardly silly. Unless you think that control over nuclear weapons is silly. Maybe you would. After all, you are Isly.' +p9160 +aS'And you think this a good thing? It just shows the weak cowardly position of the creationist.' +p9161 +aS"Again, this wasn't just about you and me. I do think you corrected someone's spelling and if you didn't it was another creationist." +p9162 +aS"I would kind of Like to Discuss your Fascinating use of Caps. But seriously, your numbers are insane. Somewhere around 8000 gay couples have gotten married in the past couple of years, how in the world do you imagine that they've cost the state hundreds of thousands or millions each? You just made all that up, didn't you?" +p9163 +aS"First of all not all Astronomers believe that. All though it is a very long way to the closest star we really don't know how far stars are away from us it is not possible to know. It is an educated guess at best. If you base your beliefs on science you will almost always have to change them so are they really beliefs? Time and distance are 2 different entities. On the other side of the world it is a diffferent day. A light year is the distance light would travel in a year if at the speed we have computed it to be on earth. How gravity affects light in space in pure specualtion as almost all of the cosmological theories are. Black holes were created to explain the big bang. There are lots of astonomers that are convinced the big bang is a myth. If the stars were created near the earth and then streched out as the Bible says they were the relationship of time and distance would be quite different and would explain how light from a distant star could be seen. No one really knows the answer so it is a matter of faith what you decide is true. Both are possible according to science. The powers that be in science are atheist and get the most press. This does not make them right by default. There is a very good book on this subject Starlight and Time if you are interested in what a brilliant scientist who believes in Creation has to say. I will be suprised if you are. I have read Hawkings and have him on audio and video. To be fair you should take some time and study the opposing view IMO." +p9164 +aS'Yet another alleged lie, by the Hillary-haters, shown not to be.' +p9165 +aS'See Begging the Question' +p9166 +aS'How do you define "convenience"?' +p9167 +aS"If that's truly what the organization says, then it's a hypocrite of an organization." +p9168 +aS'The only person who can take away your sin is God. No human can ever cleanse himself of his sins, so get over it.' +p9169 +aS'Hold up, your changing your argument. You said "I have never been accosted by an armed assailant. Hence, I see no reason I need to carry a concealed handgun in order to be brave enough to move about my hometown.". This is the reason you gave for not carrying a firearm, I was simply countering that argument because it didn\'t sound very logical to me, still doesn\'t. As to your new statment, I\'ll need more info. What do your consider an "accidental discharge" of a firearm. I ask because I do not consider someone pulling the trigger to be "accidental" and therefore I consider true accidental discharges to be pretty uncommon. Yes, for most people I think the chances of being in a car accident are greater then the chances of needing a gun for self defense. But, I\'m not sure why that would make a difference. If it was reversed I would still where my seatbelt. God Bless' +p9170 +aS'Actually there is a better solution. Mandatory male and female birth control pills, financial penalties if you stop taking. Anyone who would get off the pill would want a kid, therefore, abortions would cease.' +p9171 +aS'And anyone who thinks this will be seen as an XXXXX and close-minded.' +p9172 +aS"Yes, because its THEIR decision, its THEIR stomachs, and its THEIR lives. I agree that some decisions do need to be made with parental consent, but not this one. Irrelevant. How does purchasing a house have to do with abortion? Ok, so what if the kid wants to have the baby and the adults want to get rid of it? What if the adults want her to have the baby and the kid wants to get rid of it? You would force the kid to have a child (that doesn't seem responsible at all), or you would force the kid to abort her child (thereby taking away her son or daughter). Both of those decisions don't sound very consitent or responsible. The decision is best left up to the person that is pregnant, regardless of their age." +p9173 +aS'Why didn\'t they "fire" and "bar" him in the sixties?' +p9174 +aS"If the fetus is human is not relevant? So if everyone says it is human then it still doesn't have a right to live then huh? Do you really support the killing of an innocent life for whatever reason? Do you really think placing one human over another is good (in this case women is more important then baby)?" +p9175 +aS"So then the law is flawed because criminals could just as easily get their hands on select firearms, ban or no ban. You've just admitted that the bill did nothing and thus there's no justification for it to be reinstated." +p9176 +aS'Actually, one can argue that it was a pagan institution long before it was a religious one.' +p9177 +aS"Oh really ? Parts of New Orleans were under water for more than 40 days before all the water receeded. Hasn't the plant life there replenished naturally in the wild ? Of course it has. The Earth is very able to repair itself in spite of modern mans sense of self importance. Here's some interesting photographic evidence of it. www.pbase.com/andrys/noah" +p9178 +aS'So the intent hiding behind abortion laws all along was to keep women in the gutter. There was not any legititamte concern for the unborn fetus. It was all about how they could keep women down. Tell me then, would someone who supports a ban on partial birth abortion do so simply because they want to repress women?' +p9179 +aS"You know, I cannot even remember if we covered it in middle school or high school biology. I do remember learning about Mendel and his genetics, but I swear I can't remember if we even mentioned Darwin's name. If we spent any time on it at all, it was very little. Our biology classes were mostly devoted to taxonomy, anatomy/physiology, and cellular machinery." +p9180 +aS'Nope. Not part of evolutionary theory. It would be stupid to claim that increased genetic variability would "disallow" any portion of the population from breeding.' +p9181 +aS'Yes...if you ignore people, they eventually go away...except for me, of course.' +p9182 +aS'See above' +p9183 +aS"What is astounding about it? If we had been aborted, we wouldn't have known anything about it. Untold billions of conceptions have been spontaneously aborted. Do you shed tears for those, too?" +p9184 +aS'And he accomplished all this human carnage without a gun. This just proves that if it was possible to eliminate all projectile firing weapons from existing on earth, men would find a way to commit atrocities against his own kind just as he did before such weapons existed if murder was in his heart. Guns are not the issue, the corrupted heart/nature of humanity is.' +p9185 +aS'Read to the very end of the verse. "If you are not pleased with her, let her go wherever she wishes. You must not sell her or treat her as a slave, since you have dishonored her."' +p9186 +aS"Fish to Amphibian supporting evidence frmo here: Fish/Amphibian Transition from primitive bony fish to amphibians: Paleoniscoids again (e.g. Cheirolepis) Osteolepis -- one of the earliest crossopterygian lobe-finned fishes, still sharing some characters with the lungfish (the other group of lobe-finned fish). Had paired fins with a leg-like arrangement of bones, and had an early-amphibian-like skull and teeth. Eusthenopteron (and other rhipidistian crossopterygian fish) -- intermediate between early crossopterygian fish and the earliest amphibians. Skull very amphibian-like. Strong amphibian-like backbone. Fins very like early amphibian feet. Icthyostegids (such as Icthyostega and Icthyostegopsis) -- Terrestrial amphibians with many of Eusthenopteron's fish features (e.g., the fin rays of the tail were retained). Some debate about whether Icthyostega should be considered a fish or an amphibian; it is an excellent transitional fossil. Labyrinthodonts (e.g., Pholidogaster, Pteroplax) -- still have some icthyostegid features, but have lost many of the fish features (e.g., the fin rays are gone, vertebrae are stronger and interlocking, the nasal passage for air intake is well defined.) And while nothing is ever proven 100% in science, the link between fish and amphibians is pretty conclusive. Evidence for dino to bird evolution just keeps mounting and at present it is the best supported theory. Just look at the recent discovery of an oviraptorosaurian dinosaur with 2 eggs still in it's body, two very bird like eggs.....See here: dinoeggs So once again, while not proven 100%, dino to bird evolution is the best supported theory. Do you have anything that is better supported???" +p9187 +aS'You should have said that. I might have agreed with you.' +p9188 +aS"Why conception? When a mature ovum leaves the ovary, it has every potential of turning into a human being. How dare I stand idly by while that potential life is wasted, unfertilized? No; clearly, it is my duty to try to reach that ovum with my seed. God said to be fruitful and multiply, so I am just following God's will." +p9189 +aS'So you are saying the US system is better?' +p9190 +aS"Again, it's not just 'evidence' but 'evidence constructed into a workable theory'." +p9191 +aS"It stops us from saying we ara a rational people. I don't support any laws that would allow a father not to have a say so about his child being aborted. Are there any?? If it were a life or death thing for the mother no question. As I stated I don't like the idea but making it illegal would simply put more unwanted kids in state homes. Lets take care of the living first!" +p9192 +aS"So where in there does Behe say that brute luck is actually impossible? Nowhere. Where in there does Behe say that brute luck can be absolutely and definitively ruled out, 100%. Nowhere. As I originally said, \xe2\x80\x9cWe can find such an explanation wanting or unsatisfying, but being highly unlikely is not the same as proving it could not happen.\xe2\x80\x9d This is quite in line with Behe's statements in his book. Further, PROVING it IMPOSSIBLE is what you would have had to have done to PROVE that evolution is false. Behe says it can't be proven impossible: that it can't be completely refuted. (And quite frankly, most of us would agree that claiming that an IC system - or multiple IC systems - arose by multiple simultaneous mutations is in no way comparable to claiming that \xe2\x80\x9cthe word luckily popped into existence yesterday with all the features it now has.\xe2\x80\x9d Behe's not being fully honest here.) What I quoted Behe saying is exactly what he said and is his position on the matter. I have NOT misrepresented Behe's position on this. Now, a charge of wrongdoing is discarded unless the party making the accusation can fully support his charge: burden of proof falls upon the accuser, not the accused. You've failed to support your charge, so I prevail. Now, if you want to continue pushing your charge of wrongdoing on my part, you need to show where, in Behe's \xe2\x80\x9cDarwin's Black Box\xe2\x80\x9d, he goes on to show that brute luck is actually impossible: where Behe shows that brute luck can be absolutely and definitively ruled out, 100%. Until you do, you have failed to rebut my counter to your statements, and, I am also cleared of your false charges. PS: The only one playing around with context here is YOU! The context of my statements was that you claimed to have PROVEN EVOLUTION false, and I pointed out that: (1) in order for you to have succeeded, one of several things you would have to do (but didn't) is to DISPROVE multiple, simultaneous mutations (brute luck) and (2) Behe himself says that multiple, simultaneous mutations CANNOT be absolutely ruled out. Try to keep the context, okay." +p9193 +aS"See my post above, Hi. marc ignores fundamentals of Miller's beliefs that he clearly spells out in trying to push his anti-Miller argument." +p9194 +aS"I think it's true. Why would someone make that up and pass it off as a real event? I think the continents probably started separating some time after that, which is how God separated the people." +p9195 +aS'Really, with C being between 1/2 and 2 million defensive gun uses per year. Or perhaps the hundreds of millions of legal, non-defense related, gun uses per year. When you compare the number times a guns are used legally to the number of times they are used illegally, B becomes pretty insignificant.' +p9196 +aS"Yes, that's all true, and it makes complete sense. But in doing this, the Court may have created a situation where plaintiffs can argue that California is denying people the equal protection of the laws, by allowing some people to be married to same-sex spouses and not allowing other people to be so married. If that is the argument that the plaintiffs make in their federal lawsuit, this could be interesting. The courts might have to interpret whether allowing some people to be married and not allowing other people to be married violates the equal protection clause of the 14th amendment to the U.S. constitution. And then they might have to decide whether this means that all same-sex couples must have the right to marry, because some of them can be legally married. In other words, this situation may be an opportunity, because no one can argue that this is a case of apples and oranges of same-sex couples being different from opposite-sex couples. Now you have same-sex couples who are legally married and same-sex couples who cannot be legally married in the same state, which can be argued to be denial of equal protection of the laws. I don't know....it could be interesting. Maybe things won't play out this way. We'll have to wait and see." +p9197 +aS"Got evidence to back that up?? I'm not sure how a stoner's worse than an alcoholic really. -Wez" +p9198 +aS"Every relationship does entail moral obligations in one way or another, but the argument is that there is no relationship that morally obligates one to share ones body. They are trying to generalize 'moral obligations' as if that justifies anything. There are things that cannot be morally obligated, no matter the relationship, so the argument tries to prove." +p9199 +aS'Misunderstanding or misrepresentation? Biologists and geneticists do not claim that DNA is isolated from the environment. We are well aware that the environment can cause mutations under many conditions (cosmic radiation, x-ray, etc.). What is denied is that mutations are environmentally directed - in other words, exposure to cosmic radiation will not cause a mutation that will make the organism resistant to cosmic radiation. The mutations will be random. On the other hand, natural selection IS, by definition, the response of populations to their environment. The environment has been shown to have effects on DNA, i.e., the genome of the population.' +p9200 +aS'Well that may be your contention, but medically that is not necessarily true. Maybe being gay doesn\'t mean you are suicidal or depressed, but there is more of it going on in the gay life than in the hetero. That in itself is a wake up call. Depression and suicide are harmful, even if it doesn\'t touch you personally. If it were as simple as you say the APA wouldn\'t be re-evaluating "reorientation therapies" would they and with positive critiques too. You wouldn\'t have prominent gay activists like Camile Paglia deriding the gay community for being malcontent when those unhappy with being gay seek and desire the way to be hetero.' +p9201 +aS'Well, one person got it right...where in the constitution does it say something about health having to be protected?' +p9202 +aS'And Eisenhower:' +p9203 +aS'Source?' +p9204 +aS'If you wanted to be picky about it, I guess you could say that it was a form of last-ditch birth control, after the other forms failed.' +p9205 +aS"The question still remains as to whether this is negative intrusion (which is what the libertarians want) or positive intrusion (what the libertarians do not want.) Anyone with half a brain can know that it's intrusion. The matter becomes complicated when one tries to place it in the category of anti-murder laws or theocratic forced religion laws." +p9206 +aS"And you people whine at me about using personal insults ( )... anyhow, once a fetus is eight months, I believe, they are fully developed and ready for a premature birth. I was born prematurely, so don't tell me it doesn't happen. So if you get an abortion at eight months, you're not killing a fetus, you're killing a baby." +p9207 +aS"Go pound sand. You're the people who want the Separation of Church and State, remember? Get your sick, satanic mits off the church." +p9208 +aS"Gun control maintains its racist roots even in this day and age. What other reason would there be for Form 4473 to ask applicants what their race is? What is the importance of knowing if somebody's white, black or mexican when they're buying a gun?" +p9209 +aS"Because violent crime and violent criminals is something that I can't control. Heart disease, that can be worked on with good diet, exercise and medicine if necessary. It's manageable, controllable and can be avoided. You can't do that with a violent criminal." +p9210 +aS'No, not really...' +p9211 +aS"I think you are the same person as usa all the way and again.. you have no right to talk about murder because you murder the english language everytime you post. And no.. the baby does not belong to god because there is no baby and I don't know if there is a god or not. Btw.. I'm not going to incubate something in my body because of you think it's wrong because someone who may or may not exist said so." +p9212 +aS"Hello there. The principle behind a pro-life Christian supporting the death penalty (I am one) is this: We are talking of innocent life. The death penalty is justified for a person who is guilty of commiting a crime against a society that has that law. The child never did anything wrong. I know of other beleivers who don't support the death penalty, so basically, it's an in-house debate." +p9213 +aS"The comic relief doesn't even recognize it has passed in on, or attempted to!" +p9214 +aS"oh, now we're getting somewhere. Explain more, please. Oh, and some evidence of incremental modifications would be nice too." +p9215 +aS'They can "marry" whomever they love. Benefits though, are a different matter. The state and society views marriage as an opposite-sex institution. It\'s not about anyone getting harmed; no one said it was.' +p9216 +aS"Well, those who keep using that story can't see the real sins of those cities. They are so sure that it was rampent homosexuality which lead to their destruction. Even though we know that before the Angels were ever sent God had spelled out why he was going to destroy them. He sent the angels because they promiced to find even one righteous man. They failed in that because the angels were attacked for being foreigners. Noone who abuses this story is ever going to admit this fact. They can't see past the supposed homosexual issue." +p9217 +aS'So, you would vote to legislate against it? Ok, now that thats cleared up, why do you consider sex to be so bad? Sex is a healthy part of a relationship or marrige, and i would not go to these lengths to minimize it. Sex has a small risk of ending in pregnancy, and an even smaller risk if using a condom, and even smaller than that if the woman uses a contraceptive. Then, if EVERYTHING fails, there would be abortion in the extreme circumstances that it does result in a pregnancy. I doubt that criminalized abortion will reduce sex. It will only cause suffering and fear for women. I thought we were out of the dark ages already.' +p9218 +aS"Oh boy, you said it! Is the Earth's Magnetic Field Young?" +p9219 +aS"Sure. The woman is a person, and individual, sentient human being. She has the same right to control her bodily resources as any other person does. As such, you can no more force her, against her will, to provide bodily resources to an embryo or fetus, than you can yourself be forced to give of your bodily resources against your will. Even if somebody is bleeding to death, and your blood can save their life, they still don't have the right to force you to safely give them of your blood. Each person have that right to control their bodily resources. If you want to force the woman to remain pregnant, you are forcing her to give of her bodily resources against her will. When you don't insist that everybody else be subject to such requirements, then the argument is hypocritical and misogynistic. And, of course the US Supreme Court agrees with this, thus ruling that per the 14th Amendment of the US Constitution, the woman has the right to privacy, to control her onw body." +p9220 +aS'Well, you have "proved" that the U.S. health insurance does not have any higher administrative cost than Medicare or the rest od the industrialized world. I think your problem is that you are convinced in your head that that in our healthcare there is no waste. And you are trying to square it with the obvious fact that our cost is the highest with nothing to show for it. You will have to admit that there is waste. For example we have 5x as many MRI scanners than we need, we perform too many tests, we have high adminstrative cost. All these costs will be reduced. There will be fewer of these things PER INSURED. I do not know how many times I have to repeat this before you get it. The volume of this work PER INSURED will decrease. Do you understand that?' +p9221 +aS"Look over the Heller ruling again. All nine judges agreed unanimously that the Second Amendment protected a right that was wholly individual in nature. The only disagreement was whether the right still applied today. And no, the individual states and cities shouldn't be allowed to set their own standards for a constitutional right, that flies in the face of the 14th Amendment. And worse, you're arguing for precedent that would basically allow the various states to not respect your other rights; they could ban the shirt you choose to wear because it's offensive to some small, insignificant minority somewhere." +p9222 +aS"So when you're doing math, you're an atheist? Of course not. Just because there is overlap doesn't mean that the two views are identical." +p9223 +aS'Problem is, you think requiring a woman not to kill someone is "treating them as breeding animals". Kind of an odd thought.' +p9224 +aS"But the civil war wasn't fought for slavery. If you will recall the average northern soldier wasn't too fond of blacks, and that is not only sugar coating it, but saying it in the nicest terms possible. The civil war was fought to keep the union in tact. Border states still kept their slaves for obvious reasons, the intactness of the union trumped any moral principal. Besides, that wasn't true even in practice. Black soldiers were paid less, had less equipment, had less medical care and were given the worst jobs possible. Hardly created equal. It took some time before they could even fight. Your argument is a load of garbage to someone who actually has knownledge about the civil war. I won't even go into the reconstruction period and how your so called principal didn't even exist." +p9225 +aS'Actually Electro, do you remember this thread? Evidence for a flood? Oddly enough it took 20 pages before one of them even tried to argue against the reasons why the flood did not occur.' +p9226 +aS"I'm not saying we got it all right" +p9227 +aS'Maybe you need to take a hard look at where your rights start infringing on the rights of others. A pretty good case? Dream on. Sure, you have the rigth to take the morning after pill. you do not have the right to force another individual to sell you that pill, any mroe than you have the right to walk into your local ford dealer and demand that they provide your with a chevy. Its just not the way the world works. People can go to another pharmacy or, not. It really does ntoy matter. Retail establichments are able to decide fro themselves what they carry, the governemtn has no place in such decisions. If they decide not to carry the pill, or the pharmacist simply decides they are not going to dispense it, that is their right. It is entirely an issue between employers and their employees and witht he The American Pharmacists Associations policy that allows pharmacists to refuse to fill presciptions on moral grounds, it is hardly an issue there, either.' +p9228 +aS"Because there are people who are trying to deny the theory of evolution it's place as a vital part of public school's biology curriculum." +p9229 +aS'Even new Justice Sotomayor, who claimed she ruled by precedent will be bound by the Heller Decision if she remains true to her purported philosophy. The debate between Sui Juris and Res Judicia should no longer be an issue with the liberals on this RIGHT! It either applies to all or it applies to none which would result as Justice W.O. Douglas wrote: "a revolution". It is in the government\'s (federal especially) best interests to keep our soldiers employed in foreign countries. BTW, I think the court decision in Nunn vs. State of Georgia did the best summation of this right!' +p9230 +aS'Armour piercing ammo, 100% legal. Here is where you can buy SS109 armour piercing ammo: http://ammoman.com/ I agree, the Brady Bill is laughable to criminals who want the contraban items. You do not even have to buy them, you can make them yourself. I agree that the cops are not the best protection. The best protection is YOU for YOURSELF. Only you are on the spot the quickest when you are threatened. Only you are able the judge quickest weather your saftey is threatened. Seach on any engine: police accidental shooting. It is quite alarming how many times cops shoot the innocent. If cops can get to a crime scene in time, they have to sort out the criminal and the victim very quickly under difficult conditions. In essence, they do not get the whole story, until it is over. You may even gen a criminal pretending to be a victim, only to shoot the cops in the back. That is why victims at the crime scene are the best judge of who needs to be shoot first. For my own personal situation, I do not recommend just buying a gun for protection. Also seek training and lots of it. Then practice, practice, practice, and then practice some more. No matter how justified you are defending your life with firearm, you must still defend your actions in a court of law, especially if human life was taken. I do not agree with people carrying firearms with no training. That is a very personal decision and I will not stop anyone from carrying a firearm if they choose to do so.' +p9231 +aS'I think that case was in Georgia (a different state) and so far as I know homosexuality was not involved. However if you want to worry about a legal case you need to look at Dover Pa. Not the sticker case in Cobb County.' +p9232 +aS"That was the past. I'm speaking of now." +p9233 +aS'And what does Marc do? Try to change the subject.' +p9234 +aS'Yet this need for revenge is far removed from the need for justice. My original post addresses this feeling or need for the criminal to die. It has no relevance in the discussion of justice, only revenge.' +p9235 +aS'And it also took an amendment to give the slaves rights, not a judge.' +p9236 +aS'Certainly it does.' +p9237 +aS"I know ... I know. I agree with you that it's sad more of those people couldn't or didn't take advantage of concealed carry to help prevent so many deaths. That needs to change along with education so more people can defend themselves." +p9238 +aS"Isn't agreeing with what? The senate hasn't passed any laws that would restrict right to carry anymore than it already is." +p9239 +aS"Because feeling safe isn't the same as being safe. The people on the airplanes of September 11th felt safe just before the terrorists took over. The Virginia Tech victims felt safe before they knew about the killer that managed to slaughter 32 innocents. Everyone involved in any major massacre has always had plenty of reason to feel safe right up until the killings took place. But the fact remains that none of them were safe. If they were safe then they wouldn't have gotten killed. Feeling safe is nothing more than a false sense of security that can be destroyed at any given moment. I'd rather not be a victim of some violent incident and mistakenly believe that it could never happen to me. I'd rather actually being safe as opposed to just feeling safe. Feeling safe is just that: just a feeling, it's not anything tangible, it's not something that will do you any good if somebody decides that you're going to be their next target." +p9240 +aS'Because it shows that Ockham was arguing against what Hi_Its_Me says the Razor is.' +p9241 +aS"Actually there are already a couple floating around. One fascinating one: Gaia theory and the Daisyworld model. It's all around self-organising systems and the earth as a self-regulating system/organsism/something or other. James Lovelock and co. Interesting to read but sometimes feels a little too 'lets-all-just-get-along' to be real, hard-core theory. Either way, it's probably a lot more likely to be accepted than creationism, should evolutionism for some reason be disproved." +p9242 +aS"And who makes the decision, Rich? That's the issue, as I see it. I don't believe the government has any business in a woman's body." +p9243 +aS"I don't get you here." +p9244 +aS"Oh, we don't have to - sorry, I wasn't clear enough there. What I'm trying to do is correct your misapprehensions concerning common descent. You said this:" +p9245 +aS'Because everyone is equal in the eyes of the law, and rightly so. As for moral standing, you see no problem with equating his immoral behaviour with your own response. Most would.' +p9246 +aS"You're right, I think he has made such comments. Sorry. I think he's wrong and went too far." +p9247 +aS"You could try to be a good person and nevermind about the hocus pocus stuff. I'm not tryimg to convince you of anything. The fact is that what you use a reasons to believe don't hold up under logical scrutiny. Don't justify faith with logic. That only cheapens faith." +p9248 +aS'Why not? You said yourself kalifornia was a "trend setter". It is alread the law in many states.' +p9249 +aS'So your only link to gay rights and polygamy is a statement put out by a gay rights conference 30 years ago that does not EXPLAIN a link to polygamy, but shows it\'s support for it? Hn ... I\'m with Justine on this one. This is a bit of a stretch. It would be like me implying that your support for "traditional marriage" also supports spousal abuse just because marriages in the past allowed for wife beatings.' +p9250 +aS"You twisted logic strikes again. I realise that if a group of you were to take your guns and rise up against the current administration, you would all be labelled terrorists. This is not evidence that I support the current regime. How you could twist it to seem so is beyond me. If I were to state that you couldn't take on a fully grown polar bear with just a short pointy stick, would that mean I am supporting the oppressive rule of polar bears? I think you should sit down and carefully think out what you infer from other's arguments before you keep coming out with these ludicrous statements." +p9251 +aS"I wouldn't say most cjurches, because you cannot prove that. There is a long list of churches that are accepting of gay folks." +p9252 +aS'Please off one scientific piece of evidence in support of biblical creation.' +p9253 +aS'Well, man might someday gain the capability of fully synthasizing a molecule as complex as DNA from scratch. Of course, he would use the knowledge gained from studying how various DNA codes affect natural biological characteristics in order to properly design that DNA to achieve the desired characteristics. It might be even more difficult to then take that synthesized DNA and put it in an egg and artificial womb that has no natural (as opposed to artificial) biological parts, but even that might be achievable someday through chemical construction. All this means is that humanity might someday be able to copy the methods of nature to create a new being - perhaps even use creativity to create beings of very different natural functions than we see in our world. It is all interesting to think about and could well be achievable within this century. We already are capable of a large degree of genetic manipulation through cloning and hybridization. One would think that it will only be a matter of time before more complex technologies get developed. The other question, of course, is - If we could someday create new life using our technology, should we? That would bring up a whole host of issues, including: - Would we know what we were doing well enough not to cause great harm? - How would the beings we create be treated?' +p9254 +aS"But I would have been interested in hearing how you explained the above points. My post was a quick hack job, looked up in a few books that I have along with stuff that I remember from my reading. I may have made an error and would be interested in hearing about it. Maybe I can defend my point of view, maybe I can't. If you put time and effort into a response, why delete it. Redundant posts happen. ss/ww won't pay attention anyway and maybe he would respond to you. He runs from me because he always seems to make himself look like a fool and he realizes it." +p9255 +aS'What else is new?' +p9256 +aS'So please, feel free to leave this thread to those who DO wish to discuss the issue. No one is forcing you to discuss the topic of this or any other thread. I notice you evidently are not interested in "Understanding "Sexual Prejudice"" That is absolutely fine with me. Or are you now opposed to "Freedom of Speech" also?' +p9257 +aS'Monty babbles: Again Monty has shown that he doesn\'t bother to learn what he is talking about before he speaks. It is not true that science has "found" the mitochondrial Eve, nor is it true that it shows that one person can have all the DNA necessary for all the variation in human population. Both ideas are ridiculous in the extreme. The mitochondrial (note spelling monty) Eve is a mathematical concept. If the estimates of the mutation rate of mitochondrial DNA are correct, then she lived about 200,000 years ago or so. And of course, the variation in human populations is carried by the nuclear DNA, not the mitochondria. High school biology students know this. And, of course, recent analysis has shown that every gene in the human genome has an average of 14 alleles. Since a single person can carry only two alleles of any gene, monty\'s assertion becomes pure nonsense. Hank says: Really? When and by whom? I wasn\'t even aware that it was an hypothesis but simply a mathematical concept derived from the mutation rate of the mitochondrial DNA. Possibly the time has been adjusted due to differing estimates of the mutatiion rate, but the concept is valid. Here is some information. Monty, I would recommend that you read the books suggested so that you might gain some understanding of what you are discussing. You continue to make yourself look foolish. River out of Eden is a good, basic introduction to the main concepts of evolutionary biology. For information on Mitochondrial Eve see What, if anything, is a Mitochondrial Eve?' +p9258 +aS"Not entirely true. While we can't disprove that God created the universe, we can disprove many creationist claims. For example, we can disprove that the earth is 6000 years old." +p9259 +aS'It is rather disrespectful but don\'t think it is limited to one side. Most protestors on both sides aren\'t great. one thing did spark my interest, and it is said often, why is it a "hard decision" if you are pro-choice? Is it hard because you don\'t know if you want a baby around or not? Couldn\'t this decision be just as hard before being pregnant? Even so, why link it to going to an abortion clinic? You hear "It was hard enough to come to this decision in the first place" but how is going through some protestors making this decision harder? No one would admit to this but it is statements like "It was hard enough to come to this decision in the first place" that make me believe that someone realizes it is wrong and the struggle that makes it hard is whether or not to do the right thing or do they thing that would benefit you the most. And in that case, I agree...that can be a tough decision.' +p9260 +aS'Microevolution - Wikipedia, the free encyclopedia' +p9261 +aS"Who's this directed at? Me or Ray?" +p9262 +aS"Apparently, all them dinosaurs were just too dumb to climb to higher ground or swim (despite the fact that animals are among the first to do so in disasters - example would be the tsunami in Christmas 2004) All of this also avoids the flying reptiles such as the Pteranodons. Also, apparently humans are unique in that they are the only ones whose corpses bload and float to the water's surface. What garbage will they come up with next?" +p9263 +aS"Actually, I don't have any respect for creationism in most of it's varied forms. I have had great respect for several individual creationists that I have met. But they earned that respect." +p9264 +aS'Better is worse? See above.' +p9265 +aS"I think they should. I mean, if you're under 18, you are still under your parent's guardian. I feel like they have the right to know if their child is getting an abortion." +p9266 +aS'I will not give up my right to vote. I will not give up my firearms. I consider people taking my right to firearms as dangers as people trying to take away my right to vote. In other places around the world, firearms are much more important than the right to vote. There are people around the world trying to get a chance to vote by using firearms to establish a system where they can use the right to vote. For self-preservation? I will use a bazooka if there is tank comming down the street. The immediate threat I am thinking of is a felon with bare hands on parole. That is exactly what the anti-gunners are trying to limit me from doing. Limit my right to self-preservation from a felon on parole. If you read the other threads, especially from VOR, you will see he is about confiscation not gun regulation. I have asked many anti-gunners about confiscation, when they point to models of UK and Austraila I shudder. Those countries are not about regulation, they are about confiscation.' +p9267 +aS"No, they're the same species. If you put all these fish in the same pool at the end they would all breed with each other. The example wasn't of speciation, merely of a change in a population driven by the environment, which is the essense of evolution." +p9268 +aS"You think so? Then accept my terms. Go ahead. See if you're right." +p9269 +aS'And yet I alread showed what the "moral code" of atheistic societies has done for the world: II 128,168,000 VICTIMS: THE DEKA-MEGAMURDERERS 4. 61,911,000 Murdered: The Soviet Gulag State 5. 35,236,000 Murdered: The Communist Chinese Ant Hill 6. 20,946,000 Murdered: The Nazi Genocide State 7. 10,214,000 Murdered: The Depraved Nationalist Regime III 19,178,000 VICTIMS: THE LESSER MEGA-MURDERERS 8. 5,964,000 Murdered: Japan\'s Savage Military 9. 2,035,000 Murdered: The Khmer Rouge Hell State 10. 1,883,000 Murdered: Turkey\'s Genocidal Purges 11. 1,670,000 Murdered: The Vietnamese War State 12. 1,585,000 Murdered: Poland\'s Ethnic Cleansing 13. 1,503,000 Murdered: The Pakistani Cutthroat State 14. 1,072,000 Murdered: Tito\'s Slaughterhouse IV 4,145,000 VICTIMS: SUSPECTED MEGAMURDERERS 15. 1,663,000 Murdered? Orwellian North Korea 16. 1,417,000 Murdered? Barbarous Mexico 17. 1,066,000 Murdered? Feudal Russia' +p9270 +aS"Your stats aren't broken down into meaningful groups, so nothing is learned WRT Muslims." +p9271 +aS"Exactly. It seems that anyone can dream up hypotheses in evolutionary psychology. Here's what Coyne said:" +p9272 +aS'Give it a rest... what is evident here is more coffeehouse vasilation on your part... no foam.' +p9273 +aS'Well, really, they both compensate and reciprocate for one another, you could say.' +p9274 +aS"But they didn't have sexual relations. This was from a sperm bank- there was nothing that made the two people create one being. Nonetheless, this is a side issue for future debates. My main point is homosexuality is a disorder that the government shouldn't be condoning. The government obviously doesn't condone pedophilia, poligamy, and incest. Why is the government condoning homosexuality?" +p9275 +aS'That was a nice rant that had absolutely nothing to do with anything. The essential question is not what various religous leaders have said about the issue, but what the Bible says about the issue.' +p9276 +aS"And what would make them separate species? How about wolves and dogs, separate species? How about Great Danes and Chihuahuas? They cannot interbreed under any circumstances (even artificially - the fetus isn't viable)." +p9277 +aS'and a quote from jitobear:' +p9278 +aS'That and VOR keeps flip flopping on his positions and he refuses to clarify his contridictions.' +p9279 +aS'Again with the common sense, but that is another issue alltogether. You\'re arguement that the brain is a fundamental unit of life is just plain wrong, considering the majority of all organisms don\'t have one. Bacteria, Protists, Plants, Fungi, and some animals are all without brains. Brains are required for motion and fast response to immediate changes in environment, for example a falling rock. Brains cluster nerves so that appropriate action can be taken. Some brains are amazingly simple while others like our own are immensly complex. Your arguements all show a general lack of study in biology and my common sense is appalled by yours. I am reminded of Bill Maher who once said about the intelligent design debate: "Because you don\'t have to teach both sides of an arguement when one side is retarded."' +p9280 +aS'I responded to your posts on the thread of "Lets discuss the actual..." I suggest we continue that discussion there.' +p9281 +aS'Are you sure? Use your google.' +p9282 +aS"Well, your reasoning is certainly muddled, and it seems to be confused with some sort of twisted socio-political agenda, but I don't think I would characterize your piece a filthy collage. But you can call you stuff what you want." +p9283 +aS'You know that, I know that, but the creationists do not know that.' +p9284 +aS'Notice that nowhere here do you address the claims and evidence -- which the movie apparently lacks -- about the assertions of "the expelled." Trying to deflect attention from your inability to respond substantively won\'t fly with us; these guys are fudging the stories and sharing only selected pieces in a specific attempt to hide what really happened. For what it\'s worth, I feel a hell of a lot more vulnerable as an atheist in my profession and location than IDers should feel in research and teaching academia.' +p9285 +aS'I believe that\'s true, and as a "believer" (creationist), here is what is hard to understand about that; In Matthew, 12:30, Jesus says "He who is not with me is against me, and he who does not gather with me scatters". It is safe to say that both creationists and theistic evolutionists would accept that statement from Jesus, and would seek to be "with" him, while agnostic and atheists would consider themselves "not with" him. Yet theistic evolutionists are comfortable to (usually politically) be "with" agnostics and atheists, and separate themselves from creationists. If they\'re genuine Christians, knowing about the warnings in the Bible about false teachings, how can they be comfortable with that? Miller laments in several places throughout the book that atheists use evolution as a weapon against religion, and that it shouldn\'t be that way - that it causes more strife between the two than should exist.' +p9286 +aS"Honestly I'm not sure if it was ever said in the Bible, but I sure have heard a lot of the Bible thumpers saying free will is a gift from God." +p9287 +aS'You may see a vast differene, many do not. The "moral" grounds for many is simply the justification for their homophobia. So now it\'s a massive nation wide government conspiracy to stifle free speech? Canada stifles and oppresses religious freedom? Honestly Jyoshu, where do you get this stuff? This is utter BS, if you can find ANY proof of the Canadian gov\'t stifling free speech on this issue, religious freedom, or any other issue for that matter, please post it. If not, retract your BS statement, and admit that it\'s a fabrication. I honestly don\'t think I underestimate it at all. I come across a very broad spectrum of people in my line of work, from one end of the scale to the other. The most common negative response I get is from those that are opposed to homosexuality in general and respond along the lines of "I don\'t like, I don\'t want to see it, but rights are rights, as long as it doesn\'t negatively affect me, I don\'t have a problem with it/I don\'t really care." I have come across a couple of people who were strongly opposed to the use of the term "marriage" but were fine with allowing homosexual "civil unions". I think you overestimate how big of a "moral issue" this really is for most people. Waxy' +p9288 +aS'No. We don\'t agree. For one thing your faith isn\'t a theory. Creation as described in Genesis is a myth, in fact, two myths. Furthermore, a scientific theory doesn\'t mean "wild guess with no foundation". That seems to be what you want the word to mean. In science a theory is an explanation for observed facts that has been tested. You see, a theory is predictive. I\'ll give you some examples of scientific theories. The germ theory of disease, the theory of gravitation, the heliocentric theory, tectonic theory, atomic theory. Moreover, you are wrong that science cannot observe actual evolution of life. It is done all the time. While it may be debatable that a virus is alive, the recent case of SARS making the jump from civets to humans after a mutation is evolution.' +p9289 +aS'Holy grail implies it is like a religion, which it is not. If evidence is found that overturns this theory, it will be discarded in favour of a better one.' +p9290 +aS"You don't beleive that it is possible to do something wrong to prevent a larger number of wrongs in the future? Do you think the ends can ever justify the means?" +p9291 +aS'Things like future proof of a young earth - evolution needs billons of years. Or proof of severe weather conditions that would destroy the evolutionary process. Life on earth dies completely if it gets out of a fairly narrow temperature range, any time during those billions of years.' +p9292 +aS'Then show the evidence.' +p9293 +aS"No, but the Roman persecution of Christians, covering Christians in pitch, Roman garden parties, witnesses for Christ being killed for their faith etc. is as irrelevant as it gets. Just be careful, that's all I'm saying. There is a place for that topic." +p9294 +aS'And religion is what caused the Crusades and most other wars in the past, and many wars, and bloody disputes, to this very day. Many, many, many, many, many more people have died in the name of religion than in anything that could be called "in the name of atheism".' +p9295 +aS'Old news. There have been accusations of similar stories for years.' +p9296 +aS"So there's no need to be outraged or question a candidate further just on the basis that he represents the lesser-of-two-evils to you? You're using the fact Palin is there to avoid needing to take Biden to task for HIS statements. If, hypothetically speaking, Palin wasn't there at all and Biden had made the statement alone in a stump speech, you would just leave it at that and not take him to task for his position??? Frankly, if he's the candidate you feel best supports gay rights, I would think this statement on his part would be MORE alarming, and all the MORE cause for concern. So Biden was against gay marriage there too? If he's against your right to marriage, knowing why might very well give insight into whether he would change on it at some point or actually be anti-gay in OTHER ways too! Frankly, I find this idea of not probing further to at least try to get some insight into motivations on issues to be pretty odd, let alone not criticizing someone for an anti-gay view just because the other candidate is more anti-gay." +p9297 +aS"Man, these guys can't even get into the science before they're outright lying..." +p9298 +aS'If this is what passes for American healthcare, then your need for change is even more desperate. None of these "treatments" is available on the NHS.' +p9299 +aS"Yes, it is human, biologically. However, it isn't a human being as it isn't alive." +p9300 +aS'Well sigma, which is more painful?? Being burnt with salene for 30 minutes to an hour and if that doesnt work after the 3rd time, being born prematurally and laid on a table and starving to death..... OR A woman sticking a clothes hanger up and accidentally killing herself but intentionally killing the kid within her? seems to me that people dont really care about how the baby feels. It has just as much feeling as the mother.' +p9301 +aS"Humm. More guns, more Concealed Carry and Violent Crime and Murder is down to it's lowest levels since they started to record it. So how can these studies be credible or considered in anyway correct." +p9302 +aS'Ok, now show your evidence. If you have any, that is.' +p9303 +aS'Well! I guess that just showed you guys. It seems that HeavenBound thinks that having a closed mind is a bad thing. And yet,' +p9304 +aS"It's NOT any of my business, but when presenting information to the readers at large, such topics need to be ####ing addressed, something militant pro-abortionist seldom want to bring up. I'm actually happy that you had a good operation and think more should go into ensuring ALL women have the same low risk proceedures when necessary. We're dealing with health aspects, all, not just selective. And there may even be things I'm not aware about to consider." +p9305 +aS'Well, you will find claims amoung this group that \'If Jews understood their own scriptures, they would accept Jesus as their Lord and Savior\', and "Christians are fullfilled Jews".' +p9306 +aS"So umm. What's going on? This was posted a week ago plus about 4 hours ago. I frankly don't care if my opponent posts a day late and would hate to win because of time. BUT the first post was even easier, he could have been typing it as we found judges and I think he mentioned he had started already. I PMed him earlier this week reminding him of the limit and have not recieved a response. Of course maybe the fact that he hasn't logged on since 11/14 has something to do with that." +p9307 +aS"Guess what, I'm pro-life as well, that is why I'm also pro-choice." +p9308 +aS'Generally, when someone posts an article without a disclaimer, they agree with the findings and the reasoning of the article provided. Besides, your statement does not change the fact that the reasoning provided is foolish.' +p9309 +aS'You know what they call people like you? Victims.' +p9310 +aS'Really? What evidence is that?' +p9311 +aS'I would say that the soul is that part of us that is immortal. It is our essence. Our personality may impact or is impacted by it, but I would say it is far more. Indeed, I would say it is what psychologists call emergent downward causality. As for the role of God, science has not disproven any of it. Science has explained how things occur but that does not eliminate the possibility of god nor does it limit what god does. We would simply not be understanding gods fit in the science of it. That makes sense given that god is considered infinite and we are finite. I think the soul is what gives us the possibility of even imagining the infinite. The idea that we can see beyond what we are or even to conceptualize such things gives a clue that there is more to us than meets the eye. I do not see why God and science cannot coexist. Even evolution and creation. Forget planting evidence. That is too far fetched. I would rather think that it is more likely that what God says actually fits the evidence even though we cannot understand it. I do not know about God or "not god" (if you will) but if there is a God then the idea that he is beyond what I can actually conceive and yet completely conceivable makes sense for that kind of being. It should be an apparent paradox to me. If it is not, then my concept of God is faaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarrrrrrrrrrrrrrrrrr rrrrrrrrrrrrrrrrrrr to small to be of any use to anyone. Huck.' +p9312 +aS'Evolution theory is not science at all, it is faith. Period. How can I conclude that? Because an examination of the evidence shows that a bias/ ideology/ Godless belief system is the only real evidence for evolution theory: evolutionist Stephen Jay Gould: ?Our ways of learning about the world are strongly influenced by the social pre-conceptions and biased modes of thinking that each scientist must apply to any problem.? Evolutionary biologist Richard Lewontin said: ?we have a prior commitment to materialism. It is not that the methods and institutions of science somehow compel us to accept a material explanation of the phenomenal world, but, on the contrary, that we are forced by our priori adherence to material causes to create an apparatus of investigation and a set of concepts that produce material explanations, no matter how counter-intuitive?Moreover, that materialism is an absolute, for we cannot allow a divine foot in the door.?' +p9313 +aS'Theres a book my mom has called "The trouble with Islam" by some lady. I don\'t know her name, but it looks like it may bee a good book for you.' +p9314 +aS'And how is this a bad thing?' +p9315 +aS'Mormons believe that Satan is the brother of Jesus.' +p9316 +aS"Good old monkeys! What can't we learn from them Since we are in the Creation vs Evolution section I'm guessing that your debate here is that monkeys and humans show some similar ways of thinking such as in this experiment. It does seem like further evidence that evolution did take place between our two species although it isn't a case cracker by any means." +p9317 +aS"Well, your parents' parents also had parents who had parents who had parents which all streams back down to 2 people who God created...adam and eve. so ultimately your life is a gift from God because the whole human race was created by Him." +p9318 +aS"There's a distinct difference... so what? No baby at any age can live outside the womb. It still needs care and attention like any other. This difference in age doesn't mean anything." +p9319 +aS'Having human DNA does not necessarily make one a human being. Transgenic animals can have human DNA, does that make them human beings.' +p9320 +aS"But wouldn't it make it more likely that a gun dealer that was involved in gun trafficking would be audited and caught by the ATF? If there are less FFLs then the ATF has more time to monitor and inspect each gun dealer." +p9321 +aS"You know Brady, you've said a lot of stupid stuff over the years. I even remember finding a post of yours where you said all guns and gun owners should be registered, but sex offenders shouldn't be. This latest post of yours is just another senseless and stupid rambling of somebody that's so hateful and fearful of an inanimate object that it's impossible for him to function in our society and can barely handle his own needs." +p9322 +aS'Well, if burglars want to steal guns then it makes sense that they would be likely to target the homes of gun owners. And the source is from the recently published book Evaluating Gun Policy which you can read and review. The source is listed at the bottom.' +p9323 +aS'You did when you talked about someone loving objects, or a mokey, etc.' +p9324 +aS"Why would they be useless? They aren't useless on birds? And how is this qustion different in any meaningful way from the above? Aren't wings forelimbs with feathers? It seems that soaring or gliding or even faster running would be extremely useful." +p9325 +aS"I know this is an old posting, but I thought I would add to it. I have built several 1911 clones. Press forge the frame (and slide, sometimes), then mill the parts. I use a CNC mill (about $750,000). A lot fo guys, though, use a $300 minimill from harbor freight. A setup for press forging the parts (press forging is the better modern alternative to drop forging) will set you back less than $200, if you are a good scrounger. Gun building is probably a more common hobby than you might think. It is hard to tell exactly how many people are doing it, because a homebuilt gun requires no registration, permit to build, or any of that other XXXX (unless you are building an NFA firearm, which is a machine gun). There is even a yahoo group about building your own gun. Fro the faint of heart (those who don't want to forge or cast theri own reciver/frame) there are a bunch of places that will sell you an 80% finished reciever, which doesn't count as a firearm from a legal viewpoint. I always buy my barrels since it is too much work to do the rifling. In a pinch, it could be done, it just wouldn't be a competition grade barrel. Of course, most firearms you buy don't come with a stock competition grade barrel." +p9326 +aS'But we certainly have the right to evict such persons. But then, regardless, the embryo is not a person.' +p9327 +aS"Well, that's generally true of any process that uses energy. Some is wasted." +p9328 +aS'the reason why premise 1 can logically stand is that God is first of all defined as the "greatest possible being". no matter what reality we are considering, such a thing as the greatest possible being in that relity must exist. "greatest" is a superlative, compared to all other beings that exist its like "the oldest man alive". no matter what scenario, such a person as the oldest man alive will always exist, therefore such a man (that fits that definition) will have a necessary existence' +p9329 +aS'The 2020 Global Food Outlook answers this as it says that a greater demand for vegetables will correspond with higher prices of vegetables in developing countries. Many articles acknowledge that starving people cannot afford much of any of the food for sale around them, and a greater demand for meat does not necesarily mean a decrease in demand for vegetables as populations grow globally. Since increasing meat consumption is irrational because it will not feed the poor and it will do even more damage to the environment, again, the solution proposed is to support the initiative for developing nations to become more self-sufficient in growing plant foods for themselves.' +p9330 +aS'So do you want to argue my points or do you want to argue me? Which of my bullits are wrong? Which of them are right?' +p9331 +aS"Well, yeah, if science hasn't provided an explanation for a phenomenon, then all we can do is shrug and submit grant proposals." +p9332 +aS'Well right there, you used an oxymoron, "Great" and "Evangelist" got together about as well as Military Inteligence. Secondly, as I stated before...you left too many other questions unanswered about the "Preacher."' +p9333 +aS'Why should I prove anything, you never do.' +p9334 +aS"I think you need to look up euthanasia, and not only for the correct grammar. Those examples are not euthanasia. Abortion is not the same thing as euthanasia. Why don't you just say what is on your mind, rather than setting these ham-handed traps you hope someone will fall into? It is clear what your opinion is. If you have something to say, by all means express yourself." +p9335 +aS"Uh. No they didn't. Have you ever actually taken a biology course?" +p9336 +aS'More likely the criminal will shoot first rather than give the other chap a chance. There is no real reason for the average citizen to need or have a hand-gun' +p9337 +aS'This remains unspecified. (I explained this in the last paragraph)' +p9338 +aS'And those pillars will be replaced by something stronger like equality and Justice.' +p9339 +aS"No it doesn't, as abortion WAS a legal option in this case. This was not a legality issue, but an education issue." +p9340 +aS'Actually it wasn\'t sitting somewhere since there was no "where" to "sit" and "always" and "eternity" have no meaning outside of time and no "time" existed prior to the "Big Bang", maybe.' +p9341 +aS'Really, then show me how I\'m wrong - without dogmatic statements. I would suggest, given the fact that you feel the need to ignore science, deny obvious facts of reason, and cling to evolutionary theory, that it is you that has the problem with religion - your naturalistic religion. I would further suggest that you stop attibuting your personal opinions to science, and start calling your comments what they really are, personal opinion. -By the way, is everyone who disagrees with you promoting a "religious agenda?" Where have I leaned on religion to make my point? And what makes you think that I need religion to defeat your postion as I have here? I\'ve used science, scientific journals, and good sound reasoning to defeat your comments. I suggest you rethink what you\'re saying. It sure sounds like you\'re the one with the "religious agenda."' +p9342 +aS'Well, to say it has no mental existence doesn\'t really tell the whole story. The fetus WILL have (more than likely) full mental existence in a very short time. It seems to me that if you "view humanity with mental existance as important" you\'d also view as important that the unborn baby WILL indeed reach that point, in all likelihood.' +p9343 +aS'would this be considered intelligent design? to me it would be like winding up a top, loading it with paint, and then letting it spin on paper to create a painting. the process is deliberately set in motion, but the painting itself is random and not deliberate. where the paint falls is not by design, even though the overall pattern would be. anyway, to answer the question, there are lots of people who believe in a creator as well as evlution, so the beliefs are not mutually exclusive. the problem is that christianity depends upon the account of genesis being true. spontaneous origin is mutually exclusive to genesis, but evolution by itself is not necessarily. but evolution poses other problems such as the age of the earth and the existence of dinosaurs that creationists are stumped by. in order to belief in evolution, you must, at the very least, disregard the genesis account. and disregarding genesis automatically invalidates christianity. but it doesnt necessarily invalidate the existence of a creator. pretty wierd, huh?' +p9344 +aS'Well, ya know, if you actually, oh I don\'t know, VISITED THE SITE, you\'d see that the "friendlyatheist.com" is a blog-like page (and not the one that is actually giving the info on the evolutionary migration of humanity) and it gave a link to the actual website that we are talking about (the second link I gave): http://www.bradshawfoundation.com/journey/ But then, maybe we\'re expecting a little too much from a creationist.' +p9345 +aS"think about what you just typed, that doesn't make any sense." +p9346 +aS"Obviously not. If the right to life trumps all other rights, then it follows that the mother's right to life and the child's right to life cancel each other out. Mind you, if it's her choice then the pro-life movement endorses such heroism, right?" +p9347 +aS"Apologies, that wasn't my intention. My meaning was this; while it was your conclusion, your use of it as an unsupported 'fact' forced us to treat it as an assumption. We had no way by which we could make it a conclusion - that's the purpose of this thread!" +p9348 +aS'Well, thank you for this thread Santafeur. I must say though that I peruse various threads just to read stuff. The C vs. E topic does not strike a nerve with me. In fact, I also wonder what it is about the human mind that makes people so desperate to want to know how we came about. What difference does it make? We are here now. Could we possibly just accept that we got here somehow, and just move on?' +p9349 +aS"That's the thing, though; even a self-professed non-expert can perfectly well refute the ridiculous points supersport continually spouts. supersport, on the other hand, doesn't know any better." +p9350 +aS'In this case, I will present the Theory of Evolution by Natural Selection as evidence that life is evolving. As the evidence has been shown to support it, you are the person who should be presenting evidence. Currently, your assertion that organisms are "devolving" because of mutations has been shown to be faulty.' +p9351 +aS'You are correct.' +p9352 +aS'But I don\'t hear you saying things like "baseball is always harmful to the player" or "baseball is something no one should have to go through." You see, if pro-choicers only used the \'pregnancy-is-bad-if-forced argument, they might have a point, but they often don\'t add the last part. Besides, no one ever forces a woman to get pregnant in the first place.' +p9353 +aS"Read above for why your argument sucks. Thanks for proving you never ever ever read anything or watch anything given to you. Just assume whatever we want and hope people don't laugh at us?" +p9354 +aS"Because self-defence, unlike most other 'reasons', automatically allows all citizens firearm access, and in most cases allows firearm acess without mandatory training/evaluation. When this occurs, you are much more likely to get misuse of firearms. If you read around you'll see that I consider all rights as needing justification. This comes both from my stance as a relativist and as a UK citizen, where there is no formalised Constitution. Ask yourself this - if a right cannot be justified, why should it be treated as a 'right'?" +p9355 +aS'17-' +p9356 +aS'Yes. (and this is to add stuff to make the post stick....)' +p9357 +aS"Actually, I snipped your remarks because 1) you twisted what I said and 2) I'm already spending too much time arguing with random complainers and I was in a hurry to do something more important at the time." +p9358 +aS'(Note the key word "also," which admits that it\'s human). As for the rest, This is more of the sort of "defensive rationalization" I talked about earlier, i.e. when people find it more rewarding to self-righteously defend their wrongdoings and thus shirk their responsibility to others, than to shoulder the burdens to those they have harmed, and thus they act in self-absorbed narcissism and sociopathic dissociation, while likewise waxing arrogant in self-deceiving affirmation of their own "brilliance" and other superiority to do as they please, by simply denying said consequences however obvious-- illustrated here, by simply calling a fetus a "parasite" and thus daintily strutting off away from one\'s obvious duties to it, despite admitting it\'s also human. However, a human being forced into dependency on another for its life, is not a "parasite," but a VICTIM, and thus has the right to aid from the ones responsible for that dependency. Since you\'ve admitted that it\'s human, then the remainder is plain; it also has the right to aid from the one responsible for its dependency, i.e. the man and woman in question who proximately caused it to be in its dependent situation through their willful actions in full knowledge of that risk. Here, the doctrine of Strict Liability would apply, in that normal sexual contact carries the inherent risk of pregnancy. This doctrine already applies to men, and should likewise apply to women who choose to abort in spite of their responsibility to the prenatal human in question, created and made dependent on her for its life through her intentional actions.' +p9359 +aS"It would be 'an' analogy, but like the language analogy, it has its limitations. It is interesting to note that creationist computer software developers/programmers cannot seem to agree on the implications of 'mutations' when using such analogies - one such person, C.K. Lester, declared that computer programs can accumulate up to 30% 'random change', just like DNA (hypothetically) can, therefore, the computer analogy is a good one. But programmer R. David Pogge declares that even a single altered bit in a line of computer code a million bits in length would destroy it." +p9360 +aS'Actually, submitting samples that will return bogus dates is dishonest. Creationists have done this several times.' +p9361 +aS'I have no idea what this could possibly mean. It makes no sense, semantically or logically. It is so vague as a concept as to be worthless in terms of the pursuit of knowledge.' +p9362 +aS'I believe studies have already been done on that subject.' +p9363 +aS"I think if Islamic fundamentalism shows us nothing else it's that..." +p9364 +aS'True, but what i was trying to state is that the bible has little to do with christianity if you dont believe in it. I know many christians who believe in god, and jesus etc, but think the bible is completely false, and is only a book of fables. Thats what i was trying to imply.' +p9365 +aS'Certainly science has provided part of the answer with their finding of the Mitachondrial "Eve", suggesting that one person can have all the DNA necessary for all the variation in human populations. One of the standard rebuttals you hear is "How did the Kangaroos get to Australia"? I don\'t know if that\'s covered in the Bible... if God transported them or not.' +p9366 +aS"Except it's not. It's perfectly acceptable to morally disagree with drinking and smoking (and encourage others not to do it) and still believe others should have the freedom to choose for themselves. chloe," +p9367 +aS"So you're admitting openly that what is a normal occurrence within the human species is offensive to you. That you find repulsive the very intimacy expressed by your own parents that led to your own existence. Do you see how that innate bitterness against the normal and right feelings that have led to the healthy continuation of the human race is ultimately anti-humanity? Why do you hate the normal propagation of our species Matt? Can't you see that if you were given the power to recreate the world in your image, then the world would cease to exist within one generation? No matter how pro-gay you are, how can you be so anti life in good conscience?" +p9368 +aS"And why would I be anti Christianity when I am Christian? Oh and by the way to who ever it was who said I don't believe in Jesus, or something to that extent, I never said anything to that extent, you just made up what you wanted and got mad about it. I believe in the teachings of Jesus. Yes I'm betting your asking me how I know about his teachings if I have never read the bible, My mom is someone who has re-read the bible like 6 or 7 times. So she's told me all about it, and what its supposed to teach us." +p9369 +aS'Well ... I don\'t think it\'s a light choice for anyone. (Although I\'d imagine, for someone who might be developmentally disabled, for example, it might not mean as much. And I suppose some may not care at all.) I don\'t think it\'s a decision women necessarily struggle over, either, however. Nor should they. For many women, the course of action that they need to take is quite clear. That is, whether or not someone \'should\' have a difficult time with this decision, I don\'t agree. And, I don\'t think women\'s motivations in getting abortions, or their personal behavior ITO becoming pregnant are anyone else\'s concern. Or even if they do have an abortion *blithely*. (Distinguishing from policies about public health education.) I just think people have to do what\'s right for them. Finding that or reaching a decision -- well, people are different and have different lives. They have different understandings of biology, different health issues, different relationships, different economic positions, different religious views, or none at all. The circumstances around the pregnancy, different. I don\'t agree with the "potentiality" issue either. If *someone* isn\'t there *yet*, they\'re not in existence, period. I think there\'s just an understandable human reaction to the beginning of life being taken. It\'s not "potential" life. It\'s life all right. But there\'s no individual except in our imaginations. To me, viability, sentience, the development of the nervous system and the brain, and the experience of pain in a fetus during the third trimester begin to mark the ethical boundaries. But those, too, as indicators, are not absolute. And the woman comes first. It\'s between her and her physician. It\'s not my job to judge whether she suffered appropriately enough or not. And I don\'t think anyone should have go through any demonstrative motions one way or the other for the anti-abortion camp. It\'s none of their business.' +p9370 +aS"Iangb, I would have thought that you would be intellectually honest enough to have (at least) accepted the fact that I have supported my claims. I also thought that (by now) someone from your side of the abortion issue would step in (in this thread or by private message) and hold you to your claims of being 'intellectually honest.' At this point, I actually have you questioning Planned Parenthood's definitions? QUOTE;" +p9371 +aS'Can I tidy up this leftover part...? Fractionally.' +p9372 +aS"Cases v United States, 131 F. 2d 916 (1st Cir. 1942), cert. Denied sub nom., Velazquez v. U.S, 319 U.S. 770 (1943). Basically, The US Curcuit Court upheld that the Second Amendment didn't apply to weapons that couldn't be carried by an individual." +p9373 +aS'Evolutionary scientists is a confusing term. A geochronologist might work out an age for a lava sample for example. Astronomers have also made comment on the age of the earth as have paleontologists studying certain fossils. So why would no flood make radiometric much more likely to accurate as you say? Can we hear some specific detail on this as it is kinda significant to backing you your assumption.' +p9374 +aS"This whole thing is simply an epistemological argument, for which there is no answer. What is the nature of knowledge? There are positivists (Abe here) and there are constructivists (what Abe says you have to be if you don't believe in god.) This is a metaphysical debate that is decades old and it simply depends upon your point of view for the purpose of the discussion at hand." +p9375 +aS'Since when are profetallifers "reasonable people"? How reasonable can it be for them to try to impose their particular answer to a metaphysical question on others who believe differently?' +p9376 +aS"I think the OP said it pretty well. If an organism or cell can process information and then make decisions based on that information, that's intelligence." +p9377 +aS"I believe that the vast majority of people, if they are well-informed about responsible sexuality, have access to contraception, and are of reasonably sound mind, would much prefer not to experience an abortion and would take precautions to avoid such a possibility. It is rather tiresome to hear careless and irresponsible talk of whorish women who seek to become pregnant solely so that they may exercise their right to an abortion. I have never met such a woman. To be sure, there are unbalanced individuals who are riddled with guilt over sexuality and these individuals are incapable of being sexually responsible. I don't associate with such people and since I have never encountered such a person, I must believe that this sort of person comprises a very small minority. But with the amount of bluster and piffle to the contrary, I must wonder whether or not such blusterers have any connection at all to what really is." +p9378 +aS"That's true, but how much have we actually learned, and how much have we theorized, with an atheist presupposition, the only presupposition currently allowed?" +p9379 +aS'This joke is based on some reality, "the conquest of the North Pole is traditionally credited to Anglo-American Navy engineer Robert Edwin Peary, who claimed to have reached the Pole on April 6, 1909. Anyhow, not all jokes are completely true, how many stand up comedians have you heard??? If you were to nit pick every joke out there (being politicaly correct etc) there would be no jokes left!' +p9380 +aS"Actually, Peeling and others on this thread have proven you and Cash to be utterly wrong. The fact you don't recognize this is irrelevant." +p9381 +aS'why the comparison of gun owners yo violent killers and serial rapists? What law have I broken? Since we are doing comparisons your anti-freedom agenda is very similar to the bazi gun control laws of the 1930s, it is like the jim crow laws of the US. Your agenda is one of racism. This is insulting, ignorant, and shows your true colors as an enemy of freedom.' +p9382 +aS"Tell that to CDC pathologists. Or just read this post. ETA: Alternatively, let's look at the logic in this way: because the field of quantum mechanics is useless for helping me describe classical physical systems, quantum mechanics must be wrong. I think this illustrates the fallacy satisfactorily." +p9383 +aS"Paranoia is so ugly. It's not OK to teach scientific theory but it is OK to tell them that mythology is fact?" +p9384 +aS'Mayabe this is a miniscule amount of suffering compared to what awaits you on the flipside. Weather it be an eternity of Bliss or agony and suffering. Who really knows. Mayabe those who have this happen to them have it coming to them?' +p9385 +aS"But poetry will never be taken seriously in political decisions. Atheists have a lot to like in songofgenesis, don't they? another quote" +p9386 +aS'and how do you know this......oh I see...you said "I think"....but you don\'t really "know" what most Americans favor or don\'t favor...you just "think"' +p9387 +aS'No, but in some cultures they mutilate them for meaningless tradition.' +p9388 +aS'According to Gallup about 8% of the U.S. population is atheist. Another poll by CUNY found that 7.7% of those polled responded that they had no religion.' +p9389 +aS"Look up the evolution of colour vision in primates. It's my personal favourite - but what do you think?" +p9390 +aS'You know that what you call "immoralism" is my life. Why do you hate me so much that you would be willing to deny my the happiness that you take forgranted and as your due? You don\'t even know me yet you are willing to defame me just because I am different from you. I don\'t understand how I am running over you by living my life openly and wanting the same thing as you the right to consider whom I choose to be my family. If you have an opinion about gay rights thats fine. If you want to deny me the same rights, as you take for granted, because of your opinion and beliefs though laws then that is bigotry.' +p9391 +aS'GOD was proved not to exist many years ago details if you wish. GOD was proved to exist many years ago details if you wish. IRAQ was proven many years ago to be a justifiable war.\\ IRAQ was proven many years ago to be a non-justifiable war. And so it goes. Most such proofs are hot air, unsupported distrortions. Hovind is of course good at that particular game.' +p9392 +aS"Well I ####,moan,and bitch about it to and I know I can't prove anything,but do'nt logic say an AK47 ASSAULT RIFLE not semi auto but the real deal is going to cost hundreds less south of their border,Know doubt the same for an M16.Also you don't have to worry about smuggling them in as much if at all.Besides it getting harder all the time to get your ASSAULT RIFLES(you know the full auto type)not to mention hand grenades and rpgs at your corner gun shop anymore.Oh yeah less not forget the gun shows,and all there loop holes. Jus a thought." +p9393 +aS'So redemption is not a possibility? They did their time, paid the penalty, and just want their rights as a citizen returned to them....l' +p9394 +aS'Heart bypass, prostate cancer.......I have a couple of Canadian friends who needed those surgeries and one was told he had a 4 month wait and the other a 6 month wait so they both came down to Bellingham Wash and had the Surgery within 2 weeks............' +p9395 +aS"So what? I don't care! Gun ownership is an individual right and that's the end of it! You don't have to exercise a right hundreds of thousands of times a year for it to be protected by the Constitution." +p9396 +aS'and this:' +p9397 +aS"That's simply not true;" +p9398 +aS'Really? Intra-species evolution and inter-species evolution are one and the same? *edit* I was reading on micro-evolution in wikipedia, here is what they had to say...is this incorrect? "Typically, observable instances of evolution are examples of microevolution; for example, bacterial strains that have become resistant to antibiotics. Because microevolution can be observed directly, both pro-evolution and some anti-evolution groups agree that it is a fact of life."' +p9399 +aS'Tell me who directed it.' +p9400 +aS'This is different than stating that abortion is the same, in principle, as killing a born child. We are back on the question of "Why would someone do this horrible thing" which pro-life people continually ask and has been answered in many ways by many people. There are many threads on the subject That the fetus did not come into existance by it\'s own choice is really irrelevant. That it did not cause problems of it\'s own actions does not mean that it does not cause problems.' +p9401 +aS'Actually, I believe it was a Reagan policy continued by both Bushes.' +p9402 +aS'President Obama!? What did I win!?' +p9403 +aS"And my interpretation of my writing is that I didn't mean that. Who has more authority?" +p9404 +aS'And folks that refuse to see the legitimate ones put us all at risk. Touche.' +p9405 +aS'Exactly. It is their fault, but they can do what they choose. It is punishment and you know it, and it is not your job to make sure no "irresponsible" pregnant woman goes unpunished.' +p9406 +aS'Actually, if you bothered to pay any attention whatsoever, it actually goes against your point entirely. Just because WSM and I were both in "heterosexual" Style relationships, doesn\'t change the fact that both of us are indeed homosexuals and therefore proves that homosexuals do indeed have children, planned or not. Mine too was kind of a suprise. I was on the "pill" but was also taking antibiotics at the time and for anyone who doesn\'t already know, antibiotics will completely cancel out the affects of the birth control pill. I was NOT aware of this at the time and low-and-behold I ended up pregnant with my son. p.s. just for general information, I was not taking "the pill" for birth control reasons. Not all women who are prescribed it are even sexually active at all. The birth control pill contains synthetic or naturally dirived female hormones, which for some women aids them in attaining a more regular period. Many women atheletes are prescribed birth control because being extremely athletic can disrupt, postpone or completely do away with a woman\'s natural cycle. Taking birth control helps to "normalize" female hormone levels. Such was my case.' +p9407 +aS'Nearly all animal phyla* made their first appearance in the fossil record at essentially the same time, an interval of some 5 million years [ET**] (about 525 to 530 million years ago [ET**]) called the "Cambrian Explosion."51 Scientists have found that these early fossils exhibit more anatomical body designs than exist today, and that early animals, the trilobites, had eyes as fully developed as their counterparts today.38 Many of the Cambrian fauna, still survive today, all looking much like they did over 500 million [ET**] years ago. The prominent British evolutionist, Richard Dawkins, comments, "... [W]e find many of them already in an advanced state of evolution, the very first time they appear. It is as though they were just planted there, without any evolutionary history."51 Two places in the world that have an abundance of early (Cambrian) fossils; the Burgess Shale in the Canadian Rockies and the Chengjiang site in China.38 In Stephen J. Gould\'s popular book, Wonderful Life, he points out that the Burgess Shale Cambrian fossils include "a range of disparity in anatomical design never again equaled, and not matched today by all the creatures in the world\'s oceans."38 Further, these fossils contain some twenty to thirty kinds of arthropods*** that cannot be placed in any modern group. The modern arthropods, consisting of almost a million species, can all fit into four major groups. But "one quarry in British Columbia, representing the first explosion of multicellular life, reveals more than twenty additional arthropod designs." Today there are about 38 phyla in existence, but the Canadian, Chinese and other Cambrian sites reveal over fifty phyla.38 There has been a decrease in diversity (probably due to global catastrophes). This is the reverse of what evolutionary theory predicts.38 Besides diversity, the Burgess Shale shows exquisite detail, right down to "the last filament of a trilobite\'s gill," or the last meal in a worm\'s gut.38 The Chengjiang site has even greater detail, and is earlier. According to Paul Chien, the chairman of the biology department at the University of San Francisco, said the preservation is such that internal organs, nerves, and even the water ducts of jellyfish are observable.38 Researchers found striking similarities between the compound eyes of the Cambrian trilobites and those of modern insects. According to Riccardo Levi-Setti, "Trilobites could see in their immediate environment with amazingly sophisticated optical devices in the form of large composite eyes. ... The number of individual optical elements in the compound eye could vary from approximately one hundred to more than fifteen thousand in a single eye, a range not very different from that found in modern insects."38 The conclusion is that the eye, a complex visual system, was fully formed and functional extremely early in the fossil record. Obviously, this is not predicted by evolutionary theory.38 Until recently, the phylum of vertebrates had been considered a later arrival in evolutionary history. But not now! Even the vertebrate phylum now extends into the Cambrian period, especially with the recent discovery of two fossil fish in China.51 The two new fossils . . . from Chengjiang are the most convincing Early Cambrian vertebrates ever found. The insects and other land invertebrates are also a very important group, and these practically all seem to be living fossils.51 These complex animals were present at the beginning of multicellular life and did not appear later as is predicted by evolutionary theory.38 Evolution does not explain the abrupt appearance of complex forms of life early in the fossil record or these fossils\' unequaled diversity. The implication of the Cambrian explosion of diverse, fully functional, and multicellular life is that evolutionary theory is falsified.38 Life did not start out simple and evolve into more complex and diverse animals; it was complex and diverse right at the beginning. This contradiction between the fossil data and the predictions of evolutionary theory falsifies the theory.38 "The facts of paleontology seem to support creation rather than evolution. All the major groups of invertebrates appear suddenly in the first fossiliferous strata. (Cambrian) of the earth with their distinct specializations, indicating that they were all created at almost the same time." - David Enock Associate Professor of Biology. BS Yeshiva College, MS Hunter College50 Even George Gaylord Simpson, Harvard high priest of evolution had to admit, \xe2\x80\x9cIn spite of the examples, it remains true (as every paleontologist knows) that most new species, genera and families appear in the record suddenly, and are not led up to by known, gradual, completely continuous transitional sequences.\xe2\x80\x9d50 http://www.straight-talk.net/evolution/explosion.htm' +p9408 +aS'People are protected by law from being harassed, assaulted and/or murdered because they are people. Not because they are a certain religion. Because they are people it would be wrong to allow such things.' +p9409 +aS"Actually, most people do not hold the view that existing marriages should be dissolved. In Massachussetts, it's quite a minority view, almost as low as Bush's approval rating. In any case, that is irrelevant. I was pointing out why someone might reasonably ask the question you consider so inappropriate. What I haven't seen, either from you or from any of the articles, was what the firefighter's answer was or why he refused to answer. From what I can tell from the scant coverage, he avoided answering but had no trouble discussing his political views. Odd, I think.. or just crappy coverage." +p9410 +aS'OH? What U.S. Code governs that? What does it say?' +p9411 +aS"You still don't get it. How many times does it have to be explained to you? Populations evolve. No change of any kind in a single organism is evolution. Evolution is the changes in the hereditary (genetic) makeup of populations over time. You continue to display your ignorance. Evolution is a process that takes place in living things. Just because all of science contradicts your childish belief in mythology doesn't mean that all science is evolution. Because cosmology contradicts your mythology, it must be evolution. Because astronomy contradicts your mythology, it must be evolution. Because geology contradicts your mythology, it must be evolution. And that is why creationists are such scary people. Their morality comes from a book and threats of eternal punishment. The fundamentalist christian morality is so shallow that they are unable to conceive that others can actually have a higher morality based on self respect. And that is meaningless babble. Evolution is a process that has been observed whether you like it or not. It is not a moral statement nor is it a statement of faith. It does not deal with government, laws or culture. Whining about it won't change it." +p9412 +aS'Yep, he dodged it again. Care to explain your views on Creation in the Tanakh for the folks here?' +p9413 +aS"I'll have to apologize here, SoC. I confused you with another poster who also used Christ in his handle. You didn't run from the topic because you weren't the OP of that thread. Sorry about that. If you'd still like to approach that thread, I'll respond and provide the link, but all readers should be clear that my accusation that SoC scampered away was mistaken, and any willingness to address the arguments would be solely to SoC's credit." +p9414 +aS'Speaking of which, did you happen to see this image that someone kindly forwarded to me? http://iowntheworld.com/blog/wp-cont...iew-lo-res.jpg' +p9415 +aS'I see, thanks for answering my question.' +p9416 +aS'Some apply logic, some do not. So much for contradictory thinking. What evidence do you have that suggests logic exists outside of the human mind? Hold the mythology, please. from infidels.org - The Concise Oxford English Dictionary defines logic as "the science of reasoning, proof, thinking, or inference." Logic will let you analyze an argument or a piece of reasoning, and work out whether it is likely to be correct or not. It\'s worth mentioning a couple of things which logic is not. Firstly, logical reasoning is not an absolute law which governs the universe. Many times in the past, people have concluded that because something is logically impossible (given the science of the day), it must be impossible, period. It was also believed at one time that Euclidean geometry was a universal law; it is, after all, logically consistent. Again, we now know that the rules of Euclidean geometry are not universal.' +p9417 +aS'To force women to have babys that they dont even want is even more "preposterous".' +p9418 +aS"BWAHAHAHAHHAAH! Innocent citizens are FIVE TIMES more likely to be mistakenly shot by a cop, than a cop even DELIBERATELY by a civilian! Likewise, if my life is in danger, then I'm not really too worried about my lack of accountability to the person choosing to ENDANGER it; and I'm really sure if he's willling to commit armed murder then he's not too worried about misdemeanor gun-laws. Psht, it's amazing how stupid, naive and arrogant these anti-gun XXXXXX are. It's easy to get cute when someone ELSE'S life is on the line, but it's just plain evil to use the guns of the state, to take away someone ELSE'S guns and expose them to danger-- and particularly cowardly and hyopcrticial while cringing behind a safe neighborhood and lifestyle, while hiding from potential danger-- than shamelessly attacking those who simply fight BACK." +p9419 +aS'as far as all observable evidence dictates, the laws of nature are what sustains the universe. there is not one single function of nature that isnt on "autopilot" as it were. that is, no function needed to sustain the universe occurs outside of natural law. what\'s more, nothing that defies natural law (whether universe-sustaining or not) ever occurs in observable reality I\'m glad you responded Nu Leader. this is this issue that really hits the religion/science divide. as it is, God has been gradually and subliminally coralled in the spiritual realm. there is absolutely nothing in the physical and observable world that is a function of God, or a manifestation of supernatural power. in other words, in the realm of the physical, God has no turf. even if God does exist, he does not (and by biblical definition, cannot) physically manifest his being nor the effect of his power this leaves us with the spiritual realm. this realm, whether it exists or not, does affect people. yet this realm is as elusive and intangible as God himself. the same realm that God is believed to abive and reign in, is said to be the same realm that humans enter only when they die. i have many thoughts about the effects of this spiritual realm on reality, but for now i think its sufficient to say that God is limited to the spiritual realm only' +p9420 +aS'What do you mean by this? Could we not have the law treat under-18 capital offenders on an individual basis, determining whether the individual offenders in the individual cases were sufficiently developed? Also, what would you say to the response that our current law provides that juveniles are sufficiently developed enough to have the responsibility, without parental involvement, to decide whether to obtain an abortion? Is it not a conflict to say juveniles should not be eligible for the death penalty because they are not morally developed enough, but at the same time say juveniles are morally developed enough to decide whether to obtain an abortion without involving their parents?' +p9421 +aS'It would be a great scientific discovery.' +p9422 +aS"Because the effectiveness of other methods don't come close to that of owning a gun for personal protection. If they did then the police wouldn't have guns because it would be redundant and not cost effective." +p9423 +aS'But then it also doesn\'t answer the question "does anything exist", nor does it answer an infinite number of "existence" questions. Do "trolls" exist, follows the same reasoning. If you find one, they are no longer a fairy tale/imaginary creature, they are some organic life form that can be measured, tested, and quantified..i.e. no longer an imaginary creature. So they can no more be found than god. So replace god/troll with an infinite number of other imaginary things and you\'ll see why the question "Does god exist?", has no real importance in the physical universe. (does the tooth fairy exist, does a unicorn exist, do flying pigs exist, etc.) In fact, I like that statement. The existence of god is not imporant... Rather - the FAITH in god(s, etc.) is what is "important", and the thoughts most certainly exist in the physical world and have a measureable impact. I think that\'s why I don\'t mind so much "religion" per se, it\'s the human condition that brings suffering, and uncertainty, into our lives and for some people, the feelings brought about by their faith seems to treat the condition. (the human condition also brings joy, love, etc., but I\'d like that without the pain personally) I only mind it when things in the physical universe are "attacked" with the premise of belief in god(s), which is a waste of human energy...we have a limited time, don\'t spend it using fallacy to undermine those who are actually trying to build on the foundation of human knowledge. And any belief in something without evidence scares me if it becomes a driving force behind decisions. ...she\'s a witch because she MADE the crops die...she must be burned. ...he broke "god\'s" law and therefore must be guilty.. ...this is "god\'s" war.. Yeah, that still scares me. That\'s why I think, at least in the US, the seperation of church and state is so ridiculously important, and accepted. While there are fundamentalists that rail against it...it\'s hopefully obvious that with ~80% of the US believing in an imaginary "god", but also having a separation of church and state and the most generally advanced scienctific community in the world, then the two can obviously co-exist, and I\'d go so far as to say thrive as long as the line is drawn and not crossed. I learned something in responding, thanks for the spark. -Mach' +p9424 +aS'Maybe you\'ll have to clear up the difference between "understanding" and "knowing." I know what I think the difference is, but I need to know what you mean when you say "I understand that there is definitely no god." Personally, I understand that we have no verification one way or another. All I know is that I don\'t know one way or the other.' +p9425 +aS'To me, part of the point of the "please, no scripture" comment would be to forgo any insistence that we worship God just because the bible says to. A person could insist that sons pay some form of homage / respect to their father on Father\'s Fay, but I would argue that it\'s not reasonable to do so in every case. For example, if the father was physically or sexually abusive, or the father abandoned his children, those would be reasons to fore-go any Father\'s Day formalities. And "God" could be viewed as the absent father. Suppose we assume that he created the earth and life on the earth. What\'s his involvement been since then? Should we worship him just because he\'s God? Or, depending upon how one sees God, is God a being unworthy of worship and idolization? And along those lines, utilizing the Bible as a reference could be a double-edged sword. The "God" of the Old Testament ordered slavery, misogyny, genocide, women as spoils of war, ...' +p9426 +aS"Don't you think this would fit the 'Creationism is nothing but lie's thread a bit better? Although I notice The Skeptic making disparaging remarks about your examples, it seems he attacks you more than deal with the well documented examples you have." +p9427 +aS"Do me a favor. Write, in your own words, two paragraphs. One explaining the electromagnetic spectrum (and the visible spectrum's place in it), and one discussing rods and cones in the eyes." +p9428 +aS"Microevolution has occured. Several times over and recorded in the lab and the natural world. [quote] Give me one peer reviewed paper . Just one. Not the latest dogma from talk origins . 29 evidences for bs.[quote] Huh. Guess you're wrong. [quote]Talk Origins does your thinking not mine. Give me peer reviewed documents not the latest political/religious factions babblings. Of course they don't exist but how could they? [quote] And how does that mean evolution is wrong and creation is correct? You do realize that even if you somehow manage to prove evolution false (not likely), you are still miles from proving creation right?" +p9429 +aS'Because their properties are contradictory.' +p9430 +aS'He was using it as an example. He was saying that if something in your life causes you to sin, get rid of it! BTW, thanx for giving me the references to your verses! It is really annoying to have to search through the Bible to find verses that people quote without references.' +p9431 +aS"The thing is, Bush didn't live in Canada." +p9432 +aS'By removing you mean Killing the innocent of course, which is different to imprisonment of the criminal.' +p9433 +aS"Jurassic Theropods like Compsognathus had hollow bones. http://www.cbv.ns.ca/marigold/histor...gnathuspic.jpg Therepodian dinosaurs show clear general skeletal affinities with modern birds such as long limbs, hollow bones, foot with 3 toes in front and 1 reversed toe behind and a long ilium. Coelophysis, from the late Triassic was one of the first theropod dinosaurs. Deinonychus and Oviraptor from the late Triassic to the Cretaceous were bipedal advanced theropods, larger, with more bird-like skeletal features: semilunate carpal, bony sternum, long arms and reversed pubis. Striking detailed similarity to birds. There is a gap in the fossil record here although Protoavis could belong here, unfourtunately, the fossil is poor. Archaeopteryx from 225 Ma, shows a mosaic of reptilian and avian features, with the reptilian features predominating. The skull and skeleton are basically reptilian (skull, teeth, vertebrae, sternum, ribs, pelvis, tail, digits, claws, generally unfused bones). Bird traits are limited to an avian furcula (wishbone, for attachment of flight muscles; recall that at least some dinosaurs had this too), modified forelimbs, and -- the real kicker -- unmistakable lift-producing flight feathers. Archeopteryx could probably flap from tree to tree, but couldn't take off from the ground, since it lacked a keeled breastbone for large flight muscles, and had a weak shoulder compared to modern birds. (Wellnhofer, 1993) S. santensis from 138 Ma was a better flyer than Archaeopteryx. It had a short trunk, claws on the toes, flight-specialized shoulders, stronger flight- feather bones, tightly folding wrist and short hands. A not yet named bird/dino from 131 Ma has a reptilian pelvis and legs, with bird-like shoulders. The tail is medium-length with a fused tip. Then there's Hesperornis, Ichthyornis, and other Cretaceous diving birds. There are many fossils. Their skeleton is further modified for flight showing fusion of pelvis bones, fusion of hand bones and a short, fused tail). It also still had true socketed teeth, a reptilian trait. There are others and this is by no mean exhaustive. This is just to show that there are very good transition lineages. Although no modern birds have teeth, chicken bills can be induced to develop teeth, indicating that chickens still retain the genes for making teeth. There is also an intriguing fossil Microraptor gui that has flight feathers on both the front and back legs. http://eur.news1.yimg.com/eur.yimg.c...2567138235.jpg I can provide more info on any of these if you wish. References Wellnhofer, P. 1993. Das siebte Exemplar von Archaeopteryx aus den Solnhofener Schichten. Archaeopteryx vol.11, pp. 1-47. [Description of the newest specimen of Archaeopteryx, with some more features that unite birds with dinosaurs." +p9434 +aS'Obviously not about abortion.' +p9435 +aS'You need to read what people say more thoroughly, and think about it before you respond. When he said "can" (and there are not many simpler words than that!) It didn\'t mean "will", "must", or "shall" be more aggressive. It has been shown that in some cases it "CAN" happen. It may not have happened with you. It still might, we don\'t know. We might even say that it is not likely to happen, but we can\'t say that it won\'t, because sometimes some people do behave more aggressively when they have a gun.' +p9436 +aS'Prove it then. If this is a fact, there will be research on the subject on the net somewhere comparing the effects of the two. In terms of addiction, alcohol is far worse than pot apparently. http://www.tfy.drugsense.org/tfy/addictvn.htm' +p9437 +aS'The Civil War was fought to establish the principle that each person owns his own body - a principle that the pro-life crowd is trying to destroy. Each owns his own body? Are you talking about the woman or the child in the womb?' +p9438 +aS'You consider the county to be like Rosa Parks???' +p9439 +aS'And you believe that to be what? You really need to just say who/what you think the Creator is to save us from having to make all these clarification posts.' +p9440 +aS"Is that all you've got?" +p9441 +aS"It's your article, not mine" +p9442 +aS"As the Christian Right's poster boy, this is hugely damaging, don't you think? Also makes him very hypocritical (or, dare I say, a FLIPFLOPPER?! ) since he is campaigning against open abortion now." +p9443 +aS'Well he has further political aspirations..........The 9th circuit in Sodom (SF) is always making law instead of interpreting it........That is why they are over ruled so often.......' +p9444 +aS'The curriculum is legal outside the public school system, and used in private schools. (I left a couple of sample links on the other board.) So do you see those private schools as engaged in child abuse?' +p9445 +aS'No Steve, I realise that there are hetersexuals who practice that filthy pastime of anal sex and other sex acts that the human body is not designed to do. Heterosexuals have no more business doing these things then homosexuals. Do you realise Steve that E Coli bacteria inhabit the rectum and are in feces? Do you know how sick and E Coli infection can make you? Sodomy is akin to having sex in raw sewage.' +p9446 +aS'Yes Chrstians should be disarmed so the "moral" atheists, humanists, pagans who crucified people should rule over us . . . that would give everyone a warm fuzy feeling inside. Matt 26: 1 And it happened, when Jesus finished all these sayings, He said to His disciples, 2 You know that the Passover is coming after two days, and the Son of man is betrayed to be crucified. Of course there are valid reasons why Christ armed His men. Romans 13: 1 Let every soul be subject to higher authorities, for there is no authority except from God, but the existing authorities have been ordained by God. 2 So that the one resisting authority has opposed the ordinance of God, and the ones opposing will receive judgment to themselves. 3 For the rulers are not a terror to good works, but to the bad. And do you desire not to fear the authority? Do the good, and you will have praise from it; 4 for it is a servant of God to you for the good. But if you practice evil, be afraid; for he does not bear the sword in vain; for he is a servant of God, an avenger for wrath to the one practicing evil. 5 Because of this, it is necessary to be subject, not only on account of wrath, but also on account of conscience. 6 For on this account you also pay taxes, for they are ministers of God, always giving attention to this very thing. 7 Then give to all their dues: to the one due tax, the tax; to the one due tribute, the tribute; to the one due fear, the fear; to the one due honor, the honor. Luke 11: 21 When the strong one, having been armed, guards his dwelling, his goods are in peace. 22 But as soon as one stronger than he comes, he overcomes him; he takes away his armor on which he relied, and deals out his arms. "a moments notice..." Well it appears the guaranteed scheduled time is on the day of judgment. Luke 19: 27 But these enemies of mine, those not desiring me to reign over them, bring them here and execute them before me.' +p9447 +aS"Because you've presented no credible evidence to support the claims that private transactions are an established and major source of firearms for criminals. If you can't prove it's broken, you don't have grounds to call for fixing it." +p9448 +aS"I've never been to Amsterdam. A friend of mine went and he liked it. I'd like to go someday. Hell, I'd just like to get my XXX anywhere, really." +p9449 +aS'What, specifically, are you witnessing? A baby being born? A prayer apparently being answered? A near miss? Mysterious coincidences that you interpret as being the work of God? Or do you see dead people rising up out of the grave? And people walking on water? And people turning water into wine and feeding a crowd with a small amount of food? What kind of miracles are we talking about here?' +p9450 +aS"This past Saturday, my partner and I had a commitment ceremony or wedding if you say care to say.....In my state it is not legally bindingm we did it anyway.....it was more about the emotional commitment two people make to each other in the presence of their friends and family. I tried so hard not to, but when the celebrant asked me to repeat after him, with the vows I wrote my self.....I tried and tried and tried, but couldn't speak. I was too moved by the moment and all I could do was cry.... I love my partner with all my heart....So I wanted to get through, I thought about our taxes (didn't work). So thought about everyone in their underware.....contrary to popular opinoin that doesn't work either..... I managed to get the words out (don't know how) just did! This marriage is just as perfect to us, and those that were our witnessess.....as any heterosexual wedding...... The rest of the night was blur, between 50 people wanting my attention and me being really buzzed on white wine.....oh my oh my.......I was pretty shocked! Marrige is what you decide it is, regardles if the gov was to see it....I am now married.....like it or not." +p9451 +aS"So? In your religion's view, everyone sins. Their sin is no greater or more unforgiveable than yours." +p9452 +aS'Originally Posted by Symbiote a) In medicine, the use of antibiotics, the understanding of what causes resistance, and what kind of treatments can be used to avoid resistance. The knowledge that virii (like the bird flu) can easily evolve over time to spread through different organisms, resulting in preventative measures to prevent deadly diseases effecting humans. ender Krum: This seems to be micro, not macro, evolution. I am still having trouble combining micro and macro evolution. Could someone address the following statement from wikipedia on micro-evolution? "Typically, observable instances of evolution are examples of microevolution; for example, bacterial strains that have become resistant to antibiotics. Because microevolution can be observed directly, both pro-evolution and some anti-evolution groups agree that it is a fact of life." Walking-fish: The mechanisms of mutation, gene flow, genetic drift and natural selection that work for microevolution below the species level, also work at the macroevolutionary level (why wouldn\'t they?). However, some biologists put more emphasis on the role of mutations of developmental genes at the macro level to push the changes that lead to higher taxons. The most often quoted example here is that of Stephen J Gould, who proposed that the jaws evolved in fish as a result of such genes causing a shift in the position of the first 2 gill arches relative to the others so they could be free to evolve as jaws. I think that these drastic genetic changes would be the only discernable difference in the mechanisms between micro & macroevolution. As for the "typically observable" examples of evolution, I\'d like to add that observed speciation events cross the threshold between micro & macro. Also, lineages in the fossil record are easily observable. Genetic markers are, likewise, observable evidence of macroevolution. So it is perfectly legit to say that we can indirectly observe macroevolution by way of this kind of evidence.' +p9453 +aS'Well, if you breed them, you could get taller monkeys with less hair (and other humanlike characteristics). Even so, it would take a long time.' +p9454 +aS'They are both written in the bible. Neither of them have any evidence (apart from the bible) to support their existence. One of them has been proven to be utterly false. This naturally discredits the other, as they appear in the same publication by the same author. Why decide one is true when the other is clearly not, and neither have any other supporting evidence?' +p9455 +aS'Because? The conventional big bang is just as unlikely as God. Therefore your claim is wrong. However the current believe mainly among physicists and astronomers is that there is no end and there is no beginning to the universe. Expansionary theories along with contractionary theories that are being observed have led many to believe that the current universe was born from the death of the last universe. There is no end and there is no beginning. You are out of your league.' +p9456 +aS'So we agree..... What I want to know is why the vocal homosexual \'lobby\' insists on the term "marriage?" emclean, the sanctity of marriage would not be the only thing about marriage to be (harmed?) changed. The whole definition of marriage would change, too.' +p9457 +aS'The article cautions on blithely using natural selection as an explanation for the features of the genetic code. Article 9: In this article, the functional integrity and how the architecture of the code relates to it is discussed. From the article:' +p9458 +aS'Done' +p9459 +aS'Following the original purpose of this thread, I will summarize my own views on abortion. (Note, this is copied from an older survey on abortion beliefs - a thread in the abortion forum called "Survey of views on abortion"): For me, the question of abortion rights comes down to a balance between the rights of the mother and the rights of the fetus. On the side of the rights of the mother, there is a very important right to the control over one\'s own body and to not be forced to carry something as important and taxing as a pregnancy against one\'s will. Some may say that, in agreeing to have sex, a woman is agreeing to a pregnancy, but I strongly disagree. A pregnancy is a possible outcome of sex but only has a very small percentage chance if birth control is used. It would be like saying that you agree to be mugged if you walk in a bad neighborhood. The great majority of sex acts - for both married and unmarried women, religious or non-religious, conservative or liberal - are not done for the purposes of having children but are done for emotional and/or purely physical reasons. Pregnancy is the goal for only a minority of sex acts. So, women are not agreeing to a pregnancy when they have sex. In the case of unwanted pregnancies, it is a significant burden that they never agreed to. If they are forced to carry such a pregnancy, it would be a strong imposition against the rights over their own bodies. On the other hand, one has the rights of the fetus. What rights the fetus has depends on your belief system and priorities. For me, the most important thing when it comes to the rights of any human being is whether or not there is a mental existence - at least a rudimentary mind. I believe that I did not exist until I started to mentally exist and that applies to all others. My view is that, once a mental existence begins, the right to life of a fetus kicks in and takes priority over the mother\'s rights over her own body, under most circumstances. The neurological view is that a mind cannot exist before the third trimester. Therefore, I would allow abortion-on-demand for the first and second trimester and restrict it in the third trimester. For that third trimester, I would limit abortions to those that are done to mitigate a significant risk to the mother\'s life or physical or mental health (ex. leading to, say, paralysis or strong possibility of suicide, etc.) and, in case of severe incurable deformations of the fetus discovered late, to end the life of a fetus that would otherwise strongly suffer (i.e. mercy killing). Otherwise, I believe abortions should be restricted. If a woman has not decided on an abortion by the third trimester, she should have to carry the pregnancy to term (minus the perviously mentioned exceptions). She would have had ample time to decide. Lastly, here are a couple of links which describe the neurological view of a mind not existing before the third trimester: Part 4 of http://www.2think.org/abortion.shtml http://7e.devbio.com/article.php?ch=21&id=162' +p9460 +aS"But you can't. You may imagine it but you can't present evidence that supports your position. You can only argue against what you don't understand in the first place. I generally make it a rule to keep my mouth shut unless I have actually had the integrity to educate myself about the basics of a topic. You don't seem to do the same." +p9461 +aS'just how i said it... opinion... like, what you think of it' +p9462 +aS'Just on my way out, saw this, and YES! I have long believed that this is the heart of the matter, and have tried to make this point with little success from time to time. I have never seen a direct response to this. Ever. Even in threads where the discussion has carried on in detail on both sides, this concept is totally ignored. There was a similar, brief hiatus leaning towards this point in one of the threads over at IIDB where creationist spammer Afdave is rapidly losing his dignity and proving himself predictably ignorant in all fields of science including the philosophy of same. It got really interesting for a bit and the guys over there looked to have actually got through to him for a bit, but then he predictably went into full Gish Gallop mode in order to bury his own cognitive dissonances underneath wave upon wave of standard AiG/EvoFairytale strawmen. Just my two pence; this is a fascinating psychological point that should be discussed.' +p9463 +aS'If same sex couples are offered equal rights under a PACS (or some other legally recognized union) as married couples, why does it matter which "door" they come in through? They get all the same benefits, including the benefits that come when one partner dies. What\'s the beef...except that you can\'t say that you\'re "married"?' +p9464 +aS'And for those who are not deadbeats? Would you grant them any "rights?"' +p9465 +aS'Because quite simply, it is all what we observe. One has never observed a mutation that has been seen to increase the information in the genome. If there have been any mutations that have led to an increase in information, please state it.' +p9466 +aS'Here\'s an interesting one: Lipoprotein Lipase S447X: A Naturally Occurring Gain-of-Function Mutation. Brief Reviews Arteriosclerosis, Thrombosis & Vascular Biology. 26(6):1236-1245, June 2006. Rip, Jaap; Nierman, Melchior C.; Ross, Colin J.; Jukema, Jan Wouter; Hayden, Michael R.; Kastelein, John J.P.; Stroes, Erik S.G.; Kuivenhoven, Jan Albert Abstract: mdash;: Lipoprotein lipase (LPL) hydrolyzes triglycerides in the circulation and promotes the hepatic uptake of remnant lipoproteins. Since the gene was cloned in 1989, more than 100 LPL gene mutations have been identified, the majority of which cause loss of enzymatic function. In contrast to this, the naturally occurring LPLS447X variant is associated with increased lipolytic function and an anti-atherogenic lipid profile and can therefore be regarded as a gain-of-function mutation. This notion combined with the facts that 20% of the general population carries this prematurely truncated LPL and that it may protect against cardiovascular disease has led to extensive clinical and basic research into this frequent LPL mutant. It is only until recently that we begin to understand the molecular mechanisms that underlie the beneficial effects associated with LPLS447X. This review summarizes the current literature on this interesting LPL variant. This one provides rather good protection from hardening of the arteries. Or this one: APPLIED AND ENVIRONMENTAL MICROBIOLOGY, May 1995, p. 2020–2022 Vol. 61, No. 5 0099-2240/95/$04.0010 Copyright q 1995, American Society for Microbiology Emergence of Nylon Oligomer Degradation Enzymes in Pseudomonas aeruginosa PAO through Experimental Evolution IRFAN D. PRIJAMBADA, SEIJI NEGORO,* TETSUYA YOMO, AND ITARU URABE Department of Biotechnology, Faculty of Engineering, Osaka University, 2-1 Yamada-oka, Suita, Osaka 565, Japan Through selective cultivation with 6-aminohexanoate linear dimer, a by-product of nylon-6 manufacture, as the sole source of carbon and nitrogen, Pseudomonas aeruginosa PAO, which initially has no enzyme activity to degrade this xenobiotic compound, was successfully expanded in its metabolic ability. Two new enzyme activities, 6-aminohexanoate cyclic dimer hydrolase and 6-aminohexanoate dimer hydrolase, were detected in the adapted strains. http://aem.asm.org/cgi/reprint/61/5/2020.pdf We thought it would take roughly a million years for bacteria to evolve enzymes capable of digesting nylon (because the compound is so different than any they were able to digest) but it took less than a century. Barbarian observes: It\'s all real DNA. Some of it just doesn\'t code for anything. But some parts of non-coding DNA (which you call "junk") has other functions besides coding for proteins. .' +p9467 +aS'The anti-abortionists claim that would be killing a human life to save one.' +p9468 +aS'But if the repeated tests just confirm the same errors or misinterpretations of the results, all of the independent reviews in the World wont make a difference.' +p9469 +aS'you should be allowed to buy as many as you want to' +p9470 +aS'But nonetheless fascinating!' +p9471 +aS"Good shooting! Got two illegal alien perps that had been deported for previous felonies and just committed another after illegally entering the country again. WE NEED MORE JOE HORNS and a heck of a lot less bradies! Is this the only case you could find of a CCW exercising his rights (you know the law applies to any citizen of Texas don't you and they need not be licensed?) completely justified in the Penal Code of Texas. Self-defense and defense of a third person or property is justified and required by law...IT IS YOUR PUBLIC DUTY. Job well done Mr. Horn!! How come you don't post links (deleted by poster)? This is old news, almost 3 years ago to be exact. Did you think it was sensational? LOL" +p9472 +aS'Hehe. Putting political messages on such things seems retarded to me though. -Wez' +p9473 +aS"The biblical end has got to be near. This was a Doctor who spends all of his life saving people's lives." +p9474 +aS'No, actually they used the Bible as a basis for their morality. They then applied that morality to the design of a system of government that they wanted to create. Maybe the majority of Americans are comfortable with the status quo WRT their morals. Who are you to tell them that they have to change for you?' +p9475 +aS'I hope I have already begun to change your mind.' +p9476 +aS"To the extent that working toward social change on any moralistic issue is an 'imposition', sure. But I think one could say that about anything that has a social effect." +p9477 +aS"If you feed me a lot of caffinated coffee i start to wiggle and squirm too. I'm not really in any pain." +p9478 +aS'So a free society is one where the goverment does not have tabs on their citizens? How could then the goverment work when it does not know who they actually govern? The foundation of economics is that you have correct data, else it\xc2\xb4s the beginning of corruption not freedom. And since when was there a dichotomy between freedom and socialism? Further how does the usage of identification ease the rounding up of suspects? Wouldn\xc2\xb4t it be rather MORE risk to be rounded up if you couldn\xc2\xb4t identify yourself and thus automatically become suspect than be able to and take yourself out of the calculation?' +p9479 +aS"So once again you're steering away from the debate? I don't understand why your ignoring the debate and going off in a whole new direction even after making this same mistake in your last post. You're still showing that the Bible has a flaw in it and therefore your making up your own story about what happened. You're also making predictions about the future based on your own interpretation. I'm sure you won't even considered that your wrong about either of these things though I doubt you have any reason to believe in either of them other than you have the idea stuck in your head now. [quote]The above fully answers the apparent contradiction you and others find in these passages. The reason you may think I may be presenting information contrary to normative Christian teaching is that you have picked a peculiarly thorny passage - something that skeptics of the Bible and enemies of God will almost always do.[\\QUOTE] It only answers the contradiction after you fill in the blanks with your own interpretation and of course your interpretation is based on your personal views and no facts. All the facts that you can work with are in the Bible and as of this moment the Bible seems to have a flaw in it. Your trying to cover this flaw with a story that you made up. I guess in your mind this makes sense but I don't think many Christians would even agree with you much less those of us who look for logic." +p9480 +aS"sinjin - I didn't mean to imply any linkage between your opinions and those of another poster. Apologies." +p9481 +aS"You haven't proven anything. All you have done is spew your same old drivel which ignores what I actually say and reinterprets it to mean what you want it to say. You must corrupt what I say since you can't accept the truth of my beliefs and win your fallacious argument." +p9482 +aS'Yes. It describes an action without ascribing its form to its end result, outcome, whatever but strictly to a cause/s force/s in action. That is why \'selection\' is always teleological. In order to select or choose anything, an end must always be in view. There must always be a volitional discrimination of options based upon a criterion dictated by the desired end. The only time "channel" becomes teleological is when something live [a human or a beaver, let\'s say] intententionally does the channeling. But since it is understood that mechanical forces can also \'channel\', unintentional, out of simple mechanics, the word channel cannot be called teleological. In the same way, \'sorting\' can be considered non-teleological, hence mechanical, and thus suited to your glossary, because things can be sorted by mechanical forces alone. But \'selection\' always requires volition and awareness. So \'selection\' is always teleological.' +p9483 +aS"I think you fail to take into account that for most opposers of abortion, they genuinely feel they are trying to save lives by their opposition. In many cases it's not a matter of trying control sexual prermissiveness in society but preventing lives from being killed. Disagree or not, you can't separate the anti-abortion message from the fact that it holds to the view that abortion is a form of murder." +p9484 +aS"It's possible that Archaeopteryx is not a direct descendant of modern birds but it's certainly not far from the line and it shares both avian and therepodian characteristics." +p9485 +aS'The average global temperature follows a sinusoidal pattern, the general consensus is we are supposed to be approaching a peak. Projections show that instead of peaking, there will be continue to be an increase in average global temperature which exceeds that of the peak 4000 years previous.' +p9486 +aS'There is just one thing however. The coelacanths found are different from those in the fossil record. Further, ALL evidence pointed to them being extinct, until we found other evidence, and we changed it. And, to top it off, the article says NEARLY extinct, not COMPLETELY. Although, this article was of course written after the coelocanths were re-discovered. Of course, this has absolutely nothing to do with the theory of evolution, which explains the mechanisms responsible for the change of allele frequencies in populations over time.' +p9487 +aS"No. I am a student and I personally don't have much money. So how could I help them? I have very limited money of my own. I help when I can, but sometimes with my present finances I can't do much. If I had enough money, as I assume you do, than yes I would help them as much as I could. This is just an example of where people feel compassion. And as I have said before, Dawkin's has trouble explaining how the universal feelings could come about through evolution. We would not expect mutated pondscum to produce feelings and morals, ethics, etc." +p9488 +aS'No proof anyone ever went from gay orientation to straight orientation.' +p9489 +aS'You are correct, but contingency must be in place to deal with it when it occurs. Look at what happened in Eire with "Case X" in 1992- what happens when a country with the most restrictive abortion laws in Europe has to face up to the issue of pregnacy as a consequence of rape: http://www.prochoiceforum.org.uk/ireland6.asp Pages 12-13 of this EU report (Adobe Acrobat reader required): http://www.newr.bham.ac.uk/pdfs/Repr...m%20Bremen.pdf' +p9490 +aS"You are exactly correct in regard to my intent. IMHO, the allegories of the Bible are meant to teach the spirit of the stories, not actual facts...just as Santa Claus and the Easter Bunny are meant to represent the spirit of the seasons. When we are young children, we tend to believe in Santa and Thumper because our parents play the game so well, then as we learn the truth, we put away the belief that they are real but we pass the spirit on to our own children by playing the same game with them. AIMHO, God teaches us the spirit of creation with the inspired allegories written in the Bible. God created it all, He just did it in a fashion we will likely never fully understand. AIMHO, there were thousands of Adams and Eves, created after an evolutionary process that started when God created all matter and time. I'm not trying to warp the Bible at all, just as I would not try to warp the meaning of Santa Claus, even though I know he's not a jolly fat man living at the North Pole surrounded by elves and flying reindeer." +p9491 +aS"Because when something passes every experiment thrown at it and when something fits observation better than anything else, then it's as near as damnit fact. We can get pedantic over this if you want, but the conclusion that reaches is that there are no facts." +p9492 +aS'Upon reviewing the golden rule "do unto others as you would have them do unto you" I see nothing of any other \'side.\' It\'s very clear--treat others the way you\'d want to be treated. No one wants to be treated badly, so if you follow the golden rule, you\'ll be benevolent.' +p9493 +aS'He had ALREADY MADE the animals. "now the Lord God HAD FORMED..." not "now the Lord God formed..." See the difference? He already HAD FORMED the animals before he brought them to Adam. He made the animals before Adam.' +p9494 +aS'Just another anti-gun Blogger. I could go on, but doing so would boar the heck out of everyone, to include me!' +p9495 +aS'Yes, I believe there will be a lot more to come (as you said, just look at the "hobbits" that were recently discovered). I love this sort of look into the migrations of everyone over the last 160,000 years or so.' +p9496 +aS'Male' +p9497 +aS'The simple fact is that people don\'t want the immense responsibility that logically pertains to their voluntary actions actions, so they fabricate denials of reality as a convenient escape, out of pure selfishness-- like every other atrocity in history. The study of law includes an analysis of how people excuse their wrongdoings, fabricating pausible rationalizations for their acting to benefit at another\'s expense; denial is typically the first of these, claiming that the act "does not hurt anyone," however obvious the contrary. Other rationales follow, such as self-preservation, natural right to act, and eventually growing defensive by blaming the victim. While the fabricator typically believes his story original, it is anything but-- it\'s simply the inevitable course of selfishness.' +p9498 +aS"One shouldn't assume ignorance on the part of creationists. That is a mistake that too many evolutionists make. In the real world, we have people willing to say things they already know isn't true. Why should creationists be any different? After all, they are people, too. But rather than accept that fact, evolutionists argue that creationists are ignorant of a subject when, in reality, they (creationists) were simply telling lies." +p9499 +aS'And yet quantum physics tends to be very contradictory, at least to our perceptions. Acausal events happen. A particle can be in two places at the same time. A particle can disappear and reappear in a different location without traversing that distance. And et cetera. Since the beginning of our local universe occurred at quantum levels, I would be cautious about drawing philosophical conclusions based on our macro-world experiences.' +p9500 +aS"You know, your comparison of those that fought to end segregation, to those that fight to enact gun ban and gun control laws, is nothing more than a cheap and dirty tactic that does nothing to address the issue, and everything to suggest that breaking the law is alright if you're a politician or legislator. There's a very large difference between people like Rosa Parks, and the mayor of Philadelphia; gun ownership is protected by the Constitution, segregation wasn't. The fact that you're comparing those who instituted civil disobedience for good reasons, to those who want to violate state laws to pass their own laws because they think they know better and have a right to do so, just shows that you can't address the point at hand." +p9501 +aS"Is that a trick question? No, the tabloid and other gutter press keep going on about how bad it is, because they sell papers by fanning fear and hatred, and fear of crime is one of their biggest markets. Yes there has been an increase in gun crime over the years, but that's largely attributable to increased attractiveness of crime in a society where social mobility has come to a standstill. In any case the number of incidents where firearms are used in crime is still very small, which is why every time someone gets shot it is headline news. Guns are incredibly rare in this country, the only time I've seen guns in real life (other than air rifles) is on a military base." +p9502 +aS"When will it stop? Never. They will take every gun, every toy gun, disarm the law enforcment community, give us Nerf batons so we don't actually hurt the criminals, and say that this kinder gentler way of doing things will help. In the meantime murders will go through the roof, like in Australia, rape will escalate, breaking and entering will become common place, and cops will die by the minute. They will not only confiscate the guns, but then charge the owners of those guns for being terrorists. It won't end. In order to establish true dependency upon a government you must force the populous to rely completely on the government for every aspect of life including safety." +p9503 +aS'Fossils show inherited change. Adaptation does not.' +p9504 +aS'********. Utter fraking ****. Scientists have already accumulated mounds of evidence which suggest the common ancestor. You choose to ignore it as do most scientifically ignorant christians.' +p9505 +aS"Well, here is my take on it. I really believe that only the truly evil end up in Hell. Those like Hitler. I think that anyone else goes to heaven - Wiccans, Atheists, Buddhists, etc. - anyone who follows Christ's message of love, tolerance, and acceptance, whether knowingly or not. Those who preach hate, and those who act on that hate, like Hitler, the KKK, and any other person/persons filled with hate (sad to say, this seems to apply to our own friend Archie here) are the ones who will end up in hell." +p9506 +aS"Sorry, your going to have to explain to me how Swiss gun laws are in anyway relevant to a shooting in Missouri. Missouri allows concealed carry, it's unfortunate for the victims that ABB does not." +p9507 +aS'Tell this to those infants and adults in the netherlands who are being euthanized against their will. this is a logical conclusion of a quality of life ethic without a sanctity of life basis.' +p9508 +aS"Sucide? Isn't that a mental health issue? If you take a gun from a sucidal and depressed person, does that cure depression? If it does that you have addressed the root cause of sucide. If it does not than you really have not done anything to cure the fundamental cause of sucide." +p9509 +aS"But when some are ignorant enough to believe in a false science like evolution, which is based on lies and deceptions, they prove right there that they haven't enough knowledge of the truth, nor a sense of discernment that is capable of even determining what is true or a lie. So who are you people to even judge the intelligence of those who will ultimately be proven to have known the truth regarding our origins, to the lies that you so proudly defend? I say this only so you pseudo intellectuals will have some personal introspection to consider rather than just assuming that you'll get the correct answers by leaning on human understanding. It is incredible that you can't even see that you are bankrupt when you rely on unprovable assumptions that are based on preconceived notions, that have been both failing and conflicting with all of the new discoveries made in each generation to follow, thereby forcing the need to redefine the parameters by which evolution works every 10 years or so. So evolution isn't a science, it's a working piece of fiction in progress that is constantly being tweaked and shaped to fit the preconceptions no matter what new evidence is discovered that contradicts it." +p9510 +aS"But...but... I just swallowed 56 zygotes so that they could vote by proxy through me for the Ripofflican(tm) party this upcoming election so they can win. Now I'm going to have all that indigestion for nothin'. As to driving...don't care. What I'll miss most is all of those credit card offers that come in their names. There's just so much that they, living though me want to 'buy now and pay later' on. You saying they can't do that?" +p9511 +aS"Nobody should be forced to even have a sonagram. I think that you'll find reasonable pro-life and pro-abortion people believe that much." +p9512 +aS'This question is premised on an untenable assumption: that people should not be allowed to vote on particular issues. This premise is clearly not true in any democratic society, and is especially not true in the United States. In the United States, it is a contradiction in terms to say someone is not allowed to vote on X. I have demonstrated this before, and yet the same silly question keeps coming up.' +p9513 +aS"It was in the news for a while and I'm pretty sure the inquiry found that it was a terrible misfortune based on miscommunication between the hospital and the parents. There was no selling of stolen dead babies for profit type of business going on with is what Fishx implies with the first post. Sorry, didn't mean to offend there but I still think its better than another baby has a chance to live than pretty much anything with respect to the desceased. If it happened to me I would have no problem at all about any of my organs being used to save lives, either directly or indirectly through training of more doctors or research. Yet, I still respect your wishes and said before that if this is going to happen it should certainly be cleared with the parents first. You're just going to have to accept my appologies and realise that I have no idea what you went through, having not been there myself. Being in an abortion forum, and the nature of the first post it seemed very quite possible that Fishx had had an abortion, though regretted it and wanted the remains to bury - this is a very different case than the one you have unfortunately experienced, hence the question." +p9514 +aS"So my question is this: Why doesn't a chihuahua birthe a Siberian husky in the Antarctic, or even in Siberia? Oh, my other question is this: Why do animals die young instead of adapt?" +p9515 +aS'Just to point out, the class that ID is being taught in is a comparative religion class.' +p9516 +aS'First, are you not forcing your beliefs on me when you lobby for, enact, and support a law that legalizes an act that I see as murder? Second, forcing someone to believe as I do is in no way the essence of Christianity. God gives choices (which is another debate) to man. We must simply choose right or wrong. Jesus wants us to influence, not force. Jesus said to His followers in Matthew 5:14-16, "You are the light of the world. A city on a hill cannot be hidden. Neither do people light a lamp and put it under a bowl. Instead they put it on its stand, and it gives light to everyone in the house. In the same way, let your light shine before men, that they may see your good deeds and praise your Father in heaven." If I truly believe in Jesus as my Lord and Saviour (and I do), then I must follow His command to influence (not force) the whole world. It doesn\'t do any good to only preach to the preached.' +p9517 +aS"Nice try. If America was an Ally to Germany during WWII, to this day you wouldn't forgive US Citizens no matter what excuse they have." +p9518 +aS'Then a man who needs an artificial heart to survive is a new species of man. That is the analogy I gave, and you ignored. In both cases; human and bacteria, before the advent of a human product, a particular group of individuals from each larger group would die off. BUT along come a man-made invention that allows those certain portions to live on which otherwise would have died. In once case - nylon, the other, the artificial heart. You call this evolution. Nor is it \'natural selection\' at work either, as in both cases the thing that enabled them to survive was not natural. What you have advanced as a proof of evolution actually proves what? Natural what? I suppose people with cochlear implants are new species too because they\'ve learnt to hear. Another view of this nylon-eating-bug is given... "Finally, Mr Cerutti is out of date about this new nylon digesting ability allegedly from a frame shift. New evidence shows that the ability was due to plasmids [e.g. K. Kato, et al., ?A plasmid encoding enzymes for nylon oligomer degradation: Nucleotide sequence analysis of pOAD2?, Microbiology (Reading) 141(10):2585?2590, 1995.] In fact, more than one species of bacteria have the ability, residing on plasmids. This suggests that the information probably already existed, and was just passed between different types of bacteria." "All that would be needed to enable an enzyme to digest nylon is a mutation causing loss of specificity in a proteolytic (protein-degrading) enzyme. This may seem surprising? How would a loss of information create a new ability? Answer: enzymes are usually tuned very precisely to only one type of molecule (the substrate). Loss of information would reduce the effectiveness of its primary function, but would enable it to degrade other substrates, too. Since both nylon and proteins are broken down by breaking amide linkages, a change in a proteolytic enzyme could also allow it to work on nylon. If this process were continued, the result would be a general enzyme with a weakly catalytic effect on the hydrolysis of too many chemicals to be useful where much selectivity is required. To put it into perspective, acids and alkalis also catalyze many hydrolysis reactions, but they also lack specificity. Indeed, an inhibitor of a protein degrading enzyme also inhibits the action of the nylon degrading enzyme" http://www.answersingenesis.org/home...e7-24-2000.asp Talkorigins gave their usual doubletalk "Whilst this particular case does not "prove" evolution, it is consistent with, and supportive of, the theory of biological evolution." Why do they say this? Because it\'s still a bacteria. It\'s not like it suddenly became a large multi-cellular organism. But it might just prove that this bug was so well designed that it can cope with newer situations. One site does say that it, the bacteria, had the capability already within it of change ? not resultant in ?mutations?, but more like switching on previously dormant apparatus. http://members.tripod.com/aslodge/id89.htm One poster on another forum summed the problem up like this... " In order for species to advance there would have to be a net information gain, which isn\'t the case with nylon eating bacteria. The bacteria gained the ability to digest nylon, therefore was able to survive in a new environment. Two distinct advantages But, the bacteria lost its ability to survive in its old environment, eat its former diet and suffered a 98% loss in efficiency. Three disadvantages. So by taking two steps forward and three steps backward, where is the net gain? If nylon eating bacteria was "proof" of evolution, we would still be pond scum, but with the ability to digest whatever happened to become the primary food source." http://www.christianforums.com/t52336' +p9519 +aS'Like most things theists that statement is based on ignorance.' +p9520 +aS"And that didn't have a thing to do with my point." +p9521 +aS"Well, kind of a boring thread, since everyone agrees, but since I'm new here, I may as well weigh in. Hubby and I have three grown kids and one teen. The grown ones all got the same going-to-college gifts. They got a safe car, a laptop, an emergency credit card, and a personal firearm. I felt this especially important for our daughters." +p9522 +aS"But I think that is the point. What if you didn't agree with the germ theory of disease? Does that mean that it shouldn't be taught in health classes in our schools? Should it be replaced by the bad humors of night air theory? But not everyone agrees with that theory either." +p9523 +aS"We don't live on carbon dioxide. We live from the energy stored in carbon compounds when we break them down." +p9524 +aS'And religious folk in the south used the Bible to justify enslavement of thousands or millions of blacks, and also to justify their treating blacks as mere property. I suppose (but am not familiar enough with all of the details to know for sure) that some even used the Bible to justify linching blacks.' +p9525 +aS"If I am to believe in something even if it's scientific, I should be able to challenge the belief's of the person who's pushing it. If they don't believe in what they're selling, why should I." +p9526 +aS'Actually just as many atheist help the needy. Of course a person would need to be open-minded to realize it. Here is one such atheist charity. If you were open-minded about such things then you would have learned that both Bill Gates and Warren Buffett, who have each individually made the two largest charitable donations in American history, are both atheist (Oops, bet that\'s gotta kill your argument, huh?) and they can rightly claim credit for spurring many other ultra-rich to also be charitable. Ted Turner, the multi-billionaire, has also donated millions to others, and guess what grizzly6626, he\'s an atheist too! George Soros, also a multi-billionaire, financier and philanthropist, has also donated millions and is also an atheist. The list goes on and on. You just don\'t hear about these people donating because they tend to do these things quietly, and not with a lot of *cough* religious *cough* fanfare. Didn\'t mean to wake you up grizzly6626 BTW - many catholic charities are known to turn the needy away. I\'ve heard many accounts about how when some people first got married back in the 1970s, that catholic charities wouldn\'t help them out because they were not "good, church-going catholics." Basically because they didn\'t go to church every week (and put in their money filled envelope) the Church didn\'t consider them worthy of help. You see, it isn\'t because religion makes people morally better than atheism. Rather, it would be because churches often organize charitable activities and encourage their members to participate, while atheists, simply have no comparable social structure. It\'s not that churchgoers have a superior moral sentiment, just that because of their increased social structure they naturally have increased opportunity. There are countless amounts of people who are atheist that donate from the heart. They do not \'band together\' into groups like religions do, and they do not advertise their charitable works like religions do, but they donate from the heart just the same. Here is a partial list of many such individuals who just happen to also be atheist. But it goes MUCH further than that though. There are a few organizations formed by atheists for the sole purpose of donating to those in need. One such organization is called S.H.A.R.E. - Secular Humanist Aid and Relief Effort. Here is a recent story about them helping those in need. So, when someone ignorant and closed-minded like grizzly6626 tries to convince you that \'only religions\' donate or help those in need, you will now know that it\'s simply not true, and that people from all beliefs, even those that don\'t believe in God, help others in need and donate from their hearts, because they know it\'s the right thing to do for their fellow man in need' +p9527 +aS"Yeah, back in the Late 60, because The Black Panther Party was publicly armed, and had publicly advocated Offing the Pigs, our law makers granted the police the law that said it was illegal for anyone to transport any firearm within Ohio. They did it with the understanding that they would not abuse the privilege that was granted for their protection. Well, 40 years went by, and new officers seeing this law on the books started enforcing it. After all, why not, It is the law, and their is no excuse for the law! Period! Well, Ohioans for Concealed Carry and a bunch of others, decided enough was enough, and contacted Ohio law makers who took it off the books because it wasn't being used, as agreed upon!" +p9528 +aS'http://news.bbc.co.uk/1/hi/world/africa/4487756.stm' +p9529 +aS"First of all rape is one of the most under-reported crimes so it makes sense that abortion due to rape/incest is also under-reported so that makes your assumptions and numbers off.But of course you are missing the whole point.You are not the one being raped so it isn't YOUR choice.I don't need you making choices for me or telling me what is and isn't good for my emotional health.If one gets raped and DOES NOT want to be pregnant who are you tell them they have to be? Abortion should be legal for everybody who wants one not just rape/incest victims,for the simple reason that no human being has the right to substain life by using the body of another why should a fetus have more rights than actual persons?" +p9530 +aS'Yes, but we had no way to tell until we found them again, now had we?' +p9531 +aS"What's your point? Of course they will be bound by Heller just as the courts are bound by Roe v. Wade. That point wasn't in dispute. As long as you're talking about 19th Century Second Amendment case law, I like The State v. Buzzard (1842)." +p9532 +aS'my my you are up on the current events. Thanks for shedding light on this for everyone here.' +p9533 +aS"If guns laws don't affect criminals then how do you explain the low rates of criminal gun use in nations like the UK?" +p9534 +aS"This why we think you're a liar. http://www.talkorigins.org/faqs/dino...teocalcin.html" +p9535 +aS'Nobody I know sanctions adultery. There are already serious consequences built in against it. As far a same sex marriage, I know of nobody that is suggesting legal penalties for it unless one considers the refusal to legally recognize it a legal penalty. Certainly nobody has been jailed or fined for attempting such marriages. Privately performed ceremonies as such are not punished.' +p9536 +aS"Largely, out of date. To paraphrase myself from earlier, the differences between 'then' and 'now' are as follows: Increased availability and proficiency of viable alternatives for self-defence. Increased availability and improved variety/design of handguns. Different type of 'gun crime' - it is now largely opportunistic. Today's government need not fear almost any citizens militia, unless absolutely overwhelming. Today's government is less in need of a (potential) extra army to defend against foreign assault. I may have missed some..." +p9537 +aS'To each his own...if you got it - flaunt it. Think of all the pretty, fashionable gun rigs that would spawn. Darn sinjin, you might have to get an outfit to get a date Course if you carried concealed like say, Mike Hammer, you might have to get a bowler or little CS hat? Think of all the jobs it would create. Leather workers. Engravers. Gun finishes. More stylish guns. Corner gun stores and ammo at the local grocery, mail order business and on and on and on. "Posers"? That is about all there is in kalifornia now isn\'t it? It doesn\'t bother you to watch scantily clad women...or men, whatever your preference is; why would full free exercise of a right freely stated in the Constitution be any different? Oh, and on topic, end the pathetic pleas of the brady cowards and howls from VPC calling for discrimination and getting sued for demanding a Starbucks or any other emporium banish a citizen exercising a right.' +p9538 +aS'And you\'ve been failing miserably, partly because your definition of "atheism" is asinine. Even most Christians would disagree with you.' +p9539 +aS"Catholics have a different belief. The goal is to always save both mother and child. If the fetus dies during the attempt to save both, then that's what happens. For instance, with an ectopic pregnancy, the goal isn't to kill he fetus, the goal is to save both mother and fetus." +p9540 +aS'I think a more telling question would be, why the hell would you rather feel constantly threatened than feel safe? It seems completely idiotic to me. Smiley' +p9541 +aS"Wouldn't it be wonderful if every woman in the world had access to decent prenatal care, if every woman in the world could be guanateed safe childbirth, wouldn't it be wonderful? The entire series is at: http://www.nytimes.com/2009/05/10/opinion/10gift.html And, if men had to suffer the torture of being in labor for a week and having their insides torn out, don't you think the male-centered world would truly care more about the welfare of women and children?" +p9542 +aS'I think such a move would qualify as a recognized declaration of war.' +p9543 +aS"Be wary of names. 'junk' DNA is not rubbish ... it's called 'junk' because we don't know entirely what it is used for... But just look at all the blank spaces on this post. They are nothing, but they are keeping the words in order. Evolutionaries are putting too much faith in names of words - such as human embryonic 'gill slits' or 'transitional' fossil" +p9544 +aS'Or helpful.' +p9545 +aS'maybe, but see, that does not match the materialist universe?' +p9546 +aS'And certain versions of Mark: 15He said to them, \xe2\x80\x9cGo into all the world and preach the good news to all creation. 16Whoever believes and is baptized will be saved, but whoever does not believe will be condemned. 17And these signs will accompany those who believe: In my name they will drive out demons; they will speak in new tongues; 18they will pick up snakes with their hands; and when they drink deadly poison, it will not hurt them at all; they will place their hands on sick people, and they will get well.\xe2\x80\x9d Are they mistakenly reading this?' +p9547 +aS"Well since posting on this thread has died and this seems to me to be the most interesting atheistic theory, I want to get a bit of clarification. First, what do you mean by being allowed to cease providing for it at any age, but never allowed to kill it? By this do you mean that to cease providing for during the first trimester is not killing it? Is that because it is not alive at that time? If I follow you (and I'm not sure I do) should the mother be allowed to have the baby removed at some point during the third trimester, after which it must be kept alive (and perhaps put up for adoption)?" +p9548 +aS'Do you think this resistance got their most useful weapons out of a normal store? Please don\xc2\xb4t try such arguments without knowing about European history.' +p9549 +aS'Actually the Apocrypha is made up of pre-Christian texts, and late 4th century is a bit of a stretch for the new testament, certainly all its component texts were widely accepted by the 2nd century. I don\'t whether it is "generally accepted" that the text was altered, it seems to me that you are projecting your own views based on the hypotheses of some scholars on to Biblical scholarship in general.' +p9550 +aS"I'm not. ---" +p9551 +aS'Banning abortion is a tool with which to punish women you deem promiscuous or immoral and recreate through a police state a mythical golden age of christian virtue, got you. The rest is just a cover story in the same way biblical creationists who want their religion brought into the school system advocate "intelligent design". They call it "lying for baby Jesus".' +p9552 +aS'Well said. With this religion, the gap is very wide between the "average guy" and "authority", because their clergy is more involved in politics than the clergy of Christianity, or the Creator himself. It fits with more Democrats being evolutionists, and more Democrats favoring bigger domestic government.' +p9553 +aS'would that be legaly owned guns, or criminals who have guns (and also ues guns) for there crimes? most Gang members have guns, if they are killed in a drive by shooting, is the gun responsable, or would it be the illegal activitys?' +p9554 +aS'Since I was there, I\'ll give you an objective rundown: 1.) Dawkins didn\'t "crash" anything. He watched the movie without saying a word and participated in a Q&A session with the producer at the end --a session that the producer deliberately started. 2.) There was no "sneaking" on any level. PZ, his daughter, and I all registered our names over the internet for the event and selected the option to have up to three guests come with us. We registered our real names, our real addresses, our real telephone numbers, and our real emails, and we all received confirmation emails approving our registration. 3.) What possible reason did they have to deny PZ a viewing of the film? Dawkins and I pressed the producer Mathis on this issue, and he said it was about money -- he wanted PZ to come back in a month and pay his $10. But this makes no sense. PZ was paid $1,200 for his interview. They thanked him for the interview in the credits. If money was a concern, they could have paid him $1,190 and given him a free reservation. Just the fact that he was in the film should have been enough to warrant a seat at a pre-screening event. This all begs the question: What in God\'s name are they so bloody afraid of?' +p9555 +aS"Stop trying to muddy the waters. I was talking about developed nations with lower murder rates. You suddenly bring Chicago into the debate- a city with open borders in a nation where guns are freely available. Even if gun control hasn't worked there it doesn't follow that gun laws can't work on a national level." +p9556 +aS'Genes transfered horizontally are as subject to selection as anyother form of gene. Once intergrated into the recieving genome they are simply one more heritable element and if they alter the phenotypes (many are either neutral or even inactivatee) then of course they are subject to selection. Why do you think otherwise? Remember that horizontal transfer is a rare event roughly on a par with ordinary mutations.' +p9557 +aS'The tactics pro-lifers use make the Nazis look like the little league. I mean, seriously. The reason we are dealing with terrorism is because women have the right to the abortion procedure. Wow. Please give me one way those two things relate to each other.' +p9558 +aS'Just like no one is really "for" abortions, but they think that it\'s the woman\'s right to decide. Maybe that\'s like when congress gave the President the right to decide to go to war, even when they were supposed to declare war.' +p9559 +aS'You then cite the Wikipedia entry on Spencer:' +p9560 +aS'Then you are just throwing around words without knowing what they mean. Instead you give me a link to a page of pseudoscience. Are those the ones who lied to you?' +p9561 +aS'I do not argue so much the quality of llife of an individual woman but more for the quality of life, indeed of having access to life itself, of the children of the woman involved, because in many situations the concern and nurturance of a mother may be the only thing keeping children alive, especially in poor, war-torn nations that do not enjoy the relative wealth of the United States.' +p9562 +aS"I don't understand your question. If law-abiding gun owners were overwhelming those who should not have access to guns, those who use guns unlawfully, I would be very pleased. But, as far as I can see, the only goal of the gunners is to make sure that everyone has a gun, no matter how insane, no matter how stupid, no matter how incapable they may be to own such easy-to-use instruments of death." +p9563 +aS'The idea here is to demonstrate that the odds of them realizing the same Genesis is impossible. That is unless God came back again, spoke his word into a book through the scribblings of random religious scholars. If you accept that this is inevitable, you are delusional. The most likely thing would be for humans to come up with an entirely different religious doctrine. I would be willing to bet that it would pass through polytheism into monotheism as more information became available and eventually we would end up right where we are now. The problem with this scenario is that evolution would probably never be confirmed since our biological history would not be apparent. We would come up with theories that God made us and perhaps even some screwballs would say we were all part of an experiment and were placed on the planet by our ancestors a couple hundred thousand years prior.' +p9564 +aS"Just so you know Peach, the 167 death row inmates are now serving life in prison. At least that one who's not guilty might now have a chance to be free." +p9565 +aS"Can't say." +p9566 +aS'So indignities offered our citizens will be tolerated if dispensed in small doses? Maybe we might educate the pirates what they should "know better" than to try. My taxes pay to have a Navy presence around the world. Americans are American interests.' +p9567 +aS"What's your claim? That the seasonal molt of arctic foxes is evolution or that it is not? As usual, your responses show muddled thinking." +p9568 +aS"NOt true, California's ammendments are not doing as well as other states did. You are talking about a very liberal state. If it is decided that marriage is allowed by the courts, then you are talking about taking away rights people have been granted by the courts. I just don't think that will happen in Calf. much too liberal." +p9569 +aS'Either a gross misunderstanding or a gross misrepresentation of evolutionary theory.' +p9570 +aS"I'm not aware that the police used violence in arresting any of the people discussed in this case. Besides, I'm not discussing personal morality here, I'm discussing what should be legal, and what is practical in a society where not everyone shares the same moral views. Government is there to apply limits to what is permitted, based on the will of the people." +p9571 +aS'So individual cells contract to move cytoplasm around and to transport oxygen within itself?' +p9572 +aS'And SS is once again wrong. If you really believe that then try to tell your genes to give you tiger stripes which will be inherited by your children. Good luck.' +p9573 +aS'And it\'s only wishful thinking that they haven\'t. You are in no better position than I am. You don\'t know anymore than I do. Science has admitted that antarctica was much warmer several thousand years ago...not only that but the following map shows that the continent was not frozen. And if it was not frozen several hundreds years ago....and it was not frozen 4-5,000 years ago, as it was stated on this next seal link, then it\'s pretty safe to say that animals and humans could have both been there in recent history (within a few thousand years.) I agree this is no proof that it was attached, however, it is proof that the weather/temperature was DRASTICALLY different on antarctica than science has admitted.....and there\'s got to be a reason for this drastic change in temperatures. http://www.world-mysteries.com/sar_1.htm http://news.nationalgeographic.com/n...ent-seals.html In an Antarctic "ghost town," freeze-dried whiskers, skin, and bones provide evidence that the South Pole was a much warmer place not too long ago, a new study reveals. "We thought, This is really strange. If they are elephant seals, what are they doing here?" Hall said. The discovery, scientists say, is the first hard evidence for a warming period in the region between 2,300 and 1,100 years ago. An earlier warming period, between 6,000 and 4,000 years ago, has been recognized by other researchers and is believed to have been widespread, at least throughout the Southern Hemisphere. (so widespread that there wasn\'t snow on the ground and it wasn\'t frozen over!)' +p9574 +aS"That isn't my logic. My logic states that banning doctors would cause more deaths and our current system does. You are trying to debate that doctors are threatening withour realizing that they have great rewards as well. My logic is to look for the risk and reward and not just focus on one side of the debate. Your logic was that since doctors cause deaths then they should be banned if guns are, correct? Then why isn't it also consistant with your logic to believe that we should ban food since food causes deaths? So lets clairfy here, do you believe that guns have a better risk/reward than doctors? If you HAD to ban one which would it be? I await your sidestep of the question. lol, now your comparing the Jews to current US gun issues? Why did you choose to do this? The risk-reward for Jews is different than the risk-reward for the US. Jews probably would have faired better if the Germans used Japanise gun control laws." +p9575 +aS"No. I never mentioned grades. You brought that one up. I'm saying that having guns on school campus isn't a good plan due to the high level of emotions in the area." +p9576 +aS'No, it\'s not an "inability" at all. It\'s a simple matter of you trying to take what IS a religious issue for many people and divorce it from religion altogether. That\'s not going to happen for many people. And BTW, if you are going to refer to people as "Antis", at least be upfront about what you feel they are "anti-" toward. "Anti-gay?" "Anti-gay marriage?" What? But behind that are deeper, more fundamental issues about what homosexuality IS and the morality of it. To many people who view homoseuxality as immoral, your movement seems to be trying to write immorality into law.' +p9577 +aS"Sorry, but that's not in the Establishment Clause of the First Amendment. Try again." +p9578 +aS'Well it could mean simple instinct, and I think you will find it was only applied to animals with brains. EAM attributes "intelligence" even to bacteria and to corn plants, trees, jellyfish, single celled eukaryotes etc. If one is to consider intelligence the main driver of adaptation it must be omnipresent in living organisms - there is zero support for this concept.' +p9579 +aS'But then, there also is absolutely no evidence for such an intelligence.' +p9580 +aS'Do the words "govt. by the people and for the people" not matter to you at all? Furthermore, to say that the constitution shouldn\'t be allowed under the vote of the people itself in unconstitutional, since that\'s the only way the Constitution CAN be amended. (2/3 of states) A country that uses judges to determine such sweeping things as redefining marriage is a "legistocracy", which we are quickly turning into as a nation. Even though judges are supposed to interpret the constitution, it\'s still putting the fate of the people in the hands of individuals regarding their laws. This is not very far removed from monarchy. Personally, I think our founding fathers and the Constitutional framers are rolling over in their graves right now.' +p9581 +aS"Congratulations. You are now part of a minority group. Marriage tends to either work or it doesn't. I know, brilliant observation. What I mean is either the couple is together for decades or spend x amount of years being unhappy until the unhappy is more than the baggage of divorce." +p9582 +aS"Just to contribute, I'm pro-gun, have had training in the proper use and laws in my area, and have owned weapons for more than 30 years." +p9583 +aS'Who swings from Christmas cake to chrismas cake? Tarzipan!' +p9584 +aS'Ditto squared. If they support killing a perfectly healthy unborn child, they will argue that the reason stated in the Op is the main reason Abortion is needed and justified. And I must say that if 98% of all abortions were performed for that reason, the public stance against them might not be so strong.' +p9585 +aS'yes and my post was proving that' +p9586 +aS'Wow. A very unusual and distressing story, and probably why saline abortions are no longer used. It is very unfortunate for her to have to live with that disability.' +p9587 +aS'Notice that even in this version there are elipses just before the quote in question. My bet is if we were to actually refer to this 44 years old book, Simpson would not be saying what Toxey wants him to say.' +p9588 +aS"Actually, qualified biologists know no such thing. In fact, I've never known one who would agree with that assertion. Can you give us some peer reviewed references to support your assertion?" +p9589 +aS'refuted? O\'rly? First they start off defining evolution as "moleclues to man" despite what evolution actually states. That further proves my point about strawman. They don\'t discuss what evolution actually is. Furthermore, the whole notion that increasing capacity and adaption is not increasing complexity is insane. If I take a simple structure, modify it to form something more complex, is that not a change in complexity? The whole idea that modifying DNA, changing it, removing and adding isn\'t actually changing anything is retarded. And they are separating macro from micro. That\'s an invalid argument given that macro is nothing more then the aggregate of micro. A billion tiny changes makes a few large ones. The second idiotic article cites Natural genetic engineering. Despite there being absolutely no evidence of this occuring anywhere.' +p9590 +aS'The other forest does not photosynthesize all year round, the other forest is also in just as much danger as the rainforest. For some reason, radical environmentalists choose to place undue emphasis on the de-forestation of rainforest rather than global forest as a whole.' +p9591 +aS"Well, that just struck a chord with me. People of both sides say, \xe2\x80\x9cWe got the facts! The facts support our side!\xe2\x80\x9d but it isn't about the facts but how we react to them." +p9592 +aS'Well, I don\'t believe in evolution. I believe in things for which I have no evidence. And while it is true that everyone has bias, using correct science and the process of peer review works to eliminate. Not all is perfect, and people are people, but overall the system works. Not a lot of bad science gets through. In the case of "creation science" we know that there is no science involved. Only talk that sounds scientific. There is no hypothesis, prediction or testing. Only ad hoc stories constructed of selected bits of evidence to support the foregone conclusion.' +p9593 +aS"Where were the French on D-Day and the Normandy Invasion when Hitler was burglering their Nation? I don't recall history mentioning a Frenchman around but the Americans were saving their rears once again..." +p9594 +aS'Some references please? In general, it seems that most climatologists agree that severe weather systems will occur more frequently with an increase in average global temperature. (ref:http://www.grida.no/climate/ipcc_tar/wg2/061.htm#1434)' +p9595 +aS"Because guns are the best method available on the market. Settling for second best when you could have the best is just stupid. Better locks? The best they'll do is slow down the person seeking to harm you, their effectiveness is contingent on the strength of the door they're on. Alarms? So somebody will know that you're in danger, what then? That won't get the police there any faster than dialing 911. Non-lethal weapons? Somethings non-lethal is a non-option. Brandishing a can of pepper spray won't cause an attacker to flee for their life, it won't hold them at bay until the police arrive to arrest them, it won't stop a violent individual from across the room, and it sure as hell won't affect somebody that's doped up on narcotics. And stun guns are more useless than knives, because as I've said before, you need to get right up against your attacker to use them. You have to get within stabbing distance to shock them, do you really want that to be your best option for protecting yourself? The idea is to keep the bad guy away from you, not let them get right next to you. All of these non-lethal devices, they set up the false notion that the life of a criminal intent on hurting or possibly killing you, is worth more than your own life. That belief is stupid and should be done away with. Ask any woman that's ever been raped if they feel that their attacker deserves to live more than they do." +p9596 +aS'Not true Our laws were originally founded on the precepts of the 10 commandments........' +p9597 +aS"I wish you could put your hands on that poll as well. Until then I'll remain skeptical. Let's remember that Democrats and liberals hunt. Remove that group and what's left? Something less than 20% of Americans that own only handguns." +p9598 +aS"Basic law 101: You can drive by 15 1/2 with A LICENSED ADULT OVER 25 IN THE CAR. Not 18 or 21, but 25 so it isn't a matter of potential peers watching each other. And your opening post referred to 14 year olds or above, as it shows below." +p9599 +aS"Well, all I can say then is that no action is just about as bad as failed action, and IS as bad in terms of anything current. Either way you don't have gay marriage. You have a majority in Congress right now, and you're not demanding much change just because of fear of backlash? Yeah, there would be backlash. Heck, the Civil War was the ultimate backlash, but that didn't stop abolitionists from demanding more than TOKEN change, and it's a good thing they did. It's your gig, though, so do what you want. I don't see much point in laboring this discussion any more; I'm just pointing out my observations." +p9600 +aS"Since you bring it up, I do think that you are a nut. But your site is even nuttier. Not one shred of evidence that I found - just assertion. Moreover, the author doesn't seem to know the difference between an hypothesis and a theory." +p9601 +aS'We Americans do not care the government of the UK now under the control of sharia law hates freedom. America is a Constitutional Republic where the Bill of rights secure our freedom. I seem to recall you brits coming over here and demanding we lay down our guns and it did not go so well. And neither will it go well for any us politician\'s that try it as well. America has no reason to listen to people in the uk about gun control and now Knife control when its shockingly clear that criminals can still get any gun they want. Not to mention the fact that history has shown that time and time again what happens when the government wants its citizens to turn in the tools of freedom what happens. "God grants liberty only to those who love it, and are always ready to guard and defend it." - Daniel Webster "Government is not reason. It is not eloquence. It is a force, like fire: a dangerous servant and a terrible master." - George Washington "With reasonable men I will reason; with humane men I will plead; but with tyrants, I will give no quarter, nor waste arguments where they will certainly be lost." - William Lloyd Garrison # "If gun laws in fact worked, the sponsors of this type of legislation should have no difficulty drawing upon long lists of examples of crime rates reduced by such legislation. That they cannot do so after a century and a half of trying that they must sweep under the rug the southern attempts at gun control in the 1870-1910 period, the northeastern attempts in the 1920-1939 period, and the attempts at both Federal and State levels in 1965-1976 - establishes the repeated, complete, and inevitable failure of gun laws to control crime." -- Senator Orrin G. Hatch (R-Utah) quoted from "The Right to Keep and Bear Arms, Report of the Senate Subcommittee on the Constitution, Washington: U.S. Government Printing Office, February 1982, p. vii." # "Congress has no power to disarm the militia. Their swords, and every other terrible implement of the soldier, are the birth-right of an American ...the unlimited power of the sword is not in the hands of either the federal or state governments, but, where I trust in God it will ever remain, in the hands of the people." - Tench Coxe, 20 Feb 1788;' +p9602 +aS"The Skeptic has requested no judges. This actually suits me as there are too many of you that I'd have to pick from and I therefore avoid slighting anyone by not picking them" +p9603 +aS'Interesting, but it appears to ignore the fact that there is pre-existing variation (just look at the pictures). Emphasizing mutations is ok, but relying solely on them will probably skew results.' +p9604 +aS'True.' +p9605 +aS"So, you don't see how stating that in a functioning democratic society guns belong only in the hands of the state is not anti gun?? Maybe you could give us an example of a statement that is more anti gun that that because I am having trouble imagining one." +p9606 +aS'And you still have provided no evidence.' +p9607 +aS'Actually, natural selection tends to preserve a species with only minor changes in a stable environment. But environments tend to change. I don\'t know what that "incipient organ" junk is supposed to mean. Is that another way of saying "what good is half a wing." Well, check out a penguin to find out. Look at a seal flipper. It has the same bones, arranged in the same way as a monkey. What good is it for a land animal? And what does "fully functional" mean? What function? Perhaps the new organ had a different purpose - take the clawed hands of fossil birds for example. They were good for catching prey and climbing, just like they were for their dinosaur ancestors. But those clawed wings also allowed early birds to fly.' +p9608 +aS"Well let me put it like this, I consider it your duty because if you don't protect yourself then you basically shift that responsibility to someone else. Not only is this incredibly selfish, but 9 out of 10 times the 'protection business' gets outsourced to the State. This in itself it dangerous because when people decide that a third party like the State (which has no real accountability) has control over their lives it can all to easily lead to a situation where the State becomes tyrannical. More people have been killed by their own government than by any foreign government." +p9609 +aS'Which is what they did to the Jews.' +p9610 +aS'Is the Ammo Shortage the Result of a Government Conspiracy or an NRA Marketing Campaign?' +p9611 +aS"It's evidence of EAM. Probably she comes from a large family. Her mother always had her hands full and was on her feet day and night." +p9612 +aS'A taste of what could be our future if the left has its way.' +p9613 +aS'** Quod erat demonstrandum.' +p9614 +aS"no, you just live on delusions. you can't argue the merits of creationism on their own because they don't exist. Creationism is a fraud regardless of the existance of evolution." +p9615 +aS'And science helped Stenger write his book. How can the same subject make a stronger case for both of two completely opposing viewpoints? another' +p9616 +aS"Well then this doesn't answer my question. If you have 10 doctors for 100 people (this is just an example) and only 50 of them have health insurance and each doctor gets paid $100 a year then your health care per capita is $10 ([10doctors x $100]/100 people). If you change it to 100 people with health insurance you now have $10 per capita as well because you population did not change. Health care costs are shown per capita and not per person insured: Per Capita Health Expenditures by Country, 2007 &mdash; Infoplease.com So again, if you go from $6,000 per capita per that website given above to say Switzerland levels at $4,100 per capita then where did that money come from?" +p9617 +aS"If atheism is a religion, than yes and atheism. If it's not then no. _________________" +p9618 +aS'LOL! If my post was about either of those things, I would cut it down. The vast majority of the post, however, is about the objections to irreducible complexity.' +p9619 +aS'These "infants" do. My mother could have aborted me and she chose to have me. And if the state decides to keep abortion legal? Then you don\'t care if these "gifts from God" have a chance or not?' +p9620 +aS"You know 'my kind'? How very presumptuous on your part. Then you know individual choice is the issue, not enforced medical procedures. You didn't answer the question regarding pregnant women who intend to carry to term being required to have a sonogram." +p9621 +aS"Well, I am a creationist, and I would hope I can think logically (it's generally a good quality for an accountant and tax attorney to have). The difference between microevolution and evolution as an explanation for the beginning of a species is simple. In microevolution a species is simply adapting to it's environments. In evolution as is usually meant by the word you are talking about the formation of an entirely new creature from inorganic compounds. If this is possible I pose a few questions for you. 1) Why have no new creatures evolved from inorganic compounds in human memory? 2) How did these inorganic compounds decide that some creatures should evolve, while others of the same species did not? Why are there not some apes that have evolved into humans by now? Why didn't all apes evolve into humans? 3) One of my favorite pieces of confusion from evolutionists involve fossils. How do you know how old a fossil is? Every evolutionist I have asked has stated that fossils are dated by the rock layer they are found in, but if you then ask them how the rock layer is dated they answer that it is dated by the fossils that where discovered in it! That's a classical example of circular reasoning. I am not a scientist, so I cannot present all the evidence against evolution as clearly as someone with a scientific education and background might do. If you are truly interested in learning more about the creationist arguments against evolution you can check out the article located at http://www.answersingenesis.org/docs2004/1106ng.asp. This article also has many links to other articles with even more information." +p9622 +aS'He is a hell of a lot wiser than thee.' +p9623 +aS'Well now, there you go. . . .RIGHT ON!!' +p9624 +aS"But your proof didn't claim that God could do anything possible. Maybe only one person could build a computer, maybe one person could make a car, maybe one person could run the mile in under 4 minutes. That doesn't mean that God can do ALL of these things. It means that whoever we define to be the greatest being, we can call him god and thus he exists. Of course this wouldn't be sufficient to Christians as this says that God is probably mortal and has the limits of being a physical being." +p9625 +aS"I had researched some stuff about viruses that was applicable about life in general because it is the only thing that is not defintely classified. So the argument was about life, the other stuff was just peripheral. Don't make such a big deal about including other tings in it." +p9626 +aS'Yes. Oddly, the picture makes as much sense as most creationists.' +p9627 +aS"You mean, the perpetrator is convicted and the defender acquitted? Yes, that's the rule and not the exception. Notice here how no-one ended up dead, or even particularly seriously injured. Additionally the circumstances described are incredibly rare, that's why it makes the news." +p9628 +aS'So why are you here? Do you have anything to offer of any substance?' +p9629 +aS'I see I jumped the gun. That was well stated.' +p9630 +aS"Pregnancy is always harmful to the woman's body. However, if the pregnancy is desired then the changes are welcomed by the woman. To a woman who does not want to be pregnant then those changes are very unwelcome and are a bad thing. Pregnancy is always harmful, but the perception of what is happening changes depending on the woman. You do not understand that whether or not pregnancy harms the woman's body is objective, but whether or not the woman wants the pregnancy anyway depends on the woman. You are mixing the two." +p9631 +aS'Doesn\'t it ever bother you that you have to come up with ridiculous hypothetical sci-fi scenarios to attempt to prove your side? First of all, do you really think a head on life support is going to "be no different mentally from someone with a body."? I would say that would probably mess with somebody\'s head a bit. Secondly, you sound like you believe this person who is a head on life support deserves equal rights. They are just as helpless as a fetus in the womb. Are you saying it\'s okay to murder people who can\'t think and talk? Do you believe that thinking and talking is what qualifies a person for rights?' +p9632 +aS"What is your point? Should we revert to old laws that allow for slavery? Over the history of mankind we have struggled to understand God. God has revealled part of Himself to us, but it is difficult for the limited mind to know the unlimited mind. The US had laws enabling this? Does this mean you weren't a democracy then? When you were a child, and had total awe of your parents, and believed what they told you, were you less of a person then? Surely you understand that what your parents taught you then, was a part of you growining and becoming an adult. God for instance calls Himself 'Father'. This isn't because He has 'male sex organs' but because it is the best way for us to understand His relationship to us. Likewise, the Jews made laws in order to best live according to God's Will. They did make mistakes, and got bogged down in the law. Jesus came (as promised by God) and liberated us from the entrapment we had set for ourselves. Surely you don't advocate that we should return to a strict observence of Mosaic laws?" +p9633 +aS'If this is true, then it should cover the fetus since there is no difference between the fetus and the infant besides size and location. Every adult was once a teen, every teen was once a child, every child was once an infant and every infant was once a fetus.' +p9634 +aS'College. They are normally studied for two years between the ages of 16 and 18 before going to uni.' +p9635 +aS'LOL TOOO FUNNY' +p9636 +aS'The 7 day creation I am referring to, not merely the possibility of divine creation through the Big bang etc' +p9637 +aS'They aren\'t afraid of that. That a government agency would actually be financially competitive is ridiculous. The only way it could compete for customers would be by running at an enormous loss or legislating away competition. That\'s what people are "afraid" of, not some idiotic speculation that government is great at business.' +p9638 +aS'A lot of work has been done on that topic. I would recommend reading Debating Design from Darwin to DNA It is a monster of a book, but it is definitely worth the read.' +p9639 +aS"'IF' is the question. It suggests that Holy Tradition does not know the answer. Secondly, the issue of the flood itself could still be true and tested scientifically... as to whether an historical Noah existed that you might consign to 'myth'. Does anyone here not find it interesting that there is almost a universal factor in societies concerning a global flood? PS I have already discussed M-Eve on another post." +p9640 +aS'And it doesn\'t stop there. Another of my favorites is how they loudly criticize radiometric dating (most commonly radiocarbon dating because they know no other kind) then shout from the rooftops that radiometric dating confirms the "genuineness" of ~2000 year old manuscripts...' +p9641 +aS'You are free to disagree with the article, Chemist99a, but it was written by a scientist. You are quite free to believe biological complexity is the result of "natural selection" somehow organizing a bunch of genetic accidents into complex biological systems. I suspect you will become increasingly unable to impose that view upon everyone else. Questions about Materialismwith some pretty funny stuff about Freud.' +p9642 +aS"um, yeah, you could say that... (won't argue... left up to the evolution board)" +p9643 +aS"So what? If somebody wants to die then they'll kill themselves no matter what." +p9644 +aS"...and if RMNS doesn't explain the development of hands or feet, it's pretty safe to say it doesn't explain the development of anything else, either." +p9645 +aS'Huh? Did we win? When?' +p9646 +aS'But you think SETI is worthwhile!' +p9647 +aS"Only when it is anti-intellecutal relgion, such as those YEC's. Most relgiions are much more reasonable." +p9648 +aS"But you haven't looked. You may claim that your god did it, and no evidence to support or deny that can be offered. The assertion relies on miracle and has no suporting evidence. But when you start talking about how your god did it, your claims can be debunked by facts. Certainly the mythology of ancient nomadic herdsmen is not accurate. If you look at the world and the history of the world the is evident in the geologic strata, then you can see that the earth is very old, and you can see a succession of organisms through time. When considered with other fields of science from genetics to biogeography to physiology and anatomy, evolution becomes apparent." +p9649 +aS"And many of those countries are having problems with it. Furthermore, we aren't even proposing what other countries have." +p9650 +aS"Archie, instead of deciding before hand that I'm wrong, read what I'm saying. What trees were growing during this flood? I'm guessing there were no acorns sprouting into oaks during the flood. Therefore, in this flood sediment, we would find no rooted trees. We would find no burrows, and we would find no tracks. Now we've seen you can't answer my question. Whether this is because you didn't understand it, or didn't want to consider it, I don't know. But there is no global flood sediment which meets the criteria neccessary to demonstrate a global flood." +p9651 +aS'And where, pray tell are you pulling THIS strawman from?' +p9652 +aS'So what standards of proof do you hold the bible to? What allows you to hold it next to other religious or fantastical texts and say "Yes, this one is definately, without fail, the word of God, and this one is not."' +p9653 +aS"The 'teachings' either have no substance, or are certainly not original. Demonstrate categorically just who is the Son of God, and why this figure commands worship and obeisance." +p9654 +aS"Just like we waited until after society decided how it would view civil rights for blacks? No one is forcing you to debate the constitutional issues. If you don't wish to, fine; don't. I seriously doubt if anyone would miss your input." +p9655 +aS'First of all. Excuse me for my english writing-skills. Being a Norwegian citizen with free universal healthcare, it is pretty hard to understand why many of you Americans are so afraid of a little more govermental influence in the healtcare-business. Everybody knows that healthcare costs money. So why accept that a large ammount of your money is going right in the pockets of the insurancecompanies? Shouldn\xc2\xb4t your money result in healthcare and not in profit for some greedy company? To be honest I\xc2\xb4m happy to be Norwegian instead of American. When I get sick I can go to any hospital and get the best treatment available without having to worry about the costs. What\xc2\xb4s wrong with that guys? Of course it comes at a price. We probably pay higher taxes than you. But I do not pay for insurance, and bottom line I think most people are better off this way. At least I\xc2\xb4m getting healthcare for my money without supporting insurancecompanies that makes a profit out of peoples health-issues. Any comments?' +p9656 +aS"It's a flawed step in the right direction. I support it compared to nothing. I did not support it when they were considering CUs vs. full marriage. They took the politically expedient way out. Lest you leap to any unwarranted conclusions, my main objection is the blatent inequality inhererent in CUs." +p9657 +aS"No, I think you're trying to do more than that. You're trying to say that the increase in crime is due to a lack of gun ownership, aren't you? Because if you are, the article you cite doesn't back up that claim. What, no actual data to back up any of your claims? Do you have access to US crime numbers? How many armed breakins do you get in a country where people do have guns? That's the comparison that needs to be made here." +p9658 +aS'And i dont really believe in god because he has shown us NO compelling evidence of his existance.' +p9659 +aS"That sentence doesn't even make sense. Did it occur to you that you should actually think about what you are going to say and express actual ideas?" +p9660 +aS"Simple. The big government people will tell you that it's in everybody's best interest. The criminals will just kill you without debate." +p9661 +aS"Why are you dishonest enough to claim that you aren't trying to get YEC into the schools." +p9662 +aS'But I already pointed out the mark of Cain in another thread. http://www.4forums.com/political/sho...57&postcount=1 You see, this particular gene has but two alleles. One exists in the majority of humans. That allele, along with several other genes involved in pigmentation create people with various shades of brown to very brown skin. The second allele was created by a more recent mutation and spread in a more limited population. That allele produces white skin.' +p9663 +aS"Well, HRC estimates that the costs would be negligable and that some governments would actually save money. They site many studies on the issue, which I have not taken the time to look up, as I think this sort of statistic is worthless. It is unreasonable to ask same-sex couples to pay for the marriage of opposite-sex couples without asking opposite-sex couples to return this payment. Still, you seem very concerned about it, so I will provide this link: http://www.hrc.org/Template.cfm?Sect...entDisplay.cfm It is an interest group in favor of gay rights, yes, but that doesn't make them wrong. I did have a link to an actual study on the topic, but I cannot seem to find it. I'm sure if I scoured the Internet more, I could come up with something." +p9664 +aS'And depending on what human is "finding the answers" it can unfortunately cheapen and deny many central Biblical teachings.' +p9665 +aS"Actually, evolution occurs on the level of the population: individuals don't change, but populations do. See the examples above." +p9666 +aS"Pretty good considering Darwin wasn't aware of genetics. Too bad Wells is stuck in 1859. The modern synthesis provides perfectly legitimate mechanisms." +p9667 +aS"Zoos are indeed a good example. Although the environments are made as close as possible to the natural habitats, penguins are often kept in open-air enclosures in temperate or even tropical climates. And there are two critical differences in even the most carefully constructed zoo: the absence of any predators, and the absence of any prey. So why don't the animals quickly/purposefully/nonrandomly cease exhibiting developmentally costly traits which give them an advantage against predators or prey who aren't present?" +p9668 +aS'You got it. People make mistakes. Finally you see that scientists are just as human as religious people.' +p9669 +aS'yeah, this is clearly the best thread on these forums in probably the past year....give us some more pics' +p9670 +aS'You could put the stranger out even if they had nowhere to go and it was freezing cold out.' +p9671 +aS'I think I, and the other members of what I\'ll call the "scientific community", must be masochists of sorts as well, we continually return to these threads and bang our heads against minds that are stone walls - completely impervious to reason or logic. I think, no, I know, that there are two main reasons why I return to these threads. The first one is simple, I\'m amazed at the scientific illiteracy of the average YEC, especially when science is often their justification for belief. The second and major reason is simply my fascination with how the mind of the Creationist works. Their desperation to justify their faith is so powerful it drives them to completely abandon mainstream science and logic in favour of an isolated coccoon of reality. The insecurity in their faith that the entire pseudoscience of creationism betrays is the most ironic part. As you say, most quickly realize that they\'re in over their heads, that what they\'ve been told in their churches doesn\'t stand up to scrutiny in the real world. So, rather than continuing down a path that will bring them no good, they retreat and bury their heads in the comforting sand of "not knowing any better". However, there always seems to be one or two that are so deeply entrenched, that they simply can\'t retreat, they\'ve got too much invested. The psychology, more than the science, is fascinating to me. Waxy' +p9672 +aS'What?' +p9673 +aS'Hmmm... so, barren women can not have a valid point of view nor women in the stage of menopause because it does not affect them personally. Perhaps you should tell the moderator to institute women only Forums, men only Forums, gays only Forums\xe2\x80\xa6. etc' +p9674 +aS"If you think something is correct then you believe this. That's all believe means. I believe the above statement is very true. Except that you wouldn't have to completely change your ideas or beliefs about the universe all the time. But you'd have to modify them. Anyway, who said beliefs had to be static and fixed?" +p9675 +aS"Just because it is human doesn't mean it's a human being. I'm not sure what grade you're in but that's basic biology 101. Your ears are human. Your ears are NOT human beings." +p9676 +aS'In my reading of the Declaration (and using the 1st. Amendment as a filter) it doesn\'t matter who or what the founders meant by "Creator." The conlusion is the same; regardless. Namely; The fact that the founders considered our basic rights to be inherrent.' +p9677 +aS'I think he meant a sycophant.' +p9678 +aS"In Christ there is neither Jew nor Greek, slave nor free, male nor female, all are one in Christ Jesus - Galatians 3:28 Jesus doesn't care whether you're male or female." +p9679 +aS"And the answer is: we don't know. Maybe it came from nowhere. Maybe it was created. We don't know." +p9680 +aS"But it has never been claimed that everything developet simultaneously. Probably not. So back to the original question that you ducked with ad hoc arguments. What is Archaeopteryx. If it is a bird, why does it have a tail, grastalia, teeth, pre-orbital fenestra, and on and on. If it isn't a bird then why does it have feathers, opposable hallux, pneumatic bones, a furcula, and even a small carina in one specimen? How can creationism explain Archaeopteryx? http://home.houston.rr.com/bybayouu/...graphica_1.jpg" +p9681 +aS"The purposeful taking of life regulated by the government is something that is decided by the people. The people decide what determines what is allowable and what is not. When it is acceptable and when it is not. This is done in agreement, obviously not unanimous. Theses laws are created by the view of society at the time. Our society permits the ability to change those laws as our values change. You may call it murder, but you are wrong. There is no logical argument you can present to make your view correct. To suggest that legal abortion is anything else is an expression of your frustration why others don't share your views. There is no logic in your argument it's pure emotion and an immature understanding of how to cope with problems that don't go your way. If you think your view is indeed the view that is best for the people then be thankful in the US the opportunity exists for you to effect that. I can assure you though lieing about it, sensationalizing it, bullying people about it isn't going to get many people to consider you. Please do us both a favor before you go off on a discourse of the rights, or feelings or value of the fetus remember what I said about we as a society decided what is acceptable and what is not. We make these laws for ourselves for that reason, because we do attempt to value life. That attempt does not always satisfy all of the people all of the time, but it never will. I don't need a formula to understand how our society functions nor do I stomp my foot and throw insults or intimidate people who don't see you being right. Nor would I justify behavior that from anybody else concerning something of less import would be unacceptable. If you don't like the law, then do something about it. If this is what you deem to be the best and most effective way to do that, I suggest you find a to become comfortable with it." +p9682 +aS"So you're saying that the theory of evolution is similar to ####, in that they both make large messes when they come into contact with fans?" +p9683 +aS'As is obvious, not all would.' +p9684 +aS"Thanks, my friend, as you can see, Jito completely ignored the substance of my argument as it applies to the current american culture, as she responded to how it would apply to her personal life's credo. A more dishonest way of avoiding the meat of my argument couldn't be formed except by a manipulative, insincere and philosophical coward of jitobear's caliber. That's why there's nothing she wrote that's worth responding to. As usual she hasn't actually responded to anything I said. Why must these leftists twist what we say as they ignore the actual substance of it?" +p9685 +aS"You not differentiating between the beaver and the beaver dam, the bird and the bird's nest or the man and the man's truck. The dams, nests and truck do not occur naturally...they are constructed by the naturally occuring animals using materials that occur in nature (albeit we have to smelt the iron and vulcanize the rubber whilst the birds and beavers just stick stuff together)." +p9686 +aS"Oh, so you were not in any way talking about evolution in these posts? Then why are they posted on the c vs e board? Please, that's just pathetic." +p9687 +aS"So I have the choice between staying safe and then claiming insurance damages, or risking my life to kill a burglar and (likely) cause damage to my own property in the process? Somehow, I'd rather stay safe. Better to lose my laptop than my life." +p9688 +aS"I'm afraid you're wrong, as I created you in my universe, and implanted in you a belief that you were a god. It lead you to make statements about the truth of your own beliefs, which I'm afraid are just self-beliefs with no real evidence. Sorry." +p9689 +aS'What would you know about fair and balanced? I know a lot of truths about gays. Do you want me to start posting incessant threads pointing them all out? And I am the moderator for the formal debate forum, not the entire board. Want to debate me on the benefits of gays on society vs Christianity?' +p9690 +aS'I believe once you have the rights granted persons that they may not be taking away because you are asleep or in a coma. Not unless of course it can be shown that higher brain activity has ceased and there is no reasonable expectation that it could return.' +p9691 +aS'Pretty much every experiment ever carried out in a petri-dish; take your pick Also the revisited peppered moth experiment I linked to earlier.' +p9692 +aS"What other theories? Why mention them if you aren't going to explain them? You are actually on a board of education? I notice there was no mention of telling kids that there are other theories of gravity and that all of them have holes. Evolution is a more secure theory than gravity." +p9693 +aS'I see no reason why secular shows should be required to mention your mythology.' +p9694 +aS"Oh, he doesn't want abortion, huh? If you take the Old Testament to be true, you just lied here. Let's look, shall we?" +p9695 +aS"Actually it couldn't be any worse then it is right now. More people historically have died at the hands of religious wars then non-religion. Religion has been used to push extreme political viewpoints, selfishness, racism, destruction of whole cultures, hatred, and ignorance. Wow that's something for you to be proud of eh grizzly6626? Through religion, televangelists have become pimps where cash is more important than integrity. While I haven't seen any atheists with bombs strapped to themselves, we've all see plenty of religious fools blowing themselves up each and every day. And of course we all know how peaceful and charitable The Spanish Inquisition was. I guess it's true, when it comes to religion IGNORANCE is bliss... BTW - you forgot to mention that hitler was a devout catholic. Yeah, like I said before, it couldn't be any worse then it is right now" +p9696 +aS'But they are implemented completely differently.' +p9697 +aS'The Sun was crucial in the evolution of most life on the planet, but it may not have been the main cause of the very beginning of life. There are hypotheses that energy necessary, chemical catalysts available, Carbon, Nitrogen, Hydrogen, but not Oxygen apart from being part of the Water molecule. There are tectonic activated hot springs and chimneys in the deep sea. There is an availability of Sulfur, heat energy, and the triggering of a Sulphur based metabolism. It was internal energy from up welling and down welling of hot magma which in turn was fuelled by core radioactivity. Some even speculate that the very centre of the core may be pure Uranium. However, there is no need to debate the Second Law of Thermodynamics. It is a ruse by Magical Creationists who deliberately and in my opinion deceptively make Earth a closed entropy system. Cuchulainn PS: Fundies have an obligation to show why the fires of Hell are exempt from the 2nd Law. I already know the answer. Hell is imaginary and imaginary things do not gain entropy.' +p9698 +aS"And when supersport says that the fossil record was created by god to test the faith of the people? He could make his hypothesis unfalsifiable, and he wouldn't care that it would be unscientific." +p9699 +aS"Well I'm glad its no problem for your son. No child deserves to be harrassed." +p9700 +aS'Whether or not the 2nd Amendment was written to provide for the protection of the States from a foreign invasion, or border dispute, or Civil War, it is clear that the objective of the 2nd Amendment is to address the basic provisions and control required to form a militia reporting to the President. One of the provisions to form a militia is explicitly stated in the 2nd Amendment as the unrestricted Right of the individual to own guns. At that time in our history, when a militia was formed, it was expected that individuals would bring their own gun(s) to the militia. That provision is THE IMPLICIT PURPOSE of the Right of the individual to own guns. Within the 2nd Amendment, there are NO OTHER IMPLICIT, NOR EXPLICIT purposes pertaining to the unrestricted Right of the individual to own gun(s). In other words, the 2nd Amendment does NOT IMPLICITLY, NOR EXPLICITLY suggest or expand its purpose beyond what it required for a militia, and the control of a militia. The 2nd Amendment does NOT provide an individual the Right to own gun(s) for the PURPOSE OF providing for: food, self-defense, target practice, a hobby as a collector, or fun.. Therefore, ANY OTHER PURPOSE OR REASON for the possession of guns that has been attributed to rights under the 2nd Amendment is based entirely upon thoughts and purposes that were NOT IN THE MINDS OF the Founding Fathers when the 2nd Amendment was written. The Founding Fathers knew many people required guns to provide for food, income, and home-defense. Yet, the Founding Fathers did not separate the purpose of the unrestricted Right of individuals to own guns for a militia, from the SOLE PURPOSE of owning guns for the creation of a militia. The Founding Fathers did not write the 2nd Amendment in a manner that would even suggest that the Right of an individual to own guns had purposes beyond a militia, that would provide for: food, self-defense, target practice, a hobby as a collector, or fun.. We may therefore conclude that, any reason or purpose for an individual owning a gun, OTHER THAN for a militia, is not provided for under the 2nd Amendment, and that current gun laws for private ownership of guns is mistaken. Justifications or reasons to provide individuals with a Right to own guns for a purpose or reason other than a militia, would have to be based on some Amendment, other than the 2nd Amendment, to determine if any such Right exists for individual gun ownership exists. That the Founding Fathers did not write all Amendments with the explicit and specific Rights of individuals for every condition and circumstance is self-explanatory, as the size of the Bill of Rights and the Constitution would be enormous, and the Founding Fathers would still be busy writing the Bill of Rights and a Constitution if that was the case. However, the Founding Fathers were very careful in their use of words and phrases, and in the logical composition of a Constitution, and that they decided not to specify other purposes exist that justify individual gun ownership, beyond a militia, in the 2nd Amendment. That decision would appear to be intentional. Although it might ideal to understand all that the Founding Fathers had in mind, when the Constitution was written, it must also be understood and concluded that what was the basis for a rational giving the Founding Fathers reasons to create an Amendment, and chose specific terms, phrases, and specifics, may not exist today, nor even be of any importance. For example, individuals need not carry guns from their home to where our troops will gather. Today?s ?militia? provides for the a militia?s need, and an individual?s need for guns. What the Founding Fathers once wrote with respect to an individual possessing a gun for the purpose of a militia and the remainder of the 2nd Amendment requires revision or elimination.' +p9701 +aS"I'm not surprised. That's a typical response when someone calls your bluff. Waxy" +p9702 +aS'Muslims.' +p9703 +aS'Oh dear God your ignorance is abundant! Do you not understand what the federal DOMA law does?' +p9704 +aS"Maybe He doesn't punish them." +p9705 +aS'From your own link it is very clear the NRA DID NOT say that or publish that. Your clearly very wrong.' +p9706 +aS"Well, now this is the question that really matters, and the answer is a long one. But to state it as simply as possible: denying same-sex marriage hurts many people. It forces same-sex couples to pay for the marriage of opposite-sex couples while no one is forced to pay for their marriages. It denies them access to raise children and ability to cover their children and spouses with their medical insurance, along with the many other benefits of marriage. It uses the law to teach the people that the lifestyle and religion held by same-sex couples is wrong, and this forces them to feel the disapproval of society. There is no reason to perpetuate these harms. I have heard many arguments opposed to same-sex marriage, but there is not even one of them that justifies these harms. In fact, I would even say that there is not one argument against same-sex marriage that makes logical sense at all. Thus, even if same-sex marriage brought no benefits, there would be no reason to keep it illegal; a free and equal society does not deny rights or benefits to anyone, unless it has a very good reason to. And there just isn't any reason to deny rights and benefits to same-sex couples." +p9707 +aS'What basis do fundamental rights derive from? In other words, how can we tell whether something is a fundamental human right?' +p9708 +aS'Yea that was uncle John!' +p9709 +aS"Oh shut up! You're just sore because your side lost in the McDonald case and now you're left with absolutely nothing. You know that many gun laws are going to fall to the sword of justice, and you just can't stand the fact that your side is going to be brought back into check, just like any other." +p9710 +aS"I am hardly a phyicist, but I am under the impression that there is at least some people who feel there is reason that there are 'uncaused causes'. I think that the terms used are 'Vacuum flucuations', and 'virtual particles'. I am not aware of any peer reviewed articles on it , but a popular press book is 'Achilles in the quantum world' by Richard Morris." +p9711 +aS'Why don\'t you just sum it up with "If you\'re not a fundamentalist Christian"? You also fail to consider Christian agnostics.' +p9712 +aS'No, it is not a bad deal for the child. However, my beliefs do not permit murder, even if it is a better "deal".' +p9713 +aS'But the point is why are there relatively few creationists. The reason is that the creationist position cannot be defended in open debate. That is why creationist boards censor opposing views. On boards where creationists are not protected there are few.' +p9714 +aS'Our national parks are safe as is, huh? Regular people have no reason to feel to need to carry concealed weapons for their own protection, huh? How can you be safe when mexican drug cartel members are literally behind the next bush and inclined to kill you for stumbling upon their operation?' +p9715 +aS'Because she, like every other political figurehead, thinks it\'s alright for her to carry a gun, but not anybody else. If she DIDN\'T support a ban on all firearms, then why did she say "If I could have gotten 51 votes in the Senate of the United States for an outright ban, picking up every one of them -- Mr. and Mrs. America, turn them all in -- I would have done it."' +p9716 +aS'Oh I can easily spend $1,000 dollars an hour. If I could I would also have plenty of reason to live to be 114.' +p9717 +aS'So every woman who has an abortion lives an irresponsible life. Care to give any examples, or are you just spouting rubbish with no experience or knowledge whatsoever?' +p9718 +aS'I see a subtle distinction here. Creationism is concerned with the spiritual origins of people. "Evolutionism" is entirely concerned with explaining the nature and history of the physical world. The conflict of opinion arises out of the importance of the detail- can Genesis be accepted as a parable which contains a fundemental truth or must it be taken as a historical account?' +p9719 +aS'Yes. The first one isolated was a frame-shift mutation on a plasmid. A fairly common source of useful mutations in bacteria.' +p9720 +aS'Bonus question: (Can you spot the grammatical error within the quoted text?)' +p9721 +aS'You know, that sounds exactly what you are doing. I guess you are as foolish as they are.' +p9722 +aS"If we were created in God's image, then it would make sense that equally our emotions are a reflection of God's emotions. That our emotions are imperfect versions of his. Of course I would personally say that when man invented god, they felt the need to give him human characteristics in order to make their invention more understandable. And to assist in the oppression of others by the ever-present threat of an 'angry god who will smite you'. An 'ambivalent god who is above that sort of thing' just isn't as good at convincing people that whatever you say is right." +p9723 +aS"Because I don't feel like copying and pasting articles into a forum when they can be easily accessed online. But for a quick summary: The CCR-5 gene mutation is present in about 15% of caucasians, with 1% having the homogeneous version. These 1% are completely immune. The heterogeneous people possess some immunity." +p9724 +aS"This decision was not solely based on self, but then, I really don't give a if you want to call me selfish - the facts speak for themselves." +p9725 +aS"So, in other words, what you're saying is that the Pope, who just declared that all Christian Churches apart from the RCC to be false churches, including we evangelicals/fundamentalists is a fundie himself ? JPs right Matt, take your meds and do it quickly." +p9726 +aS"** Actually it provided proof that RMNS doesn't explain the development of hands and feet, but I don't expect you to be able to understand that." +p9727 +aS'I believe abortion is murder and should be illegal. The only possible circumstance when an abortion should be an option is when the \xe2\x80\x9cLIFE\xe2\x80\x9d of both the mother and her unborn child is at risk. When both lives are going to be lost, it is better to save one as opposed to losing two. The holocaust on the unborn children of this country is something that we should be ashamed of as a country.' +p9728 +aS'How many opponents of liberal gun laws live in urban areas?' +p9729 +aS"Really? A lot of people say that every answer makes more questions. In some ways we seem to know less now than we did at the time of Newton, in that we are less certain. And Newton's laws deal with what happens in a vacuum with no resistance, not direct human experience At any rate, my point is that you can't see all the evidence as piling up support for 'science' as 'science' is moulded to fit that evidence. Not a criticism of science, btw." +p9730 +aS'Such as?' +p9731 +aS'How many court decisions have said that it is unconstitutional to regulate guns in any way?' +p9732 +aS'How do you know none of the "children" were actually gang members engaged in illegal activity, and that fact was simply excluded because it wasn\'t considered newsworthy?' +p9733 +aS'And yet you have no problem with this law Galileo?' +p9734 +aS"Not if they give him the death penalty, then it's apeals till your ears bleed." +p9735 +aS"I'm thinking this is the section of the Iowa Constitution the media will be talking about next: Unlike California, amendments in Iowa must pass the legislature first (simple majority) before going to the voters. While I know little about the Iowa legislature, this seems a no brainer in a populace vote, considering previous votes and more current polls on this subject in Iowa. As a rule I lend polls very little credence, but DOMA passed by a wide majority in 1998. I doubt things have changed enough to cover the gap, a lot of traditional values and religious folks in Iowa." +p9736 +aS'Just to be sure you understood, it was the picture below that picture you were supposed to look at.' +p9737 +aS'See above, please cite.' +p9738 +aS"Well they'd be the experts on it; most of their members have been ruled as fitting under said category. Let's face facts. Nobody who's in their right mind could actually believe the kind of nonsense they spread." +p9739 +aS"Are you trying to make a point here? Or are you just spewing forth your hoplophobic tendencies because you're got nothing better to do? One of the problems with school children is that it's become a crime to discipline them the way our parents were disciplined. There's no spankings, corner times, or sitting on a chair with a dunce cap, because that's all been labeled as abuse to emotional development. Instead we have counseling and the administration of powerful prescription drugs to kids who can barely read. Kids are spoiled rotten and left unsupervised with TV shows and video games that glorify violence and murdering people for fun. Parents are stuck working two or more jobs just to make enough money for bills so they don't wind up on the streets. We need massive reform. We gotta go back to how kids were raised in the 50s." +p9740 +aS'Obama overturns ban on overseas abortion funding I thought abortion was the fix for bad or no family planning' +p9741 +aS"This obviously depends on the person. Both are not good...once again, a comparision is not gonna work. Whether you are an alcoholic or a weed-a-holic(not a real word) you will still mess up your health (which is a good reason we shouldn't have public health care)." +p9742 +aS'You believe two things that are incorrect: that you have refuted evolutionary theory, and that we will now accept intellegent design because of your attempt.' +p9743 +aS'Pregnancy is a health issue only for the woman. Your glib remark pretending to sympathy is insulting.' +p9744 +aS"But it took a lot longer to develop. My point was that only after about 5000 years of human civilization did empiricism as science develop. Religion, supernaturalism, and mythology trace back into prehistory. What we know as science didn't even begin to exist until the late 1500s and 1600s. Before that it was OK to do science like Aristotle did - no experiment, only thinking about a logical answer. Thus, heavy objects fell faster than light ones and any fool could tell that the sun orbited the earth. But science is more than an inner way of thinking. It is a process and a method for learning about the universe. It is called methodological naturalism. That is not to say the science asserts that nothing exists except what is natural. It says that science can't study the supernatural." +p9745 +aS'Well, Google is your friend here - try fossil and see what you get. Alternatively click the link in my sig and look in the archive section at Talk Origins. It is not possible to break fossilisation down into such simple notions as "one big preservation event" and lots of "little preservations". If you can think of some examples of fossils then we can examine them more specifically as what can be said about the circumstances of their preservation. I\'ve been a bit vague here as it is a) such a broad subject to describe succinctly b) I\'m tired and c) I\'m full of cold No doubt someone who isn\'t under the influence of b) and/or c) will chime in as well with more details while I pull round. Now, where was my hankerchief......' +p9746 +aS'The attacker is usually armed in spite of gun control laws. All they do is disarm the law abiding. Not to mention the lack of enforcement on criminals.' +p9747 +aS'I\'d say no to the first part, and yes to the second. The "information theory" argument is something that gets brought up on forums alot, generally by people who don\'t know what information theory is, but I\'ve never seen an "official" ID person claim it as a central argument. The basic argument is that stuff, from the universe, to people, to eyeballs, to DNA, is too complex to have "just happened". Someone, (and they won\'t say God, cause their not trying to be religious here, oh no...) must have designed them.' +p9748 +aS'Because...' +p9749 +aS'That is amazing. I find it crazy that this baby is much younger and smaller and far less developed than many of the babies that are aborted. Abortion is murder.' +p9750 +aS"But still, if you think there are rights in the bill of rights that is wrong, that should not be granted or guaranteed, it would be a viable option to vote for removing them. What debate are you trying to end here? The debate: 'do you want little or less gun-control'?" +p9751 +aS'Assuming this right exists....you could say that you have no right to kill it though, you can only try to starve it. -You have consented sex and get pregnant. The pregnancy is a direct consequence that was known when having sex. -You have consented to a stranger coming into your house to eat dinner. The stranger coming in and sitting down and using your plates and eating your food is a direct consequences of you inventing him in for dinner. -If you say you don\'t want the unborn to "live off you" anymore then the only thing you can do is starve it because you can\'t kill it as it did nothing that it was not allowed to do until just now. -You have decided the stranger must go, however, you don\'t have a right to kill him right there as you didn\'t give him any reasonable time to leave.' +p9752 +aS"If a child comes in for an abortion and fears abuse from her parents then law enforcement should be notified. The only people protected by opposing notification laws are abusers and pedophiles. No elective, invasive medical proceedure should be performed on a child without the consent of a parent or judge. If a minor is allowed to have an abortion without consent the parents/ guardians will have no idea whats been done to this child should complications arise, they wouldn't be able to give this information to a ER doctor or the childs pediatrition." +p9753 +aS"As I mentioned above, science curriculums follow paths. One's worldview plays heavily on one's interpretation of scientific data. An agnostic, or atheist teaching establishment can become satisfied with one path of scientific theories without searching for others. There may be more to be discovered about thermodynamics, cell structure, irreducible complexity, the decay rate of the earth's magnetic field, radiometric dating, the fossil record, and countless other things that a teaching establishment may not be interested in exploring, if it's comfortable with it's interpretation of current data's indications that the happenstance origins worldview is correct. It goes back to what we touched on before - teaching students HOW to think, not WHAT to think." +p9754 +aS'ur wierd!!!!!!!!!' +p9755 +aS"Oh, don't be so hasty Bear in mind that at the scale upon which bacteria operate, molecules are significant physical structures. The bacterial flagellum, for instance, is an outboard motor constructed directly out of proteins, which are in turn directly, physically translated via RNA from DNA sequences. The physical shape of the folded molecular structure of those proteins is what makes the motor work. So there's nothing abstract about the relationship between DNA and the organism's physical form or abilities." +p9756 +aS"uh, yeah, that was their intent! Under color of law no less. The truth always seems to be your worst enemy doesn't it?" +p9757 +aS"No, there really aren't. As for Robertson, why do you think I said he was right (as in global warming is happening and we are largely responsible) by sheer luck?" +p9758 +aS"That's a bad term. I wouldn't call myself that, but I do know more then average person." +p9759 +aS'Whether a fetus is a person is not something open to consideration. An apple is not an orange. The reason that we have two words to apply as labels is simply because they absolutely are not the same thing. It is that simple. Suppose that a fetus is frozen and implanted in a female 22 years later. Is it of legal drinking age at birth? Obviously not. We currently have the technology to actually do this.' +p9760 +aS"No they don't. We didn't have a tyrannical society back in the 1830s when without a doubt personal autonomy didn't exist for some. The thing is, you don't have absolute personal autonomy now either. And it still doesn't answer my question about where the right came from, you just said there had to be one." +p9761 +aS"Sure you do . Because like any reprobate, what is wrong, is right to you; and what is right, is wrong to you. So of course you consider anything i believe to be wrong. But just so my original statement isn't lost to your attack, here it is again so it can be clearly interpreted without your tainted condemnation. Archangel The ugly reality of life in America today regarding the secular humanist Left is that they support free speech as long as you agree with them. If you disagree with them, you are branded as a religious zealot who's determined to take their rights away. What they don't want you to ever realize is that it is they who are tearing at the traditions and customs that America was built upon and gained us the respect of the World at large. And it is their corruption of the morals and values America once represented that is the cause of so much hatred and disrespect from the rest of the World today. So thanks to the liberal immoral left, we are seen as the moral evil of the World. Not because of the Religious Right as the Left would have you believe." +p9762 +aS'Well, by the strict defintion of the word "born", an abortion is considered a premature birth.' +p9763 +aS'What else would you expect from the people who created a god in their own image? Your thinking here is right, religion has a long history of being egocentric.' +p9764 +aS'Actually I think most people DO realize this.' +p9765 +aS'So you know how foolish you are and hope that name calling will distract from that being recognized by everyone. Erectus skulls were smaller because the brain was smaller. You brought up KNM-WT 15000 (Turkana Boy) and you weren\'t even aware that as an adult he would have been about 6\'1" tall? Why is his skull smaller than modern humans?' +p9766 +aS'Yes.' +p9767 +aS'So you put words in Machs mouth. This would be acceptable if you were not doing it in a malicious fashion to get some sort of sadistic pleasure but you were instead actually trying to get him to explain himself. At any rate it totally disproves your nonsense about how you above me because you do not put words into peoples mouths because you do the same. You were not being dishonest to start with I admit it would be wrong to deliberately misrepesent you but neither of the circumstances apply here.' +p9768 +aS"You know how those anti-gunners are?they just kinda get stuck in that same old revolving door.Can't come up with anything new so they rehash." +p9769 +aS"I know it's almost as silly as thinking gay marriage will undermine heterosexual marriage." +p9770 +aS'just re-emphasizing' +p9771 +aS'Right. It was thrown out of schools back in the 1960s, and again in the 1980s when attempts were made to dress creationism up in the jargon of science and call it "Creation science."' +p9772 +aS"Didn't supersport openly admit he could not prove his own beliefs in divine creation? For all his dishonesty, you have to admit he's more honest and forthcoming then Marc or AA have been." +p9773 +aS"The Word of God says otherwise. Romans 1:25-27 - They exchanged the truth of God for a lie, and worshiped and served created things rather than the Creator\xe2\x80\x94who is forever praised... Because of this, God gave them over to shameful lusts. Even their women exchanged natural relations for unnatural ones. In the same way the men also abandoned natural relations with women and were inflamed with lust for one another. Men committed indecent acts with other men, and received in themselves the due penalty for their perversion. You've rewritten Biblical Christianity. 2 Timothy 4:3-4 (New International Version) - For the time will come when they will not put up with sound doctrine. Instead, to suit their own desires, they will gather around them a great number of teachers to say what their itching ears want to hear." +p9774 +aS"So it's the blog's fault that Miller sided with the creationists. Right-o, marc. (I suspect you haven't even read the blog entry in question; I'd be surprised if you've read more than a paragraph of PZ's blog.. ever.)" +p9775 +aS'Hate to have to spoil things, but the rest of the world has really no interest at all in Kansas and its scholastic problems' +p9776 +aS'And for good reason. Electrical engineers in general have a pretty poor track record when discussing issues that have nothing to do with... electrical engineering. Examples: Walter ReMine, Fred Williams, etc.' +p9777 +aS"Fetal Homocide? Toddler Homicide? A human in different stages of development.....Why/or What is the difference?And if someone wanted this legal( Toddler Homicide) ...I don't see much anybody could do legally to stop it.. When women kill their tots they are locked up/ and branded with a criminal record vs the female who callously kills durning the fetal stage.(Double standard?) I have a couple friends, who have aborted more than once, because they didn't want to lose their girly figure(trivial). I find it eerie and disturbion....." +p9778 +aS"Well let's put it this way. I really like playing baseball. So I put in a law that says everyone has to play baseball unless they're in a position where it will threaten their life. Since it's such a wonderful thing no one should have any problem with a law passed, right?" +p9779 +aS'I say, since there are medical uses for the stuff, the drug is not pure harm (as the authoritarians assert.) Marijuana has its benefits and harms, and some of these benefits boil down to a matter of personal preference. Illegalizing it, in effect, dictates a personal preference.' +p9780 +aS'Why are you against abortion?' +p9781 +aS"I'm not sure that your comment will encourage any sort of discussion. Certainly no one is glad because your mother died so young. Not even creationists are likely to be gleeful." +p9782 +aS'Are you sure? What about animals that had a combination of both long and short hair. Such fur would function more efficiently as insulation that either long or short alone.' +p9783 +aS'1. From what I have learned, different locations breed different surroundings. Human ancestors were migratory pack animals. Where they went, they encountered new types of pressures, causing them to change over time. 2. Different selective pressures. Different areas can lead to different pressures. Some mutations also occured etc. Things like that. Evolution doesn\'t HAVE to occure non-stop if there is equilibrium. Not everyting is always changing, as far as I learned. Barring mutations that cause significant changes over a lot of time, Apes, Chimps, Monkies wouldn\'t really change all that much. There\'s no real pressure to do so. They are already well-adapted to their surroundings. Actually however, there really isn\'t that much difference between some of the great apes and Humans. Take the Bonobo Chimps, for example. They have 98% the same DNA as Humans. They are the closest to HOmo Sapien. 3. Niches. Related to above. Crocs, for example, don\'t evolve that much because they are a very successful animal design and they found a place in which they can thrive for generations with little to no changes. Other animals can do the same. 4. As well, humans didn\'t come directly from Apes. We all evolved from a common ancestor who did all of the above. http://www.talkorigins.org/faqs/homs/species.html Here is a time line of hominid species http://www.talkorigins.org/faqs/faq-speciation.html http://www.talkorigins.org/faqs/speciation.html Evolution doesn\'t lead to a higher species, as well. There is no hierarchy in nature. Each species is equally as well "evolved" depending on it\'s environment etc. A Human is no more evolved than a Chimp or better than a Chimp. Evolution doesn\'t lead to progression, but merely change. It\'s not getting better toward some high standard. Humans just like to think so.' +p9784 +aS"This is a pretty touchy issue, and I agree with the different points of view.. most of them make sense... while I don't personally agree with abortion, I don't feel that I have the right to tell someone else what they should do. The way I see it, is that it's their body, their life, they are the ones who will be affected by their decision. I don't have to like the choices someone else makes, and I don't have to agree with it, but while I have that right, I also believe that people should have the right to make those decisions. Are these anti-abortion people going to step in and pay for the cost of having the baby, raising it, etc..??? Maybe some of those are the issues people consider when having an abortion. Maybe the woman was raped. I see the point when someone said that the baby should not be punished for that, and I agree with that, but the rape was committed against the woman's will... she didn't ask for that to happen, and if a pregnancy results from that, that is also against her will, so why should she feel that she has to have the child? What does she tell the child when it decides to ask who its father is?? The child could still be born and given up for adoption, and that is a good idea, but maybe the woman will relive the rape throughout the pregnancy by being reminded of it on a daily basis.... all I feel is until it happens to you, and YOU are forced to make these kinds of choices, you shouldn't judge anyone else for the choices that they make." +p9785 +aS'I think you sound rather immature. And actually, it\'s tough luck for you, Chuzlife. Because the law is not on your side. And I doubt women who are exercising their Constitutional rights are going to tell you about what\'s going on with their bodies or within their privacy of their relationships with their physicians and/or family members. Nor do I blame them one bit. And just to clarify your position for the board, on this "child" definition you keep insisting on. Do you mean to use that terminology for a fertilized egg, too? As in the photograph I shared earlier? :flutteringeyelashes:' +p9786 +aS'I got an interesting tid bit for you: http://www.2ampd.net/Articles/difiElitist.htm First read the text. The anti-gun senator is noted for having the ONLY legal concealed gun in the city of San Francisco. Also note as a person who carried a concealed gun and still keeps a .357 magnum for protection, that she should KEEP YOUR FINGER OFF THE TRIGGER, until your aming at your target.' +p9787 +aS'http://www.dcagenda.com/2010/02/08/m...asure-in-poll/ Keep in mind that this is an opinion poll, so take it for what its worth, but it seems to indicate that the people of DC wanted to vote on this issue.' +p9788 +aS'No, I\'m saying it\'s OK because abortion is legal in this country. I was just pointing out that it\'s also legal to execute a convicted killer, and it\'s fine and dandy to declare wars where many people will die. "Thall shalt not kill, unless there is a war". Legally there is a difference. But let\'s just toss that out for a second. The end result is exactly the same. Eyes fogged over no longer care whether it was fun or self defense. It\'s only time it\'s your call, is when it\'s suicide.' +p9789 +aS"Well, the slavery analogy for gay rights is past it's applicability at this point--one was a property issue (also rooted in deep prejudice), the other is a morality issue. Many people oppose gay marriage out of morality and NOT prejudice. The same can't be said for slavery. There are many ways that the analogy doesn't work and that's just one of them. In fact, it could as easily be an analogy to reverse it and say that the ones who did the enslaving were analogous to gay rights lobbyists and the abolitionists were analogous to those who seek to protect marriage. After all, the plantation owners were the ones really fighting for ill-conceived rights--rights that they shouldn't have had." +p9790 +aS'It is clearly not a strawman argument. I think he doesn\'t know what "straw man" means and I think he is meaning to say "red herring." It isn\'t a red herring either; it\'s a perfectly logically related question. I would guess he doesn\'t see that as he neither understands evolution nor bacterial resistance and, thus, the relationship.' +p9791 +aS'Yes. Only the ignorant think not.' +p9792 +aS'again, please review the definition of an atheist humor cannot be observed by apparatus that test the physical realm. it is an abstract and intangible quality. so is beauty, artistic ability and pleasure. yet these things exist and are as real to an atheist as it is to a theist. an atheist does not need a devine revelation to appreciate intangible qualities or account for their existence. they can be detected through mental processing, and communicated so that others can agree on the quality and identify it when it is present. being an atheist does not preclude belief in the existence of intangible and abstract things. it just precludes the belief in god and a spiritual/supernatural realm' +p9793 +aS'This is obviously not talking about abortion.' +p9794 +aS'These items do not have killing as their primary use.' +p9795 +aS"No. You've not understood what I said. I don't know how to make it perfectly clear to you...the reason the skin color vs. homosexuality analogy is not valid is that one is in 100% of the cases studied a result of uncontrollable genetic inheritance and the other is generally not." +p9796 +aS'You can not create the general from the specific, only the specific from the general' +p9797 +aS"I'll assume this is figurative since they do not literally melt." +p9798 +aS'Well, if you don\'t want a reaction, I would prefer if you not use the word "god" since it is loaded with so many other meanings and conotations than those you say you mean. The choice between our two stances is indeed one between choosing a moral stance based on reasoned analysis (imperfect as that may be) and choosing a moral stance based on blind faith (i.e. not supported by evidence) in a moral code dictated by a religious authority. You say that my moral code is a code that puts faith only in myself. That is not true. I very openly acknowledge that if I never had input from the outside - moral codes which were presented to me with the reasons behind them - then my moral code as determined solely by myself would have been meager indeed. I have had a wide range of influences which have helped determined my moral code: - The moral codes of my folks during my upbringing - The moral code of the moderate form of Roman Catholicism I grew up with - The moral codes generally accepted by the moderate Democratic part of society - The moral stances of friends - The moral philosophy of Kant and other philosophers I have read about I am sure that I could even come up with more than that. From all of those, I have gleaned a morality that works best for me, where my moral code seems to be quite a common one. The moral rules which I accepted were typically the ones which gave the reasons behind them and whose base assumptions I agreed with. The moral rules which I rejected were typically the ones which gave no supporting reasons or whose base assumptions I disagreed with. I suspect that you assume that if a morality is not grounded in religious rules, then it becomes based on selfishness. That is not true. We are all inspired by heroes that sacrifice themselves for others - be they secular or religious (as Jesus himself can be viewed as a hero). There is a lot of overlap in morality between secular morality and religious (mainly Christian) morality - against theft, murder, etc. However, I find too many of the religious rules very arbitrary (such as the anti-Gay propaganda, some religion\'s ban on contraceptives, the idea of the infalibility of the pope, etc.) that I certainly will not follow religious rules blindly. Furthermore, so much of religious morality was determined simply by religious men who were set in the local morality of their time and attached that morality to the religion. Even if Jesus was divine, it would be very hard today to know how to throw away all the junk morality that was added after his time and extract the pure origin.' +p9799 +aS"As pointed out, with a different physics, chemistry and biology, the universe as we know it wouldn't exist. What is really damaging to the concept of creationism as truth is a list of what we should expect if a flood had occurred under the same laws of science that are in operation today. One problem with creationism (I know, you want to ignore the problems) is that they constantly fall back on miracle in order to do a reset of reality in order to circumvent reality when creationism bumps into scientifically impossible events. I don't mean to rain on the parade, but with all that said, it has been done. There is a list of 28 items, originally compiled by Jim Moore, that we should find if the flood happened as per the Bible. Not even miracles can solve these. That list is followed by further problems that have been compiled by Ken Harding from numerous sources. What Would We Expect to Find if the World Had Flooded For more information you can refer to the Flood Geology FAQs at TO. Two items with information that specifically addresses the question of the OP are Problems with a Global Flood, and The Geologic Column and its Implications for the Flood ." +p9800 +aS'Are there truly laws of logic? Where are they encoded?' +p9801 +aS"The quad 50 full automatic anti-aircraft gun is designed to oscillate on it's mount. This is so that the bullets will come out in a pattern. This pattern along with tracer rounds helps the shooter guide the blizzard of bullets at the aircraft. Even this only works at low altitudes. Modern planes typically fly at ~30K feet. That's more than 5 miles high! A perfect bullet, or one that is fired in a vaccum with an initial velocity of 2800 fps will only go ~25k feet before gravity alone will have reduced it's velocity to 0 fps. The odds of hitting something that is moving at ~900 fps at any distance with a bullet traveling at ~2800fps are slim to none. That is why anti-aircraft guns are full auto, not a semiauto or anything that a citizen has access to legally." +p9802 +aS'you\'re looking at evolution in way too much of a magical and mystical way. Evolution doesn\'t "know" anything. It doesn\'t have any desires... and... i lack the eloquence to briefly state mechanical (and complete lack of desire) aspects of evolution. i suggest you do research as to how there are no conscious thinking elements in evolution. Science will never be able to disprove any god because of some flaw science happens to point out. The best individuals can do is, when people try to reason that such perfect organs imply a designer, point out that the design isn\'t all that perfect after all. If you want to try and debate flaws in design are evidence against a god... well go ahead... but then i\'ll just know if i\'m ever looking for an easy debate victory i\'ll just try to find you. At the very best all you are doing is showing that the idea that God created all things perfectly probably isn\'t true... and even then someone can just point out that apparent flaws we see are simply the ineffable will of god.' +p9803 +aS'Actually, no, that is not what I said. I said: What you quoted is what Answers in Genesis said. Please do not be dishonest and tell others that I said this as I did not.' +p9804 +aS"Ingus, please see my comments at the end of my previous post. The purpose of this thread is to introduce ourselves and have a Q&A about the basis for each others views etc. If you want to debate the specific differences we may have in our views, either open a new thread and invite me over, challenge me, whatever... But I'm not going to debate it here. I think this thread is a great idea. People should introduce themselves, lay out their views however they see fit and let others do the same." +p9805 +aS"And compare that to an equivalent sized human - if you compared the skill to a 10-13 year old boy, the erectus skeleton's cranial capacity would be significantly smaller. Doesn't contradict in the slightest other than the bizarre positions you decide other people should hold." +p9806 +aS'Sure. The outcome of Heller vs DC and Florida Shall - Issue laws support that statement. According to Brady logic, the more helpless you are, the safer you are from criminals.' +p9807 +aS"No, that's just the pork tacked onto the original bill." +p9808 +aS'They do not hate the concept, they merely reject it as being useful or necessary to explain the material universe. I mean come on what utility would a physics which incorporated miracles be? Nothing would be predictable and all utility would be lost. If you want all of science to be arbitrary and unreliable then all ya gotta do is inject miracles into the field. For example what value is f=ma {except when the diety wills otherwise}. Or e=mc2 (god willing)' +p9809 +aS'So let me get this straight - you admit that you are wrong, and you want me to provide documentation to prove this admission correct? How about we both simply agree that you were wrong and move on.' +p9810 +aS'So are you saying that if one person prays for another person who is sick, that if the praying person believes enough then some power of belief within him is great enough to heal another person who has no such beliefs, but that isn\'t a miracle that can be attributed to God, but is just something the person praying accomplished because they believed enough ? So when I laid hands on my 9 month old daughter and prayed for her healing in Jesus name, when she then within 5 seconds opened her eyes and went from completely listless with a 103 degree temp to wide awake, happy and affectionate as she smiled at me with bright little eyes, are you saying that something within me transfered to her to bring about that instant result ? If that is true, then you must admit that something supernatural still happened, it\'s just that the power to heal transfered from me instead of from God whom I asked to heal her in Jesus name. Now mind you, I totally reject that, as I know it was God healing my daughter because I know rationally speaking, that I have no supernatural powers within me. And I truly understand how difficult it is for someone who has never personally experienced a miracle to not be skeptical about miracles or the supernatural, and maybe if I had experienced only one in my life then I too might question if it really happened. But I have had numerous Angelic interventions that cannot be denied. And the personal spirit filled contacts with my heavenly Father on a daily basis is more than one such as I am can even fully appreciate or comprehend. Because you see, I am a sinner and completely unworthy to be in Gods presence at all, yet He has lived within me and fellowshipped with me each and every day of my life since I accepted Jesus as my Savior in August of 1975. And if you want to believe me, 2 of the Angelic interventions I experienced happened before I was even saved in August of 75. So as it is written, before the foundation of the World, God Knew me. And while I was yet in the womb, He knew me. And while I was in the womb, He knew the number of hairs on my head. So also, even before I accepted Jesus and was born again, my Father in Heaven knew me, loved me and protected me until the day of my salvation. This is why I\'m so adamant and stubborn in my belief and can not be moved by any unbelief. If I denied Jesus and Gods truth with all of the personal and first hand supernatural experiences I have had, I would be less worthy than the greatest evil doer and unbeliever in the world to receive Gods Grace and Love as I have. I have prophesied, spoken in the language of the Angels, been supernaturally saved from drowning, been saved from a violent attack which may have led to my murder as I had 5000 in cash on me at the time. But my Guardian Angel intervened and ran the muggers off and they never found the money. That was just one of the interventions and all I did when i saw the trouble coming was say within my mind, "Lord Jesus, help me". Nothing I did stopped the attack, nor could it have as these people had murder in their eyes. I had never seen such cold blooded hatred in any persons eyes before as was in this one guy. And yet within seconds I saw that rage in his eyes turn to abject terror as he looked past me, then he said to me, the next time I\'ll kill you and they ran away like total cowards. When I turned around to see who had scared them so much and looked exactly where they looked when they looked over my shoulder, you know what i saw ? Absolutely nothing. There was nobody there at all, no human anyway.' +p9811 +aS'The founding fathers were afraid to trust the common people with the right to vote. They didn\'t want mob rule and chaos. "Most of the Founders believed that property ownership was essential to good citizenship and therefore that only property owners should be able to vote. \'Property\', in those days, also included slaves, of course, and half of the Founders were slave owners....The maintenance of power in the hands of the elite was further strengthened by who could vote. In 1787, there were about four million people living in the 13 original states. But only about four percent of them, it is estimated, could vote. Excluded were the one million slaves, the two million women, anyone under the age of 21, and all non-property owners." http://www.alternativesmagazine.com/22/lonsdale.html' +p9812 +aS'You either did not read my post thoroughly, or are intentional misrepresenting me. Post 250 (which I had actually read before starting this thread) is nothing but DamEtel rambling about homologies between vertebrae embryos. That has absolutely nothing to do with the unexplained homologies that the Denton talks about. Evolution simply cannot, reasonably speaking, account for the homology between your arm and leg, among other examples.' +p9813 +aS"To a small extent, this happens already. Oftentimes (21.3%, U.S.), a woman decides to have and abortion because she cannot afford a baby (from here, source). This is in effect removing members of society who are non-productive (babies produce virtually nothing useful until they mature by about 10 years). And poor families are less productive, since they are often on welfare. Granted, this is a rather harsh perspective, but the effect is the same: In the U.S., there are about (21.3% X 1.31 million) 280,000 less people every year who would have likely grown up in a poor home (assuming the child wouldn't have been adopted). Forced contraception/abortion is seen as an effective way of solving poverty in some parts of the world..." +p9814 +aS'What a condescending attitude you have. In case you haven\'t noticed, you are a very small part of the human race that you smuggly hold in contempt. (Thankfully small!) Your mission should be to improve it, not to stand back and claim you are better than everybody else, as you seem to do. Killing innocent people of any age is wrong. Children are no exception, they are just the epitomy of innocence. The "pretty sick" applies to your own deluded thoughts. Rest assured, I will not mourn your death or the deaths of any of those you may have taught your insane values. You are !' +p9815 +aS'http://www.nytimes.com/2008/06/18/op...18kristof.html' +p9816 +aS"Well, sort of. It isn't necessary, but if you're predicting intelligence from what someone does rather than direct measurements of physical properties, knowing their motivation level might allow you to make more accurate predictions. Nevertheless even without knowing the subjects' motivations at all, today's generic intelligence tests still have excellent predictive power for success in both school and employment, and are perhaps better predictors for future success than any other method we have (including interviews, personality inventories, aptitude in a particular field)" +p9817 +aS'Just a newly-evolved structure. It happens.' +p9818 +aS"ABORTION IS NOT BAD. That's all that needs to be said." +p9819 +aS'An attempt by you to dodge the main point.' +p9820 +aS'You really have flipped over the edge into the desparate area of insanity. Please Penfold present some STATISTICS to back up your wild accusations. IF you cannot present anything other than the disgraceful 43..... Then shut up Guns in the hands of law abiding citizens save lives, the statistics back this up from EVERY country EVER to introduce gun control.' +p9821 +aS'So the founding fathers and their work is basicy viewed as an authority based on their competence?' +p9822 +aS'Intellignet design seems to have a large following. The fact that somebody believes in intellient design does not necessarily mean that they disagree with evolution. A lot of folks (I would say the majority) view it as evolution used as a vehicle for intellient design (basically "god planned it and made it all happen"). The movement to teach YEC is non existant. Creationism does not necessarily=YEC. The YEC crowd is their own little clique of scientific illiterates. I have been on the local board of education for 2 years now and have never heard the phrase "Young Earth Creationists" in any official capacity, nor has anybody ever suggested that it be taught. I had no idea what a "young earth creationist" was until I read it on this board, 6 months ago. It is simply not an issue, and I am right in the middle of Kansas.' +p9823 +aS"Yea I agree with you on how there was no exact se t of laws at the beginning of creation. The reason I say that they most likely didn't marry their sisters is mostly cause God gets mad at Cain and places a mark on his head so everyone he runs across will not kill him unless they want to die a death 10 times worse than his. Kinda just says that there are other people out there." +p9824 +aS'Yea the legalizatioin of drugs would cause an epedimic of problems. Crime, suicide, mental health problems, and physical health problems.' +p9825 +aS"How curious that not everyone can admit that this kind of treatment is wrong. How interesting that another issue comes up instead of addressing the blatant, in-your-face kind of mistreatment of an individual making a private, personal decision. Like many decisions in life, this is one that is difficult to come to. It doesn't mean it's a wrong one. It's hard because your options are so very serious." +p9826 +aS'That is right funny goober Paul Helmke is sweating it as all the post Heller court cases keep chipping away the feet the brady bunch is built on. Gun-ban lobby losing its shot | The Daily Caller - Breaking News, Opinion, Research, and Entertainment Gun prohibitionists are disingenuous, hypocritical "Gun-Free" Chicago experiences a 9/11 once every four years The Daily O\'Collegian - Shooting down gun control laws http://www.news-sentinel.com/apps/pb...6/NEWS/3260308 Another Coburn amendment killed by Senate | .Politics Let me know when you had enough I will post all the States that have a State Firearm freedom act as well as more of the same' +p9827 +aS"Wrong and no one has ever called bone marrow an inner sanctum and I don't know what a baby's tabernacle might be." +p9828 +aS"You weren't referring to your home in your little story of helplessness." +p9829 +aS"Yes, I've noticed that. I do think part of the problem is that he hasn't bothered to get educated in the subject. From the arguments I've seen from him over the time he's been here he seems to rely on YEC websites for information, and when he gets to something he doesn't know it seems like he cuts-and-pastes (often without fuly reading) from google (leading to the Civil War Dinosaur fiasco and the Nazca stones fiasco) that seems to support his views" +p9830 +aS"Oh sinj.don't let it get you down,it don't mean nothing (sorry couldn't help it)" +p9831 +aS'It is in the first place unclear to whom the "further harm" is done. But even granting that the fetus dies, it is not clear how the situation is analogous to abortion, because the intentions of not only the man but even more importantly of the pregnant woman are completely different.' +p9832 +aS'You\'re thinking is right on, sinjin. Although it\'s kinda hush-hush, it has been determined (especially in the more charismatic churches) that when one "goes further" in religion the other feels alienated and problems/troubles that probably would have never risen in their relationship oozes out. A new circle of friends emerge which make the one that is “left behind” feel closed out and closed off. Arguments then seem to erupt daily and most of it over who is doing the “right thing” according to that religion, followed all too often by divorce.' +p9833 +aS"Do you mean someone who was wrong? I asked you before to give an example of where Newton found empirical evidence of God. You failed to do so. I suspect that you can't." +p9834 +aS'And so have animals. Plants have been wiped out in the great extinctions too. [quote]Carbon dioxide producing animals could even feed themselves with their own breathe![/quot] Huh? You produce carbon dioxide. How do you propose to feed yourself with that?' +p9835 +aS'What in the Hell does evolution have to do with people doing bad things? I am a believer in creation by God and have never heard such drivel. BOY-HOWDY!!!' +p9836 +aS'Right. The frenquecy of the alles have changed over time.' +p9837 +aS'and thus a reason to support balanced reporting. true, there are indisputable facts. say 3000 died. but the interpretation of the facts are subjected to bias. the 3000 deserved to die as collaborators vs the 3000 were innocent and did not deserve to die.' +p9838 +aS'I know that not all people who are pro-life are woman-hating. I, too want to see abortion reduced to the bare minimum. I just disagree with most pro-lifers on how to accomplish that. My issue was with ROCC\'s attitude in the post I was responding to. To summarize he/she said that your shouldn\'t get pregnant and if you do - you just get to deal with it. There is absolutely no regard for an individual\'s situation, the attack is entirely focused on women and it offers NOTHING that will help reduce abortion. ROCC\'s statement was quite woman-hating, but no, it is not indicative of the pro-life side\'s feelings about women. The only times I am compelled to really think pro-lifers are anti-woman is when they have the "pregnancy is a woman\'s due punishment for promiscuity" attitude or demand that a woman die/put her health jeapardy or demand rape victims go through with pregnancies. If you can\'t see the woman in even those most extreme situations, then you clearly have zero regard for women. I believe that abortion stands it best chance at being reduced by addressing the things that lead to unplanned pregnancy and the reasons women choose to abort. To demonize women and simply take away choice without addressing these things will not reduce the number of unwanted pregnancies, or gauarantee responsible choices. It will lead desperate women to desperate action, though (i.e., coat hangers).' +p9839 +aS"A perfect example of why Christian fundamentalismm and evolution can't co-exist. If God is wrong, then the Bible is wrong. Evolution contradicts the Bible, plain and simple." +p9840 +aS'so do we trash the whole thing, or what?' +p9841 +aS"Everything basically. You're held captive by hostile natives that have set up barricades and checkpoints around the property you live on. They decide when you get to come in and go out, and the police have decided to abandon you rather than come to your aid. And Canada has laws that make defense with a firearm either impractical or out right illegal depending on just where you life." +p9842 +aS'Our emphasis on Police and crime fighting reduced crime. Not gun control! Our murder rate is largely an Inner City drug and drug gang related problem. Fix that and then you will finally be doing something!' +p9843 +aS'Really! Then I assume that you have read Darwin - at least On the Origin of Species. Otherwise you are babbling. Please cite specific passages from Darwin\'s books where he made "morals and ethics" a joke. Please also do the same for the works of Dawkins. Your assertion presumes that you have read the works of both men.' +p9844 +aS'Your wrong. Airplanes and courthouses are gun free zones but these places never have massacres.' +p9845 +aS'The main incentive for a male child is that in China you can only have one child without severe penalties and a female child means the family name is lost.' +p9846 +aS'We know that now, but not because the sun rises every day, because we have identified other evidence that proves heliocentrism. The hypothesis "the sun orbits the earth" predicts it will rise and set every day, the hypothesis "The earth is rotating" predicts the same.' +p9847 +aS"Just some interesting information I learned when we went caving a couple years ago (a real cave, not one of the commercialized ones). Bats actually have better eyesite than humans, but even they can't see in pitch black. No eye can." +p9848 +aS"Thanks. But it seems that you don't understand. Perhaps the people of Austin are more intelligent than they are down here in Houston. Maybe it's just that you are surrounded by educated people who show a tendency away from creationism. But you see, I run into people all the time (and meet them on this board too) who think that speciation has never been observed. Why do they think that? Because their holy book tells them so. The herring gull/lesser black-backed gull is an example of a single, vast, globe encircling population that has become separate species at the extremes of it's range - and those extremes overlap. Before I came to Texas the idea that the Book of Genesis was literally true never occurred to me. So it was kind of a neat moment to realize that the big birds around the restaurant dumpster were herring gulls, a living example of a population in the process of forming separate species." +p9849 +aS"** Nor do I think you at all stupid. I do not debate stupid people, there is no challenge in it. Nor do I debate arrant foolishness and irrational notions such as biblical literalism. It's no more challenging than shooting fish in a barrel, and no more satisfying than destroying a child's faith in the tooth fairy. But I do take offence at you characterizing my ability to reason logically and to think with some originality as being nothing more than 'manipulation' and sophistry." +p9850 +aS'Please define complexity. Please define information. Both definitions should be relevant to biology.' +p9851 +aS'The counter arguments put forth by its critics do not defeat the Violinist arguments, at the very least. Whether one accepts the argument anyway is another story :P' +p9852 +aS'Hmm . . . funny, I don\'t remember ever hearing a pro-lifer say that pregnancy was a wonderful snuggly thing or the best thing in the world. What I do see is pro-lifers like myself wondering why pregnancy is protrayed (in the form of a generalization) as so horrible by people such as yourself who just described it as "unbelievably" hard to go through, or a "life threatening condition" like malignant cancer. You didn\'t qualify it by saying "some" pregnancies are life threatening or unbearable. Maybe yours was, but how can you say that for every woman in the world? I know for a fact that my wife\'s pregnancy was not "unbelievably hard to go through"--she\'s told me otherwise and I believe her. Sorry, but I believe my wife over you. What you did was use unfounded generalizations, which is exactly the sort of thing this thread is about.' +p9853 +aS'It has a financial impact on ALL taxpayers. To say that it has no impact on anyone else is disengenuous.' +p9854 +aS'Sure, here ya go... Radiocarbon Dating' +p9855 +aS'yes, on the grounds of "mostly likely" we can make reasonable assumptions. but we must still treat them as such. part of the catch of God\'s existence is that no evidence of his existence cn ever be found. if Jesus actually physically performed observable miracles, even 2000 years ago, then it would surely proven that the supernatural can and does (or did) exist in reality. however, even jesus\'s ministry contradicts the faith theory. how can God expect faith from those who haven\'t observed on the grounds of those who have? if people can observe the manifested power of God in reality, then they have physical evidence that God exists. but this conflicts with the nature of God from a biblical standpoint. in other words, the bible cannot claim that physical evidence for the existence of God can exist, and then that it cannot exist, without contradicting itself. what we end up with is the predicament that ANY physical evidence that could possibly support God\'s existence is evidence against God\'s existence (at least from a biblical standpoint)' +p9856 +aS'Uh...yeah? Is there some other way than evolution this can happen? Evolution encompasses speciation which results from evolution taking different paths when populations are separated by some factor in their environment or geographically. Are you saying you believe that the species have all somehow resulted from a common genome yet at the same time rejecting evolution as an explanation?' +p9857 +aS"I don't see how one can be a agnostic and be a Deist either. Deism requires a origin, some form of a clockmaker. To not be sure that such a being exists is to fail one of the most basic ideas of Deism." +p9858 +aS"Clearly this is true. There are a multitude of denominations from every religion. This is as specially true with Christianity because the texts do not explain how all the ceremonies are done. Baptism was performed in areas where full immersion could not have occurred but the best explanations of baptism paint a picture of a full immersion. The Church of Christ believes one must baptize in the name of Jesus, the Father, Son and Holy Ghost thing was while Jesus lived. Because the practice of speaking in tongues was used by the first church, some believe the art must stay in the church. Most of the complications to Christianity is simply because the followers really believed Jesus would return. No one wrote a book on the Religion. The Religion changed a great deal through time. King James was no saint and he had clear reasons he would not allow some letters into an authorized version he would sign on to. One letter spoke of the sin of Slavery. This was clearly at odds with King James. Other items would have direct negative effects on the kingdom and I'll let others find the reasoning behind the withdraws." +p9859 +aS"believing that god doesnt exist or acknowledging the fact that evidence to support the existence of god has never been found does not equate to science being anti-religious or that science hates religion. in fact, the one thing that both science and religion have in common is acknowledging that belief in god is not based on observable evidence, but rather an individual choice to apply faith in something which cannot be seen or proven. on the one hand, religion continually reaches that in order to believe in god, you must have faith that god is real despite a marked lack of evidence for god's existence. science concludes the same thing: that people who believe in the existence of god do so solely by faith, despite the lack of observable evidence to back this belief the bottom line is that science does not make religion obsolete by reiterating the fact that there is no evidence for god. religious people also already knows this, and believe in god regardless" +p9860 +aS'And the mall plainly had "no guns allowed" signs displayed at all the entrances, meaning the shooter broke the law when he brought his gun in and started shooting. Now, find me a school massacre that took place where concealed carry is actually legal on campus.' +p9861 +aS"And... You're still left with the simple fact that the Declaration of Independance, the premise of your hierarchy of rhetoric, is not legally relevant to the government of the U.S. The constitution was written after the declaration. Had they wanted to include wording from the declaration, they could have, yet they didn't, did they? Your house of cards is built on a rhetorical slight of hand, trying to persuade by implying somehow that abortion being legal, which it is, in the U.S., right now, should not be allowed. TIP: Trying forming a reasoned argument without such a weak premise, else, your entire argument is just as flawed, which it is. Abortion is legal, for the right reasons. A conscious, human, U.S. citizen, has rights. Cells, without consciousnes, that are not citizens, do not have rights, are not individuals, and are not humans. You can jump up and down, and post irrelevant things such as the Dec. of Independance, but it doesn't boost your debate credibility. -Mach" +p9862 +aS"No I don't . I want children (at least my children and family) to be placed in a school where they do not have to worry about one of their classmates pulling out a tech 9 and going on a rampage in the library. I don't think that is too much to ask. I think eliminating the risk of this makes a school a much more effective place to learn. How many people do you think actually learned anything at Columbine the day they came back to school, or perhaps were they a little distracted. I'm all for the government giving you and like-minded extremists your own school (hell, even your own state...why not) and letting you all carry guns into schools and every other place you want to. As long as when a gunfight breaks out at your school in Rottencrotch Nebraska, I don't have to see all the parents on TV crying and bawling about how could this tragedy happen here, and saying that something should have been done, this never should have happened. I think there is a time and place for guns, but I don't think that guns belong in schools." +p9863 +aS"And that's all irrelevent, because pages 240-243 concern what happens in the world today, not what happened concerning creation. His feelings about God's interactions with the world today would be different if he had a basic knowledge of the Bible." +p9864 +aS'And they have been found in volume buried together in the same strata in Ohio also. Vertebrate Fossils - Ohio History Central - A product of the Ohio Historical Society' +p9865 +aS'Why would that even be expected? When you consider that it is important to maintain some sort of consistency in study populations, obvious mutants are excluded from the breeding stock. And yet, there are frequent observed mutations. In fact, my elder son once observed two mutations in a single fly in one of his populations. One fly had no wings and white eyes.' +p9866 +aS"Actually, after the fact calculations on either side are just noise. Humans do exist and I suspect that all statements of probabilities are incorrect. Further, I don't think that coin flips are relevant and not even a very good analogy." +p9867 +aS'Different sort of penetration, so no.' +p9868 +aS'This is a statement written by someone who obviously has not read scripture. One of the most astonising "proofs" if you will, that the Bible is of supernatural origin, is predictive prophecy. Science cannot, as you claim, "explain" everything, and it has no natural explanation for the predictions made in scripture. How can science explain through statistical probablity the over 600 prophecies in Biblical writings that have come to pass? Also, how can it explain how supposedly uneducated people (uneducated in the ways of modern science) wrote about astronomy as if they knew about the universe as we do today. How could they have described the hydrological cycle as we have only come to know it recently? Ecclesiastes 1:6 The wind goes toward the south, And turns around to the north; The wind whirls about continually, And comes again on its circuit. How did they know that the earth "hangs on nothing" when the accepted norm of the day did not even accept that possibility? Job 26:7 He stretches out the north over empty space; He hangs the earth on nothing. How did they know that the "vapors" of the earth rise to create moisture, that is seeded by lightning with nitrogen and then falls as rain to fertilze the soil? Jeremiah 10:13 When He utters His voice, There is a multitude of waters in the heavens: ?And He causes the vapors to ascend from the ends of the earth. He makes lightning for the rain, He brings the wind out of His treasuries.? Hydrothermal vents[4] are described in two books of the Bible written before 1400BC?more than 3,000 years before their discovery by science. Genesis 7:11 In the six hundredth year of Noah?s life, in the second month, the seventeenth day of the month, on that day all the fountains of the great deep were broken up, and the windows of heaven were opened. Even though the Bible is not a scientific text book and doesn\'t purport to be, nowhere is it scientifically inaccurate. In addition, many of the scientific ideas you are so impressed with are nothing new to the Bible. It was speaking of these things long before modern science spoke of them. The story goes "They (scientists) are slowly working their way to the mountain\'s peak painstakingly measuring and analyzing every step that they take. After many years of research, they finally arrive at the top of the mountain, scale over its leading edge, only to find a group of theologians sitting there with the answers all along."' +p9869 +aS'Well try Arkansas (75/25), Georgia (76/24), Kentucky (75/25), Michigan (59/41), Mississippi (86/14), Montana (67/33), North Dakota (73/27), Ohio (62/38), Oklahoma (76/24), Oregon (57/43), and Utah (66/34). All of these margins were well above the percentage of votes cast for Bush and Kerry, respectively. Ohio, for instance, went to Bush by 2%, but the ban was passed by 24%. Bush lost Oregon by 4%, but the ban passed by 14%. Bush lost Michigan by 3%, but the ban passed by 18%. The margin of victory for each of these states exceeds George Bush\'s margin of victory in that state. Those extra votes had to come from somewhere, and it seems like many people other than the "religious right" feel the same way.' +p9870 +aS'putting words in my mouth again? i did not say christian, i said "God". Christian, Jewish, and Muslim all believe in the same "God". - XXXXX. i\'ll let Crim and Lurch respond to the others; lets not let me have all the fun.' +p9871 +aS"Just a guess on my part. But it's probably one of the only factors that separates our advanced industrialized nation -- as the only one still having the death penalty -- from savage places like Afghanistan, etc. Having a doctor allows the self-deceptive veneer that a most uncivilized, inhumane act, about to take place, is somehow civilized or humane. And not the bloodthirsty, venomous, purely vengeful thing that it is. He sounds like a very principled individual to me. With this, yet one more indication that the death penalty system in our country is unsustainable. Not only for moral reasons, but because it is not shown to serve as an effective deterrent, and because the overwhelmed system is not supportable, under our American Constitution, often punishing everyone involved, even the families of victims. (i.e. These cases go on for years and years and years and years. There's no closure for people.)" +p9872 +aS'Oh I hated being pregnant. However I am not really arguing whether pregnancy in and of itself is punishment, I suspect that is an opinion matter - there are some crazy women who actually liked pregnancy. Julie - however clearly feels that it is acceptable to use a pregnancy and parenting in a punitive matter against women she feels are irresponsible.' +p9873 +aS'Not this time. That was the previous attempt by the good people of Kansas.' +p9874 +aS"Can't your religion survive a little mockery? On the other hand I can understand why your worried your religion being so ridiculous and all." +p9875 +aS'Please explain this statement.' +p9876 +aS'A more precise term would be "broaden," since nothing about the definition pertaining to the people currently covered by it would be affected, "diluted" or altered in any way anyone has yet demonstrated. Nothing about the definition that pertains to people who already are, or can be married changes one iota. Their rights, benefits, and protections remain exactly the same. The only "change" would be to other people, people who have no connection to, nor impact on, the marriages of anyone else: the gays who\'ll marry if the legal definition is broadened to encompass them. And the only "change" in that regard will be the fact that they are encompassed by it, nothing more. No substantive aspect of the definition as it currently stands changes in the slightest. The change is not in the definition itself. It\'s in who it applies to.' +p9877 +aS"Chuz, the purpose of this summary is not to summarise your arguments as a whole - it is to summarise what your argument is up to this point. Why not post just a summary of your position so far, as you see it - I can do the same, then you can continue with your argument? There's no point in writing an argument, summarising it and then leaving the thread before I've had a chance to respond to even your argument (never mind your summary). If you are going to simply ignore any criticisms of your reasoning, then I struggle to see the point of you repeatedly requesting a one-on-one debate in the first place - you essentially regress your argument to the 'because I said so' that you are (presumably) hoping to avoid, it's just that there's slightly more detail." +p9878 +aS"Yes, the horror of voluntarily taking orders from someone in exchange for monetary rewards!! If you hate your job that much, quit. You aren't being oppressed because someone offered you the option to do something. If you don't like it, don't do it. If you hate trade, you can go wander through the wilderness and eat berries and roots." +p9879 +aS'Well, here\'s another quote from Allan Feduucia: "Feathers are unique to birds, and no known structure intermediate between scales and feathers has been identified." (J. Alan Feduccia, The Age of Birds, Harvard University Press, 1980, pg. 52) Sounds contradictory to me!' +p9880 +aS"It's not tough, especially for close stars. http://www.uwgb.edu/dutchs/CosmosNotes/distance.htm You use triangulation based on the orbit of the earth." +p9881 +aS'Manslaughter involves a direct action that causes an unintentional death. Miscarriage is involuntary; besides the person suffering a miscarriage might well want to keep the baby. To equate miscarriage with manslaughter is preposterous.' +p9882 +aS'No but the fact that infants have brain activity makes them a world of difference between a zygote that has no brain activity. They can think and feel and exhibit all the characteristics of other human beings. A zygote exhibits none of those characteristics.' +p9883 +aS"So sorry, Anastasia...that's a horrible thing to face. And now, using that excuse? What! If justice was swift for the guilty then he would not have escaped only to do it again. Some criminals never change, and via your testimony, only live to do it again. There are some who need to be put to death. Your situation made me shudder, Anastasia. But, I am glad you didn't let it (revenge) effect you to the point of taking his life yourself. If it would have been my father, those many years ago, I cannot say that I would have waited, nor would have accepted that lame excuse of retardation. I could very well be in prison myself." +p9884 +aS"Well I think that the geology of the planet would influence everything. From religions to morals and scientific progression. Because long ago on our planet Europe not only thought the world was flat and they could fall over at the edge into an abyss but Europe generally didn't have knowledge of the Asian cultures until the silk road was active. If the asian and european cultures were not so greatly distanced from each other history would have been greatly changed to the extent that compared to our world would be pretty loopy" +p9885 +aS"Oh sorry, I didn't understand what you were asking. Ok, what I think happened {Like Tasyfish hinted at} was that Moses recorded what god told him or Genesis 1 because it is in more detail, and Genesis 2 is what was passed down through Noah, in Oral history, so it would differ slightly, but that's becaue of man's error, not God's." +p9886 +aS"Fossils are evidence, not theory. They can be used in the construction of any theory, including creationism. Whether this is 'just' or not, is another issue. I point this out as many seem confused about evidence, and think that it just points to something without interpretation" +p9887 +aS'What Is a Human Person and Who Counts as a Human Person?: A Crucial Question for Bioethics by Prof. William E. May There is also an extremely academic school of thought which views the human person in terms of the ego in all its derivations. I cannot hope to summarize what this is all about, please refer to: Philosophical Critiques: The Human Person - 3 One could also consider the social development of an infant, inasmuch as humans are, in most cases, very social animals. According to primatologist Sarah Blaffer Hrdy, the human species is specifically developed to be part of a social system and a newborn infant comes ready made to push all the buttons of the system:' +p9888 +aS"You only say that it won't make a change because you support the effects it will have." +p9889 +aS"Because I am one who likes see things from different angles. What better way to fight your enemies then to understand their viewpoint. Before I am attacked on the the last statement, just because I understand a viewpoint does not meant that I accept it as true or that I don't reject it." +p9890 +aS'http://www.talkorigins.org/indexcc/CD/CD011.html Radiocarbon dating has been repeatedly tested, demonstrating its accuracy. It is calibrated by tree-ring data, which gives a nearly exact calendar for more than 11,000 years back. It has also been tested on items for which the age is known through historical records, such as parts of the Dead Sea scrolls and some wood from an Egyptian tomb (MNSU n.d.; Watson 2001). Multiple samples from a single object have been dated independently, yielding consistent results. Radiocarbon dating is also concordant with other dating techniques (e.g., Bard et al. 1990).' +p9891 +aS"This claim might be true, but do you have any citations about Carl Burgh's fraudulent claims? (ps I note you don't tell everyone else to go look up a book! It's nice to feel special) I know of this site http://home.austarnet.com.au/stear/carl_baugh_page.htm which makes the claim, but I'd be interested to learn more about this alleged fraud" +p9892 +aS'And how does this compare to your ideas on artificial selection?' +p9893 +aS'But people start threads here all the time against Christianity regardless of whether someone claims something here about it or not. It\'s prejudice, pure and simple, and you\'re no exception. Now, one would think, being the supposedly non-Christian enlightened person you are, you would simply say "oh, I didn\'t realize that my posts came across as anti-Christian sometimes, and that it indicates a prejudice on my part, and will try to not have prejudices in my thinking." I mean, one would think those of you are do this sort of thing would be happy that someone had pointed out the obvious prejudice going on, as it would be a case to help you move away from prejudicial thinking.' +p9894 +aS"Well, in the case above, it was step-by-step. First, an existing enzyme was modified to a new use, and over time, became refined to work better and better. This is the way evolution works. Nothing is de novo; it's always a modfication of something else. Second, a mutation produced a regulator that only allowed the enzyme to be produced if the substrate was available. Again, this was refined by natural selection over time. In the end, the newly-evolved system was irreducibly complex, because all three parts have to be present for the system to work. And do show us your numbers proving that such processes can't produce new information. If you don't know how, I'd be pleased to show you how a mutation changes the information in a population." +p9895 +aS'And rightfully so.' +p9896 +aS'Actually, for his hypothesis to explain the difference, he would have to say that the DNA changed. Even so, he assumes more.' +p9897 +aS'Proof that evolution is "right" is not necessary to prove that Genesis is not science. Genesis is an inspired poem, and contains truth in its message, but it is pretty obviously a work of poetry, like a song. Look at the repetition, and all the metaphors! Poetry does not imply fiction. THere are many historically valid poems. Plus, when read figuratively, Genesis poses no conflict at all with science. Evolution is not the only science that demonstrates Genesis can not be read literally. What about the speed of light from the stars, geology, genetics, comparative embryology, etc. The only stumbling block between science and faith is a strictly literal interpretation. For most of us Faith and science work together! see: songofgenesis.org for more detailed information.' +p9898 +aS"We already accept that it is. You don't have to convince us. However, consider what this does to your argument that natural selection is random." +p9899 +aS"So, because they don't interpret the bible as you do, they believe that there are no deities? That is what you said..." +p9900 +aS"You stand up for women.. I stand up for the child who has no choice Who's being descrimatory here?" +p9901 +aS'Evidence or proof for that delusion?' +p9902 +aS'Should free speech require registration?' +p9903 +aS"I'm not sure what the source of the bias would be. Do you mean that it is somehow prejudicial to link ID with creationism, because, somehow ID is scientific while creationism isn't? But that's just not true. In the Dover case the court concluded that ID isn't science any more than creationism is. In fact, it was clearly demonstrated that the motivation for ID is an effort to disguise the fact that it is nothing more than creationism without the mention of god. Basically, if you scratch an IDer, you get a creationist." +p9904 +aS'That should be, "duh". I knew what you meant. A bit of humor is ok. But I guess you don\'t have anything to say about the implications of this study.' +p9905 +aS'You know, I would be fine with that as long as it were truly a middle ground. If that term were used equally among straights as well as gays. But it\'s just a term. The same as with the term "marriage." It\'s just a term. Just a word. Personally I feel the government needs to get out of the business of marriage altogether. Let the legal term be agreed upon unilaterally.' +p9906 +aS'Well, it depends on your definition of retarded I guess. The standards to get a drivers license are really not that high. Think of how dumb the average person is, and realize that 50% of people are dumber than that. Kinda makes you cringe. And you wonder what has prevented me from being in an accident? Well, perhaps the fact that I am a concientious, defensive, and skilled driver who excercises caution while on the road. Maybe next time someone pulls out in front of me, I should just throw my hands in the air and scream "take the wheel jesus!" I am sure some magical being will fly down from heaven and save me from crashing. Yeah...sure.' +p9907 +aS'Then you freely admit that you lied when you said this, and I quote: People like Arch are setting it as opposed to science and in that position it will be doomed to fail. AND Arch is doing nothing but distorting the very thing he holds so dear, I mean, how is accurately quoting passages from the bible distorting it in any way? You do nothing but post drivel which makes no factual statements at all. And you call that debating?' +p9908 +aS"Don't expect your misrepresentations of the findings of those studies to sink in. I'm not that easily fooled." +p9909 +aS"But the military is pretty much all a volunteer thing. It's not a hiring process--employer/employee thing. That arrangement lends itself more to the soldier not volunteering for service in the first place." +p9910 +aS'What I find hard to believe is that politicians will place their decision above the right to life of a human person only for political expediency.' +p9911 +aS'Again, we never said that a human fetus was a different species.' +p9912 +aS'Just so you know, the majority of Japanese cars sold in the US are also assembled in the US and thus provide Americans with thousands of jobs at these plants.' +p9913 +aS"Rahm Emanuel for one. He seems to sum up the message very well. And then there's Carolyn McCarthy who actually introduced the bill that, if passed into law, would cancel your Second Amendment rights just because your name is on the no fly list. Just two names, perhaps, but they're the names of people in a very powerful and dangerous position, capable of making very bad things happen." +p9914 +aS'Oh, I LOVE semantics games' +p9915 +aS'Believe me, marc, we certainly can. The fact that it damns your argument is no skin off our backs. In fact, it damns your argument so much that the producers know it. See below.' +p9916 +aS'Actually your posts are providing increasing evidence for just how simple folks can get.' +p9917 +aS"Well, the first part is true but I'm not sure I understand what you are saying in the second part. Science does not claim that intelligent design is false because science lacks the tools to examine the concept. ID is just another unsupported assertion outside the domain of science (and logic for that matter). ID has reached the stage of unsupported assertion without evidence. Science has better explanations." +p9918 +aS'Yes. I believe it\'s a matter of personal individual freedom. If purchased legally, and not used to commit a crime, what harm comes from handgun ownership? I don\'t own one, but I own many other guns. If they can ban handguns, what\'s to stop them from banning shotguns, or even BB guns? I don\'t believe in a nanny state, taking away my toys "for my own good". Waxy' +p9919 +aS"Prove it. Got any credible scientific or sociological studies? NOPE, ya don't. Didn't think so." +p9920 +aS"But is the Red Cross Christian? Obviously most contributors are Christian. That's obvious as most Americans are Christian." +p9921 +aS"And these are psalms, which are just popular prayers rather than the word of God arn't they? Rather than go with the slightly bizarre 'well you're not King David are you...' type response, I could see it being fairly reasonable that God 'knows' people who are born. He might 'know of' the various individuals who are misscarried, die at birth or are aborted but what exactly does he know in relation to them? Do our souls have their own personalities completely seperate from our mortal ones that are shaped as much by our souls as genes and experience - or does God 'know' them through the billions of other possible universes, i.e he knows them from somewhere/when they didn't die. But if that counts then that means our souls are spread out over an infinite number of copies of us. If so then surely the threat of Hell is irrelevant, either we are doomed because clearly some version of reality has us being evil (I've seen enough TV shows to know that this is pratically 100% certain.) or the soul is something seperate from us and our actions?" +p9922 +aS"Just because you don't have a handle on what civil rights are doesn't make the phrase arbitrary. It's a legal term, not a catch phrase. I'm not a lawyer, I couldn't track down the exact definition they use in Massachusetts, but rest assured they have one." +p9923 +aS'And yet the atheist belief system allows for everyone to have their own seperate set of morals. According to the Atheist system, what Hitleror Stalin did was perfectly moral because those atheists believed that what they were doing was moral. Disgusting if you ask me.' +p9924 +aS"But didn't they tell you? They outsourced your job to me!" +p9925 +aS'I think the only valid reason for owning a gun is because you want to. Every person (with some exceptions) has the right to keep and bear arms, why you do it is your own business. Giving specific reasons for gun ownership is the top of a slippery slope towards banning certain firearms. While I have specific reasons for owning specific guns, to include hunting, I own some of my guns for no other reason than they are fun to shoot. A humorus side note: I own one gun strictly for fishing, sounds odd but its common practice (at least in Alaska) to shoot large Halibut before bringing them aboard.' +p9926 +aS'This is retarded. A species would be defined by the genome, not which organs work the way they are supposed to or not.' +p9927 +aS"It's remarkable then, how much progress we've made. You may or may not approve of the theory, but it works very well at learning more about biology." +p9928 +aS'the blog is just the link for the article....geez, get a grip.' +p9929 +aS"It varies. Sometimes elementary/middle school kids and sometimes older minors like high school kids. I not talking about gangbangers if this is where you're going." +p9930 +aS"You know they are having a fit,and when everyone see's the streets aren't running red maybe more states will pick it up and follow." +p9931 +aS'Because most people are Christian.' +p9932 +aS'wrong again, only 154 justifiable homicides out of thousands of murders * In 2005, 30,694 people in the United States died from firearm-related deaths \xe2\x80\x93 12,352 were murdered; 17,002 killed themselves; 789 were accidents; 330 died by police intervention, and in 221, the intent was unknown. 6 In comparison, 33,651 Americans were killed in the Korean War and 58,193 Americans were killed in the Vietnam War.7 * An additional 71,417 people were shot and survived their injuries -- 52,748 people injured in an attack; 3,190 people injured in a suicide attempt; 14,678 people shot accidentally, and 801 people shot in a police intervention.8 * In 2004, firearms were used to murder 56 people in Australia, 184 people in Canada, 73 people in England and Wales, 5 people in New Zealand, and 37 people in Sweden.9 In comparison, firearms were used to murder 11,344 in the United States.10 * In 2006, there were only 154 justifiable homicides by private citizens using handguns in the United States.11 * For every time a gun is used in a home in a legally-justifiable shooting [note that every self-defense is legally justifiable] there are 22 criminal, unintentional, and suicide-related shootings.17 * The presence of a gun in the home triples the risk of homicide in the home.18 * The presence of a gun in the home increases the risk of suicide fivefold.19' +p9933 +aS'Sorry, sometimes sarcasm is quite hard to read.' +p9934 +aS'Well regulated as in the second amendment does not mean regulated by the government, it means well equiped and prepared. The framers of the constitution often spoke of a tyrannical government and how to keep one from coming to power, so why in the hell would they have said lets just give the government total control of guns. Your definition of well regulated makes about as much sense as adding another day to the week.' +p9935 +aS'Since when were proteins no longer structures? A basic freshmen tool for teaching is the phrase "structure defines function."' +p9936 +aS"Not knowing isn't the same as claiming magic." +p9937 +aS"We can add to this list, Singin's desire of criminalizing gun owners who don't report gun thefts in a required time and to lock up all guns in a manner that will prevent thefts. He of course says that does not mean jail, but aiding and abetting and straw sales already require serious jail time. and straw sales is already a Federal Offense with either 5 or 10 year jail terms. So we are talking about Very Serious jail terms regardless of what Sinjin might say in order to sell the idea. And one more thing the Anti-gun forces want but won't say it now." +p9938 +aS'So would you care if abortion were outlawed. If so, what would be bad about allowing a view that places objective value in human life to be the basis for making law?' +p9939 +aS"Actually, that story was an invention after the fact. It never happened. At least that is what the witnesses who were there said. Why do christians feel that it is OK to invent such stories to support their point? Isn't that lying? Isn't lying wrong?" +p9940 +aS"I'm glad to see you've finally come around." +p9941 +aS'I never said anything about a conspiracy Peeling. I very clearly gave valid reasons to Consider that scientific GRANTS and pay increases for these scientists are based on making new and previously undiscovered claims that forward the science. That is the greatest motivation to lie, cheat, create and falsify evidence which adds to the scientists personal wealth and further promotes a false science that is rife with selfish motivations to preserve, protect and promote it.' +p9942 +aS'But let me guess ... if they step down RIGHT after they find they will have to issue to gay couples, you\'d be in favor of them being able to be sued for it, simply because the "discrimination" in such an event was toward gays? Right? At least if you are consistent with your stance elsewhere in regards to \'timing\' ... Anyway, aside from that inconsistency with your position elsewhere, I agree that county officials should need to comply. After all, there are probably OTHER examples whereby county officials have to do things that they are religiously against, such as issue divorce papers. Or marry some drunk couple that they know aren\'t really being serious even though they\'re tying the knot ... If all county officials could just refuse to do their job because of their objections--for WHATEVER reasons--it would be a collosal mess.' +p9943 +aS'Aaaaaaaaaaaaaaaaaahahahahahaha. The deliberately out-of-context quotes again that directly contradict the conclusions of the authors.' +p9944 +aS'Well, that just means I\'m a more capable lump of cells now than I was when I was first conceived. I started doing what most embryos do when they are first formed, and that is develop. I\'m still developing. I can\'t seem to stop it. I think my body has stopped growing (in height anyway), but seem to keep filling my brain with more and more experience. The point I was trying to make is that since there is a continuum of existence between conception and death, there is no line you can draw (save birth, which may or may not be considered an arbitrary boundary to personhood) that would constitute some sort of a change in what you are. I started as one cell and continued to grow and develop, which I am still doing now. If I am a person now, I was a person when I was the zygote. If we are going to talk about aortion in this society we should be honest about it and not try to mince words when it come to killing a baby. I\'m not "anti-choice" but I think we should honestly recognize that an embryo is a living human individual that dies when it is aborted. That thought turns most people off so they have to make themselves believe that an abortion is not a killing since the embryo wasn\'t a person. Logically, it is a killing. A life was ended. The question then becomes, is it murder? I don\'t happen to think that, but it is really quite subjective anyway.' +p9945 +aS"So you're actually claiming that it is a lie to say that the UK has a lower gun crime rate than the US? Even if the police were miscounting crimes it's still a huge and unjustified leap in logic to conclude from that that the UK does not have a lower gun crime rate." +p9946 +aS'Among the icons (idols) of modern mysticism there is one that reigns supreme. It is the myth of evolution. We scoff at the gods of the anchient pagans as if we were untouched by their superstition and yet we mystify our science with the likes of Darwin, the high priest of natural selection. Darwin taught a fable that started in a warm little pond and through a process that has became known as gradualism (minute changes over eons) all life arose out of a primordial soup. Life is not chaotic it is orderly and requires replication. Without this you just have a lot of chemicals mixing in an infinite variety. The reason that life must be derived from life (biogenesis) in the minds of most is that this is the only way we have ever seen it happen. "You can imagine anything you like but you can only understand the truth" as Newton said. Now if amino acids are the mirror image of nucleic acid sugars and this in true of all living things then we are limited to this as fundamental to life. This in my opinion is the fundamental first step and it cannot happen peicemeal, it all has to happen all at once. One more thing, evolution is a biogenesis theory and actual evidence for abiogenesis is rare and fragmentary just as it is for every other aspect of the single common ancestor model.' +p9947 +aS'Then why does the following occur?' +p9948 +aS'That clearly went whooshing over your head. It was intended to mock the OP. (Interesting "new" bibilical revelation, indeed.) I don\'t put any credence in silly comparisons like the trite Kennedy/Lincoln litany that arose in the 60\'s or the similarly absurd list that INRI posted. They both demonstrate how one can concoct meaningless comparisons in an attempt to invent a non-existent connection between two unrelated events. It is the same for all "prophesies".' +p9949 +aS"On what grounds do you seek to redefine the institution of marriage from it's accepted standard in this country?" +p9950 +aS'Prove your assertion that he has called himself a conservative Christian rather than a conservative Republican OP. Support your clai if you can or stop trying to lump everyone on the right together.' +p9951 +aS'Really? The first description is of a Hippo? Here\'s a picture of a Hippo charlie: http://www.dkimages.com/discover/pre...0/90065521.JPG Now tell me how this fits the description of the behemoths tail? I quote: Job 40:15-24 (New International Version) 15 "Look at the behemoth, [a] which I made along with you and which feeds on grass like an ox. 16 What strength he has in his loins, what power in the muscles of his belly! [b]17 His tail sways like a cedar; the sinews of his thighs are close-knit. 18 His bones are tubes of bronze, his limbs like rods of iron.(In Hebrew, this literally reads, \xe2\x80\x9che lets hang his tail like a cedar.\xe2\x80\x9d)A Cedar is not a tiny insignificant tree as the hippos tail is when compared to other tails on other animals. You insult the intelligence of the ancients to imply that they couldn\'t either name or describe a hippo by name which as you yourself admit, was a common animal in that part of the world. As for Leviathan being a crocodile or an alligator, again, are you telling me that their hides are invulnerable to arrows or spears and cannot be punctured at all? Would those animals stand firm and not flee from men who stood up to them with spears, javelins and arrows? Not on your life. \xe2\x80\x9cThough the sword reaches him, it cannot avail; nor does spear, dart, or javelin. He regards iron as straw, and bronze as rotten wood.' +p9952 +aS'Object to the woman being required to remain pregnant when she does not want to be.' +p9953 +aS'I think your idea has merit. However, before I would fully endorse it, I am interested in how you see it being implemented and administered from the standpoint of equal protection under the law.' +p9954 +aS'The article said very little about his observations and almost nothing about his methods.' +p9955 +aS"Thanks, Clive, you're a good sport. Of course I can't agree with the XXXXX part. Rash, unwise, unknowledgeable, maybe, but not fools." +p9956 +aS'I disagree for the same reasons I have been giving all along. There may be some legislation that was passed that has kept corporations small (Anti-trust) but did it really benefit the society?' +p9957 +aS"At 13 - abortion, unless she is uniquely physically advanced. It's incredible how many men are sure being pregnant is no big deal.... Steve - regarding whether she can consent to abortion. Technically I don't think a minor can consent to either sex or abortion in any state (unless emancipated). I know that is how it is in Minnesota. I am sure the laws vary from state to state. Medical decisions generally fall to the parents. I know whether minors should have access to abortion without parental notifications is a controversial issue. On the surface one would think, of course not - but there is concern for those girls who are in abusive situations at home. And as I told VOR, if I had a daughter bound and determined not to tell me, I would rather she have access to safe abortion than resort to something drastic. A baby pregnant - yikes. Personally I think it's innapropriate and dangerous for a little girl to carry a pregnancy to term. But I would sure love to simply avoid it through better prevention. I do not think an abortion would be anything but scary for her either - but technically, at that age, it would be safer. Steve - in no way, shape or form is a 13 year old ready for this - not physically, mentally or emotionally - not for pregnancy, and certainly not for parenting. I have a neices that old - good gracious - no way!" +p9958 +aS'Actually, selection occurs by differential reproductive rates. What this means is that organisms which reproduce more will have more offspring than the others (obviously). Therefore, traits that help organisms reproduce will become more prevailant.' +p9959 +aS"Do you want something other than peppered moths, bacteria developing resistance to antibiotics, Darwin's finches, and the other species of the Galapagos? Maybe biologists are not allowed to do tests on animals that will kill many of them. This reminds me of Kent Hovind's reward for evidence of evolution: impossible to fulfill." +p9960 +aS'From that site:' +p9961 +aS"So, in summary, you aren't against the death penalty on principle. You just want it used judiciously? Same here. Where we'll differ is in the details of what's judiciously." +p9962 +aS"Oh? Don't you think that since Jesus said that whosoever so much as hated their brother without a cause is a murder? Or are you Jewish and don't believe the New Testament? Is that why you say the Bible says nothing about abortion, or just plain killing at all?" +p9963 +aS'No I do not say that the creation of energy and matter did not coincide the creation of the laws that govern/regulate them. What I say is that the laws are not the RESULTS of the existence of energy, matter etc.' +p9964 +aS"In a way, taking rights away is an American value since we have prescribed methods for doing it. For instance, we have legislatures which posess authority to remove a large number of what you likely consider to be rights. Here are just a small number that come to mind: 1) Right to murder 2) Right to own slaves 3) Right to rape 4) Right to abusing children 5) Right to vote 6) Right to smoke (if you're under 18) 7) Right to drink (18th Amendment) 8) Right to engage in certain activities in public 9) Right to drive as fast as one wants 10) Right to dump dangerous chemicals in the nearest river The list goes on really. The fact is that you don't object to taking rights away in principle, you only object to taking away those rights that you wish to retain. That is quite inconsistent. Where do you get the idea that one has a right to perform an abortion anyway?" +p9965 +aS'Do you mean like Piltdown Man? It was displayed there for 40 years. "The Eoanthropus dawsoni, or Piltdown Man, was on display at the Natural History Museum in London for 40 years. It was removed when advanced dating techniques not only showed that the bones were only a few hundred years old, but that some of them weren\'t even human." http://www.mentalfloss.com/press_oklahoman2.htm Do you guarantee that all of the other displays at the Museum are true? No, of course not. Many other things there said to be \'true\' are only \'true\' in a transient sense of the word (that only science seems to use) http://www.clarku.edu/~piltdown/map_...klywiener.html Suggests that Piltdown Man had good science behind it, at the time. Never-the-less the Natural History Museum provides many examples of artistic licence, such as the \'human-like\' hand given to a restoration of Australopithecus, displayed at the museum. "Shattering the Myths of Darwinism", p205' +p9966 +aS"Actually, it's not. The big bang theory is also science. What exactly do you think the big bang theory is? What evidence do you think supports it? What evidence is there against it? why do you disagree? What is your education in cosmology - in other words, why is your disagreement rational?" +p9967 +aS'Yep. Here in the U.S., the 5.7 ammo is the ordinary hollow point for Civilian use. It does not penetrate. It is not Armor Piercing.' +p9968 +aS"That's not evolution. Life has evolved in the lab, many times." +p9969 +aS'What does a mutation have to do with a heart transplant? What are you smoking?' +p9970 +aS"Because you people keep wanting one restriction after another after another after another. Nothing is ever good enough for you, you always want more than ever. Well we don't want to abide by your wishes, gun ownership is a recognized right, and your hatred of rights won't be tolerated. We're not going to just stand by and be painted as the bad guys because you have the mentally disabled belief that banning gun ownership will reduce crime, and anybody who disagrees with you want to see people killed." +p9971 +aS'Well, at least accoreding to your "because I say so" belief. The woman, of course, don\'t need to pay attention to your desire to control her own body in bondage to your particular brand of outraged morality.' +p9972 +aS'Interesting thought..... such a situation would theorectically remove the division of opinion that exists based upon the perspective of gender (ie. the pro-life religious male) and would make any difference of opinion be based on moral/philosophical considerations alone. You could argue it would shift opinion towards the mix currently held by women as everyone would be in the position of having to bear pregnancy. Given that there is a full mix of religious and other beliefs in the current day female population perhaps this would be a good analogy to such a state of being you suggest.' +p9973 +aS'So you would go with the unknowable argument? Well then this is applicable to your response: So now you have said that god is undefinable or often said "supernatural". T:I believe in God A:What is God? T:I dont know. Then my question to you would be that if you dont know what God is... then what is it that you believe in?' +p9974 +aS"Because of the rare nature of fossilisation, we don't expect to see perfect transitional lineages through millions and millions of years. I really don't think there are any scientists that think there SHOULD be millions and millions of transitions, because of the nature of fossilisation. Science is like a detective story. If you wanted to solve a murder, for example, you take a look at the evidence. You have a gun, spent rounds, dead body etc. To convict someone of a murder, you need fingerprints, blood on clothes, DNA and such to prove beyond a reasonable doubt that the person you are accusing actually shot the deceased and you can convict WITHOUT an eye witness. It's the same for science and the fossil record, because there is no-one around who directly observed animals undertaking large changes over time. But if you take a look at the fossil record, molecular biology, geological time etc, this is what it shows. From what we understand from the last 100 or so years of evidence and investigation, biological evolution is the best scientific explanation we have for the diversity of life on earth. 3 questions for Calligirl. For the 4th time. What would be YOUR definition of a transitional form? When calculating the age of this earth, how precise do you expect or want scientists to get? How many transitional fossils would you LIKE to see in what period of time? I really don't think this will progress if you can't tell us what it is you would like to see." +p9975 +aS'Two things, Symbiote 1) what is the objective basis of rights that makes it different from other value judgements of the majority? 2) when two rights come into conflict, is the result always simple inaction? 3) is the importance of rights greater than democracy? Or is democracy a right? If the latter, how does this work with (2)? 4) how do you react to the fact that in the sorts of cases I mention the results of a rights system is clearly bad for individual people?' +p9976 +aS"I know, Chloe's misuse of the word strikes again." +p9977 +aS'Certainly, because with calm empathy you can casually address such a matter simply because the struggle does not pertain to you personally. To be able to put into question the love of another human being is simply not only alarming in nature, but damning to the very definition of love, equality, and freedom in creation of man.... And to trump this as a question of morality only serves as a mask to curtail the prejudice objections one personally has to a ceremony, right, and relationship that person will not even be personally affected by....' +p9978 +aS'False. See above.' +p9979 +aS'logic would lead one to believe abortion is wrong...but why be consistent in your thinking. The point is, logic and rational thinking is not a requirement to make a law. You can ban abortion is you want...the states did it and the constitution allows it, even if 5 legislatures think otherwise.' +p9980 +aS"You don't consider yourself anymore advanced than animals? Not seperated specially in anyway? If humans are nothing but animals, than you have to question your own views and morals. For if we are just animals, than we have no cause or goals. You may as well kill yourself right now. Please re-think this idea you have. I understand from your posts that you have a hard emotional problem, and I would urge you to please try and answer yourself those questions. You're views on this issue are built on hate, and annoyance. What morals do you have to support these views other than - You don't like it. -?" +p9981 +aS'Gary Ridgway, the serial murderer of some 60 or more women, possibly more.' +p9982 +aS'Please define "climb upward" and "downhill slide" in biologically meaningful terms. Please define "degeneration."' +p9983 +aS'Actually, I think Kronos is right in this case--at least from the standpoint of most consitutional scholars. Of course the framers didn\'t envision the wording to be used in this way for this purpose--this is what\'s simply called a "loophole", in this case anyway. It\'s why there has been an effort in recent years to close the loophole with a constitutional amendment defining marriage.' +p9984 +aS'But we have an enumerated Constitutional RKBA. Apples to oranges.' +p9985 +aS"And what does it matter if they're in the army reserve, or a lawyer, a teacher, a doctor?" +p9986 +aS"To say nothing of the possible threats to people's safety, if not actual acts of violence." +p9987 +asS'val_ind' +p9988 +(lp9989 +I879 +aI243 +aI1912 +aI156 +aI837 +aI19 +aI1356 +aI985 +aI1409 +aI258 +aI984 +aI786 +aI1965 +aI1456 +aI766 +aI1888 +aI1660 +aI1673 +aI591 +aI315 +aI512 +aI1310 +aI1181 +aI1876 +aI1652 +aI1655 +aI875 +aI1131 +aI1329 +aI1451 +aI860 +aI1352 +aI1617 +aI453 +aI1415 +aI989 +aI346 +aI986 +aI1783 +aI1176 +aI370 +aI618 +aI1490 +aI117 +aI1629 +aI764 +aI1865 +aI1426 +aI1168 +aI1038 +aI1751 +aI617 +aI1736 +aI556 +aI902 +aI1532 +aI982 +aI1278 +aI59 +aI1296 +aI1499 +aI765 +aI1554 +aI196 +aI336 +aI1345 +aI1834 +aI311 +aI623 +aI647 +aI775 +aI1587 +aI47 +aI1323 +aI605 +aI1090 +aI437 +aI816 +aI839 +aI1238 +aI925 +aI1122 +aI293 +aI1555 +aI657 +aI385 +aI1915 +aI327 +aI796 +aI1937 +aI404 +aI1491 +aI1647 +aI667 +aI1793 +aI978 +aI1402 +aI86 +aI1785 +aI508 +asS'test_ind' +p9990 +(lp9991 +I1078 +aI1624 +aI804 +aI834 +aI1702 +aI417 +aI1233 +aI472 +aI182 +aI1586 +aI525 +aI1700 +aI759 +aI936 +aI1449 +aI122 +aI683 +aI1846 +aI1089 +aI656 +aI21 +aI1119 +aI886 +aI209 +aI1709 +aI1130 +aI1537 +aI1527 +aI1019 +aI1476 +aI1013 +aI1285 +aI200 +aI1806 +aI1717 +aI172 +aI1582 +aI734 +aI69 +aI829 +aI893 +aI981 +aI37 +aI405 +aI170 +aI261 +aI611 +aI1945 +aI248 +aI192 +aI1734 +aI341 +aI1740 +aI155 +aI239 +aI538 +aI202 +aI1657 +aI483 +aI1128 +aI1903 +aI1902 +aI374 +aI1350 +aI1575 +aI1985 +aI238 +aI1721 +aI99 +aI1972 +aI1974 +aI502 +aI1366 +aI1817 +aI823 +aI242 +aI481 +aI586 +aI787 +aI1169 +aI98 +aI107 +aI517 +aI1530 +aI53 +aI395 +aI1815 +aI89 +aI462 +aI1358 +aI1811 +aI1195 +aI51 +aI1823 +aI13 +aI400 +aI1410 +aI806 +aI487 +aI1862 +aI1946 +aI1457 +aI1283 +aI997 +aI1012 +aI310 +aI629 +aI353 +aI919 +aI1827 +aI260 +aI757 +aI639 +aI881 +aI991 +aI1220 +aI1268 +aI1694 +aI532 +aI738 +aI179 +aI1425 +aI96 +aI1214 +aI685 +aI1886 +aI1726 +aI157 +aI746 +aI714 +aI450 +aI282 +aI979 +aI1393 +aI85 +aI1772 +aI1908 +aI790 +aI696 +aI598 +aI971 +aI554 +aI964 +aI413 +aI1403 +aI1267 +aI760 +aI1396 +aI707 +aI1994 +aI1444 +aI1656 +aI644 +aI1475 +aI694 +aI767 +aI583 +aI36 +aI1224 +aI572 +aI1413 +aI1875 +aI1802 +aI1414 +aI527 +aI153 +aI643 +aI1982 +aI1526 +aI1691 +aI250 +aI73 +aI151 +aI700 +aI1559 +aI1246 +aI1242 +aI1820 +aI1729 +aI1747 +aI484 +aI1588 +aI298 +aI880 +aI55 +aI456 +aI159 +aI340 +aI1154 +aI1830 +aI1573 +aI322 +aI682 +aI1093 +aI1124 +aI140 +aI1662 +aI1619 +aI1059 +aI723 +aI1076 +aI80 +aI1121 +aI241 +aI1003 +aI587 +aI1317 +aI967 +aI408 +aI174 +aI1401 +aI1351 +aI1935 +aI65 +aI94 +aI1959 +aI1774 +aI1054 +aI1955 +aI1477 +aI496 +aI1290 +aI125 +aI1924 +aI969 +aI20 +aI681 +aI674 +aI857 +aI889 +aI83 +aI62 +aI116 +aI777 +aI1194 +aI1364 +aI1105 +aI1248 +aI278 +aI892 +aI1348 +aI628 +aI1107 +aI619 +aI158 +aI711 +aI580 +aI397 +aI176 +aI1764 +aI300 +aI1484 +aI1855 +aI57 +aI1180 +aI1512 +aI396 +aI505 +aI498 +aI201 +aI518 +aI1730 +aI606 +aI1392 +aI1288 +aI1240 +aI564 +aI662 +aI1976 +aI1768 +aI40 +aI536 +aI232 +aI219 +aI1599 +aI1183 +aI345 +aI1307 +aI1036 +aI1001 +aI1661 +aI666 +aI1257 +aI1126 +aI1697 +aI1513 +aI1621 +aI1095 +aI813 +aI1638 +aI6 +aI903 +aI686 +aI1114 +aI898 +aI1877 +aI1159 +aI736 +aI1235 +aI1294 +aI753 +aI803 +aI642 +aI307 +aI1612 +aI1015 +aI1389 +aI92 +aI926 +aI614 +aI1333 +aI624 +aI861 +aI9 +aI669 +aI1856 +aI166 +aI830 +aI1239 +aI1192 +aI961 +aI565 +aI1824 +aI1954 +aI1503 +aI1636 +aI119 +aI907 +aI1037 +aI1269 +aI631 +aI1295 +aI1881 +aI577 +aI529 +aI34 +aI244 +aI909 +aI1715 +aI326 +aI1712 +aI845 +aI558 +aI717 +aI1008 +aI1739 +aI1291 +aI371 +aI1080 +aI904 +aI585 +aI451 +aI180 +aI1790 +aI1831 +aI331 +aI1922 +aI1941 +aI752 +aI1273 +aI1172 +aI1482 +aI1241 +aI104 +aI878 +aI474 +aI1259 +aI1420 +aI1506 +aI1699 +aI44 +aI1562 +aI187 +aI1293 +aI627 +aI522 +aI285 +aI183 +aI1185 +aI784 +aI475 +aI448 +aI1338 +aI1696 +aI1217 +aI342 +aI559 +aI152 +aI1606 +aI781 +aI996 +aI137 +aI1953 +aI950 +aI431 +aI1193 +aI1287 +aI114 +aI1519 +aI884 +aI703 +aI1343 +aI1800 +aI389 +aI149 +aI203 +aI273 +aI266 +aI27 +aI535 +aI193 +aI1766 +aI906 +aI515 +aI539 +aI141 +aI1884 +aI1609 +aI1434 +aI1803 +aI1956 +aI1963 +aI425 +aI211 +aI625 +aI1222 +aI1979 +aI479 +aI1265 +aI1708 +aI284 +aI1801 +aI1470 +aI887 +aI848 +aI160 +aI699 +aI455 +aI171 +aI1659 +aI418 +aI1118 +aI1129 +aI594 +aI607 +aI802 +aI1561 +aI697 +aI1026 +aI1577 +aI1706 +aI1021 +aI1260 +aI808 +aI1049 +aI1692 +aI1405 +aI30 +aI56 +aI1218 +aI1178 +aI288 +aI454 +aI22 +aI1805 +aI851 +aI1872 +aI1568 +aI912 +aI1058 +aI1540 +aI1306 +aI1675 +aI1443 +aI126 +aI488 +aI1841 +aI217 +aI537 +aI1391 +aI1340 +aI420 +aI1626 +aI832 +aI1381 +aI928 +aI1861 +aI1777 +aI414 +aI1407 +aI138 +aI1769 +aI447 +aI350 +aI120 +aI547 +aI973 +aI1299 +aI940 +aI214 +aI1782 +aI1357 +aI1101 +aI71 +aI90 +aI1442 +aI1027 +aI1071 +aI279 +aI283 +aI281 +aI722 +aI275 +aI263 +aI571 +aI110 +aI1665 +aI1190 +aI602 +aI1429 +aI1576 +aI1618 +aI1873 +aI1885 +aI1741 +aI1940 +aI1664 +aI1980 +aI883 +aI761 +aI1320 +aI820 +aI28 +aI1237 +aI728 +aI1171 +aI873 +aI112 +aI466 +aI1188 +aI1492 +aI1066 +aI164 +aI608 +aI1645 +aI1962 +aI1007 +aI688 +aI1485 +aI1336 +aI1215 +aI1556 +aI1839 +aI1463 +aI724 +aI827 +aI432 +aI489 +aI1206 +aI191 +aI1020 +aI1891 +aI1387 +aI638 +aI949 +aI1378 +aI1517 +aI1261 +aI1602 +aI993 +aI914 +aI88 +aI870 +aI254 +aI1728 +aI1438 +aI1591 +aI1835 +aI306 +aI1473 +aI335 +aI1204 +aI1297 +aI1458 +aI108 +aI376 +aI2 +aI541 +aI1789 +aI1334 +aI1723 +aI637 +aI573 +aI1380 +aI1984 +aI1852 +aI251 +aI1326 +aI640 +aI12 +aI920 +aI1127 +aI1594 +aI874 +aI958 +aI1223 +aI229 +aI584 +aI259 +aI1504 +aI115 +aI1589 +aI1598 +aI1892 +aI601 +aI1878 +aI1166 +aI1282 +aI207 +aI1605 +aI789 +aI67 +aI1447 +aI782 +aI1412 +aI1331 +aI1229 +aI1754 +aI105 +aI1200 +aI175 +aI835 +aI1970 +aI1613 +aI1989 +aI1727 +aI1000 +aI1668 +aI1196 +aI692 +aI534 +aI1704 +aI793 +aI1065 +aI1376 +aI1478 +aI1574 +aI38 +aI1890 +aI1898 +aI852 +aI1516 +aI81 +aI1312 +aI15 +aI204 +aI360 +aI471 +aI441 +aI351 +aI1693 +aI924 +aI1466 +aI864 +aI546 +aI267 +aI555 +aI1164 +aI1398 +aI106 +aI1520 +aI756 +aI945 +aI1363 +aI970 +aI807 +aI1150 +aI963 +aI424 +aI553 +aI369 +aI1539 +aI1324 +aI1666 +aI652 +aI1826 +aI1211 +aI95 +aI1445 +aI1341 +aI1663 +aI1034 +aI976 +aI1549 +aI1064 +aI113 +aI1308 +aI1894 +aI1123 +aI616 +aI718 +aI1144 +aI303 +aI181 +aI1040 +aI1833 +aI1651 +aI1039 +aI1272 +aI212 +aI1316 +aI470 +aI729 +aI1938 +aI1932 +aI1558 +aI654 +aI1250 +aI1687 +aI1750 +aI633 +aI1971 +aI867 +aI78 +aI1243 +aI1669 +aI1074 +aI1023 +aI173 +aI1511 +aI1305 +aI1681 +aI486 +aI1500 +aI1096 +aI1063 +aI1536 +aI1496 +aI749 +aI549 +aI312 +aI167 +aI1547 +aI1262 +aI377 +aI528 +aI1069 +aI927 +aI865 +aI822 +aI1198 +aI1670 +aI387 +aI1550 +aI452 +aI1703 +aI272 +aI1686 +aI1904 +aI75 +aI1707 +aI698 +aI206 +aI91 +aI954 +aI1821 +aI434 +aI814 +aI1210 +aI1314 +aI1202 +aI1925 +aI842 +aI1541 +aI1318 +aI1829 +aI1949 +aI911 +aI542 +aI102 +aI1678 +aI998 +aI1784 +aI1720 +aI332 +aI1073 +aI1264 +aI648 +aI1745 +aI952 +aI316 +aI1048 +aI609 +aI1809 +aI663 +aI1616 +aI905 +aI1518 +aI1581 +aI778 +aI1228 +aI975 +aI364 +aI841 +aI433 +aI1422 +aI352 +aI1140 +aI965 +aI1383 +aI684 +aI163 +aI1765 +aI995 +aI677 +aI599 +aI1416 +aI1160 +aI780 +aI896 +aI1044 +aI1271 +aI670 +aI1895 +aI849 +aI742 +aI1977 +aI0 +aI221 +aI1752 +aI1226 +aI383 +aI1279 +aI561 +aI1583 +aI1179 +aI356 +aI1818 +aI1091 +aI1270 +aI1404 +aI1035 +aI11 +aI1113 +aI810 +aI1957 +aI366 +aI178 +aI1205 +aI1893 +aI716 +aI1936 +aI123 +aI917 +aI610 +aI357 +aI1452 +aI1592 +aI680 +aI1086 +aI1719 +aI1622 +aI1569 +aI305 +aI1084 +aI1927 +aI1775 +aI1325 +aI1639 +aI937 +aI338 +aI1944 +aI593 +aI574 +aI678 +aI1710 +aI1337 +aI478 +aI323 +aI39 +aI726 +aI1365 +aI933 +aI1545 +aI1983 +aI1125 +aI994 +aI955 +aI1718 +aI1488 +aI1643 +aI362 +aI231 +aI959 +aI783 +aI367 +aI133 +aI1081 +aI1252 +aI1538 +aI1509 +aI406 +aI706 +aI1342 +aI1933 +aI1033 +aI184 +aI1810 +aI286 +aI568 +aI1901 +aI1964 +aI1761 +aI1439 +aI552 +aI1836 +aI1433 +aI751 +aI733 +aI302 +aI226 +aI247 +aI1748 +aI468 +aI1578 +aI25 +aI636 +aI1635 +aI1462 +aI1292 +aI325 +aI524 +aI785 +aI1794 +aI805 +aI1369 +aI575 +aI1987 +aI1923 +aI1147 +aI1139 +aI1014 +aI148 +aI1760 +aI1628 +aI1010 +aI1899 +aI145 +aI24 +aI490 +aI147 +aI1423 +aI693 +aI1776 +aI773 +aI1563 +aI1360 +aI1838 +aI1514 +aI253 +aI225 +aI1918 +aI1897 +aI1212 +aI1780 +aI1866 +aI1152 +aI799 +aI1319 +aI596 +aI675 +aI1427 +aI1910 +aI1207 +aI730 +aI897 +aI324 +aI127 +aI523 +aI1431 +aI1464 +aI1057 +aI381 +aI1494 +aI1349 +aI143 +aI812 +aI328 +aI218 +aI1600 +aI1384 +aI1454 +aI1163 +aI720 +aI17 +aI1011 +aI1022 +aI139 +aI1197 +aI974 +aI540 +aI473 +aI792 +aI1611 +aI921 +aI386 +aI1203 +aI1844 +aI1158 +aI939 +aI894 +aI869 +aI1070 +aI1580 +aI1634 +aI277 +aI1590 +aI731 +aI33 +aI1986 +aI1362 +aI747 +aI1386 +aI344 +aI1988 +aI1900 +aI1301 +aI109 +aI1469 +aI50 +aI409 +aI1120 +aI1714 +aI712 +aI1460 +aI1529 +aI1786 +aI1767 +aI415 +aI798 +aI1142 +aI1853 +aI1743 +aI1068 +aI1481 +aI1759 +aI1 +aI262 +aI507 +aI444 +aI292 +aI1052 +aI1738 +aI1758 +aI198 +aI70 +aI1184 +aI704 +aI3 +aI280 +aI412 +aI1627 +aI1135 +aI581 +aI1111 +aI442 +aI1596 +aI1053 +aI1610 +aI1031 +aI32 +aI1620 +aI1755 +aI1879 +aI557 +aI1633 +aI14 +aI1975 +aI1667 +aI953 +aI77 +aI1263 +aI831 +aI1787 +aI1247 +aI1148 +aI809 +aI1255 +aI1930 +aI815 +aI1372 +aI134 +aI1642 +aI1716 +aI1094 +asS'train_ind' +p9992 +(lp9993 +I1646 +aI1534 +aI63 +aI1430 +aI916 +aI877 +aI1277 +aI477 +aI1102 +aI672 +aI1106 +aI101 +aI379 +aI866 +aI1690 +aI737 +aI679 +aI1440 +aI1468 +aI1641 +aI398 +aI276 +aI1814 +aI1151 +aI569 +aI1544 +aI821 +aI1640 +aI1298 +aI1654 +aI503 +aI446 +aI1332 +aI691 +aI1146 +aI449 +aI506 +aI216 +aI1572 +aI646 +aI1637 +aI349 +aI1931 +aI1595 +aI373 +aI190 +aI1339 +aI1448 +aI1284 +aI1607 +aI562 +aI1825 +aI551 +aI899 +aI1920 +aI779 +aI890 +aI673 +aI237 +aI1731 +aI186 +aI296 +aI825 +aI297 +aI676 +aI588 +aI1479 +aI1493 +aI1770 +aI1819 +aI1742 +aI309 +aI1566 +aI1276 +aI1658 +aI1408 +aI1375 +aI1860 +aI1115 +aI983 +aI548 +aI84 +aI1321 +aI930 +aI645 +aI257 +aI768 +aI1911 +aI1528 +aI1958 +aI1424 +aI626 +aI129 +aI560 +aI233 +aI828 +aI79 +aI1837 +aI76 +aI1497 +aI235 +aI1960 +aI150 +aI339 +aI1867 +aI1505 +aI710 +aI1213 +aI314 +aI1359 +aI1436 +aI199 +aI1417 +aI876 +aI1906 +aI1773 +aI758 +aI597 +aI111 +aI589 +aI291 +aI649 +aI1075 +aI45 +aI709 +aI1311 +aI1145 +aI1850 +aI185 +aI48 +aI1807 +aI485 +aI1950 +aI1110 +aI1051 +aI1535 +aI956 +aI1322 +aI1914 +aI1032 +aI1155 +aI999 +aI1245 +aI87 +aI1804 +aI1459 +aI463 +aI1236 +aI1258 +aI268 +aI177 +aI1644 +aI333 +aI1746 +aI1798 +aI1465 +aI635 +aI1735 +aI891 +aI590 +aI1055 +aI1889 +aI445 +aI941 +aI1880 +aI154 +aI1757 +aI194 +aI1030 +aI1623 +aI1474 +aI819 +aI1926 +aI1486 +aI1104 +aI1266 +aI1161 +aI1917 +aI1385 +aI61 +aI500 +aI1004 +aI66 +aI514 +aI1136 +aI1584 +aI355 +aI295 +aI1087 +aI100 +aI520 +aI1280 +aI1791 +aI632 +aI443 +aI1631 +aI467 +aI337 +aI1411 +aI1097 +aI1221 +aI621 +aI1848 +aI1016 +aI1167 +aI1934 +aI701 +aI436 +aI136 +aI299 +aI1593 +aI1676 +aI210 +aI1309 +aI93 +aI469 +aI390 +aI1187 +aI49 +aI1330 +aI1216 +aI392 +aI715 +aI1564 +aI1421 +aI142 +aI622 +aI895 +aI1487 +aI1515 +aI725 +aI1653 +aI705 +aI1006 +aI1882 +aI744 +aI1079 +aI1698 +aI318 +aI1951 +aI962 +aI1781 +aI563 +aI1524 +aI402 +aI1373 +aI960 +aI576 +aI358 +aI1056 +aI595 +aI1406 +aI1649 +aI439 +aI854 +aI980 +aI578 +aI393 +aI550 +aI745 +aI1232 +aI1480 +aI1138 +aI882 +aI1088 +aI811 +aI197 +aI1685 +aI743 +aI1795 +aI1967 +aI208 +aI719 +aI482 +aI1725 +aI1614 +aI10 +aI1905 +aI966 +aI1771 +aI1162 +aI378 +aI394 +aI689 +aI313 +aI270 +aI1100 +aI290 +aI1608 +aI365 +aI1437 +aI1585 +aI501 +aI236 +aI1542 +aI1002 +aI771 +aI1733 +aI1344 +aI1557 +aI1483 +aI530 +aI493 +aI1156 +aI422 +aI1522 +aI1254 +aI1737 +aI1170 +aI1778 +aI354 +aI1553 +aI1397 +aI495 +aI480 +aI1567 +aI348 +aI1921 +aI1446 +aI1762 +aI1374 +aI227 +aI35 +aI797 +aI972 +aI1116 +aI1812 +aI844 +aI289 +aI1099 +aI1797 +aI1842 +aI511 +aI1858 +aI1173 +aI1531 +aI755 +aI205 +aI1680 +aI476 +aI600 +aI1683 +aI922 +aI923 +aI888 +aI727 +aI427 +aI1300 +aI1701 +aI1813 +aI130 +aI1009 +aI1346 +aI1382 +aI1471 +aI862 +aI1845 +aI1648 +aI7 +aI1874 +aI739 +aI1347 +aI1942 +aI833 +aI1601 +aI1551 +aI664 +aI838 +aI430 +aI492 +aI1495 +aI1990 +aI1978 +aI613 +aI256 +aI1832 +aI630 +aI1859 +aI458 +aI1134 +aI1674 +aI121 +aI762 +aI1883 +aI1289 +aI1400 +aI1928 +aI817 +aI769 +aI330 +aI1017 +aI220 +aI1546 +aI1472 +aI132 +aI264 +aI131 +aI43 +aI661 +aI957 +aI671 +aI1552 +aI544 +aI872 +aI543 +aI435 +aI1219 +aI836 +aI1274 +aI411 +aI687 +aI16 +aI776 +aI1199 +aI650 +aI54 +aI1863 +aI1799 +aI987 +aI320 +aI1234 +aI504 +aI459 +aI942 +aI1632 +aI1141 +aI1939 +aI509 +aI1822 +aI1565 +aI791 +aI1098 +aI1796 +aI265 +aI1304 +aI1441 +aI52 +aI1523 +aI368 +aI855 +aI1281 +aI60 +aI162 +aI97 +aI429 +aI1083 +aI317 +aI932 +aI603 +aI188 +aI1993 +aI1744 +aI224 +aI4 +aI1961 +aI359 +aI1061 +aI274 +aI741 +aI847 +aI391 +aI118 +aI68 +aI1788 +aI1256 +aI763 +aI1489 +aI1840 +aI401 +aI1394 +aI1335 +aI1050 +aI464 +aI840 +aI169 +aI1947 +aI900 +aI1092 +aI1112 +aI1682 +aI824 +aI1072 +aI294 +aI1543 +aI795 +aI800 +aI566 +aI124 +aI1461 +aI5 +aI1367 +aI1005 +aI1560 +aI615 +aI1688 +aI1041 +aI146 +aI135 +aI1508 +aI740 +aI491 +aI931 +aI1108 +aI1604 +aI1847 +aI1749 +aI1137 +aI252 +aI634 +aI968 +aI399 +aI690 +aI245 +aI653 +aI375 +aI1353 +aI421 +aI1029 +aI1024 +aI708 +aI334 +aI1502 +aI901 +aI946 +aI1230 +aI1849 +aI668 +aI992 +aI1467 +aI1548 +aI1630 +aI579 +aI1028 +aI343 +aI1713 +aI465 +aI1919 +aI1302 +aI1244 +aI457 +aI1165 +aI934 +aI1371 +aI1370 +aI655 +aI1327 +aI850 +aI428 +aI582 +aI863 +aI64 +aI1060 +aI1117 +aI234 +aI1428 +aI1763 +aI1419 +aI1991 +aI41 +aI1275 +aI168 +aI497 +aI423 +aI329 +aI1779 +aI1025 +aI1047 +aI1705 +aI499 +aI1792 +aI1711 +aI770 +aI1929 +aI1973 +aI1896 +aI868 +aI72 +aI772 +aI361 +aI255 +aI461 +aI1570 +aI1201 +aI74 +aI885 +aI144 +aI1191 +aI695 +aI1182 +aI1521 +aI380 +aI82 +aI1186 +aI403 +aI659 +aI826 +aI1948 +aI1153 +aI347 +aI1085 +aI1157 +aI1969 +aI1418 +aI871 +aI570 +aI915 +aI1625 +aI1913 +aI944 +aI1916 +aI1603 +aI1174 +aI287 +aI516 +aI1615 +aI748 +aI363 +aI215 +aI319 +aI269 +aI1808 +aI1067 +aI1753 +aI8 +aI641 +aI620 +aI990 +aI29 +aI947 +aI1149 +aI1390 +aI222 +aI533 +aI271 +aI223 +aI1525 +aI1533 +aI1042 +aI1851 +aI948 +aI388 +aI1453 +aI494 +aI660 +aI1175 +aI531 +aI1650 +aI1253 +aI908 +aI1209 +aI308 +aI1907 +aI1695 +aI1455 +aI1315 +aI58 +aI735 +aI754 +aI1887 +aI246 +aI1501 +aI460 +aI1671 +aI702 +aI1077 +aI1498 +aI384 +aI988 +aI545 +aI1756 +aI1966 +aI1507 +aI943 +aI128 +aI713 +aI1231 +aI1225 +aI853 +aI794 +aI1597 +aI103 +aI26 +aI1388 +aI1510 +aI1208 +aI407 +aI1843 +aI977 +aI858 +aI935 +aI410 +aI592 +aI419 +aI1043 +aI929 +aI161 +aI519 +aI1732 +aI1864 +aI526 +aI1045 +aI1177 +aI1435 +aI240 +aI42 +aI438 +aI774 +aI46 +aI910 +aI1689 +aI1871 +aI1249 +aI510 +aI426 +aI843 +aI1857 +aI859 +aI1869 +aI1227 +aI521 +aI1046 +aI1952 +aI651 +aI1355 +aI818 +aI1062 +aI721 +aI416 +aI788 +aI1992 +aI1361 +aI665 +aI612 +aI1870 +aI732 +aI1432 +aI1968 +aI918 +aI382 +aI750 +aI913 +aI1679 +aI938 +aI1328 +aI1189 +aI1379 +aI951 +aI1722 +aI249 +aI1132 +aI321 +aI31 +aI658 +aI23 +aI1672 +aI1943 +aI1579 +aI1018 +aI1724 +aI304 +aI165 +aI1854 +aI440 +aI856 +aI189 +aI1377 +aI1133 +aI372 +aI1450 +aI1868 +aI1828 +aI1677 +aI1684 +aI1354 +aI604 +aI230 +aI1103 +aI1313 +aI18 +aI1399 +aI195 +aI1303 +aI513 +aI1816 +aI1286 +aI1082 +aI1571 +aI801 +aI1909 +aI1109 +aI567 +aI1981 +aI1395 +aI1143 +aI301 +aI228 +aI213 +aI846 +aI1251 +aI1368 +as. \ No newline at end of file diff --git a/data/SCv2-GEN/raw.pickle b/data/SCv2-GEN/raw.pickle new file mode 100644 index 0000000..5b89a9e --- /dev/null +++ b/data/SCv2-GEN/raw.pickle @@ -0,0 +1,19578 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +I1 +sa(dp5 +g4 +I1 +sa(dp6 +g4 +I1 +sa(dp7 +g4 +I1 +sa(dp8 +g4 +I1 +sa(dp9 +g4 +I1 +sa(dp10 +g4 +I1 +sa(dp11 +g4 +I1 +sa(dp12 +g4 +I1 +sa(dp13 +g4 +I1 +sa(dp14 +g4 +I1 +sa(dp15 +g4 +I1 +sa(dp16 +g4 +I1 +sa(dp17 +g4 +I1 +sa(dp18 +g4 +I1 +sa(dp19 +g4 +I1 +sa(dp20 +g4 +I1 +sa(dp21 +g4 +I1 +sa(dp22 +g4 +I1 +sa(dp23 +g4 +I1 +sa(dp24 +g4 +I1 +sa(dp25 +g4 +I1 +sa(dp26 +g4 +I1 +sa(dp27 +g4 +I1 +sa(dp28 +g4 +I1 +sa(dp29 +g4 +I1 +sa(dp30 +g4 +I1 +sa(dp31 +g4 +I1 +sa(dp32 +g4 +I1 +sa(dp33 +g4 +I1 +sa(dp34 +g4 +I1 +sa(dp35 +g4 +I1 +sa(dp36 +g4 +I1 +sa(dp37 +g4 +I1 +sa(dp38 +g4 +I1 +sa(dp39 +g4 +I1 +sa(dp40 +g4 +I1 +sa(dp41 +g4 +I1 +sa(dp42 +g4 +I1 +sa(dp43 +g4 +I1 +sa(dp44 +g4 +I1 +sa(dp45 +g4 +I1 +sa(dp46 +g4 +I1 +sa(dp47 +g4 +I1 +sa(dp48 +g4 +I1 +sa(dp49 +g4 +I1 +sa(dp50 +g4 +I1 +sa(dp51 +g4 +I1 +sa(dp52 +g4 +I1 +sa(dp53 +g4 +I1 +sa(dp54 +g4 +I1 +sa(dp55 +g4 +I1 +sa(dp56 +g4 +I1 +sa(dp57 +g4 +I1 +sa(dp58 +g4 +I1 +sa(dp59 +g4 +I1 +sa(dp60 +g4 +I1 +sa(dp61 +g4 +I1 +sa(dp62 +g4 +I1 +sa(dp63 +g4 +I1 +sa(dp64 +g4 +I1 +sa(dp65 +g4 +I1 +sa(dp66 +g4 +I1 +sa(dp67 +g4 +I1 +sa(dp68 +g4 +I1 +sa(dp69 +g4 +I1 +sa(dp70 +g4 +I1 +sa(dp71 +g4 +I1 +sa(dp72 +g4 +I1 +sa(dp73 +g4 +I1 +sa(dp74 +g4 +I1 +sa(dp75 +g4 +I1 +sa(dp76 +g4 +I1 +sa(dp77 +g4 +I1 +sa(dp78 +g4 +I1 +sa(dp79 +g4 +I1 +sa(dp80 +g4 +I1 +sa(dp81 +g4 +I1 +sa(dp82 +g4 +I1 +sa(dp83 +g4 +I1 +sa(dp84 +g4 +I1 +sa(dp85 +g4 +I1 +sa(dp86 +g4 +I1 +sa(dp87 +g4 +I1 +sa(dp88 +g4 +I1 +sa(dp89 +g4 +I1 +sa(dp90 +g4 +I1 +sa(dp91 +g4 +I1 +sa(dp92 +g4 +I1 +sa(dp93 +g4 +I1 +sa(dp94 +g4 +I1 +sa(dp95 +g4 +I1 +sa(dp96 +g4 +I1 +sa(dp97 +g4 +I1 +sa(dp98 +g4 +I1 +sa(dp99 +g4 +I1 +sa(dp100 +g4 +I1 +sa(dp101 +g4 +I1 +sa(dp102 +g4 +I1 +sa(dp103 +g4 +I1 +sa(dp104 +g4 +I1 +sa(dp105 +g4 +I1 +sa(dp106 +g4 +I1 +sa(dp107 +g4 +I1 +sa(dp108 +g4 +I1 +sa(dp109 +g4 +I1 +sa(dp110 +g4 +I1 +sa(dp111 +g4 +I1 +sa(dp112 +g4 +I1 +sa(dp113 +g4 +I1 +sa(dp114 +g4 +I1 +sa(dp115 +g4 +I1 +sa(dp116 +g4 +I1 +sa(dp117 +g4 +I1 +sa(dp118 +g4 +I1 +sa(dp119 +g4 +I1 +sa(dp120 +g4 +I1 +sa(dp121 +g4 +I1 +sa(dp122 +g4 +I1 +sa(dp123 +g4 +I1 +sa(dp124 +g4 +I1 +sa(dp125 +g4 +I1 +sa(dp126 +g4 +I1 +sa(dp127 +g4 +I1 +sa(dp128 +g4 +I1 +sa(dp129 +g4 +I1 +sa(dp130 +g4 +I1 +sa(dp131 +g4 +I1 +sa(dp132 +g4 +I1 +sa(dp133 +g4 +I1 +sa(dp134 +g4 +I1 +sa(dp135 +g4 +I1 +sa(dp136 +g4 +I1 +sa(dp137 +g4 +I1 +sa(dp138 +g4 +I1 +sa(dp139 +g4 +I1 +sa(dp140 +g4 +I1 +sa(dp141 +g4 +I1 +sa(dp142 +g4 +I1 +sa(dp143 +g4 +I1 +sa(dp144 +g4 +I1 +sa(dp145 +g4 +I1 +sa(dp146 +g4 +I1 +sa(dp147 +g4 +I1 +sa(dp148 +g4 +I1 +sa(dp149 +g4 +I1 +sa(dp150 +g4 +I1 +sa(dp151 +g4 +I1 +sa(dp152 +g4 +I1 +sa(dp153 +g4 +I1 +sa(dp154 +g4 +I1 +sa(dp155 +g4 +I1 +sa(dp156 +g4 +I1 +sa(dp157 +g4 +I1 +sa(dp158 +g4 +I1 +sa(dp159 +g4 +I1 +sa(dp160 +g4 +I1 +sa(dp161 +g4 +I1 +sa(dp162 +g4 +I1 +sa(dp163 +g4 +I1 +sa(dp164 +g4 +I1 +sa(dp165 +g4 +I1 +sa(dp166 +g4 +I1 +sa(dp167 +g4 +I1 +sa(dp168 +g4 +I1 +sa(dp169 +g4 +I1 +sa(dp170 +g4 +I1 +sa(dp171 +g4 +I1 +sa(dp172 +g4 +I1 +sa(dp173 +g4 +I1 +sa(dp174 +g4 +I1 +sa(dp175 +g4 +I1 +sa(dp176 +g4 +I1 +sa(dp177 +g4 +I1 +sa(dp178 +g4 +I1 +sa(dp179 +g4 +I1 +sa(dp180 +g4 +I1 +sa(dp181 +g4 +I1 +sa(dp182 +g4 +I1 +sa(dp183 +g4 +I1 +sa(dp184 +g4 +I1 +sa(dp185 +g4 +I1 +sa(dp186 +g4 +I1 +sa(dp187 +g4 +I1 +sa(dp188 +g4 +I1 +sa(dp189 +g4 +I1 +sa(dp190 +g4 +I1 +sa(dp191 +g4 +I1 +sa(dp192 +g4 +I1 +sa(dp193 +g4 +I1 +sa(dp194 +g4 +I1 +sa(dp195 +g4 +I1 +sa(dp196 +g4 +I1 +sa(dp197 +g4 +I1 +sa(dp198 +g4 +I1 +sa(dp199 +g4 +I1 +sa(dp200 +g4 +I1 +sa(dp201 +g4 +I1 +sa(dp202 +g4 +I1 +sa(dp203 +g4 +I1 +sa(dp204 +g4 +I1 +sa(dp205 +g4 +I1 +sa(dp206 +g4 +I1 +sa(dp207 +g4 +I1 +sa(dp208 +g4 +I1 +sa(dp209 +g4 +I1 +sa(dp210 +g4 +I1 +sa(dp211 +g4 +I1 +sa(dp212 +g4 +I1 +sa(dp213 +g4 +I1 +sa(dp214 +g4 +I1 +sa(dp215 +g4 +I1 +sa(dp216 +g4 +I1 +sa(dp217 +g4 +I1 +sa(dp218 +g4 +I1 +sa(dp219 +g4 +I1 +sa(dp220 +g4 +I1 +sa(dp221 +g4 +I1 +sa(dp222 +g4 +I1 +sa(dp223 +g4 +I1 +sa(dp224 +g4 +I1 +sa(dp225 +g4 +I1 +sa(dp226 +g4 +I1 +sa(dp227 +g4 +I1 +sa(dp228 +g4 +I1 +sa(dp229 +g4 +I1 +sa(dp230 +g4 +I1 +sa(dp231 +g4 +I1 +sa(dp232 +g4 +I1 +sa(dp233 +g4 +I1 +sa(dp234 +g4 +I1 +sa(dp235 +g4 +I1 +sa(dp236 +g4 +I1 +sa(dp237 +g4 +I1 +sa(dp238 +g4 +I1 +sa(dp239 +g4 +I1 +sa(dp240 +g4 +I1 +sa(dp241 +g4 +I1 +sa(dp242 +g4 +I1 +sa(dp243 +g4 +I1 +sa(dp244 +g4 +I1 +sa(dp245 +g4 +I1 +sa(dp246 +g4 +I1 +sa(dp247 +g4 +I1 +sa(dp248 +g4 +I1 +sa(dp249 +g4 +I1 +sa(dp250 +g4 +I1 +sa(dp251 +g4 +I1 +sa(dp252 +g4 +I1 +sa(dp253 +g4 +I1 +sa(dp254 +g4 +I1 +sa(dp255 +g4 +I1 +sa(dp256 +g4 +I1 +sa(dp257 +g4 +I1 +sa(dp258 +g4 +I1 +sa(dp259 +g4 +I1 +sa(dp260 +g4 +I1 +sa(dp261 +g4 +I1 +sa(dp262 +g4 +I1 +sa(dp263 +g4 +I1 +sa(dp264 +g4 +I1 +sa(dp265 +g4 +I1 +sa(dp266 +g4 +I1 +sa(dp267 +g4 +I1 +sa(dp268 +g4 +I1 +sa(dp269 +g4 +I1 +sa(dp270 +g4 +I1 +sa(dp271 +g4 +I1 +sa(dp272 +g4 +I1 +sa(dp273 +g4 +I1 +sa(dp274 +g4 +I1 +sa(dp275 +g4 +I1 +sa(dp276 +g4 +I1 +sa(dp277 +g4 +I1 +sa(dp278 +g4 +I1 +sa(dp279 +g4 +I1 +sa(dp280 +g4 +I1 +sa(dp281 +g4 +I1 +sa(dp282 +g4 +I1 +sa(dp283 +g4 +I1 +sa(dp284 +g4 +I1 +sa(dp285 +g4 +I1 +sa(dp286 +g4 +I1 +sa(dp287 +g4 +I1 +sa(dp288 +g4 +I1 +sa(dp289 +g4 +I1 +sa(dp290 +g4 +I1 +sa(dp291 +g4 +I1 +sa(dp292 +g4 +I1 +sa(dp293 +g4 +I1 +sa(dp294 +g4 +I1 +sa(dp295 +g4 +I1 +sa(dp296 +g4 +I1 +sa(dp297 +g4 +I1 +sa(dp298 +g4 +I1 +sa(dp299 +g4 +I1 +sa(dp300 +g4 +I1 +sa(dp301 +g4 +I1 +sa(dp302 +g4 +I1 +sa(dp303 +g4 +I1 +sa(dp304 +g4 +I1 +sa(dp305 +g4 +I1 +sa(dp306 +g4 +I1 +sa(dp307 +g4 +I1 +sa(dp308 +g4 +I1 +sa(dp309 +g4 +I1 +sa(dp310 +g4 +I1 +sa(dp311 +g4 +I1 +sa(dp312 +g4 +I1 +sa(dp313 +g4 +I1 +sa(dp314 +g4 +I1 +sa(dp315 +g4 +I1 +sa(dp316 +g4 +I1 +sa(dp317 +g4 +I1 +sa(dp318 +g4 +I1 +sa(dp319 +g4 +I1 +sa(dp320 +g4 +I1 +sa(dp321 +g4 +I1 +sa(dp322 +g4 +I1 +sa(dp323 +g4 +I1 +sa(dp324 +g4 +I1 +sa(dp325 +g4 +I1 +sa(dp326 +g4 +I1 +sa(dp327 +g4 +I1 +sa(dp328 +g4 +I1 +sa(dp329 +g4 +I1 +sa(dp330 +g4 +I1 +sa(dp331 +g4 +I1 +sa(dp332 +g4 +I1 +sa(dp333 +g4 +I1 +sa(dp334 +g4 +I1 +sa(dp335 +g4 +I1 +sa(dp336 +g4 +I1 +sa(dp337 +g4 +I1 +sa(dp338 +g4 +I1 +sa(dp339 +g4 +I1 +sa(dp340 +g4 +I1 +sa(dp341 +g4 +I1 +sa(dp342 +g4 +I1 +sa(dp343 +g4 +I1 +sa(dp344 +g4 +I1 +sa(dp345 +g4 +I1 +sa(dp346 +g4 +I1 +sa(dp347 +g4 +I1 +sa(dp348 +g4 +I1 +sa(dp349 +g4 +I1 +sa(dp350 +g4 +I1 +sa(dp351 +g4 +I1 +sa(dp352 +g4 +I1 +sa(dp353 +g4 +I1 +sa(dp354 +g4 +I1 +sa(dp355 +g4 +I1 +sa(dp356 +g4 +I1 +sa(dp357 +g4 +I1 +sa(dp358 +g4 +I1 +sa(dp359 +g4 +I1 +sa(dp360 +g4 +I1 +sa(dp361 +g4 +I1 +sa(dp362 +g4 +I1 +sa(dp363 +g4 +I1 +sa(dp364 +g4 +I1 +sa(dp365 +g4 +I1 +sa(dp366 +g4 +I1 +sa(dp367 +g4 +I1 +sa(dp368 +g4 +I1 +sa(dp369 +g4 +I1 +sa(dp370 +g4 +I1 +sa(dp371 +g4 +I1 +sa(dp372 +g4 +I1 +sa(dp373 +g4 +I1 +sa(dp374 +g4 +I1 +sa(dp375 +g4 +I1 +sa(dp376 +g4 +I1 +sa(dp377 +g4 +I1 +sa(dp378 +g4 +I1 +sa(dp379 +g4 +I1 +sa(dp380 +g4 +I1 +sa(dp381 +g4 +I1 +sa(dp382 +g4 +I1 +sa(dp383 +g4 +I1 +sa(dp384 +g4 +I1 +sa(dp385 +g4 +I1 +sa(dp386 +g4 +I1 +sa(dp387 +g4 +I1 +sa(dp388 +g4 +I1 +sa(dp389 +g4 +I1 +sa(dp390 +g4 +I1 +sa(dp391 +g4 +I1 +sa(dp392 +g4 +I1 +sa(dp393 +g4 +I1 +sa(dp394 +g4 +I1 +sa(dp395 +g4 +I1 +sa(dp396 +g4 +I1 +sa(dp397 +g4 +I1 +sa(dp398 +g4 +I1 +sa(dp399 +g4 +I1 +sa(dp400 +g4 +I1 +sa(dp401 +g4 +I1 +sa(dp402 +g4 +I1 +sa(dp403 +g4 +I1 +sa(dp404 +g4 +I1 +sa(dp405 +g4 +I1 +sa(dp406 +g4 +I1 +sa(dp407 +g4 +I1 +sa(dp408 +g4 +I1 +sa(dp409 +g4 +I1 +sa(dp410 +g4 +I1 +sa(dp411 +g4 +I1 +sa(dp412 +g4 +I1 +sa(dp413 +g4 +I1 +sa(dp414 +g4 +I1 +sa(dp415 +g4 +I1 +sa(dp416 +g4 +I1 +sa(dp417 +g4 +I1 +sa(dp418 +g4 +I1 +sa(dp419 +g4 +I1 +sa(dp420 +g4 +I1 +sa(dp421 +g4 +I1 +sa(dp422 +g4 +I1 +sa(dp423 +g4 +I1 +sa(dp424 +g4 +I1 +sa(dp425 +g4 +I1 +sa(dp426 +g4 +I1 +sa(dp427 +g4 +I1 +sa(dp428 +g4 +I1 +sa(dp429 +g4 +I1 +sa(dp430 +g4 +I1 +sa(dp431 +g4 +I1 +sa(dp432 +g4 +I1 +sa(dp433 +g4 +I1 +sa(dp434 +g4 +I1 +sa(dp435 +g4 +I1 +sa(dp436 +g4 +I1 +sa(dp437 +g4 +I1 +sa(dp438 +g4 +I1 +sa(dp439 +g4 +I1 +sa(dp440 +g4 +I1 +sa(dp441 +g4 +I1 +sa(dp442 +g4 +I1 +sa(dp443 +g4 +I1 +sa(dp444 +g4 +I1 +sa(dp445 +g4 +I1 +sa(dp446 +g4 +I1 +sa(dp447 +g4 +I1 +sa(dp448 +g4 +I1 +sa(dp449 +g4 +I1 +sa(dp450 +g4 +I1 +sa(dp451 +g4 +I1 +sa(dp452 +g4 +I1 +sa(dp453 +g4 +I1 +sa(dp454 +g4 +I1 +sa(dp455 +g4 +I1 +sa(dp456 +g4 +I1 +sa(dp457 +g4 +I1 +sa(dp458 +g4 +I1 +sa(dp459 +g4 +I1 +sa(dp460 +g4 +I1 +sa(dp461 +g4 +I1 +sa(dp462 +g4 +I1 +sa(dp463 +g4 +I1 +sa(dp464 +g4 +I1 +sa(dp465 +g4 +I1 +sa(dp466 +g4 +I1 +sa(dp467 +g4 +I1 +sa(dp468 +g4 +I1 +sa(dp469 +g4 +I1 +sa(dp470 +g4 +I1 +sa(dp471 +g4 +I1 +sa(dp472 +g4 +I1 +sa(dp473 +g4 +I1 +sa(dp474 +g4 +I1 +sa(dp475 +g4 +I1 +sa(dp476 +g4 +I1 +sa(dp477 +g4 +I1 +sa(dp478 +g4 +I1 +sa(dp479 +g4 +I1 +sa(dp480 +g4 +I1 +sa(dp481 +g4 +I1 +sa(dp482 +g4 +I1 +sa(dp483 +g4 +I1 +sa(dp484 +g4 +I1 +sa(dp485 +g4 +I1 +sa(dp486 +g4 +I1 +sa(dp487 +g4 +I1 +sa(dp488 +g4 +I1 +sa(dp489 +g4 +I1 +sa(dp490 +g4 +I1 +sa(dp491 +g4 +I1 +sa(dp492 +g4 +I1 +sa(dp493 +g4 +I1 +sa(dp494 +g4 +I1 +sa(dp495 +g4 +I1 +sa(dp496 +g4 +I1 +sa(dp497 +g4 +I1 +sa(dp498 +g4 +I1 +sa(dp499 +g4 +I1 +sa(dp500 +g4 +I1 +sa(dp501 +g4 +I1 +sa(dp502 +g4 +I1 +sa(dp503 +g4 +I1 +sa(dp504 +g4 +I1 +sa(dp505 +g4 +I1 +sa(dp506 +g4 +I1 +sa(dp507 +g4 +I1 +sa(dp508 +g4 +I1 +sa(dp509 +g4 +I1 +sa(dp510 +g4 +I1 +sa(dp511 +g4 +I1 +sa(dp512 +g4 +I1 +sa(dp513 +g4 +I1 +sa(dp514 +g4 +I1 +sa(dp515 +g4 +I1 +sa(dp516 +g4 +I1 +sa(dp517 +g4 +I1 +sa(dp518 +g4 +I1 +sa(dp519 +g4 +I1 +sa(dp520 +g4 +I1 +sa(dp521 +g4 +I1 +sa(dp522 +g4 +I1 +sa(dp523 +g4 +I1 +sa(dp524 +g4 +I1 +sa(dp525 +g4 +I1 +sa(dp526 +g4 +I1 +sa(dp527 +g4 +I1 +sa(dp528 +g4 +I1 +sa(dp529 +g4 +I1 +sa(dp530 +g4 +I1 +sa(dp531 +g4 +I1 +sa(dp532 +g4 +I1 +sa(dp533 +g4 +I1 +sa(dp534 +g4 +I1 +sa(dp535 +g4 +I1 +sa(dp536 +g4 +I1 +sa(dp537 +g4 +I1 +sa(dp538 +g4 +I1 +sa(dp539 +g4 +I1 +sa(dp540 +g4 +I1 +sa(dp541 +g4 +I1 +sa(dp542 +g4 +I1 +sa(dp543 +g4 +I1 +sa(dp544 +g4 +I1 +sa(dp545 +g4 +I1 +sa(dp546 +g4 +I1 +sa(dp547 +g4 +I1 +sa(dp548 +g4 +I1 +sa(dp549 +g4 +I1 +sa(dp550 +g4 +I1 +sa(dp551 +g4 +I1 +sa(dp552 +g4 +I1 +sa(dp553 +g4 +I1 +sa(dp554 +g4 +I1 +sa(dp555 +g4 +I1 +sa(dp556 +g4 +I1 +sa(dp557 +g4 +I1 +sa(dp558 +g4 +I1 +sa(dp559 +g4 +I1 +sa(dp560 +g4 +I1 +sa(dp561 +g4 +I1 +sa(dp562 +g4 +I1 +sa(dp563 +g4 +I1 +sa(dp564 +g4 +I1 +sa(dp565 +g4 +I1 +sa(dp566 +g4 +I1 +sa(dp567 +g4 +I1 +sa(dp568 +g4 +I1 +sa(dp569 +g4 +I1 +sa(dp570 +g4 +I1 +sa(dp571 +g4 +I1 +sa(dp572 +g4 +I1 +sa(dp573 +g4 +I1 +sa(dp574 +g4 +I1 +sa(dp575 +g4 +I1 +sa(dp576 +g4 +I1 +sa(dp577 +g4 +I1 +sa(dp578 +g4 +I1 +sa(dp579 +g4 +I1 +sa(dp580 +g4 +I1 +sa(dp581 +g4 +I1 +sa(dp582 +g4 +I1 +sa(dp583 +g4 +I1 +sa(dp584 +g4 +I1 +sa(dp585 +g4 +I1 +sa(dp586 +g4 +I1 +sa(dp587 +g4 +I1 +sa(dp588 +g4 +I1 +sa(dp589 +g4 +I1 +sa(dp590 +g4 +I1 +sa(dp591 +g4 +I1 +sa(dp592 +g4 +I1 +sa(dp593 +g4 +I1 +sa(dp594 +g4 +I1 +sa(dp595 +g4 +I1 +sa(dp596 +g4 +I1 +sa(dp597 +g4 +I1 +sa(dp598 +g4 +I1 +sa(dp599 +g4 +I1 +sa(dp600 +g4 +I1 +sa(dp601 +g4 +I1 +sa(dp602 +g4 +I1 +sa(dp603 +g4 +I1 +sa(dp604 +g4 +I1 +sa(dp605 +g4 +I1 +sa(dp606 +g4 +I1 +sa(dp607 +g4 +I1 +sa(dp608 +g4 +I1 +sa(dp609 +g4 +I1 +sa(dp610 +g4 +I1 +sa(dp611 +g4 +I1 +sa(dp612 +g4 +I1 +sa(dp613 +g4 +I1 +sa(dp614 +g4 +I1 +sa(dp615 +g4 +I1 +sa(dp616 +g4 +I1 +sa(dp617 +g4 +I1 +sa(dp618 +g4 +I1 +sa(dp619 +g4 +I1 +sa(dp620 +g4 +I1 +sa(dp621 +g4 +I1 +sa(dp622 +g4 +I1 +sa(dp623 +g4 +I1 +sa(dp624 +g4 +I1 +sa(dp625 +g4 +I1 +sa(dp626 +g4 +I1 +sa(dp627 +g4 +I1 +sa(dp628 +g4 +I1 +sa(dp629 +g4 +I1 +sa(dp630 +g4 +I1 +sa(dp631 +g4 +I1 +sa(dp632 +g4 +I1 +sa(dp633 +g4 +I1 +sa(dp634 +g4 +I1 +sa(dp635 +g4 +I1 +sa(dp636 +g4 +I1 +sa(dp637 +g4 +I1 +sa(dp638 +g4 +I1 +sa(dp639 +g4 +I1 +sa(dp640 +g4 +I1 +sa(dp641 +g4 +I1 +sa(dp642 +g4 +I1 +sa(dp643 +g4 +I1 +sa(dp644 +g4 +I1 +sa(dp645 +g4 +I1 +sa(dp646 +g4 +I1 +sa(dp647 +g4 +I1 +sa(dp648 +g4 +I1 +sa(dp649 +g4 +I1 +sa(dp650 +g4 +I1 +sa(dp651 +g4 +I1 +sa(dp652 +g4 +I1 +sa(dp653 +g4 +I1 +sa(dp654 +g4 +I1 +sa(dp655 +g4 +I1 +sa(dp656 +g4 +I1 +sa(dp657 +g4 +I1 +sa(dp658 +g4 +I1 +sa(dp659 +g4 +I1 +sa(dp660 +g4 +I1 +sa(dp661 +g4 +I1 +sa(dp662 +g4 +I1 +sa(dp663 +g4 +I1 +sa(dp664 +g4 +I1 +sa(dp665 +g4 +I1 +sa(dp666 +g4 +I1 +sa(dp667 +g4 +I1 +sa(dp668 +g4 +I1 +sa(dp669 +g4 +I1 +sa(dp670 +g4 +I1 +sa(dp671 +g4 +I1 +sa(dp672 +g4 +I1 +sa(dp673 +g4 +I1 +sa(dp674 +g4 +I1 +sa(dp675 +g4 +I1 +sa(dp676 +g4 +I1 +sa(dp677 +g4 +I1 +sa(dp678 +g4 +I1 +sa(dp679 +g4 +I1 +sa(dp680 +g4 +I1 +sa(dp681 +g4 +I1 +sa(dp682 +g4 +I1 +sa(dp683 +g4 +I1 +sa(dp684 +g4 +I1 +sa(dp685 +g4 +I1 +sa(dp686 +g4 +I1 +sa(dp687 +g4 +I1 +sa(dp688 +g4 +I1 +sa(dp689 +g4 +I1 +sa(dp690 +g4 +I1 +sa(dp691 +g4 +I1 +sa(dp692 +g4 +I1 +sa(dp693 +g4 +I1 +sa(dp694 +g4 +I1 +sa(dp695 +g4 +I1 +sa(dp696 +g4 +I1 +sa(dp697 +g4 +I1 +sa(dp698 +g4 +I1 +sa(dp699 +g4 +I1 +sa(dp700 +g4 +I1 +sa(dp701 +g4 +I1 +sa(dp702 +g4 +I1 +sa(dp703 +g4 +I1 +sa(dp704 +g4 +I1 +sa(dp705 +g4 +I1 +sa(dp706 +g4 +I1 +sa(dp707 +g4 +I1 +sa(dp708 +g4 +I1 +sa(dp709 +g4 +I1 +sa(dp710 +g4 +I1 +sa(dp711 +g4 +I1 +sa(dp712 +g4 +I1 +sa(dp713 +g4 +I1 +sa(dp714 +g4 +I1 +sa(dp715 +g4 +I1 +sa(dp716 +g4 +I1 +sa(dp717 +g4 +I1 +sa(dp718 +g4 +I1 +sa(dp719 +g4 +I1 +sa(dp720 +g4 +I1 +sa(dp721 +g4 +I1 +sa(dp722 +g4 +I1 +sa(dp723 +g4 +I1 +sa(dp724 +g4 +I1 +sa(dp725 +g4 +I1 +sa(dp726 +g4 +I1 +sa(dp727 +g4 +I1 +sa(dp728 +g4 +I1 +sa(dp729 +g4 +I1 +sa(dp730 +g4 +I1 +sa(dp731 +g4 +I1 +sa(dp732 +g4 +I1 +sa(dp733 +g4 +I1 +sa(dp734 +g4 +I1 +sa(dp735 +g4 +I1 +sa(dp736 +g4 +I1 +sa(dp737 +g4 +I1 +sa(dp738 +g4 +I1 +sa(dp739 +g4 +I1 +sa(dp740 +g4 +I1 +sa(dp741 +g4 +I1 +sa(dp742 +g4 +I1 +sa(dp743 +g4 +I1 +sa(dp744 +g4 +I1 +sa(dp745 +g4 +I1 +sa(dp746 +g4 +I1 +sa(dp747 +g4 +I1 +sa(dp748 +g4 +I1 +sa(dp749 +g4 +I1 +sa(dp750 +g4 +I1 +sa(dp751 +g4 +I1 +sa(dp752 +g4 +I1 +sa(dp753 +g4 +I1 +sa(dp754 +g4 +I1 +sa(dp755 +g4 +I1 +sa(dp756 +g4 +I1 +sa(dp757 +g4 +I1 +sa(dp758 +g4 +I1 +sa(dp759 +g4 +I1 +sa(dp760 +g4 +I1 +sa(dp761 +g4 +I1 +sa(dp762 +g4 +I1 +sa(dp763 +g4 +I1 +sa(dp764 +g4 +I1 +sa(dp765 +g4 +I1 +sa(dp766 +g4 +I1 +sa(dp767 +g4 +I1 +sa(dp768 +g4 +I1 +sa(dp769 +g4 +I1 +sa(dp770 +g4 +I1 +sa(dp771 +g4 +I1 +sa(dp772 +g4 +I1 +sa(dp773 +g4 +I1 +sa(dp774 +g4 +I1 +sa(dp775 +g4 +I1 +sa(dp776 +g4 +I1 +sa(dp777 +g4 +I1 +sa(dp778 +g4 +I1 +sa(dp779 +g4 +I1 +sa(dp780 +g4 +I1 +sa(dp781 +g4 +I1 +sa(dp782 +g4 +I1 +sa(dp783 +g4 +I1 +sa(dp784 +g4 +I1 +sa(dp785 +g4 +I1 +sa(dp786 +g4 +I1 +sa(dp787 +g4 +I1 +sa(dp788 +g4 +I1 +sa(dp789 +g4 +I1 +sa(dp790 +g4 +I1 +sa(dp791 +g4 +I1 +sa(dp792 +g4 +I1 +sa(dp793 +g4 +I1 +sa(dp794 +g4 +I1 +sa(dp795 +g4 +I1 +sa(dp796 +g4 +I1 +sa(dp797 +g4 +I1 +sa(dp798 +g4 +I1 +sa(dp799 +g4 +I1 +sa(dp800 +g4 +I1 +sa(dp801 +g4 +I1 +sa(dp802 +g4 +I1 +sa(dp803 +g4 +I1 +sa(dp804 +g4 +I1 +sa(dp805 +g4 +I1 +sa(dp806 +g4 +I1 +sa(dp807 +g4 +I1 +sa(dp808 +g4 +I1 +sa(dp809 +g4 +I1 +sa(dp810 +g4 +I1 +sa(dp811 +g4 +I1 +sa(dp812 +g4 +I1 +sa(dp813 +g4 +I1 +sa(dp814 +g4 +I1 +sa(dp815 +g4 +I1 +sa(dp816 +g4 +I1 +sa(dp817 +g4 +I1 +sa(dp818 +g4 +I1 +sa(dp819 +g4 +I1 +sa(dp820 +g4 +I1 +sa(dp821 +g4 +I1 +sa(dp822 +g4 +I1 +sa(dp823 +g4 +I1 +sa(dp824 +g4 +I1 +sa(dp825 +g4 +I1 +sa(dp826 +g4 +I1 +sa(dp827 +g4 +I1 +sa(dp828 +g4 +I1 +sa(dp829 +g4 +I1 +sa(dp830 +g4 +I1 +sa(dp831 +g4 +I1 +sa(dp832 +g4 +I1 +sa(dp833 +g4 +I1 +sa(dp834 +g4 +I1 +sa(dp835 +g4 +I1 +sa(dp836 +g4 +I1 +sa(dp837 +g4 +I1 +sa(dp838 +g4 +I1 +sa(dp839 +g4 +I1 +sa(dp840 +g4 +I1 +sa(dp841 +g4 +I1 +sa(dp842 +g4 +I1 +sa(dp843 +g4 +I1 +sa(dp844 +g4 +I1 +sa(dp845 +g4 +I1 +sa(dp846 +g4 +I1 +sa(dp847 +g4 +I1 +sa(dp848 +g4 +I1 +sa(dp849 +g4 +I1 +sa(dp850 +g4 +I1 +sa(dp851 +g4 +I1 +sa(dp852 +g4 +I1 +sa(dp853 +g4 +I1 +sa(dp854 +g4 +I1 +sa(dp855 +g4 +I1 +sa(dp856 +g4 +I1 +sa(dp857 +g4 +I1 +sa(dp858 +g4 +I1 +sa(dp859 +g4 +I1 +sa(dp860 +g4 +I1 +sa(dp861 +g4 +I1 +sa(dp862 +g4 +I1 +sa(dp863 +g4 +I1 +sa(dp864 +g4 +I1 +sa(dp865 +g4 +I1 +sa(dp866 +g4 +I1 +sa(dp867 +g4 +I1 +sa(dp868 +g4 +I1 +sa(dp869 +g4 +I1 +sa(dp870 +g4 +I1 +sa(dp871 +g4 +I1 +sa(dp872 +g4 +I1 +sa(dp873 +g4 +I1 +sa(dp874 +g4 +I1 +sa(dp875 +g4 +I1 +sa(dp876 +g4 +I1 +sa(dp877 +g4 +I1 +sa(dp878 +g4 +I1 +sa(dp879 +g4 +I1 +sa(dp880 +g4 +I1 +sa(dp881 +g4 +I1 +sa(dp882 +g4 +I1 +sa(dp883 +g4 +I1 +sa(dp884 +g4 +I1 +sa(dp885 +g4 +I1 +sa(dp886 +g4 +I1 +sa(dp887 +g4 +I1 +sa(dp888 +g4 +I1 +sa(dp889 +g4 +I1 +sa(dp890 +g4 +I1 +sa(dp891 +g4 +I1 +sa(dp892 +g4 +I1 +sa(dp893 +g4 +I1 +sa(dp894 +g4 +I1 +sa(dp895 +g4 +I1 +sa(dp896 +g4 +I1 +sa(dp897 +g4 +I1 +sa(dp898 +g4 +I1 +sa(dp899 +g4 +I1 +sa(dp900 +g4 +I1 +sa(dp901 +g4 +I1 +sa(dp902 +g4 +I1 +sa(dp903 +g4 +I1 +sa(dp904 +g4 +I1 +sa(dp905 +g4 +I1 +sa(dp906 +g4 +I1 +sa(dp907 +g4 +I1 +sa(dp908 +g4 +I1 +sa(dp909 +g4 +I1 +sa(dp910 +g4 +I1 +sa(dp911 +g4 +I1 +sa(dp912 +g4 +I1 +sa(dp913 +g4 +I1 +sa(dp914 +g4 +I1 +sa(dp915 +g4 +I1 +sa(dp916 +g4 +I1 +sa(dp917 +g4 +I1 +sa(dp918 +g4 +I1 +sa(dp919 +g4 +I1 +sa(dp920 +g4 +I1 +sa(dp921 +g4 +I1 +sa(dp922 +g4 +I1 +sa(dp923 +g4 +I1 +sa(dp924 +g4 +I1 +sa(dp925 +g4 +I1 +sa(dp926 +g4 +I1 +sa(dp927 +g4 +I1 +sa(dp928 +g4 +I1 +sa(dp929 +g4 +I1 +sa(dp930 +g4 +I1 +sa(dp931 +g4 +I1 +sa(dp932 +g4 +I1 +sa(dp933 +g4 +I1 +sa(dp934 +g4 +I1 +sa(dp935 +g4 +I1 +sa(dp936 +g4 +I1 +sa(dp937 +g4 +I1 +sa(dp938 +g4 +I1 +sa(dp939 +g4 +I1 +sa(dp940 +g4 +I1 +sa(dp941 +g4 +I1 +sa(dp942 +g4 +I1 +sa(dp943 +g4 +I1 +sa(dp944 +g4 +I1 +sa(dp945 +g4 +I1 +sa(dp946 +g4 +I1 +sa(dp947 +g4 +I1 +sa(dp948 +g4 +I1 +sa(dp949 +g4 +I1 +sa(dp950 +g4 +I1 +sa(dp951 +g4 +I1 +sa(dp952 +g4 +I1 +sa(dp953 +g4 +I1 +sa(dp954 +g4 +I1 +sa(dp955 +g4 +I1 +sa(dp956 +g4 +I1 +sa(dp957 +g4 +I1 +sa(dp958 +g4 +I1 +sa(dp959 +g4 +I1 +sa(dp960 +g4 +I1 +sa(dp961 +g4 +I1 +sa(dp962 +g4 +I1 +sa(dp963 +g4 +I1 +sa(dp964 +g4 +I1 +sa(dp965 +g4 +I1 +sa(dp966 +g4 +I1 +sa(dp967 +g4 +I1 +sa(dp968 +g4 +I1 +sa(dp969 +g4 +I1 +sa(dp970 +g4 +I1 +sa(dp971 +g4 +I1 +sa(dp972 +g4 +I1 +sa(dp973 +g4 +I1 +sa(dp974 +g4 +I1 +sa(dp975 +g4 +I1 +sa(dp976 +g4 +I1 +sa(dp977 +g4 +I1 +sa(dp978 +g4 +I1 +sa(dp979 +g4 +I1 +sa(dp980 +g4 +I1 +sa(dp981 +g4 +I1 +sa(dp982 +g4 +I1 +sa(dp983 +g4 +I1 +sa(dp984 +g4 +I1 +sa(dp985 +g4 +I1 +sa(dp986 +g4 +I1 +sa(dp987 +g4 +I1 +sa(dp988 +g4 +I1 +sa(dp989 +g4 +I1 +sa(dp990 +g4 +I1 +sa(dp991 +g4 +I1 +sa(dp992 +g4 +I1 +sa(dp993 +g4 +I1 +sa(dp994 +g4 +I1 +sa(dp995 +g4 +I1 +sa(dp996 +g4 +I1 +sa(dp997 +g4 +I1 +sa(dp998 +g4 +I1 +sa(dp999 +g4 +I1 +sa(dp1000 +g4 +I1 +sa(dp1001 +g4 +I1 +sa(dp1002 +g4 +I1 +sa(dp1003 +g4 +I1 +sa(dp1004 +g4 +I1 +sa(dp1005 +g4 +I1 +sa(dp1006 +g4 +I1 +sa(dp1007 +g4 +I1 +sa(dp1008 +g4 +I1 +sa(dp1009 +g4 +I1 +sa(dp1010 +g4 +I1 +sa(dp1011 +g4 +I1 +sa(dp1012 +g4 +I1 +sa(dp1013 +g4 +I1 +sa(dp1014 +g4 +I1 +sa(dp1015 +g4 +I1 +sa(dp1016 +g4 +I1 +sa(dp1017 +g4 +I1 +sa(dp1018 +g4 +I1 +sa(dp1019 +g4 +I1 +sa(dp1020 +g4 +I1 +sa(dp1021 +g4 +I1 +sa(dp1022 +g4 +I1 +sa(dp1023 +g4 +I1 +sa(dp1024 +g4 +I1 +sa(dp1025 +g4 +I1 +sa(dp1026 +g4 +I1 +sa(dp1027 +g4 +I1 +sa(dp1028 +g4 +I1 +sa(dp1029 +g4 +I1 +sa(dp1030 +g4 +I1 +sa(dp1031 +g4 +I1 +sa(dp1032 +g4 +I1 +sa(dp1033 +g4 +I1 +sa(dp1034 +g4 +I1 +sa(dp1035 +g4 +I1 +sa(dp1036 +g4 +I1 +sa(dp1037 +g4 +I1 +sa(dp1038 +g4 +I1 +sa(dp1039 +g4 +I1 +sa(dp1040 +g4 +I1 +sa(dp1041 +g4 +I1 +sa(dp1042 +g4 +I1 +sa(dp1043 +g4 +I1 +sa(dp1044 +g4 +I1 +sa(dp1045 +g4 +I1 +sa(dp1046 +g4 +I1 +sa(dp1047 +g4 +I1 +sa(dp1048 +g4 +I1 +sa(dp1049 +g4 +I1 +sa(dp1050 +g4 +I1 +sa(dp1051 +g4 +I1 +sa(dp1052 +g4 +I1 +sa(dp1053 +g4 +I1 +sa(dp1054 +g4 +I1 +sa(dp1055 +g4 +I1 +sa(dp1056 +g4 +I1 +sa(dp1057 +g4 +I1 +sa(dp1058 +g4 +I1 +sa(dp1059 +g4 +I1 +sa(dp1060 +g4 +I1 +sa(dp1061 +g4 +I1 +sa(dp1062 +g4 +I1 +sa(dp1063 +g4 +I1 +sa(dp1064 +g4 +I1 +sa(dp1065 +g4 +I1 +sa(dp1066 +g4 +I1 +sa(dp1067 +g4 +I1 +sa(dp1068 +g4 +I1 +sa(dp1069 +g4 +I1 +sa(dp1070 +g4 +I1 +sa(dp1071 +g4 +I1 +sa(dp1072 +g4 +I1 +sa(dp1073 +g4 +I1 +sa(dp1074 +g4 +I1 +sa(dp1075 +g4 +I1 +sa(dp1076 +g4 +I1 +sa(dp1077 +g4 +I1 +sa(dp1078 +g4 +I1 +sa(dp1079 +g4 +I1 +sa(dp1080 +g4 +I1 +sa(dp1081 +g4 +I1 +sa(dp1082 +g4 +I1 +sa(dp1083 +g4 +I1 +sa(dp1084 +g4 +I1 +sa(dp1085 +g4 +I1 +sa(dp1086 +g4 +I1 +sa(dp1087 +g4 +I1 +sa(dp1088 +g4 +I1 +sa(dp1089 +g4 +I1 +sa(dp1090 +g4 +I1 +sa(dp1091 +g4 +I1 +sa(dp1092 +g4 +I1 +sa(dp1093 +g4 +I1 +sa(dp1094 +g4 +I1 +sa(dp1095 +g4 +I1 +sa(dp1096 +g4 +I1 +sa(dp1097 +g4 +I1 +sa(dp1098 +g4 +I1 +sa(dp1099 +g4 +I1 +sa(dp1100 +g4 +I1 +sa(dp1101 +g4 +I1 +sa(dp1102 +g4 +I1 +sa(dp1103 +g4 +I1 +sa(dp1104 +g4 +I1 +sa(dp1105 +g4 +I1 +sa(dp1106 +g4 +I1 +sa(dp1107 +g4 +I1 +sa(dp1108 +g4 +I1 +sa(dp1109 +g4 +I1 +sa(dp1110 +g4 +I1 +sa(dp1111 +g4 +I1 +sa(dp1112 +g4 +I1 +sa(dp1113 +g4 +I1 +sa(dp1114 +g4 +I1 +sa(dp1115 +g4 +I1 +sa(dp1116 +g4 +I1 +sa(dp1117 +g4 +I1 +sa(dp1118 +g4 +I1 +sa(dp1119 +g4 +I1 +sa(dp1120 +g4 +I1 +sa(dp1121 +g4 +I1 +sa(dp1122 +g4 +I1 +sa(dp1123 +g4 +I1 +sa(dp1124 +g4 +I1 +sa(dp1125 +g4 +I1 +sa(dp1126 +g4 +I1 +sa(dp1127 +g4 +I1 +sa(dp1128 +g4 +I1 +sa(dp1129 +g4 +I1 +sa(dp1130 +g4 +I1 +sa(dp1131 +g4 +I1 +sa(dp1132 +g4 +I1 +sa(dp1133 +g4 +I1 +sa(dp1134 +g4 +I1 +sa(dp1135 +g4 +I1 +sa(dp1136 +g4 +I1 +sa(dp1137 +g4 +I1 +sa(dp1138 +g4 +I1 +sa(dp1139 +g4 +I1 +sa(dp1140 +g4 +I1 +sa(dp1141 +g4 +I1 +sa(dp1142 +g4 +I1 +sa(dp1143 +g4 +I1 +sa(dp1144 +g4 +I1 +sa(dp1145 +g4 +I1 +sa(dp1146 +g4 +I1 +sa(dp1147 +g4 +I1 +sa(dp1148 +g4 +I1 +sa(dp1149 +g4 +I1 +sa(dp1150 +g4 +I1 +sa(dp1151 +g4 +I1 +sa(dp1152 +g4 +I1 +sa(dp1153 +g4 +I1 +sa(dp1154 +g4 +I1 +sa(dp1155 +g4 +I1 +sa(dp1156 +g4 +I1 +sa(dp1157 +g4 +I1 +sa(dp1158 +g4 +I1 +sa(dp1159 +g4 +I1 +sa(dp1160 +g4 +I1 +sa(dp1161 +g4 +I1 +sa(dp1162 +g4 +I1 +sa(dp1163 +g4 +I1 +sa(dp1164 +g4 +I1 +sa(dp1165 +g4 +I1 +sa(dp1166 +g4 +I1 +sa(dp1167 +g4 +I1 +sa(dp1168 +g4 +I1 +sa(dp1169 +g4 +I1 +sa(dp1170 +g4 +I1 +sa(dp1171 +g4 +I1 +sa(dp1172 +g4 +I1 +sa(dp1173 +g4 +I1 +sa(dp1174 +g4 +I1 +sa(dp1175 +g4 +I1 +sa(dp1176 +g4 +I1 +sa(dp1177 +g4 +I1 +sa(dp1178 +g4 +I1 +sa(dp1179 +g4 +I1 +sa(dp1180 +g4 +I1 +sa(dp1181 +g4 +I1 +sa(dp1182 +g4 +I1 +sa(dp1183 +g4 +I1 +sa(dp1184 +g4 +I1 +sa(dp1185 +g4 +I1 +sa(dp1186 +g4 +I1 +sa(dp1187 +g4 +I1 +sa(dp1188 +g4 +I1 +sa(dp1189 +g4 +I1 +sa(dp1190 +g4 +I1 +sa(dp1191 +g4 +I1 +sa(dp1192 +g4 +I1 +sa(dp1193 +g4 +I1 +sa(dp1194 +g4 +I1 +sa(dp1195 +g4 +I1 +sa(dp1196 +g4 +I1 +sa(dp1197 +g4 +I1 +sa(dp1198 +g4 +I1 +sa(dp1199 +g4 +I1 +sa(dp1200 +g4 +I1 +sa(dp1201 +g4 +I1 +sa(dp1202 +g4 +I1 +sa(dp1203 +g4 +I1 +sa(dp1204 +g4 +I1 +sa(dp1205 +g4 +I1 +sa(dp1206 +g4 +I1 +sa(dp1207 +g4 +I1 +sa(dp1208 +g4 +I1 +sa(dp1209 +g4 +I1 +sa(dp1210 +g4 +I1 +sa(dp1211 +g4 +I1 +sa(dp1212 +g4 +I1 +sa(dp1213 +g4 +I1 +sa(dp1214 +g4 +I1 +sa(dp1215 +g4 +I1 +sa(dp1216 +g4 +I1 +sa(dp1217 +g4 +I1 +sa(dp1218 +g4 +I1 +sa(dp1219 +g4 +I1 +sa(dp1220 +g4 +I1 +sa(dp1221 +g4 +I1 +sa(dp1222 +g4 +I1 +sa(dp1223 +g4 +I1 +sa(dp1224 +g4 +I1 +sa(dp1225 +g4 +I1 +sa(dp1226 +g4 +I1 +sa(dp1227 +g4 +I1 +sa(dp1228 +g4 +I1 +sa(dp1229 +g4 +I1 +sa(dp1230 +g4 +I1 +sa(dp1231 +g4 +I1 +sa(dp1232 +g4 +I1 +sa(dp1233 +g4 +I1 +sa(dp1234 +g4 +I1 +sa(dp1235 +g4 +I1 +sa(dp1236 +g4 +I1 +sa(dp1237 +g4 +I1 +sa(dp1238 +g4 +I1 +sa(dp1239 +g4 +I1 +sa(dp1240 +g4 +I1 +sa(dp1241 +g4 +I1 +sa(dp1242 +g4 +I1 +sa(dp1243 +g4 +I1 +sa(dp1244 +g4 +I1 +sa(dp1245 +g4 +I1 +sa(dp1246 +g4 +I1 +sa(dp1247 +g4 +I1 +sa(dp1248 +g4 +I1 +sa(dp1249 +g4 +I1 +sa(dp1250 +g4 +I1 +sa(dp1251 +g4 +I1 +sa(dp1252 +g4 +I1 +sa(dp1253 +g4 +I1 +sa(dp1254 +g4 +I1 +sa(dp1255 +g4 +I1 +sa(dp1256 +g4 +I1 +sa(dp1257 +g4 +I1 +sa(dp1258 +g4 +I1 +sa(dp1259 +g4 +I1 +sa(dp1260 +g4 +I1 +sa(dp1261 +g4 +I1 +sa(dp1262 +g4 +I1 +sa(dp1263 +g4 +I1 +sa(dp1264 +g4 +I1 +sa(dp1265 +g4 +I1 +sa(dp1266 +g4 +I1 +sa(dp1267 +g4 +I1 +sa(dp1268 +g4 +I1 +sa(dp1269 +g4 +I1 +sa(dp1270 +g4 +I1 +sa(dp1271 +g4 +I1 +sa(dp1272 +g4 +I1 +sa(dp1273 +g4 +I1 +sa(dp1274 +g4 +I1 +sa(dp1275 +g4 +I1 +sa(dp1276 +g4 +I1 +sa(dp1277 +g4 +I1 +sa(dp1278 +g4 +I1 +sa(dp1279 +g4 +I1 +sa(dp1280 +g4 +I1 +sa(dp1281 +g4 +I1 +sa(dp1282 +g4 +I1 +sa(dp1283 +g4 +I1 +sa(dp1284 +g4 +I1 +sa(dp1285 +g4 +I1 +sa(dp1286 +g4 +I1 +sa(dp1287 +g4 +I1 +sa(dp1288 +g4 +I1 +sa(dp1289 +g4 +I1 +sa(dp1290 +g4 +I1 +sa(dp1291 +g4 +I1 +sa(dp1292 +g4 +I1 +sa(dp1293 +g4 +I1 +sa(dp1294 +g4 +I1 +sa(dp1295 +g4 +I1 +sa(dp1296 +g4 +I1 +sa(dp1297 +g4 +I1 +sa(dp1298 +g4 +I1 +sa(dp1299 +g4 +I1 +sa(dp1300 +g4 +I1 +sa(dp1301 +g4 +I1 +sa(dp1302 +g4 +I1 +sa(dp1303 +g4 +I1 +sa(dp1304 +g4 +I1 +sa(dp1305 +g4 +I1 +sa(dp1306 +g4 +I1 +sa(dp1307 +g4 +I1 +sa(dp1308 +g4 +I1 +sa(dp1309 +g4 +I1 +sa(dp1310 +g4 +I1 +sa(dp1311 +g4 +I1 +sa(dp1312 +g4 +I1 +sa(dp1313 +g4 +I1 +sa(dp1314 +g4 +I1 +sa(dp1315 +g4 +I1 +sa(dp1316 +g4 +I1 +sa(dp1317 +g4 +I1 +sa(dp1318 +g4 +I1 +sa(dp1319 +g4 +I1 +sa(dp1320 +g4 +I1 +sa(dp1321 +g4 +I1 +sa(dp1322 +g4 +I1 +sa(dp1323 +g4 +I1 +sa(dp1324 +g4 +I1 +sa(dp1325 +g4 +I1 +sa(dp1326 +g4 +I1 +sa(dp1327 +g4 +I1 +sa(dp1328 +g4 +I1 +sa(dp1329 +g4 +I1 +sa(dp1330 +g4 +I1 +sa(dp1331 +g4 +I1 +sa(dp1332 +g4 +I1 +sa(dp1333 +g4 +I1 +sa(dp1334 +g4 +I1 +sa(dp1335 +g4 +I1 +sa(dp1336 +g4 +I1 +sa(dp1337 +g4 +I1 +sa(dp1338 +g4 +I1 +sa(dp1339 +g4 +I1 +sa(dp1340 +g4 +I1 +sa(dp1341 +g4 +I1 +sa(dp1342 +g4 +I1 +sa(dp1343 +g4 +I1 +sa(dp1344 +g4 +I1 +sa(dp1345 +g4 +I1 +sa(dp1346 +g4 +I1 +sa(dp1347 +g4 +I1 +sa(dp1348 +g4 +I1 +sa(dp1349 +g4 +I1 +sa(dp1350 +g4 +I1 +sa(dp1351 +g4 +I1 +sa(dp1352 +g4 +I1 +sa(dp1353 +g4 +I1 +sa(dp1354 +g4 +I1 +sa(dp1355 +g4 +I1 +sa(dp1356 +g4 +I1 +sa(dp1357 +g4 +I1 +sa(dp1358 +g4 +I1 +sa(dp1359 +g4 +I1 +sa(dp1360 +g4 +I1 +sa(dp1361 +g4 +I1 +sa(dp1362 +g4 +I1 +sa(dp1363 +g4 +I1 +sa(dp1364 +g4 +I1 +sa(dp1365 +g4 +I1 +sa(dp1366 +g4 +I1 +sa(dp1367 +g4 +I1 +sa(dp1368 +g4 +I1 +sa(dp1369 +g4 +I1 +sa(dp1370 +g4 +I1 +sa(dp1371 +g4 +I1 +sa(dp1372 +g4 +I1 +sa(dp1373 +g4 +I1 +sa(dp1374 +g4 +I1 +sa(dp1375 +g4 +I1 +sa(dp1376 +g4 +I1 +sa(dp1377 +g4 +I1 +sa(dp1378 +g4 +I1 +sa(dp1379 +g4 +I1 +sa(dp1380 +g4 +I1 +sa(dp1381 +g4 +I1 +sa(dp1382 +g4 +I1 +sa(dp1383 +g4 +I1 +sa(dp1384 +g4 +I1 +sa(dp1385 +g4 +I1 +sa(dp1386 +g4 +I1 +sa(dp1387 +g4 +I1 +sa(dp1388 +g4 +I1 +sa(dp1389 +g4 +I1 +sa(dp1390 +g4 +I1 +sa(dp1391 +g4 +I1 +sa(dp1392 +g4 +I1 +sa(dp1393 +g4 +I1 +sa(dp1394 +g4 +I1 +sa(dp1395 +g4 +I1 +sa(dp1396 +g4 +I1 +sa(dp1397 +g4 +I1 +sa(dp1398 +g4 +I1 +sa(dp1399 +g4 +I1 +sa(dp1400 +g4 +I1 +sa(dp1401 +g4 +I1 +sa(dp1402 +g4 +I1 +sa(dp1403 +g4 +I1 +sa(dp1404 +g4 +I1 +sa(dp1405 +g4 +I1 +sa(dp1406 +g4 +I1 +sa(dp1407 +g4 +I1 +sa(dp1408 +g4 +I1 +sa(dp1409 +g4 +I1 +sa(dp1410 +g4 +I1 +sa(dp1411 +g4 +I1 +sa(dp1412 +g4 +I1 +sa(dp1413 +g4 +I1 +sa(dp1414 +g4 +I1 +sa(dp1415 +g4 +I1 +sa(dp1416 +g4 +I1 +sa(dp1417 +g4 +I1 +sa(dp1418 +g4 +I1 +sa(dp1419 +g4 +I1 +sa(dp1420 +g4 +I1 +sa(dp1421 +g4 +I1 +sa(dp1422 +g4 +I1 +sa(dp1423 +g4 +I1 +sa(dp1424 +g4 +I1 +sa(dp1425 +g4 +I1 +sa(dp1426 +g4 +I1 +sa(dp1427 +g4 +I1 +sa(dp1428 +g4 +I1 +sa(dp1429 +g4 +I1 +sa(dp1430 +g4 +I1 +sa(dp1431 +g4 +I1 +sa(dp1432 +g4 +I1 +sa(dp1433 +g4 +I1 +sa(dp1434 +g4 +I1 +sa(dp1435 +g4 +I1 +sa(dp1436 +g4 +I1 +sa(dp1437 +g4 +I1 +sa(dp1438 +g4 +I1 +sa(dp1439 +g4 +I1 +sa(dp1440 +g4 +I1 +sa(dp1441 +g4 +I1 +sa(dp1442 +g4 +I1 +sa(dp1443 +g4 +I1 +sa(dp1444 +g4 +I1 +sa(dp1445 +g4 +I1 +sa(dp1446 +g4 +I1 +sa(dp1447 +g4 +I1 +sa(dp1448 +g4 +I1 +sa(dp1449 +g4 +I1 +sa(dp1450 +g4 +I1 +sa(dp1451 +g4 +I1 +sa(dp1452 +g4 +I1 +sa(dp1453 +g4 +I1 +sa(dp1454 +g4 +I1 +sa(dp1455 +g4 +I1 +sa(dp1456 +g4 +I1 +sa(dp1457 +g4 +I1 +sa(dp1458 +g4 +I1 +sa(dp1459 +g4 +I1 +sa(dp1460 +g4 +I1 +sa(dp1461 +g4 +I1 +sa(dp1462 +g4 +I1 +sa(dp1463 +g4 +I1 +sa(dp1464 +g4 +I1 +sa(dp1465 +g4 +I1 +sa(dp1466 +g4 +I1 +sa(dp1467 +g4 +I1 +sa(dp1468 +g4 +I1 +sa(dp1469 +g4 +I1 +sa(dp1470 +g4 +I1 +sa(dp1471 +g4 +I1 +sa(dp1472 +g4 +I1 +sa(dp1473 +g4 +I1 +sa(dp1474 +g4 +I1 +sa(dp1475 +g4 +I1 +sa(dp1476 +g4 +I1 +sa(dp1477 +g4 +I1 +sa(dp1478 +g4 +I1 +sa(dp1479 +g4 +I1 +sa(dp1480 +g4 +I1 +sa(dp1481 +g4 +I1 +sa(dp1482 +g4 +I1 +sa(dp1483 +g4 +I1 +sa(dp1484 +g4 +I1 +sa(dp1485 +g4 +I1 +sa(dp1486 +g4 +I1 +sa(dp1487 +g4 +I1 +sa(dp1488 +g4 +I1 +sa(dp1489 +g4 +I1 +sa(dp1490 +g4 +I1 +sa(dp1491 +g4 +I1 +sa(dp1492 +g4 +I1 +sa(dp1493 +g4 +I1 +sa(dp1494 +g4 +I1 +sa(dp1495 +g4 +I1 +sa(dp1496 +g4 +I1 +sa(dp1497 +g4 +I1 +sa(dp1498 +g4 +I1 +sa(dp1499 +g4 +I1 +sa(dp1500 +g4 +I1 +sa(dp1501 +g4 +I1 +sa(dp1502 +g4 +I1 +sa(dp1503 +g4 +I1 +sa(dp1504 +g4 +I1 +sa(dp1505 +g4 +I1 +sa(dp1506 +g4 +I1 +sa(dp1507 +g4 +I1 +sa(dp1508 +g4 +I1 +sa(dp1509 +g4 +I1 +sa(dp1510 +g4 +I1 +sa(dp1511 +g4 +I1 +sa(dp1512 +g4 +I1 +sa(dp1513 +g4 +I1 +sa(dp1514 +g4 +I1 +sa(dp1515 +g4 +I1 +sa(dp1516 +g4 +I1 +sa(dp1517 +g4 +I1 +sa(dp1518 +g4 +I1 +sa(dp1519 +g4 +I1 +sa(dp1520 +g4 +I1 +sa(dp1521 +g4 +I1 +sa(dp1522 +g4 +I1 +sa(dp1523 +g4 +I1 +sa(dp1524 +g4 +I1 +sa(dp1525 +g4 +I1 +sa(dp1526 +g4 +I1 +sa(dp1527 +g4 +I1 +sa(dp1528 +g4 +I1 +sa(dp1529 +g4 +I1 +sa(dp1530 +g4 +I1 +sa(dp1531 +g4 +I1 +sa(dp1532 +g4 +I1 +sa(dp1533 +g4 +I1 +sa(dp1534 +g4 +I1 +sa(dp1535 +g4 +I1 +sa(dp1536 +g4 +I1 +sa(dp1537 +g4 +I1 +sa(dp1538 +g4 +I1 +sa(dp1539 +g4 +I1 +sa(dp1540 +g4 +I1 +sa(dp1541 +g4 +I1 +sa(dp1542 +g4 +I1 +sa(dp1543 +g4 +I1 +sa(dp1544 +g4 +I1 +sa(dp1545 +g4 +I1 +sa(dp1546 +g4 +I1 +sa(dp1547 +g4 +I1 +sa(dp1548 +g4 +I1 +sa(dp1549 +g4 +I1 +sa(dp1550 +g4 +I1 +sa(dp1551 +g4 +I1 +sa(dp1552 +g4 +I1 +sa(dp1553 +g4 +I1 +sa(dp1554 +g4 +I1 +sa(dp1555 +g4 +I1 +sa(dp1556 +g4 +I1 +sa(dp1557 +g4 +I1 +sa(dp1558 +g4 +I1 +sa(dp1559 +g4 +I1 +sa(dp1560 +g4 +I1 +sa(dp1561 +g4 +I1 +sa(dp1562 +g4 +I1 +sa(dp1563 +g4 +I1 +sa(dp1564 +g4 +I1 +sa(dp1565 +g4 +I1 +sa(dp1566 +g4 +I1 +sa(dp1567 +g4 +I1 +sa(dp1568 +g4 +I1 +sa(dp1569 +g4 +I1 +sa(dp1570 +g4 +I1 +sa(dp1571 +g4 +I1 +sa(dp1572 +g4 +I1 +sa(dp1573 +g4 +I1 +sa(dp1574 +g4 +I1 +sa(dp1575 +g4 +I1 +sa(dp1576 +g4 +I1 +sa(dp1577 +g4 +I1 +sa(dp1578 +g4 +I1 +sa(dp1579 +g4 +I1 +sa(dp1580 +g4 +I1 +sa(dp1581 +g4 +I1 +sa(dp1582 +g4 +I1 +sa(dp1583 +g4 +I1 +sa(dp1584 +g4 +I1 +sa(dp1585 +g4 +I1 +sa(dp1586 +g4 +I1 +sa(dp1587 +g4 +I1 +sa(dp1588 +g4 +I1 +sa(dp1589 +g4 +I1 +sa(dp1590 +g4 +I1 +sa(dp1591 +g4 +I1 +sa(dp1592 +g4 +I1 +sa(dp1593 +g4 +I1 +sa(dp1594 +g4 +I1 +sa(dp1595 +g4 +I1 +sa(dp1596 +g4 +I1 +sa(dp1597 +g4 +I1 +sa(dp1598 +g4 +I1 +sa(dp1599 +g4 +I1 +sa(dp1600 +g4 +I1 +sa(dp1601 +g4 +I1 +sa(dp1602 +g4 +I1 +sa(dp1603 +g4 +I1 +sa(dp1604 +g4 +I1 +sa(dp1605 +g4 +I1 +sa(dp1606 +g4 +I1 +sa(dp1607 +g4 +I1 +sa(dp1608 +g4 +I1 +sa(dp1609 +g4 +I1 +sa(dp1610 +g4 +I1 +sa(dp1611 +g4 +I1 +sa(dp1612 +g4 +I1 +sa(dp1613 +g4 +I1 +sa(dp1614 +g4 +I1 +sa(dp1615 +g4 +I1 +sa(dp1616 +g4 +I1 +sa(dp1617 +g4 +I1 +sa(dp1618 +g4 +I1 +sa(dp1619 +g4 +I1 +sa(dp1620 +g4 +I1 +sa(dp1621 +g4 +I1 +sa(dp1622 +g4 +I1 +sa(dp1623 +g4 +I1 +sa(dp1624 +g4 +I1 +sa(dp1625 +g4 +I1 +sa(dp1626 +g4 +I1 +sa(dp1627 +g4 +I1 +sa(dp1628 +g4 +I1 +sa(dp1629 +g4 +I1 +sa(dp1630 +g4 +I1 +sa(dp1631 +g4 +I1 +sa(dp1632 +g4 +I1 +sa(dp1633 +g4 +I1 +sa(dp1634 +g4 +I0 +sa(dp1635 +g4 +I0 +sa(dp1636 +g4 +I0 +sa(dp1637 +g4 +I0 +sa(dp1638 +g4 +I0 +sa(dp1639 +g4 +I0 +sa(dp1640 +g4 +I0 +sa(dp1641 +g4 +I0 +sa(dp1642 +g4 +I0 +sa(dp1643 +g4 +I0 +sa(dp1644 +g4 +I0 +sa(dp1645 +g4 +I0 +sa(dp1646 +g4 +I0 +sa(dp1647 +g4 +I0 +sa(dp1648 +g4 +I0 +sa(dp1649 +g4 +I0 +sa(dp1650 +g4 +I0 +sa(dp1651 +g4 +I0 +sa(dp1652 +g4 +I0 +sa(dp1653 +g4 +I0 +sa(dp1654 +g4 +I0 +sa(dp1655 +g4 +I0 +sa(dp1656 +g4 +I0 +sa(dp1657 +g4 +I0 +sa(dp1658 +g4 +I0 +sa(dp1659 +g4 +I0 +sa(dp1660 +g4 +I0 +sa(dp1661 +g4 +I0 +sa(dp1662 +g4 +I0 +sa(dp1663 +g4 +I0 +sa(dp1664 +g4 +I0 +sa(dp1665 +g4 +I0 +sa(dp1666 +g4 +I0 +sa(dp1667 +g4 +I0 +sa(dp1668 +g4 +I0 +sa(dp1669 +g4 +I0 +sa(dp1670 +g4 +I0 +sa(dp1671 +g4 +I0 +sa(dp1672 +g4 +I0 +sa(dp1673 +g4 +I0 +sa(dp1674 +g4 +I0 +sa(dp1675 +g4 +I0 +sa(dp1676 +g4 +I0 +sa(dp1677 +g4 +I0 +sa(dp1678 +g4 +I0 +sa(dp1679 +g4 +I0 +sa(dp1680 +g4 +I0 +sa(dp1681 +g4 +I0 +sa(dp1682 +g4 +I0 +sa(dp1683 +g4 +I0 +sa(dp1684 +g4 +I0 +sa(dp1685 +g4 +I0 +sa(dp1686 +g4 +I0 +sa(dp1687 +g4 +I0 +sa(dp1688 +g4 +I0 +sa(dp1689 +g4 +I0 +sa(dp1690 +g4 +I0 +sa(dp1691 +g4 +I0 +sa(dp1692 +g4 +I0 +sa(dp1693 +g4 +I0 +sa(dp1694 +g4 +I0 +sa(dp1695 +g4 +I0 +sa(dp1696 +g4 +I0 +sa(dp1697 +g4 +I0 +sa(dp1698 +g4 +I0 +sa(dp1699 +g4 +I0 +sa(dp1700 +g4 +I0 +sa(dp1701 +g4 +I0 +sa(dp1702 +g4 +I0 +sa(dp1703 +g4 +I0 +sa(dp1704 +g4 +I0 +sa(dp1705 +g4 +I0 +sa(dp1706 +g4 +I0 +sa(dp1707 +g4 +I0 +sa(dp1708 +g4 +I0 +sa(dp1709 +g4 +I0 +sa(dp1710 +g4 +I0 +sa(dp1711 +g4 +I0 +sa(dp1712 +g4 +I0 +sa(dp1713 +g4 +I0 +sa(dp1714 +g4 +I0 +sa(dp1715 +g4 +I0 +sa(dp1716 +g4 +I0 +sa(dp1717 +g4 +I0 +sa(dp1718 +g4 +I0 +sa(dp1719 +g4 +I0 +sa(dp1720 +g4 +I0 +sa(dp1721 +g4 +I0 +sa(dp1722 +g4 +I0 +sa(dp1723 +g4 +I0 +sa(dp1724 +g4 +I0 +sa(dp1725 +g4 +I0 +sa(dp1726 +g4 +I0 +sa(dp1727 +g4 +I0 +sa(dp1728 +g4 +I0 +sa(dp1729 +g4 +I0 +sa(dp1730 +g4 +I0 +sa(dp1731 +g4 +I0 +sa(dp1732 +g4 +I0 +sa(dp1733 +g4 +I0 +sa(dp1734 +g4 +I0 +sa(dp1735 +g4 +I0 +sa(dp1736 +g4 +I0 +sa(dp1737 +g4 +I0 +sa(dp1738 +g4 +I0 +sa(dp1739 +g4 +I0 +sa(dp1740 +g4 +I0 +sa(dp1741 +g4 +I0 +sa(dp1742 +g4 +I0 +sa(dp1743 +g4 +I0 +sa(dp1744 +g4 +I0 +sa(dp1745 +g4 +I0 +sa(dp1746 +g4 +I0 +sa(dp1747 +g4 +I0 +sa(dp1748 +g4 +I0 +sa(dp1749 +g4 +I0 +sa(dp1750 +g4 +I0 +sa(dp1751 +g4 +I0 +sa(dp1752 +g4 +I0 +sa(dp1753 +g4 +I0 +sa(dp1754 +g4 +I0 +sa(dp1755 +g4 +I0 +sa(dp1756 +g4 +I0 +sa(dp1757 +g4 +I0 +sa(dp1758 +g4 +I0 +sa(dp1759 +g4 +I0 +sa(dp1760 +g4 +I0 +sa(dp1761 +g4 +I0 +sa(dp1762 +g4 +I0 +sa(dp1763 +g4 +I0 +sa(dp1764 +g4 +I0 +sa(dp1765 +g4 +I0 +sa(dp1766 +g4 +I0 +sa(dp1767 +g4 +I0 +sa(dp1768 +g4 +I0 +sa(dp1769 +g4 +I0 +sa(dp1770 +g4 +I0 +sa(dp1771 +g4 +I0 +sa(dp1772 +g4 +I0 +sa(dp1773 +g4 +I0 +sa(dp1774 +g4 +I0 +sa(dp1775 +g4 +I0 +sa(dp1776 +g4 +I0 +sa(dp1777 +g4 +I0 +sa(dp1778 +g4 +I0 +sa(dp1779 +g4 +I0 +sa(dp1780 +g4 +I0 +sa(dp1781 +g4 +I0 +sa(dp1782 +g4 +I0 +sa(dp1783 +g4 +I0 +sa(dp1784 +g4 +I0 +sa(dp1785 +g4 +I0 +sa(dp1786 +g4 +I0 +sa(dp1787 +g4 +I0 +sa(dp1788 +g4 +I0 +sa(dp1789 +g4 +I0 +sa(dp1790 +g4 +I0 +sa(dp1791 +g4 +I0 +sa(dp1792 +g4 +I0 +sa(dp1793 +g4 +I0 +sa(dp1794 +g4 +I0 +sa(dp1795 +g4 +I0 +sa(dp1796 +g4 +I0 +sa(dp1797 +g4 +I0 +sa(dp1798 +g4 +I0 +sa(dp1799 +g4 +I0 +sa(dp1800 +g4 +I0 +sa(dp1801 +g4 +I0 +sa(dp1802 +g4 +I0 +sa(dp1803 +g4 +I0 +sa(dp1804 +g4 +I0 +sa(dp1805 +g4 +I0 +sa(dp1806 +g4 +I0 +sa(dp1807 +g4 +I0 +sa(dp1808 +g4 +I0 +sa(dp1809 +g4 +I0 +sa(dp1810 +g4 +I0 +sa(dp1811 +g4 +I0 +sa(dp1812 +g4 +I0 +sa(dp1813 +g4 +I0 +sa(dp1814 +g4 +I0 +sa(dp1815 +g4 +I0 +sa(dp1816 +g4 +I0 +sa(dp1817 +g4 +I0 +sa(dp1818 +g4 +I0 +sa(dp1819 +g4 +I0 +sa(dp1820 +g4 +I0 +sa(dp1821 +g4 +I0 +sa(dp1822 +g4 +I0 +sa(dp1823 +g4 +I0 +sa(dp1824 +g4 +I0 +sa(dp1825 +g4 +I0 +sa(dp1826 +g4 +I0 +sa(dp1827 +g4 +I0 +sa(dp1828 +g4 +I0 +sa(dp1829 +g4 +I0 +sa(dp1830 +g4 +I0 +sa(dp1831 +g4 +I0 +sa(dp1832 +g4 +I0 +sa(dp1833 +g4 +I0 +sa(dp1834 +g4 +I0 +sa(dp1835 +g4 +I0 +sa(dp1836 +g4 +I0 +sa(dp1837 +g4 +I0 +sa(dp1838 +g4 +I0 +sa(dp1839 +g4 +I0 +sa(dp1840 +g4 +I0 +sa(dp1841 +g4 +I0 +sa(dp1842 +g4 +I0 +sa(dp1843 +g4 +I0 +sa(dp1844 +g4 +I0 +sa(dp1845 +g4 +I0 +sa(dp1846 +g4 +I0 +sa(dp1847 +g4 +I0 +sa(dp1848 +g4 +I0 +sa(dp1849 +g4 +I0 +sa(dp1850 +g4 +I0 +sa(dp1851 +g4 +I0 +sa(dp1852 +g4 +I0 +sa(dp1853 +g4 +I0 +sa(dp1854 +g4 +I0 +sa(dp1855 +g4 +I0 +sa(dp1856 +g4 +I0 +sa(dp1857 +g4 +I0 +sa(dp1858 +g4 +I0 +sa(dp1859 +g4 +I0 +sa(dp1860 +g4 +I0 +sa(dp1861 +g4 +I0 +sa(dp1862 +g4 +I0 +sa(dp1863 +g4 +I0 +sa(dp1864 +g4 +I0 +sa(dp1865 +g4 +I0 +sa(dp1866 +g4 +I0 +sa(dp1867 +g4 +I0 +sa(dp1868 +g4 +I0 +sa(dp1869 +g4 +I0 +sa(dp1870 +g4 +I0 +sa(dp1871 +g4 +I0 +sa(dp1872 +g4 +I0 +sa(dp1873 +g4 +I0 +sa(dp1874 +g4 +I0 +sa(dp1875 +g4 +I0 +sa(dp1876 +g4 +I0 +sa(dp1877 +g4 +I0 +sa(dp1878 +g4 +I0 +sa(dp1879 +g4 +I0 +sa(dp1880 +g4 +I0 +sa(dp1881 +g4 +I0 +sa(dp1882 +g4 +I0 +sa(dp1883 +g4 +I0 +sa(dp1884 +g4 +I0 +sa(dp1885 +g4 +I0 +sa(dp1886 +g4 +I0 +sa(dp1887 +g4 +I0 +sa(dp1888 +g4 +I0 +sa(dp1889 +g4 +I0 +sa(dp1890 +g4 +I0 +sa(dp1891 +g4 +I0 +sa(dp1892 +g4 +I0 +sa(dp1893 +g4 +I0 +sa(dp1894 +g4 +I0 +sa(dp1895 +g4 +I0 +sa(dp1896 +g4 +I0 +sa(dp1897 +g4 +I0 +sa(dp1898 +g4 +I0 +sa(dp1899 +g4 +I0 +sa(dp1900 +g4 +I0 +sa(dp1901 +g4 +I0 +sa(dp1902 +g4 +I0 +sa(dp1903 +g4 +I0 +sa(dp1904 +g4 +I0 +sa(dp1905 +g4 +I0 +sa(dp1906 +g4 +I0 +sa(dp1907 +g4 +I0 +sa(dp1908 +g4 +I0 +sa(dp1909 +g4 +I0 +sa(dp1910 +g4 +I0 +sa(dp1911 +g4 +I0 +sa(dp1912 +g4 +I0 +sa(dp1913 +g4 +I0 +sa(dp1914 +g4 +I0 +sa(dp1915 +g4 +I0 +sa(dp1916 +g4 +I0 +sa(dp1917 +g4 +I0 +sa(dp1918 +g4 +I0 +sa(dp1919 +g4 +I0 +sa(dp1920 +g4 +I0 +sa(dp1921 +g4 +I0 +sa(dp1922 +g4 +I0 +sa(dp1923 +g4 +I0 +sa(dp1924 +g4 +I0 +sa(dp1925 +g4 +I0 +sa(dp1926 +g4 +I0 +sa(dp1927 +g4 +I0 +sa(dp1928 +g4 +I0 +sa(dp1929 +g4 +I0 +sa(dp1930 +g4 +I0 +sa(dp1931 +g4 +I0 +sa(dp1932 +g4 +I0 +sa(dp1933 +g4 +I0 +sa(dp1934 +g4 +I0 +sa(dp1935 +g4 +I0 +sa(dp1936 +g4 +I0 +sa(dp1937 +g4 +I0 +sa(dp1938 +g4 +I0 +sa(dp1939 +g4 +I0 +sa(dp1940 +g4 +I0 +sa(dp1941 +g4 +I0 +sa(dp1942 +g4 +I0 +sa(dp1943 +g4 +I0 +sa(dp1944 +g4 +I0 +sa(dp1945 +g4 +I0 +sa(dp1946 +g4 +I0 +sa(dp1947 +g4 +I0 +sa(dp1948 +g4 +I0 +sa(dp1949 +g4 +I0 +sa(dp1950 +g4 +I0 +sa(dp1951 +g4 +I0 +sa(dp1952 +g4 +I0 +sa(dp1953 +g4 +I0 +sa(dp1954 +g4 +I0 +sa(dp1955 +g4 +I0 +sa(dp1956 +g4 +I0 +sa(dp1957 +g4 +I0 +sa(dp1958 +g4 +I0 +sa(dp1959 +g4 +I0 +sa(dp1960 +g4 +I0 +sa(dp1961 +g4 +I0 +sa(dp1962 +g4 +I0 +sa(dp1963 +g4 +I0 +sa(dp1964 +g4 +I0 +sa(dp1965 +g4 +I0 +sa(dp1966 +g4 +I0 +sa(dp1967 +g4 +I0 +sa(dp1968 +g4 +I0 +sa(dp1969 +g4 +I0 +sa(dp1970 +g4 +I0 +sa(dp1971 +g4 +I0 +sa(dp1972 +g4 +I0 +sa(dp1973 +g4 +I0 +sa(dp1974 +g4 +I0 +sa(dp1975 +g4 +I0 +sa(dp1976 +g4 +I0 +sa(dp1977 +g4 +I0 +sa(dp1978 +g4 +I0 +sa(dp1979 +g4 +I0 +sa(dp1980 +g4 +I0 +sa(dp1981 +g4 +I0 +sa(dp1982 +g4 +I0 +sa(dp1983 +g4 +I0 +sa(dp1984 +g4 +I0 +sa(dp1985 +g4 +I0 +sa(dp1986 +g4 +I0 +sa(dp1987 +g4 +I0 +sa(dp1988 +g4 +I0 +sa(dp1989 +g4 +I0 +sa(dp1990 +g4 +I0 +sa(dp1991 +g4 +I0 +sa(dp1992 +g4 +I0 +sa(dp1993 +g4 +I0 +sa(dp1994 +g4 +I0 +sa(dp1995 +g4 +I0 +sa(dp1996 +g4 +I0 +sa(dp1997 +g4 +I0 +sa(dp1998 +g4 +I0 +sa(dp1999 +g4 +I0 +sa(dp2000 +g4 +I0 +sa(dp2001 +g4 +I0 +sa(dp2002 +g4 +I0 +sa(dp2003 +g4 +I0 +sa(dp2004 +g4 +I0 +sa(dp2005 +g4 +I0 +sa(dp2006 +g4 +I0 +sa(dp2007 +g4 +I0 +sa(dp2008 +g4 +I0 +sa(dp2009 +g4 +I0 +sa(dp2010 +g4 +I0 +sa(dp2011 +g4 +I0 +sa(dp2012 +g4 +I0 +sa(dp2013 +g4 +I0 +sa(dp2014 +g4 +I0 +sa(dp2015 +g4 +I0 +sa(dp2016 +g4 +I0 +sa(dp2017 +g4 +I0 +sa(dp2018 +g4 +I0 +sa(dp2019 +g4 +I0 +sa(dp2020 +g4 +I0 +sa(dp2021 +g4 +I0 +sa(dp2022 +g4 +I0 +sa(dp2023 +g4 +I0 +sa(dp2024 +g4 +I0 +sa(dp2025 +g4 +I0 +sa(dp2026 +g4 +I0 +sa(dp2027 +g4 +I0 +sa(dp2028 +g4 +I0 +sa(dp2029 +g4 +I0 +sa(dp2030 +g4 +I0 +sa(dp2031 +g4 +I0 +sa(dp2032 +g4 +I0 +sa(dp2033 +g4 +I0 +sa(dp2034 +g4 +I0 +sa(dp2035 +g4 +I0 +sa(dp2036 +g4 +I0 +sa(dp2037 +g4 +I0 +sa(dp2038 +g4 +I0 +sa(dp2039 +g4 +I0 +sa(dp2040 +g4 +I0 +sa(dp2041 +g4 +I0 +sa(dp2042 +g4 +I0 +sa(dp2043 +g4 +I0 +sa(dp2044 +g4 +I0 +sa(dp2045 +g4 +I0 +sa(dp2046 +g4 +I0 +sa(dp2047 +g4 +I0 +sa(dp2048 +g4 +I0 +sa(dp2049 +g4 +I0 +sa(dp2050 +g4 +I0 +sa(dp2051 +g4 +I0 +sa(dp2052 +g4 +I0 +sa(dp2053 +g4 +I0 +sa(dp2054 +g4 +I0 +sa(dp2055 +g4 +I0 +sa(dp2056 +g4 +I0 +sa(dp2057 +g4 +I0 +sa(dp2058 +g4 +I0 +sa(dp2059 +g4 +I0 +sa(dp2060 +g4 +I0 +sa(dp2061 +g4 +I0 +sa(dp2062 +g4 +I0 +sa(dp2063 +g4 +I0 +sa(dp2064 +g4 +I0 +sa(dp2065 +g4 +I0 +sa(dp2066 +g4 +I0 +sa(dp2067 +g4 +I0 +sa(dp2068 +g4 +I0 +sa(dp2069 +g4 +I0 +sa(dp2070 +g4 +I0 +sa(dp2071 +g4 +I0 +sa(dp2072 +g4 +I0 +sa(dp2073 +g4 +I0 +sa(dp2074 +g4 +I0 +sa(dp2075 +g4 +I0 +sa(dp2076 +g4 +I0 +sa(dp2077 +g4 +I0 +sa(dp2078 +g4 +I0 +sa(dp2079 +g4 +I0 +sa(dp2080 +g4 +I0 +sa(dp2081 +g4 +I0 +sa(dp2082 +g4 +I0 +sa(dp2083 +g4 +I0 +sa(dp2084 +g4 +I0 +sa(dp2085 +g4 +I0 +sa(dp2086 +g4 +I0 +sa(dp2087 +g4 +I0 +sa(dp2088 +g4 +I0 +sa(dp2089 +g4 +I0 +sa(dp2090 +g4 +I0 +sa(dp2091 +g4 +I0 +sa(dp2092 +g4 +I0 +sa(dp2093 +g4 +I0 +sa(dp2094 +g4 +I0 +sa(dp2095 +g4 +I0 +sa(dp2096 +g4 +I0 +sa(dp2097 +g4 +I0 +sa(dp2098 +g4 +I0 +sa(dp2099 +g4 +I0 +sa(dp2100 +g4 +I0 +sa(dp2101 +g4 +I0 +sa(dp2102 +g4 +I0 +sa(dp2103 +g4 +I0 +sa(dp2104 +g4 +I0 +sa(dp2105 +g4 +I0 +sa(dp2106 +g4 +I0 +sa(dp2107 +g4 +I0 +sa(dp2108 +g4 +I0 +sa(dp2109 +g4 +I0 +sa(dp2110 +g4 +I0 +sa(dp2111 +g4 +I0 +sa(dp2112 +g4 +I0 +sa(dp2113 +g4 +I0 +sa(dp2114 +g4 +I0 +sa(dp2115 +g4 +I0 +sa(dp2116 +g4 +I0 +sa(dp2117 +g4 +I0 +sa(dp2118 +g4 +I0 +sa(dp2119 +g4 +I0 +sa(dp2120 +g4 +I0 +sa(dp2121 +g4 +I0 +sa(dp2122 +g4 +I0 +sa(dp2123 +g4 +I0 +sa(dp2124 +g4 +I0 +sa(dp2125 +g4 +I0 +sa(dp2126 +g4 +I0 +sa(dp2127 +g4 +I0 +sa(dp2128 +g4 +I0 +sa(dp2129 +g4 +I0 +sa(dp2130 +g4 +I0 +sa(dp2131 +g4 +I0 +sa(dp2132 +g4 +I0 +sa(dp2133 +g4 +I0 +sa(dp2134 +g4 +I0 +sa(dp2135 +g4 +I0 +sa(dp2136 +g4 +I0 +sa(dp2137 +g4 +I0 +sa(dp2138 +g4 +I0 +sa(dp2139 +g4 +I0 +sa(dp2140 +g4 +I0 +sa(dp2141 +g4 +I0 +sa(dp2142 +g4 +I0 +sa(dp2143 +g4 +I0 +sa(dp2144 +g4 +I0 +sa(dp2145 +g4 +I0 +sa(dp2146 +g4 +I0 +sa(dp2147 +g4 +I0 +sa(dp2148 +g4 +I0 +sa(dp2149 +g4 +I0 +sa(dp2150 +g4 +I0 +sa(dp2151 +g4 +I0 +sa(dp2152 +g4 +I0 +sa(dp2153 +g4 +I0 +sa(dp2154 +g4 +I0 +sa(dp2155 +g4 +I0 +sa(dp2156 +g4 +I0 +sa(dp2157 +g4 +I0 +sa(dp2158 +g4 +I0 +sa(dp2159 +g4 +I0 +sa(dp2160 +g4 +I0 +sa(dp2161 +g4 +I0 +sa(dp2162 +g4 +I0 +sa(dp2163 +g4 +I0 +sa(dp2164 +g4 +I0 +sa(dp2165 +g4 +I0 +sa(dp2166 +g4 +I0 +sa(dp2167 +g4 +I0 +sa(dp2168 +g4 +I0 +sa(dp2169 +g4 +I0 +sa(dp2170 +g4 +I0 +sa(dp2171 +g4 +I0 +sa(dp2172 +g4 +I0 +sa(dp2173 +g4 +I0 +sa(dp2174 +g4 +I0 +sa(dp2175 +g4 +I0 +sa(dp2176 +g4 +I0 +sa(dp2177 +g4 +I0 +sa(dp2178 +g4 +I0 +sa(dp2179 +g4 +I0 +sa(dp2180 +g4 +I0 +sa(dp2181 +g4 +I0 +sa(dp2182 +g4 +I0 +sa(dp2183 +g4 +I0 +sa(dp2184 +g4 +I0 +sa(dp2185 +g4 +I0 +sa(dp2186 +g4 +I0 +sa(dp2187 +g4 +I0 +sa(dp2188 +g4 +I0 +sa(dp2189 +g4 +I0 +sa(dp2190 +g4 +I0 +sa(dp2191 +g4 +I0 +sa(dp2192 +g4 +I0 +sa(dp2193 +g4 +I0 +sa(dp2194 +g4 +I0 +sa(dp2195 +g4 +I0 +sa(dp2196 +g4 +I0 +sa(dp2197 +g4 +I0 +sa(dp2198 +g4 +I0 +sa(dp2199 +g4 +I0 +sa(dp2200 +g4 +I0 +sa(dp2201 +g4 +I0 +sa(dp2202 +g4 +I0 +sa(dp2203 +g4 +I0 +sa(dp2204 +g4 +I0 +sa(dp2205 +g4 +I0 +sa(dp2206 +g4 +I0 +sa(dp2207 +g4 +I0 +sa(dp2208 +g4 +I0 +sa(dp2209 +g4 +I0 +sa(dp2210 +g4 +I0 +sa(dp2211 +g4 +I0 +sa(dp2212 +g4 +I0 +sa(dp2213 +g4 +I0 +sa(dp2214 +g4 +I0 +sa(dp2215 +g4 +I0 +sa(dp2216 +g4 +I0 +sa(dp2217 +g4 +I0 +sa(dp2218 +g4 +I0 +sa(dp2219 +g4 +I0 +sa(dp2220 +g4 +I0 +sa(dp2221 +g4 +I0 +sa(dp2222 +g4 +I0 +sa(dp2223 +g4 +I0 +sa(dp2224 +g4 +I0 +sa(dp2225 +g4 +I0 +sa(dp2226 +g4 +I0 +sa(dp2227 +g4 +I0 +sa(dp2228 +g4 +I0 +sa(dp2229 +g4 +I0 +sa(dp2230 +g4 +I0 +sa(dp2231 +g4 +I0 +sa(dp2232 +g4 +I0 +sa(dp2233 +g4 +I0 +sa(dp2234 +g4 +I0 +sa(dp2235 +g4 +I0 +sa(dp2236 +g4 +I0 +sa(dp2237 +g4 +I0 +sa(dp2238 +g4 +I0 +sa(dp2239 +g4 +I0 +sa(dp2240 +g4 +I0 +sa(dp2241 +g4 +I0 +sa(dp2242 +g4 +I0 +sa(dp2243 +g4 +I0 +sa(dp2244 +g4 +I0 +sa(dp2245 +g4 +I0 +sa(dp2246 +g4 +I0 +sa(dp2247 +g4 +I0 +sa(dp2248 +g4 +I0 +sa(dp2249 +g4 +I0 +sa(dp2250 +g4 +I0 +sa(dp2251 +g4 +I0 +sa(dp2252 +g4 +I0 +sa(dp2253 +g4 +I0 +sa(dp2254 +g4 +I0 +sa(dp2255 +g4 +I0 +sa(dp2256 +g4 +I0 +sa(dp2257 +g4 +I0 +sa(dp2258 +g4 +I0 +sa(dp2259 +g4 +I0 +sa(dp2260 +g4 +I0 +sa(dp2261 +g4 +I0 +sa(dp2262 +g4 +I0 +sa(dp2263 +g4 +I0 +sa(dp2264 +g4 +I0 +sa(dp2265 +g4 +I0 +sa(dp2266 +g4 +I0 +sa(dp2267 +g4 +I0 +sa(dp2268 +g4 +I0 +sa(dp2269 +g4 +I0 +sa(dp2270 +g4 +I0 +sa(dp2271 +g4 +I0 +sa(dp2272 +g4 +I0 +sa(dp2273 +g4 +I0 +sa(dp2274 +g4 +I0 +sa(dp2275 +g4 +I0 +sa(dp2276 +g4 +I0 +sa(dp2277 +g4 +I0 +sa(dp2278 +g4 +I0 +sa(dp2279 +g4 +I0 +sa(dp2280 +g4 +I0 +sa(dp2281 +g4 +I0 +sa(dp2282 +g4 +I0 +sa(dp2283 +g4 +I0 +sa(dp2284 +g4 +I0 +sa(dp2285 +g4 +I0 +sa(dp2286 +g4 +I0 +sa(dp2287 +g4 +I0 +sa(dp2288 +g4 +I0 +sa(dp2289 +g4 +I0 +sa(dp2290 +g4 +I0 +sa(dp2291 +g4 +I0 +sa(dp2292 +g4 +I0 +sa(dp2293 +g4 +I0 +sa(dp2294 +g4 +I0 +sa(dp2295 +g4 +I0 +sa(dp2296 +g4 +I0 +sa(dp2297 +g4 +I0 +sa(dp2298 +g4 +I0 +sa(dp2299 +g4 +I0 +sa(dp2300 +g4 +I0 +sa(dp2301 +g4 +I0 +sa(dp2302 +g4 +I0 +sa(dp2303 +g4 +I0 +sa(dp2304 +g4 +I0 +sa(dp2305 +g4 +I0 +sa(dp2306 +g4 +I0 +sa(dp2307 +g4 +I0 +sa(dp2308 +g4 +I0 +sa(dp2309 +g4 +I0 +sa(dp2310 +g4 +I0 +sa(dp2311 +g4 +I0 +sa(dp2312 +g4 +I0 +sa(dp2313 +g4 +I0 +sa(dp2314 +g4 +I0 +sa(dp2315 +g4 +I0 +sa(dp2316 +g4 +I0 +sa(dp2317 +g4 +I0 +sa(dp2318 +g4 +I0 +sa(dp2319 +g4 +I0 +sa(dp2320 +g4 +I0 +sa(dp2321 +g4 +I0 +sa(dp2322 +g4 +I0 +sa(dp2323 +g4 +I0 +sa(dp2324 +g4 +I0 +sa(dp2325 +g4 +I0 +sa(dp2326 +g4 +I0 +sa(dp2327 +g4 +I0 +sa(dp2328 +g4 +I0 +sa(dp2329 +g4 +I0 +sa(dp2330 +g4 +I0 +sa(dp2331 +g4 +I0 +sa(dp2332 +g4 +I0 +sa(dp2333 +g4 +I0 +sa(dp2334 +g4 +I0 +sa(dp2335 +g4 +I0 +sa(dp2336 +g4 +I0 +sa(dp2337 +g4 +I0 +sa(dp2338 +g4 +I0 +sa(dp2339 +g4 +I0 +sa(dp2340 +g4 +I0 +sa(dp2341 +g4 +I0 +sa(dp2342 +g4 +I0 +sa(dp2343 +g4 +I0 +sa(dp2344 +g4 +I0 +sa(dp2345 +g4 +I0 +sa(dp2346 +g4 +I0 +sa(dp2347 +g4 +I0 +sa(dp2348 +g4 +I0 +sa(dp2349 +g4 +I0 +sa(dp2350 +g4 +I0 +sa(dp2351 +g4 +I0 +sa(dp2352 +g4 +I0 +sa(dp2353 +g4 +I0 +sa(dp2354 +g4 +I0 +sa(dp2355 +g4 +I0 +sa(dp2356 +g4 +I0 +sa(dp2357 +g4 +I0 +sa(dp2358 +g4 +I0 +sa(dp2359 +g4 +I0 +sa(dp2360 +g4 +I0 +sa(dp2361 +g4 +I0 +sa(dp2362 +g4 +I0 +sa(dp2363 +g4 +I0 +sa(dp2364 +g4 +I0 +sa(dp2365 +g4 +I0 +sa(dp2366 +g4 +I0 +sa(dp2367 +g4 +I0 +sa(dp2368 +g4 +I0 +sa(dp2369 +g4 +I0 +sa(dp2370 +g4 +I0 +sa(dp2371 +g4 +I0 +sa(dp2372 +g4 +I0 +sa(dp2373 +g4 +I0 +sa(dp2374 +g4 +I0 +sa(dp2375 +g4 +I0 +sa(dp2376 +g4 +I0 +sa(dp2377 +g4 +I0 +sa(dp2378 +g4 +I0 +sa(dp2379 +g4 +I0 +sa(dp2380 +g4 +I0 +sa(dp2381 +g4 +I0 +sa(dp2382 +g4 +I0 +sa(dp2383 +g4 +I0 +sa(dp2384 +g4 +I0 +sa(dp2385 +g4 +I0 +sa(dp2386 +g4 +I0 +sa(dp2387 +g4 +I0 +sa(dp2388 +g4 +I0 +sa(dp2389 +g4 +I0 +sa(dp2390 +g4 +I0 +sa(dp2391 +g4 +I0 +sa(dp2392 +g4 +I0 +sa(dp2393 +g4 +I0 +sa(dp2394 +g4 +I0 +sa(dp2395 +g4 +I0 +sa(dp2396 +g4 +I0 +sa(dp2397 +g4 +I0 +sa(dp2398 +g4 +I0 +sa(dp2399 +g4 +I0 +sa(dp2400 +g4 +I0 +sa(dp2401 +g4 +I0 +sa(dp2402 +g4 +I0 +sa(dp2403 +g4 +I0 +sa(dp2404 +g4 +I0 +sa(dp2405 +g4 +I0 +sa(dp2406 +g4 +I0 +sa(dp2407 +g4 +I0 +sa(dp2408 +g4 +I0 +sa(dp2409 +g4 +I0 +sa(dp2410 +g4 +I0 +sa(dp2411 +g4 +I0 +sa(dp2412 +g4 +I0 +sa(dp2413 +g4 +I0 +sa(dp2414 +g4 +I0 +sa(dp2415 +g4 +I0 +sa(dp2416 +g4 +I0 +sa(dp2417 +g4 +I0 +sa(dp2418 +g4 +I0 +sa(dp2419 +g4 +I0 +sa(dp2420 +g4 +I0 +sa(dp2421 +g4 +I0 +sa(dp2422 +g4 +I0 +sa(dp2423 +g4 +I0 +sa(dp2424 +g4 +I0 +sa(dp2425 +g4 +I0 +sa(dp2426 +g4 +I0 +sa(dp2427 +g4 +I0 +sa(dp2428 +g4 +I0 +sa(dp2429 +g4 +I0 +sa(dp2430 +g4 +I0 +sa(dp2431 +g4 +I0 +sa(dp2432 +g4 +I0 +sa(dp2433 +g4 +I0 +sa(dp2434 +g4 +I0 +sa(dp2435 +g4 +I0 +sa(dp2436 +g4 +I0 +sa(dp2437 +g4 +I0 +sa(dp2438 +g4 +I0 +sa(dp2439 +g4 +I0 +sa(dp2440 +g4 +I0 +sa(dp2441 +g4 +I0 +sa(dp2442 +g4 +I0 +sa(dp2443 +g4 +I0 +sa(dp2444 +g4 +I0 +sa(dp2445 +g4 +I0 +sa(dp2446 +g4 +I0 +sa(dp2447 +g4 +I0 +sa(dp2448 +g4 +I0 +sa(dp2449 +g4 +I0 +sa(dp2450 +g4 +I0 +sa(dp2451 +g4 +I0 +sa(dp2452 +g4 +I0 +sa(dp2453 +g4 +I0 +sa(dp2454 +g4 +I0 +sa(dp2455 +g4 +I0 +sa(dp2456 +g4 +I0 +sa(dp2457 +g4 +I0 +sa(dp2458 +g4 +I0 +sa(dp2459 +g4 +I0 +sa(dp2460 +g4 +I0 +sa(dp2461 +g4 +I0 +sa(dp2462 +g4 +I0 +sa(dp2463 +g4 +I0 +sa(dp2464 +g4 +I0 +sa(dp2465 +g4 +I0 +sa(dp2466 +g4 +I0 +sa(dp2467 +g4 +I0 +sa(dp2468 +g4 +I0 +sa(dp2469 +g4 +I0 +sa(dp2470 +g4 +I0 +sa(dp2471 +g4 +I0 +sa(dp2472 +g4 +I0 +sa(dp2473 +g4 +I0 +sa(dp2474 +g4 +I0 +sa(dp2475 +g4 +I0 +sa(dp2476 +g4 +I0 +sa(dp2477 +g4 +I0 +sa(dp2478 +g4 +I0 +sa(dp2479 +g4 +I0 +sa(dp2480 +g4 +I0 +sa(dp2481 +g4 +I0 +sa(dp2482 +g4 +I0 +sa(dp2483 +g4 +I0 +sa(dp2484 +g4 +I0 +sa(dp2485 +g4 +I0 +sa(dp2486 +g4 +I0 +sa(dp2487 +g4 +I0 +sa(dp2488 +g4 +I0 +sa(dp2489 +g4 +I0 +sa(dp2490 +g4 +I0 +sa(dp2491 +g4 +I0 +sa(dp2492 +g4 +I0 +sa(dp2493 +g4 +I0 +sa(dp2494 +g4 +I0 +sa(dp2495 +g4 +I0 +sa(dp2496 +g4 +I0 +sa(dp2497 +g4 +I0 +sa(dp2498 +g4 +I0 +sa(dp2499 +g4 +I0 +sa(dp2500 +g4 +I0 +sa(dp2501 +g4 +I0 +sa(dp2502 +g4 +I0 +sa(dp2503 +g4 +I0 +sa(dp2504 +g4 +I0 +sa(dp2505 +g4 +I0 +sa(dp2506 +g4 +I0 +sa(dp2507 +g4 +I0 +sa(dp2508 +g4 +I0 +sa(dp2509 +g4 +I0 +sa(dp2510 +g4 +I0 +sa(dp2511 +g4 +I0 +sa(dp2512 +g4 +I0 +sa(dp2513 +g4 +I0 +sa(dp2514 +g4 +I0 +sa(dp2515 +g4 +I0 +sa(dp2516 +g4 +I0 +sa(dp2517 +g4 +I0 +sa(dp2518 +g4 +I0 +sa(dp2519 +g4 +I0 +sa(dp2520 +g4 +I0 +sa(dp2521 +g4 +I0 +sa(dp2522 +g4 +I0 +sa(dp2523 +g4 +I0 +sa(dp2524 +g4 +I0 +sa(dp2525 +g4 +I0 +sa(dp2526 +g4 +I0 +sa(dp2527 +g4 +I0 +sa(dp2528 +g4 +I0 +sa(dp2529 +g4 +I0 +sa(dp2530 +g4 +I0 +sa(dp2531 +g4 +I0 +sa(dp2532 +g4 +I0 +sa(dp2533 +g4 +I0 +sa(dp2534 +g4 +I0 +sa(dp2535 +g4 +I0 +sa(dp2536 +g4 +I0 +sa(dp2537 +g4 +I0 +sa(dp2538 +g4 +I0 +sa(dp2539 +g4 +I0 +sa(dp2540 +g4 +I0 +sa(dp2541 +g4 +I0 +sa(dp2542 +g4 +I0 +sa(dp2543 +g4 +I0 +sa(dp2544 +g4 +I0 +sa(dp2545 +g4 +I0 +sa(dp2546 +g4 +I0 +sa(dp2547 +g4 +I0 +sa(dp2548 +g4 +I0 +sa(dp2549 +g4 +I0 +sa(dp2550 +g4 +I0 +sa(dp2551 +g4 +I0 +sa(dp2552 +g4 +I0 +sa(dp2553 +g4 +I0 +sa(dp2554 +g4 +I0 +sa(dp2555 +g4 +I0 +sa(dp2556 +g4 +I0 +sa(dp2557 +g4 +I0 +sa(dp2558 +g4 +I0 +sa(dp2559 +g4 +I0 +sa(dp2560 +g4 +I0 +sa(dp2561 +g4 +I0 +sa(dp2562 +g4 +I0 +sa(dp2563 +g4 +I0 +sa(dp2564 +g4 +I0 +sa(dp2565 +g4 +I0 +sa(dp2566 +g4 +I0 +sa(dp2567 +g4 +I0 +sa(dp2568 +g4 +I0 +sa(dp2569 +g4 +I0 +sa(dp2570 +g4 +I0 +sa(dp2571 +g4 +I0 +sa(dp2572 +g4 +I0 +sa(dp2573 +g4 +I0 +sa(dp2574 +g4 +I0 +sa(dp2575 +g4 +I0 +sa(dp2576 +g4 +I0 +sa(dp2577 +g4 +I0 +sa(dp2578 +g4 +I0 +sa(dp2579 +g4 +I0 +sa(dp2580 +g4 +I0 +sa(dp2581 +g4 +I0 +sa(dp2582 +g4 +I0 +sa(dp2583 +g4 +I0 +sa(dp2584 +g4 +I0 +sa(dp2585 +g4 +I0 +sa(dp2586 +g4 +I0 +sa(dp2587 +g4 +I0 +sa(dp2588 +g4 +I0 +sa(dp2589 +g4 +I0 +sa(dp2590 +g4 +I0 +sa(dp2591 +g4 +I0 +sa(dp2592 +g4 +I0 +sa(dp2593 +g4 +I0 +sa(dp2594 +g4 +I0 +sa(dp2595 +g4 +I0 +sa(dp2596 +g4 +I0 +sa(dp2597 +g4 +I0 +sa(dp2598 +g4 +I0 +sa(dp2599 +g4 +I0 +sa(dp2600 +g4 +I0 +sa(dp2601 +g4 +I0 +sa(dp2602 +g4 +I0 +sa(dp2603 +g4 +I0 +sa(dp2604 +g4 +I0 +sa(dp2605 +g4 +I0 +sa(dp2606 +g4 +I0 +sa(dp2607 +g4 +I0 +sa(dp2608 +g4 +I0 +sa(dp2609 +g4 +I0 +sa(dp2610 +g4 +I0 +sa(dp2611 +g4 +I0 +sa(dp2612 +g4 +I0 +sa(dp2613 +g4 +I0 +sa(dp2614 +g4 +I0 +sa(dp2615 +g4 +I0 +sa(dp2616 +g4 +I0 +sa(dp2617 +g4 +I0 +sa(dp2618 +g4 +I0 +sa(dp2619 +g4 +I0 +sa(dp2620 +g4 +I0 +sa(dp2621 +g4 +I0 +sa(dp2622 +g4 +I0 +sa(dp2623 +g4 +I0 +sa(dp2624 +g4 +I0 +sa(dp2625 +g4 +I0 +sa(dp2626 +g4 +I0 +sa(dp2627 +g4 +I0 +sa(dp2628 +g4 +I0 +sa(dp2629 +g4 +I0 +sa(dp2630 +g4 +I0 +sa(dp2631 +g4 +I0 +sa(dp2632 +g4 +I0 +sa(dp2633 +g4 +I0 +sa(dp2634 +g4 +I0 +sa(dp2635 +g4 +I0 +sa(dp2636 +g4 +I0 +sa(dp2637 +g4 +I0 +sa(dp2638 +g4 +I0 +sa(dp2639 +g4 +I0 +sa(dp2640 +g4 +I0 +sa(dp2641 +g4 +I0 +sa(dp2642 +g4 +I0 +sa(dp2643 +g4 +I0 +sa(dp2644 +g4 +I0 +sa(dp2645 +g4 +I0 +sa(dp2646 +g4 +I0 +sa(dp2647 +g4 +I0 +sa(dp2648 +g4 +I0 +sa(dp2649 +g4 +I0 +sa(dp2650 +g4 +I0 +sa(dp2651 +g4 +I0 +sa(dp2652 +g4 +I0 +sa(dp2653 +g4 +I0 +sa(dp2654 +g4 +I0 +sa(dp2655 +g4 +I0 +sa(dp2656 +g4 +I0 +sa(dp2657 +g4 +I0 +sa(dp2658 +g4 +I0 +sa(dp2659 +g4 +I0 +sa(dp2660 +g4 +I0 +sa(dp2661 +g4 +I0 +sa(dp2662 +g4 +I0 +sa(dp2663 +g4 +I0 +sa(dp2664 +g4 +I0 +sa(dp2665 +g4 +I0 +sa(dp2666 +g4 +I0 +sa(dp2667 +g4 +I0 +sa(dp2668 +g4 +I0 +sa(dp2669 +g4 +I0 +sa(dp2670 +g4 +I0 +sa(dp2671 +g4 +I0 +sa(dp2672 +g4 +I0 +sa(dp2673 +g4 +I0 +sa(dp2674 +g4 +I0 +sa(dp2675 +g4 +I0 +sa(dp2676 +g4 +I0 +sa(dp2677 +g4 +I0 +sa(dp2678 +g4 +I0 +sa(dp2679 +g4 +I0 +sa(dp2680 +g4 +I0 +sa(dp2681 +g4 +I0 +sa(dp2682 +g4 +I0 +sa(dp2683 +g4 +I0 +sa(dp2684 +g4 +I0 +sa(dp2685 +g4 +I0 +sa(dp2686 +g4 +I0 +sa(dp2687 +g4 +I0 +sa(dp2688 +g4 +I0 +sa(dp2689 +g4 +I0 +sa(dp2690 +g4 +I0 +sa(dp2691 +g4 +I0 +sa(dp2692 +g4 +I0 +sa(dp2693 +g4 +I0 +sa(dp2694 +g4 +I0 +sa(dp2695 +g4 +I0 +sa(dp2696 +g4 +I0 +sa(dp2697 +g4 +I0 +sa(dp2698 +g4 +I0 +sa(dp2699 +g4 +I0 +sa(dp2700 +g4 +I0 +sa(dp2701 +g4 +I0 +sa(dp2702 +g4 +I0 +sa(dp2703 +g4 +I0 +sa(dp2704 +g4 +I0 +sa(dp2705 +g4 +I0 +sa(dp2706 +g4 +I0 +sa(dp2707 +g4 +I0 +sa(dp2708 +g4 +I0 +sa(dp2709 +g4 +I0 +sa(dp2710 +g4 +I0 +sa(dp2711 +g4 +I0 +sa(dp2712 +g4 +I0 +sa(dp2713 +g4 +I0 +sa(dp2714 +g4 +I0 +sa(dp2715 +g4 +I0 +sa(dp2716 +g4 +I0 +sa(dp2717 +g4 +I0 +sa(dp2718 +g4 +I0 +sa(dp2719 +g4 +I0 +sa(dp2720 +g4 +I0 +sa(dp2721 +g4 +I0 +sa(dp2722 +g4 +I0 +sa(dp2723 +g4 +I0 +sa(dp2724 +g4 +I0 +sa(dp2725 +g4 +I0 +sa(dp2726 +g4 +I0 +sa(dp2727 +g4 +I0 +sa(dp2728 +g4 +I0 +sa(dp2729 +g4 +I0 +sa(dp2730 +g4 +I0 +sa(dp2731 +g4 +I0 +sa(dp2732 +g4 +I0 +sa(dp2733 +g4 +I0 +sa(dp2734 +g4 +I0 +sa(dp2735 +g4 +I0 +sa(dp2736 +g4 +I0 +sa(dp2737 +g4 +I0 +sa(dp2738 +g4 +I0 +sa(dp2739 +g4 +I0 +sa(dp2740 +g4 +I0 +sa(dp2741 +g4 +I0 +sa(dp2742 +g4 +I0 +sa(dp2743 +g4 +I0 +sa(dp2744 +g4 +I0 +sa(dp2745 +g4 +I0 +sa(dp2746 +g4 +I0 +sa(dp2747 +g4 +I0 +sa(dp2748 +g4 +I0 +sa(dp2749 +g4 +I0 +sa(dp2750 +g4 +I0 +sa(dp2751 +g4 +I0 +sa(dp2752 +g4 +I0 +sa(dp2753 +g4 +I0 +sa(dp2754 +g4 +I0 +sa(dp2755 +g4 +I0 +sa(dp2756 +g4 +I0 +sa(dp2757 +g4 +I0 +sa(dp2758 +g4 +I0 +sa(dp2759 +g4 +I0 +sa(dp2760 +g4 +I0 +sa(dp2761 +g4 +I0 +sa(dp2762 +g4 +I0 +sa(dp2763 +g4 +I0 +sa(dp2764 +g4 +I0 +sa(dp2765 +g4 +I0 +sa(dp2766 +g4 +I0 +sa(dp2767 +g4 +I0 +sa(dp2768 +g4 +I0 +sa(dp2769 +g4 +I0 +sa(dp2770 +g4 +I0 +sa(dp2771 +g4 +I0 +sa(dp2772 +g4 +I0 +sa(dp2773 +g4 +I0 +sa(dp2774 +g4 +I0 +sa(dp2775 +g4 +I0 +sa(dp2776 +g4 +I0 +sa(dp2777 +g4 +I0 +sa(dp2778 +g4 +I0 +sa(dp2779 +g4 +I0 +sa(dp2780 +g4 +I0 +sa(dp2781 +g4 +I0 +sa(dp2782 +g4 +I0 +sa(dp2783 +g4 +I0 +sa(dp2784 +g4 +I0 +sa(dp2785 +g4 +I0 +sa(dp2786 +g4 +I0 +sa(dp2787 +g4 +I0 +sa(dp2788 +g4 +I0 +sa(dp2789 +g4 +I0 +sa(dp2790 +g4 +I0 +sa(dp2791 +g4 +I0 +sa(dp2792 +g4 +I0 +sa(dp2793 +g4 +I0 +sa(dp2794 +g4 +I0 +sa(dp2795 +g4 +I0 +sa(dp2796 +g4 +I0 +sa(dp2797 +g4 +I0 +sa(dp2798 +g4 +I0 +sa(dp2799 +g4 +I0 +sa(dp2800 +g4 +I0 +sa(dp2801 +g4 +I0 +sa(dp2802 +g4 +I0 +sa(dp2803 +g4 +I0 +sa(dp2804 +g4 +I0 +sa(dp2805 +g4 +I0 +sa(dp2806 +g4 +I0 +sa(dp2807 +g4 +I0 +sa(dp2808 +g4 +I0 +sa(dp2809 +g4 +I0 +sa(dp2810 +g4 +I0 +sa(dp2811 +g4 +I0 +sa(dp2812 +g4 +I0 +sa(dp2813 +g4 +I0 +sa(dp2814 +g4 +I0 +sa(dp2815 +g4 +I0 +sa(dp2816 +g4 +I0 +sa(dp2817 +g4 +I0 +sa(dp2818 +g4 +I0 +sa(dp2819 +g4 +I0 +sa(dp2820 +g4 +I0 +sa(dp2821 +g4 +I0 +sa(dp2822 +g4 +I0 +sa(dp2823 +g4 +I0 +sa(dp2824 +g4 +I0 +sa(dp2825 +g4 +I0 +sa(dp2826 +g4 +I0 +sa(dp2827 +g4 +I0 +sa(dp2828 +g4 +I0 +sa(dp2829 +g4 +I0 +sa(dp2830 +g4 +I0 +sa(dp2831 +g4 +I0 +sa(dp2832 +g4 +I0 +sa(dp2833 +g4 +I0 +sa(dp2834 +g4 +I0 +sa(dp2835 +g4 +I0 +sa(dp2836 +g4 +I0 +sa(dp2837 +g4 +I0 +sa(dp2838 +g4 +I0 +sa(dp2839 +g4 +I0 +sa(dp2840 +g4 +I0 +sa(dp2841 +g4 +I0 +sa(dp2842 +g4 +I0 +sa(dp2843 +g4 +I0 +sa(dp2844 +g4 +I0 +sa(dp2845 +g4 +I0 +sa(dp2846 +g4 +I0 +sa(dp2847 +g4 +I0 +sa(dp2848 +g4 +I0 +sa(dp2849 +g4 +I0 +sa(dp2850 +g4 +I0 +sa(dp2851 +g4 +I0 +sa(dp2852 +g4 +I0 +sa(dp2853 +g4 +I0 +sa(dp2854 +g4 +I0 +sa(dp2855 +g4 +I0 +sa(dp2856 +g4 +I0 +sa(dp2857 +g4 +I0 +sa(dp2858 +g4 +I0 +sa(dp2859 +g4 +I0 +sa(dp2860 +g4 +I0 +sa(dp2861 +g4 +I0 +sa(dp2862 +g4 +I0 +sa(dp2863 +g4 +I0 +sa(dp2864 +g4 +I0 +sa(dp2865 +g4 +I0 +sa(dp2866 +g4 +I0 +sa(dp2867 +g4 +I0 +sa(dp2868 +g4 +I0 +sa(dp2869 +g4 +I0 +sa(dp2870 +g4 +I0 +sa(dp2871 +g4 +I0 +sa(dp2872 +g4 +I0 +sa(dp2873 +g4 +I0 +sa(dp2874 +g4 +I0 +sa(dp2875 +g4 +I0 +sa(dp2876 +g4 +I0 +sa(dp2877 +g4 +I0 +sa(dp2878 +g4 +I0 +sa(dp2879 +g4 +I0 +sa(dp2880 +g4 +I0 +sa(dp2881 +g4 +I0 +sa(dp2882 +g4 +I0 +sa(dp2883 +g4 +I0 +sa(dp2884 +g4 +I0 +sa(dp2885 +g4 +I0 +sa(dp2886 +g4 +I0 +sa(dp2887 +g4 +I0 +sa(dp2888 +g4 +I0 +sa(dp2889 +g4 +I0 +sa(dp2890 +g4 +I0 +sa(dp2891 +g4 +I0 +sa(dp2892 +g4 +I0 +sa(dp2893 +g4 +I0 +sa(dp2894 +g4 +I0 +sa(dp2895 +g4 +I0 +sa(dp2896 +g4 +I0 +sa(dp2897 +g4 +I0 +sa(dp2898 +g4 +I0 +sa(dp2899 +g4 +I0 +sa(dp2900 +g4 +I0 +sa(dp2901 +g4 +I0 +sa(dp2902 +g4 +I0 +sa(dp2903 +g4 +I0 +sa(dp2904 +g4 +I0 +sa(dp2905 +g4 +I0 +sa(dp2906 +g4 +I0 +sa(dp2907 +g4 +I0 +sa(dp2908 +g4 +I0 +sa(dp2909 +g4 +I0 +sa(dp2910 +g4 +I0 +sa(dp2911 +g4 +I0 +sa(dp2912 +g4 +I0 +sa(dp2913 +g4 +I0 +sa(dp2914 +g4 +I0 +sa(dp2915 +g4 +I0 +sa(dp2916 +g4 +I0 +sa(dp2917 +g4 +I0 +sa(dp2918 +g4 +I0 +sa(dp2919 +g4 +I0 +sa(dp2920 +g4 +I0 +sa(dp2921 +g4 +I0 +sa(dp2922 +g4 +I0 +sa(dp2923 +g4 +I0 +sa(dp2924 +g4 +I0 +sa(dp2925 +g4 +I0 +sa(dp2926 +g4 +I0 +sa(dp2927 +g4 +I0 +sa(dp2928 +g4 +I0 +sa(dp2929 +g4 +I0 +sa(dp2930 +g4 +I0 +sa(dp2931 +g4 +I0 +sa(dp2932 +g4 +I0 +sa(dp2933 +g4 +I0 +sa(dp2934 +g4 +I0 +sa(dp2935 +g4 +I0 +sa(dp2936 +g4 +I0 +sa(dp2937 +g4 +I0 +sa(dp2938 +g4 +I0 +sa(dp2939 +g4 +I0 +sa(dp2940 +g4 +I0 +sa(dp2941 +g4 +I0 +sa(dp2942 +g4 +I0 +sa(dp2943 +g4 +I0 +sa(dp2944 +g4 +I0 +sa(dp2945 +g4 +I0 +sa(dp2946 +g4 +I0 +sa(dp2947 +g4 +I0 +sa(dp2948 +g4 +I0 +sa(dp2949 +g4 +I0 +sa(dp2950 +g4 +I0 +sa(dp2951 +g4 +I0 +sa(dp2952 +g4 +I0 +sa(dp2953 +g4 +I0 +sa(dp2954 +g4 +I0 +sa(dp2955 +g4 +I0 +sa(dp2956 +g4 +I0 +sa(dp2957 +g4 +I0 +sa(dp2958 +g4 +I0 +sa(dp2959 +g4 +I0 +sa(dp2960 +g4 +I0 +sa(dp2961 +g4 +I0 +sa(dp2962 +g4 +I0 +sa(dp2963 +g4 +I0 +sa(dp2964 +g4 +I0 +sa(dp2965 +g4 +I0 +sa(dp2966 +g4 +I0 +sa(dp2967 +g4 +I0 +sa(dp2968 +g4 +I0 +sa(dp2969 +g4 +I0 +sa(dp2970 +g4 +I0 +sa(dp2971 +g4 +I0 +sa(dp2972 +g4 +I0 +sa(dp2973 +g4 +I0 +sa(dp2974 +g4 +I0 +sa(dp2975 +g4 +I0 +sa(dp2976 +g4 +I0 +sa(dp2977 +g4 +I0 +sa(dp2978 +g4 +I0 +sa(dp2979 +g4 +I0 +sa(dp2980 +g4 +I0 +sa(dp2981 +g4 +I0 +sa(dp2982 +g4 +I0 +sa(dp2983 +g4 +I0 +sa(dp2984 +g4 +I0 +sa(dp2985 +g4 +I0 +sa(dp2986 +g4 +I0 +sa(dp2987 +g4 +I0 +sa(dp2988 +g4 +I0 +sa(dp2989 +g4 +I0 +sa(dp2990 +g4 +I0 +sa(dp2991 +g4 +I0 +sa(dp2992 +g4 +I0 +sa(dp2993 +g4 +I0 +sa(dp2994 +g4 +I0 +sa(dp2995 +g4 +I0 +sa(dp2996 +g4 +I0 +sa(dp2997 +g4 +I0 +sa(dp2998 +g4 +I0 +sa(dp2999 +g4 +I0 +sa(dp3000 +g4 +I0 +sa(dp3001 +g4 +I0 +sa(dp3002 +g4 +I0 +sa(dp3003 +g4 +I0 +sa(dp3004 +g4 +I0 +sa(dp3005 +g4 +I0 +sa(dp3006 +g4 +I0 +sa(dp3007 +g4 +I0 +sa(dp3008 +g4 +I0 +sa(dp3009 +g4 +I0 +sa(dp3010 +g4 +I0 +sa(dp3011 +g4 +I0 +sa(dp3012 +g4 +I0 +sa(dp3013 +g4 +I0 +sa(dp3014 +g4 +I0 +sa(dp3015 +g4 +I0 +sa(dp3016 +g4 +I0 +sa(dp3017 +g4 +I0 +sa(dp3018 +g4 +I0 +sa(dp3019 +g4 +I0 +sa(dp3020 +g4 +I0 +sa(dp3021 +g4 +I0 +sa(dp3022 +g4 +I0 +sa(dp3023 +g4 +I0 +sa(dp3024 +g4 +I0 +sa(dp3025 +g4 +I0 +sa(dp3026 +g4 +I0 +sa(dp3027 +g4 +I0 +sa(dp3028 +g4 +I0 +sa(dp3029 +g4 +I0 +sa(dp3030 +g4 +I0 +sa(dp3031 +g4 +I0 +sa(dp3032 +g4 +I0 +sa(dp3033 +g4 +I0 +sa(dp3034 +g4 +I0 +sa(dp3035 +g4 +I0 +sa(dp3036 +g4 +I0 +sa(dp3037 +g4 +I0 +sa(dp3038 +g4 +I0 +sa(dp3039 +g4 +I0 +sa(dp3040 +g4 +I0 +sa(dp3041 +g4 +I0 +sa(dp3042 +g4 +I0 +sa(dp3043 +g4 +I0 +sa(dp3044 +g4 +I0 +sa(dp3045 +g4 +I0 +sa(dp3046 +g4 +I0 +sa(dp3047 +g4 +I0 +sa(dp3048 +g4 +I0 +sa(dp3049 +g4 +I0 +sa(dp3050 +g4 +I0 +sa(dp3051 +g4 +I0 +sa(dp3052 +g4 +I0 +sa(dp3053 +g4 +I0 +sa(dp3054 +g4 +I0 +sa(dp3055 +g4 +I0 +sa(dp3056 +g4 +I0 +sa(dp3057 +g4 +I0 +sa(dp3058 +g4 +I0 +sa(dp3059 +g4 +I0 +sa(dp3060 +g4 +I0 +sa(dp3061 +g4 +I0 +sa(dp3062 +g4 +I0 +sa(dp3063 +g4 +I0 +sa(dp3064 +g4 +I0 +sa(dp3065 +g4 +I0 +sa(dp3066 +g4 +I0 +sa(dp3067 +g4 +I0 +sa(dp3068 +g4 +I0 +sa(dp3069 +g4 +I0 +sa(dp3070 +g4 +I0 +sa(dp3071 +g4 +I0 +sa(dp3072 +g4 +I0 +sa(dp3073 +g4 +I0 +sa(dp3074 +g4 +I0 +sa(dp3075 +g4 +I0 +sa(dp3076 +g4 +I0 +sa(dp3077 +g4 +I0 +sa(dp3078 +g4 +I0 +sa(dp3079 +g4 +I0 +sa(dp3080 +g4 +I0 +sa(dp3081 +g4 +I0 +sa(dp3082 +g4 +I0 +sa(dp3083 +g4 +I0 +sa(dp3084 +g4 +I0 +sa(dp3085 +g4 +I0 +sa(dp3086 +g4 +I0 +sa(dp3087 +g4 +I0 +sa(dp3088 +g4 +I0 +sa(dp3089 +g4 +I0 +sa(dp3090 +g4 +I0 +sa(dp3091 +g4 +I0 +sa(dp3092 +g4 +I0 +sa(dp3093 +g4 +I0 +sa(dp3094 +g4 +I0 +sa(dp3095 +g4 +I0 +sa(dp3096 +g4 +I0 +sa(dp3097 +g4 +I0 +sa(dp3098 +g4 +I0 +sa(dp3099 +g4 +I0 +sa(dp3100 +g4 +I0 +sa(dp3101 +g4 +I0 +sa(dp3102 +g4 +I0 +sa(dp3103 +g4 +I0 +sa(dp3104 +g4 +I0 +sa(dp3105 +g4 +I0 +sa(dp3106 +g4 +I0 +sa(dp3107 +g4 +I0 +sa(dp3108 +g4 +I0 +sa(dp3109 +g4 +I0 +sa(dp3110 +g4 +I0 +sa(dp3111 +g4 +I0 +sa(dp3112 +g4 +I0 +sa(dp3113 +g4 +I0 +sa(dp3114 +g4 +I0 +sa(dp3115 +g4 +I0 +sa(dp3116 +g4 +I0 +sa(dp3117 +g4 +I0 +sa(dp3118 +g4 +I0 +sa(dp3119 +g4 +I0 +sa(dp3120 +g4 +I0 +sa(dp3121 +g4 +I0 +sa(dp3122 +g4 +I0 +sa(dp3123 +g4 +I0 +sa(dp3124 +g4 +I0 +sa(dp3125 +g4 +I0 +sa(dp3126 +g4 +I0 +sa(dp3127 +g4 +I0 +sa(dp3128 +g4 +I0 +sa(dp3129 +g4 +I0 +sa(dp3130 +g4 +I0 +sa(dp3131 +g4 +I0 +sa(dp3132 +g4 +I0 +sa(dp3133 +g4 +I0 +sa(dp3134 +g4 +I0 +sa(dp3135 +g4 +I0 +sa(dp3136 +g4 +I0 +sa(dp3137 +g4 +I0 +sa(dp3138 +g4 +I0 +sa(dp3139 +g4 +I0 +sa(dp3140 +g4 +I0 +sa(dp3141 +g4 +I0 +sa(dp3142 +g4 +I0 +sa(dp3143 +g4 +I0 +sa(dp3144 +g4 +I0 +sa(dp3145 +g4 +I0 +sa(dp3146 +g4 +I0 +sa(dp3147 +g4 +I0 +sa(dp3148 +g4 +I0 +sa(dp3149 +g4 +I0 +sa(dp3150 +g4 +I0 +sa(dp3151 +g4 +I0 +sa(dp3152 +g4 +I0 +sa(dp3153 +g4 +I0 +sa(dp3154 +g4 +I0 +sa(dp3155 +g4 +I0 +sa(dp3156 +g4 +I0 +sa(dp3157 +g4 +I0 +sa(dp3158 +g4 +I0 +sa(dp3159 +g4 +I0 +sa(dp3160 +g4 +I0 +sa(dp3161 +g4 +I0 +sa(dp3162 +g4 +I0 +sa(dp3163 +g4 +I0 +sa(dp3164 +g4 +I0 +sa(dp3165 +g4 +I0 +sa(dp3166 +g4 +I0 +sa(dp3167 +g4 +I0 +sa(dp3168 +g4 +I0 +sa(dp3169 +g4 +I0 +sa(dp3170 +g4 +I0 +sa(dp3171 +g4 +I0 +sa(dp3172 +g4 +I0 +sa(dp3173 +g4 +I0 +sa(dp3174 +g4 +I0 +sa(dp3175 +g4 +I0 +sa(dp3176 +g4 +I0 +sa(dp3177 +g4 +I0 +sa(dp3178 +g4 +I0 +sa(dp3179 +g4 +I0 +sa(dp3180 +g4 +I0 +sa(dp3181 +g4 +I0 +sa(dp3182 +g4 +I0 +sa(dp3183 +g4 +I0 +sa(dp3184 +g4 +I0 +sa(dp3185 +g4 +I0 +sa(dp3186 +g4 +I0 +sa(dp3187 +g4 +I0 +sa(dp3188 +g4 +I0 +sa(dp3189 +g4 +I0 +sa(dp3190 +g4 +I0 +sa(dp3191 +g4 +I0 +sa(dp3192 +g4 +I0 +sa(dp3193 +g4 +I0 +sa(dp3194 +g4 +I0 +sa(dp3195 +g4 +I0 +sa(dp3196 +g4 +I0 +sa(dp3197 +g4 +I0 +sa(dp3198 +g4 +I0 +sa(dp3199 +g4 +I0 +sa(dp3200 +g4 +I0 +sa(dp3201 +g4 +I0 +sa(dp3202 +g4 +I0 +sa(dp3203 +g4 +I0 +sa(dp3204 +g4 +I0 +sa(dp3205 +g4 +I0 +sa(dp3206 +g4 +I0 +sa(dp3207 +g4 +I0 +sa(dp3208 +g4 +I0 +sa(dp3209 +g4 +I0 +sa(dp3210 +g4 +I0 +sa(dp3211 +g4 +I0 +sa(dp3212 +g4 +I0 +sa(dp3213 +g4 +I0 +sa(dp3214 +g4 +I0 +sa(dp3215 +g4 +I0 +sa(dp3216 +g4 +I0 +sa(dp3217 +g4 +I0 +sa(dp3218 +g4 +I0 +sa(dp3219 +g4 +I0 +sa(dp3220 +g4 +I0 +sa(dp3221 +g4 +I0 +sa(dp3222 +g4 +I0 +sa(dp3223 +g4 +I0 +sa(dp3224 +g4 +I0 +sa(dp3225 +g4 +I0 +sa(dp3226 +g4 +I0 +sa(dp3227 +g4 +I0 +sa(dp3228 +g4 +I0 +sa(dp3229 +g4 +I0 +sa(dp3230 +g4 +I0 +sa(dp3231 +g4 +I0 +sa(dp3232 +g4 +I0 +sa(dp3233 +g4 +I0 +sa(dp3234 +g4 +I0 +sa(dp3235 +g4 +I0 +sa(dp3236 +g4 +I0 +sa(dp3237 +g4 +I0 +sa(dp3238 +g4 +I0 +sa(dp3239 +g4 +I0 +sa(dp3240 +g4 +I0 +sa(dp3241 +g4 +I0 +sa(dp3242 +g4 +I0 +sa(dp3243 +g4 +I0 +sa(dp3244 +g4 +I0 +sa(dp3245 +g4 +I0 +sa(dp3246 +g4 +I0 +sa(dp3247 +g4 +I0 +sa(dp3248 +g4 +I0 +sa(dp3249 +g4 +I0 +sa(dp3250 +g4 +I0 +sa(dp3251 +g4 +I0 +sa(dp3252 +g4 +I0 +sa(dp3253 +g4 +I0 +sa(dp3254 +g4 +I0 +sa(dp3255 +g4 +I0 +sa(dp3256 +g4 +I0 +sa(dp3257 +g4 +I0 +sa(dp3258 +g4 +I0 +sa(dp3259 +g4 +I0 +sa(dp3260 +g4 +I0 +sa(dp3261 +g4 +I0 +sa(dp3262 +g4 +I0 +sa(dp3263 +g4 +I0 +sasS'texts' +p3264 +(lp3265 +S'Therefore you accept that the Republican party almost as a whole is "grade A USDA approved Liberalism." About time you did. ' +p3266 +aS"More chattering from the peanut gallery? Haven't gotten the memo, you're no longer a player? Honestly....clamoring for attention is so low budget. No shame." +p3267 +aS'Yep, suppressing natural behavior is always the way to go. We should also get them to stop pooping.' +p3268 +aS'I guess we all missed your point Justine, whatever it might have been. emoticonXConfused Better luck next time. emoticonXGood' +p3269 +aS'Evidence, I dont need no sticking evidence. This is what I beleive, and thats it, but I will dig up some proof that supports my point.' +p3270 +aS'And I would appreciate your refraining from calling your mythology a theory.' +p3271 +aS'What is it that you disagree with? My statement of fact? Or the fact that I made a politically incorrect assertion? emoticonXConfused ' +p3272 +aS"Tell you what-get your math and science skills up to a grade 6 level and I'll consider taking advice from you, 'kay? " +p3273 +aS'In my case, it isn\'t \'god fearing\'.. so much as "believer fearing\'' +p3274 +aS'yeah just like you and your idols Glenn Beck, Rush Limbaugh, etc.' +p3275 +aS'HOLY COW!!!! Is this the "Sacred Institution of Marriage" you and jyoshu are so fervent to protect?' +p3276 +aS'So a gun is a fire hazard in a public place? I gotta say the gun haters are getting more creative with their arguments.' +p3277 +aS'Oh gosh , a whole bunch of cut/pastes from a 14 year old that is showing off their lack of knowledge. These are not unknown situations, and are very easily explained.' +p3278 +aS"Wow, everyone's just shakin' in their boots that your imaginary god will magick them off the earth! emoticonXKillemoticonXKillemoticonXKillemoticonXBanghead" +p3279 +aS'Quite amusing that you refer to westerners as Gringos. The last time I heard that was in a film about Pancho villa!' +p3280 +aS"It looks like just Mucusaur, you and me, along with an entire thread of bots! (I'm not too sure about Mucusaur, to be honest!) ;)" +p3281 +aS'Ah, historical inevitability. I had no idea you were a marxist, Steeeeve! Unfortunately for you the same argument applies to the collapse of capitalism. And once again you conflate capitalism and freedom. Have you never heard of anarcho-syndicalism? And why is someone more free when their life is controlled by corporations than when those corporations are restrained by a democratic government?' +p3282 +aS'I have no idea what "women\'s rights" might be either. You could try to explain that to me while you are at it.' +p3283 +aS'Says the one who calls everyone who disagrees with him about politics a "Bush hater" and then cowardly runs away. emoticonXRolleyes' +p3284 +aS'You can thank Slick Willie Clinton who pushed through the sub-prime lending fiasco that eventually blew up under Bush. And gay-boy Barney Franks who oversaw the program. ' +p3285 +aS"Don't even think about contriving how gay marrige violates YOUR RIGHTS assmonkey. That's the most ludicrous, inane statement I have yet heard from the Religious Right." +p3286 +aS'Look, the "no one was around to see it" argument. "If a tree falls in the woods, and no one was around to see it, did it really fall?" You lost this one a long time ago, too. You never learn. ' +p3287 +aS"Well, this guy is so bad ad arguing and so good at alienating people that if we sent him into the abortion forum, it is likely, he'd be so ineffective at defending his pro-life position thathe'd actually be contributing to the pro-choice position..." +p3288 +aS"Another red herring gay argument. Ever hear of a medical power of attorney? You don't need marriage to have one, you know. emoticonXRolleyes " +p3289 +aS' Anyone wanna make any bets on who the newbie is here???' +p3290 +aS"Doctor, not guy/gal. Say the words...... A doctor. Baby is synonymous with infant. Is fetus synonymous with infant? Strange, isn't it?" +p3291 +aS"Dude, it's, like, all over the Bible, man! Maybe if you hit your forehead with Bibles more often, you would know these things!" +p3292 +aS"Wow, that must be some good stuff he was drinking to keep him 'under the influence' for THAT long!! :p" +p3293 +aS'Lets all make vast generalizations that are not true. Seems fun emoticonXRolleyes' +p3294 +aS'That must be why they like to wear boots in Texas.' +p3295 +aS'Only those ignorant of science and evolution think that "evolution" has anything to do with the Bible. I guess that\'s because creationism is an attempt to pretend that mythology is somehow scientific and makes silly statements about science. It seems that science is somehow anti-Bible in that case when science debunks ignorance.' +p3296 +aS"So why did you say pot was worse than alcohol? Just because both are apparently bad, doesn't make one 'worse'. I'll point out that you compared the two first, so saying it's dumb to compare the two's shooting yourself in the foot." +p3297 +aS'No but it will be funny to see what sex tapes this tramp did too....' +p3298 +aS"Yes, it doesn't agree with your agenda so it must be trolling. " +p3299 +aS"Apparently someone doesn't read. Trebor was talking about me not being jewish in the following quote. " +p3300 +aS"Probably neat excuse. Do you expect jim to back that claim up? emoticonXGood Don't hold your breath." +p3301 +aS'We all agree that abortion is "killing". Killing something that has yet to become self aware is different IMO. Funny you request an open "mind". My point is that it ain\'t a human being if it ain\'t got no mind. That\'s why they unplug you when you\'re brain dead.' +p3302 +aS'Excuse me?! Didn\'t AIDS started because your homies either ate or did the nasty with monkeys, thereby crossing the species boundary? What did it have to do with "da man"? And crime and poverty in Africa is also the white devil\'s doing? emoticonXConfused ' +p3303 +aS'It probably was a bunny suit that he was supposed to wear. I guess he changed his mind, once again, and decided to wear this suit.' +p3304 +aS"THe religious reigh is not mainstream either. And frankly, you are also confusing politics and religion. You do KNOW that there is a difference? You also know there is a differnece between hateful proclimations and scholarship, don't you??" +p3305 +aS"I'm not going anywhere with this thread. I just wanted to point out the obvious hypocrisy of everything your side represents, and nothing more. You all go right ahead and massage your shallow World views." +p3306 +aS"Well, I guess you got something there. . . . . .can't put the cart before the hose!!" +p3307 +aS'The VPC has a political agenda. The FBI? That is like saying I believe Coke taste better than Pepsi because the Coke commericial says so.' +p3308 +aS"So what you're saying is that by mentioning both in the same post, I'm saying that unless someone is a YEC then they aren't a christian? Because that is what you attributed to me. Yet you have yet to post evidence of me saying that to anyone. Nor have you supported your original claim here, you said this: Last I checked, no credible fossil fuel firm hired YEC geologists. Prove this assertion since you researched it thoroughly enough to start a thread about." +p3309 +aS"We came from apes not created. Why can't people figure that out did any body go to school around here." +p3310 +aS'So, how many unborn babies did your God drown in Genesis? Talk about hypocrisy.' +p3311 +aS"Not only would I throw the switch, I'd pay the electric bill, too. emoticonXGood" +p3312 +aS'Stick with the bass guitar. emoticonXRolleyes And if you break a string....TRY not to blame it on Clinton. :p' +p3313 +aS'Over the Internet that can be a particularly difficult call...' +p3314 +aS'Why would I want lies , deceptions and superstition? I mean, if believing in Jesus makes people act like you, NO THANKS' +p3315 +aS'Because the NY Times, CNN, ABC, Dan Rather, and Handgun Control are all atheist-lead and anti-Christianity. Yeah.' +p3316 +aS'Well, when the people who market prayer come up with evidence that it works as described, let us know! As a meditation technique, it might work fine, who knows, but then, so do many other methods. ' +p3317 +aS'Buy stock in the failing banks? What a great investment. Tell me, where does the money come from?' +p3318 +aS"I'll let you know if or when I'm ignoring you, O Hell-bound spawn of Satan." +p3319 +aS'so if right now, i ask god for forgivness, someone kills me, i will go to heaven by default? makes sense to me, i mean, i dont have time to sin...' +p3320 +aS"Not quite sure what you are talking about, Iangb. And I really don't have time to crack the code so if you have a specific question, just ask it already." +p3321 +aS" Are you being dense on purpose? I said that I'm not all into the semantics of baby/fetus. I'll conceid that its killing a baby. The TERM for it is fetus, fetus' become babies. I see the logic there (in fact I think I'm agreeing with you). Why must you keep pounding this drum? " +p3322 +aS'When do you advocate breeding blond haired, blue eyed citizens to purify the US?' +p3323 +aS"that's right, i don't want ANOTHER parental figure to tell me what to do, when to do it, and how to do it." +p3324 +aS'...or we could feed the criminals to the dinosaurs!...save the cows for meatloaf.' +p3325 +aS'You question others sources and credibility yet you parade around under the name of a giant cartoon Shake?' +p3326 +aS"* - edit: you know, actually, evidence in the form of experimental results are reviewed, or at least the methods are reviewed, and then if the experiment isn't reproducible then the evidence becomes suspect, so in that light evidence is, sort of, reviewed. Eh, who cares?)" +p3327 +aS'And yet here we are and neo-Darwinism continues to have empirical support right and left with no sign of it being falsified in sight as of yet. Why might that be? And you Bertvan do not exist since you are so highly improbable. Therefore I can safely assume that your post above just happened without your existense.' +p3328 +aS'Said like a lazy, ignorant person who would rather live off the sweat of others than go out and earn for himself.' +p3329 +aS"Yeah, so will slaves who don't know their Biblical place under their masters, and women who don't submit to men." +p3330 +aS"So you haven't got an answer to the question and prove that you are 'busted'.. That's OK...as long as we can all see that." +p3331 +aS"You wouldn't. More likely you'll pursue your Wiccan follies until Judgment Day and then wonder what hit you." +p3332 +aS"If I had said that, I would have been wrong. But the fact is that I didn't say that. You seem to have a problem in undertanding English. Let me help. Here is what I said: " +p3333 +aS'It is also enough for me to realize you people are using words without definitions. ' +p3334 +aS"Yeah. It's snowing sooner here in the Midwest. I think the next Ice Age is coming." +p3335 +aS'Yeeees, that\'s why option 4 as I wrote it says "reinterpret" as opposed to "reject." Having a bad reading day, eh?' +p3336 +aS"It also isn't a baby yet either. It is called a fetus." +p3337 +aS'You already screwed them over when you decided to cover their country in radioactive dust. Depleted uranium is a real bitch. ' +p3338 +aS'You know my answer: There is no god and no one "created" mankind. But the discussion over the existence of god belongs rightly under "Religious" or "Philosophy" section, not abortion. Is this one of the tactics you fundies frequently practice? Change the subject when you are about to lose?' +p3339 +aS'No, you at least need a sling shot and ball bearings, lol.' +p3340 +aS'And you are only trying to earn yourself brownie points in hell.' +p3341 +aS'And like I said, your opinion is worth exactly NOTHING. emoticonXRolleyes' +p3342 +aS'Are you kidding me?! You think that blacks living in Third World Carribean and African countries are "content?!" They\'re starving by the tens of thousands per day or living so far below the poverty level that it\'s unimaginable. Maybe you should wander off the beach sometime and see for yourself. ' +p3343 +aS'The horsehoe bend was cretaed by the flood in the image of the immaculate horseshoe. repent heathen!' +p3344 +aS" I know, maybe the American criminals will just import guns in with their Mexican illegal drugs. I don't know for sure but I believe the Mexican Drug gangs wouldn't mind another revenue stream. Net results, Zilch, nada, zero. But you know that! emoticonXSmilie Gun control is nothing but a scam!" +p3345 +aS'Careful now, Simone. A lesser man might report you to the moderator.;) ' +p3346 +aS'If the same question had been posed by different polls over time it would be easier to draw trends from the responses..... but good luck with finding some trends in amongst that lot.' +p3347 +aS"Ah, the esteemed Washington Times, the rag of that Korean Reverend who does the mass marriages and other weird stuff--um, what's his name now?" +p3348 +aS"Haaaaa Haaaaa Haaaaaaah haahhhha HAhaaaa. My GOD I can't stop laughing Heeee Haaaa." +p3349 +aS"Well you wouldn't have to 5hit yourself everytime you walked down the streets if you had a gun yourself." +p3350 +aS'Your problem is that you take the Bible as the Literal Word of the Invisible man which everyone with a brain knows it is NOT. There are other "Sins\' listed in the old testament that you ignore and try to explain away but you know as well as I that Jesus did not change the Laws. If you want others to live by your False book of fairy tales it would be a Good Idea for you to read it and follow it yourself first. Choosing one or two scriptures and using them to attack people is only making you look foolish. ' +p3351 +aS'Good news. It seems as time goes on Arizona attempts to become more and more intolerant and bigoted. Thankfully he put an end to this one (too bad not the immigration one).' +p3352 +aS'Once again archie squirms when the definition of regime is pointed out to him and it nullifies his claims.........' +p3353 +aS"Two Vikings on one board? Time to beat a hasty retreat before I'm pillaged emoticonXChicken" +p3354 +aS'Once again, you have attempted to use the Bible to further your agenda and have been found lacking. emoticonXRolleyes ' +p3355 +aS'So you are saying that we determine our DNA? Do you actually think before typing?' +p3356 +aS'Ha.a.a.a :p emoticonXGood Good one, sinjin. What is the sound of one hand clapping.....? Ladywolf, Your answer will probably come from many different sources. Your idea that it evolved is pretty-much it, IMO.' +p3357 +aS'Oh, look, removing a quote from its context. How about your address my textbook definition next? ' +p3358 +aS"Only some? what's this then: hxxp://en.wikipedia.org/wiki/Image:Pakicetus_(1).jpg Replace the xx with tt in case you're wondering why I put the link up like that, it's the stupid post count thingy." +p3359 +aS'Is this a rational statement? If so, prove it rationally, by science.' +p3360 +aS'Let me return the kindness. The correct spelling is ==> especially ' +p3361 +aS'It is only difficult to sort out if you are a neocon and fail to recognize that neocons are nothing but militant liberals. Bush was BY FAR the most liberal president we have had for at least 20 years. Maybe you need to research traditional conservative values.' +p3362 +aS'What, pray, is a real answer? Because, you know, if it is anything like a corrcect answer you are doing a rather poor job of it, mate.' +p3363 +aS"The riddles continue? emoticonXConfused Wouldn't it have taken less time and have been less ambiguous if you or Dr Spock just posted the # of the post?emoticonXRolleyes emoticonXRolleyes" +p3364 +aS"My pursuit of happiness is denied by trees existing. Let's burn them down and destroy the environment. It's much better than me being unhappy." +p3365 +aS'Pathetic, why would you let anyone besides yourself determine who you call family? Nobody is forcing their religion on you. Nobody is even saying who you can or can\'t get married to. What is being said is that you, or anyone else, doesn\'t have the "right" to have that marriage recognized by gov\'t. Universal recognition by gov\'t doesn\'t even happen in hetro marriages. Nowhere in the founding documents of this nation does it say "All gov\'t entities shall recognize all people\'s marriages". Since we have "a government for the people by the people", the duties of government not spelled out in the founding documents are determined by the people. You have the freedom to vote your beliefs and so does everybody else.' +p3366 +aS"Of course I can't. Can you guarantee that the apparent mugging about to happen isn't some poor slob about to ask directions? Big guy, dark parking lot, bang bang. Better safe than sorry, eh?" +p3367 +aS'Yup. Give me an example of a true inaccuracy, instead of working to poke fun. Do you honestly think anyone will take you seriously (except the evolutionists) if you don\'t provide reasons for your apparent problem with scriptures. Are you scared because you see the "ancients" commenting on subjects you thought science had "discovered" since the "enlightenment"? Man, how arrogant can you get? You remind me of the Pharasees. Arrogant presuppositions are no substitue for confronting your ignorance my friend. Either explain how the Bible speaks accurately on sophisticated subjects as given above, or don\'t bother posting.' +p3368 +aS'Hmmm, a mere human-mother cannot make decisions concerning her own body, but you, sk8joyful, can usurp the position of God and tell another human, especially a mere human-mother, what she is allowed to do with her body.' +p3369 +aS"Me, too. I'd probably throw in some counseling as well, just for starters." +p3370 +aS'Including the mentally ill, those with previous violent felonies, and children?' +p3371 +aS'And here is the crux of the matter where I think Libertarians are missing it: As one Founding Father said, "There can be no liberty without virtue." Someone else once said, "Intemperate men can never be free because their passions give rise to their bindings". If the God of the Bible is right, a nation which legalizes sin and intemperance loses the favor of God. And when the sins of a nation reach their fullness (in God\'s eyes), that disfavor can turn to judgment (Genesis 15:16, Deuteronomy Chapter 28 - "The blessings of obedience and curses of disobedience). Therefore, while many of the Libertarians mean well on liberal social issues, they nevertheless either don\'t see the big picture, or they don\'t believe it will occur.' +p3372 +aS"If it isn't so hard then why haven't you found it yet? I am still waiting and you becoming cocky is not helping you." +p3373 +aS"Good point here, because the media never insults right-wingers....emoticonXRolleyes I don't think anybody is denying that Imus' comments were tasteless and offensive. The point that is being made here is that he has the right to make such comments. He didn't discriminate against anyone. He simply said something stupid. If this is going to be considered a crime, we would all be locked away." +p3374 +aS'Well then, using just the Bible, what is the value of pi to the third decimal point?' +p3375 +aS'Nice spin. Would you have preferred "the civilized world" instead? Or Western Civilization or Gay Western Civilization? Your preference? One case in 1959 isn\'t a pandemic. ' +p3376 +aS"Oh spare me the condemnation ya' XXXX-hard. You aren't interested in saving souls. If you were, you would bother to have payed attention to the countless times you have been told that your abrasive, insulting tactics DON'T WORK. Plus an eternity in hell or an eternity with a terroristic God? I think I will stick with being able to live with myself for even today, let alone an eternity. " +p3377 +aS"The fact that you think the 9-9-9 plan is good only proves you are as stupid as Herman Cain is. Maybe you and Grover Norquist can get with Herman Cain and start construction on Utopian dreamworld, and don't forget to stop by and pick up your other dumbass Ron Paul on your way ." +p3378 +aS'This just goes to prove that these nasty gays are maliciously infiltrating the military far more than we suspected (anyone would think they want to defend the country or something). But no, they just want to infect them with nasty squiggly crawly things. EEeew!! Look the SEALS must be a bunch of raving deviants. Quick, club the lot of them before this thing spreads.emoticonXRolleyes Er . . . *puts down burning cross and slinks into shadow*' +p3379 +aS'He didn\'t pursue the "master race of white Protestant." He was a pure Aryanist, genius one. The very least you could do is get your facts straight, but you probably like spreading this bullcrap on purpose. (Seeing as how you\'re an atheist.)' +p3380 +aS'Yeah guess that probably makes me a gun-toten redneck drunk,shooten everything in sight huh.emoticonXKillemoticonXGood' +p3381 +aS"And you're accusing him of not debating properly? That's the best you can do?" +p3382 +aS'You mean like how you suck any rationale thought or discourse from a debate topic? Talk about ABORTING.' +p3383 +aS'I thought you had vowed never to post in this forum again. ????? I suppose with your views on divorce, your wedding vows have as much weight as your vow not to post here.' +p3384 +aS'Wow that worked well. Please explain where his logic is flawed in the point he made. You cant, because its not. This just proves how much this "point" along with all your other arguments have "flaws in logic" if you will.' +p3385 +aS'Find me a mass shooting in Utah where concealed carry on campus is legal.' +p3386 +aS"****! I go to Home Depot, have a basic understanding of car maintenance, love to fish, always wear sensible shoes and will frequently go without make-up. I never knew I was a XXXX. Man if I can't get my stereotypes right, I guess I will just have to give up my crush on the cute dude guitar player I saw last night..... :p" +p3387 +aS'This is from an article I read on it...so if we just get a bunch of aerosol spray cans we can combat any warming emoticonXGood' +p3388 +aS'I guess I am just "psychologically conditioned" to be blue eyed.?' +p3389 +aS"No I can't marry them becasue some of them are married. Also none have intent to li ve within Mass." +p3390 +aS"Um no... It's the truth... Um, I guess it was sarcasm, but I don't think that would be something that you would understand." +p3391 +aS'I suppose if you Truly Believe its not dishonest to repeat anothers ideas as if they were your own. I will keep this in mind the next time I have to write a paper. Woe betide any professor who accuses me of plagiarism, for he is trampling my religious freedoms! ' +p3392 +aS"Pure conjecture on your part. As a father of three, I have as much vested interest in my kids as my wife has. To suggest otherwise is BS. But, maybe you don't understand that because you haven't walked a mile in a father's shoes. emoticonXRolleyes" +p3393 +aS'I feel a No True Scotsman coming on. Should I even bother to mention Hovind?' +p3394 +aS"I won't waste my time with trolls here. Do you have anything useful to say?" +p3395 +aS"I see you've met my stalker. Lovely soul, isn't s/he? ;)" +p3396 +aS"That's like looking at a rainbow and insisting it only has the color red in it. " +p3397 +aS"Actually, breeding horses and donkeys isn't an effort to create a new species. Where did you get such a thoughtless idea. And neither is interbreeding lions and tigers. However, you don't seem to be aware that neither ligers or tigons are sterile. They are capable of breeding with each other or with either of the parent species. And then there are polar bears and brown bears, which can and will interbreed if given the opportunity. And the offspring are perfectly fertile." +p3398 +aS'You really are an idiot if you think China follows Jefferson' +p3399 +aS'Come now, VoR. Everyone knows that the French would never fight another country.....by themselves. emoticonXRolleyes' +p3400 +aS'Is it not extremely cold at 35,000 feet? Did he not suffer from hypothermia due to the extreme cold at 35,000 feet? Did he not fall from the sky and break near all his bones when the wheel well opened for landing after a lengthy flight at 35,000 feet? Do I have to give you the flight number and type of airplane in order to get my stuffed animal circus prize?' +p3401 +aS"Well are there 4 or are there none? What about the Archaeopteryx lineage, why do you keep avoiding the question by changing the subject? It's no wonder scientists get annoyed with creationists." +p3402 +aS'Really. If that\'s being "saved," I prefer to go down with the Titanic.' +p3403 +aS'Sheeple never understand where money comes from nor do they know cliffs even exist. Full bellies, breeding, mindless entertainment and a government sheppard are their sole requirements.' +p3404 +aS'Already busted, Mr. Trebor. Went in one eye and out the other. Come back when you have something other than generalized rhetoric.' +p3405 +aS"He wasn't trying to. Shooterandproud may be an unreasonable gun nut, but he accepts evolution." +p3406 +aS"No, you wouldn't have. I'd have a better chance of winning the lottery without buying a ticket." +p3407 +aS'Well since Bush took office the mantra has bee "Local Control" has it not. Apparently the people of your state want whats happening. Local control in action. Rejoice in your victory.' +p3408 +aS"B.S. simone. He was the perfect age for Vietnam. Why hasn't he released his draft card? I know, they only sent them to citizens." +p3409 +aS"So which argument do you want to stick with/ The one above that says the black vote was irrelevent or your previous argument in which you claimed was significant. I'll refresh your memory:: " +p3410 +aS'Well, we have our head in the sand in more ways than one.' +p3411 +aS'You are so FUN. Its amazing to hear you say this considering how much you applaud a law that pretty much allows this in Arizona.' +p3412 +aS"Liar, liar, pants on fire. You pro gay sex heathens haven't a clue what's coming your way. And you don't have to like it. " +p3413 +aS'How about not clicking the "reply " button twice (heh,heh,) No, we didn\'t (Thank goodness) AND! PM Blair is recanting from the Kyoto protocol. Bully for him!' +p3414 +aS'I have no problem with them preaching against gays in their churches and the privacy of thier homes. Its when they crawl out from under their rocks that I have a problem. I also have absolutly no problem what so ever with them talking about Jesus if only they would keep to the subject of Jesus and leave all gay issues alone. Unfortually Paul has replaced Jesus in many churches.' +p3415 +aS'Aaahhh, so just not accomplishing our goals and going home is not defeat, there has to be paperwork for it to be a defeat. Gotcha. ' +p3416 +aS'And you wonder why people call "republicans" racist, women hating bigots. (hint: it\'s comments like yours)' +p3417 +aS'In England we have a sack with a couple of bricks inside it.' +p3418 +aS"I'm sure Jebbo has no alterior motive in this at all emoticonXClown No, really he doesn'temoticonXConfused Honestly emoticonXDonno Please stop smirking emoticonXBye" +p3419 +aS"I can't convert you JSD, only Christ can. But you must be open to Him and His Spirit for that to happen so don't be looking to me to save you. And you may think I'm self deluted, as in somehow watered down, but you are self deluded as in completely entrenched in your bigotry and ignorance of what is right and true. But thanks for judging me. I welcome it. :p" +p3420 +aS"This is a laughable oversimplication of reproduction. Humans don't make copies. Do you reproduce asexually? I know I don't." +p3421 +aS'Don\'t forget that he\'s the anti-Christ and wants to starve Seniors and "babies". That\'s part of the DNC mantra too. emoticonXRolleyes' +p3422 +aS'Yes, we should have a speedier route to the needle. If we miss a few, send a few innocent people to their deaths, no harm no foul.' +p3423 +aS'You are, in effect, telling me that putting someone in a position that will inevitable leave them dead does not make you responsible for their death. If I fire a bullet at your head, while that bullet is in mid-air, I am no longer doing anything to hurt you, and you are fine. However, I have set in motion affects that will result in your demise. This makes me responsible for your death.' +p3424 +aS"And the scientific papers don't. The problem here is that creationists don't read the scientific papers. In fact, most can't even understand them." +p3425 +aS"Oh what a shame! Especially if it's true! Where did you get the idea that ID theory is not based on evidence and/or testing?" +p3426 +aS'I sincerely doubt any of that happened. If so you would have links. Yea we know you are cyber brave to the point of heroine status. You are a troll pure and simple.' +p3427 +aS"Ok, if Max is a hillbilly for his punctuation, then you, Ray, aspire to hillbilly-hood! Max hitting some typos while talking about other's intelligence was funny . You going after someone's English is just plain ludicrous! Do you really not know how awful your writing is?" +p3428 +aS'I am un-aware of a conservative nazi party. Did Howard Dean tell you this?' +p3429 +aS'Yes, necessarily for YOUR genocidal rantings. But not for actual reality. ' +p3430 +aS"Hey, it's the same god, just older. The birth of his son mellowed him out, you know,.. made him think about the future more, and have to worry about responsibility and all that stuff." +p3431 +aS"EZ is just delusional , you are ignorant.. there's a big difference. You should know considering he's your best friend...emoticonXHoho" +p3432 +aS'If I ever need a kidney to live, I know who to tell them to harvest from... whether or not you agree to it :P ' +p3433 +aS'Yes when not hailing jesus, he likes to leave droppings here and there about the boards ...' +p3434 +aS'Nice try. Now, tell me how atheists are paying for "Christian benefits"? Do Canadians give money to people based on their religion? They surely don\'t here in the States. I can only collect SS if I pay into the system. My employer AND I pay for my family\'s healthcare. As for their tax-free status, I would have no problem removing it...just as I\'d love to see the ACLU and other crackpot liberal organizations lose their tax-exempt status. emoticonXGood ' +p3435 +aS'Oh vey! Vat du they say about the U.S. Marshals service committing more crimes than people they have actually arrested for a crime?' +p3436 +aS"So you are an expert in this like you were about the economics of sending money out of the country? The problem with letting people like you call the shots is that you really have no idea what you are talking about. It's something I see in a lot of conservatives." +p3437 +aS"Yes I apologize for your ignorance and your inability to 'get it'.... " +p3438 +aS'But in all reality an embryo is inside a uterus, living solely through a placenta and a two month old baby is not. That is a significant difference. One may argue how significant, but it is silly to say the only difference is time.' +p3439 +aS"That's good - so you no longer believe all actions that result in inevitable deaths are killings, only cruel ones. This is an improvement on your previous: " +p3440 +aS'Yes, but if true it would certainly make the investigation go easier and the repair of other bridges faster and cheaper. Ban gay marriage - your bridges never collapse - imagine that!' +p3441 +aS"And then you can go pat yourself on the back and pretend it's all better. I hope your personal comfort level will be worth the havoc that will be brought upon the lives of women." +p3442 +aS'That is the greatest monologue in the history of Earth. Instead of a resume, I will just fax this to my next prospective employer. Great stuff.' +p3443 +aS"When's the last time you heard of someone being killed by the accidental discharge of a fire extinguisher? Or when the last time a fire extinguisher was stolen from a home and then used in the commission of a crime? And don't you think the likelihood of being in a car accident is greater than that of being required to shoot someone?" +p3444 +aS"You seem to require a slick answer to a complicated question - so how about this: Question: Was Stalin a communist ? Answer: That's what he said he was. Hope this is glib and vacuous enough to meet with your exacting standards." +p3445 +aS"I'm sorry, did Article V have a clause I'm missing that says you can only amendment the constitution if it accomplishes more freedom? Is there anywhere in the history of that provision that supports this? Can you point to ANYTHING that supports your incorrect viewpoint? " +p3446 +aS"And isn't it time that the Bush haters on the opposite side of the argument quit spreading lies about the constitutionality of the law? I'm sick of unsubstantiated liberal blather, aren't you? emoticonXRolleyes" +p3447 +aS"So all of this ballyhoo and really you've changed nothing? emoticonXConfused The entire system of inheritance and wills would still be in place. " +p3448 +aS"Except for, ya know, like the whole Old Testament. False testament: archaeology refutes the Bible's claim to history" +p3449 +aS'Hey that cheeseburger is on me,and make sure it has extra rat poison!' +p3450 +aS"Yep, so much for a pastor knowing his sheep(le). It's no wonder that they aren't noticed when they go missing. What ever happened for the shepherd going out and seeking his lost sheep to bring them back to the fold??? As to this case. I mentioned earlier about Rick Warren (author of A Purpose Driven Life)...he doesn't have armed guards in his mega church. But, then again, he's not a fleecing WofF in shepherds clothing who seeks to ravenously devour a flock." +p3451 +aS"Come on down to skid row with the rest of us 'lower class' I'll even buy a bottle of MD 20/20 on me. " +p3452 +aS'The last known passenger pigeon died in 1914. Your attempt to inflame the discussion fails on the grounds of utter stupidity. Might as well be asking if he bagged a tasmanian tiger, or a chupacabra, or the mothman.' +p3453 +aS"Well if you already know you're for guns, then you should know the basic reasons, right? Or was this an uninformed decisions (I heard from my friend that guns are good)? But basically other people have said it. They're protected by the Constitution, they generally result in lower crime rates, and they can be used for defense as well as hunting. Oh, but the burden of proof isn't on the people supporting guns, but those who wish to ban guns. Most arguments for banning guns are easily refutable." +p3454 +aS"The vast majority of scientists do not believe in Creationism, and all those people you listed who say there are only 2 varients evolution or creationism--they are't anthropological or theological experts. All they know is their westernized view. Their opinions have no reflection on Biology in that sense. THey should stick to Biology. There is only 1 true way--that's evolution. THe other's are wishful thinking, whether they be the primordial flood, the divine parrot, or magic god who made people from dust." +p3455 +aS'Do you think that red herrings and strawmen will help your case? ;)' +p3456 +aS'Well nobody has turned up the Ark have they, termites could assure that if properly used. After 40 days and more they would be ravenous.' +p3457 +aS'they held a big bash in honor of sluttish welfare queen Ayn Rand: ' +p3458 +aS"Oh, I think you take delight in spelling it out in excruciating detail. Otherwise, you'd reply on point. " +p3459 +aS"And you know he is NATO's boy how? You get a bit more looney with each post there comic relief. Keep the laffs coming tho." +p3460 +aS"Good, associate yourself with him. After all, having a best pal who weaves a web of contridictions and lies can't hurt you right?" +p3461 +aS"Who is this god you speak of? Can I call him? I have some things I'd like done and he can just say them while on the phone I'm hoping. -Mach" +p3462 +aS"Oh but he is different in the mule's tiny mind. The Southern Baptist types are Christian and so uphold the mule's way of life, so it's alright for them to call for mass death." +p3463 +aS'So, in your scenario, Prototype, are you anti-choice folk going to force us who believe in choice, who believe that a woman owns her very own body, are you going to place us in re-education jails so that we, too, believe that a fertilized egg is a human being?' +p3464 +aS'No. I\'ll type slowly so I don\'t get ahead of you this time. Follow with your finger and move your lips if no one is watching. Scientists get to define what they mean by the scientific words that they use. Not you and not your preacher. Do I get to define what you mean by the word "prayer?" Why not?' +p3465 +aS'Hang in here everyone, Bassman\'s been reading "_____"\'s posts over and over and they\'ve got him talking about the "American Holocaust"! emoticonXBanghead Until you have been in my exact situation, I wouldn\'t expect someone like you to understand. I really don\'t give a emoticonXCensored if you think it is selfish or not - it is not for you to judge.' +p3466 +aS'No, but I read some of the evidence and it looked pretty solid. If this person was sentenced to life in prison without parole would you question the verdict?' +p3467 +aS"Look what is talking about insane, immune to reason, a prisnor of his own giant ignorance, slavery fetishist and one of the comic relief 3 stooges. You might have a dialogue but then insult isn't part of one. No one gives a rat's patoot about your opinion. If it were your country maybe they would but I doubt it. Mean while eat your heart out as you rail in fear about us buying and keeping arms." +p3468 +aS'But how can we make rules without legal lines in sand? At least its better than an illegal line.' +p3469 +aS'I thought it was at the bottom of a large body of water.' +p3470 +aS'Death might not bother you, but the afterlife is going to be a real killer!' +p3471 +aS"Dude, you only figured that out now? I'm disappointed in you. just joking. Everything he states has a hidden agenda." +p3472 +aS'Are there many liberal democrat left wing thinking born again Christians? Weird huh?' +p3473 +aS"I can tell that you dismissed the post below that. And I feel I can assume that you didn't read it. Odd that a paranoid conspiracy theorist / communist who concluded that communism has never led to dictatorship should accuse me of being a fanatic." +p3474 +aS"Really?! Wow! You must know only hardcore pro-lifers. I'm a pro-lifer who believes in birth control and I can rattle the names of about a zillion others who share my opinion. emoticonXWow" +p3475 +aS"And you have a right to cling to superstition and magic as true. But that doesn't make mythology true." +p3476 +aS'Your definition of "Godly wisdom" is agreeing with your political positions and your spurious theological justifications for them, so it\'s hardly surprising you don\'t encounter any liberals who you think have "Godly wisdom"' +p3477 +aS"Funny, I thought Heribert Nilsson was a botanist. Don't let little details like that get in your way though." +p3478 +aS'Here you are using the misogynist POV. No "Rushspeak" if you please. ' +p3479 +aS'Why doesn\'t this apply to Soviet Russia - which had a population of similar size ? Presumably, your answer would be that the USSR was less "developed" than the US ?' +p3480 +aS'April was "recent" ? Please provide evidence from the memo of these "examples".' +p3481 +aS'No need for further evidence why this law would be dangerous to those who do not think exactly like you do! Instead of calling it a government terrorist watch list, we should just drop the pretension and call it what it would be come. The Democrat Political Enemies Terrorist Wish List! :lol: Bloomberg: Deny Second Amendment to People on Terror Watch List' +p3482 +aS"Oh, it gave me quite a shock when that happened! I wasn't expecting it at all! emoticonXRolleyes" +p3483 +aS"You just had to bring Godwin into didn't you. >_> Besides what good is a corpse? Nevermind you're never going to understand my logic so I might as well not waste the time." +p3484 +aS'Oh . . . please be gentle with me. Whew! :p ' +p3485 +aS"Well then the courts must be insane. Because I'm sure there are some gun control laws that they're struck down due to their ineffectiveness." +p3486 +aS'How do they use "the empirical evidence prove it", when they do no research, and no evidence actually supports their "theory"?' +p3487 +aS"Fundies don't say do as I say, not as I do. We say do as God says, not as I do. There's a huge difference." +p3488 +aS'Oh! Goody! At last someone who wants to actually discuss evolution instead of mythology!' +p3489 +aS"Poor little poopie. If your gay sex agenda wasn't of the devil himself you might be better received in the world." +p3490 +aS"If science deals with how information is gathered, different ways of analyzing, and different hypothesis, then it involves worldviews. The base for the worldview of a sizable part of the population should not be excluded. Maybe in Saddam Hussien's Iraq, maybe in communist Russia, but not in the United States." +p3491 +aS'It ok if one persons bottle is bigger or do they kinda have to be roughly equal in size? really.' +p3492 +aS"With a standing president breaking the law to 'protect' you, this should be expected." +p3493 +aS'Was that so hard? Anti gay Christians do want gays to oppose their, marriages, discriminate against them, oppose christians from being able to adopt, and practice thier religion. Since anti gay christians are doing all these things to gay people then that is how they want gay people to treat christians.' +p3494 +aS"Would it be the lawless Cardinal Law officiating at one of the funerary masses for JPII and otherwise serving in a prominent role in all the pomp and circumstance surrounding the pope's death?" +p3495 +aS"Then what's Mississippi's problem? They must be run by a-holes because they are being forgotten. " +p3496 +aS'Really? Then why did you start off your little rant by admitting that "...microevolution cannot be reasonably disputed." Evolution has been observed, and that is a fact. Speciation in both plants and animals has been observed, and that is a fact. Apparently you don\'t know what a theory is. Might it not be wise to learn just a little about science before you make yourself look so foolish? Theories explain facts.' +p3497 +aS'Really. Have you got any quotes from them endorsing monopolies?' +p3498 +aS'Appears a lot of sensible folks are investing in their 401G and 401A plans ;)' +p3499 +aS"I didn't know neanderthals like you and Mr. Grimm had the social graces to know what to do with toilet paper." +p3500 +aS'But you still feel they have the right idea when it comes to firearms?' +p3501 +aS"...? Either you've misread what I said, twisted what I said, or you're just stupid." +p3502 +aS'And we all know when you say "We" you mean your buddies the Mormons and their Money are the ones voting down such bills.. It\'s just a matter of time before people start to wake up. Once they realize they\'ve been duped by an invisible man they\'ll do the right thing and give gay people their rights. ' +p3503 +aS"I'm a redneck because, unlike you, I believe in self-determination?! emoticonXWow" +p3504 +aS"Oh. Then you're just a dupe rather than being dishonest. Your information comes from a moonie. Funny that the Discovery Institute doesn't mention that. The fact that he decided to study biology with the express purpose of disproving evolution. So he had made up his mind that it was wrong before he undertook to find out what is was. Wells was encouraged by the Rev. Moon. He is known selective presentation of data." +p3505 +aS"Numbers don't lie, unless they come out of the mouth of a Politican." +p3506 +aS"You're lying to yourself.. So I'll just keep letting you know until the cloud of delusion dissipates. " +p3507 +aS"Deliberate deception would be putting million year old dinosaur bones on a thousand year old planet. Even more deceiving would be putting vast amounts of oil here as well which takes millions of years to create. I would put the stars in the sky in the same category as this in terms of deception. The stars could be more of a cosmetic thing as far as God is concerned. He could have just added them to our sky without concern for whether it made sense or not. I personally wouldn't fault him for this." +p3508 +aS"Actually the defending of ATF wouldn't do much with regular guns since they have little to do with them. ATFs function is with NFA guns, which you probably know little, or nothing about." +p3509 +aS"Because there couldn't possibly be any undetected illegal gun trafficking, could there be? " +p3510 +aS'WOW and the republicans would never do anything like that now would they.......They would never impeach a president over a BJ now would they?' +p3511 +aS'Where is your "proof" that a magical being in the Heavens created us ?' +p3512 +aS"If we could rub a brass lamp, make three wishes and fix our energy problems immediately, I'd agree with you. But since we live in the REAL WORLD, we must become OIL INDEPENDENT while we are perfecting and building an infrastructure of renewable energy sources." +p3513 +aS"Yeah, right, JO, socialist countries are Eden Mecca's all over the world today. No matter how many times they fail, its proponents just need another chance." +p3514 +aS'Oh my goodness, yes. I had forgotten that scenario. How silly of me.' +p3515 +aS"So you see a cop on the streets, you see he's armed, that's enough to induce aggression and violence, possibly cause you to hurt others, simply because you saw that somebody else was armed?" +p3516 +aS'Oh, I get it. So you believe, but you don\'t exactly "believe".' +p3517 +aS'Thats nice...Care to make an argument, or are you just op-eding my viewpoints?' +p3518 +aS'I thought God forbid them to eat dead cows, or was it poultry ? emoticonXRolleyes' +p3519 +aS"And posts like yours serve no purpose other than to detract from the subject at hand. The subject at hand involves how some people choose to fear the law-abiding and feel safer with the law-breakers. You've done absolutely nothing to dispute these facts and prove them wrong." +p3520 +aS'So you disagree with Zardoz then? True christians are those who profess faith and bear false witness? True christians are those who are ignorant, vain, boastful insulting liars? Interesting...' +p3521 +aS"The truth hurts doesn't it? They are anti my morals, anti my family, anti my equality, anti my america, and defintely homophobic and I would add one more bigot." +p3522 +aS"I am here right now brady. Doesn't look like you are doing so well. All of your claims and propaganda points a simmering ashes just like your .org soon will be. Have you got any useful skills so you can make a living? emoticonXHoho" +p3523 +aS'I thought the almighty expressed his will in the Bible for mortal men to know it...' +p3524 +aS'I am not the origin of anything....I originated in my parents....from where did they originate?' +p3525 +aS'So you are saying that genetics has nothing to do with genetics?' +p3526 +aS'Yeah, there are quite a number of dumb Republican bureacrats running Califorhia.' +p3527 +aS'lol Seriously boring is right. Just think, no Larry Craig scandals.' +p3528 +aS'Well personally I tend to always question the intelligence of someone who believes that that a cosmic Jewish Zombie who was his own 2000 year old space god father can make you live forever if you symbolically eat his flesh and telepathically tell him you accept him as your master, so he can remove an evil force from your soul that is present in humanity because a rib-woman was convinced by a talking snake to eat from a magical tree...' +p3529 +aS"So you are pro-life and you hate liberals? Actually Republicans are being liberal in this case (liberal=bigger government, more laws). But I'll assume you mean Democrats on this. What if the baby is a democrat? If it's a democratic parent it's most likely it will grow up democratic and one more person to attempt to keep abortion legal." +p3530 +aS"I'd lo9ve to test your hypothesis sometime by dropping a few Democrats into a pack of wolves and seeing who survives. emoticonXSmilie" +p3531 +aS'Last time I checked most state boards merely set the guidelines, whether or not they are followed is something entirely different. Still the fact that you have a board of education spouting such ridiculousness is pretty damn amusing.' +p3532 +aS"Abstinence until heterosexual marriage isn't encouraging heterosexual marriage? I've never heard of an abstinence-until-domestic-partnership program. Perhaps you could point us to an inclusive abstinence-only program somewhere. Perhaps not...." +p3533 +aS"So that's what, at least 4 lies in 8 days? Pretty impressive Archie. You should be on your knees asking god's forgiveness for your lies." +p3534 +aS'I did, you rejected my evidence with your usual excuses. Now, tell me about the big bang.' +p3535 +aS'Good- we were tired of you not responding or saying, "it isn\'t worth my time."' +p3536 +aS'Do you have to work at becoming so scientifically illiterate? What ever happened to the creationist chant about evolution being a product of pure chance? You seem to chant all of the other creationist tripe.' +p3537 +aS'Only if you include the fact that while cleaning up the water he is beating the pipe with a hammer.' +p3538 +aS'Oh, ok, I can be politically correct if it makes you feel better. How about I refer to them as "intelligence deficient". And I was really not referring to bona fide "retarded" individuals (those with true pathology). I agree that there is nothing funny about that. How about I refer to them as people who drive like XXXXXX...Is that better?' +p3539 +aS"I've been a fan ever since your first fake hairflip goodbye. emoticonXGood" +p3540 +aS"And where, pray tell, does your un-'ignorant' system of proper behaviour come from?" +p3541 +aS'Oh, I think they ought to creat this superstate and we Americans will REALLY have a big laugh. Go for it. I need the levity.' +p3542 +aS'It was a hypothetical question that has been answered..please try to keep up.' +p3543 +aS"Really?!! I'm not aware of any kids being born to two gay biological parents (unless one is a lesbian and the other a gay man, that is). " +p3544 +aS'I did not know that Obama was of low IQ and a conservative, for he is most assuredly a racism and bigot.' +p3545 +aS"So you support allowing a 10 y/o to buy an Uzi and carry it into a federal court house or school as long as he does not commit a crime? Wow. And your logic about taking criminals off the street and then having no gun control concerns would be perfect...if we had a finite number of criminals. We don't. New murderers and theives and carjackers and dope dealers and bank robbers and child rapists are born every day." +p3546 +aS'Do you know why gay sex sinners refuse to repent? Because they have an idol - gay sex.' +p3547 +aS"Yes, it's been supressed. Only 14 people knew it before some brave soul tortured them until they confessed the horrible truth!!" +p3548 +aS"No I think YOU are the imbecile. And it's great to see you follow your buddy EZ and his ways.. I suppose you've been training with him for some time now.. You're almost identical twins .. give it a bit more time and we won't be able to tell you apart." +p3549 +aS'Really, can you show me this science? You are just as genetically similiar to a white person as you are to an embryo.' +p3550 +aS"How about this explanation - you're reading WAAAAAY too much into your precious Bible." +p3551 +aS'gooey cute as this reads, how is this relevant to the philosophy discourse?' +p3552 +aS'Yeah, the lesbians. emoticonXRolleyes It would also mean the end of the human race. emoticonXGood' +p3553 +aS'Which is why 50 million Americans are uninsured, including 9 million children. With 27,000 from that group dying every year, as a result of "freedom", and unpaid hospital bills the leading cause of bankruptcy and homelessness. Also for the other 50 million who are underinsured.' +p3554 +aS"Dear Jill: P.S. Remember, I gave you the morning after pill? Use it! Or hey make a few thousand dollars and donate it to research (cha-ching)!! P.S.S. Thanks for the herpes! emoticonXGood And you think you have a medical problem, all you have to do is take a pill and you're done with the situation I gave you, but what about the situation you have now given me??? What's that (new) quote: All is fair in Love, sex and war? emoticonXKill Jack" +p3555 +aS"Kudos to Dubya! I thought that Brown was, well I don't know, INCOMPETENT!" +p3556 +aS"And yet the species that exist today are the exact same as the species during the high oxygen content? That makes little sense. It's like saying the world was vastly different before yet perfectly suited for the species that exist today. That is COMPLETELY nonsensical. Where did all of the oxygen go?" +p3557 +aS'I believe Alan Keyes already have used that term on us. (Alan Keyes, the ultra-concervative Republican Candidate for the Illinois Senate seat - in opposition to Barack Obama. The Maryland resident the Republican party had to recruit because they couldn\'t find anyone else in their right mind who would go against Barack. Also the very same Maryland resident/Television talkshow host who beratted Hilary Clinton for moving to NY and expecting to be able to "represent" NY\'ers. Yeah, look who\'s the hypocrit now.)' +p3558 +aS"That would be the fault of you rather than us. Everyone knows a small mind can't see what's beyond it's comprehension level. " +p3559 +aS'Hmmm.... your religious predecessors would have sentenced you to house arrest for something so heretical.' +p3560 +aS"What case? You don't have a case, or a leg to stand on! emoticonXRolleyes" +p3561 +aS'Then God should have used someone they trusted and respected to deliver that message. emoticonXRolleyes ' +p3562 +aS'Because we have different experiences than you and are more educated on the subject. The only ones who tend to ask "Why do you feel you need a firearm to protect yourself" are the ones who\'ve never faced such a situation and don\'t know what it\'s like to be in such a position.' +p3563 +aS"Back in 1967, societal view of marriage was opposite-sex. Wait ... it's STILL that way. (Seen the ballot initiatives around the country?!) The point is that letting blacks marry whites didn't fundamentally redefine marriage, because it was still between a man and a woman. " +p3564 +aS'So theistic evolution is not a belief, not a faith at all? It is simply a humanistic idea that is based on science, using God to fill gaps?' +p3565 +aS'Not the same thing at all! Most gay pride floats are moade of crate paper and glue guns. Not gold. I think you have stratched this one really far. Nice try, thanks for playing. Try again soon! Wow, nicotine cravings make me a mean person!' +p3566 +aS'Oh dear, deluded philisopher nutter alert. No one can empirically prove anything. Fact. End of discussion.' +p3567 +aS'Watch out, Jim. She believes that the only good man is a neutered man. emoticonXIc' +p3568 +aS'WW, are you talking to yourself? If not, then please learn how to attribute statements to the person who made them.' +p3569 +aS'No, this is the point of the 10th amendment. Article 1 Section 8 applies to Congress...the 10th amendment grants all powers not listed to the states or people. The 14th amendment is not the "federal government can do whatever" amendment. ' +p3570 +aS"Hey, someone has to clean our toilets. This may sound brutal, but one of the biggest reasons why Indians, Asians, etc all are heavy on education is because their lives sucked. They didn't get a education and they were living in poverty. Thus, they seem education, mainly the sciences and the maths as a way to escape poverty. Japanese and Chinese parents are massively strict on their kids because they want their kids of excel as the parents either were poor or grew up poor and know what that's like. This may be necessary for these religious homeschooled folks to find out. Spending a life time in poverty or working 3 jobs to make ends meet will change someone's view point on education." +p3571 +aS"ROFLMAO! Nice way of restating the 'inaccurate' statement basically the same way." +p3572 +aS"So biology didn't exist before the theory of evolution was formulated?" +p3573 +aS'And this coming from a so called, self proclaimed "rational christian" ? It appears you have blown your cover as a poser by showing your true colors as an anti-christian atheist and a hatemonger. Thanks for revealing your true Nature. emoticonXGood' +p3574 +aS'Hollow bones however when equipped with wings allow for greater flight distance.' +p3575 +aS"LOL! Aye, Lad, you're lucky that I'm not in my Berserker mood today!" +p3576 +aS"Most certainly. The fact that you think that it is unnecessary only underlines your ignorance. Why don't you discuss beetle lungs for us. Those are organs necessary for the survival of both bears and cheetahs. How about livers. Same story. Thyroid? Pituitary? Pancreas? Go for it." +p3577 +aS"Your extremist views are surfacing. It's likely you'd rather follow California into the pits of wierdism." +p3578 +aS'Oh, i thought "bullet" was some sort of slang term. Never mind.' +p3579 +aS'Ok genius, explain to me how come it is that I dont believe in monsters, in ghosts,in luck,the tooth fairy, the easter bunny, and so many other things that a lot of people believe in, but yet I believe in God. Do I have some deep seated delusional fantasy or something like that. You seem to be wise and all knowing( maybe all powerfull as well). Yep, im convinced you are a legend in your own mind. You believe what you will, and I will do the same, and in the end we will see who is right and who is not.' +p3580 +aS'I just linked you to it. (You do understand how amendments work, yes?) Note the "to lay." ' +p3581 +aS"Except that the government was tapping phones, and isn't interfering with freedom of speech. But if you ignore reality, then your parallel kinda works, I guess." +p3582 +aS'Hardy, har har! It is nice to see sinjin is still "hanging" around :)' +p3583 +aS'So, Steeeeve, I take it you are not for a FAIR society? Is an unfair society a moral society? Please explain. I find it difficult to comprehend.' +p3584 +aS"Why not, after all, if you can't beat 'em, join 'em. emoticonXRolleyes Waxy" +p3585 +aS'Well, either the real or imaginary Phyllis implied those things in the post under discussion.' +p3586 +aS"Well, you got that one exactly right. I didn't bother to watch your video. It was pretty predictable coming from you - personal attacks on creationists. I quoted YOU because of what YOU said." +p3587 +aS'If we did not have criminals, we wouldnt have "shoot outs" as you so call them.' +p3588 +aS'Ever see someone try to kill you?that can causes paranoia also.emoticonXRolleyes' +p3589 +aS' I guess I SHOULD give you some time to mourn, so go back and dry your snot' +p3590 +aS"Interestingly everyone but 'the left' can assimilate what is being said, however, the left is notorious for their ever-present attitude that everyone else is mindless. You don't got no brownie points....." +p3591 +aS"I see. So you actually reject all of science and still are willing to use a computer and the Internet. Don't you know that you are being led astray by your IBM processor?" +p3592 +aS'If you can\'t prove or deal in absolutes, then the basis of your argument, the "absolute" nature of logic, just became pretty shaky.' +p3593 +aS'How about you post all the " Great Amount" of evidence concerning the Gospel Mythology. The fact that you don\'t even bother to read the actual information and form an argument tells me you have nothing......' +p3594 +aS'I think that might mean that you should shut your trap about other people and not pass judgement on them (i.e. Carl Sagan right here in this topic, etc.). What do you think?' +p3595 +aS"But AA's not responsible for that, because he is an A-rab." +p3596 +aS'Hey Matt, if that paintbrush were any broader, you could paint a room in just five minutes' +p3597 +aS">_> one would think pulling the power, breaking into someone's house, and having raped her once and been reported would have been proof enough. What do you want a video of him raping her or something?" +p3598 +aS"You mean other than the fact that Mr. Pocketwatch and Mrs. Pocketwatch don't meet up for a night of whoopee and end up with little baby pocketwatches some time later? How about: I know that humans manufacture pocketwatches." +p3599 +aS'Kill or be killed, survival of the fittest? No compassion, the rule of tooth and fang? WOW, color me impressed!' +p3600 +aS"Great job straight out of the leftard playbook. Can't refute the message so go after the messenger. Would it matter if it was printed in the NY Slimes, I doubt it." +p3601 +aS"So being easy to know makes it good? methinks that's not quite right." +p3602 +aS'I suppose Piltdown Man was the product of newspapers, cute indeed!' +p3603 +aS'Yet another non-response. (We\'re not going to have to start counting these, are we?) It fails to address your dilemma of the "just are" theories. ' +p3604 +aS"I've decided that I will answer this question once and for all if someone can prove to me why people need tennis racquets. If someone can answer this for me, I will attempt the definitive assault weapon response. Have at it." +p3605 +aS'So do you think that the earth is hundreds of millions of years old?' +p3606 +aS"You mean you're for real? You're not setting out deliberately to make creationists look as if they don't know what they're talking about? Because that's all you're achieving. Still no source for the trillions, I see." +p3607 +aS'I was under the impression that he was referencing the video...since he always interchanges the words embryo and fetus I just rolled with it. Secondly, an embryo does have instructions for a brain...while a plant does not. I guess the answer hear depends on the ever evolving definition of "mental existence".' +p3608 +aS'You mean you are as biologically ignorant and as easily refuted as the thread originator? Yes, we knew that already. Why all the big letters?' +p3609 +aS"Oh no. The main disagreement between theistic evolutionists and Fundmentalists is that Fundies aren't worshipping God, but a false idol of their own making." +p3610 +aS'Yeah yeah whatever and there are gay catholics also. The point is that the vast majority of baptists are the ' +p3611 +aS"You mean Priests? Because I hear the ladies are crawling all over them, can't get enough of that catholic loving..." +p3612 +aS"You know, I've seen this BS from you quite often. Is your life sour? Do you need to make other peoples lives as miserable as you can just so you can get through the day?" +p3613 +aS'how about small cute animals? whare is the line of what religion allows, and law forbids? we know it is not where harm comes to another person, or poligamy would be legal' +p3614 +aS'And refusing to donate your resources is killing, so I have killed someone by not donating my blood etc. ' +p3615 +aS'So, is a giant Panda a bear? Or some other "kind"?' +p3616 +aS'Interesting, this is the same type of angry rants that Capo used to post on the abortion debates before he was banned. How interesting that you should get so angry and worked up over such an innocent exchange between me and chloe. ' +p3617 +aS'You would say that, because you are neither a woman, nor gay. Families were ruled by the husband with a clenched iron fist by the way, and women and children had few rights. The family structure was "secure" that way. Yes, the fact that there was lower teen pregnancy outside of marriage, is just such a good thing in and of itself. This meant fewer people burning in hell, which is what is really important.emoticonXRolleyes' +p3618 +aS'I actually agree. Make it legal and sign away your rights. However - there are plenty of fathers who opt....... "Deadbeat Dad" is practically a profession.' +p3619 +aS"A tenth grade education? Why am I not surprised. That explains why you swallow this evo dung, because it makes you feel smart and enlightened. It is the most popular form of intellectual masturbation for the uninformed and pseudo intellectual today; not to mention the religion of the Natural Man. And here's a clue for you buddy, don't believe everything you read on the internet. Try using common sense before swallowing this tripe and if you want to exercise your common sense muscle, go back and reread all of my posts and try to answer all of my questions objectively. You know, those questions that you and every one of your compadres have completely ignored and not attempted to directly answer at all." +p3620 +aS'I am just passing on what I seen personally. I am not trying to prove anything. Just sharing an observation. PS...from "our" point of view? You got a mouse in your pocket? Please explain.' +p3621 +aS"I have an avatar? And I wasn't born in 1990. Remember what the say about assumptions..." +p3622 +aS"and you shouldn't forget the thousands of gays incinerated at this death camp!!!" +p3623 +aS'Quote Mining. You got to love it. Always fascinating when stuff is dishonestly taken out of context. Normally, we see this from creationists, but you are by no means the first prolifer who has engaged in this practice. But lets look at it' +p3624 +aS'Agreed, and the vehicle they will be riding in will be the Prosperity Express.:)' +p3625 +aS'There are certainly more people who think that species evolve from earlier species than there are than people who think species evolve from later species.' +p3626 +aS"You know what I find amusing here...your entire argument revolves around how it will affect your wallet. Forget about the lives of the people who are denied rights in this country that you take forgranted. That is the true christian-American spirit isn't it? Oh how proud our forefathers would be if they could see us now...oh wait...most of them owned people...nevermind." +p3627 +aS'And it seems that the only thing that repulses you is religion. Curious... emoticonXRolleyes' +p3628 +aS"If that's the case I wish someone would unplug me. I'm getting tired of this version of reality." +p3629 +aS"It's only obvious to the delusional ones, as I did not lift it from anyone. Just stating the truth. If it hurts, tough." +p3630 +aS"Waxy, don't you have better things to do than cruise gay threads. ;)" +p3631 +aS"And I didn't have to choose to be homosexual. It is a natural inclination. I chose not to hide or lie about who I am. However you are the one who seems to be under the delusion that being gay is a choice. Once again I ask you if it is just a choice then you choose to be gay this moment." +p3632 +aS"Oh come on. If those words were hateful, then you need to 'investigate' probably millions of people, because those are pretty normal sentiments. Canada must have a LOT of tax dollars. I don't entirely agree with what he said either, but I think it's downright scary that your govt. investigates something like that." +p3633 +aS'What is it about the same piece of paper you do not understand?' +p3634 +aS'Well, Jews have always been indecisive. Like this joke says: Q: How many Jews does it take to screw in a light bulb? A: 4; 1 to screw it in and 3 to argue about which way it turns.' +p3635 +aS"Right, what I think doesn't make you naive or delusional, what you think does." +p3636 +aS"Oh, but it does mean something to him. He can't/won't say what, but it sure isn't based on homophobia, no siree! It's just really, really important that marriage stay a striaghts only club, for reasons that can't be explained, but there's no bigotry, don't worry on that score. emoticonXRolleyes" +p3637 +aS"You mean the guy who didn't tell his own cabinat he was going to Argentina to go get a little.. and left a power gap because no one knew where he was? You mean that guy? That is a heck of a lot worse that actually having an affair. Eliot Spitzer at least had the decency to resign when he got caught being a hypocrite. I personally don't care about his diddling with some woman.. although it does make him a hypocrite since he ran on the 'family values' campaign. It's that little thing about leaving his duties behind without communication that is the real destruction the public trust." +p3638 +aS"Exactly my point! After four pages he finally gets it! Give him a hand! There's a brain in that head after all! But my point is, that unless you do disagree with the stats, your argument is irrelevant. [QUOTE]What I have been saying for the last three pages is that your question is idiotic, as you're comparing things which are completely different in function. They are not analogous. " +p3639 +aS"Why is it that people don't want to admit that it was Bush's' reckless spending on a War that we didn't need , the tax cuts for the richest 2 % of America, The Fact that under Bush they had to ADD space on the Debt clock, not to mention that he was as dumb as a rock, yet they can place all this blame on Obama who inherited this mess and has done more to get us out of it than Bush or any Republican would have done. Unemployment is High, we know this, but it was on it's way up when Obama took over because under Bush more corporations left this country , more businesses closed down, the Banks were allowed to do whatever they wanted without regulation of any kind, and yet none of it is his fault?.. Enlighten me..." +p3640 +aS'Somebody needs to check his Little Golden Dictionary. "Random" and "selective" are antonyms. To say that selection is random is to admit ignorance of the English language.' +p3641 +aS'Yeah, lets tax those rich greedy jerks!!! I mean really, why be equal when you want something for free right??? SCREW FREEDOM I WANT MY HEALTHCARE!!!' +p3642 +aS'Well he can defend his tax difficulties by claiming he is a creationist and thus cannot be trusted with quantitative processes involving a bit of mathematics. Then again he can tell IRS that GOD will provide and they should contact Bush to get Gods cell number. I am sure that IRS, GOD, and Hovind can work it all out.' +p3643 +aS"But that is a misunderstanding of what the big bang theory is. What it isn't is an explosion. I don't suppose you have actually studied any astrophysics or astronomy upon which you base your rejection of the big bang, have you?" +p3644 +aS'He certianly is better educated about things like that than certain evangalic christians.' +p3645 +aS'The question is do the dogs want to be protected ? Those poor dogs, for all you know they might prefer death.' +p3646 +aS"Two answers: they were either of the ant kind and didn't eat wood until they underwent hyperevolution after the landing of the ark, or they were placed in a suspended state of hibernation by 'Awlmighty Gawd' (only two - one male and one female, in spite of the fact that termites don't actually propagate that way). It is, after all, the word of Gawd, as revealed in the wholly babble." +p3647 +aS"I did not say that I thought that, that would be putting words in my mouth. Sure they'd have access to the report... Sneddon probably had his grubby hands on it ASAP. So what if the investigation was done by private investigators? If Sneddon did it, he would plant evidence... he probably did that when they searched MJ's house. Oops I mean... the government NEVER lies. emoticonXWow" +p3648 +aS'Can you say "OVER GENERALIZATION"? Can you say "UNJUST STEREOTYPING"? Can you say "LIES"? Can you say "MISINFORMATION"? Can you say "MUDDYING THE WATERS? Can you say "JAAAMAN"?' +p3649 +aS'Maybe you can talk when you provide us with the actual translation.' +p3650 +aS'but you too are a figment of my imagination, and you only think you are a giant alien dreaming about this world because i imagined you as such. you cannot disprove this either.' +p3651 +aS"Damn, takes some real gonads (wait, you're a Lib, so scratch THAT one) to claim the power to get inside the minds and hearts of the masses...a protest by Conservatives MUST be racist, but a protest by Libs is pure and righteous, correct?" +p3652 +aS"if you can find an impartial judge, i'll take you up." +p3653 +aS"No, Archangel, if it wasn't done with a gun present any murders committed do not count. In this case, one armed person could have ended the slaughter so quickly it would be incredible but the blood dancers still could have had their day by celebrating that the gun put the children at risk more than the knife murderer and no telling what else they could say to dramatize the situation by claiming that guns were banned there and THAT person broke the law so off with his head...after they harvested his body for useful organs that is." +p3654 +aS'My house evolved over millions of years. it built itself . Prove me wrong. emoticonXRolleyes' +p3655 +aS'Because all scientists hate god. Again, this is a fact.' +p3656 +aS'Because the gay personals are full of married straight men looking for discrete gay sex' +p3657 +aS'So, do you spend all of your days as an Obama shill? You have two posts, both anti-McCain. I hope Obama pays well. emoticonXRolleyes' +p3658 +aS'Yes. So you are indeed committing the genetic fallacy. And apparently unaware of the semantic ambiguity of the sixth commandment. Thanks for clarifying.' +p3659 +aS'Proof for a non-event? What century did your purported non-event supposedly occur, Einstein?' +p3660 +aS'On the other hand abortion is only opposed by the born and wars are started only bu the born and choices are made etc etc etc etc.' +p3661 +aS'Which is why the "medical establishment" endorses smoking, drinking heavily and a fatty diet, with no excercise, because they believe we are predestined by our genes, right? Why do you persist with these blatant lies?' +p3662 +aS'Your "opinion" was a kindergarten question outlining a "problem" that never existed, a "problem" that was explained to you 3 or 4 times. How is it our fault that you ask such embarassing questions repeatedly, despite having the answers explained to you repeatedly? How does this reflect poorly on anyone but you?' +p3663 +aS'But yet you have the right to make an an a-s-s out of yourself? As far as the nude beaches go, it would be worth the plane fare if I knew you were going to be at one so I could laugh my a-s-s off. FROTFLMAO ' +p3664 +aS"You said there wasn't a pro-choice group before Roe v Wade. However I would have to do my research to dig up a group in 1850. Hold on..." +p3665 +aS'I dunno. Those Priuses are so small inside and out. How much explosive compound could Hasan fit into the thing and still be able to get in and drive it?' +p3666 +aS"Well, you certainly defended this video, Archangel. How interesting to now hear that you were defending material you hadn't even viewed. But I'm not going to do your homework for you. It's on this thread; jyoshu posted it. So search his posts on these pages. " +p3667 +aS'And so you have it... Socialist lunatic fringe view that human lives are only worth what the government says its worth....' +p3668 +aS"This is begging so many darn quesions it's boggling my mind!" +p3669 +aS'Quite True. I guess those are pretty useless. I suppose His Noodly Appendage works in mysterious ways. ' +p3670 +aS"###!! You're seriously advocating allowing kids to take guns to school? Don't you have enough greiving parents already without giving kids the option to shoot out a disagreement?" +p3671 +aS'Those damn black people! All wanting respect and equal opportunity! They should just be happy with what they got!Why should they work for the same pay? They are just selfish! [/end sarcasm] This argument is tired *yawn*' +p3672 +aS'Have you EVER read anything that Dawkins wrote? Any of his books? Now didn\'t you tell me that I shouldn\'t be so "self-confident" about the Bible because you thought that I hadn\'t read it? Can you spell hypocrisy? I knew you could.' +p3673 +aS'Cheerio and thanks for the examples! Yes these are perfect examples of animals creating "unnatural" things- I happen to be thinking of Beavers and their dams but hey, thats just me.' +p3674 +aS"Considering what you turkeys did to the State of California, with its budget and social depravity, you have no room to talk. I'm surprised the Lord hasn't cast San Francisco and L.A. into the Pacific Ocean yet." +p3675 +aS'You forget, that all those nice rewards? None of them are rights.' +p3676 +aS"The IDEA isn't a bunch of bull, but our implementation of it does leave a lot to be desired. Too bad Jefferson wasn't immortal!!! " +p3677 +aS'I agree, it is pure genius...especially how it has infiltrated politics and governments. emoticonXBanghead' +p3678 +aS'Nothing anyone has said has proven anything I have said wrong in any way because all you have are unprovable and unproven assumptions. Now go over to the other debate Creation versus evolution like a good little boy and you will get my response to Tiktaalik. Nkaaaay?' +p3679 +aS'Ah! So wellspoken for an addle-pated twiddle poop! I congratulate you! And a total lie! Who the Hades wants 13-year-old children to be sexually active? No responsible, thinking person could wish such a thing. You malign Planned Parenthood. You have ceased to be a credible commentator on this issue.' +p3680 +aS'I note the bolding but the reason for it is as inscrutable as the peculiar form of what appears to be English which is used.' +p3681 +aS"Give them a bus schedule or are they too good to ride public transportation? Can they carpool? There's always a solution to temporary transportation problems and it usually doesn't come from Uncle Sam. emoticonXRolleyes " +p3682 +aS'You actually have some full insight into gays and what we have gone through and think were pathetic. Once again insults and a bigoted view Archie. You never cease to amaze me.' +p3683 +aS'Sounds like a lot of ***Bull*** to me. bah du bup. BTW, Sammy the Bull spelled his name Gravano, not Grevano. emoticonXRolleyes' +p3684 +aS'For one to have evolution as their foundation belief, means that one cannot be certian of anything.....' +p3685 +aS"In other words you would wait until we were attacked again before doing what is required. If we vacillate and wait for the nuclear cloud it will be too late. It amazes me; utterly amazes me, at how strongly felt the left believes in the good will of bin Laden and the terrorists to clean up their act. Just amazing. But with Bush? Noooooooo. He's ALWAYS wrong and never right. Isn't that about it?" +p3686 +aS'Yes, but an adult asking such a question is not capable of understanding the answer. ;)' +p3687 +aS"Please be sure to give that message to all the criminals out there. We wouldn't like to have the situation where all the law abiding citizens got rid of their guns and the criminals kept them, would we?" +p3688 +aS'The Archbishop of York has a screw loose too on that subject.' +p3689 +aS'Oh please... You just refuse to acknowledge anything of a victory for LGBT people.' +p3690 +aS'Repent, you Christ-denying, gay bashing radical heathen.. well, you already are going to end up in the Pit.' +p3691 +aS"It's not often you see such a golden opportunity handed to you on a silver platter. " +p3692 +aS"V.P.C. once again I am shocked and awed. Why no mention of our fearless atf's and the agents they caused to be killed. And all the Mexican citizens they have caused to be killed? Oh wait if the vpc did that it would be kinda like jumping outta bed with your partner. SPECIAL NOTE: Some ATF agents are fearless. Drug War Victims Drug WarRant These are a few of the one known about.It works both way's Brady and more our way much more." +p3693 +aS'Born again? Pardon me for getting it right the first time. ;)' +p3694 +aS'You do realize you just disproved your own basic points yes? The pictures you posted are falsified because abortion clinics and small health clinics contract out to places to have their medical waste incinerated. Good job on failing to realize you just proved Cunx correct.' +p3695 +aS"Wait until Gen. Petraus' report comes out, then you'll eat those words. BTW, do you take ketchup or mustard with that? ;)" +p3696 +aS'you always run and hide behind Bryan like the true coward you are' +p3697 +aS'So now you want to demonstrate that you are also ignorant of the fossil record?' +p3698 +aS'emoticonXRolleyes Drink Kool-Aid often? No major party in the US supports the mass murder of an entire race of people.' +p3699 +aS"So this time you are really serious about leaving emoticonXRolleyes So now mental existence isn't good enough (as it is not unique which was my point) but human cells is important and something of a human brain. Well what importance are human cells and a human brain? It seems the idea of a human having importance is not just limited to me...you just happen to add another criteria at the end that you feel is important as well." +p3700 +aS"Who is Allah, Alex? Great, I'll take 'things a terrorist god would do' for $1600 Alex. " +p3701 +aS"I didn't think you had either the intellectual or logical ability to respond. :)" +p3702 +aS'I wonder if I can convince a judge that all other legal documents should be read in an "enlightened" way. I can perhaps get out of contracts and speeding tickets if I just show them the light and error of their ways! Your supercilious post amazes me.' +p3703 +aS'Well actually I have not seen your point of view expressed anywhere but on these forums. Seems to me if its rising to ascendancy at least ONE scientist somewhere would have recently at least mentioned it. Quick search reveals NO mentions at all. Of course if you say its displacing NDS then I guess I will have to agree - you being a well known biologist and all, but I remain perhaps a bit irrationaly skeptical.' +p3704 +aS'Contribute? Oh please.... Take your crying act somewhere else. Like I said no one is buying your Bull anymore....' +p3705 +aS'Yeah, and we all know what happened when they did that with Galileo. emoticonXRolleyes' +p3706 +aS'Ah yes, adopting the Nazi Germany policy of encouraging neighbors to snitch on others, to reward tattle tails for violating the trust of others and invading privacy.' +p3707 +aS"I'd argue that the woman wants to control who lives or dies. That's scarier to me. emoticonXRolleyes" +p3708 +aS"Oh you do love to do the psychological technique known as 'transference' don't you...or is it 'projection'??? You are so obsessed with gay sex, I would not be surprised if you and Ted Haggard have a lot to talk about." +p3709 +aS'Sheesh ! What a way to bring goodwill to all people in the world, "yearning" for democracy. And if I remember right Saddam was our toady during the first Reagan Administration. Hmmmmmm, wasn\'t George Herbert Walker Bu$h our Veep then ?' +p3710 +aS"Don't take it personal EZ, Mental illness is a disease, not something you can do anything about...." +p3711 +aS"So wait, Phunting's good deeds will get he or she a higher position in heaven...but (Phunt, what sex are you?) he or she is going to hell anyway...gotta love Christian logic." +p3712 +aS'About a third of the weapons seized in Mexico were referred to the U.S. for tracing; approximately 11,000 out of 29,000. About half were successfully traced. Better than 90% of those to U.S. dealers. Of course your definition of "minute" might differ from mine.' +p3713 +aS'No, they don\'t. Creationists do. "Why haven\'t all animals turned into humans?"' +p3714 +aS"Right. I'm damaged because I'm not a Christian wing-nut. I'm still looking for at least some refutation." +p3715 +aS"You your qualifications in logic allow you to judge that? I suspect that you are talking out of your elbow since I haven't seen any evidence that you know what logic is. Mostly I see hysteria and superstition in your posts." +p3716 +aS'Flip back to page 9 and do try to keep up. I am not going to spam the board for the weakest link.' +p3717 +aS'On the evidence, that must have been where his brain was located.' +p3718 +aS'Do try to keep up with yourself. People like you are always talking about how we need gun control laws in response to the crimes taking place. But you have absolutely no answer for what to do when said laws are violated.' +p3719 +aS'You are just playing dumb, right? There will be fewer technicians and fewer orders for equipment PER INSURED. Their pay will not be cut. There will be fewer of them PER INSURED. Initially the absolute volume will increase.' +p3720 +aS'How remarkable. What a singular idea to invent a contest of skill in which a person in opposition tries to prevent one from outperforming them. Is this the only type of game in which there are two sides, or is this a novelty? ' +p3721 +aS'For being such a "happy Aussie", you sure do love to take shots and criticize people. Run out of those happy pills, perhaps? :)' +p3722 +aS'Did you go to college, Trebor? You might want to look up how "pedophilia" is spelled. LOL!! Then you can go have a beer with Orion and watch his head swivel.' +p3723 +aS"Use some common sense, would you. And while you're at it, trying reading! I said, and you quoted me as saying: " +p3724 +aS"Gansao, don't be bitter because of what you had to do with a producer, all those years ago, to get your act onto the Gong Show.emoticonXClown" +p3725 +aS'Ha! There are a lot more gay owned and straight non-homophobic or non-religious businesses than that. Thanks for the cheap and clueless stereotype though!' +p3726 +aS'You know I actually considered that. Too much work, though. I have added to my list of things to do when I retire. That is, of course, assuming that we turned things around by then. If not, I will likely be too busy "holding the fort" against the hordes of starving yuppies.' +p3727 +aS"So it's alright for a Evo to insult you and go off on a tangent, and expect to get answer. What's the point in answering if your being mocked, before you give answer. Now I know why there are few Creo's on this forum." +p3728 +aS'Even Joe the plumber abandoned the garbage scow? Say it aint so!' +p3729 +aS'Winning any political election has never been about electing the "best" man for the office, it simply means you appeal to the majority of people that showed up to vote. Smartest and most popular aren\'t necessarily the same person, if you went to school you probably remember that. ;)' +p3730 +aS"VoR is about as Catholic as the Archbishop of Cantebury. I'm curious about what I'm right about though, seeing as I asked you whether you think that medically un-necessary abortions should be legal or not." +p3731 +aS'I though the torture was just a result of the number of wing nuts there were around the place.' +p3732 +aS'And you can be described as a "pre-dead corpse" as well. Histrionic revisionist linguistics only serve to push some form of dishonesty agenda that can not stand by itself on the facts. It is the coward\'s route. Are you a coward???' +p3733 +aS'Oh, I agree....private security companies are the answer. Very republican of you.' +p3734 +aS'So, faith and argument from incredulity. If you find it impossible please state exactly what part is impossible. Then maybe an actual scientist could take over. Major in molecular biology? Not even a full degree; not like your going to doing anything original.' +p3735 +aS'Ah yes, the Might Makes Right principle. Mob rule. You are so fond of it I have to assume that you assume the mob is always going to agree with you. Poor, naive soul...' +p3736 +aS"First off, your sick. To actually want to see more death and destruction. Are Americans somehow less intelligent? Your notions are racist for lack of a better term. What to meet stupid? Walk out your front door and sample the people on the side walk. You'll find the same stupid around the world." +p3737 +aS'Even then, your statement does nothing. They aren\'t "getting themselves pregnant". A doctor is doing a medical procedure, that may or may not result in a pregnancy (ya know, those little sperm thingies?) emoticonXAngel' +p3738 +aS'Are you just not bright enough to make the connection between: ' +p3739 +aS'So then the handgun ban did absolutely nothing. Nice to see you could finally admit the truth.' +p3740 +aS"Impressive. Misses the point, biggoted, and regionalistic. You've got a whole ignorance trifecta going there! Well done. emoticonXGood" +p3741 +aS'No, no, no. If humans were created 4,000 years ago, then the earth was created 4,000 years and a few days ago. At least try and get it right.' +p3742 +aS'You don\'t see protesters walking around going "I wanna marry my dog" or "beastiality rocks" do you?!' +p3743 +aS'What part did your real daddy play in it? Will he be on the island, too? This is a good example of a scant level of maturity. Your simple out for various arguments is to play the idiot/XXXXX card. More and more each day I see you as a complete waste of oxygen.' +p3744 +aS"Well, I suppose creationists would object to careful definition of terms and the assiduous distinguishing of fact from non-fact, wouldn't they? It runs counter to all they hold dear." +p3745 +aS"And, let's see, when did the job loss actually start? Oh yes.. We can trace the troubles starting in 2007, with a big melt down in August/September of 2008. Let's see.. Obama must have been a terrible president to have caused that.. oh WAIT. That wasn't Obama, that was BUSH.. Excuse Me." +p3746 +aS'You know something is wrong with this world when people attack the act of posting an opinion (that of Ms. King) and another condemns the idea that someone may read it and develop their own opinion. Saving lives is not just a Republican goal. And yes it is an act of desperation. All acts are an act of desperation when it comes to saving the natural process of life with out interference of those who place their comfort above the life inside them. Whatever is wrong outside the womb, is not the fault of the inhabitant within the womb.' +p3747 +aS'So Simone, if the shooter had instead driven his Toyota Prius into a crowd, killing many as a result, would you call for banning Toyota Priuses?' +p3748 +aS'Well as long as you ignore the evidence, why do you need proof. Blind faith works just fine.' +p3749 +aS"Are you suggesting the pollsters are bias? Nooooooooooo, that couldn't be. You think they were trying to sway the election? Noooooooooo, that couldn't be. These guys along with their Hollywood and music industry buddies are lossing their base. They need to go back to movies and music and leave the politics alone." +p3750 +aS'You mean the Conservative tilting Supremes donot know the law ? You want to tell them that ? emoticonXChicken emoticonXChicken emoticonXChicken emoticonXChicken emoticonXChicken' +p3751 +aS'Anything to get around doing things the normative way ... emoticonXDonno' +p3752 +aS'I must agree with Sarge about the homophone,could that be why Mr.Obama appears to stand tall from your view?emoticonXCensored' +p3753 +aS"That's what's known around here as a lie, and I wish you were capable of feeling ashamed of yourself." +p3754 +aS"I'm sure the response is that He could. But, y'know, God's a real XXX sometimes... (Besides, who do you think used His uber-complex biochemical engineering skills to create the prions responsible for FFI, anyway?)" +p3755 +aS"Well good at least you are aware there is no reason beyond your opinion of morality against gay marriage. So by all means don't marry a man and the problem is solved." +p3756 +aS"Thanks, for giving me the balls. I didn't know you were trying to convert me. So, because I don't believe what you want me to I'm retarded. You know I could say the same about you, it works both ways. You see I don't want to convert you, all I'd like to see is you open your mind to other possibilities. Adios, Arrevideci" +p3757 +aS"Very Interesting! After only 33 posts Mintaka already has the political and gun advocacy priorities of individual members here down pat; or should I say the resurrected antonia, our resident National socialist healthcare freak does and couldn't help but expose her personal insights where none should exist for this alleged newbie." +p3758 +aS"So you're claiming the beardy bloke nailed to a couple of bits of 2X4 didn't actually exist?emoticonXRolleyes" +p3759 +aS'And have a child with a terminal disease and watch them most likely die slowly because of my "soul mate." Yeah. I\'m thinking if they\'re willing to make me go through that they\'re not a soul mate at all. >_>' +p3760 +aS"oh ok, so I assume you don't live in your own house? I was trying to picture over 61 people fitting into one house. :)" +p3761 +aS'Spoken like a true Conservative, not one of those liberal "compassionate conservatives". emoticonXGood ' +p3762 +aS"I'd be curious if Berkowitz studied whether a sword or club produced the same effect as a firearm? Short of castrating all boys at the onset of puberty, I'm afraid boys will be boys." +p3763 +aS'We have a terrorist supporter among us, objecting to restrictions on terrorists! Why do you hate America?' +p3764 +aS'And ill continue to have pity for abused and unplanned pregnant women lacking basic healthcare.' +p3765 +aS"Doesn't surprise me lets all jump ship and put our heads in the sand... Even more of a reason I should run for public office :p " +p3766 +aS"Sounds like a movie... We could threaten to use our old nukes on all the potential enemies...oh, yeah, we've already done that." +p3767 +aS'Well if no siege comes, I guess no harm no foul.' +p3768 +aS"You're the one who needs to get a grip. Lots could get worse, but not for the reasons you're stating. But I take it you're finally admitting that (actually) 50 million uninsured human beings who could die or go bankrupt is a big problem." +p3769 +aS'There you are NATO, you have justified a Final Solution for the "Mexican problem". Let me quote you ' +p3770 +aS"Did the bill include burning heretics at the stake, stoning them out of the village or removing a women's right to vote?" +p3771 +aS'Here is a mind blower. Maybe they are celebate because being married to Jesus they are saving themselves for sex with him.' +p3772 +aS"Then you would want me to be something god did not create me to be? Silly, I 'd say! Humans are part of the animal kingdom. Mammals if I remember from biology. Are you not an animal? If not, maybe the mothership will come and pick you up soon." +p3773 +aS"Really? Well, when I have a kid, I'll be sure to just leave it in the woods, since it can apparently care for itself." +p3774 +aS"It's Satan, not Satin. And he's your daddy, not ours (John 8:44)." +p3775 +aS'No, you shot off a smart remark while failing to address any of the issues. Par fro the course for you. It seems like maybe you would be more comfortable on a blogging page than a forum page, especially a blogging page without a space for reader responses.' +p3776 +aS'ah but freedom of speech has many limitations. Since liberals are opposed to American principles their speech can be considered treasonous. No country can survive if it allows itself to be undermined. Lincoln went all out to preserve the country, we should do the same things by making liberals illegal. ' +p3777 +aS'Kinda like, "Don\'t speak of the speck in your brothers eye when you have a plank in your own?" :p :p The scary part of this insane reality is that there are a LOT of whackos that think just like and actually support Pat Robertson. And I would venture to say that 98% of them who voted, voted for Bush. Ha! There\'s one born every minute. Perhaps this might clue some folks in, as to the concerns the folks have on the left, as to the direction this nation is headed? Or, then again, maybe not. emoticonXRolleyes' +p3778 +aS'Oh, Mrwriterman made a funny. I guess not all gays are humorless. :) ' +p3779 +aS"Public policy? Takes waaaay too much thought. Now one can go to ballpark here and pay $8.50 for a half pound hot dog, smothered in thick layers of chili, cheese and grilled onions (2,200 calories, 55 grams of saturated fat, 1,600 milligrams of sodium). That's a no-brainer (literally). Dono" +p3780 +aS"Balderdash! Atheism isn't science. That's nonsense. And science is atheistic in the same way that plumbing is. " +p3781 +aS'OMG SO TRUE!!! Two of my friends chose to be asian, my mom chose to be a woman, and my PE teacher chose to be black. OMGZZ@! YOURE SO RIGHT!!!' +p3782 +aS'Yeah.. caught that... But, hey.. I think you made a mistake.' +p3783 +aS'Hmm maybe I should take that one to a local patent office...' +p3784 +aS'Funny how people who are "for" capital punishment don\'t see it that way...' +p3785 +aS"First of all a man cannot terminate tissue he isn't carrying.The father can opt out all he wants but when that fetus becomes a born person he is responsible just like the mother is." +p3786 +aS'Oh yes yes... never mind the thousands of lives destroyed, the shame, the guilt, the anger, the fear and all the while perhaps being in a combat zone and having that stress... Never mind the hundreds of millions wasted retraining new people because we kicked out perfectly able people because of their sexuality... All you can do is sit here and spew non threatening bunk to try and scare people and make your bigotry somewhat tangible to your warped mind...' +p3787 +aS"Can't you come up with your own line? I really did not think you would see the bucket of worms that would be stirred up if gay marriage was lawful but I tried to give you my best shot.............I did not even mention the income tax implications if this was allowed............" +p3788 +aS'How about the pass that the Clintonistas routinely gave to Bubba for his Oval Orifice tryst with Monica?? ' +p3789 +aS'Yes but of course was that rreally a consious choice? I see sarcasm but no real answer that is credible.......seesh if I wanted srcasm I would have watched the Orielly factor. (oh wait thats yelling and bicering) knida like politics! (oops sarcasm hehe)' +p3790 +aS'ROTFLMAO. The guy is more like Bush than I realized. Come on, Easy, if you have never tried pot or XXXX, you are in the minority. Nobody cares.' +p3791 +aS'with tens of millions of gun owners, and hundreds of millions of guns in the US, and you think the guns are still the problem....' +p3792 +aS'Unriggable, your statement should read the so-called "pro-life" since they are anything but.' +p3793 +aS"And that's why I think you are a troll. There really aren't any experts here. There are several who are knowledgable in a variety of topics, but that knowledge seems to me to be the result of being both educated and widely read. It also indicates an ability to reason and an open mind." +p3794 +aS'Perfect. A creationists caught repeating the same refuted arguments on different forums. Resistance is met, run like a coward to another forum.' +p3795 +aS"Methinks it's rather obvious that mintaka is JimIrvine because no rational newbie would come here and agree with Irvine's ridiculous and juvenile attacks/assertions out of the box. emoticonXRolleyes" +p3796 +aS"A woman's right to choose to keep her legs together is not in any way abridged by this bill. Ho, ho,f***ing ho." +p3797 +aS'how about a Swiss University? they have full automatic weapons in most homes, and target shooting is a national sport.' +p3798 +aS'Plenty of examples,law abiding citizens are shot by criminals daily.However the O.P. is about police going off the edge.Oh did I mention that some of those law abiding citizens sometimes shoot the criminal trying to kill them?' +p3799 +aS'Is this another attempt of yours to paint all that believe in smaller, less-intrusive government as loonies? Very transparent, sorry. :(' +p3800 +aS'Society highly values the creation of future taxpayers, especially under deficit-spending socialist presidents. :p' +p3801 +aS"You're deluded, as usual. Anything that doesn't balance the budget is based on LIBERAL THINKING. And you don't balance the budget with massive tax hikes and gutting the military like the liberals are fond of doing. And you're going to vote for liberals? Obama? His latest budget plan was defeated 414-0 in the House. Not even his liberal cohorts would vote for it. And you vote for Obama? What the hell is the matter with you people?" +p3802 +aS'Not nearly as tired as the "YOU can\'t live like that because it is against MY religion" argument. Hell, that one pre-dates Christianity!' +p3803 +aS"And yet we're still waiting for your mental condition to finally hit you like a ton of bricks.... Denial is the usual reaction..." +p3804 +aS'You put such confidence in articles written by partisan plebes, using unsupported, irrelevant links to make the printed text pseudo-intelligent. I cannot imagine you holding your own in a serious debate.' +p3805 +aS"Tell us, Steve, now you've been thoroughly snowed (again) by the GOP, how's the weather up there in CloudCuckooLand?" +p3806 +aS'You can believe what you want, your beliefs are not relevant to the issue.' +p3807 +aS"...but you are just fine with marijuana smoke huh? I am working on the assumption that you run home to tell mommie or you run to find your teacher and report it immediately. Midgets like you got to have some backup. How and why do you always change the subject? Can't take the heat? Do you ever read headers? You got a mouth on you as big as grand canyon." +p3808 +aS'I can neither confirm nor deny at this particular juncture that I may or may not be either male or female. :) ' +p3809 +aS"Apparently in Marc9000's small, small, small world, if you're not a Christian, you're a atheist. Thus over 4 billion people are atheists. emoticonXAgree" +p3810 +aS'This is great. You mean none of the Davidic line ever copulated with women to produce their descendents? LOL! ' +p3811 +aS'You will soon learn, my friend, that fundies have very, very short memories when it comes to refutations of their arguments...' +p3812 +aS' I guess cheer leaders are the new tough guys and gals!' +p3813 +aS'That\'s the difference between liberals and conservatives (AKA "real Americans.) Conservatives have a sense of humor. Liberals don\'t.' +p3814 +aS'Ah the Pinhead element of the tinfoil hat brigade raises its pointy head.' +p3815 +aS'I thought that the most commonly accepted date for the alleged birth of Jesus was in 4 B.C. Assuming the current calendar really were keyed on the birth of Christ, how could Christ have been born Before Christ?' +p3816 +aS"You mean your hypothetical I presume? Murder violates the rights of the murdered by relieving them of their life. That's why it's illegal. You're a bit slow I see." +p3817 +aS' How does this address your claim that the Second Amendment served as a defense against a tyrannical federal government? Are you moving the goalposts now? ' +p3818 +aS"Of course God would have something to offer to lowely peon, but that doesn't explain what use God has for lowely peons, except for doing stupid pet tricks." +p3819 +aS'You and your spiritually-challenged friends are obviously too stupid to understand the difference between a cult and Biblical Christianity.' +p3820 +aS"so you're one of the many people you got question 1 right emoticonXIdea thank you...thank you. You are the many reasons why the US is still standing on its foundations and not collapsing into senseless ignorance...THANK YOU! :)" +p3821 +aS'so you think it would be ok to fire people for being secular atheists?' +p3822 +aS"Anyone who can read the entire page will find that Zeus is in there, but since you apparently can't read I forgive your ignorance.. emoticonXByeemoticonXBye" +p3823 +aS"Like the crusades and the inquisition? How about the Southern Baptist Convention, formed at the end of the Civil War with the express purpose to discriminate against blacks? And of course, the KKK and the Aryan Brotherhood make the same claims as you. Of course, you're going to tell me that you are a christian and they aren't. But when people tell me they are christians you aren't always around so I just never turn my back on them. That way, even if they are follow that strange pull to make a bad decision, I will at least have my eye on my money." +p3824 +aS"Really. Some people would think I'm in cahoots with the creationists. I predict their behavior and then they go and do it." +p3825 +aS"And this differs from your cell how? (oh wait it doesn't). " +p3826 +aS'Well, you did... only that "you" then resided in countries like France, Brittain, Sweden, Norway, Germany, Ireland, Botswana, China etc, etc ;).... And yes, we where all racists back then...' +p3827 +aS'I typically don\'t read Antonia\'s propaganda pieces, so is she holding up the UK as a shining example of dental health? If so, I suggest that she ask a typical Brit to smile, so she can see for herself the folly in such an assertion. The US\' "bubbas" have better teeth than the average Brit. emoticonXRolleyes' +p3828 +aS'You are like, so totally noble and sensitive! I really admire your pro-humanity stance. That is going out on limb.' +p3829 +aS"Just because you don't hold the same beliefs as we do, does not invalidate our belief. I feel sorry for you if all you have to believe in is a small petri dish of algae. You do need absolute proof if your going claim it as the only possible way of creation." +p3830 +aS"LoL What part of a Binding Document, the Constitution with it's Bill of Rights, don't you understand! You demand that we obey the law, but you would allow Government to break the Supreme law of the Land, and you call me a nut? I gotta say my friend, THAT is truly nutty! emoticonXSmilie" +p3831 +aS'Maybe I wanted it from a source that was worth looking at' +p3832 +aS"That's nice, but have you ever thought of reading your own religion's Holy Book so that you can intelligently discuss what it is that Jesus and his disciples said? " +p3833 +aS'Actually no. You read the article again, and thoroughly this time.' +p3834 +aS'How often to you poke your nose into monkey genitals in order to know that?' +p3835 +aS"Look who uses profane language; And you claim I'm regressing ! emoticonXChicken emoticonXChicken emoticonXChicken emoticonXChicken emoticonXChicken emoticonXChicken" +p3836 +aS'Do you have something-other then words from a dusty old book of myth to offer as an explanation?' +p3837 +aS"A gay person is a homosexual, friend. He can't change that part about himself. He was wired that way. If you don't like the idea of gay sex, then I'd suggest you not participate in gay sex. That's pretty simple. If you don't want gay marriage, then don't get one." +p3838 +aS"Well if it's so easy then how about you provide the names of the dealers who're selling howitzers and anti-aircraft missiles and fragmentation grenades? And while you're at it, supply the names of the companies who're making them in violation of the various federal restrictions." +p3839 +aS"Well, the French have always been an independent and rebellious lot, not like those staid northern Europeans. And let's remember how much we all owe to those heathens of Greece and Rome! " +p3840 +aS"Like you were raised? Looks like it didn't work and now those hormones must be kicking in? Nothing worse than a menopausal female grinding her ax...their favorite victims? Males." +p3841 +aS"My article say's this. it needs to be noted the alleged evidence for extensive history assumes uniformitarian geology. Because of this fact, this response adds up to: Your theory doesn't work under my theory, so your theory is wrong. Of course you don't want to consider that fact, do you?" +p3842 +aS'Not the best school system there although the Mayor has a nice car I hear emoticonXClown' +p3843 +aS'Why would anyone want to get to Heaven? Archangel and people like him would be there, praying and chanting 24/7 . Thanks but no thanks!' +p3844 +aS"So, in order to be against gay marriage, a person has to be faithful in his own marriage? Gimme a break. He supports what his constituents want him to support or he doesn't get elected. In case you haven't noticed, the majority of Americans are against gay marriage." +p3845 +aS"Just as being anti-gun won't compensate for being born with a small brain." +p3846 +aS'So how are those gun free zones working out for you?' +p3847 +aS"It doesn't take a Ph.d. to understand who wrote the first Gospel. Grade school children can look up who was the first man to walk on the moon." +p3848 +aS"I see you still don't understand what a strawman is. It is hard to have a strawman when the comment wasn't directed at any particular claim...." +p3849 +aS"Uhuh! And you've got a bridge in Brooklyn you want to sell me. . . ." +p3850 +aS"And I'd hate to let you sneak across your dishonesty, distortions, disingenuous, and unsupported false assertions." +p3851 +aS'hunter, would you be interested in actually discussing this logically? or do you simply wish to toss out empty assertions and run away when challenged? if your view is the truth, then you have no reason to run.' +p3852 +aS"By your own admission you haven't 'hung out' with stoners for a while and you're making generalisations about them to people who do spend a lot of time with stoners?" +p3853 +aS'Of course anyone can cite exceptions.....did you see the baby? Probably not.......As long as the mother is OK the baby does not count....... emoticonXRolleyes' +p3854 +aS"I don't have to say anything here, your post made it sound sick enough. Yes, freedaom at all cost. Isn't that the theory this country was founded by?" +p3855 +aS"This is odd. You voluntarily participate in a Religion discussion forum - indeed, the frequency of your posting suggests that this participation occupies a substantial portion of your leisure time - but when someone presents you with the opportunity to demonstrate the validity of your position, you 'have better things to do'." +p3856 +aS"And so goes the fact you're more than willing to let rapists and murderers go free." +p3857 +aS'Here in Michigan, they closed down the first rest area on I-75 because of the high amount of gay encounters taking place there. Maybe you should poke your head out of your closet once in a while and see what the rest of your community is up to. ' +p3858 +aS"Other than the Soldini firearms were purchased legally there is no proof that he had a concealed carry permit. If he had the AP and the rest of the left-tard media (redundancy alert) would still be shouting it from the roof tops. Just because the Brady bunch-VPC says so doesn't make it true. Then what else can we expect from a self confessed torturer of helpless small animals and arsonist?" +p3859 +aS'"I don\'t know; just like I do with everything else, I pretend it\'s not a problem for my indefensible beliefs." emoticonXRolleyes' +p3860 +aS'But did you consider it relative when you posted this on another thread?:' +p3861 +aS'Somehow I seriously doubt that "Testimonium Flavianum itself" meant "from the website by Peter Kirby entitled \'Testimonium Flavianum\' that happens to have the text of Josephus\' An 20.9.1." But if that\'s what you\'re going with, whatever. ' +p3862 +aS'And it remains to be seen if your are. Pick an unreasonable and dumb argument go with it.' +p3863 +aS'I am still waiting for you to tell me why the gay priests only molested boys.......It has to do with how they are physically contructed.........' +p3864 +aS'I would argue against this but I would need to introduce subjectivism into the argument. lolemoticonXCensored' +p3865 +aS"Don't you have that other weird warped forum your posting in now?! Go there with your advice." +p3866 +aS"Hey Dane, you're real good at calling people ignorant, sanctimoniously declaring everything they say as false, blatantly false, or falsehoods. But would it be too much to ask for you to back up your rejection of berts arguments with anything more than insults? Like some actual facts for example?" +p3867 +aS"Then you must have expected him to be a mute on the show. He was basically just there; he made no worthy comments. It was so bad he had to resort to an emotional hypothetical. He made no sense, and that comment had no part in the interview. Bush doesn't send kids to Iraq. First of all they volunteer. Second of all, they are older than 18. Please let me know what comments Michael Moore made that you thought were worthy. You might have trouble. " +p3868 +aS"Yea I guess you're right, you people tend to blur together after a time." +p3869 +aS"The first Christians were Jews. Anyone who claims to be a Christian but hates Jews is a XXXXX. An anti-Semetic Christian is like an oxymoron term. And an Aryan is supposed to be someone with blue-eyes, brown-hair, and light-skin. You don't have to believe in 'Aryanism' to be Aryan, and the mortal enemies of Aryans are not Jews. 'Aryans' may hate Jews, but most Jews aren't bigoted. By the way, Hitler did not like just Jews but others he considered 'inferior' to the 'superior' 'Aryan race.' Do some actual research instead of pulling XXXX out of the air to conform to your screwed up opinions." +p3870 +aS'No more of a poison than alcohol (actually far less), should we start lacing that with strychnine? ***I can see it now*** *Excuse me bartender...what are the drink specials? -We got Bud Light bottles for $4.00, Jagerbombs for $7.50, and this new drink called Convulsions on the Beach. First one is on the house!' +p3871 +aS"What's Sesame Street?... Oh wait that's where you got your pathetic education isn't it, no wonder you're so ignorant. ... emoticonXChickenemoticonXChicken" +p3872 +aS'Im still waiting to find the text book that will show me how to get perfect order out of nothing explodeing!. What we need is theory to revolve around facts not facts to revolve around theory, other wise all we are ever gonna be are unanchored ships on stormy seas!..' +p3873 +aS'Or maybe they do? Could this sick, perverted individual be the spokesperson for the so called "gay movement"?' +p3874 +aS"So, then you DO feel that what you did was a sin. Otherwise you wouldn't have asked forgiveness for it. I have one question. What was your motivation for starting this thread? Was it to try and somehow prove that a person can be a Christian and have an abortion? Just curious. IMO, you are right that you are forgiven for it, as God is a forgiving and loving God. But I hope you don't do it again." +p3875 +aS'How about he pulls it out from under the Ramadan tree and unwarps it rather than your Hitler Youth moment?' +p3876 +aS'Yeah, they should only teach the sexual positions the Pope would approve of.' +p3877 +aS'If by "We the People" you mean a handful of self appointed persons with strong financial intrest in the running of the country... The document is largely a copy of the theories of Montesqieu and John Locke.' +p3878 +aS"You don't understand words; why the hell was I thinking you'd understand numbers? emoticonXRolleyes" +p3879 +aS'Not even Answers in Genesis thinks that these ideas have any credence. But Mr. Kent Hovind still does.' +p3880 +aS'What part of the Christian worldview? A part of the Christian worldview says stealing is wrong, so you must mean stealing is good? A part of the Christian worldview says rape is wrong, so you must mean rape is good? A part of the Christian worldview says sexual immorality is wrong, so you must mean sexual immorality is good?' +p3881 +aS"No, back to school... turn in what educational credntials you feel you have, and just stay at the coffeehouses... at least you have a .005% of hearing someone ineject some truth in one of those sidewalk tete a' tete's you nutters are so fond of... but here you are dead wrong. Have you ever heard of an egg? ever heard of a sperm? An egg is still considered a multiple cell organism, and a sperm as well. You're gonna have a hard time pulling that one off." +p3882 +aS'The gentleman (??) in question has been presented the facts numerous times. He "pooh-pooh"s them as irrelevant. He places himself above scientific research. He doesn\'t know the difference between unsolicitated testimonials and scientific evidence.' +p3883 +aS"What difference does it make? Do you only care about frequent killings and choose to ignore isolated incidents? If so doesn't that mean that innocent people dying only interests you when it's in large enough numbers that you can try and exploit them for your own selfish agendas?" +p3884 +aS'Very impressive how you argue science. Are your arguments science, or are they anger? When Dawkins argues it with his above statement, that Darwinism is as all-encompassing as God is stated to be in the Bible, is it really science, or is it religion?' +p3885 +aS"And once again (s)he rambles on while responding to nothing said in the prior post. At least you're consistent in your irrational hate speech. BTW, the term sword of truth implies no violence against anyone at all. Except in the mind of paranoid hate mongers, that is. emoticonXGood" +p3886 +aS'Man, you are really enriching this debate. We should all sit and listen to your wisdom.' +p3887 +aS'Yea, at least on earth you get some relief, you die eventually.' +p3888 +aS'Whatever. First you say no one is calling you a hypocrite, than you say people do it, but it just an attack tactic. If you ever get to a mental state where you can entertain the possibility that a critisism of you can be grounded in reality, than go back to my post where I say "This is why..." and give it a read again. Maybe you\'ll learn somethig. Till then...' +p3889 +aS"Come on, Aivlis. Give the guy a break. He's just practicing being a grown person.emoticonXHoho" +p3890 +aS"What I posted lays out the 4 conventions if you will just read it, your questions will be answered. I can't read it for you ya know." +p3891 +aS"In America it's called free speech. If anyone here there, or elsewhere in America doesn't like free speech, and doesn't like a debate forum where the Word of God is found, then they can go whine to their mothers (yo mama)." +p3892 +aS'However, we do give people alcohol, there are many people who drink it on a regular basis who are not addicts. What do these substances you mention have to do with being gay? Would it perhaps be okay for me to have homosexuality on the weekends or after work during happy hour? ' +p3893 +aS"It's as much of a point that Phillp Johnson has. Trying to use Philip Johnson as a source about evolution is like trying to use Jack Chick as a source about Catholism." +p3894 +aS"Well, it's not as though you hold your tongue all that often when it serves in support of an anti-gay argument. " +p3895 +aS'And creationism was investigated and explored completely and shown to be false.' +p3896 +aS"Except, of course, the evidence is totally against that. Plus, there is the little matter of infant mortality... and lack of resources. But hey, don't let common sense and evidence stop you." +p3897 +aS"And if there's one thing I can count on, it's your insistence that we can assume guilt and should make a public spectacle of the matter before even investigating any matter. " +p3898 +aS"If you need a decision made for you, ask me. I'll be glad to. Be prepared to raise your child though." +p3899 +aS'That has to be a typo my friend. If you can compress the EB into only 1012 bits then you can write your own ticket in the field of data compression! Lets see 100 million pages into 1012 bits - fantastic - please tell us how. I really would like to put the entire literature of mankind (and more) on an Ipod.' +p3900 +aS'Oh relax for cripes sakes. This is the "fun debates" forum if you didn\'t notice.' +p3901 +aS'Oh, so this only happens here, huh? Every single hardcore drug addict is here, huh?' +p3902 +aS"Forgive me. A few minutes with Google ought to give enough info to refute what he said, so I didn't bother. " +p3903 +aS'And of course, the sea of Montalban\'s assertions as science, the sea of Montalban\'s out of context quotes, or the sea of Montalban\'s misrepresentations of what others have said. It seems that Montalban knows the "TROOTH" and won\'t be discouraged with facts. Sadly, Montalban knows what he believes and reality seems to be irrelevant.' +p3904 +aS'So the "Origin of Species" has more information for theistic evolutionists than the Bible does?? Does theistic evolution believe in Satan?' +p3905 +aS'Hoo boy! That target just got larger. You still don\'t get it, do you? Not a "slave contract," but a covenant, a promise :)' +p3906 +aS"How do you know if they WANT to believe in a deity? They simply don't." +p3907 +aS"Man cannot invent anything that did not already exist in form. Did we invent the wheel, or discover the idea? Did the Wright brothers invent machine powered flight, or was it that they stumbled upon it? In every culture, in every society, man looks to something greater than himself. They simple don't leave it at themselves and be done with it." +p3908 +aS"It's a self-defeating question. You're asking why numbskulls participate in numbskullery." +p3909 +aS'Like the crazy idea the Earth goes around the Sun.' +p3910 +aS'Horse manure. When did you invent that self-serving rule? Put it back in your ditty-bag.' +p3911 +aS'So what? How long did the idea of magical creation out of nothing in 6 days hold prevelance before somebody actually challenged it scientifically?' +p3912 +aS'No - but they certainly have a bias. As do we all.' +p3913 +aS'My apoligies emoticonXAngel It must have been the testosterone emoticonXBanghead emoticonXBanghead' +p3914 +aS"To bad you don't have the power to define the situation." +p3915 +aS"well if I don't get an answer here I'll just spread it around the whole internet. Fine with me." +p3916 +aS'Are you blind? I was refering to Nancy Pelosi\'s "\'fair\' speech" policies, not free speech. Fair speech is an attempt to limit free speech.' +p3917 +aS'To the exclusion of all others? I thought you were working for acceptance and inclusion. You are the only one allowed to "exclude?" ' +p3918 +aS'Ever hear of artificial ensemination? Why is that heteros only think there is one way to produce children? I find hetero sex disturbing,and an unnatural lifestyle choice.' +p3919 +aS'Yes none of the organs flown in from Africa or India would be farmed from murdered people, would they? ' +p3920 +aS'Well I suppose I could\'ve always put up a sign that said "Trespassers will be held with legal counsel, robbers will be shot, survivors will be shot again" but you\'re just welcoming trouble with that.' +p3921 +aS"Are you jealous because they won't let you out of the institution while gansao get's to run all over the place?" +p3922 +aS"No, it's one of those rare instances in which YOU are on the right side of an issue. :p;)" +p3923 +aS"And the ability to digest nylon is not a new function?? You seem to have a different conception of 'new function' that what matches with reality." +p3924 +aS'My mistake; I read it wrong. And guess what? I do know what the moon is ;)' +p3925 +aS'Am I suppose to take that as an insult or just a passing remark,hmmm?' +p3926 +aS"I know. Sad indeed. Orion and his liberal ilk make it a habit to come up with these sophomoric ideas. As if Jesus (who is God according to Scripture) would come out and give Moses the commandments against gay sex and then turn around and incarnate as a gay man. Get real. When the antichrist comes he'll probably be gay (one OT scripture alludes to the antichrist as having no affinity for women, and Satan loves to mimic God's kingdom with some kind of diabolical twist.). Then Orion will prostrate himself before him and receive him as his long lost savior." +p3927 +aS'I suspect a good many monitors and keyboards got cleaned on that one? ;)' +p3928 +aS"And woman's law superceeds both, or hasn't your mummy taught you that little lesson yet Hunted?" +p3929 +aS'Most congregations are expecting to leave the U.C.C.? Where did you see this, or are you making up the news again?' +p3930 +aS'Does this mean that you have finally repented of your multiple divorces??' +p3931 +aS'Mr. Brown was able to attend ball games. Not exactly held captive was he?' +p3932 +aS'Cannot be helped. You make it far too easy. But do not think of yourself as a loser, think of yourself as a student with significant learning deficets.' +p3933 +aS'We accept your forfiet. Two more to go! Once they post, this thread will be pretty much closed. I predict Penfold will go first, followed by Jo. emoticonXSmilie' +p3934 +aS'by this stupidity a KKK mob with guns is a militia!' +p3935 +aS'Did you start the thread in the hope that no one would respond to it ? Is responding to and pointing out the trolling and hypocrisy you have shown wrong ? But I congratulate you for finally admitting that this is a trolls thread. That is more than I expected from you. And as for me reinforcing your contention about conditional christian love ? I do love you my friend, I just hate what you represent which is why I express my love by correcting you and calling you on your every hypocritical contradiction. emoticonXAngel I am Archangel after all. emoticonXGood' +p3936 +aS'Sigma, I was only joking. It hit me this morning though that if I\'m willing to talk about abortion without bringing up God, I wonder if the Pro-Choicers could argue their position without bringing up "women\'s rights". ;-)' +p3937 +aS"well that won't help you when you go to hell...Woo hoo" +p3938 +aS"The judge should be informed that 'the leading' IDist admits that ID is religion. (yes, I've posted this before...) What else could an unembodied designer, which naturalism perforce excludes, be but a deity? So Dembski's ID has one or more unspecified deities - supernatural, unembodied designers - creating biological systems, at some unknown time, at some unknown place, by some unknown series of steps. What a great scientific theory! :-)" +p3939 +aS'Ahh, pointy tailed devils with pitchforks, more of your menagerie of divvels, demons, saints, angels, demigods, ghosts and other varied superstitious nonsense. Which of your gods created them, Snerdley?' +p3940 +aS'And none of those explanations have anything to do with a magic being who made everything out of nothing. Science should teach currently held theory.' +p3941 +aS"We gotta GET them law-abiders for having the audacity to believe the Constitution's Bill of Rights! Huh Brady!" +p3942 +aS"Well so is falling out of a building onto a piece of rebar. Or getting mashed in a car crash. There are a lot more of those than shootings but you don't seem to care. Why is that? Is it because you love to dance in blood?" +p3943 +aS"Thats funny, because these scrambled eggs sure don't taste like KFC to me." +p3944 +aS"You mean my dog 'CIgarette'?? I took him out for a drag." +p3945 +aS"So, all knowledge is ignorance, and all events not in the present are ignorance. I'm not following you here. How about we leave the definitions as they are, so that we can differentate true from false? Calling everything ignorance doesn't move us forward in the debate. If we accepeted your claim, we are typing ignorance and concuding ignorance, so what would the point be?" +p3946 +aS'Yeah, renaissance right back to the dark ages, that is what you a holes did the last time you were in charge.' +p3947 +aS'But the official IUPAC name for acetylsalicylic acid is 2-acetyloxybenzoic acid. Duh.' +p3948 +aS'You mean the malcontents bred? Oh Noes! Who are the "we" who get to do it back, and whose army will you borrow to do it with? the present bunch of obese felons are already struggling to cope with their present duties.' +p3949 +aS"I don't recall seeing anyone who's for gay marriage come out truly in favor of the idea here that I recall. Can you? Naw, didn't think so. emoticonXSmilie" +p3950 +aS"Really? Why don't you go out and start randomly hurting and killing people and see how far that argument gets you in court. " +p3951 +aS'Well, she IS getting her info outta the bible, one of the bloodiest snuff novels ever written lol...' +p3952 +aS'You mean like a tapeworm? Should removing tapeworms be illegal too?' +p3953 +aS'Actually, no one cares if you believe in god. That is your business since it is something that you take on faith without any evidence that it is true. And no one believes in "evolutin" [sic]. The theory of evolution is an explanation for observed facts that has been repeatedly tested. It is the best explanation that scientists have been able to formulate. It is based on evidence and not faith.' +p3954 +aS"That's quite a leap, even for you. How did you know that the officiers were pro-life? Or that any pro-life people would condone the officiers' behavior in this instance. I certainly think it was excessive. I guess I must not be pro-life by your illogic." +p3955 +aS'More irrational drivel, and have you forgotten that I am an arab? A smaller minority in this country than blacks? Yet you must play the race card and assume that because I oppose this criminal woman for threatening the life of her unborn child by actually holding her responsible for her own poor conduct that I am somehow a racist. Your argument is as pathetic as your character is found wanting, you immoral apologist for all that is wrong with this country.' +p3956 +aS'So how is the oil and gas agreement with China working out for you antipodeans?' +p3957 +aS'The CIA seems to agree with me. Appears to me that you tinfoil hat is starting to fray about the edges.' +p3958 +aS'So AIDS is the fault of "the gays"?emoticonXRolleyes lol it\'s been a long time, JP.' +p3959 +aS"And you're a poor replacement for that koolaid-drinking Seer Travis." +p3960 +aS'and where did they find the participants for this study, bath houses and bars? Gay men are a hidden population in statistical relms. It is very hard to get a true random sample of data on gay men. Studies will say whatever the funder of the study wants it to say. You just get data from the right place. If you want gay men to look like raging alcoholics get your study participants in a bar. If you want them to look like sexaholics then you get your study subjects in bathouses. The truth is that to have honest statistical data you need RANDOM SAMPLES.' +p3961 +aS'Why? Would you rather get stabbed to death for twenty minutes than get hit in the head with a bullet? A desire to have suffering extended - hmmmm...' +p3962 +aS"Being' immune' and being 'less prone' do not mean the same thing. I doubt that you will become the poet laureate of Dallas if you do not understand words sweetplums. You are an old camp fruit and a snivelling bigot . Are we talking daddies? What does an old fruit like you know of daddies? I bet he's sure proud of you.emoticonXChicken I wouldnt be proud of having a mincing bigot for a son..must have set his sights low. Do white men still leave a bad taste in your boyfriends mouth sweetplums? You are not married .." +p3963 +aS"Wow, make up your mind. Either populations change over time (evolve) or they don't. Would your wingless beetles be able to produce wings again if they were somehow beneficial again? You are starting to sound like Darwin and his finches." +p3964 +aS"Even if winnie the poo could read he simply doesn't have the brain power to comprehend." +p3965 +aS'Yeah, ok, keep up with your "Creationist" therory and I\'ll stick to my much more believable idea of "Evolution." Keep your religion out of MY Government!' +p3966 +aS'Good one, Truthsayer emoticonXGood ...a rich white woman... LOL! Gotta be from Texas. :p' +p3967 +aS'They are the people who dont get their boilers serviced regularly:)' +p3968 +aS"ok, fine, you can use that line, but there is also a moajority that believes in other things. there's this crazy thing, called a choice. we all have that. remember? i made the choice to have sex, you're making the choice to be a total ***hole. we all make a decision, and its the strong ones that stick with them, even though there are others who dont believe the same thing." +p3969 +aS'I think if that happened, Texas probably will go back to being the lone star state.' +p3970 +aS'Just another bogus reason for having and abortion............There are thousands of them.........' +p3971 +aS"Whatever. emoticonXRolleyes I think you're making a mountain out of a molehill here, but that's up to you." +p3972 +aS'Right, because besides rape and health concerns these really are the only other reasons women have abortions. emoticonXRolleyes' +p3973 +aS"Superglue! How you gonna make the DNA? This is all facinating but it doesn't have a thing to do with information theory. Copying DnA to do reasearch is a neat trick and quite useful. Is there a point to this?" +p3974 +aS"And Sotomayor argued that the American people have absolutely no right to defend themselves. What's your point?" +p3975 +aS'thats true. i helped. my next bible will be 10 times better if i get around to finishing it' +p3976 +aS'Oh, really? Translation: the only amendments that rise and fall are the ones that I want to.' +p3977 +aS"Just be like the Jews and Christians and steal the idea! A lot of their mythology isn't original: it was stolen from other people who thought it up first." +p3978 +aS'What a relief, I would hate to think Batman was so gullible. But Dems, I can understand them thinking that. emoticonXHoho' +p3979 +aS'And if the majority supported banning Christianity would that be ok just because the majority supports it? Civil rights should not be up for a vote ever no matter what.' +p3980 +aS'Anyone can "give consent". The issue is wether the parson is old enough to make that decission. I bet the children Michael Jackson raped gave their consent. Does that make it "allright"? Are the kids "mature enough" to take the consequences of those actions?' +p3981 +aS'So then I guess you could also debate that algebra serves no purpose as well.' +p3982 +aS'Enlighten me. What evidence came out Monday, Tuesday Wednesday, Thursday or Friday of this week?' +p3983 +aS'Go ahead and toss your Bible in the trash so you can justify your gay sex sin. See if that gets you into heaven.' +p3984 +aS"perhaps you would like to explain simplistic. Is the anthropic principle simplistic? What natural law created natural law? Where did the information come from? Is matter creating matter simplistic? Matter creating information? Here;s a deep thought: If matter created the Universe what if it changes it's mind! emoticonXRolleyes" +p3985 +aS"You mean you don't think you have your own made-up religion?? How interesting! Do you really think you're fooling God? Or us?? Or even yourself??" +p3986 +aS"Wow, you are high on Christ...Scary...I haven't seen this addiction up close emoticonXRolleyes" +p3987 +aS'Well I guess then it\'s open season to call all anti\'s "CHRISTONAZI"' +p3988 +aS"Wow, what a group of rude, self important, pompous, pseudo intellectuals who will insult and personally attack a person for one grammatical error. I meant to say the UNIVERSE has aged from 4 to 14 billion years old since I was in school but rather than deduce that you call me dumb and ignorant ? With all of your so called intelligence can you prove the Universe is now precisely 14 billion years old ? Can you prove Neanderthal Man was a human descendant ? because DNA tests dont prove that out and yet PHDs and Masters Degreed scientists insist they are. That's why the bible say's that the wisdom of this World is foolishness to God." +p3989 +aS"Now, that logic is so bad, it's worse than circular reasoning. It's figure eight reasoning." +p3990 +aS'And it will, I guess, take an amendment to deny rights to and make a whole segment of the population second class citizens.' +p3991 +aS"Since he's commented on it several times now, and seems to have me confused with someone else, maybe he's channeling a past life or something--who knows? Better yet, who cares? :p" +p3992 +aS"Really? What book is that, because I have seen no quotes or links to any source of any info at all from you anywhere above on this page. So once again accipiter, what in the world are you referring to? You and the obvious child oughta get along fine since you both offer nothing more substantial than personal attacks which are based on your own warped beliefs and corrupted interpretations of that which you disagree with. Here's my original post again, I challenge you to explain how these alleged stone age sheep herders whom you scoff at and mock described contemporary living creatures which paleontologists today identify as dinosaurs, from skeletal remains?" +p3993 +aS"If they haven't been discovered yet, HOW THE BLOODY HELL DO YOU KNOW? Ten percent more brains and you'd be pondlife. emoticonXKill" +p3994 +aS"whooooosh. emoticonXBye That was the sound of my point as it went over your head. How much do you want to but I don't find any? Go ahead bet me! Are you afraid?" +p3995 +aS"Well that's a stupid statement. Stupid enough that I can't even wrap my head around it and make a proper comparison." +p3996 +aS'Oh, but Sina does not live in a womb so she is unimportant.' +p3997 +aS'Somewhere in the middle? I always though it was solidly to the Right. :p ' +p3998 +aS'An immaculately presented response, entirely avoiding the topic, or indeed reason, in order to unwittingly further the case for retrospective abortion.' +p3999 +aS'Explain that one to the thread starter. He claims he is the victim of age discrimination when he states "I am a person 15 years of age and I want my gun, yet I can\'t get one. Why not?"' +p4000 +aS'And how do you know what other animals can analyze? Is that another supreme abilities of us humans? To read the minds of animals?' +p4001 +aS'Depends on how basic they are. Not much call for using flint, steel and tinder to start fires.' +p4002 +aS'Dont mind him, hes just sticking up for his new boyfriendemoticonXLove' +p4003 +aS"And I'm sure you of all people know the mind of God... Please, you just take snippets of scripture, and twist it into well this is absolute. God loves gays and lesbians, but you fling god out as a way to justify your slander and bigotry. " +p4004 +aS"Well then. All of the ex-christians have it both ways don't they. Since they are saved they can lie, cheat, steal and have wild, illicit sex (following the example of several christian preachers)." +p4005 +aS"I dont need a sex lesson from a little boy. Once again you missed the point( getting to be a habit). We are talking about behaviour that was condemned by the preacher, one of which was adultery..not fornicating but I am sure the preacher would condemn that too If you read the link you would know. If homosexuality is condemned by god then they cannot marry in gods eyes..keeping up? If gays cannot marry then gay sex must be outside of marriage therefore it is fornicating. You really should try to use your little head more. 'Lets stay on topic' who made you a mod?emoticonXChicken" +p4006 +aS'There are somewhere between 10 and 20 million gay people is America. 10,000 is a small minority, yes. And even your article admits this number is unsubstantiated, AA. More lying for JESUS.' +p4007 +aS'Yes, because Republicans are the only hypocrites in the government, right? emoticonXRolleyes' +p4008 +aS'Here we go again with the name calling..............See what I mean Justine.......no wonder the gay movement is losing traction in this country........' +p4009 +aS"Anything that doesn't fit your preconcieved prejudices is automaticlly wrong?" +p4010 +aS'Considering what the TOE says, if a dolphin ever gave birth to a chipmunk, it would disprove evolution.' +p4011 +aS"So in your own words the police want to go on murder sprees, because they're armed. According to you the military is just waiting for the first convenient excuse to open fire on anyone, be them designated enemies or just innocent bystanders." +p4012 +aS"You're a Bush-man, aren't you, gnojek? Come on, admit it. With that stance, you'll be in the White House before sunrise. (You do realize that I was being sarcastic - right?) emoticonXRolleyes" +p4013 +aS"Yes, that was one of Galileo's more absurd leaps of logic." +p4014 +aS'Yeah, so if on my math test, I put "The answer is 7 because my god says so" and the teacher marks it wrong, he\'s the XXXXX?' +p4015 +aS"Let's allow same-sex marriage only. Then heterosexuals will have the same right to marry someone of the same sex. " +p4016 +aS'Being put in a cell with Howard Dean for life? emoticonXCry' +p4017 +aS'Good point. If she is old enough to be licenced to drive, presumably. If she travels by bus, train or plane, are those companies complicit?' +p4018 +aS"Your own source said the amendments are 11-27. Amazing how the 2A got incorporated into the XIV isn't it without Article V. emoticonXGood" +p4019 +aS'That could also be very effective in a positive manner during political campaign speeches.' +p4020 +aS'You really think so? Im flattered, but I think you are wrong.' +p4021 +aS'Umm I dunno that whole faith thing is kind of important. Oh I get it you were being insulting.... Gotcha.... BTW hows that whole spiritual enlightenment thing working out for you? ' +p4022 +aS'Good point. emoticonXAgreeemoticonXAgree The poor guy would be like a midget that got his stepladder taken from him!' +p4023 +aS"You apparently know as much about law as you do about science. You wouldn't be arrested for having someone willingly consume a plant unless that plant was a controlled substance and last time I checked, poppy and weed weren't cancer cures." +p4024 +aS"Says the one who uses the abortion card when he's about to lose a death penalty thread. " +p4025 +aS'the same way most people on planet earth dont give a XXXX about american "football" ' +p4026 +aS'I get the feeling they have filed under: Plague, Avoid like the.' +p4027 +aS'Translation: Muslims are worth nothing. Christianity is superior, therefore they are worth nothing. Let the US come in and kill them, ruin their cities, and take their oil.' +p4028 +aS'Right, expect when talking about the 14th amendment. The way you guys like to define "equal protection" would make it so any restriction is unequal.' +p4029 +aS'Here come the Christians, thinking they can know everything by guessing, and commiting the genetic fallacy left and right.' +p4030 +aS'So the fact that we still have criminals who choose to kill others, should be used against is in determining whether we can be trusted or not?' +p4031 +aS"I don't think it's a cover-up. I think that it's a conspiracy between the black helicopters and the aliens beaming suggestions to those without the foil-lined hats on. :)" +p4032 +aS"Please emoticonXRolleyes Why dont YOU post something thats not one sided and full of non factual evidence that isn't full of spin and your crazy agendas?" +p4033 +aS'In that case a man in a coma is not a person then, is he?' +p4034 +aS'Ah?"scratching head"I just woke up,what?womens choice,her body,death penalty?ah ok gotch ya.emoticonXFrazzled' +p4035 +aS"Obviously, in the event of a disaster, George W. Bush sure thinks he has a right to choose. Hmmm, let's see, should I interrupt my vacation just because people are drowning in New Orleans? Naw, I don't think I should. They're just poor people and they probably didn't vote for me." +p4036 +aS"Plain with the benefit of hindsight. I love how you're able to determine, not having been there, precisely what was said and precisely where it fell in relation to the law. If it was so clear, we'll see the prosecution for wrongful arrest in due course, I'm sure." +p4037 +aS"And yet it's usually the liberal democrats who are in favor of murdering innocent children..." +p4038 +aS'Does your use of the past tense "was" imply that you\'ve seen a burning bush and been converted to reality? Or are you still an "anti-american pinko commie bleeding heart liberal?"' +p4039 +aS"You have no Idea how glad I was that I was sitting down when I read this!! First it shocks me that you haven't labeled all those who claim to see UFO's liberals. Then I have to wonder didn't at one time the RCC say we were the center of the universe,... The sun went around the earth,... the earth was flat ?? Theres no one but us .. It was all created for us?? Ok I'm goning to go take a little breath of fresh air and rest for a moment as this is very disturbing to me! .... V.O.R. and I agree on something. I think I'm going to be sick!! Back in a few." +p4040 +aS'Simone, read the sentence again please. It was "Saving lives is "not just" a Republican goal." It concerns the subject of abortion. The only way it relates to the politics of Iraq, is that abortionist would rather kill our kids before they get to "volunteer" their services for Iraq. I can\'t let one statement you made go though. Terrorist continue to terrorize us? Where have they attacked in the U.S. since 9-11? Consider continuing this in an appropriate thread.' +p4041 +aS"Thankyou for bringing to my attention that atoms, neutrons and protons are merely scientific assumptions. Now as I gaze at the night sky with all its' bits and pieces spinning around each other I can sleep happily knowing that our solar system is not part of a housebrick afterall." +p4042 +aS"What makes you think I don't. Yours is not the only religion on earth!! And I didn't just jump to the concluision that your soul needed concern, so don't jump to it with me." +p4043 +aS"It was a troll. Now that we've activated email response, it could take another look or expand some mail list." +p4044 +aS'As usual, you shoot from the lip. I have no illusion of perfection, However I am convinced that as long as you live I will never be the dumbest man on earth. ' +p4045 +aS'And yet the post-Dunblane handgun ban happened after only one event.' +p4046 +aS'Like evolution, right? You have your conclusion, so everything else must adhere to it. Just answer the question. How to you account for the statements above?' +p4047 +aS"Just helping something live doesn't affect evolution unless it affects the ability to reproduce viable offspring. If there was no nylon before the 1940s and there is an organism that can survive by eating NOTHING else, what does that tell you? There could not have been a population of nylon-eating bacteria before 1940. This is a new population that did not exist before." +p4048 +aS'Nah, he has been TRAINED to recognize demonic possession as part of his B.A.' +p4049 +aS'I think jyoshu has posted a BS meter which is pretty nice.' +p4050 +aS"What's your point? Unicorns breathe toxic gas and have low density, so they can get around all they want." +p4051 +aS'I want to know how giving her abusers more reason to abuse her makes sense too. ' +p4052 +aS"Don't forget cheaper to feed, take orders better, and are harder to hit." +p4053 +aS'Wow, so Balrogs existed according to the Bible? Whoda thunk.' +p4054 +aS"Oh yes, Mr Behe makes a comfortable living out of selling to the ignorant. His newest book is just a rehash of his old book, and has the very same flaws that have been destroyed over and over again. As for your 'religious authors' being respected.. they are respected perhaps by the fundamentalists that do not understand what science is about." +p4055 +aS'You bet. Got a Scriptural problem with that, \'O "jesus"? Or are you not familiar with your own inspired Word?' +p4056 +aS"I guess the Sinagua ruins and the Kayenta, Anasazi Wukoki ruins in Arizona just don't stack up against them big old Jewish buildings." +p4057 +aS"Oh it applies, but if we were to look at the Bible that way, God wouldn't allow one single bad thing to happen." +p4058 +aS"That's an out that's peculiar to Christians. Good? Godidit. Bad? Devil's work." +p4059 +aS"Oh, dear. I seem to have lost you again. 'Peer' just means a group of people holding the same biases." +p4060 +aS'because you wanna be wrong all the time...that seems like a good reason :)' +p4061 +aS'Because of massive cultural differences. You might as well be asking "if both Americans and British people speak basic english, why do British people refer to apartments as flats?"' +p4062 +aS'Possibly, I must admit I never tried to gain access to swords whilst over there.' +p4063 +aS"Isn't that exactly what I said! Clearly we have an issue of a probably overweight white man who is without a doubt racist (because if we know anything it is that every white male that has short hair is a racist) coming down on a black woman! You nailed it again MA! Props to you for uncovering this mystery." +p4064 +aS'I know I know. Unless a woman is gestating or dieing she is being selfish.' +p4065 +aS'Then by that standard, christianity is horse puckey! Christians contradict each other. Oh! But wait. Anyone who disagrees with you isn\'t "really" a christian.' +p4066 +aS"Gee, I wonder why the liberal left is so quiet? I remember when Bush's DWI from decades previously came out, and you couldn't shut the hypocrites up! It's hilarious." +p4067 +aS"Or, since he didn't have $37-million tucked away from questionable business practices and a rich daddy, perhaps he paid attention to the ramifications of abnormal deficit spending." +p4068 +aS"Uncle Sam hasn't tried to pass a law saying people can't install left-handed doornobs, to supposedly protect the doornobs of right-handed people. I guess right-handed people don't feel threatened by the minority. What a concept!" +p4069 +aS'Anyone speaking English could well be an illegal from the UK then, right? I guess Puerto Ricans better watch out too.' +p4070 +aS"Are you really so dim that you think me answering a question you POSTED is somehow any implication at all on thelmoose's intelligence? emoticonXRolleyes" +p4071 +aS'Na. Probably from smokin the Bovine Excrement they are trying to pedal! emoticonXSmilie' +p4072 +aS'lol...you read my whole post only to conclude with "what\'s your point." Evolutionist brilliance on display. I\'m not mistaking nothing for nothing. I know my stuff. You obviously know nothing and don\'t care to learn it.' +p4073 +aS'Have you lost your mind? I got no idea what you are talking about.' +p4074 +aS'Your signal to noise ratio was too low for my tastes: too much "wackiness" (I assume "wackiness" was what you were trying for) and irrelevant side discussions.' +p4075 +aS'Have some cheese with your whine, turkey? Who is the liar? It is the person who denies that Jesus is the Christ. Such a person is an antichrist. 1 John 2:22 That would be you and those like you. Repent, you heathen!' +p4076 +aS"Let's establish a campaign to search for the hypocrisy of people who call themselves pro-life yet find nothing wrong with killing a grown human being." +p4077 +aS'Why am I not surprised chester, that chloe directly giving an in depth answer to you is perceived as not being germane to the topic. Since you never directly answer any proposition forwarded as you derail every thread by just serving up your off topic tripe. emoticonXGood ' +p4078 +aS"I wasn't aware that a hairstyle could choose to believe (or not believe) in a god............." +p4079 +aS"Look at Dunblane. Then look at Columbine. Who had the higher death toll? How often do school shootings take place in Germany? When was the last time somebody went driving and shooting in a killing spree in America? Name the last mass public killing in America, in a public place where the number of victims reached double digit territory. Go on Brady, we're waiting for you to prove that you actually have a point. Don't disappoint us." +p4080 +aS'And the Brady background check has not been repealed either so by your "logic" it must be effective.' +p4081 +aS'Leave it to a leftist to cite a leftist forum for evidence that a leftist agenda is supported by dedicated leftists. Go figure, huh? This post just proves that attempting to reason with such an irrational thinker is truly a waste of time and effort.' +p4082 +aS'It appears that peddler is finally open to learning new things! (Unless, of course, peddler is simply being facetious... which is not obvious from the immediate context.)' +p4083 +aS'Do you know how many Osama Bin Ladens we Killed???? emoticonXRolleyes' +p4084 +aS" Just come up with something that discredits the resurrection, if you think you can. Should be easy for you Einsteins, shouldn't it? But in two years I haven't seen it yet. Not from you or anybody else. Where's the beef?" +p4085 +aS'Sounds like he/she has a problem with abstinence within the RCC and you have a thin skin about it.' +p4086 +aS'Congratulations, Hunter. You have just accepted the 5 primary tenets of fundamentalism. So I guess that makes you a fundamentalist. ' +p4087 +aS"Sweetie, if every gay person were as wealthy as Mary Cheney, we could laugh all the way to the bank and ignore the prejudice in society the way she does. Indeed, we'd probably be the darlings of the GOP. Unfortunately for your delusion, gays are no more or less wealthy on average than anyone else." +p4088 +aS'That post is not only off topic, but yet a further example of your being completely out of touch with reality.' +p4089 +aS'I think you need to breathe in a bag for a while..then maybe have a nap.' +p4090 +aS'Please do, because according to your source McVeigh called himself an Agnostic. ' +p4091 +aS"You're equating atheism and homosexuality with terrorism and drug dealing? Really? Can you stop being a reactionary dolt long enough to convince me you're worth even trying to converse with? If not, I'll understand... and not be surprised." +p4092 +aS"Cower in fear of your god Easy, I'm not afraid, and nothing that you say is going to make me fear things which I believe to be imaginary. Thankfully, our nation does not make laws based on your Phelpsian beliefs that god punishes the masses for the sins of others." +p4093 +aS'Sorry baby the story was in the religion of peace land. Your strawman is burning.' +p4094 +aS'Is that right next to ANWR? Are the Canadians downplaying ANWR while they side drill to extract our precious fluids? emoticonXClown' +p4095 +aS'A truly charming publication. Over flowing with the warmth of human goodness.' +p4096 +aS'You also need to borrow a new insult. Did you get that one from Crim? ' +p4097 +aS"So? What does that prove? That Cheney's draft number was called more often than Slick's? emoticonXConfused" +p4098 +aS'Senior citizen yachties stand little chance of defending themselves against pirates. Piracy needs to be dealt with using military might.' +p4099 +aS"Someone once said that the poor would always be with us. I'll keep in mind that your core beliefs include the notion that what the poor really need is a hard day's work. You're a prophet I tell ya!" +p4100 +aS"Oops, my bad. You're right of course. Port is an interface on a computer. It's also a harbour, so you're wrong too! :P" +p4101 +aS"I guess I'd rather live among them, too, than have a hot poker shoved up my bottom." +p4102 +aS"Did you notice how what I was responding to was said? I didn't think so. Your tunnel vision is showing again. " +p4103 +aS"You mus think you're pretty smart huh? Well guess what? You're confusing common, most common, majority, and norm. Lefthandedness is considerd common and the norm. You're using a superstistion from 300 years ago to qualify left handedness as deviant. Good try though. Also left handed is genetic. It's not a gene but it's genetically related to the person's physical characteristics." +p4104 +aS'No. What the doctor was doing was going to church. He was not a monster. He was not a "sicko." He was a murder victim. What his murderer did was murder.' +p4105 +aS"Yes, we shouldn't let those slaves be citizens, they will burden our legal system since they will now have...OMG...rights!" +p4106 +aS"Ha, that is just an idiotic perspective. We'd have no laws (and many important ones) if you can't make a bill that doesn't affect you. Sorry Civil Rights legislation!" +p4107 +aS'Well then, you would immediately notice a 15% reduction in bullying! Rejoice! ' +p4108 +aS'That does not surprise me. A whole world filled with people who look, speak, think, and do things different than you must be absolutely terrifying. ' +p4109 +aS'Yep, you libs would love that. Then you could party on end without having your carnal consciences tweaked, LOL! No sin then no need for a Savior.' +p4110 +aS'Yep, Martha is in trouble and the democrats are panicking. I think the strong Independent support for her opponent is due to Martha\'s own lack of appeal. By they way, I have to ask....since "The anointed one" was in your neck of the woods, did you get a peek at him? prehaps even wave at him (with all 4 fingers) ;)' +p4111 +aS"Which you would do by having teachers teach kids that being gay is alright. You would teach those kids, against their parents wishes, that being gay is alright. You would do that after you make it legal WITHOUT A POPULAR VOTE. Seems that you really don't give a rat's XXX about this poor dead kid at all. You just see his corpse and throw him on top of your gay marriage banner. How noble of you. " +p4112 +aS"So I take it you don't accept my challenge on the basis that it is impossible? Why is it impossible? Or better yet, why don't we al just evolve into perfect, anti-sinning creatures with 500 IQ points a piece? " +p4113 +aS'I believe that the theory you speak of is called slavery; everybody is equal because they have nothing and need to work long and hard just to earn the privilege of living in order to serve their masters.' +p4114 +aS'Ok, so you utterly missed the whole religion vs. faith part of the discussion, got it. ' +p4115 +aS"Well, then, I guess that in America we can't possibly be safe from kill-happy gunners can we?" +p4116 +aS"Oh, well, then that settles the argument doesn't it. It must be a person because she says so, now. Maybe she will change her mind again?" +p4117 +aS'Wow ehat a brave new world you live in.... Now lets say just 1% of all gun owners resisted (in the us that is several hundred thousand peppered through the land). With media attention to such infighting between government and citizens how do you deal with this?' +p4118 +aS"Here's some advice, if you're going to try and crack on me, make your 'jokes' (I'll be nice and call them that) less passive and more active, grammar-wise. Crim- A definition is the meaning of word that someone created using their own opinions. Is there a difference? And, a circle could be called a circle in the English language, but I could make up a new language in which a circle would be called a square and a square a circle." +p4119 +aS'So you advocate religion not because it is the truth, but instead because it gives you comfort and security? The opiate of the masses eh?' +p4120 +aS"First off, kudos on getting the quotes right! It's much appreciated. Now, what's your actual assertion? If you spell it out than we can put this definition debate in context, and maybe actually get somewhere." +p4121 +aS"ER, you're doing the God complex again. Sandra Fluke might not even use birth control because she may very well be celibate. Only God ... and ER who thinks he's God ... know." +p4122 +aS"I just bet you thought you were smart just now? I'll go you several... How about: 1. Murder 2. Stealing 3. Adultery 4. Rape Almost every culture since the dawn of civilization has put to death those who have trespassed those basics. But I guess you didn't get that on the Recovery Channel huh? Your idiocy is profound only as your ignorance." +p4123 +aS'Did your mummy read you scary stories when you were littler?' +p4124 +aS'Oh, gee! There goes my irony meter. It pegged and started smoking at the end of the first sentence. Archy is just being christian by trying to impose his twisted morality on everyone.' +p4125 +aS"Before you were claiming it was a slippery slope. Now you're claiming it's a strawman. Perhaps you don't understand what either term means." +p4126 +aS"But rather than be honest about your mistake, you just changed things without paying any attention to the fact that we've shown you have no idea what you're talking about when it comes to the claims of the scientific community.. at least, not until somebody tells you. (And you accuse me of not having a teacher's mentality as I educate you in something you didn't previously know... How pathetic.) " +p4127 +aS"Tell me genius, how is me accurately and correctly pointing out your mistake colluding to misdirect anyone? Either you are again using words you don't know the meaning of to make such an inaccurate statement, or you're just lying. So which is it penfold, are you ignorant or just being dishonest again? emoticonXConfused" +p4128 +aS"Talk about a crock! How can you wail on anyone with your imaginary truth stick of no mercy when you wouldn't know the truth if you tripped over it? And you going ballistic like this just proves the exact point I made in that you'll allow my free speech until I say something you disagree with and then you attack me to shut me up. Which is exactly what I said above that precipitated your childish tirade. See?" +p4129 +aS'Michael Moore Hates America is also coming out in theaters some time in October.' +p4130 +aS'Hey, maybe some chosen by God religious fundamentalist will offer up his own daughters to be gang-raped, and then later have sex with those same daughters and children by them. You know, the way Lot did in the Bible. The one Peter called "a righteous man".' +p4131 +aS"My point stands, just because you can't get it has no impact at all on its validity. YouTube - The jokes on you..." +p4132 +aS'Tell me, how does one "steal land" from a nomad? emoticonXConfused' +p4133 +aS'You forgot to mention that we would have to change our numbering system so that grasshoppers had 4 legs.' +p4134 +aS'Ok, EF, so am i likely to win the lottery before i meet an alian?' +p4135 +aS"Like I said, Catholic school. Or it could be that you're like 80 years old or something, because nowadays, if you talk about God or the Bible, then you don't get in trouble, you get criticized and made-fun-of, not only by your peers, but also by teachers." +p4136 +aS"I noticed that you do reply to mine. Perhaps you should reconsider since you're getting your ar$e handed to you with every reply I write. ;)" +p4137 +aS"So, once again, the lack of criminal prosecution isn't due to the red herring that you claim, but rather the incompetence of the Justice Department. Franken's bill doesn't have a provision for making the Justice Department do its job, does it?" +p4138 +aS"I don't really give a flying hippo's arse what you think - your posts here and on the other forums are repugnant, and as of now, you are being put on ignore (to take a page from Steeeeve)." +p4139 +aS'Not only is Phyllis right in calling you what you are but you clearly ignore reality. You were already called on using incorrect facts once...you might as well say "denying abortion will cause 10000000 bagillion deaths a day"' +p4140 +aS'I\'m against polygamy, marriages with underaged minors and marriages to livestock as well, so don\'t feel that you are the only ones not "accomodated". ' +p4141 +aS" Your own source said there's a cliff a mile and a half away, and I'm the liar? Go find it and jump off it, you flaming, incompetent, scatter-brained, dishonest cretin." +p4142 +aS"An objective test? Wow! Tell me, how do you prove this test is a true useful test? Please don't tell me reason or yet another objective test. " +p4143 +aS"Strange, I thought it was supposed to be a global flood that wiped out all of man except the chosen few. That would be 'involving Australia' one assumes." +p4144 +aS"So it doesn't matter that someone dies in their forties from hunger and cold because they are homeless and penniless, whilst another lives in luxury with the best food and medicines until his 80s: they are both equal? What planet do you live on, for it sure aren't the real world..." +p4145 +aS'You mean that the planets and stars have always existed? Really - so how come we see stars being made in nurseries via the Hubble telescope.' +p4146 +aS"And I'm guessing by your misinformed posts that you have not been high before. Did you recently watch a film called Reefer Madness by any chance?" +p4147 +aS'Is this satire? If so...bravo...well done. emoticonXGood If you are really serious...ummmm...excuse me. emoticonXEmbarrassed' +p4148 +aS'Not to speak for Jim, but I\'m going to go out on a limb here and guess it was "Rebuttlickan". Just a hunch.' +p4149 +aS'On the bright side, it appears that the Rapture will solve the Social Security financing problem...' +p4150 +aS'So somebody try and tell us, that with stuff like this going on, that America still needs to overhaul its gun laws to bring them more in line with those of Mexico.' +p4151 +aS"Ah, so I don't like democracy, and yet it is you who in the post are telling me that I have to support McCain's statement. Are you serious? That sure doesn't sound like democracy to me. I also find it funny that you claim that I don't like democracy when my very post stated that I would be voting for the Democrat party. But then, I guess if we don't support Bushyboy and his fellow republicanazis, we must be against democracy, right? Get real, Phyllis." +p4152 +aS'Not in the mood? Oh I see because they restrict you already your not in the mood to remove the regulations that do not work and insert proper ones that do. Excellent ignore the issue at hand and give no suggestion to improve upon the current laws and restrictions.... ' +p4153 +aS'Really??? Maybe you should do a little research before you make sweeping statements like that. -- http://www.rainbowbaptists.org/' +p4154 +aS'Once one is adept at finding evidence after a conclusion is presumed, all sorts of "proofs" reveal themselves. What\'s next, Nostradamus?' +p4155 +aS"In my lifetime, we've made huge strides, but there's a lot more to learn." +p4156 +aS"And why would you say something like this? Because Christianity prohibits it? I can't think of any other reason." +p4157 +aS"It's a real mess, though you've to got to give them points for originality." +p4158 +aS"60% accepting Roe v Wade is a high figure don't you think? More people support abortion then the president." +p4159 +aS'Do you need faith to know the sun will rise tomorrow or that 2 + 2 = 4 or to know that if you drop a rock it will fall to the ground?' +p4160 +aS"I'm not big on the abortion issue, but are you saying that anyone who disagrees with you is sexist and arrogant? That's a tactic straight from the leftist playbook. Clearly you're the one who's arrogant, if you can make these kinds of baseless generalizations of your opponents. Isn't it you who always accuses conservatives of being intolerant of people who think differently than them? Now that's irony!" +p4161 +aS"I'm sure it is many a doctors' spiritual duty to relieve suffering, just as Jesus healed the sick. Besides, who wants to go back to 40 year average lifespan, like they have in Afghanistan? Not me." +p4162 +aS'If the rejecting of the "lifestyle" results in death, beatings, job displacement, eviction, insults or inequality, then what would YOU call it? "Religious moral code?"' +p4163 +aS'Waxy, please read this. Maybe it will help you. When you said the proper way to say it was, "....tell me I\'m wrong, at least do it grammatically." you made absolutely no sense. Do something grammatically? You obviously have to use grammar when you write a sentence.' +p4164 +aS"Ah, so we shouldn't get all stirred up because little girls are singled out for slaughter? Please excuse me for having misplaced priorities." +p4165 +aS"Sorry did I say pacifist?I meant yellow bellied pacifist.However if its any consolation, I meant anti's in general not just you Sinj.sorry if it sounded that way." +p4166 +aS'So, some parts of the Bible are erroneous oral history after all! What a refreshing admission.' +p4167 +aS'Are you serious? Man I thought you actually had a brain in that dense hollow cranium of yours. You do realize there are Straight Atheists and GAY Christians right Gans?' +p4168 +aS'You can start your own thread on how historical the Gospel accounts, etc., are. How about dealing with the question now instead of running scared and going down another rabbit trail?' +p4169 +aS'If it did that, then you might have won an argument by now.' +p4170 +aS'The point being that nobody is spoiling Christmas for the children, you paranoid fruit cake.' +p4171 +aS"While I fully realize you can't do math and thus why you consider it atheism, but post #96 and post #81 are not the same post. But then again, you were the one who argued that post 113 came before 106 so maybe you do think that complete failure to understand math and linear thinking is sane? " +p4172 +aS'Demolishing your "rebuttal" in post #14 does, however. You missed it.' +p4173 +aS"Maybe because it's a loaded question? If another evolution hoax were discovered similar to Piltdown man, would you reject evolution and become a Christian? :p" +p4174 +aS'You are the only one in this discussion that shows a predominant lack of logic or reason. Your position has been proven wrong, get over it .' +p4175 +aS"What about them? Is this a question? Um. Have you read Leveticus? And I mean, read it. Not skimmed it. Because, God loves everybody. Are you reaching? And what does fast and loose mean? I'm confused. I think you are trying to label me.. but I'm not quite sure what I'm being labled as. What part about people burning in hell for eternity?" +p4176 +aS'Symbiote seems to have had a large hair across his butt.' +p4177 +aS'Because of your question " What is your definition of pure", I now know how to make soap. I\'ll never stink again!!! And I think homeopathic medicine is all about using things like vitamin c to prevent colds, and making sure you ingest lots of calcium if you are worried about ostioperosis. Ya know stuff that makes sense.' +p4178 +aS'Is it possible to be an adult and be as clueless as you seem to be? This was in response to the question did Jesus not believe in evolution. Only someone with similar mental capacity to yours would ask such a question. It seems unfair I have to answer this senseless comment you added to the nonsense.' +p4179 +aS'We are figments of our own imaginations, sent here by Satan to annoy the faithful! emoticonXAngel' +p4180 +aS'Well, in the case of a creationist, the bias determines what evidence will be discarded, what evidence will be twisted, what evidence will simply be ignored.' +p4181 +aS'ah yes....."Gaytheist," the terminal homosexual atheist liar at various forums such as IIDB and Tweb misrepresents me to some guy who studies tadpoles. The little XXXX liar atheist claimed to the author that I used his paper as "evidence" of lamarckism -- which was a bold-face lie that she couldn\'t back up when I pressed her on it. This was merely his response to her strawman lie. Funny how you must repeat these lies to help cover up how pathetic your theory is.' +p4182 +aS'What\'s your evidence that the Gospel prophecies are "spurious claims"? Seems like you\'ve bought into a scalding case of rational tunnel-vision (or political correctness, if you prefer).' +p4183 +aS'That explains your excellent use of grammar, word choice and spelling? ROTFLMAO' +p4184 +aS"Aw shucks! And I reckon in Kansas they won't ever care whether or not you learn how to spell ATHEIST." +p4185 +aS"BOY-HOWDY!! Why don't you let me know how you really feel? I have not tried to demonize anything. Rap music does that to itself without any help from me. Rap is the lowest form of music that I have ever heard. It is just too primative for my tastes. Once again, I am not a racist, nor am I sexist. I do my own washing. I wish you and your child nothing but the best in life. Some folks think that exposing young children to Rap music is a form of child abuse, I agree with those folks. P.S. Tell that Southern girl to find another room-mate, you sound like a horrible role model. Well, got to go wash some more underwear." +p4186 +aS"That's because the Taliban in Afghanistan didn't have any oil with which to bribe them." +p4187 +aS":p I wish! If I did, I'd be as wealthy as the Church, who does. emoticonXHoho" +p4188 +aS'Make up your mind. Is it because of diet or is it because of evolution. It would be nice if you pick a horse and ride it.' +p4189 +aS"I'm now slightly less confused about why I've never seen this discussed before." +p4190 +aS'Never thought of that. If that "person" has rights, do they have responsibilities? Could a fetus be charged for causing toxemia? How about suing the little tyke for giving mom varicose veins and stretch marks?' +p4191 +aS'Yea right you are likely to know. Stick with the enema hotline.' +p4192 +aS"So, you're just an anti-geologist, anti-cosmologist, anti-archaeologist, anti-physicist, and probably a few more that I can't be arsed to think of right now. *shrugs* Might as well get it over with and just say you're an anti-science religious nutter." +p4193 +aS"Just like it's the job of the gun control lobby to try and pass an overwhelming, unreasonable level of fear of an inanimate object?" +p4194 +aS"Talk about incoherent wishful thinking. Instead of unsubstantiated claims and baseless attacks, why don't you provide, oh, I don't know, mybe some peer-reviewed EVIDENCE? You know, that little old thing that is required for anyone to take your wild claims even remotely seriously?" +p4195 +aS"I like the Grape Flavored best, But I won't be drinking any KoolAid with you or one of your religious Cult Fanatics... And why would I be embarrassed about telling the truth?...." +p4196 +aS'Well, if history were binding we would still have slavery...and abortions being illegal for that matter. Something being done for a long time doesn\'t mean it makes it in the constitution. I don\'t know which part of the constitution has a "preserve history" clause. ' +p4197 +aS'Oh yeah right, like sociopaths who are bent on killing and slaughtering everyone around them, can be fixed with something as stupid as school counseling.' +p4198 +aS'I guess it is a bad thing to make his wife cry but the republicans can make any hatefilled statement of attack against gay and lesbian americans and that is ok.' +p4199 +aS"Why don't you answer Bryan's post above troll? He has some important information you would never figure out by yourself?" +p4200 +aS'What! You mean that WE don\'t want to do all of those things? Who knew? I didn\'t get the memo? emoticonXConfused And you forgot "make Seniors eat dog food". emoticonXGood' +p4201 +aS'This coming from the guy who is accurate on every thread on this forum and provides factual and analytical evidence to a intellectual arguement. (sarcasim) PleaseemoticonXRolleyes' +p4202 +aS"So what are you claiming now? That all this time that Rosie was making fun of the Chinese, she's actually been Chinese all the while? Because that's the only legitimate way you could draw a parallel with those people who are hypocritically attacking gays while being gay themselves." +p4203 +aS'Well, if you combined his plan with all the others, then make all the cuts at once, you would be like 25% of the way there!! Come on, Steeeve...we have limited material to work with here.....' +p4204 +aS"I can hear all the scores of laughter now. emoticonXRolleyes emoticonXRolleyes emoticonXRolleyes But alas, this is pointless, as are you. I'm bored and done. ciao" +p4205 +aS'That "brilliant" statement has absolutely NOTHING to do with the original point. ...later' +p4206 +aS'Why not? My mother has been 39,for the last 39 years.' +p4207 +aS"Since you're so fond of reporting personal attacks to the mod, maybe someone should return the favor to you? emoticonXRolleyes" +p4208 +aS'Apparently Archie thinks this is golf, where the lowest score wins. Who wants to clue him in?' +p4209 +aS'Are you trying to be funny in a "I\'m the one who drew attention to this aspect in the first place, but now I\'m going to criticize you for talking about what I drew attention to" type mentality? ' +p4210 +aS'Um, Bassman, so you, the one person in the world who is as "pure as the wind-driven snow," is the one who may judge others, including Democrats. Um, for the record I grew up on the prairie and saw a goodly bit of "wind-driven snow" and it was not particularly pure. A feeble and laughable metaphor.' +p4211 +aS'If only Ann Coulter could report a pie throwing to the admin like a spoiled little cry baby. emoticonXRolleyes She\'s probably more of a "man" than that though. :p Waxy' +p4212 +aS'Somehow I think most people are going to be a lot more comfortable with their kids seeing people in African atire with long hair than with scantily-dressed (or topless) people simulating sex acts. emoticonXRolleyes ' +p4213 +aS'Balloon Juice Blog Archive BoBo Brooks, New King of the Media Village Courtiers?' +p4214 +aS'You mean like Korea? Oh wait we are still there.... Is Israel a nice secure place safe from terrorism? The notion that Iraq will be without conflict will not occur in our life time.' +p4215 +aS'Confucius, that is one of the biggest puddles of sentimental puppy dribble that has ever been manufactured.' +p4216 +aS'I get what you are trying to do but it doesn\'t work. You might as well say "let\'s print a bunch of money...pay off the debts...and then force people to burn it!".' +p4217 +aS"Only in your mind could lying about me be telling the truth smiley. And if you had any concept of what truth is, you wouldn't be an anti-christian atheist my spiritually blind friend. emoticonXAngel" +p4218 +aS'I think pedophilia is a disorder as opposed to an illness but I\'d have to look back at some psychology books. How do I define illness? Well, I have a few contexts for this. The flu...obvious illness. Christians feel that sin is an "illness", so in that sense we are all rather ill :). As for wrong...same deal. ' +p4219 +aS'Now you\'re just being an butt. The word Dungarees is a coloquialism. Do you know what that word means? Also that\'s what jeans were called before the word "jeans\' entered the venacular. (Do you know what that word means?) So, now are you going to tell me that only homosexuals have larger vocabularies? Get a life...and preferably not mine...I\'m living it at the moment.' +p4220 +aS"Odd. I can't seem to find any racial slurs or racist ideology in those sentences. In fact, I don't see any race or races in general even mentioned. You're just one of those people who thinks you can win a discussion by accusing your opponents of being racist. Sorry simone, but in the real world, people can disagree with your leftist views (which are barely existent) without being racist." +p4221 +aS'And oddly enough you have been given several on silver platters. Perhaps you need to visit a neurologist and get checked for memory problems? Just to remind you once more - SICKLE CELL TRAIT is a mutation AND it benefits the phenotype under specific definable conditions. Do you really want to get hit about the head with that bat yet again?' +p4222 +aS'You mean the truth of thousands of young teen girls dead with a coat hanger in hand? Abortion is a neccessity so that it can be regulated. People will have abortions legal or not legal. At least provide a safety net other than a coat hanger.' +p4223 +aS"So if Jitobear's mother had the option to abort Jitobear in utero, you want Jitobear to have the same option with any children she carries? That's awfully progressive of you." +p4224 +aS"I think it would be best for neither one to have a gun, as there would be no chance of me getting hurt. After all, I could beat up a guy armed with a plastic fork. However, if the hijacker has a gun, I'd like someone (not me, I'm half blind in each eye, I'd probably hit a passanger or something) to have a gun." +p4225 +aS" So what do ya Say! Come On. Be reasonable! Do it for the children! Or don't we care about these children because they weren't hurt or killed by a firearm?" +p4226 +aS'Makes about as much sense as saying many of the car hating crowd (people who support such laws as car registration) also own cars. More evidence that your handlers have trained you to see the world in black and white.' +p4227 +aS"Is North Korea a bastion of peace and good-living? Nope. Is it religious? Nope. Therefore obstacles to 'peace' don't necessarily have to be tied in with religiosity. Hope that's spelt out enough for you. Try to keep up." +p4228 +aS'Speaking from ignorance once again, eh SP? Did you, by chance, ever read the 2000 Census form? Did you happen to see the category "unmarried partner"? I didn\'t think so. Now, go eat some crow. emoticonXHoho http://www.census.gov/population/www...0/samesex.html' +p4229 +aS"Perhaps some people here aren't on the same level of intelligence. Seems you and chester understand it now so that is good." +p4230 +aS"Yup, I get the drift. You're the sort that is in denial about how he feels about gays; equating tolerance for gays with tolerance for murderers, while pretending you're doing something else. Now I know how you think, thanks!" +p4231 +aS"Worship me and I'll bless you too. With money of course. He can't even give you money. I am the true god and I created the mindset that he was a god in him. Worship me and spread the word about the true religion. Everyone who joins my church will instantly get $1,000 and after a week of membership you will get $1 million. The end of the week is when my project is and then you can go into the real world. All those who didn't believe in me will be destroyed when my world I created gets to the dump." +p4232 +aS'Hmmm, was that an ad hominem attack? You know, what you accuse others of doing? Hypocrite.' +p4233 +aS"OMG, are you for real? I'd think that if you saw a plane flying low, being chased by a fighter jet, you'd get out of the way. Any SANE person would... Further, you'd be peeved if you found out that it was your govt. being completely insensitive (not to mention wasteful). The govt. screwed up...if it had been Bush you'd be crying bloody murder." +p4234 +aS"You of course have documentation of Darwin laying out his plan as to how to weasel evolution into classrooms to oust theism, right? No? You're making it all up? Shocking. " +p4235 +aS'Well, considering how ambiguous and contradictory the Christian scriptures are, I guess this interpetation makes as much sense as any of the others.' +p4236 +aS'Good, good, good, good and good. You should also know that Ron Paul will personally club one baby seal for every vote Hillary gets in the primary. He will then consume all socialists with fire from his eyes.' +p4237 +aS"Yet another of your posts that wouldn't pass the Turing Test..." +p4238 +aS'Nice to know that you are breaking the law responsibly. emoticonXGood' +p4239 +aS'Do you even read what anyone posts? Try it, you might learn something.......maybe not.......' +p4240 +aS'Thanks for that little ad hominem! Shall I share with you my guesses about your motives?... But I digress. ' +p4241 +aS'Well, maybe the pistol and the hunting rifle, what do you need an automatic weapon? Have the deer gotten faster?' +p4242 +aS'As "special" as being one of over 100Million makes me. emoticonXRolleyes' +p4243 +aS"I guess it's okay to lie for Jesus just so long as He ain't intently watching." +p4244 +aS'Get away? We never went near it in the first place.' +p4245 +aS"didn't Kevin Costner do a movie about this in 1995?" +p4246 +aS'Clue: It\'s there in your own sentence. Five letters, beginning and ending with "S". If you need further interpretive assistance, don\'t bother with Sarge, she\'s waiting for an original thought.' +p4247 +aS"FYI you'll get sand in your ears from sticking your head in too deep...." +p4248 +aS'Seems short compared to the hit list on infants since the last 36 ...' +p4249 +aS"Oh? What keeps you from having 6 or eight or for that matter having crossed bandoleers across the chest? I suspect kalifornia law will be changed a bunch and one in the pipe will be in vogue as well as a loaded mag in the gun for utility sake. You wouldn't want the perp to be disadvantaged too much now would you? How many shots must one allow the perp before you can fire back?" +p4250 +aS"Dude, my own father had hospice care in my home up until he died. I think I know a thing or two about it. None of what you say disproves that end-of-life can still be a scary thing. Maybe if you'd stop just being belligerent about it and actually thoughtfully discuss it, you might actually find some things I'm saying you find agreeable. (GASP!)" +p4251 +aS"Absolutely, and I am suggesting we first attack Sweden. That's my plan. emoticonXBanghead emoticonXBanghead" +p4252 +aS"That's military snipers, not for what passes for elite police in the land of the fruits and nuts. SEALS, Marines and Army for the most part." +p4253 +aS"I'll give you His phone number and you can call yourself. It's 1-333-NOS-ODOMY. emoticonXAngel" +p4254 +aS"So what's your point, Bush is as Liberal as the most Liberal Senator in Congress? " +p4255 +aS"WHAT QUOTES??? That's what I was asking you to repost because I can't find anything intelligent you have either posted or quoted at all!" +p4256 +aS'I would be scared about a huge segment of society that considers me a clever ape.' +p4257 +aS'I was right wasnt I? You do have buck teeth and play the banjo...look see if the Sesame street web site has a definition of zombie..what an arsehole lol' +p4258 +aS"Non-aggressive, yeah. That's why it's Israel that's the occupying force in Palestine and not the other way around. emoticonXWow" +p4259 +aS'Absolutely. Because atheists are spiritually constipated and are too dumb to realize God and Christ are real.' +p4260 +aS"NONONONONONONO! I wasn't talking about you JoeBrummer I was talking about aNaCaLaGoN! Don't worry I try not to pick on people who don't like it!Right Sinjin?" +p4261 +aS"You know, if the God deniers even let the baby out of the mother's womb alive to begin with then he's already one step ahead of the game. As for what to do with him then, show me under the New Covenant where Jesus said to stone kids? Personally, I think we should stone obese, jaded statues of weird looking holy men." +p4262 +aS"Eighty-nine times. Still quite a junior partner. I must admit that he doesn't like to be slighted though, as evidenced by Luke 12:10. One can say some nasty things about the Son of Man, and all's fine. But say one off-colored comment about the Holy Ghost and it's lakes-o-fire time. He needs to get thicker skin, IMO. Do ghosts have skin, BTW? " +p4263 +aS'Do you have to have human organs to be considered a person? Who made this rule??? You? What if you get lung removed...are you less of a person? So around 8 weeks though you believe it is in fact a human? ' +p4264 +aS'Maybe you are and maybe you are not. You can criticize but there again you may incur the wrath of ole Doc too. emoticonXSmilie ' +p4265 +aS'Trying to argue with a person who is babbling nonsense is not my idea of a productive time to spend my time. I\'ve explained myself and that\'s the end of it. You can label my posts anything you want but that doesn\'t mean anything. It just means you are proficient in throwing out insults. So for purposes of this discussion I crown you the "insult king" of this forum.' +p4266 +aS'He stated that " statistics show that firearms cause aggression in individuals", no mention of the word can anywhere in there that I saw.' +p4267 +aS"That is exactly what he is here for. To spread god's.. 'love'." +p4268 +aS'that was a cheap shot my friend.. lets keep at around an a*d*u*l*t level.. shall we?' +p4269 +aS'What is this "we" stuff? Got a mouse in your pocket? I thought god was going to destroy it...not "we". ' +p4270 +aS"Quite true. Top that with the adolescent mentality exhibited by SP and the boys and you've got yourself a reason to consider calling Dr. Jack Kevorkian. " +p4271 +aS'So most of your friends have had sex with your guy too? emoticonXGood You and I both know that homosexuals have different partners regularly, at least compared to heterosexuals.' +p4272 +aS'I take it that you are not educated about maternal mortality in pregnancy, then? ' +p4273 +aS'Say hello to my little friend! We the people, through our State Governments!' +p4274 +aS"Sure you don't want to address the gaping holes in your argument. That's up to you. " +p4275 +aS'In the thousands of scientific papers that present the thousands of bits of evidence that go to prove evolution beyond all sensible sane and reasonable doubt.' +p4276 +aS'But what makes them any different from ant hills or beaver dams? skyscrapers are natural because humans are a part of nature and they built them.' +p4277 +aS'I must say, you are quite a creepy addict. You seem pretty dangerous when high, especially since you think everything is a good idea. And why would you want his soul? emoticonXConfused Are you in a cult? Is that why you get high? I can see why teachers would need to go to attitude school after meeting you. They might need some help, as well as do you. And as contrary to your side subject, I think I am quite different than you.' +p4278 +aS'Can cause aggression, does not mean that it will though. Alcohol has a far greater record of this but yall are not trying to ban that. So do women but we arent going to ban them now are we, Sorry but I was in a marriage from hell and just had to throw that in.' +p4279 +aS"Nice attempt at an audition. Since the law firm you hired is supposed to find a director and president for your crumbled .org do you think you will get the job? What's the matter, didn't Hennigan cut it after the other lawyer fled when he saw the handwriting on the wall? emoticonXGood" +p4280 +aS'I am actually getting my entertainment value out of WW and his lack of knowledge, along with his attempts to ########. If you or the others are bothered by his ignorant banter please let me know, and I will stop forcing him to give answers on subjects that he so obviously has no clue.' +p4281 +aS'Well uh I am a fan. & you remind me of Humpty Dumpty. ' +p4282 +aS'As I have pointed out, the only BS here is your accusations.' +p4283 +aS"When I think of the great minds of literature, Ann Coulter is certainly not on the top of my list. In fact, when I think of minds, I don't even think she has one. I hope that you write this in jest, otherwise...I would seriously suggest that you expand you horizons. emoticonXFrazzled" +p4284 +aS'WOW are we seeing the softer, gentiler Jyoshu? Your snoopy avatar must be afecting you :) :p' +p4285 +aS'BOY-HOWDY!!!!! You have spoken the truth and spoken it well. Welcome to you from the conservative South.' +p4286 +aS"So according to you, you'd prefer it if only the bad guys are armed, because that makes it easy to tell who's the bad guy and who's the good guy; being the good guy is never armed, and thus never able to defend themselves." +p4287 +aS"And, I'm sure you ask yourself that very question before you unzip your fly and whip out your pecker, right?" +p4288 +aS'Ok if we can not use guns. Can we use baseball bats? Is that OK with you?' +p4289 +aS"And the UN seems to feel it's necessary to spell out that you have the right to marry and have a family." +p4290 +aS'And would guns in the hands of citizens have stopped that? Or does publicity, which has only increased since those events, stop them? Your selective reading ability is at work.' +p4291 +aS'Nonsense. Just look at all the great things that the Dark Ages did for Europe!' +p4292 +aS'Yeah, cause there are sooo many 100 year old corks just kickin around.' +p4293 +aS"I think he is just disturbed because he didn't get his 40 acres and mule?" +p4294 +aS"Someone's help? Whoever are you talking about? It wasn't any much work at all. A simple search. I'm pointing it out to you in the hopes that you'll get some new material. That and the fact I'd rather not see you banned." +p4295 +aS'I guess you never thought that many Cathoilics have gays in their family, or should they ask them to take their lives ?' +p4296 +aS"You'll never have that problem comic relief. You'll always be young mentally." +p4297 +aS"Where do you get off saying that kind of tripe to somebody? That kind of insane comment is typical of far left loons like you who lie for a living and don't have the common sense of a fence post. And that goes for Jo Bennett too if he's agreeing with you. Cretins." +p4298 +aS'Oh, EZ, so this god of yours wants to see ME, does he? Well and good. Because when I have access to that god he is going to get an earful from me about how his people have screwed over the world.' +p4299 +aS'This will kill innovation. do you know how many years a start up business might be in the red before it generates a profit? Why bother when you know you are going to be clubbed as soon as you realize a profit? Yep, way to incentivize business there... ' +p4300 +aS"No, the law didn't specifically mention gays, or dwarfs, or one-eyed pirates, or 6 toed individuals. emoticonXRolleyes " +p4301 +aS'Archie, the only way you can possibly come to that conclusion is by literally ignoring everything the author says, every accepted definition of the words socialism, statism, capitalism, fascism and nazism. If we ignore everything the author says and make up our own definitions for those words, it STILL does not work because the argument is STILL illogical and you look like a dishonest fool making it. Face it. You got pwned. Are you really not bright enough to recognize that? ' +p4302 +aS'Did you actually read it? I suspect not. Did you think that I wouldn\'t? I suspect so. Did you think that no one here would have any knowledge of good old "Kimisaurus" (that\'s what it was tagged when Kim was telling us about it)? I suspect so. ' +p4303 +aS'Dragons and Dinosaurs coexisting only recently? hmm when they did dissapear? Maybe Conan the Barbarian killed them all!' +p4304 +aS"No EasyRidden.. It's you right wing fundies who have attempted for years to rewrite history to fit your religion into our constitution. America is a nation which has always had a population of christians, but it was never a Christian nation. The Words God, Jebus, Holy Spirit.. are NOT included in any of the founding documents. You can continue to ignore the history, you're the one looking like a buffoon." +p4305 +aS'But being American, she knew killing Iraqi children would be the right thing to do FOR TOTAL VICTORY FOR AMERIKA!!1!!' +p4306 +aS'i assume you can demonstrate that everyone that opposes or critiques gay rights are personally attacking an individual or group? please, be my guest' +p4307 +aS"I've got a better compromise. We'll keep our magazines in whatever size we please, and we'll ban you, J Miro, Simone, and a random forum troll to be named later. That sounds fair and even in terms of trade to me." +p4308 +aS"I guess it's a good thing I wasn't replying and/or talking to you then. But thanks for your input, it has been noted." +p4309 +aS"Reasonable gun regulation is an oxymoron like military intelligence. You mean like Bill Ayers (sic) and his wife or Carl Rowen? Wait my bad they aren't from the right." +p4310 +aS"Well it came from somewhere and presumably changed as it went along. Careful there that ones been clearly shown to be the case - in a laboratory environment to boot. Not to mention in the form of a hydrogen bomb! You mean that the planets and stars have always existed? Really - so how come we see stars being made in nurseries via the Hubble telescope. So you don't believe that life had an origin! WOW so you think its always been present on the Earth? Not even the bible goes that far! And you fail to account for the observation that there IS life. Thats not an evolutionary theory, at least not a scientific one. Kinds is a theological construct not a biological one and MOST creationists use the KINDS thing as a support for their arguments." +p4311 +aS"ROFL....Yeah, right, since you 'left wingers' seriously see yourself as center-right.....whaddayah know?" +p4312 +aS"And you're baffled that you don't have more intelligent debate with people. I'm shocked." +p4313 +aS"Math is confusing too, doesn't mean we should get rid of it." +p4314 +aS'It has been 33 years. The allies managed to stop the holocaust in only two. You guys are certainly dragging your feet at stopping the great American "holocaust" against "unborn babies."' +p4315 +aS"It truly is sad when an opponent is friendlier than an ally, Mega. At least Ian responded in a friendly way, and me and him don't even agree on this issue." +p4316 +aS"Archie, you're not one of those Westboro Baptist Chuch types, are you? You don't buy that stuff about 'God Hates the ### Army' and 'God hates America' do you?" +p4317 +aS"Oh thats not politically kerect and secially wif the chosen one doing the world apology toure I don't see that going down. Well lay a few on us sin baby. Give us the deal." +p4318 +aS'I guess they could if they knew where all the parts were located. Oh, I would think they would be in hell. I can\'t imagine "God" would have anything to do with mass murderers; do you? BTW, this is Osama\'s technical guide for the terrorists. http://www.almostaproverb.com/images4/osama_dummies.jpg' +p4319 +aS"So let's just kill them and be done with it. Is that what you're saying?" +p4320 +aS'And what does he mean by that? You apparently don\'t have a clue. Tell me, do you have any idea what "secondary cause" is?' +p4321 +aS"Aw declare victory and slither off eh. I made an assertof fact that was backed up. You made a strawman of abandonment. No one made that claim but you. They come here because they don't get the proceedure in a timely manner. Get it now? Hence you lose as usual." +p4322 +aS'Actually, isn\'t it creationists who claim that the universe was created from nothing? Creationists even have a magazine formally called "Ex Nihilo" (changed to "Creation" because creationists didn\'t know what it meant.)' +p4323 +aS'So you carry grenades and 75 pounds of gear, all while wearing camouflage fatigues and can call in an airstrike bombing?' +p4324 +aS"Where are those organizations with such scientific rigor? If they truly do exist, they must be in the position to understand the God of the Gaps they're worshipping has become microscopic." +p4325 +aS"I don't care for the respect of utter nincompoops. I'm happy to tolerate them, but don't expect me not to laugh at them." +p4326 +aS'Primarily from your side of the aisle in all arguments. You really described yourself a T.' +p4327 +aS'So this singularity that appeared out of no were became a greater singularity which took on perfect balance and form?' +p4328 +aS'Prove something besides your ignorance? Homo-erectus and Neandertals differ in cranium size, bone size, bone structure, number of bones as well as the length and width of individual bones. I can see why people are laughing at you' +p4329 +aS'So you\'re claiming that you "transformed" from part of your mother to a human. So you\'re claiming that you were once almost your mom\'s arm or leg? lol! Biologically, this is simply a farce statement.' +p4330 +aS"Here's a novel idea - how about the right gives up the abstinence programmes (scientifically unproven) and improves access to and information on b/c to stop women having UPPs in the first place? Just a thought." +p4331 +aS'You should really think about what you say before you say it. I have heard this before and its garbish, I have been around and owned guns my whole life and I have never, not even once, had the thought of getting a gun just because someone ###### me off. I would never use a gun on a person unless that person were a viable threat to my life, such as coming at me with a knife for example.' +p4332 +aS'Selective reading huh? Well, there is none so blind as he who will not see.' +p4333 +aS'Well with thinking challenged individuals like slimjim floating around it is no wonder we have a rogue agency with no oversight attacking the honest citizens. See Ruby Ridge and Waco for examples.' +p4334 +aS'You know you have outwitted a conservative thinker when they completely dodge the argument you have made.' +p4335 +aS'Now you are being insulting. Evolution makes no statments about your god. For that matter, neither does cosmology, astronomy, chemistry, physics or geology.' +p4336 +aS'Ah yes resort to attack when you have no case - perfect example. Its a marvellous demonstration of projection.' +p4337 +aS"So if a jew tells a big nose joke, he's saying that all jews have big noses? This is a joke thread; I posted a joke, get over it." +p4338 +aS'And you have just described "creation science." No application of the scientific method. No testing. The conclusions are known before the judicious quoting of scientific authority has even begun. I notice that you use one of those quotes of a scientific authority below. You show that you are what you decry.' +p4339 +aS"Functioning? The fetus breathes freely? It cries when it is hungry or uncomfortable? It demands attention? It smiles and coos and is cute to those who behold it? Wow! Didn't know that fetuses were that active and functional." +p4340 +aS'i dont like watching videos. or following steps. isnt there just one thing i could do? you know, like be forgiven or whatever?' +p4341 +aS"They can't, if you value science and common sense, however, science and common sense are irrelevent in their world." +p4342 +aS"I don't see how you figure that. Are you intoxicated by any chance? I'm not trying to insult you, I'm serious. You're not writing well, and I'm not refering to your point either." +p4343 +aS"Ahh but what if all the shirts have only american flags on them. Would it them be a group of patiotic americans and their children? I mean you do tend to see american flag wear, including tee shirts, everywhere. Would it still be considered a protest if all of them had american flag shirts on them. AHHHH Joe I it hit me of course this is like Ghandis' salt march." +p4344 +aS'Thank you for this thoughtful exposition on the historicity of your loving mentor.' +p4345 +aS"You jsut don't get it. You act like two wolves and a sheep voting on what to have for lunch. You as a hetero get to go and get married to the person of your choice but I do not. What part of that do you not understand. You say this isn't personal and for you this is true but for me the man I love is nothing but a stranger to me in the eyes of the law. How cruel can you be" +p4346 +aS"Er . . . how do you know that god hasn't told anyone to kill enmasse (in the last 2000 years)? Does he run all his orders by you?" +p4347 +aS"Where? I don't see it. My monkey brain's fine but my eyes aren't what they used to be. I'm guessing we're through discussing the legality of armed self-defense in Australia given the flurry of OT links?" +p4348 +aS'Oh, if we only had the requisite absolute civilian gun bans, sick things like this would never happen! Huh Brady?' +p4349 +aS"Maybe you aren't aware, but something that hasn't happend but has a possibility or probability of happening is potential, so the word is accurate to describe it. And since I'm sure Steeeeve (the dictionary worshipper) will step in, here is the definition: " +p4350 +aS"So your biased reading of the Bible coupled with your personal flaws and your misunderstanding of science is the basis of your religiosity? Somehow I don't think that's something you'd really want to brag about..." +p4351 +aS'Well then, I guess I must be a turkey-sandwich worshipper! emoticonXAngel' +p4352 +aS"But I thought it was the easy gun laws in the U.S. that made Mexico's cities a shooting gallery? Same as L.A. and less than D.C.? Amid Drug War, Mexico Less Deadly Than Decade Ago" +p4353 +aS"Again he was under attack. Listen to yourself. And talk about a parrot? No one is arguing Saddam was a saint. But he wasn't and threat and he wasn't insane enough to commit sucide. You are too busy being a lemming and being led over the cliff with president Shrub (Molly Irvins -- GW is to small to be a Bush). ;)" +p4354 +aS'After Rump Limpballs and his XXXXX followers started calling me a "Feminazi", I was granted a license to call TeaBaggers TeaBaggers.' +p4355 +aS'Better still , you pop down to your local army barracks and explain it to thememoticonXClown' +p4356 +aS"So? God also says he made you out of dirt and then supernaturally lifting the dirt from the ground into the woman's uterus. Oh well, I suppose it is all beliefs no matter how silly it sounds." +p4357 +aS' well there is an educated answer :) thanks for the feedback' +p4358 +aS"That is a completely subjective assessment. Thelmoose and Unkerpaulie were already quick to dissociate themselves from any smugness or self righteousness on this very thread. It's a schism! I'm filing for their excommunication! emoticonXWow" +p4359 +aS'You should watch where you cast stones, kido. Your original post is an example of a straw man...not mine. You should be more careful before operating a gun...you just yourself in the foot. LOL!' +p4360 +aS"Damn, had 2 of them on my doorstep yesterday. Why didn't I think of that?" +p4361 +aS"You are apparently unwilling to extend your thinking process to the other side of the argument Galileo, and by this I mean, and repeat that it isn't criminals owning hand guns which we defenders of gun rights are fighting for. WE AGREE THAT CRIMINALS SHOULDN'T BE ARMED, and the laws already exist on the books to punish them when convicted criminals are caught with guns. But your solution to disarm all honest citizens in the belief that this will make them unavailable to criminals also is ludicrous to the point of self destructive insanity. It is that premise which we are fighting against through the NRA and other lobbying efforts." +p4362 +aS'From the threads I see, you would be banned in 10 posts, and everything deleted. The level of discourse over there intelligence over there makes ER looks semi-intelligent.' +p4363 +aS'So the Establishment Clause was included to promote atheism, eh?' +p4364 +aS'None... unless she uses abortion as a form of birth control and has them regularly.' +p4365 +aS"well, then why are the doctors trying 2 also test the embyonic cells? what's their reason then? we don't know, because the doctors might not want everything that they're doing be on the front page of every newspaper. they have their reasons for their actions, and they just don't want people like you to know about them. or...they already have their reasons published and everything and you're just 2 close-minded 2 take the information in." +p4366 +aS"That's right, a broken clock tells the right time twice a day, and gun hating hoplophobes are never right." +p4367 +aS"Thanks for contributing absolutely nothing as you make unfounded claims without supporting them with even the slightest proof. But hey, talks cheap; and you've proven you've got plenty of that since showing up here." +p4368 +aS'...that is on every single one of his posts? Still going to claim you read other peoples stuff properly?' +p4369 +aS"And I suppose you feel it would've been better if she died at the hands of a knife-wielding killer?" +p4370 +aS"I know this may seem obvious to most people, but it seems to have escaped the notice of creationists. Birds are tetrapods, as are amphibians, reptiles, and mammals. Birds didn't just grow wings. Wings are adaptions of the front limbs that were covered with feathers. Perhaps you are unaware of the evidence that indicates that maniraptors had feathers, probably for thermoregulation. Saying that there is no mechanism for birds to grow wings when they previously had none is like saying that there is no mechanism for mankind to grow arms when he previously had none. You see, mankind's closest relatives are the two species of chimpanzee - they are quadrupeds." +p4371 +aS"Well you'd know fascist wingnuts for sure. Hitting a meeting tonite?" +p4372 +aS'Yawn.. you are so obsessed with gay sex. I am not. Enough said.' +p4373 +aS'Oh, yea. You are damn right those European socialists are dangerous. Americans might look and see their governments actually doing something USEFUL for the people and think that we should have that here. I am surprised we have not nuked them yet.' +p4374 +aS"WHAT??? Jito, are you saying that motherhood is difficult? emoticonXWow Now that's a shock..." +p4375 +aS'Did you even read ythe OP? Did you even read the title? Pointless distinction? Huh. I understand what you are saying. I also know you are changing your argument. When it was proven that Sanford did indeed run on family values, you changed your argument. Instead of just owning up and admitting that, you weasel out of it. ' +p4376 +aS'You would not celebrate Osama being out of the picture? Maybe not throw a party, but a not even a simple "yippee!"? Yeah, right. What a load.' +p4377 +aS"But there seem to be so darn many of them, everywhere you look among the religious right. Why is that? Can't they go out and recruit people with IQs somewhat above room temperature?" +p4378 +aS'You should use the same quote when whining about use of partial quotes, and not introduce different ones. Nozza made a false assertion and was refuted with his own words. You introduce a different false assertion and fail. Epically.' +p4379 +aS'Could you avoid your constant use of strawman`s fallacies please?' +p4380 +aS'Then you would have to be believe that out of the supposed millions upon millions of people who walked the Earth none of them were pregnant and there were no newborns either. Then again, to be Christian, you also have to believe the world was created in 7 days and their was a Biblical great flood too. The best part about writing a fairytale is that the author gets to make up everything as they go along.' +p4381 +aS"Yes, some people are jumping ship, which is a crying shame. STICK TO YOUR GUNS MEN! WE'RE WINNING!" +p4382 +aS'Want to know how to make a gay sex liberal mad and whine? Tell him the truth. Then they get their knickers in a wad and whine for the politically correct policeman. p.s. Unless Mother Theresa repented she will not have gone to heaven either.' +p4383 +aS"Sorry, I was busy looking at your Base21 source, the one where you post your own article. I figured someone had made up an article on it. Hey, according to PNC=WW3, if I don't like the people who put the information into the State Dept. website, I don't have to believe it. That's according to him." +p4384 +aS"But you are the accuser. I've read the Bible and I have studied religion, more than you can imagine. I have also studied biology, performed experiments and reached conclusions. The problem is that you seem unable to think for yourself." +p4385 +aS'You say some of us are lying and then you say you apologize "if" we\'re "somehow" offended. Gee, that\'s mighty white of you.' +p4386 +aS"You're right it'll be fighting the war in Iraq. )Nah, really it'll be from social security, etc etc." +p4387 +aS"Too late. I am a child of the 70's. My mind evaporated decades ago.emoticonXDonno" +p4388 +aS'Thats why I say my gayness is His gift and blessing to me. There is nothing more joyous then gay sex.' +p4389 +aS'You missed out mean-spirited, which fits like a very well fitting glove.' +p4390 +aS"Which ones? Ineffective how? I'd guess the laws weren't struck down simply because too many people broke them." +p4391 +aS'glad to know you bring spelling into this. Shows where you are in the argument. And where did the life saving question come from?' +p4392 +aS"I disagree. Well, only in that I think it's high time we held everybody to a higher standard. We should suspend hetero marriage until they clean up their act!" +p4393 +aS"Oh gosh, silly, silly me, not blaming an entire group of people for something a few nutjobs did. My, I'm so embarassed for being so intolerant and thinking that! emoticonXBangheademoticonXBanghead " +p4394 +aS"I don't know? How about a person from a group known to do almost anything to get money, but also realises the pain they would bring to a child if they had one." +p4395 +aS"You still don't get it do you, Smiley... emoticonXBanghead If cupcakes were human? It would." +p4396 +aS'Every time the KKK burns a cross NRA members are there. So what? Every time they burn a cross Christianity is there.' +p4397 +aS'Try the ( Law of Common Sense) . If your an ex-atheist, you already know the ( Law of Relativity ).' +p4398 +aS'First off, no one says that if there is evil, there can\'t be a God. They say that if there\'s evil, then God can\'t be omnipotent and all benevolent. Let\'s keep the topics straight. Also, I see no way in which the existence of good bolsters the argument that God exists. I could posit the existence of a God of popcorn, and then say "look, here\'s some popcorn, my God must be real!" Somehow, I don\'t think that would convince you.' +p4399 +aS"Lotsa gay animals out there, man. Wonder what Jaaaman's sources are. He seems very perturbed by homosexuality." +p4400 +aS"Good observation! He is very good at presenting fellatious viewpoints and lack of knowledge and content. He is one of the more fellatious people I know and you won't find him taking notice of the Constitution as the Supreme Law of the Land either." +p4401 +aS'You can take a horse to water. I provided evidence to support my assertion. You provided ............ "Oh no it isn\'t!"' +p4402 +aS'probably because this is an abortion forum and not a forum about the Iraq War..not only that, there is no parallel.' +p4403 +aS'So you evolved and the aryan race was created by God? I have never heard that before.' +p4404 +aS"I'm not interested in who isn't hitting on you. Do you want an ugly, flaming, gay cellulite blubber-wench hitting on you for three years or not??? Or maybe a pod of those whales all hitting on you?? For the record, gays make normal men's skin crawl, and not in a good way. So keep the spiritually-challenged heathens out of the men's barracks, and out of their showers. Just because you and the rest of the pro-gay crowd thinks that kind of depraved activity is ok doesn't mean the rest of society does." +p4405 +aS"Of course you don't. It's the natural humanistic way of thinking." +p4406 +aS'Jyoshu, stop drinking the Kool-Aid before your brain is totally fried.' +p4407 +aS'So taking peoples rights away is an american value? I think I will push for legislation to make cancer surgery illegal. After all cancer cells are human life too and with modern medical tech they could become a human being also.' +p4408 +aS'Will the Catholics ever elect somebody who is not a complete knob? He speaks just like he knows something about gay relationships. emoticonXRolleyes' +p4409 +aS'You never bought something you liked? You never went somewhere with someone you liked or went to meet them? ' +p4410 +aS"It is supported, I have shown that it is true. Your only argument is to claim that organisations that perpetrate genocide don't agree that it is genocide. Wow what an argument you have. " +p4411 +aS"Oh, oh, and don't forget to include the proposed Federal Kosher Amendment's text, which just coincidentally matches the Levitical proscriptions, in your argument that things like the FMA have nothing to do with separation of church and state." +p4412 +aS'And here it is, corrected to remove that little hint of sensationalism that you feel is needed to drum up support for your cause.' +p4413 +aS'Only in the mind of a secular humanist atheist would it make sense. emoticonXGood' +p4414 +aS"What, you mean like this story (http://news.bbc.co.uk/1/hi/sci/tech/3136266.stm) of scientists warning about ocian acidity levels from 2003? Global warming is old news too: it doesn't seem to have reached the more remote parts of the world though, like North America for example." +p4415 +aS'So if I go out and buy a Brand X car and then regret it a year later, does that mean that nobody should be allowed to go out and buy a Brand X car? Am I entitled to have an opinion and share it with others...sure. However, could others purchase a Brand X car and never regret it...absolutely. Should my negative experience be used to prevent others from engaging in something that they might consider positive? Sounds kinda fascist to me.' +p4416 +aS'Turned? What do you mean turned? (Oh man! Got you one more time! Brutal! lol)' +p4417 +aS'As compared to "Truth" (capital T). Yes, creationist theocrats have this tendency to portray their subjective beliefs as truth, their wishful thinking as facts. No surprise there. ' +p4418 +aS"This remark would be funny if you didn't actually mean it...." +p4419 +aS"Based on what besides your own immediate knee-jerk denials? You're always in the tank for the Bible bashers." +p4420 +aS'Abortion is not immoral? End of story? Simone, are you trying to impose your own personal moral code upon me? Well I never....' +p4421 +aS'pay attention to what ? to the voices in your head ? your age is irrelevant to your recognized lack of intelligence, but being a minor would be relevant since it would excuse your ignorance. My advice to you ? keep all your life pretending in forums that you are just a kindergarten kid and therefore people would think that for a 4 year old kid you are not too dumb and of course knowing nothing is understandable.' +p4422 +aS'I truly mourn for you cookie. I pity the emptiness and shallowness of your soul. emoticonXCry' +p4423 +aS"Brave words. Next they'll be limiting free speech. Oh wait. Done that already. " +p4424 +aS'Indeed true. God created man in his own likeness and man returned the favor. Man created a vindictive, vengeful, and vicious god, according to the Bible. So where does a loving god come from?' +p4425 +aS'Right. Catholics say prayers to a woman that they hate. Next!' +p4426 +aS"ROFL you don't even believe that given the democrat party's known escapades. I do hope you haven't stroked out due to the Brown victory. Let the games begin!" +p4427 +aS"You really don't get it. The best thing about a free market is when someone acts like a fool they get burned. Thanks to government intervention and regulation when someone acts like a fool they get bailed out. If you like we can have the trains run like Amtrak." +p4428 +aS"Oh no an open minded church that doesn't hate? GASP! And sorry but the bible has many interpretations as is clearly seen in the WIDE and VAST amount of differing denominations. Just because their not closes binded right wing bigots doesn't mean you can grill them cause their interpretation is different..." +p4429 +aS'Just out of interest, which particular aspect of "truth" are you getting at here?' +p4430 +aS"Ah yes, the 'Let's pull a smug and self serving quote out of context from the bible and use it as in insult, therefore god exist' routine. That arrogant method of using self congratulatory bible quotes to insult and denigrate your opponent is neither an effective debate technique, or does it help convince those people on the boarder line to convert to Christianity. It does drive them away, so please, be my guest and keep on trying to use it. I figure the ratio of people you drove away from Christianity to those people who were converted to Christianity from you must be way lop sided." +p4431 +aS'Interesting.... have you ever been to a schoolyard recently? I think the "taunts" are more directed at gays. Like "f@ggot" and "fairy". What taunts do you get on a daily basis? What... being called out on your negativity towards the rights of a minority? boo hoo.' +p4432 +aS"But that is how creationism works - half truth. Evolution is a theory but don't make it quite clear that in science the word theory doesn't mean half-assed guess, as it does in creationism. Check out that little piece of **** that was added to the bottom of the Patterns of Cumulative Change paragraph on page 7. That is pure YEC. And you aren't a YEC?" +p4433 +aS"I think we're seeing a culture war. Hardly seems a fair fight though, since only one side has any.:p" +p4434 +aS"You'd have to drown a few puppies too. Kittens might do, but you might fall a little short." +p4435 +aS"I believe we have a human responsibility to one another. That we are our brother's keeper. Tell me, Bassman, if there aren't enough jobs, and the costs of medical care are skyrocketing through the roof, what do you suggest your fellow Americans do? Just drop dead?" +p4436 +aS'Oh boy,,.. I got ignored with a potty remark. Why is that not surprising?' +p4437 +aS'Why do "they" want it to be true? Some "gay" science agenda?' +p4438 +aS'Seems all the drills would broadcast when they had a leftie. Just could wait for that case of M-1 thumb or the hot one down the shirt.' +p4439 +aS'So, you have no problem with the fact that this is abortion and was caused by god?' +p4440 +aS"Well, you're writing from an embryo's point of view, when an embryo doesn't even have a point of view. It would be like writing from a rock's point of view." +p4441 +aS"I didn't know that doctors have the constitutional right to perform abortions. What provision in the Constitution guarantees that right?" +p4442 +aS'Well that lets out most of the supreme court when RvW comes up! And of course 1/2 give or take of the voters would be disqualified if relevant issues come up to a vote. Perhaps we should start an effort to amend the constitution to incorporate your idea!' +p4443 +aS'I see you missed the entire point of my post. Good job on analyzing the sarcastic opening though.' +p4444 +aS"Wow! ...... If your interpretation were correct, there would be a connection between his post and the USSR! But it's not, and there isn't." +p4445 +aS"Oh, I see. So America does not care for the rights of the people? America cares only for the opinion of the majority? Hrm, that's funny. I fail to remember learning that part in all my US history classes. When did the founding fathers say that? Where in the Constitution, the Declaration of Independence, or the Bill of Rights might I find such a notion? 'Rouge" +p4446 +aS"Is there some sort of a symbolic potent phallic aspect to holding a gun in one's hand? Is Sarah Palin being a manly sort when she shoots a wolf from a helicopter?" +p4447 +aS"What does spelling have to do with your own opinion? Again this isn't just about you although I think you did resort to correcting someone's spelling and just didn't answer the question. This has nothing to do with being entitled to your own opinion. It is equally bad for anyone to resort to personal attacks on either side of the debate." +p4448 +aS'So then how do you know that abortion isn\'t in the plan then? If as you say we have "VERY LIMITED PERSPECTIVE"' +p4449 +aS'since when has religion been pragmatic or based upon systems that works? Obvious answer: never.' +p4450 +aS'A nameless face to the feds? In this era of paranoia and fear and overgrown governments? As if any of us are private and unknown individuals anymore.' +p4451 +aS'The poor in the US certainly seem to eat more than the rich in most countries.' +p4452 +aS"Hey Jitobaby - if you're that insecure with your beliefs that you have to throw this kind of a snit when people are making a case contrary to your failed radical liberalism, then maybe you need to watch Michael Moore on TV instead of reading my posts." +p4453 +aS"Now you've ruined it! You're not supposed to mention god. That's the whole idea. ID is stealth creationism. XXXXXX pretend that there is some scientific basis for the assertion that there is some sort of magical designer that is responsible for everything, but they don't say it's god. If they did that, then ID would be religion and introducing it into schools would be unconstitutional." +p4454 +aS"Just because you fail to realize what the article says doesn't make what you said true. Since you seem to like logical fallacies can you reconginze which one you just committed?" +p4455 +aS'So your claim that no pre-existing belief is necessary is untested by you. Do you have an example of an actual non-believer having a religious experience that made a believer of them? In my experience God never appears to atheists. Funny that.' +p4456 +aS'So atheists are capable of goodness, love, kindness, generosity and sympathy but they have no meaning unless one conforms the the fundamentalist christian morality.' +p4457 +aS"Crouching Libertarian, Hidden cost. Can't pay extra expenditures get's ya penalized! No special education requirements (they are't unders state or federal control!) No requirement to moniter student progress...that seems safe." +p4458 +aS"Yes...I think I would agree with you. That's what happens when you have superstition coupled with self-imposed ignorance I suppose. It's a shame!" +p4459 +aS"Please tell me, why did you believe your pastor, but not me? What did he say that was so convincing? And please, PLEASE, tell me what you think the Bible might not be saying that could have any bearing on this in the slightest. How can the fact that we don't know Ehosh's second cousin twice removed have any bearing on this at all, or whatever you think the Bible wasn't saying? " +p4460 +aS'I was hoping that talking in Old English would help him understand.' +p4461 +aS'Where, exactly, did the article say that bacteria exhibit intelligence????' +p4462 +aS"Right on! The Obama administration is a colossal financial disaster. If he doesn't have another trillion dollars to XXXX he can't do anything. Tax and spend - that's all those liberal turkeys know how to do." +p4463 +aS"Compared to what? The U.S.? That would be laughable if it wasn't so serious, it is plain ridiculous. The CDC and NAS studies Tither has posted so many times still hasn't sunk it has it? There is no benefit to any gun control law that has been studied! Now here you are ignoring and contradicting scientific facts...again. Take Chicago, they have strict gun laws and have over 3 times the national rate of murders." +p4464 +aS"You mean you've spent your good, hard-earned money on his revisionist follies? ROTFLOL!! You could have had a six pack to really make your day." +p4465 +aS"Why does they admin let EZ post comments like this to other people, if he can't be vicl and debate like an adult to others, why is he here......to spread god's love ...right?" +p4466 +aS'Just which god might that be? Yahweh? Krishna? he Great Spirit? Allah? Please specify.' +p4467 +aS'Looks like dancing in the blood of innocents to me.' +p4468 +aS'Oh I understand plenty. What you want is a system where a person is held responsible for crimes that they didn\'t commit. You want "guilty by association" extended to the point of ridiculousness where anybody who even met the criminal even once can be held as an accomplice.' +p4469 +aS"Uhhhh, I just said that I DO JUDGE! So what in the hell are you talking about? You're not well. I didn't bother to adress your points about slavery because there's no point. I disagree with your claims as I suspect would most historians. But it doesn't surprise me that Christians would try to claim that they ended slavery since they also try to falsely claim they founded the country." +p4470 +aS"All science is provisional. For absolutes, we look to your interpretation of your bible. That's always absolute and beyond any correction. " +p4471 +aS"I can understand your disappointment. Its very difficult to cure someone of chronic religious delusions. No easy way to relieve the suffering of the victim. But if you really work hard at it for another decade or so you may recover yet. Best of luck and don't fall for the quacks peddling quick cures." +p4472 +aS"Oh look, Gansao the blowhard is still living in his world of ignorance and denial... like his daddy Ezridden. You couldn't educate a rock ya stupid bastard.emoticonXBye" +p4473 +aS'I guess since he said so it must be true... poor daewoo, just remember only whiners point out logic fallacies like ad hominem and argument by dismissal.' +p4474 +aS'Are you sure? VOR is a 14 year old kid from Florida. His IP is squarely from a ISP from Florida. If he is retired, he is the first person I have ever heard who was 60+ that used slang normally reserved for street gangs. Not to mention that his war stories place him in two different seas at the same time. Somehow 2 tours turned into 4, midlevel ship officer turned into high ranking military advisor. All in all, VOR is far more of a liability to any of his allies because of his lying, lack of education and reading comphrension problems.' +p4475 +aS'I have. Yet I can`t seem to be able to do the creative math that will show that europe will become pre-dominatly muslim in any near future. ' +p4476 +aS"Evidence? We're talking religion here. Religion. If there were evidence, then it would be science." +p4477 +aS'But religion is not a topic for science classes. Teach the science in class and if that presents a problem for your religion at home, perhaps you should think about your religion a bit more critically and realistically. What is being attempted is to cast doubt on well established scientific theory and pretend that magic is a viable alternative.' +p4478 +aS'Perhaps then the problem is a shortage of fiber in you diet?' +p4479 +aS'Our pumping of CO2 is certaintly not helping. Does that mean we should pump gasses and make people in big cities sneeze?' +p4480 +aS'I could have labeled my post "TRAP" and you wouldn\'t notice. Tell me, are these two contradictory: ' +p4481 +aS"If truth makes you uncomfortable, feel free not to respond to me. I will continue to point out hypocrisy , and bigotry. I'll mock anybody who says 'slavery wasn't all that bad' either." +p4482 +aS'Yes, I will mark that on my calendar for future reference.....get help man....really...you need it.' +p4483 +aS"Seriously, in part is Waxy saying, I was here first? (It's my forum, I'll whine if I want to.)" +p4484 +aS'I also took a look and think your evaluation is charitable.' +p4485 +aS"Actually they apologised because it's a bit of a fad amongst the limp-wristed politicians at the moment. And anyway, the blood is fairly even on both sides." +p4486 +aS'Ah yes, the ever popular 3rd grade "they started it" response. Didn\'t jesus say to turn the other cheek?' +p4487 +aS'Care to post some proof or should everyone just believe it because you say it?..' +p4488 +aS'You show me the post where I said I thought terrorists killing children was a good idea and I will eat my keyboard.' +p4489 +aS"But if this was a republican program, you'd have no problem with it. You are a rightwing hypocrite, Archie Baby." +p4490 +aS"And you know what I think? I think that everyone who doesn't have sex 24 hours a day 7 days a week is denying human beings life every second. I'm sure some of those sperm would love to have the chance to breathe the air that you are breathing in vain because you don't think they should live [/sarcasm]. Why don't you think this? Why embryos? Embryos are the one thing that have great potential to cause harm in a woman, and you just so happen to choose them as human beings. Very suspicious..." +p4491 +aS'True they should have passed raincoats and knee boots to protect peoples clothes from the XXXX that the president was spewing out.' +p4492 +aS'This, coming from an atheist. How consistently shallow of you. emoticonXRolleyes' +p4493 +aS"yea, I often forget ToE is a mental concept, not a scientific one. Nothing -- and I mean nothing -- will ever dismantle it in the minds of the faithful. Materialism is so entrenched in your mind that even if an animal generates a new piece of morphology by mere thought, sensation or awareness, and then passes that trait down to progeny, (which has been shown on here) you still think materialism stands. It's an unfalsifiable mindset that you and millions of others have created for yourselves." +p4494 +aS'Well it depends he could always be a sperm donor or make some Lesbian couple happy :)' +p4495 +aS'No, I for one dislike your posts because I know you intentionally write irrational posts to help support your religious cause. Just for the record montalban, basically every single legitimate scientist is "pro-evolution". Creation theory is not taught in public schools, not by chance, but because...*gasp* it\'s RELIGIOUS MUMBO JUMBO. There is no evidence to support it. Creation fiction has made no progress with it\'s "faith-based" (lackofevidence) with rational people. And I\'ll also say that I\'d welcome ad hominem over irrational thinking any day. Ad hominem is just a lack of patience, or someone who doesn\'t care to hide their emotion or opinion. Irrational thinking on the other hand is often only cured by death. Someone guilty of ad hominem can still hold a rational debate. The irrational..well, why bother? -Mach' +p4496 +aS"How about other religious theories. What about teaching about the sun god? I don't mean that they believed that, but teach it as a choice because everyone deserves the right to choose in what they believe. Actually let's also teach how the theory of gravity could be wrong and people can choose to believe that invisible fairys pull people down towards the Earth and other massive objects. We should teach the theory of gravity also but we need to give them the choice on what to believe. " +p4497 +aS"Excuse me, I stand corrected. For 'pretend' please substitute 'wrongly believe'." +p4498 +aS"No surprise there. You would have to invest some thought to define something. Why don't you just consult your Little Golden Dictionary?" +p4499 +aS"Actually, I don't sneer at you. I laugh at you. And I don't attack your intelligence but your knowledge. You are intentionally ignorant." +p4500 +aS"That sort of warms the cockles of my heart. Namely that some Europeans might be disinclined to visit or stay here. Don't let the door hit you in the buttocks on the way out." +p4501 +aS"So the BBC folks are frauds and liars? You really are an idiot aren't you? Piltdown Bird is a colorful way of saying it was a Piltdown like fraud. National Geographic knew it was a fake and published the article anyway. Of course you probably still believe in the original Piltdown don't you? You probably believe the Nebraska Man and Haeckels speechless apes were real too. There is an echo when you think isn't there?" +p4502 +aS'Cool I want to be free of the regulation that I wash my hands before preparing other peoples food. After all it should be my choice to wash my hands after going to the restroom and I should be able to make that choice without restraint. In your world there are no courts, police, or governments to hold me accountable for killing someone or giving them hepatitis.' +p4503 +aS'Well bravo for you - they must not be all that good considering. Or did you simply learn to be deceptive yourself and confuse that with deception by others? Who can say?' +p4504 +aS'your "minds"? How many do you have? Oh, and "I wanted to see what inferior it was"? Nice example of your supposed superiority.' +p4505 +aS"I'm glad that you're the one living in fear of becoming a criminal for defending your family and not me." +p4506 +aS"I have an entire New Testament. You've got what - a mouthful of denial? When you get to the level of the NT works let us know." +p4507 +aS"And you tell people not to call you a gay basher? LOLemoticonXRolleyes emoticonXRolleyes emoticonXCensored I know very well what faux means - that is the reason it is bashing to call someone's marriage that." +p4508 +aS"I won't hold my breath awaiting a retraction of this piece of balderdash you've composed. Guess we'll chalk it up to puffery." +p4509 +aS'You see, that\'s the problem: "generally". You obviously know little or nothing of how prejudice works in this country.' +p4510 +aS'Well, at least you are more consistent about equality than a lot of people in your movement. ' +p4511 +aS"I know that. Evolution releases itself from its foundation at will. When it wants to speculate about things like abiogenesis and claim it to be science, it allows itself to do that. It's that interchangeability thing you spoke of above." +p4512 +aS'And yet after investigating for over a year, our inspectors agree with me, not you. Hmmm.' +p4513 +aS'All sin undermines society, including illicit gay sex sin. Or have you forgotten Sodom and Gomorrah? Coming to a San Francisco bath house near you.' +p4514 +aS"If you don't get all 10 according to landover you are not a true christian." +p4515 +aS'Sorrowfully, you are so right. That\'s exactly why we have all "suffered" for 8 long years. Sheer. . . . .no I refuse to write it!! :)' +p4516 +aS'I\'m actually in the Detroit Subs with one kid in a Blue Ribbon High School and two in college nearby. And yes, the mayor\'s got the bling goin on in his wife\'s city-leased Escalade. I\'m not sure if it has "dubs" on it or not, though, but I bet the stereo\'s kickin\'. :)' +p4517 +aS'HELLO!! THAT\'S WHY!! Then we see the standard dance of how innocent and objective science really is. 6) And the standard "theistic evolution" dance. Atheistic evolutionists can\'t get along without it! I wonder if Kenneth Miller will see the movie, and comment on it. I wonder if he\'d have refused to be a part of it.' +p4518 +aS"So what you are saying is that the actual purpose of prison is to be raped in the shower by some 400 pound guy called Betty? Or brutalised by a guard with an inferiority complex...and these don't strike you as cruel and unusual?" +p4519 +aS"Isn't the point pretty obvious- that exposure to a gun can raise testosterone levels and trigger violent and aggressive thoughts and actions?" +p4520 +aS'Yea they get over it in a year or two. Haaa Haaa' +p4521 +aS'So you yourself could have gone gay but chose to be attracted to women?' +p4522 +aS'Spain, unlike most modern democracies, very very recently had the uh.. privilege of living under a strong, "moral" government that supported the uh.. "family values" so important to the right. That they are running like hell away from it should tell people something.' +p4523 +aS'So now name calling and accusations as to my mental health are what you concider as rational thought? I expect that you must be some sort of expert on warfare, in paticular this war? Am I to believe that you are a soldier there now? Your rage towards me in your post only shows just how easily upset you are. I posted exactly what I meant to and you went off on a tangent. I asked you for proof and all you can do is a schoolyard tactic if "show me yours before I show mine?" Pitiful.' +p4524 +aS"Oh, sorry, I didn't think that was a serious answer. Thanks." +p4525 +aS'Hehehe. Sounds like an American in a big SUV looking at $4/gallon gasoline with a maxed out credit card listening to fundamentalist talk radio.' +p4526 +aS'Cute. And I can come up with about 5,000 to 7,000 examples that do have a bright orange muzzle.' +p4527 +aS"Oh...come on Steeeeve...you know Bush is actually making it worse. After all, it is happening on Obama's watch, and we have got to have someone to blame. Bush was the president...let's just blame him. emoticonXRolleyes" +p4528 +aS"Judicial activism? What brand of stupid is it that you use? What judicial activism do you see here; the judge stating that open carry is legal and has been, and that you can't be arrested when you haven't committed a crime? Or that the police can be sued for damages when they choose to break the law to persecute an innocent bystander?" +p4529 +aS'So you\'re saying that God is a "respector"?-of-persons - iow, the mom\'s "more"-important to *God*? than the unborn.' +p4530 +aS'I\'m one of those cruel heartless bastards that thinks the Constitution doesn\'t apply to terrorists. Break out the cattle prods and "LET\'T PARTY" emoticonXRolleyes' +p4531 +aS'And the funeral dirge of the Left and comparisons to Nazi Germany and/or the collapse of the Roman Empire will begin in 3....2.....' +p4532 +aS"Losing again I see. Don't change the subject. How are supporting 'gay sex debauchery' and lying in any way synonymous? You have made the accusation. Back it up. If different words are too much for your miniscule brain to cope with, I suggest you try yelling your hogwash on a street corner, where less people will be able to see how much of a fool you are." +p4533 +aS"I'd be pretty dumb to buy something from someone who doesn't even believe in what they're selling. Those teachers may teach it, but they don't believe in it." +p4534 +aS'No. Not only are you wrong, you seem to lack the integrity to learn the basics of what you claim to oppose. You oppose evolution you say, but you have no idea of what it is. Most educated creationists not only admit evolution, they propose evolution at rates that make real biologists laugh.' +p4535 +aS"When I want the opinion of a spiritually-dead nincompoop I'll call you." +p4536 +aS"So, it's a proven fact that children denied the act of abortion suffer negative effects? Hmmmmmm" +p4537 +aS'But you sure don\'t hesitate to portray them that way when you use one to bolster the other! Or when you fail to actually (GASP) qualify the matter by noting the differences as well as the similarities. Hey, it\'s just accuracy, so why get in a fuss over it, huh? emoticonXRolleyes Why not go ahead and invoke the Jewish genocide while you\'re at it, or call anyone who has a different opinion "Hitler?" I mean it\'s the same sort of generalization. ' +p4538 +aS"Neat my very own living spell check I can't wait to see well it works." +p4539 +aS'Here is yet another example of Duo holding other people\'s arguments to a higher standard than he holds his own. Duo, you said "Second, no one call actually tell the age of anyone here. To declare such when the verifiability that the claim depends on does not exist is sheer insanity." Are you right? Anyone claiming to know age on these boards without evidence is insanity? Duo, if you are right, you are calling yourself insane. That\'s not going to help you out on the credibility meter. Perhaps you might want to amend some of you posts?' +p4540 +aS'So, I\'m wondering, did you neglect to note the reason because you "forgot" or because it would weaken your statement and its connotation that we really didn\'t want him that badly? emoticonXConfused ' +p4541 +aS"There you go. It's difficult to find which side of your mouth to talk out of when the facts are the facts!" +p4542 +aS'And there you have the "***** Eye for the Straight Guy" review of the inauguration. :p Never mind the expense, the protests, the rather scary IMHO precendent Bush has set in terms of the inauguration, let alone his foreign policy, let\'s talk about Laura Bush\'s outfit. emoticonXRolleyes Waxy' +p4543 +aS"It is impossible to read something that can't be found." +p4544 +aS'Well Duh! The answer has ALWAYS BEEN Drugs, and Drug Traffickers. Concentrate on them and you have the answer to the problems!' +p4545 +aS'How uninteresting must that be for you to intentionally spend time annoying people on the internet?' +p4546 +aS'NO, gun registration should not be mandatory anywhere in the US. The government has no business knowing who has a gun. Gun registration could possibly allow the government to infringe on constitutional guarantees provided by the Bill Of Rights. Just knowing that there are many Senators and Congressmen who would like to abolish gun rights gives credence to the fact that government could actually try to limit or ban the 2nd Amendment in the future. P.S. Crazy is as Crazy says. Scary to think that some would believe that a registered gun that becomes a stolen gun would help in finding the thief or killer if that same criminal gets rid of the gun. Which, if later found, would then be traced back to the legitimate owner, who may not even know the gun had been stolen. The alibi better be outstanding!' +p4547 +aS"Dear smiling, friendly, forgiving Archangel: I would be quite happy to respond to you if you could organize your incoherent mental states into logical, debatable points. Please refer to Chester's Questions for Bible-thumpers for guidelines. As for staying on topic: since there is no God, it is rather pointless to have religious ceremonies in any case, isn't it? As for my nom de Web, you have missed the point altogether. Either you are not quick on the uptake and/or you are completely ignorant of the Japanese language. Hint: surely you have seen the starry emblem on all Subaru cars? To end on a conciliatory note: I entirely agree with the last sentence of your posting [except the punctuation]. -" +p4548 +aS'If you had a look at all of the other threads on this topic you would see that.' +p4549 +aS'3101 posts! what a waste of cyber real estate! at least you are brief.' +p4550 +aS"78.4 years? Well excuse me but I intend to live much longer than that. I was thinking about 112.7 years. Yeah. That's about right." +p4551 +aS'Again, key word "genetic". My hair has the genetic characteristics of a human, but that doesn\'t make getting a haircut murder does it? ' +p4552 +aS"Looks like someone couldn't grip with the fact that he was a closest racist. emoticonXCry" +p4553 +aS"And you offer none for your's. Heteros engage is risky business as well. Therefore on the same grounds we ban straight marriage. It's not just STD's, it's all sorts of physical issues as well. Cancers, hepatitus, bacterial infections, that result from anal and vagina sex. Add one word and BAM, it works aganist you." +p4554 +aS'You have conviced no one or even come remotely to forming an argument.' +p4555 +aS"So you're a perfect clone of one your parents with zero copying errors? Amazing." +p4556 +aS'what other forest? By your logic there would only be one left in the entire world, and it would be what, the size on central park?' +p4557 +aS"That's ok, cause it's completely legal to light up a cigarette while driving. I guess some feel that must be a lot safer than using a phone. " +p4558 +aS"Ahh Good old (and I mean OLD) Ronnie. This man doesn't know XXXX about foreign policy." +p4559 +aS' Me thinks thou dost be too kind. Yon creature willst make the false charge in any event. emoticonXKill' +p4560 +aS"Thanks for what? Pointing out that you have once again misread an article? No problem, I'll be sure to keep up the effort seeing as how you apprecitate so much. emoticonXGood" +p4561 +aS'Oh Blah! Blah! Blah! What the devil do Comanches know? The sisterhood and brotherhood of Sioux, Navajo, Iroquois and other sundry tribes.' +p4562 +aS'You know, its those happy-smiley cartoons that really freak me out. Is this just me or does anyone else find them creepy?' +p4563 +aS'Oh? And what is the specific amount of pot you have to smoke before you become a drug crazed fiend?' +p4564 +aS"It's a lot easier to kill someone with a gun than a cigarette or a beer." +p4565 +aS"And we have an emotional post with no substance whatsoever. I'm sure your twin will be checking in soon. I think I'll keep a count of this type of post." +p4566 +aS"What's that? Campaigning and use of taxpayer funded facilities like transportation for political purposes? I suppose they paid the cops for going out of their jurisdiction too?" +p4567 +aS'You can try and deny the facts all you like. Here they are from the CDC for 2003, go spin them.' +p4568 +aS'And of course, the theory of gravity isn\'t "physically" proven either. Neither is the heliocentric theory or atomic theory or the germ theory of disease. However, evolution has been observed to occur and the current theories are the best explanations that we have for the observations. As far as your mangling of the "Out of Africa" theory, it would be nice if you actually learned what you are talking about before you babble such nonsense.' +p4569 +aS"so your saying he was 200% god-man? i'm not a mathematician but that can't be right surley." +p4570 +aS"Sorry but I don't read your posts, do you think I worship your word or something? " +p4571 +aS"No, I have no idea. He didn't build the Bush Library as Marc Rich did to get a pardon from Clinton, did he? " +p4572 +aS'How can they visually express themselves without their right to expression, besides funky hairdoos. ' +p4573 +aS'Says the man who wants to criminalize being a victim of a crime. :)' +p4574 +aS"Now settle down charlie, and try to think rationally, just for a second. Have you ever heard of a tumor growing into a sentient life form as a fetus does? I'd appreciate a link documenting such an occurrence so we pro-lifers can start planning save the tumor rally's." +p4575 +aS"And I was correcting you. If you are offended then that's the breaks." +p4576 +aS'So your answer to the question then is "Nothing", Marc?' +p4577 +aS"PROJECTION, again.... I'm amazed you can't recognise the amount you do it...." +p4578 +aS'So did you read his mind to determine exactly why he bolded that particular set of words? You are the first mind reader I have encountered here. And considering your disdain and rejection of science from cosmology to biology what does it matter if something is terrible science. According to you all science should be terrible. Why do you attempt to use a tool which you reject as being useful?' +p4579 +aS'The tooth fairy has a different function than the Easter bunny.' +p4580 +aS"It wasn't meant as an insult...just a statement of fact. I likely have as many or more inadequacies than do you." +p4581 +aS"Simone baby I'll see your Sanford and raise you a Mark Spitzer, John Edwards, Jim McGreevey and of course the king of sleeze der slickmeister Willie." +p4582 +aS'Yippie doo! A 23 year old quote from an ornithologist defending his point of view. And his point of view has (or had) merit. But since then, several feathered dinosaurs (not birds) have been found. It has also been shown that the difference between a scale and a feather may be no more than a single point mutation. (You do know what I\'m talking about, don\'t you Calli? You do know what a "point mutation" is, don\'t you?) Bottom line is that there may be no intermediate between scales and feathers. A single point mutation produces feathers from scales. Various kinds of feathers require only further mutation.' +p4583 +aS'Not true. I googled "helpful mutation" and got a nice list of examples. I wish creationists would do some research before making wild assertions.' +p4584 +aS'Your god sees no degree of sins. Shaving your beard, baby-rape, etc, are all punishable by death. That is, unless you repent. emoticonXBanghead' +p4585 +aS"I suspected as much, well part of my job then is to ignore and make snide comments to people who don't come to debate :) " +p4586 +aS'Now name one country with universal socialized healthcare with a population of 300 million citizens modulus, just one if you can. Your exemplar countries are tiny in comparison to us so lets get realistic and compare apples to apples for once, ok?' +p4587 +aS'So, a forty year old having sex with a twelve year old is ok then?' +p4588 +aS'Thank You. You know how much I love to impress people.' +p4589 +aS"This is often called: 'talking out of both sides of your mouth'" +p4590 +aS'Tell us Brady, does the information that While Males ratified the 13th and 14th put a twist in your knickers? emoticonXSmilie' +p4591 +aS'Sounds like my 9mil. is more secure under my bed in hands reach.' +p4592 +aS'What is your theory about the foot fetish gene ?' +p4593 +aS"Well that's fine because I don't really listen to lunatics insult me too much either... " +p4594 +aS"If I thought you'd understand in the least bit why it's important to scrutinize possible occupants of the White House, I'd explain how I feel about. However, you are a hopeless case." +p4595 +aS'Half of the country is stupid enough to think that four (or eight) more years of Dumbya would be good.' +p4596 +aS'No, but they will be forced to have babies if they have sex.' +p4597 +aS"To summarize, since penfolds reasoning has been shown to be both ignorant and short sighted, his only recourse is to offer a trollish quip before skulking away like the irrational philosophical coward that he is. At least you're consistent penfold. emoticonXRolleyes" +p4598 +aS'See, a terrorist attack is probably the sort of thing I would use as an excuse to not go to work...' +p4599 +aS'do you go to study hall? probably not. It is a requirement where the athletes sign in and sit in the library with their teams and are monitored to make sure that their studying is getting done.' +p4600 +aS"Well I am polishing my grave dancing shoes as these people in their 70's can not live forever." +p4601 +aS"what about God? So many God-fearing people, he must be a terrorist :) seriously I really don't know much about terrorists. I know that Bin Laden was behind 9/11 but he wasn't the only one, but that's about it." +p4602 +aS'Are you like a Chinese government official or something? Oh wait. I forgot, the Chinese government controls what you say anyway, so I guess it matters not.' +p4603 +aS"So you are truthful, but I am a liar. Just like you are clever, but I am stupid. You have no respect for me, WW; I've never seen you demonstrate respect for anyone." +p4604 +aS"So they haven't gone into bankruptsy yet? I guess the illegal loans are helping after all. emoticonXRolleyes" +p4605 +aS"Actually in terms of populations we're the same people as the Irish. If you want tyranny try the oppression of the Native Americans. Did you know that the Natives and the blacks were both on the British side during the War of Independence? Amazing how we tyrants command such free support huh...." +p4606 +aS'No, you can go on the public dole and have the rest of us hard-working Americans wipe your arse for you or you can buy your own or be fined for not doing so. ' +p4607 +aS"So if it's not human, we can kill it? But I dare say that's a different topic completely. Sorry, that was more along animal rights than abortion. Abortion is this for me: If the baby is going to endanger the mother's life as well as the baby, why endanger the baby and the mother? Sticking on the decided path, would you rather kill something you know is human, or something that you're not sure is human. It sounds a bit cruel and I didn't intend it to be that way at all. It's just that one loss would hard enough, why make it two?" +p4608 +aS"It's ironic that you should talk about lack of evidence. At least we have a source to believe." +p4609 +aS'Why would I worry about a book of myths and fairy tales?' +p4610 +aS'Amusing coming from someone who falsely claimed another user misused the term "light year." If I am so ignorant, explain how your argument does not require exactly what I said: That God operated the named light sources on a very different set of physical laws and removed all evidence of their existence to meld them with the current set of physical laws that we know do not support young Earth Creationism. I\'m betting you don\'t even understand your original argument. Prove me wrong. Explain how it does not result in God being a liar. ' +p4611 +aS"Gee right on schedule here's the other half of the comic relief. Get a job and a life and off the dole. PS I think mum would be happy to see you out of her basement too." +p4612 +aS"Where is the government in this? Clinicians made a clinical decision, and hid behind a non-mandatory guideline, which was set by other more senior clinicians, expert in their field. Assuming the woman's very detailed recall of the stressful series of events is accurate, perhaps it was God's way of telling this unmarried mother that after five previous miscarriages, she still wasn't getting the message." +p4613 +aS"Did I mention premarital or adulterous heterosexual sex? I think not! As usual 'big' boy is putting words in others posts! Was better when I was on his ignore list..for about five minutesemoticonXConfused" +p4614 +aS"Yeah, but now the special interests won't have access to congress' deep pockets emoticonXRolleyes (hopefully)" +p4615 +aS"Gee, and in what year did he state that? 2005? No way. 2000? No. 1995? Nope. 1990? Nah. 1985? Couldn't be. Without more information I can give an exact date, but seeing as how Simpson died in 1984, he must have said that at least 21 years ago (and if he said it in the middle of his life/career, it would have been more like 60 years ago!) - he did not know back then what we now know." +p4616 +aS'Within one post. Thanks for proving that creationist are incapable of discussing the original topic and automatically move to change the subject.' +p4617 +aS'I see you know nothing about the subject...hardly a surprise.' +p4618 +aS'Feel free samiinh. After all, chemist asked me the same question just yesterday pertaining to the same subject. And the same question about being angry at an allegedly non existent God applies to you too.' +p4619 +aS'LOL! Dodging the problem Easyrider. So, is sidestepping the best you can do?' +p4620 +aS"No, not at all. Read the post above. 'Christmas cracker'?? What's that? Here, we have Fortune cookies.:)" +p4621 +aS"Everyone is welcome to give their opinion on public gun possession here-whether you're for or against gun control (or does gun possession justifies itself) and please state the reasons as well. I would really appreciate it if you guys could include some extra informations regarding this issue." +p4622 +aS"What's sick is your theological comprehension. God took Ananias and Sapphira (Acts chapter 5) off the earth just for lying. And you want to give JFK, the serial adulterer, a pass? That's how lame your theological thinking is." +p4623 +aS'You don\'t want anyone saying gay people are whacked, but you will make it your business to insult someones religion?! You are a hypocrite!! You say,"Don\'t judge gays!" But you are judging people by their religon?! I thought you were more mature then that. Hey you live ad learn.emoticonXRolleyes' +p4624 +aS"You evidentally didn't grasp the apparently immense complexity and vagueness of my post. " +p4625 +aS'I guess he was a "democrat" as well. He certainly would not have been a republican.' +p4626 +aS'I forgot you support the NKorea government....yeah, it would be a triumph to you.' +p4627 +aS'Stalin died of natural causes while in power, I believe. Perhaps the fall of communism is due in part that the purges stopped. So, killing hundreds of thousands of people was wise for Stalin, huh? Good. Good. Anybody disagree with canadianman76?' +p4628 +aS"Modest as well I see. You haven't answered my question at all. If you are going to wander into a thread like this and make such a comment as follows:" +p4629 +aS"Haven't we all . The difference is some of us know that most people have or will and that it does not make us a fount of knowledge. As you show us so well." +p4630 +aS"Now marc, that just isn't fair. They believe in freedom of speech.... if you agree with them. I just find it difficult agreeing with secular humanists. emoticonXSmilie emoticonXAngel" +p4631 +aS'So says a ghoul who delights in digging up the body of a dead man.' +p4632 +aS'I was thinking moreso Canada, Great Britain, and Israel rather than "Happyland" but whatever floats your boat. ' +p4633 +aS'Might as well attribute intelligence to your thermostat as rape seed plants.' +p4634 +aS'How the hell can you narrow it down to three? The competition in the entire top ten is fierce.' +p4635 +aS"You can't create an artificial minority, wave a magic wand and declare that they should be granted a special status. That not how it should works." +p4636 +aS"Is your thinking really this simplistic? Either I have to agree with you or I am an anarchist? Is that all the complexity you can handle? This or that? Black or white? The best soda in the world is Sprite and everything else is wrong? What a boring little pigeon-holed world you live in. No harm no foul - that is where I stand on sex and romance. Kids, animals and those who don't or can't consent are off-limits. K? Now that I have established (AGAIN) how I feel on that matter, let me reinstate. Any God that allows love and intimacy for only a select group is viscious." +p4637 +aS'Thanks god we sorted that out! I mean, the whole South America - Africa thing is just a coincidence right? Right?' +p4638 +aS'Ha. Those must be the same folks who believe in the missing link like you do.' +p4639 +aS"I'll give you that one...only because I think by then women will be able to place their fertilized ovums in banks. But then again they said the same thing about robot servants and flying cars too!" +p4640 +aS"Well, you must not be a GOP lawmaker or the President of the United States. They're convinced that the only way to prevent the SCOTUS finding in favor of same-sex marriage is to amend the Constitution." +p4641 +aS'Have you stopped beating your wife yet? Give it up! Good grief! emoticonXDonno' +p4642 +aS"Yeah, but it's the NYTimes. And it's an editorial. Two things that, together, make a pungent recipe for a nice dish of bias." +p4643 +aS'The Fact that you believe there is some sort of salvation in Jebus proves you are the dumb one.. You should stop rejecting reality ....' +p4644 +aS"Gee, I'm just bowled over by your mature and articulate counterargument.emoticonXRolleyes We all know genitals have nothing to do with sex." +p4645 +aS"A gutless coward mocking a soldier like a parrot, that's funny. Roasted parrot under glass is a fitting end emoticonXGood" +p4646 +aS'It\'s a look....ad hominem all you got? Evidently. Where\'s your picture at so we can make fun of you? What\'s the matter? A vasectomy got you shooting blanks? And by the way, if one of your cronies "outed" me, then he was no buddy of mine. Evidently, he is intimidated, also. You should hear how they talk about you at TPA. LOL.' +p4647 +aS'Does it function better on tobacco? Alcohol? Caffine? How about hundereds and hundereds of different pills?' +p4648 +aS'Oh my!!!!! Salon.com and Huffington Post think the guy was at fault! Get out!' +p4649 +aS'Based on your irrational rants, you are most definitely the sockpuppet you proclaimed yourself to be in the post above. ' +p4650 +aS'Coveting is the basis for capitalism. Without coveting, there is no motivation!' +p4651 +aS'Nothing I have stated is incorrect. If I did you would get specific.' +p4652 +aS'Do you have any New Testament passages to back these up - or were you just interested in having a rant?' +p4653 +aS'World government is just around the bend! What shall we call it...The Company...The Authority...The End?' +p4654 +aS"So, if having children isn't a requirement fro marriage, then gays should be OK, right? If it is what it is all about, if you marry a woman who is incapable of having children, even with scientific methods, then you are not really married? What about lesbians? They can have childre, with a little help from the local sperm bank. In facst, they can BOTH get pregnant. Does tht mean that a marriage between 2 lesbians is twice as valid? What if a couple of gay men adopt? Then is their marriage valid? If I have a vasectomy, am I divorced? You are confusing me. Please explain." +p4655 +aS'Well....it was easier to get them to use those rather than the ones that just said "White trash onboard".......' +p4656 +aS'Just to be pedantic, a better analogy would be: "If you are here, why do you have brothers and sisters?"' +p4657 +aS'So if you quoted Ted Kennedy when he said to his wife in an event that wasn\'t even publicized "Good morning, sweetie", that would be an answer?' +p4658 +aS"Was your pretty graph supposed to convince me that the universe can't be understood? Perhaps I was to intuitively understand that you're right :p" +p4659 +aS"More heretical misinformation from dear old cap0. 'Zionism is Racism' - a Dead Issue" +p4660 +aS"That's it? That was your post? To attack a source without anything backing you up? Bravo!" +p4661 +aS'Try and comprehend this child, your siggy is your OPINION. It is evidence of nothing real or imagined. Only in your mind does it prove anything at all. ' +p4662 +aS"But on the other hand, Genesis isn't a scientific document. No wonder. Why would a bronze age nomad from the Levant be aware of at least 3 tailless species of primates, or even the tailed primates from Africa, South America, and even Madigascar. If they aren't mentioned in the Bible, do they exist?" +p4663 +aS'Because the soundbite "survival of the fittest" was coined to explain evolution to the stupid masses.' +p4664 +aS'Well if you are Catholic you would should probably find him pretty credible.' +p4665 +aS"let's have an up or down vote on your marriage rights too Lurch....." +p4666 +aS'And irrational emotional appeals seldom hold up in the face of logic' +p4667 +aS"oh cc, apparently, 10% of the population has the power to destroy the other 90% somehow. We can't be in the military because we have the power to undermine things, we can't get married cause we will destroy marriage for everyone, we cannot possibly have committed relationships because it would make Britney look bad ( although, I have her beat by 4 years and counting, still happy and going) We have the power. We are gay, ten percent taking out the other 90% or so they say (ask jaaman for more info)" +p4668 +aS'Yes yes yes. We know you are bigoted against any non-christian. I am sure that the out of context quotes are totally misrepresenting Islam. But, your out of context quotes totally misrepresent Judaism too.. so that is no surprise.' +p4669 +aS"It's sophomoric remarks like that that hurt the gay cause in America. God isn't mocked, though. And I doubt the people are either. And I'm glad California outlawed the sin. The only thing you have left is to hope the far left, spiritually-stunted judges in the US Supreme Court are pro Sodom and Gomorrah." +p4670 +aS"Big Bear, ye mae be thinkin' o the Mennonites. Er the Hutterites, er the Amish. Er mebbe the followers of thet Zwingli feller." +p4671 +aS'Tell me then, does someone who is mentally retarded have a self-interest in staying alive? What about someone in a coma?' +p4672 +aS"I find it funny you think Article V was repealed yet the bill of rights references Article V for passage. So we have the bill of rights which can't be repealed but Article V which was repealed meaning all the amendments we had are unconstitutional? You've really lost it haven't you. " +p4673 +aS"Has the American Medical Association decided to recognize that aluminum, steel and polymer and addictive narcotic substances that can drastically alter a person's mental status?" +p4674 +aS"Observations? Like the posts I have made? Which would be documented via quotes?....emoticonXConfused You demanded 'links' for your recurring rudeness, I produced them. I demand 'links' for my creationism." +p4675 +aS"It's also hard to convince a rational person that something is so if there is zero evidence of its truth, but then you wouldn't have any clue about that." +p4676 +aS'I think we should not only allow GAYs to have legal marriage rights but also those who want to practice insist as well as all who want to practice polygamy. Let us not stop there let us sanction union between human and animals. After all I love my Dog and my Parrot. Why stop with GAYs? By the way where does the term GAY come from for homosexuals.' +p4677 +aS'Are you going to go and urinate on his grave as well? My! My! What hatred and vitriol! What does it feel like to have so black a heart?' +p4678 +aS'have you considered a career in advertising? by the way you f***ed us too. Australians troops were cannon fodder in WWI for the British Empire, remember Gallipoli?' +p4679 +aS'Actually, I read that the god of the bible was really a macaroni monster. He likes cheese, too.' +p4680 +aS"What's the matter? Can't anybody in KC afford to have 2 cars? emoticonXWow" +p4681 +aS"So...all Christians have some sort of brain damage, trebor? You're not getting any better at this are you?" +p4682 +aS'Wow Archie, way to suck the fun out of something. Let me use your words here: ' +p4683 +aS"Alexander, I don't give a rat's rectum about King James. emoticonXBanghead" +p4684 +aS"No, actually, we don't. I suppose it's pointless to ask someone who would speak for God to not tell me what I know." +p4685 +aS"O.K. lets' play your game. Gun control has worked exactly WHERE?" +p4686 +aS'I don\'t understand your outrage. McChrystal\'s your boy\'s general now. Are you saying that you disagree with "the Great One"?' +p4687 +aS'It appears the safety Nazis feel gun free zones should be ran like prisons. Maybe the safety Nazis should take a field trip to their states prison system and ask the guards if guns or any other weapons ever make it into the prisons. Prisons are considered gun and drug free zones. If this was true then how can an inmate get shot by a gun in prison?' +p4688 +aS'Plenty. You haven\'t noticed how many "sentences" you post that aren\'t sentences? ' +p4689 +aS'Nor is there any need for some mythical molecular elemental, nebulas natural selection, or mystical transitionals based on peicemeal forensics and antithestic rhetoric.' +p4690 +aS'The egg is now a conscious human? In under 72-hours? Wow.' +p4691 +aS'You actually posted something that made good sense, and was funny too, maybe there hope for you yet.' +p4692 +aS'point me toward the right way then? if creationists are wrong then why is evolution right? this is a biased answer based on your beliefs. please tell us how creationists were wrong. i would gladly like to see you try!' +p4693 +aS'And you, on the other hand, because you are not educated in science in general, and evolutionary theory (why the quotation marks?) specifically, are qualified to correct those of us who spent years in study of the topic.' +p4694 +aS'John/John would figure out a way for the American taxpayers to foot the bill.' +p4695 +aS'You mean to tell me you would deny a life to be lived out and someone to get away with a harmful crime?? wow, sounds like a liberal to me..' +p4696 +aS"Did you even notice that they were not the first to report it? Oh wait, you didn't because you are obviously using the fallacy of selective observation. " +p4697 +aS'All the more reason to be armed to the teeth huh,does this mean you see it our way?' +p4698 +aS"No, think about what you just said. A cancer cell doesn't mutate, it attacks healthy cells and causes the destruction of healthy tissue. Kinda like liberals in a healthy society - they are the free radicals of the body politic, huh... go figure." +p4699 +aS'And Anarchy. Am I allowed to kill someone if I feel like it ?' +p4700 +aS'Sounds like an abortion bill amendment to restrict all travel by minors is needed by those demanding that young girls give birth after being impregnated by rapists, fathers, uncles, etc. Might as well include adults, just to simplify matters and enhance state police power. Bubbah will be pleased.' +p4701 +aS'For someone that knows how each side thinks, I would have thought you would have had an eye opening response that would have had me recanting everything I have said in the past and glorifying your name and everything you would say in the future, BUT, instead I got ' +p4702 +aS" Now that is a diaper load. How's that free speech thing doing up there by the way." +p4703 +aS"I see. Sounds too nebulous to stand up to scrutiny in the US. I'm guessing that the SCOTUS would strike down such as law as being too vague." +p4704 +aS'Ahhh I see so God was more than willing to use extreme punishment for not loving your neighbor. Like how Sodom and Gomorrah were punished for not loving their neighbor. ' +p4705 +aS'I guess the European union is a great failure? Is that why the Euro is trending 1.5 dollars as liberalism creats misery?' +p4706 +aS"So now those that are opposed to even more laws on the books and a return to Old Testament practices are considered left wing? What's this world coming too? LOL" +p4707 +aS"I was eight at the time. I'll read up and get back to you. Mind your manners." +p4708 +aS'Hmm.. does that include the Muslim Communities you were associated with too?.. We know as rational people that Denial is the Christians best weapon. You should seriously consider increasing your medications.. ' +p4709 +aS"Yes but your one of those Christians people hear about, but never find. You don't really exist. :)" +p4710 +aS"so you are into pommy bashing now? mae honey, is there anybody you don't like? emoticonXRolleyes" +p4711 +aS'So cross jurisdictional escort is a fairly common occurrence in the area. You will note that it is not the local cops talking about not being informed....it is the author of the article whining about it.' +p4712 +aS'...Because everyone knows there are no married men sexually abusing children. emoticonXConfused' +p4713 +aS'Well, the pill has the ability to not let it implant, which "God" already cause for around 60% of its contemporaries. The pill doesn\'t destroy the "entity" at all.' +p4714 +aS'Oh.. that makes sense. Because, it sounds exactly like modern day republicans.' +p4715 +aS"But apparently they can't say no to renting the property for a gay wedding, even if they decide to just say 'no' to everyone and get out of business. go figure" +p4716 +aS"Good to know that sence of humor hasn't completely evaded you. Had me worried there for a moment, or two, or three... emoticonXWow" +p4717 +aS'oh do tell us of this dooms day event, will we need new nike sneakers and $1.75 in our pocket when we all die?' +p4718 +aS"Never heard of him...however, looks like those ever-loving proponents of free speech up in Canada showed Anne Coulter that 'free-speech' is Only what liberals make it to be....." +p4719 +aS'Whose culture are we talking about, here? I thought I was a member of the culture. What am I, chopped liver?' +p4720 +aS"Well, good, I'm glad as heck you have a mom you can tell that to. Mine would've hit the roof, and then hit me on the way back down. Did she flip or was she pretty cool about it? Just remember (who would we be if not preachy? Us ol' adults, we don't know nuthin') that b.c. isn't one hundred percent reliable or that condoms can break and you can still get nasty bugs all kinds of different ways." +p4721 +aS"So everything that other people say on a website or in a book is just and opinion? And everything you say is a fact? Nice how you've got things set up." +p4722 +aS"It's also a noun. But since you're unable but to repeat your self, maybe a few more times will make it 'true'" +p4723 +aS'Good lesson! Always take the easy way out to try and avoid consequences of actions. Instead of leaving a note on a car saying you accidently hit you...you should just casually drive away. Thanks Simone!' +p4724 +aS'Really? Can you link to a creationist website that does not connect evolution to people doing bad things?' +p4725 +aS'And that would make you the one that IS advocating the murder of our future generation.' +p4726 +aS"No you don't cede that decision to her, Steeeve, you want to butt into her personal life and make her decision for her." +p4727 +aS"Ready to condemn blind faith yet, jyoshu? Or are you going to stick to the argument that blind faith is fine so long as you can see you're not doing harm?" +p4728 +aS"Umm, don't know about you but I also eject waste through my penis - just don't do it when having sex, just not polite (unless they ask, now there's another fetish I don't get). Isn't it odd if the anus was not designed for a penis its still pleasurable? " +p4729 +aS"Hey don't insult Olberman... he looks good on the tube emoticonXGood lol...." +p4730 +aS"You're out of your depth here kid. Go and clean your push-bike before you go out on your paper round....it's a disgrace!" +p4731 +aS"After all he isn't a cousin after all is he. You obviously are older than I thought or spent too much time around the DPC. Old joke? Q. 'where do cousins come from,' A. 'aunt holes'. Darn J.P. and after all this time we spent together emoticonXHoho" +p4732 +aS"Dear god.You really haven't a clue about what your talking about.Away with the birdies i think.Yousef was responsible for the 93 bombing,and he himself had very broad associations with some of the Al-Qaeda hardcore(Osama said he didn't know him and was in Sudan while Yousef stayed in Peshewer).Osama wasn't responsible for the 93 bombing,he wasn't responsible for Bali and Madrid and i don't care what the world media tells you.But by all means keep spouting your misinformation,i for one find it hilarious. The Yousef-Osama-Saddam link is a conspiracy theory." +p4733 +aS"And I didn't. Did you note how I explicitly put [Jesus said] for the first two quotes from the Bible, but not for the third one? Any idea why? Come on, think ... you can do it!" +p4734 +aS'What, to be "open-minded?" or to embrace your definition of "tolerance?"' +p4735 +aS'This coming from someone that is very choosy in the question that they answeremoticonXRolleyes' +p4736 +aS'So if you are not naive then you must be evil' +p4737 +aS'Well, I guess this all just proves that more brain dead crack babies are surviving than I originally thought.' +p4738 +aS'Well, the antichrist is going to come and make any true believer a heretic any way so what am I worried about? I knew the risks before I accept the job. :-)' +p4739 +aS"What prompted this? I guess I need to check what website I'm in... Your response, Orion, (like trs) is that of a gutless, spineless, dip-wad. One who would tinkle in your drawers if you made such a claim while facing me. But, I've dealt with your sorry, trashy kind before and have found that no matter what is said, you'll act like you're ten foot tall and bulletproof. But, carry on, Orion. You've shown your true colors now. Cluck at will... emoticonXChicken emoticonXRolleyes" +p4740 +aS'In the future, please try to spare me the theatrical flair. ....' +p4741 +aS"Are we talking about the same Obama here? The same one, who's head of the DHS, told law enforcement to be on the lookout for anyone who disagreed with the government?" +p4742 +aS"Just to let you know you're welcome to come back and debate Islam, don't hurry, you've a lot of reading to catch up on.emoticonXHoho emoticonXLove" +p4743 +aS'wow....there is a real person under there. Good luck on your recovery, chemist.' +p4744 +aS'A load of unowhat repeated for many years now. Junk science commissioned to get results that were desired. Check out lung cancer rates for Rastafarians. Nothing abnormally high. Gateway my arse.' +p4745 +aS'I made contact with God once, but the acid wore off.... ' +p4746 +aS'So you are happy that they chopped of the most sensitive part of your penis? That someone took and cut out a part of your body without your consent? What if it where your nipples? After all nipples on men serve no purpose.' +p4747 +aS"I'm with Smiley: you're describing yourself perfectly, save for referring to conservatives instead of liberals." +p4748 +aS"That's deep. Movement is not matter, I will use that the next time I decide to babble. Are the particles no longer matter when there moving ? Your funny." +p4749 +aS"Looks like my first response to this was deleted? I'll risk it again since this post was not deleted. Anyhoo, This post just wreaks of the emotional and psychological development, maturity, morality, character, and integrity of SOME Republicans/Conservatives. emoticonXRolleyes Waxy" +p4750 +aS"Of course it's solely a product of women's behavior simone. It's the women that has to make the phone call to the stork. The stork doesn't answer calls from men." +p4751 +aS"I knew the mangling of Jesus's teachings would be forthcoming, and entertaining. emoticonXHoho And of course lying about what I've said is just par for the course. Standard stuff, nothing to compare with trying to make Jesus out to be pro-cruelty." +p4752 +aS'Sounds like someone could be lying... hmmm who could it be? emoticonXIc' +p4753 +aS'My thoughts are my own, not from some 2000 year old Book that makes as much sense as a bag of Rocks. And I have only ever called anyone a name in response to an attack on me, If you call what you have been doing debating then I see what the problem really is.' +p4754 +aS"It might be telling that super heroes typically don't use firearms. That I'd prefer my crowds to have few if any guns concealed within hardly makes me pro-crime. Nor does it make me a pacifist. I'm a big fan of violence. The hands on kind." +p4755 +aS"Name them. Real contemporary people who testified about a real superman. And don't forget to identify the time period and where they lived and their written historical accounts." +p4756 +aS"Wow. I particularly like the part where you criticize someone for a lack of intelligence while making an elementary grammar mistake. It's you're not your. " +p4757 +aS'Haaa Haaa Haaa Haaa haaa haaa haaa haaa Thats a good one not. emoticonXClown' +p4758 +aS"Or possibly your Holy Fathe has resorted to XXXXX-bashing. It's all perspective. Frankly, I don't think that the views on this message board will fuel discrimination and hatred of Popes everywhere around the world, so I think they have less to answer for." +p4759 +aS'Again, you speak as if gays and lesbians are not worthy of their relationships being sacred to them. As if gays and lesbians are unable to hold dear any concept of commitment, loyalty, partnership. What a sad and mean little man you are.' +p4760 +aS'Pro-lifers are like slave traders? What a pro-lifers trading? Anyone who denies a human being a fundamental human right is a slave trader...like a right to life...???' +p4761 +aS'I think that is true of so many things. Wanna screw something up royal? -- add humans. I heard once that a gallon (or maybe is was a barrel) of Coca Cola (syrup) is more expensive than the same amount of oil. Things that make you go hmmm.' +p4762 +aS"maybe he'll unban himself on the third day (or was that three days and three nights...)" +p4763 +aS'Bush is a Luddite...Yadda, yadda, yadda..... Bush is the anti-Christ ...Yadda, yadda, yadda emoticonXRolleyes' +p4764 +aS'As you both also ignore the fact that it was TQ who first posted in the largest red bolded font possible. But hey, since when do you children care about facts or truth. emoticonXRolleyes ' +p4765 +aS'He was in Indonesia dear. Read his XXXX (my marks) I thought he was as old as the devil??' +p4766 +aS"I'd be happy to be of service in distributing those assets but Alan is probably armed." +p4767 +aS"Exactly, because it's not just an issue of 'her body'. What she does (the smoker) affects other people. Thanks for missing the point. " +p4768 +aS"Shhhh . . . don't tell anyone: Habitat for Humanity is a religious (GASP) organization. Those mean old hateful Christians--helping giving homes to needy people . . ." +p4769 +aS'Is there some kind of prize for most consecutive straw-man arguments. I ask this because you seem to be going for a record. No where have I claimed that I would fix your problems, many though there are. ' +p4770 +aS"So it's your contention that hundreds of thousands of firearms stolen from residences annually is just par for the course?" +p4771 +aS"Oh he won't read that... This American in exile (does not even live here anymore) just disappears for a while whe the heat is on only to resurface with his same propaganda after the heat has died down." +p4772 +aS"And Creationists who can't tell the difference between cats and nuclear reactors don't understand fluid mechanics." +p4773 +aS'So then will you go the way on liberty (repeal stoopid laws) or tyranny (enact more unconstitutional laws)?' +p4774 +aS"Archie, you have said so many incorrect things about evolution on this thread that it's hard to know where to begin. The idea that 'evolution teaches essentially that a fish walked out of the ocean and survived long enough to become a mammal 'springs readily to mind. " +p4775 +aS'Waxy: Why are you standing by saying nothing while one of your own is continuing to show how ignorant he is by asserting Isochron was not used at KBS Tuff ? Ray M.' +p4776 +aS'What the freaking hell are you even talking about, dude? Hi its Me did not even post that. Do you even read the dang posts here before spouting off your drivel!? Not to mention that it proved the unintelligence of creationists (as well as their predictive abilities, which, I must say are very poor).' +p4777 +aS"Crammed with them, sure, why not? It's easy, only a few million light years. The scientific method is used in weather forecasting too." +p4778 +aS"Well, it does take some scientific knowledge to understand the evidence for evolution. One doesn't expect Creationists to possess it." +p4779 +aS'And because this man said it, it must be true? A simple appeal to authority.' +p4780 +aS"People make mistakes (excepting some pro-evolutionists who respond with anger and blame others of 'twisting their words'.)" +p4781 +aS'Oh damn it...and I was going to sell this joke and retire!' +p4782 +aS'Why should you mutilate your son? Maybe you should have listened' +p4783 +aS'Is that your logic? Does the phrase, "crime of opportunity" ring a bell?' +p4784 +aS"Yawn, again you keep repeating this. You not only refute yourself by providing an example of knowledge of the unknowable, but you gave an example of what is unknowable, by telling me I'd never be able to know you! " +p4785 +aS'Interesting. It seems that you like to get your news from Aljazeera. ' +p4786 +aS"'Who's definition? Yours? Do you OWN the copyright to a word? I didn't think words were copyrightable. emoticonXWow Geez. emoticonXRolleyes More bovine excerment." +p4787 +aS'Nice excuse? You mean you want an excuse to have dessert without dinner?' +p4788 +aS'So, I guess in your view, educating people against prejudice and intolerance is a bad thing.' +p4789 +aS'Your posts read like gibberish when you fail to complete the thought. Try to be more careful in the future.' +p4790 +aS'Was she on her knees, taking lessons from you...or was she skilled already?' +p4791 +aS'You do that, and be sure to use it when I repeatedly and ignorantly claim that the unborn are parasites while refusing to actually prove it as ingus has done here. Unless you too are making that claim also, then I would make the same challenge to you.' +p4792 +aS'This is a free market of ideas. The good ones survive. The bad one die like dinosaurs.' +p4793 +aS"You don't mean Ethel and Julius Rosenberg, do you? The Russian spies? Nah, you said wrongfully accused....." +p4794 +aS'Really? Is it of the flesh eating variety that is resistant to all but the strongest antibiotics? Because if so, then that is big news.' +p4795 +aS'You forgot about the youth recruitment efforts as well. I am president of the local chapter of "Get \'Em While They\'re Young." Our mission (agenda, if you will) is to recruit and convert the kids in an effort to increase the prevalence of homosexuality to 20% by 2015, then 51% by mid-century when we will have total control, muahahahahaha!!!' +p4796 +aS'No, we don\'t claim to know the truth. We gladly say "we don\'t know" to questions like "why are we here" instead of making up fairy tale answers just because we\'re too impatient to look for the truth. Tell us, do you still believe in the fire god and the tooth fairy too?' +p4797 +aS"I've got to concentrate...concentrate...concentrate. I've got to concentrate...concentrate...concentrate...Hello?.. .Hello?...Hello? Echo...Echo...Echo...Pinch hitting for Pedro Colon...Manny Mota...Mota...Mota..." +p4798 +aS'The fact they are blond has nothign to do with the fact they are dumb. The right wing mindless talking points from Fox News is another matter.' +p4799 +aS'I\'m not a "TROLL" unless of course disagreeing or believing differently from you makes me one. If so then I wear the title with pride.' +p4800 +aS"EasyRider just doesn't like gay men trying to shove it down his throat! emoticonXAngel" +p4801 +aS'He has a persecution complex. He thinks that every intelligent white male is out to put chains on him and make him sing Gospel songs. ;)' +p4802 +aS"So if it was deemed by 'those with the knowledge that give their opinion weight' that a fetus can feel pain and stress during a termination you would agree that the termination should not be carried out..well done " +p4803 +aS'Just trying to bring some consistency to the debate. You love it when Democrats pander but not when Republicans do it. Why am I not surprised? ;) ' +p4804 +aS"Examined the record? Now it's not even the patient, just the record? Good god man! Many times, only a number of criteria must be met, not all of them. It would be like me saying that there must be gas in your car since it is running. Then you tell me that I must look at the gauge then physically take the tank off to be able to say without a doubt there is gas in it. Flat EEG in the cerebral cortex means no brain activity in cerebral cortex means PVS. There is no reason to test a swallowing reflex, a pain response reflex, or sphincter tone. " +p4805 +aS"Simone: I'm a chronic sufferer: I thought of asking Easyrider for a prescription." +p4806 +aS'Actually what sank that debate was a bunch of paleontologists from K state who started arguing for punctuated equilibrium. That was pretty much the end. I remember one board member was quoted as saying "These are public schools. We are luck if we can teach the kids to read"' +p4807 +aS"From the Catholic Educators Resource Center...Yeah...I am sure there would be no myths in there...sure you're right. emoticonXRolleyes" +p4808 +aS"I think it's a pretty neat trick for a dead baby to sit upright in that little tub." +p4809 +aS"with you it's pretty easy, we just assume it's all BS, works every time." +p4810 +aS"Yes but its like sharks when there is blood in the water. Plus I at least do this for fun and why should I not get in my own ideas and have my fun with creationists. They are getting pretty rare you know. Can't let those other rationalists keep them all to themselves. emoticonXAgree " +p4811 +aS'Why did the president have to lie. Kerry served, Bu$h just helped himself to the cocaine.' +p4812 +aS"So, if a baby is having trouble breathing that's been born already, you don't consider it a 'person'? Methinks you've not thought through the implications of your argument here at all." +p4813 +aS"Um, of course, it was too much to expect murderers to shell out for burying their victims. I keep forgetting I'm in Dick Cheney's America." +p4814 +aS"I can see that you're as impressed by PZs propaganda as an infant is with a pacifier Collin, but I'm not. emoticonXFrazzled emoticonXBye" +p4815 +aS'I reply to them out of courtesy...but be amused all you want...it looks like you need it.' +p4816 +aS'Look who\'s talking. Besides, it\'s a free country. It\'s not "Politically Correct Treborville" that we\'re playing here.' +p4817 +aS'Actually that was obvious based on your type of irrational reasoning. ' +p4818 +aS'I avert your gaze. I submit myself to your mercy. Henceforth I shall only respond to your web postings. I shall not respond to postings you make on the web....Wait..... ' +p4819 +aS"LOL. Glad he didn't come across a dung pile while he was fashioning us." +p4820 +aS"Well, if you claim you can give 95% of Americans a tax cut then you'd have to be on par with Jesus." +p4821 +aS'The Pastors are claiming themselves as a "Spiritual shield" against witchcraft. Of course you don\'t need such a shield until you find a witch, guess what happens next.' +p4822 +aS'Not only is everyone in agreement, which scares me enough, but Parcum even agrees with me. This is really shocking!!!! :)' +p4823 +aS" They're not Jews, and not rabbis, just like you, who are not in your right mind, and who is an authority on nothing but rubbish." +p4824 +aS"Yeah, gassing and murdering 6,000,000 Jews doesn't qualify as suffering very much. emoticonXRolleyes I wonder how many slaves were killed by comparison........" +p4825 +aS'So what are you proposing? Death panels? Do you think we should euthanase the elderly or should we simply stop their social security payments and healthcare?' +p4826 +aS'Unfortunately for you, that is not shown, the evidence points in one direction, and one direction only. That of evolution and to the fact that the flood never happened.' +p4827 +aS"You're right, why not simply kill these people in the shortest amount of time possible. I got it! We can advertise each killing (hanging, rock slaying, Guillotine, etc.) weeks in advance, kinda like moves, and show it on pay-per-view. You can buy tickets to watch the show live as well. I mean c'mon, if we're going to have the death penalty we might as well utilize in the most gruesome, cost efficient, and swift method possible. Right? That is how punishment was executed a few centuries ago. Honestly, how you feel is how a lot of people culturally conceive such offenders. In regards to the death penalty debate, it falls along a continuum between morality and scientific reasoning." +p4828 +aS"Oh that greatly changes the equation doesn't it? Very unrealistic, but for the sakes of the debate, why not? Well, alledgedly, 23 innocent people have been put to death, and for sure two unrefutable cases. I don't support killing people as a deterrent or as any means in a justice system." +p4829 +aS"According to Genesis? Why are you trying to present that as scientific evidence? Should I present The DaVinci Code as scientific evidence? How about Darwin's On the Origin of the Species?" +p4830 +aS'Insects are not birds. Get your terminology correct. Also please stop lying. It makes baby jesus cry. ' +p4831 +aS" How do you KNOW Bush let's Cheney run the government..oh yeah, that's right, CNN/CBS told you. So you will knock one of the greatest minds this country has because he has a bad heart and can't stand for long periods of time? What a goober, so I guess Stephen Hawking should die too, huh? " +p4832 +aS'god, this has been argued against a thousand times. by this deffinition masterbation is killing, menstration is involentary manslauter. by this deffinition you kill someone every time you walk by a carrot without eating it.' +p4833 +aS"Well, I guess you can refuse to see something that's pretty obvious. It's up to you." +p4834 +aS'Yep, but those "mixed views" are slanted way left of center. A good offense always beats a good defense :) My guess is you are not very mature nor old? You out of high school yet? ' +p4835 +aS'French like turkeys even the yanks eat turkeys. What has a turkey got to do with the French voting No! By the way, why do you spell turkey with a capital T?' +p4836 +aS"I guess we just haven't shaken all of our Imperialist ways. After all, we've only been away from the British Empire for a little over 200 years.:p" +p4837 +aS'Because their reasoning is obviously on the same level as their reading comprehension level.' +p4838 +aS"So if you were attacked by a 250 pound man who is an 8th Degree Blackbelt, you'd prefer a fair fight?" +p4839 +aS'That may seem like a brainstorm to you kronus, but to the enlightened, it was an obvious brainfart. emoticonXGood But I would never expect you to know the difference.' +p4840 +aS'NAAAAA, actually it makes ME sound quite sane...I\'m not denying a woman the "right" to have sex all she wants. THere ARE ways of having sex WITHOUT getting pregnant, I\'m sure you\'d agree. SO, it actually makes YOU sound like you are desperately hanging on to the "right" to take an innocent life just because you don\'t want to be inconvenienced. In Bizarro world, you might be right, but not in reality' +p4841 +aS'What part of "I don\'t want a penis" do you not quite understand? Is it that maybe you are the one who wants a penis? There are ways to resolve that issue. emoticonXRolleyes' +p4842 +aS'So you believe if a kid threatens to shoot up the school it should be just ignored as children"s innocent mischief..........Tell that to the kids that died at Colombine..... emoticonXRolleyes' +p4843 +aS"The surcharge should go on gasoline from ME oil used by 300+Million Americans daily. But wait! That would unfairly burden the working poor that drive gas-guzzlin' hoopdies, so scrap that idea. Let's just soak the rich for the hell of it..... because we can. emoticonXRolleyes" +p4844 +aS"It's either that or he's a frustrated tenor for the Vienna Boys Choir. ;)" +p4845 +aS'Well, if you want to tell the truth, the theory of evolution is NOT a religion, it involves no magical deities, it takes nothing on faith. And since creation involves supernatural forces that are supported by absolutely NO evidence, it is not a scientific theory.' +p4846 +aS'He was referring to the mimivirus which does NOT act like any other virus. Some of you people need to study a little harder :) ' +p4847 +aS"I don't know about you..but being shot in the back is more human than being taken apart piece by piece. If I recall correctly, Chinese inmates sentenced to death are executed this way to minimize the pain." +p4848 +aS'OK, where do we start? The NAACP. Affirmative Action? UNCF? Miss Black America? emoticonXRolleyes' +p4849 +aS'Oh come on! Instead of turning my sarcasm on it\'s head why don;t you log off and go listen to some more Chuck Smith tapes? I\'m sure the Calvary Chapel brigade could use another "donation."' +p4850 +aS'Wasn\'t that you spewing "facts" that had no content and were incorrect? gee, what do you wanna be when you grow up? ' +p4851 +aS'.. I pointed it out in capitals in the hope that it may help you understand the point...did it work? Who knows' +p4852 +aS'Mr Rodgers was a pedophile and Big Bird was a flamer. ;)' +p4853 +aS"So much bandwidth; so little substance. Aren't you embarrassed to post such inconsistent ramblings? Women with pre-existing mental problems are more likely to experience post-abortion issues. Well, DUH!!!" +p4854 +aS"You mental midgets insult my intelligence when you aren't even aware that the word omnibenevolent isn't even found in the Catholic Online - Catholic Encyclopedia . In fact, the word isn't found in any popular dictionary what so ever. It's an urban slang with no historical usage in theological studies or history at all. I ought to know, because it never came up in Bible College, ever. But here it is in the famous and highly referred to URBAN DICTIONARY: Urban Dictionary: omnibenevolent Once again guys, get a clue before you start spouting off your criticisms which you haven't an actual clue about." +p4855 +aS"Tell ya what; I got this Rolex I'm wiling to sell ya for $50.00. Give me the money and wait here. I'll be right back!" +p4856 +aS'So I pray to chance every night before I go to bed?' +p4857 +aS"You're living in an absolute naive dream world about this guy. I think I should be trying to sell YOU the beachfront property." +p4858 +aS'Better a godly set of morals being crammed down your throats than the perverted gay sex hedonism of the devil himself.' +p4859 +aS'i take by your redundant posts that you havent read the previous 20..' +p4860 +aS'Having politicians monitor their ethics is much like having the mafia monitor crime. ' +p4861 +aS'This is not to say that every current dictionary includes such a definition... yet... but a number of major on-line ones demonstrably do, and to my knowledge human civilization has yet to suffer any negative effects. (By the way, the above entries also include the typical "husband and wife" kind of arrangement as well. Funny how words can have more than one meaning, isn\'t it?)' +p4862 +aS'Just like Obama is? Really? Have you researched it at all? ' +p4863 +aS'Exactly, they are big on condeming the sins of those other guys. It makes them feel better about themselves. Also, it is always a good idea to have a vitriolic campaign about something that will never change so they will always have an enemy - homos are not going to disappear, abortion will never be made illegal. That\'s how the religious right recruits folks - get \'em all indignant about the "others" and they never notice they are being fleeced by the fat little pastor.' +p4864 +aS'I see -- in your opinion is it is "illegitimate", therefore it must be so. I think I trust the legal opinions of the courts more, but then, they do occasionally make mistakes. It\'s just not at all obvious they\'ve made one in this instance.' +p4865 +aS'If you\'d have taken the time to watch the movie "Expelled" you wouldn\'t find it nearly so absurd. emoticonXAngel' +p4866 +aS"Don't worry, think everyone knows that your side doesn't have the sole monopoly on crazy. " +p4867 +aS"So the fact that it is not legally recognized is the problem. What is the reason it's not legally recognized? Because the couple is gay." +p4868 +aS"You still trying to push your propaganda film? Let me ask you something, why would the fetus try and avoid the forceps? An infant will cheerfully try and grip a knife that is about to end it's life." +p4869 +aS'Actually, it is quite apparent that you do not. For one glaring example, below you incorrectly state that a dinosaur fossil has been dated by C-14. Another example of you lack of understanding of the topic is your failure to understand why very old fossils are found on the surface and the principles of dating from geologic strata.' +p4870 +aS"So you'd ask on these issues even if you didn't know if they had signed it?" +p4871 +aS"Don't get your panties in a wad, 38 State Attorney Generals signed a brief in opposition to any gun control this clown can dream up." +p4872 +aS'That should get the natives milling around looking for victims. Fundamentalist Christianity does not take kindly to criticism.' +p4873 +aS"This rates an 8 out of 10 on the hypocracy scale. Weren't you just scolding people both for using false analogies and for citing emotionally laden imagery for political purposes? Tsk tsk." +p4874 +aS'who knew? I wonder if I could have passed all those philosophy tests based on the philosophy I absorbed? ' +p4875 +aS'What exactly are the age ranges of these "children" in the news stories?' +p4876 +aS"Hey that would be great. The law would FORCE all anti-gunners of military service age and ability to own a fully automatic rifle. The law would FORCE all anti-gunners to train with the weapon. The law would FORCE VOR to keep his rifle clean. Hey VOR how about it? Keep your rifle clean or go to jail. I'm not talking about my rifle, I'll be glad to keep my free government rifle clean. How about you?" +p4877 +aS"There is the potential for a human that comes out of many, crude and vulgar things. Some end up on a maxi pad or when a guy reaches for the box of Kleenex. Should I feel a special bond with the conceptions rudely flushed out because they couldn't make it to the uterine wall? They had the potential, the DNA, were once a life too, and made a valiant effort. Life is constantly in motion. We don't value all life, or maybe not all life the same. When it appears to have some aspects of human personhood, this would seem like a logical marker, where we'd place greater value." +p4878 +aS'And I just spent all that money on a new camera. Pity.' +p4879 +aS"NOOOOOOOOOOOOOOOOOOOOOOOOO just because I stated that some presidents....cough.... Clinton.......don't get experience in one term doesn't" +p4880 +aS"That's a Damascene conversion if ever there was one! Archie's seen the light!" +p4881 +aS"This should be in the science section, not the CvE section. Don't give SS any more reason to believe that the big bang is part of biology." +p4882 +aS'yea you\'ve rebuttled every one of my posts with rhetoric. How do you explain how The Computational and Analytical Molecular Evolution Laboratory is calling for a new synthesis based on "biased" mutations?????? let\'s hear it.' +p4883 +aS"oh, it's obvious that non-darwinists have no affect on you guys. Nothing will ever change your mind because your mind is not made up on the evidence...it's made up on your worldview and your belief in materialism." +p4884 +aS'So, am I looking for attention or am I mentally ill?' +p4885 +aS'you told me in an earlier post that the mother should die, even if they predict the fetus will kill the mother. your bible states otherwise.' +p4886 +aS"When 90 percent of this forum is left wing out of work Liberals it is not a surprise that polls don't go the Conservative way........." +p4887 +aS"Since you seem to know Jebus so well why don't you ask him to make an appearance and tell all of us heathens the error of our ways.. Why not let Jebus tell the world what he thinks about Homosexuals ... Oh wait.. Jebus never mentioned the subject so this is just YOU and YOUR ilk spreading more homophobic paranoia ... You've reached a new Low EZridden.. and I never thought you could get any lower ...emoticonXBounceremoticonXBouncer" +p4888 +aS"I have never, and will never stand for reasonable gin control laws. After all, I hate vodka martini's." +p4889 +aS'Actually, it makes sense only to you. If you look at nature for just a little while, you willl become aware of a great deal of death. But it is mostly very economical since scavengers make sure that there is minimal waste.' +p4890 +aS"Are you blind, or can't you read? NATO just provided evidence right now. " +p4891 +aS"You resort to the Bible, just in whatever way is convenient to what you want it to say. Just like fundies do. Zardoz, the problem is that when you play devil's advocate (which you like to do), you ONLY take a fundie approach toward the scriptures. In fact, you're often more fundamentalist in the way you approach scripture than fundamentalists. You'd make a good fundie, the best of them, I suppose." +p4892 +aS"So you think that ID is actually Christanity? [quote]But in usual fashion you will claim it is me who doesn't understand when it is you who must corrupt the truth with the lies and distortions you tell." +p4893 +aS'Funny. Foreigners are always cited when liberals talk about how great gun control is and how much good can come from it.' +p4894 +aS'Dear Hypocrite, Do you wish to be a competent poster and actually respond to questions and requests? If so, please answer my request (on the other thread) and I will be happy to answer your questions.' +p4895 +aS"While I'm not going to consider Dr. Tiller a pillar of society, I'm certainly not going to condone his murder." +p4896 +aS"Isn't agreeing with what? The senate hasn't passed any laws that would restrict right to carry anymore than it already is." +p4897 +aS"If you feed me a lot of caffinated coffee i start to wiggle and squirm too. I'm not really in any pain." +p4898 +aS'So you feel that Mrs Vo should have been allowed to run the risk of dying? Your statement "An abortion never has to be done" only holds true if you place the value of the unborn child over that of the mother in all cases. Do you really believe that?' +p4899 +aS'Really? I suspect that you have been duped by creationist ministers. There is no hype about Miller/Urey. It was an interesting experiment that demonstrated possibilities.' +p4900 +aS"Actually, I don't have any respect for creationism in most of it's varied forms. I have had great respect for several individual creationists that I have met. But they earned that respect." +p4901 +aS'You know, this little phrase, "minutes before birth," keeps popping up in reference to abortion.Could someone please explain to me the point of having an abortion "minutes before birth"? What is the point?How many, if any, of this sort of abortion is performed?Could I get a really honest answer to that? Please, no lies.How many?Can anyone tell me?' +p4902 +aS"I don't know if we can be as accurate as a couple of million years, but I agree that the age of the earth is just right for supporting man." +p4903 +aS"uh, yeah, that was their intent! Under color of law no less. The truth always seems to be your worst enemy doesn't it?" +p4904 +aS"And if God was so against killing the unborn, why did he fail to make an exception for the pregnant women? If you alleged that the Biblical God is totally against killing the unborn, why did he tell him to kill all of the non-virgin women?I bet you won't answer the question and just rely on insults as an attempt to cover up your argumentative failures as you always do. See my signature for examples. " +p4905 +aS"It has a chance. Any scientist has the opportunity to study ID. We are discussing the science classroom. We already teach it as a hypothesis in most schools. But it simply should not be taught as a valid alternative to evolution. That's what this debate is over." +p4906 +aS"Actually, I've heard it all before and it is wrong. The article is full of misinformation and misrepresentation. It is, as you say, slanted rather than an honest report of the data." +p4907 +aS'No, but in some cultures they mutilate them for meaningless tradition.' +p4908 +aS"No, genesis is not a history lesson. It is a combination of 'just so' stories, and a religious message in allegory format. If you bothered to learn understand some of the hebrew puns behind many of the words, and also see the political commentary of events that were happening during the time it was written, that would be obvious." +p4909 +aS"Not at all, more stories that have been fed to you. The notion of a literal Genesis was rejected two hundred years ago, when no evidence of it could be found. the leading scientists of the day were often also trained in divinity, so they were looking HARD for it. But they had the integrity to admit that it wasn't there." +p4910 +aS'And Stephen Hawking, the only thing he has said was "I do not believe in a personal god", which would make him a pantheist or deist at best.' +p4911 +aS'Your use of the word "replace" reveals your ignorance of evolution.' +p4912 +aS'One reason for conversion is that they do practice many religions. Jesus said He is the only way to God. I believe that, so how can I just turn a blind eye when people follow so many different religions? I would not be following the commands of my Lord.' +p4913 +aS'And how have I deprived you of your right to teach your religion to your children in your home and in your church. How does an objection against the imposition of your religion by force of the government deprive you of your rights. I can certainly see how the imposition of your religion would deprive me of my right to the free exercise of my own religion, but why do you feel that you have a right to impose your religion on me?' +p4914 +aS"Except that the word for day in Genesis 1 is 'yom' and was understood to be a twenty-four hour day." +p4915 +aS'The human collective is the authority. One major advantage of this authority over a theistic one is that it actually exists.' +p4916 +aS"That's the standard dance. Victor Stenger didn't say it that way. On the back of his book, one review puts it this way;" +p4917 +aS'Ah, but the issue in this thread is what the fetus really means to anti-choicers/anti-lifers.' +p4918 +aS"No I'm not Kronus. I haven't made excuses for him or denied what he did. OP said he is a conservative Christian which is a lie and I'm exposing that lie for what it is. Unless she can prove he is anything more than a conservative secular Republican, then he is no more a morally responsible person than an atheistic democrat. To attempt to mark all fundamental christians with the actions of this guy because he's a republican is a truly fallacious argument and a slanderous lie regarding me and all believers. None of this excuses what Vitter himself is responsible for doing. But she is wrong for immorally attempting to paint us all as adulterers because of his sin." +p4919 +aS'Actually, this data point is perfectly meaningless.NONE of the other information (or the conclusions) presented in this talk require "26".If we made it 260, does it change ANY of the other conclusions? No.A failure to recognize non-sequitur data tidbits is usually indicative of an argument that includes other errors.' +p4920 +aS'Very true, especially since when someone asks "is there a God" they are most likely really asking "does the God in which I believe exist"' +p4921 +aS'Marriage is not a religious institution. It is a government contract nothing more. Many people choose to have a religious ceremony to celebrate their marriage but that doesnt make it a religious institution. Need proof? You can get married without the permission of the church but you cant get married without the permission of the government. And because marriage is a government institution then they cannot discriminate against same sex couples and must provide the same benefits to them as is provided to straight couples. And it cannot be a separate institution either because separate is not equal. But as I have already said this shouldnt be up for a vote. Civil rights never should be.' +p4922 +aS"See my post above, Hi. marc ignores fundamentals of Miller's beliefs that he clearly spells out in trying to push his anti-Miller argument." +p4923 +aS'WF, that is true and if the young lady life is endangered then to terminate the pregnancy would be appropriate but get a neutral doctor to make that decision, not one from Planned Parenthood or and abortion clinic who have a biased interest in performing abortions...............That is all I ask...........' +p4924 +aS'I think the energy( essence of the human life) always was' +p4925 +aS"Then why doesn't He answer prayers like He says He will in the Bible? So is Jesus, aka God, a liar? Or was not even one of the millions of believers who prayed for Terri Schiavo's life to be saved really God's child? Gee, I wonder how many people out there are being led by a pastor, priest, or what have you, that prayed but God didn't listen because that religious leader is a fraud? Hmmm, maybe the rape or molestation of young boys, adulty, and so on, by religious leaders is more widespread than anyone could have imagined?!?!?!" +p4926 +aS"Again, nonrandom is not the same as Lamarckian. Phenotypic variation can be nonrandom because the organisms can select the most attractive/successful mates with whom to breed. Once again, you're totally stuck on one aspect of the ToE, random mutation; the ToE is much more than that." +p4927 +aS"But recognition of the big bang as a very good explanation of cosmology isn't limited to evolutionsits. In fact, most other scientists also believe so, most especially cosmologists and astrophysicists, who are directly concerned with the early universe. Evolutionists, even though the origin of matter and time are irrelevant to the study of evolution, are also educated in science and probably accept the work done by these other scientists." +p4928 +aS"Because it's a blatantly obvious fact of nature and intellectually honest experts in the field accept it." +p4929 +aS"oh don't kid yourself, you people were miserable long before I got here. Darwinists' arrogance is astounding." +p4930 +aS"No it doesn't!It cost way more money in appeals than it does to excute someone. WE the taxpayers pay for legal represenatation for them and us, plus the cost of keeping them in jail. The appelas process alone costs the tax payers millions.It is far more expensive to kill them than to leave them in jail with no chance of parole." +p4931 +aS'Actually, according to your use of the word "person," she is. A significant percentage of fertilized eggs fail to implant and are instead passed. How sad (and typical) that you haven\'t bothered to educate yourself about these things.' +p4932 +aS'Who is to say that the guys teaching the geology know what they are teaching?' +p4933 +aS"I don't believe Hell is a place either (or even if I believe in hell to begin with), but tell me more about what you mean by this. It sounds interesting." +p4934 +aS"Exactly. Most people would incorporate it, from childhood most often. Steeeeve can't seem to wrap his mind around that." +p4935 +aS"There is a point, however, that the fetal lung is not mature enough to survive outside the womb even with mechanical assistance. So, unless our technology will be pretty radically different in the future, it isn't about getting it out, it's about it not surviving when it is out." +p4936 +aS'lets see im going to ask you some questions.are you ?are you a ? do you have blue eyes? do you have brown eyes? now if you say NO to one of those things isnt that cosidered an answer? where i come from its yes or no.2 possible answers. not just yes every time to get what you want.' +p4937 +aS'Right. It was thrown out of schools back in the 1960s, and again in the 1980s when attempts were made to dress creationism up in the jargon of science and call it "Creation science."' +p4938 +aS"Which, we suppose, in your mind releases the sperm donor of any responsibility whatsoever, right?Isn't it interesting that your solution for the abortion issue demands that women deny their sexuality while permitting men to run the gamut of theirs.Does this attitude, of which you are not the only proponent, stem from a hatred or a fear of women?" +p4939 +aS'Well, let\'s be honest here. People fear gay marriage, not that it might come about via judicial fiat. That\'s just the current whipping horse because that\'s how it happened first, for some broad values of judicial fiat of course. There was a recent post here about rights granted gays by their state legislature, Oregon I think, and a group jumped in and forced the law on hold via a petition drive. So it really isn\'t the means by which gays get equality that upsets some folks, it\'s the equality itself. "judicial fiat" is just a phrase people can use so they can avoid stating their true motives, preventing gays from being treated as equals.' +p4940 +aS'Indeed. And that fact makes the old creationist plum about how evolutionary theory is dogmatic or that evolutionary biologists aren\'t allowed to disagree with "standard" theory a laugh. Clearly, evolutionary biologists disagree and those disagreements are published openly. Science makes progress by questioning and disagreement.' +p4941 +aS'SNIPThis opinion piece was put forth by the Violence Policy Center, the same people who opposed all forms of firearms safety training and gun locks, because they might encourage people to feel that they\'re more capable of safely operation a firearm. The Violence Policy Center also pushed the idea of an "assault weapons ban" because it was easier than a handgun ban, claiming that the uneducated people are unable to tell what is a machine gun and what isn\'t a machine gun, making passage of such a law all the easier.' +p4942 +aS'Yes, T. Kennedy is the alias of a known terrorist, and Ted Kennedy got punished because of it. And many are advocating that such a system be used to deny Second Amendment rights and be used to try innocent people in a court of law.' +p4943 +aS"If a square is opposite to a circle (and it isn't, by the way), then gas/liquid/solid must be opposites therefore you contain opposites (by your own argument), in that you contain elements that are in these 'opposite' states. It's an argument I raised before, you said they weren't opposites, now you cite non-opposites! Why do you keep refuting previous arguments they YOU have made?" +p4944 +aS'Yea the legalizatioin of drugs would cause an epedimic of problems. Crime, suicide, mental health problems, and physical health problems.' +p4945 +aS"Well, you didn't have my experiences, now did you? Each woman who has an abortion coul have innumerous circumstances and experiences." +p4946 +aS"Just so you know Peach, the 167 death row inmates are now serving life in prison. At least that one who's not guilty might now have a chance to be free." +p4947 +aS'But the number of criminals that have firearms can be reduced. In developed nations that have very strict gun laws there are a lot less criminals obtaining and using guns to commit crimes. How does your theory explain that?' +p4948 +aS'I never said anything about a conspiracy Peeling. I very clearly gave valid reasons to Consider that scientific GRANTS and pay increases for these scientists are based on making new and previously undiscovered claims that forward the science. That is the greatest motivation to lie, cheat, create and falsify evidence which adds to the scientists personal wealth and further promotes a false science that is rife with selfish motivations to preserve, protect and promote it.' +p4949 +aS"'IF' is the question. It suggests that Holy Tradition does not know the answer. Secondly, the issue of the flood itself could still be true and tested scientifically... as to whether an historical Noah existed that you might consign to 'myth'. Does anyone here not find it interesting that there is almost a universal factor in societies concerning a global flood? PS I have already discussed M-Eve on another post." +p4950 +aS"You are incorrect when it comes to the age of the earth. All inidciation by all branches of science indicate an earth that is over 3 billion years old. (aside from the lies of the Young earth creationism. Each and every one of those 'indications' are based on misunderstandings and out right lies aboutscience. A discussion about the various methods (and where the YEC claims go wrong can be found at http://www.talkorigins.org/faqs/faq-age-of-earth.html" +p4951 +aS"I am hardly a phyicist, but I am under the impression that there is at least some people who feel there is reason that there are 'uncaused causes'. I think thatthe terms used are 'Vacuum flucuations', and 'virtual particles'. I am not awareof any peer reviewed articles on it , but a popular press book is 'Achilles in the quantum world' by Richard Morris." +p4952 +aS"What the father wants is ultimately irrelevent.It's the woman's body that carries the fetus. It ultimately the woman's decision. As wrong as that may seem to you, it is the reality.If we, as a society, would just address the issue of unwanted pregnancies, then we, as a society, will resolve the isse of abortion." +p4953 +aS"No. you're not making any sense. Where is symbiote? I got a horrible argument for him to dispell." +p4954 +aS"Why so many claims in opposition? I make a single claim, that can be refuted through logic, if it's fallacy. But the claim is correct.This new claim is an interesting one that I have seen others use. I'll tell you on what basis. Based on reason. To hold that nothing can be known for certain, is ultimately reduced to absurd unintelligble nonsense. I'll start a thread about this claim, it's a hot topic to be sure!" +p4955 +aS"Actually, qualified biologists know no such thing. In fact, I've never known one who would agree with that assertion. Can you give us some peer reviewed references to support your assertion?" +p4956 +aS'So parthenegenic births are always female. Where did the X chromosome come from? Is this another case of "POOF, it was a miracle" when faced with reality?' +p4957 +aS'Very well said, but remember, Evolution doesnt mean atheism, but creationism means religion. I know Christians that believe in evolution, but i dont know atheists that believe in creationism.' +p4958 +aS'I fail to see where I broke any of those rules, no names were called, there was no labeling, there was no none of it. And even if there was, you do it all the time, so what makes you any different. Practice what you preach Penfold.' +p4959 +aS"Those cultures that permit multiple wives at least do have issues as a result, but hard to say they fail miserably. We are complex animals and not all animals mate for life. There is significantly more involved in the lifelong union of humans than reproduction. Multi-marry under the right circumstances works, but it isn't for everybody and even for those that it is for doesn't mean it's for them always. In a nutshell marriage is the biggest commitment any person will make and should be given the consideration and thought it deserves. Same sex marriage can cause a perfect union of two people the same as M/F and can make a mockery or marriage just as many M/F unions currently do. The emotional investment is the same, the responsibility and obligations are the same, the only difference is genitalia and a little more hair in some cases." +p4960 +aS'I see what she was saying now. When she said it it sounded like the man had no opinion at all.' +p4961 +aS'No kidding. What could POSSIBLY be more concrete? As far as I can tell, she has never publicly made a statement specifically about the DC gun ban but since, as you pointed out, she DID say that no functioning democracy should allow private ownership of guns, I have trouble believing that she thinks the private citizens of DC should be allowed to own guns, UNLESS what she is saying is that since we own guns, we should move toward a monarchy or perhapse some kind of dictatorship. She did not, as far as I know, voice her opinion regarding private gun ownership in a totalitarian system.' +p4962 +aS'And it doesn\'t stop there. Another of my favorites is how they loudly criticize radiometric dating (most commonly radiocarbon dating because they know no other kind) then shout from the rooftops that radiometric dating confirms the "genuineness" of ~2000 year old manuscripts...' +p4963 +aS"The 'teachings' either have no substance, or are certainly not original. Demonstrate categorically just who is the Son of God, and why this figure commands worship and obeisance." +p4964 +aS"So we don't? I thought we had the capacity to destroy it. That seems within the range of control eh?" +p4965 +aS"Actually, the process of fossilisation is not slow and can be done relatively quickly. All what you need is for sediments to quickly cover a dead (or an alive body - as what would have happened to Noah's Flood) and hence, fossilsation can occur rapidly; evolutionarly speaking, fossils take millions of years to fossilise a bone, but unless the bone is covered by sediments quickly, the bone will never fossilise. " +p4966 +aS'I hope I have already begun to change your mind.' +p4967 +aS"So what? If somebody wants to die then they'll kill themselves no matter what." +p4968 +aS'Right. Please, reread your argument. Not to mention what Woodward actually said about Piltdown man. www.talkorigins.org' +p4969 +aS'This is why the title is "God exists!!! (but he\'s not who you think he is). It\'s a funny proof which I don\'t think Christians would agree this definition was God. But basically it\'s saying that take the set of all human beings. Call the greatest God. God exists.Not only that, but the final conclusion is one of the premises. The proof is one big circle :)' +p4970 +aS'That sounds like an honest answer. How did you feel about it at the time? How do you feel about it now? Just trying to educate myself more. Huck' +p4971 +aS'No, neither am I suggesting that illegality makes something immoral. Legality and morality are completely separate things.' +p4972 +aS"Well then it sounds like you don't even know what a SM is seeing as the 3rd one is the main one that people like you bring up when debating this isse." +p4973 +aS'Abortion is their best choice?????? Yet women deserve better? Why do you think abortion is their best choice?' +p4974 +aS"The same ones you've been told about, what, a few dozen times now? :)A small exerpt:" +p4975 +aS"We share a border with Mexico. The drug cartel is armed with missile and grenade launchers. But when was the last time 72 of our police officers were murdered on American soil, in a single day, at a single location? The countries with the greatest number of legal gun ownership, they're absent these mass killings that take place on a regular basis. There's no rebels in America killing entire cities worth of people without opposition; not even in the small towns that're without a local police force. Explain that one away." +p4976 +aS'Over 10,000 signatures of Christian Clergy have been collected, and have endorsed this letter.' +p4977 +aS'How do you know he was a gun owner? Maybe he borrowed it. ;)And I bet he was a carnivore, walked upright and drove a car, as well.' +p4978 +aS"This isn't discrimination because the adult once did have have the right to live in a womb until it could live otherwise. Once out of the womb and living on his/her own this right has been exhausted because there is no need to be living in the womb. Much like you can drive but this 'right' is exhausted when you are drunk or too old to see anything." +p4979 +aS'True. Gallup couches the questions in a way that favors spiritualism. That is his preference and I think that his polls are slanted that way. I don\'t think I have ever seen a poll that actually asked the question directly and "no religion" doesn\'t really ask it. The numbers are just guesses. I think Big Orn is correct 7 to 10% is probably a bit low.' +p4980 +aS'I know this would be somewhat of a drain on your time but I think it would be helpful if you would make a short post at the end of each post stating how much time the next poster has, what post number this is, how many are left, any comments concerning going outside the rules, etc.' +p4981 +aS"Why are you dishonest enough to claim that you aren't trying to get YEC into the schools." +p4982 +aS'deliberate acts of fabrication to produce false and fradulent claims as to what others have said. You cited my posts which did not imply anything of the sort you claimed it did and what I thought. In fact, some of the cited refute such claims.' +p4983 +aS'There is some truth here. Did you ever see "Independence Day"? They were taking pot-shots at the alien ships when they first arrived. It didn\'t stop the aliens... sure only a film... let\'s look at real life...modern - Iraq - Sadaam gave guns out to the people just before Gulf War IInot so modern - Boer War - Dutch farmers in South Africa were all excellent marksmen - Britain still invaded.US Civil War - I believe that the Confederate States were pretty well armed as far as the white citizens were concerned. US still invaded.' +p4984 +aS"She could, but not all do :) Despite the fact that it works, there are still unwanted pregnancies :) That doesn't change the fact that a pregnancy would not be pleasant to a woman who does not want to be pregnant :)Forcing pregnancy by law is a step toward fascism." +p4985 +aS"Because of the history of it. Well, ID is actually identical to 'scientific creationism', but spruced up with more scientific terminology to attempt to pass 'seperation of church and state'. Let's just say that I.D. is an attempt to teach Creationism in school." +p4986 +aS'And if the "natural process of evolution" is determined by humans in a university lab, many with an atheist worldview, that clash with something the Bible says, you and Kenneth Miller immediately toss the Bible out and accept what the humans say - no questions asked?' +p4987 +aS"I think you might want to check your logic here... As far as I am aware, drug addicts cause a great deal of crime to support their habit. As you are, I am not terribly fond of policing someone's personal habits, but when drugs are the motivating force behind burglaries, assaults and muggings and addicts carry diseases such AIDS and tuberculosis then means of curtailing this should be explored. This may include policing or controlling the supply of drugs to an area to cut down and the amount of drugs sold, and thus less crime to support fewer habits.Easy access to drugs is, logically, part of the problem." +p4988 +aS"And how would Bush look if his own people hated him so much that they revolted? That would be very bad publicity, and quite an embarrassment that I wouldn't want as a country leader." +p4989 +aS"The logic we use to make statements about reality is derived from the way we observe material things behaving, and that logic is not immutable. Quantum physics demonstrates the fundamentally uncertain nature of reality at very tiny scales: the 'law of excluded middle' in particular taking it firmly in the shorts. Given that logic can vary on such a simple metric as physical scale, your argument is starting to look more than a bit frayed at the edges :)" +p4990 +aS'So,in your opinion,are you saying that this invading force that you are talking about,would never bat an eye as to whether the people of the USA are armed to the teeth or not in their pre-war planning?Surely any country that tried to overtake the USA would suffer severe damage to its military in all aspects.And even if it succeeded,it would still have to deal with our armed citizens.Are you trying to tell me that this is not a ditterent?Sure,if you dream up some DARTH VADER size invasion,no one stands a chance.But if you put it real world perspective.Say,2 or 3 of the bigger countries got together and decided to over take the USA.I would assume "armed citizens" would be a major factor in deciding whether to invade or not.' +p4991 +aS"Really? I don't think you know what you are talking about. Please provide evidence to back your claim. Thanks." +p4992 +aS"So was I. I did say I was playing devil's advocate. As far as I'm concerned, Tiktaalik is a triumph of scientific deduction." +p4993 +aS'No. Unless you wish to actually undertake the study of the relevant science, that\'s what you need to do. Creationists do the same thing. the problem is that creationists tend to accept the word of those who aren\'t any more educated than they are. Thus, a creationist will accept Hovind\'s dust on the moon argument or his shrinking sun argument as "proof" of a young earth.' +p4994 +aS"As I mentioned above, science curriculums follow paths. One's worldview plays heavily on one's interpretation of scientific data. An agnostic, or atheist teaching establishment can become satisfied with one path of scientific theories without searching for others. There may be more to be discovered about thermodynamics, cell structure, irreducible complexity, the decay rate of the earth's magnetic field, radiometric dating, the fossil record, and countless other things that a teaching establishment may not be interested in exploring, if it's comfortable with it's interpretation of current data's indications that the happenstance origins worldview is correct. It goes back to what we touched on before - teaching students HOW to think, not WHAT to think." +p4995 +aS'Here\'s a question; which one split from the other? Which one is the "new" being? None of them are. If I get a cake and slice into two exact pieces, which one is the "new" slice? They are both equally new.' +p4996 +aS"That seems unlikely. He gets banned everywhere he goes with his multiple names. He's not very good at hiding his identity and not very good at controlling his temper when dealing with the sort of creation believing XXXXXX that you get frequenting these boards (I can't say I blame him on the latter point).Look around the web though and you will find him elsewhere..." +p4997 +aS'As an aside I do admire your way with words, bravo!' +p4998 +aS'Yes that is a problem. But there is an instance when the 2nd Amendment did protect the USA from invaders:"Someone at the table asked a Japanese admiral why, with the Pacific Fleet devastated at Pearl Harbor and the mainland US forces in what Japan had to know was a pathetic state of unreadiness, Japan had not simply invaded the West Coast" - http://www.backwoodshome.com/articles2/ayoob70.htmlIf it wasn\'t for the 2nd Amendment you would be speaking Japanese if you live on the West coast, German if you live on the East coast.' +p4999 +aS'Sure. The outcome of Heller vs DC and Florida Shall - Issue laws support that statement. According to Brady logic, the more helpless you are, the safer you are from criminals.' +p5000 +aS"Actually, at 24 weeks is when the the interconnection of the fetal brain begins. The nerve cells from the neocortex begin to synapse with the nerve cells of the thalamus. It is at this point that bursts of recognizable brain waves start to appear among the random signals that go on before. It is at this point that some scientists believe a fetus can feel pain as well.It is also at this point that a fetus can possibly survive outside of the womb (23-24 weeks), though the cance of survival is low and the risk of impairment very serious. This point probably won't change with technology either because the fetal lung is not mature enough until this point for even mechanical-assisted breathing." +p5001 +aS'And yet there are plenty of websites written by scientists with the details:' +p5002 +aS"What is a 'higher' species. If you mean a more intelligent primate?? The concept there is a hierarchy of 'higher' and 'lower' species is incorrect. Theonly difference between man and the other primates is that man has a hyperdeveloped brain. There are two sugars that are naturally produced by body by most mammals. When investingating the presnece of these chemicals, one of them is present in much lower concentrations in the brainsof all mammals. However, humans have a mutation that interrupted the production of this chemical. A piece of random junk got inserted into the middle of the gene that produces this chemical,and disabled it. Sometimes,evolution is not so much about what is added, but what is removed." +p5003 +aS'maybe firstly you should explain how god works? In what way does he manupilate matter in defience of the laws of physics, where does he dwell, how can we not observe such a being? And all the other questions of the supernatural. The theory of a god is actually a lot, lot more complicated than evolution as you have to explain *how* God works to get even basic science points.' +p5004 +aS"Throw off our conclusions about what? I'm getting a bit confused as to what you're trying to cast doubt upon.Dark matter is stuff that doesn't interact via the electromagnetic force, so again by definition anything that we can't 'see' using EM waves is dark matter. this is an interesting article about one way we can observe it indirectly" +p5005 +aS'I see the similarity with the original scripture, in which Jesus was recognizing the authority of both God and Caesar in the world. However, Jesus was talking about the political power in the world. Jesus called the academics of his day, vipers and hypocrits, because they pretended to be holy but were evil. He called the wisest of men fools, because they did not believe in God. Also, as I stated before, truth should be the ultimate goal. I do not fear science. I do not see any truth that science may happen to reveal as a threat to faith. Why? Because God is Truth. Jesus said, "And the truth shall set you free"!!! ' +p5006 +aS"It's not just cars and catalytic converters have greatly decreased emissions." +p5007 +aS"So, IOW, you are saying that those of us who are intelligent enough to realize that your non existent imaginary god doesn't exist have a chemical imbalance? Wow, that's quite a stretch even for you Archie baby." +p5008 +aS'Ill be the first to agree with the saying "If you can...and have the place to...you will" But like anything else..you have to look at the better side of things...It would act like a deterant to allow our responsable citizens to be armed..yes perhaps what you said might take place..but the benefits would outway them..and thats all we can ask for in life.As for our irresponsable citizens...they are already armed.' +p5009 +aS'Your wrong. Airplanes and courthouses are gun free zones but these places never have massacres.' +p5010 +aS'Sure, but then you get into all sorts of problems of classifications, slippery slopes, and other awkward messes. Arguing whether an embryo or a fetus is a person seems to raise more trouble than it might solve. It seems better to err on the side of caution and devise a pro-choice argument that assumes the embryo or fetus to be a person rather than worry whether they are a person.' +p5011 +aS"This is a separate issue, Voice of Reason. Some didn't understand how pro-choice people can say they personally wouldn't do something and/or think something is wrong but still support other's right to do it, and that's what I was answering." +p5012 +aS'Tell this to those infants and adults in the netherlands who are being euthanized against their will. this is a logical conclusion of a quality of life ethic without a sanctity of life basis.' +p5013 +aS"I think there are two separate questions here.(1) When does personhood begin?(2) Who gets to make such arbitrary, moral decisions on behalf of a pregnant woman?Both are legitimate issues of contention. You can't just dismiss the one you don't want to argue as unimportant. There are lots of excellent arguments going every which way, and many of them are objectively unresolvable, such as the one pertaining to the onset of personhood. They are truly matters of opinion.So, since there is obviously little agreement between people about when an egg and sperm become a person with full human rights, the practical question really is whose opinion matters most? The woman's, or the faceless bureaucrat's? emoticonXGood" +p5014 +aS"Kent Hovind is a slimy, uneducated, hack. His only education past high school is a degree from an unaccredited bible school. He is also a liar, since I just can't believe that anyone could be so stupid to say some of the things that he does. Of course, there are other people that are so stupid that they actually believe him." +p5015 +aS"And if you rewind a little over 40 years, the exact same thing could be said about interracial marriage.Archie's reply is a non-argument, and false at that.Multiple other groups state discrimination in marriage, but there are LEGITIMATE STATE INTERESTS prohibiting their marriage.Little things like child rape, lack of consent, and other issues." +p5016 +aS"It's quite obvious that it's the ID proponents who have issues with definitions, particularly among themselves. Behe has changed his own definition of IC, and Dembski changed Behe's definition of IC." +p5017 +aS"I'm not surprised. That's a typical response when someone calls your bluff. Waxy" +p5018 +aS"Because their axiom is that the bible is infallible, so any problems with reading it are the reader's fault, whereas yours is that contradiction implies error. What Ken's saying is that we can't draw a distinction between your axioms and those of a bible literalist in terms of which is 'right', because axioms are stated not proved: axioms define what is 'right'.To reiterate: his error is in forgetting that the universe operates according to its own axioms, whatever they may be, and we can judge whether or not our axioms are congruent." +p5019 +aS"But you haven't looked. You may claim that your god did it, and no evidence to support or deny that can be offered. The assertion relies on miracle and has no suporting evidence. But when you start talking about how your god did it, your claims can be debunked by facts. Certainly the mythology of ancient nomadic herdsmen is not accurate. If you look at the world and the history of the world the is evident in the geologic strata, then you can see that the earth is very old, and you can see a succession of organisms through time. When considered with other fields of science from genetics to biogeography to physiology and anatomy, evolution becomes apparent." +p5020 +aS"Nobody should be forced to even have a sonagram. I think that you'll find reasonable pro-life and pro-abortion people believe that much." +p5021 +aS'What basis do fundamental rights derive from? In other words, how can we tell whether something is a fundamental human right?' +p5022 +aS'Now you\'re playing word games to confuse people. Page 11 of the Heller ruling stated that the definition of "arms" include all modern forms of bearable arms that\'re in common use. They didn\'t rule on machineguns because they weren\'t part of the case.' +p5023 +aS'Well, I don\'t believe in evolution. I believe in things for which I have no evidence. And while it is true that everyone has bias, using correct science and the process of peer review works to eliminate. Not all is perfect, and people are people, but overall the system works. Not a lot of bad science gets through. In the case of "creation science" we know that there is no science involved. Only talk that sounds scientific. There is no hypothesis, prediction or testing. Only ad hoc stories constructed of selected bits of evidence to support the foregone conclusion.' +p5024 +aS'**True, and the confusion was my bad, as explained already. However, the fact of revertant mutation in eusocial bacteria colonies, as demonstrated by Ames and by Cairns, still shoots great big holes in the darwinist assumptions arising out of your old war-horses, Luria & Delbruck \'43, and its "clone", Lederberg and Lederberg \'52.' +p5025 +aS'I believe you have even debated that it is conditioned into humans to be religious and therefore it validates religions. So why is there a need to debate whether animals love if they are acting on a conditioned response?' +p5026 +aS"And yet you can offer nothing to show it's impossible! It most certainly is a plausible explaination! Fairytale?!? Don't think so, a logical path for the developement of the avian lung." +p5027 +aS'I see, when you say "I\'m not an expert" do you mean you aren\'t a climate scientist or do you mean you don\'t have the scientific knowledge to discuss this?' +p5028 +aS'That\'s NOT the equivalent of ID - you\'re mixing causes & effects. The theory of evolution, and the theory of intelligent design would equally observe, measure, and publish the effects of the apple falling. Then the evolutionists would say that happenstance origins caused gravity to work that way, and ID proponents would say that a supernatural design caused gravity to work that way. Students shouldn\'t have it implied to them that happenstance origins are the only possible cause of gravitational behavior. Your "apple falling" scenario is a simple one - the original cause of gravity has practically no impact on how we observe and deal with it\'s effects. Other scientific subjects aren\'t that simple. ' +p5029 +aS'And you\'ve been failing miserably, partly because your definition of "atheism" is asinine. Even most Christians would disagree with you.' +p5030 +aS"The concept that science no longer looks at animals boggles my mind. My brother is a wildlife biology major in college meaning his primary focus is......looking at animals and their relationships to one another. It is somewhat understandable that your misconception could arise because molecular biology and genetic engineering are the latest crazes in science. The simple fact is most of the big breakthroughs when studying whole animals have been made. A similar turn has occured in chemistry. I could argue that chemists have subtly turned away from chemical reactions. All the research now is about electron orbitals and nano-structures. The reason for this is these are new fields that are relatively young and many scientists are interested in them. I myself am doing research on buckminster fullerenes. It doesn't mean we've abandoned good old fashioned reactions, we just have more field to play in now." +p5031 +aS'Really? Why? Bacteria don\'t need to see to exist. They don\'t depend on light to live. In fact, bacteria thrive in dark, moist areas. Why would natural selection determine this ability as being advantageous? If populations of bacteria with the ability to sense light are "better suited" than other bacteria, how many different types of light-sensing bacteria are there? ' +p5032 +aS"I know it's almost as silly as thinking gay marriage will undermine heterosexual marriage." +p5033 +aS'my my you are up on the current events. Thanks for shedding light on this for everyone here.' +p5034 +aS"Here is what fascinates me about the judgmental criticism you offer of my opinion. In typical fashion you make claims which you don't support at all. Here is my post below, point out WITH EVIDENCE!!! what I am distorting in any way; especially that which I hold dear. In other words, write a cogent and rational post which makes sense when applied to the quoted post it intends to attack. emoticonXDonno" +p5035 +aS"Really Brady. It is widely recognized that Mr. Heston gave away a very promising film career in order to take such an unpopular stand at that time. In fact he worked very little in films after that. I think the above statement was a political one, an anti-gun one, without much fact to back it up.I don't think a man of such principle changes his mind when all he actually work to accomplish comes to pass. But you can push your poison just as far as you want to. You have a first Amendment right to do so. Mr. Heston would have wanted it that way!" +p5036 +aS'Actually, there is no such thing as "an evolutionary mutation of a gene." A mutation is a mutation. For evolution to have occurred requires neither that a mutation be new nor useful and they don\'t require new structures nor structures.Here\'s a little mental exercise for you. At most, a person can have only two alleles for any gene. This would have been the condition of the human race 6,000 years ago according to creationists. It would not have been possible for there to be more than 2 alleles for any given gene. Now consider that for every gene in the human genome there is an average of 14 different alleles, sometimes more, sometimes less. Where did all of those alleles come from?' +p5037 +aS'But if the repeated tests just confirm the same errors or misinterpretations of the results, all of the independent reviews in the World wont make a difference.' +p5038 +aS"Actually, I pulled the number out of the air for illustrative purposes only, but after reading the CBO report, I see that I wasn't far off. They predicted 600,000 gay couples would want to get married it allowed." +p5039 +aS'So every woman who has an abortion lives an irresponsible life. Care to give any examples, or are you just spouting rubbish with no experience or knowledge whatsoever?' +p5040 +aS'So you know how foolish you are and hope that name calling will distract from that being recognized by everyone. Erectus skulls were smaller because the brain was smaller. You brought up KNM-WT 15000 (Turkana Boy) and you weren\'t even aware that as an adult he would have been about 6\'1" tall? Why is his skull smaller than modern humans?' +p5041 +aS"You could've just as easily revived the last thread, commenting on how the antis are unusually silent." +p5042 +aS"Because Apes, monkeys and chimps are on different paths. You wouldn't expect a shark to evolve into a barracuda-like animal. things evolve to fill niches, we currently fill a niche, there is nothing pushing apes, chimps or other primates to fill a niche that is occupied. " +p5043 +aS"But a slightly larger brain than average is still feasible and offers enough of a benefit in a large social group that its worth the price - however something the size of a modern humans brain is far too demanding. That slightly larger brain can be supported by an organism or society that hasn't developed fire, but is also able to discover the uses of it, from then on nutrician isn't the big limiting factor that restricts how big a brain can get from then on. " +p5044 +aS'Well regulated as in the second amendment does not mean regulated by the government, it means well equiped and prepared. The framers of the constitution often spoke of a tyrannical government and how to keep one from coming to power, so why in the hell would they have said lets just give the government total control of guns. Your definition of well regulated makes about as much sense as adding another day to the week.' +p5045 +aS'Well, since you have natural selection completely wrong, it must not go too well with the Biblical account. By the way, now you have introduced another word that has no meaning in the context. What is a "kind." Please be specific so that I will be able to recognize a "kind." Please show why a "kind" only has the ability to lose information.' +p5046 +aS"And that is different how? I told johnny to write that I'm infallible. Therefore the book that I told johnny to write proves I'm infallible. There is no difference. You do realize that there are other religions out there? That science is constantly updating? Your arguments have been nothing more then false dichotomies assuming there are only two choices despite history laughing in your face." +p5047 +aS"It's the first couple of paragraghs from the article in this weeks NS. If you had an online subscription or got a copy from your newsagent you could read the whole thing, unfortunately with this one the intro rambles on a bit and doesn't get to the point till the second column..." +p5048 +aS"See above. Whether a couple is or isn't monogomous is not for you to determine or worry about. And speak for yourself if you don't mind. This member of the American public's mental health is just fine thank you very much. If gay marriage impacts YOU that much, well that sounds like your problem." +p5049 +aS'Nice raising the bar. Fallacies are a creationist\'s best friend. You claimed:"have never shown to add any new structure or even a new part to any existing structure."Now you are changing your argument away from structure as new proteins and especially enzymes (which are proteins) don\'t count.' +p5050 +aS'No! At conception we are a person and human.All living things belong to a species and the foetus is a living thing, for that reason a foetus must belong to a species, and that species is human.A fingernail is dead so cannot be considered a living human, nor will it develop into a human.The sperm only has half the chromosomes so is not human.The unique human is the key element here, if you cut your nail, the DNA from the nail can be replicated by the living persons nail, a foetus when destroyed cannot have itself replicated, the unique DNA that is destroyed will never be see on earth again, that individual has gone forever, howver, the man with the nail clipped is still alive.' +p5051 +aS"True, they can change laws if the are unconstitutional. So what makes a ban on abortion unconstitutional? Also, what makes the dealth penalty for minors constitutional one day and not the next? In fact 15yrs ago it wasn't an unconstitutional decision. I guess now it is??? Makes no sense. Clive14, those are obviously not my beliefs as I think everyone is equal. I am not sure your wealth makes you different from someone else. It means you wealth is unequal..we are talking about just people. We all end up 6 foot under (so to speak) in the end." +p5052 +aS'I think this is a bad way to put it...the evidence that they earth has been warming since we have had the ability to measure temperature is overwhelming...the cause is unknown and whether or not it is natural is unknown. It does seem fairly narasistic to think in 100 years we have caused so much damage to an earth that at least has been here 10,000 years.' +p5053 +aS"Possibly, depends on what you read and by whom. Still, the war wasn't aganist slavery." +p5054 +aS'Heart bypass, prostate cancer.......I have a couple of Canadian friends who needed those surgeries and one was told he had a 4 month wait and the other a 6 month wait so they both came down to Bellingham Wash and had the Surgery within 2 weeks............' +p5055 +aS"I never said they would actually follow it all the time. I said that most would incorporate it (referring to a world morality). Just because they would accept it doesn't mean they would follow it. Maybe you should stop trying to tear down your little strawmen." +p5056 +aS'I see your point, Iangb but I\'m not about to be leaving before you\'ve had a chance to respond. I won\'t be "leaving" at all. You challenged me to produce an argument, so I\'m going to produce my argument. I will then summarize the argument, and you can respond to it and we can then discuss / debate those specifics that you have a problem with.Truthfully, this is how I should have first responded to your challenge. Doing it piece meal has only resulted in a less focused debate.--Chuz' +p5057 +aS"Yes, it is, and I'll gladly excuse his grammar compared to my zero ability in Hungarian." +p5058 +aS"Because self-defence, unlike most other 'reasons', automatically allows all citizens firearm access, and in most cases allows firearm acess without mandatory training/evaluation. When this occurs, you are much more likely to get misuse of firearms.If you read around you'll see that I consider all rights as needing justification. This comes both from my stance as a relativist and as a UK citizen, where there is no formalised Constitution. Ask yourself this - if a right cannot be justified, why should it be treated as a 'right'?" +p5059 +aS'people keep saying thats the law in texas,so Im saying that this is the law in New York,He broke the law so he had it coming,next time dont disrespect the law and get a license,Im just showing how some of the people on this board are major hypocrites,you suddenly get all soft on crime when you dont like the law,' +p5060 +aS'But the responsibility does not end with the woman who experiences the pregnancy. If it did, then men would not be required by law to pay child support.' +p5061 +aS"You lie. You keep saying the same things over and over again, that doesn't make them true. Your addiction to violence is showing.Tony Martin shot an unarmed 16 year old kid in the back as he was running away. That's not self-defence, that's cold blooded murder.It is not the role of individuals to exact revenge for crimes committed against them. You don't get to take the law into your own hands. Munir Hussain ran after the intruders and beat them up with a cricket bat in the street. That's not self-defence, that's revenge." +p5062 +aS'I disagree for the same reasons I have been giving all along. There may be some legislation that was passed that has kept corporations small (Anti-trust) but did it really benefit the society?' +p5063 +aS'True, but I was referring to psychological explanations, not genuine reasons.' +p5064 +aS"I don't see how this is not a debate about abortion. True, it's become mildly less concrete, but that's what happens when you try to get it right." +p5065 +aS'actually they probably drifted much faster than that.....probably upon a pole reversal.' +p5066 +aS'Well, it seems to me that if you have a reflex it means you have an at least partially developed and functional nervous system which would tell me that you can feel pain.' +p5067 +aS'If you truly believe this then I think you need to re-read your posts and put yourself in the shoes of those on the receiving end. ' +p5068 +aS"So, this statement is from a 'law center' that is dedicated to defend the religious freedom for CHristians. Yet, this isn't about 'religion'. Why do I find that hypocritical." +p5069 +aS"You don't even take into consideration the possibility that Japan could have a higher mass murder rate- perhaps the same as the US- if guns were freely available in that country. You have a lot of explaining to do if you expect me to buy what you're trying to peddle. " +p5070 +aS'Really? The transcript shows that he did not ask her anything in the Gay marriage section of the discussion.Transcript can be found here: http://elections.nytimes.com/2008/pr...al-debate.htmland here: http://www.cnn.com/2008/POLITICS/10/...ipt/index.html (click on the same-sex benefits section and the transcript shows up right next to the video)' +p5071 +aS"well yes that's what he did, but he did not try to present this as positive evidence for anything. the biomorphs were used to illustrate the point that random mutations are much more likely to produce beneficial results when the mutations are small. analogies always break down at some level, this analogy was used to illustrate a certain point. the assertion that dawkins was suggesting that a biomorph happening to look like a real life object were proof that evolution and natural selection could produce such creatures is false. montalban, to restore integrity i suggest you retract the conclusion you drew from snippets and quotes from dawkins as your paraphrasing was clearly not representative of dawkins' ideas." +p5072 +aS"I think you're mixing up socialist and fascist. Patriotism is anathema to socialism." +p5073 +aS'Yes, to follow his commandments to love God and to love one another.' +p5074 +aS"There is a pretty huge difference.Civil unions aren't nationally recognized, for one thing, since not every state has them. If you travel to a state that does not offer civil unions, then your union is not valid there.I think there's a problem with dissolving those unions as well.The big difference, though, are the rights that these unions provide. There are over 1,000 legal protections and rights that marriage provides that civil unions don't. I'll try and find a list of differences." +p5075 +aS"Pretty good considering Darwin wasn't aware of genetics. Too bad Wells is stuck in 1859. The modern synthesis provides perfectly legitimate mechanisms." +p5076 +aS'HA wouldnt you say someone who is really overweight actually has more of a problem with stress on their joints, muscels, heart, and bladder than a woman carrying a small child in her womb? Obesity can demand major scarifices in behavior and diet. Some of which can be detrimental.I really dont see your point because this isnt just a woman\'s problem when it comes to these issues you pointed out.And im not really sure what a "pregnancy" is according to you.. please explain.. When i hear the word pregnant, i think of 2 people, not just 1.Also, the baby has its own blood, its own immune system, and contains its own calories once consumed. theres nothing that the mother has that the baby doesnt other than it just needs nutrtion. Just like you need food everyday.' +p5077 +aS"Cases v United States, 131 F. 2d 916 (1st Cir. 1942), cert. Denied sub nom., Velazquez v. U.S, 319 U.S. 770 (1943). Basically, The US Curcuit Court upheld that the Second Amendment didn't apply to weapons that couldn't be carried by an individual." +p5078 +aS'Butwhat of the fetus/babies that were wanted by daddy but not by mummy what does termination stop then?' +p5079 +aS"Well I'm glad its no problem for your son. No child deserves to be harrassed." +p5080 +aS"This is more of a legal question involving whether or not it was negligence(sp). If so, you can't really sue for amounts of money you MIGHT get in the future. He could sue for lost pay on the job and other medicial procedures. So ya know :). I don't really know what the question is." +p5081 +aS"So you're saying that the theory of evolution is similar to ####, in that they both make large messes when they come into contact with fans?" +p5082 +aS"Yes, because its THEIR decision, its THEIR stomachs, and its THEIR lives. I agree that some decisions do need to be made with parental consent, but not this one. Irrelevant. How does purchasing a house have to do with abortion? Ok, so what if the kid wants to have the baby and the adults want to get rid of it? What if the adults want her to have the baby and the kid wants to get rid of it? You would force the kid to have a child (that doesn't seem responsible at all), or you would force the kid to abort her child (thereby taking away her son or daughter). Both of those decisions don't sound very consitent or responsible. The decision is best left up to the person that is pregnant, regardless of their age." +p5083 +aS'Actually you are incorrect. The most commonly used rifles on the competition circuit are so-called "assault weapons".The "assault weapon" moniker is a term just recently fashioned to describe a military looking weapon.There are several target competitions designed solely for these types of rifles.' +p5084 +aS'Yes, the Byzantines are a Catholic Rite. The Catholic Church is divided into rites- there are seven I believe, the Roman, of course, being the largest. The Byzantine Catholics are an Eastern Catholic Rite, and as you said are almost identicle to the Orthodox Churches except that they acknowledge the Pope as the head of the Church.East to West, a website regarding all the churches of the Catholic Church, especially those of the east.Real quick, the Orthodox acknowledge the Pope as the successor of Peter, but not as the head of the Church. Am I correct?' +p5085 +aS'I would be interested to see where I made such a claim. Prove your assertion.' +p5086 +aS'You do realize that the rules are supposed to be absurd, to point up the absurdity of a recent court ruling, right?' +p5087 +aS'That is what supersport is hoping to do... However, assuming that you are correct in your interpretation, he has no chance of doing it so well.' +p5088 +aS'I believe it is merely all known living species against those known by the fossil record and extinct. There are undoubtedly more extinct species that we are unaware of than living ones.' +p5089 +aS'It is not only supposedly "junk DNA" that was used for these kind of arguments. The vertebrate eye has been preached to be a bad design. Why? Why is it a bad design? The human eye contain bona fide optical fibers to conduct light (nice illustration). B' +p5090 +aS'From my first post, starting with the quote from the religioustolerance website;' +p5091 +aS'And folks that refuse to see the legitimate ones put us all at risk. Touche.' +p5092 +aS'Yes. It\'s not logical to simply cite, "the Bible tells me so, the Bible was written by God," and consider that an argument. The Bible has been wrong. It\'s also not logical to cite authority to God. It necessarily begs further questions about your God\'s unproven existence to those who don\'t believe in that God, or in any God. If we don\'t simply believe in your God, on the basis of your presupposition, he can have no authority over the rest of us. One must come up with another argument.Should each religion have it\'s own definition or completely different idea of logic, which favours that religion and its God? ' +p5093 +aS'"He" is real to all of us fjp, whether we acknowledge Him or not, God is alive and well on Planet Earth. And the day comes for each man when he faces that reality. For some of us it\'s a long awaited day of joy and for others a long dreaded day. But believe me when I tell you that just because one denies that God exists, it does nothing to lessen His reality.' +p5094 +aS"No it doesn't. First, the changes may not be neutral. I will presume that you are intelligent enough to grasp that idea the mutations in and of themselves are neither advantagous nor disadvantageous, and the they have no purpose. Evolution happens when the mutations (and other mechanisms that increase genetic diversity) are acted upon by other mechanisms of evolution. Even in natural selection there is no purpose. Natural selection is differential reproductive success. Some organisms tend to produce more offspring because they have characteristics that give them an advantage in a particular environment." +p5095 +aS'so we would penalize financially those who want to have kids?' +p5096 +aS'If your friend is hearing voices in her head to walk into traffic, she needs some psychiatric help.' +p5097 +aS'Being in the minority or in the majority is irrelevant. Belief has no bearing on reality.' +p5098 +aS'Yes, it is very hard, even for theologians, to explain.' +p5099 +aS'Actually the details of HOW embryogenesis proceeds is becoming increasingly understood. And it goes way the heck beyond speculation. Check out how homeobox genes work and how regulation by master switches is understood as just two examples.' +p5100 +aS'Why would that even be expected? When you consider that it is important to maintain some sort of consistency in study populations, obvious mutants are excluded from the breeding stock. And yet, there are frequent observed mutations. In fact, my elder son once observed two mutations in a single fly in one of his populations. One fly had no wings and white eyes.' +p5101 +aS"I'm not arguing that gun control will change the nature of men- though guns may make them more willing and confident to engage in crime. With guns criminals can do even more damage. Adding guns to crime is like adding gasoline to a fire- it makes an already existing problem worse. If you think that just as many people die from stabbing and beatings in other developed nations as people die from guns in the US then you need to do more research." +p5102 +aS'Its amazing how the facts are in front of thier faces yet they still claim they are only for "Reasonable" gin control laws.' +p5103 +aS'I do not argue so much the quality of llife of an individual woman but more for the quality of life, indeed of having access to life itself, of the children of the woman involved, because in many situations the concern and nurturance of a mother may be the only thing keeping children alive, especially in poor, war-torn nations that do not enjoy the relative wealth of the United States.' +p5104 +aS'Interesting, but it appears to ignore the fact that there is pre-existing variation (just look at the pictures). Emphasizing mutations is ok, but relying solely on them will probably skew results.' +p5105 +aS"There are in place control procedures for traveling with weapons. All he should be charged with, and I expect he will before this is tried in court is breaking the Airport procedures, or maybe they are FAA procedures which could imply Federal laws. This guy should have contacted the Airport at check in to report each and every weapon he was traveling with. They would have advised him precisely how to store them and he wouldn't have had any issues at all. Here's the FAA Regs for traveling what is and isn't allowed. I must say that I'm somewhat alarmed at some of what is allowed if I put my terrorist thinking cap on. FAA News" +p5106 +aS"You know Brady, you've said a lot of stupid stuff over the years. I even remember finding a post of yours where you said all guns and gun owners should be registered, but sex offenders shouldn't be. This latest post of yours is just another senseless and stupid rambling of somebody that's so hateful and fearful of an inanimate object that it's impossible for him to function in our society and can barely handle his own needs." +p5107 +aS"I think some people will and have argued that. I'll work on finding a quote, but I believe it was somebody here who argued that, because of the recent SCotUS ruling, home invasion in DC would decrease because criminals would be more worried about encountering a homeowner with a gun. You do have a point about preventing a worse crime from occuring,though." +p5108 +aS'Nothing.... they both have to live with the shame of killing their baby.' +p5109 +aS'No, Creationism is the specific idea that the creation story in Genesis is literally true (creation ex nihilo, direct creation of organisms, global flood, etc). It is false.' +p5110 +aS"...and 8 beers are imo worse than one joint. People tend not to smoke as many 'doses' of pot as they drink 'doses' of alcohol." +p5111 +aS"And my interpretation of my writing is that I didn't mean that. Who has more authority?" +p5112 +aS"It is worse then that they just don't get it. Once you put some civil rights on the ballot nothing is off limits. Freedom of speech, religion, assembly ect.. they are all up to be voted out of existence for an unpopular minority by the majority. They just don't get it." +p5113 +aS"I'm not sure that your comment will encourage any sort of discussion. Certainly no one is glad because your mother died so young. Not even creationists are likely to be gleeful." +p5114 +aS'Because if evolution cannot explain all changes it is false, Unless you propose some creatures evolved and some were specially created. Is that what you mean?Genesis says that all creatures were specially created. It fits with the observational evidence but there is no smoking gun that proves it.Statis is the norm not the exception.One is right the other wrong. It cannot be both ways.Do you have an answer to how a lizard can morph into a bird considering the amazing difference in the lungs?' +p5115 +aS'Pregnancy is a health issue only for the woman. Your glib remark pretending to sympathy is insulting.' +p5116 +aS"IF! But here's the thing, Mexico is making absolutely no attempt to truly stomp out the drug cartels, they're catering to them! Various political figures and police officers are on the take, they're getting massive amounts of bribe money from the cartels, stopping them would prove detrimental." +p5117 +aS"Accidents happen, that's just how life works. They're tragic, and they're upsetting, but there's no way to avoid them." +p5118 +aS"But I'll bet that you don't know what any of them are. " +p5119 +aS"Just out of curiosity, what do you feel you could sue the company for? Descrimination? Could I sue Wal Mart or Dillons for not carrying a line of adult movies and sex toys? After all, I have a right to own adult movies and sex toys. Doesn't that mean that Wal Mart automatically has the responsibillity to provide those goods? After all, they are the biggest retailer in my area." +p5120 +aS'So producing a child is the defining characteristic of a marriage? What about love, trust, respect, companionship? My wife and I may decide to not have a child, does that mean our marriage should be made illegal? Again, you keep posting nambla this and nambla that. Nambla is a group of deviant pedophiles, homosexuals despise this behavior too. GROW UP DHARD...I mean DMG2FUN. ;)' +p5121 +aS"It's worse than that, Pandion. For example, here's what I told him over at ARN on the same subject back on April 5th. http://www.arn.org/ubbthreads/showfl...e#Post30331420" +p5122 +aS'Criminals continually inform the public that their greatest fear is a victim capable of fighting back against them and possibly killing them.' +p5123 +aS"Humans are about the furthest thing from perfect. The bible IS perfect, it's flawless. You can't take anything from it and prove it to be incorrect. The only thing that even comes close is misinterpretations of certain sentences. I know plenty of people who don't believe in any sort of God and aren't bothered by the thought that this is all they have, the only life they'll ever live. Maybe some people need to believe in more to live more, but all people don't." +p5124 +aS'Yes, but we do not know that homosexuality is not inherited, and it is the arguments like this that make people want to prove that homosexuality is genetic. Also, people born infertile cannot reproduce, so are those people inferior in a relationship because of what they cannot do?' +p5125 +aS'And religion is what caused the Crusades and most other wars in the past, and many wars, and bloody disputes, to this very day. Many, many, many, many, many more people have died in the name of religion than in anything that could be called "in the name of atheism".' +p5126 +aS'Incorrectly by those who don\'t understand evolution. Talking about the evolutionist theories about the big bang is pretty mindless, since the big bang is cosmology. Whether or not there was or was not a big bang is irrelevant to evolutionary biology. Lumping other sciences under "evolution" is a method of creationists so that they can claim that they don\'t oppose "science" but only evolution. To be a creationist is to reject the last 400 years of science - cosmology, astronomy, astrophysics, nuclear physics, geology, paleontology, tectonics, biogeography, genetics, population genetics, and so on. You get the idea.' +p5127 +aS'Life evolved over billions of years rather than being created in a few days.' +p5128 +aS'People have entertained and will always continue to entertain beliefs in all manner of propositions. Many people once believed that the earth is flat:perhaps some still do. But this has nothing to do with scientific truth.There is no "version" of science that one chooses from a menu of possibilities.By definition, scientific enquiry arrives at hypotheses after gathering evidence from observations and experiment. Any law, knowledge, etc. thatis arrived at by scientific method is open to modification or falsification if new evidence comes to light that must be taken into account. All science in this sense is provisional.The apostles may have believed that Jesus walked on water: that does NOTmake it true.' +p5129 +aS"It's thanks to the opposers of the theory that all this rubbish about descending from monkeys and slimeball came about, all ppl need is a bit more education and things should become clearer." +p5130 +aS"And what if it is one to me? Then your refute is equally refuted. The support for us not knowing lies in you and other's inability to provide anything beyond speculation as support for the assertion that an unborn child is not a person. Your own inability is my support." +p5131 +aS"They can if they're Catholics since Evolution is accepted doctrine now in the Church." +p5132 +aS"Well, this gets rather complicated. A very young child does not get to choose his or her adoptive parents. Who decides on who adopts whom depends on the kind of adoption and the policies of the particular adoption system. In private domestic adoption, the birth mother usually gets to decide on who will adopt her baby. The foster care system is organized differently, and international adoption is different still and depends on the country from which the child is being adopted. So it's pretty much impossible to generalize about adoption policies and practices. They vary greatly.The point is that the purpose of adoption is to protect the rights of the child." +p5133 +aS'I see I jumped the gun. That was well stated.' +p5134 +aS'Chloe, the point of this thread is to help you understand what the argument is, not to give analogies to abortion.' +p5135 +aS"And what would make them separate species? How about wolves and dogs, separate species? How about Great Danes and Chihuahuas? They cannot interbreed under any circumstances (even artificially - the fetus isn't viable)." +p5136 +aS'Please provide the actual estimates of the time required along with the necessary references if you please! How much time WOULD it take with confidence limits please!' +p5137 +aS'Actually both are relative in every situation. Especially "The Truth" as espoused by religious fundamentalists such as yourself, as there are as many different versions of the truth as there religious fundamentalists.' +p5138 +aS"The majority of criminals don't want to deal with trouble. Most aren't looking for a shootout where there's a risk of them getting shot at and most don't even want to shoot period. Most are just looking for the free stuff they can get or in cases of rape they're definately not looking to fight an armed victim. It has been shown that criminals are less likely to break into a house whose owner has a gun." +p5139 +aS'Well, I did say I was being nit-picky: all I was objecting to was the way the original wording suggested that the change was occurring in order to avoid competition. Assuming it was due to selection, the competition from the larger birds was the putative agent of that selection.(Incidentally, I suspect we live on the same side of the Atlantic.)' +p5140 +aS'And the loss to society because people used guns instead of an alternate weapon is?' +p5141 +aS"The US is still the closest thing to a pure capitalist country in the world. But you are correct, our system is not a pure capitalist one. We have reminants of all types of systems including socialism. In the modern world I don't think a society as large as the US is could be run under just one pure system." +p5142 +aS"Just to contribute, I'm pro-gun, have had training in the proper use and laws in my area, and have owned weapons for more than 30 years." +p5143 +aS'the reason why premise 1 can logically stand is that God is first of all defined as the "greatest possible being". no matter what reality we are considering, such a thing as the greatest possible being in that relity must exist. "greatest" is a superlative, compared to all other beings that existits like "the oldest man alive". no matter what scenario, such a person as the oldest man alive will always exist, therefore such a man (that fits that definition) will have a necessary existence' +p5144 +aS'Would you mind telling us just how he determined ALL maladaptive or inconsequential mutations in his test organism and just how he validated such measurements? To me as a biologist with quite a bit of microbiology under the belt it would seem to be impossible to do so! After all its very likely that a fairly large portion of the populutaion will have at least one mutation at at least one base pair location in the total sequence! Your claim would seem to be impossible, but perhaps there is a way he managed to do so.' +p5145 +aS"here we go Dan. your problem with the law is not whether its fair or not, its whether you can benefit personally from it. you have no problem with abortion because your not going to be the victim of such a law, but youd definitely have a problem if you were the one suffering from the law. Apparently you dont care if the law disadvantages or is unfair to others, as long as it doesn't hurt you, you're OK with it." +p5146 +aS'So? The point was that people who support gun control are not necessarily communists.' +p5147 +aS'I see. Then you are attempting to define evolution out of existance. By your definition (not that of evolutionary biologists) evolution requires an increase in information. An unsupported creationist argument. Define information in a meaningful way. Please apply your definition to genetics and show why all genetic changes are a decrease in information.' +p5148 +aS'Very well said. However, we also believe that gun owners should get as much training as possible, necessary, desired etc. It just should not be required to participate in a Right Recognized by your Constitution as Inalienable, and therefore protected. That sets a bad precedence for the rest of our Bill of Rights. However, safe handling of any potentially dangerous tool is just common sense.' +p5149 +aS'Exactly. That the change in moth color was due to natural selection was first posed in about 1896 by J.W. Tutt. The funny thing is that as pollution increased, the moths turned black, and then as the pollution was cleaned up, they turned white again. carbonaria have become pretty scarce.' +p5150 +aS"This makes more sense then anything else I've heard on this thread." +p5151 +aS"Your stats aren't broken down into meaningful groups, so nothing is learned WRT Muslims." +p5152 +aS'If same sex couples are offered equal rights under a PACS (or some other legally recognized union) as married couples, why does it matter which "door" they come in through? They get all the same benefits, including the benefits that come when one partner dies.What\'s the beef...except that you can\'t say that you\'re "married"?' +p5153 +aS'There is never a question of "killing people" in such circumstances, it a matter of deciding if treatment should be withdrawn and thus allow them to die, i.e. where there is no possibility of any sort of a recovery.' +p5154 +aS"I do not empathise with an embryo or early fetus the way I imagine I would with my late-term fetus or born child.I fully intend to have children in the future, including through adoption possibly. When I do I will love them with all my heart and put their needs above my own. I'm not going to do a half-assed job of parenting; I'll give it 100%.But not yet.Prototype:" +p5155 +aS'logic would lead one to believe abortion is wrong...but why be consistent in your thinking.The point is, logic and rational thinking is not a requirement to make a law. You can ban abortion is you want...the states did it and the constitution allows it, even if 5 legislatures think otherwise.' +p5156 +aS'See above. A lock can create doubt about the ease of entry into a residence. Many criminals move from door to door until they find one that is unlocked, rather than drawing undue attention by smashing one in.' +p5157 +aS'Well, there is a little more to it than that, but agreed.' +p5158 +aS'Well said. It is a disgrace that the "Flat Earth" side of the argument never gets a look in geography lessons and that the "Spontaneous Creation" side of the argument never gets a look in when teaching kids about the life cycle of insects. Do you realise that they refuse to present the "Cheese" side of the argument when teaching about the moon these days? It\'s outrageous, how can our kids get a balanced education if such bias is allowed to continue!' +p5159 +aS'Well excuuuuse me if I screwed that up in this post. Have a nice day. :)' +p5160 +aS"But not just any seven judges, seven judges who's job is to define the constitution." +p5161 +aS'YES, of course, they could not actually hunt, since that would be illegal, possibly a felony, whihc could lead to forfeiture of your rights.' +p5162 +aS"So what? It's not like institutions in this country haven't been changed before, including the supposed intitution of marriage! Guess what? It's called progress, get used to it. " +p5163 +aS'Actually, I meant the behaviour refered to in her post was interesting.' +p5164 +aS"I think the FSM threw these guys a bone. They cherrypicked which taxa would give them the most statistically significant results. If they were to expand the method to include more and more taxa, they'd see the Noodly Appendage of the Flying Spaghetti Monster. Ramen." +p5165 +aS"And the point was, Benjamin, that it is dishonest to cite the work of others, with no indication that it is the work of others. If you take what someone else wrote, they you need to indicate that, telling where you got it. If it is a book, then the author, title, publisher, date and page. If it is a web page, then the URL should be given.Even better, express your own point and tell how reference supports it. Tell why it is important and why it shows your opponent wrong - then just give a link. Generally AIG is really bad science and isn't very interesting. It is misleading, intentionally. However, on these boards are familiar with their stuff." +p5166 +aS'"True" is not a good use of language to describe opinion. With regard to his opinion, I think he makes some good points, so I don\'t really need to ask him if its true. You on the other hand do need to speak to Olsen as you are claiming his letter rubbishes the concept of evolution- an opinion I hazard he would very much disagree with.' +p5167 +aS'Not only do their superiors in higher courts think they are a joke, but their peers in other circuit courts think they are a joke.' +p5168 +aS"How is that a strawman? Your challenge directly relies upon something you assume to be proven, but has not been. Therefore even in a hypothetical stance, your underlying arguments are invalid, thus leading to everything else being invalid. You're not doing so well on this forum." +p5169 +aS"And what is an inheritance? Proverbs 13:13 he who feareth the commandment shall be rewarded. 14 The law of the wise is a fountain of life. 15 Good understanding giveth favor 16 Every prudent man dealeth with knowledge 17 a faithful ambassador is health 18 but he that regardeth reproof shall be honoured. 19 The desire accomplished is sweet to the soul 20 He that walketh with wise men shall be wise 21 but to the righteous good shall be paid. What inheritance should a good man leave to his children's children? Solomon wasn't talking of money, but of God's law. In Solomon's view, the wicked can have their money, the true reward goes to the righteous. Why this should contrast with selling your luxuries and giving to the poor I'm not sure. " +p5170 +aS"Except in the Dred Scott case the court wasn't trying to determine whether slavery was a collective or individual right, or what the constitution applied to in regard to slavery." +p5171 +aS"Well, HRC estimates that the costs would be negligable and that some governments would actually save money. They site many studies on the issue, which I have not taken the time to look up, as I think this sort of statistic is worthless. It is unreasonable to ask same-sex couples to pay for the marriage of opposite-sex couples without asking opposite-sex couples to return this payment. Still, you seem very concerned about it, so I will provide this link:http://www.hrc.org/Template.cfm?Sect...entDisplay.cfmIt is an interest group in favor of gay rights, yes, but that doesn't make them wrong. I did have a link to an actual study on the topic, but I cannot seem to find it. I'm sure if I scoured the Internet more, I could come up with something." +p5172 +aS'But people start threads here all the time against Christianity regardless of whether someone claims something here about it or not. It\'s prejudice, pure and simple, and you\'re no exception. Now, one would think, being the supposedly non-Christian enlightened person you are, you would simply say "oh, I didn\'t realize that my posts came across as anti-Christian sometimes, and that it indicates a prejudice on my part, and will try to not have prejudices in my thinking." I mean, one would think those of you are do this sort of thing would be happy that someone had pointed out the obvious prejudice going on, as it would be a case to help you move away from prejudicial thinking.' +p5173 +aS"Still clueless and still presenting a barrel of laffs I see. Have someone that can read and comprehend spell it out for you. I bet yer mun is considering that to get you out of the basement. How's the weight loss coming by the way?" +p5174 +aS"And think of what other animals have built (and for an actual purpose). Take a look at a bee hive. It's so complex and so perfect for them. They built that. An ant hill is at least 20 times the size of an ant. That's 120 feet for us (for a 6 foot person)." +p5175 +aS"You've asked a good question cash, the way you know that is by all of the excuses you're getting rather than any attempts to actually answer you directly with solid evidence. Of course we know that evidence doesn't exist, but they'll never admit that either. emoticonXGood" +p5176 +aS"It seems to be the reason for crafting this new, individual right against the States. Since the original purpose of the Second Amendment doesn't appear to be needed, there is a new use that is protected." +p5177 +aS'Bad comparisons. A fair comparison would be comparing the total number of defensive gun uses to the total number of gun crimes (not just limiting it to gun homicides).' +p5178 +aS"This is poor example. Focusing on saving lives over burying the dead doesn't do anything to trump personal autonomy." +p5179 +aS'I dunno... we already have enough fundies thinking that the Big Bang is part of evolution...' +p5180 +aS'Do you believe that the freedom to not participate in any religion whatsoever is not covered by the expression "Freedom of Religion"?' +p5181 +aS'Things like future proof of a young earth - evolution needs billons of years. Or proof of severe weather conditions that would destroy the evolutionary process. Life on earth dies completely if it gets out of a fairly narrow temperature range, any time during those billions of years.' +p5182 +aS'"Usually, "rationality" is a Humpty-Dumpty word, that means whatever the user finds is convenient to club his opponents with."http://world.std.com/~mhuben/skept/rationality.htmlKnowledge itself is a limited commodity. To make a claim that everything is knowable is a statement that is impossible to prove; Scientism makes this claim. Closely related to it is Objectivism."Scientism, in the strong sense, is the self-annihilating view that only scientific claims are meaningful, which is not a scientific claim and hence, if true, not meaningful."http://skepdic.com/scientism.htmlRecommended Reading:"Why People Believe Weird Things: Pseudoscience, Superstition, and Other Confusions of Our Time" by Michael ShermerNot only does it include creationism, :) but also the philosophy of Ayn Rand (Objectivism)' +p5183 +aS'Lots of makers are still churning out lever action rifles. I am sad to see Winchester closed, but sad feelings is not a good financial reason to keep a poorly run company open.' +p5184 +aS"Actually, it isn't. It is complex and complicated. It requires diligent study of difficult concepts. But when you grasp the basics, it does become evident. But most creationists aren't willing to put in the effort." +p5185 +aS"It doesn't make sense because no one makes that claim. There are some random events that take place that may have an effect on evolution. That does not mean that evolution is random." +p5186 +aS"Because the judges President Bush nominates are strict constructionist.They interpret the law not make it...........That is the worse nightmare for a liberal or a gay who depend on judges to over rule the vote of the people............They can't win at the ballot box so they think they can win in the courts....It won't happen.get use to it................" +p5187 +aS'Who said it did? I was only pointing out the absurdity of gun control laws and how they lead to federal overlords deeming that your not capable of playing with matches. (I would not be suprised if this were next.)' +p5188 +aS'You can forget the loaded language including false notions of progress. Lifeforms are evolving by way of purely physical and chemical mechanisms.' +p5189 +aS'He is a hell of a lot wiser than thee.' +p5190 +aS'Yes. Oddly, the picture makes as much sense as most creationists. :)' +p5191 +aS"So what? I don't care! Gun ownership is an individual right and that's the end of it! You don't have to exercise a right hundreds of thousands of times a year for it to be protected by the Constitution." +p5192 +aS'Well, ya know, if you actually, oh I don\'t know, VISITED THE SITE, you\'d see that the "friendlyatheist.com" is a blog-like page (and not the one that is actually giving the info on the evolutionary migration of humanity) and it gave a link to the actual website that we are talking about (the second link I gave): http://www.bradshawfoundation.com/journey/But then, maybe we\'re expecting a little too much from a creationist. emoticonXBanghead emoticonXBanghead' +p5193 +aS"Evolution doesn't explain the event. The event is an example of evolution - a change in the frequency of alleles in a populatioin over time. The explanation may or may not be evolution by natural selection. You merely asserted that based on your imagined case." +p5194 +aS'All born children, and every woman had the right to be rid of them. Killing them is not required as abortion is when they are in the womb (during the timeframe the majority of abortions occur, at least). They are not comparable.' +p5195 +aS'Well then, my skeptic fellow Australians, what is the answer to the question? Do any of you guys here know? I sure as hell don\'t. Creationists did not misquote Dawkins because the words came from his mouth. And Dawkins is a professional at biology, but he could not answer such a question.In the little amount of fossils that we do see, they are not evolutionary. There is no clear cut fossils showing the evolution of man, is there. By "true human" I mean they were just like us, just varients of human kind that we have today - looked human, walked like us, most likely were quite intelligent. I have got to go to school, continue this later.' +p5196 +aS"So you still choose to believe that someone who's a victim of crime should be punished as if they committed the crime themselves?" +p5197 +aS"Actually, this (if what that article is true, which I am not quite sure) is a healthy part of science. Old theories are disgarded and new ones come in as more evidence is brought to bare. Every theory made by fallible man is prone to being disproven and destroyed. Man's theories change everyday, while God's word has remained the same." +p5198 +aS'But it is based on history. There is plenty of history showing that women had illegal abortions. Or, if their families had money. went to Costa Rica or Britain to have a legal one in those countries.Women died or had severe medical emergencies due to illegal abortions. Doctors and nurses were prosecuted for providing these services.' +p5199 +aS'Since evolution is a non-theistic theory (it does not consider if there is a god or not), you will have to look at some like http://www.theistic-evolution.com/I would also look up Kenneth MIller on the web... a highly Christian biologist who defends evolution.' +p5200 +aS'?? What are you trying to say?Science is knowledge, all knowledge, that is, anything we find to be true. There is no other "truth" out there, if there were, we\'d be omniscient.' +p5201 +aS"Pregnancy is always harmful to the woman's body. However, if the pregnancy is desired then the changes are welcomed by the woman.To a woman who does not want to be pregnant then those changes are very unwelcome and are a bad thing. Pregnancy is always harmful, but the perception of what is happening changes depending on the woman.You do not understand that whether or not pregnancy harms the woman's body is objective, but whether or not the woman wants the pregnancy anyway depends on the woman. You are mixing the two." +p5202 +aS"**Here you reveal exactly what I've just spoken of--you assume that science and the scientific method equates to, is synonymous with, materialism/mechanism. It most certainly is not. Nor is the accompanying assumption, i.e., that any science which does not strictly adhere to materialust/mechanist assumptions, is not, and cannot be, real science. Equally untrue.Both assertions are unnecessary to an objective approach to science, per se, but are part and parcel of an emotional defence of materialism/mechanism and its biological aspect, RMNS darwinism." +p5203 +aS'This assumes brain-dead is a logical choice to consider one dead. Even so, it proves nothing about when life begins. What says they have to be the same? This is a classic example of a conclusion not following from the premise.' +p5204 +aS"And they could have experienced more without gun control. You're jumping to conclusions." +p5205 +aS"Like the above quote, why is the church trying to stop abortion when they would consider one to be alive after taking a breath. if you were to look at it from a scientific standpoint, the individual ovum and sperm are living cells, but they die all the time and no one cares. An embryo or fetus is something starting to develop into a human and that can't be stopped without killing it or injecting differnt DNA, but it's still not too different from sperm and ovum.If you can't trust the church to make fair decisions and follow values and morals and rules they put in place, how can you expect an honest good decision about anything from it." +p5206 +aS"The terrorists saw it as absolutly necessary. Personally, I disagree. When we kill children in Iraq, we see it as absolutly necessary, call it a horrible side effect of war. I disagree on that, too, I don't think it is necessary at all." +p5207 +aS'Yeah, see this is the old "gateway drug" fallacy.If anything is a gateway drug, it\'s alcohol, so why is it still legal?If a drug can act as a "gateway" to other drugs, isn\'t that why it\'s illegal?So are people sitting around drinking alcohol all day, waiting for someone to come by with something "harder"? No, and the same is true for people who smoke pot. Oh, sure they may also do other things once and a while, but it wasn\'t simply because they tried that first joint. It\'s just a personality trait and a common one. If pot didn\'t exist, these people would be doing something else. The same with alcohol and cigarettes. If they didn\'t exist, people would find some other type of vice.' +p5208 +aS'So much for your cover. Its blown. You just made another gaps argument making the assumption that if theory X does not explain observation Y that a theory which is untested and untestable MUST be the only alternative explanation. Balderdash and shame on you. The alternative theories would likely be numerous and the ONLY one is not something untested and untestable.But I forgive you GOD probably made you make the error for his own mysterious reasons. Or else your statement is evil and was forced upon you by the devil. Maybe you will never know - in this life at least :(' +p5209 +aS"Yes, the horror of voluntarily taking orders from someone in exchange for monetary rewards!! If you hate your job that much, quit. You aren't being oppressed because someone offered you the option to do something. If you don't like it, don't do it. If you hate trade, you can go wander through the wilderness and eat berries and roots." +p5210 +aS"You said there that you wanted guns in schools so that kids could defend themselves. How is that a misinterpretation? You're asking for proof of a negative. How many massacres would have occured if guns were common in school? We don't know... Erm.... You're saying that people don't try to harm one another over those things? I suggest you surf youtube for a bit. Rememeber however, that kids are more emotionally unstable than adults. Hormones and guns aren't a good combination. I agree that's silly. I'm more worried about your statement that students should carry in class." +p5211 +aS'Actually, it has. The last time I checked, well still have gay marriages in Massachusetts. As a matter of fact, it seems that it is difficult for most politicians to be elcted in the state without being supportive of marriage equality.' +p5212 +aS'Actually Electro, do you remember this thread? Evidence for a flood? Oddly enough it took 20 pages before one of them even tried to argue against the reasons why the flood did not occur.' +p5213 +aS"You said who would it hurt? I'm asking you who would it hurt if there was prostituion? Just to help you think that there are injuries that are proximate to everyone." +p5214 +aS"Just because they're our representatives, doesn't give them permission to trample the Constitution and the protections provided to the citizens. Look at how many laws have been passed, only to be invalidated and ruled as unconstitutional." +p5215 +aS'You are assuming that the TOE of evolution has remained static since Darwins time.I have to say that is false. We have 150 years of experimental data beyond that. In addition, we not only have the arguement from homology, but we have genetic data to back it up. So sorry, but you struck out.' +p5216 +aS'What about the pain and death inflicted upon the innocent women and girls forced to give birth? Have you no regard for them?' +p5217 +aS'Whether a fetus is a person is not something open to consideration. An apple is not an orange. The reason that we have two words to apply as labels is simply because they absolutely are not the same thing. It is that simple.Suppose that a fetus is frozen and implanted in a female 22 years later. Is it of legal drinking age at birth? Obviously not. We currently have the technology to actually do this.' +p5218 +aS"You haven't proven anything. All you have done is spew your same old drivel which ignores what I actually say and reinterprets it to mean what you want it to say. You must corrupt what I say since you can't accept the truth of my beliefs and win your fallacious argument." +p5219 +aS'A being is something that is conceivable as existing...or something that actually exists.A human being is one of us, a homo-sapien, a member of the group of beings known as animals.A rock is a being of inanimate qualities.God is the supreme being, not capable of being understood totally as this would put Him (or It, or She) on the same level as those that He created.We will never be able to define exactly what or who God is!God is great.God is good.Let us thank Him for our food.God is my shepherd.God is my Light.God is my Co-pilot.God is what keeps me from believing that all this (the totality of all things and happenings) came about by accident.When God made man, She was only kidding! ;)' +p5220 +aS"But we also don't know that evolution is true - it is a belief system about the past that requires faith for it to have any reason. Your first part is already false (proved above)." +p5221 +aS"Iangb, I would have thought that you would be intellectually honest enough to have (at least) accepted the fact that I have supported my claims. I also thought that (by now) someone from your side of the abortion issue would step in (in this thread or by private message) and hold you to your claims of being 'intellectually honest.' At this point, I actually have you questioning Planned Parenthood's definitions? QUOTE; " +p5222 +aS'Well, the question I am asking is for you to provide a valid scientific prediction based on creationism.' +p5223 +aS'Creationism is not something new, it was the prevailing view of scientists up until Darwin. None of them belived in a divine parrot that is just plain silly. In the crucible of natural science throughout the Middle Ages, the Scientific Revolution and well into the 19th century theology was the queen of the sciences. Now we subject students to higher math studies that they will most likely never use and speculations about conceptual mechanisms like natural selection that have no practical application. Naturalistic presumption has become sacrosanct in the rhetoric of the professional scientists who have been crystal clear on how they define creationism. You can ignore the statement by D.J.Futuyma and identical ones made by Gould, Mayr, Dawkins, Dobzhansky and others but not without departing from mainstream evolutionary biology. ' +p5224 +aS'At what cost? How many civil rights are you willing to give up in the name of a few less murders each year? Are you perfectly willing to be stopped by the police on a block-by-block basis and forced to show identification and traveling papers, all the while the officers on location are pointing their guns right at your head, ready to XXXX you away at the first sign of a twitch or if you display even a hint of hesitation to comply?How desperately do you crave a police state? How much do you favor a nationwide curfew where violators can be arrested by the police and held without legal counsel for an indefinite period of time? Do you favor the use of physical and mental torture to force convictions even from the innocent?' +p5225 +aS'Well, if Genesis was in fact true, then we would have to assume that God is real and the Bible more or less explains what he wants, right? And if there is someone "up there" who will damn you to eternal torment if you don\'t do what he wants (which is one interpretation of the Bible) than that might effect the way you act. I realize that that isn\'t exactly the same as changing your moral compass, but history has demonstrated that most people\'s moral will stretch to accomodate pressing needs, and I think an actual vengeful diety would qualify.' +p5226 +aS'So for example if I say "you are a part of my body, and therefore I have a right to kill you", is this simply a matter of ideology?I admit the distinction is not clearcut at early stages of development, but how do you support the idea that post-birth children are "a part" of their mothers\' bodies and therefore legitimate to kill?It is no more legitimate to say that a fetus is a part of a woman\'s body than it is to say that a woman is a part of a fetus\' body. Just as a woman is not a subordinate slave to the fetus within her, the fetus cannot be considered subordinate in rights to the woman it is inside.' +p5227 +aS"23,000 firearms were handed in when the UK had its gun ban. According to your logic those people that handed in their firearms can still be prosecuted because they took possession of a firearm prior to the ban. I don't think so." +p5228 +aS'But bestiality consists of animal cruelty, so very much hurts another. Just not another human.' +p5229 +aS'I think it goes something like that. Scientists have tried to repeat what they believe happened, but to no success. Anyway, atheistic evolution says that there is no intelligence, the scientists who were trying to repeat what may have happened have intelligence and they made many such measurements to try and create life from lifeless chemicals - in other words, the experiment was already logically flawed!' +p5230 +aS'The fact that they were too heavy, is simply untrue, see previous post. Hunting depends on many ecological factors, such as their predational preference. Also new fossils suggest a trees down development of bird flight so fully developed flight muscles and feathers were not necessary.' +p5231 +aS'So country by country, the world is going to hell in a hand basket. And this pleases you, why? emoticonXFrazzled' +p5232 +aS"Hello, please read http://www.reasons.org/resources/apo...ing.shtml?mainIt is a good christian site that explains that there are lots of problems with Dr Russell Humphreys' hypothesis.The universe and Earth are very old. We know this as a fact. Why would God lie to us? If the Universe looks old, then it is. To claim otherwise is to call God a liar." +p5233 +aS"Well, that's generally true of any process that uses energy. Some is wasted." +p5234 +aS"I don't think that any marriage rights are required at all by the Consitution." +p5235 +aS'And I just say that it would be unjust and unfair of you to force metaphysical belief systems of your own which constitute religious belief upon your follows who may believe otherwise than you. Get pregnant and treat your fetus as a full person if you wish, nobody will force you to abort it. Let others follow their own beliefs differing or the same. Otherwise you attempt to obtain justice by doing injustice.Mo' +p5236 +aS"But growth is fairly irrelevant. My sperm can grow into a human too, and have mental existence, yet ejaculating isn't murder. It just becomes a huge debate on where to draw the line, therefore it is best to focus on the state that it is right NOW. Not what it was or could possibly be.That seems reasonable to me.[/QUOTE]" +p5237 +aS'You know what is far worse than murder itself? Executing people to save some money.' +p5238 +aS'Well be cynical if you want, if someone in your family had done as you ascribed you wouldn\'t be here to be so glib. Nor would the human race or any other species where penile-vaginal sex takes place. I guess all those years of biological reproduction show it. You will also notice I didn\'t make it an absolute statement. I said "minimal or negligable physical damage".I understand that female biology undergoes truama too during sex, the fact is the trauma of vaginal sex i.....1. more forgiving and 2. Obviously possible of greater/important final result. And um, like with lesbian activities, the size of the "peg" also matters so how do you know lesbian activities are a lot less harmful.' +p5239 +aS"I see the difference, but that's not what Obama is trying to do. He got us to buy the pig at a firesale and is hoping to make money selling it back to the original farmer or give it to the fieldhands." +p5240 +aS'When the President is in public, there are plenty of people around him ...with guns.' +p5241 +aS'I have no idea what this could possibly mean. It makes no sense, semantically or logically. It is so vague as a concept as to be worthless in terms of the pursuit of knowledge.' +p5242 +aS"Intelligent design comes in many flavors too.ID that submits as a designer something that has any quality of the unknowable is irrational.ID that submits we were created/designed by things inside the universe that are knowable are rational claims. However, they have no evidence, so they have a long way to go to be shown to be worthwhile to pursue. Even a simple application of Occam's razor tells us that to suspect a thousand theories on how life has changed on earth is unecessary when another theory can fulfill the description entirely, of life, and they have evidence to support it. It's why this theory is discarded onto the heap of any number of theories that simply isn't going anywhere. You can make up a theory right now about how life began, but if it cannot be supported by evidence or is redundant to a theory already described...why would we?" +p5243 +aS"Just curious, is it beyond you to make a post that includes common sense and logic? I'm thinking it is since all of you posts seem to be based on rhetoric and emotion. Three paragraphs and all of them contain a falsehood/ lie, congrats your batting 1.000." +p5244 +aS"So who's the head honcho? It's not like all these professional scientists all see eye to eye. There are even scientists that hold to theistic evolution." +p5245 +aS'I believe a man should be able to opt out of fatherhood.The problem with this article for me is the moral ambiguity - there is no consistent argument laid out for free choice, that is choice for women and men, or even one for consistent slavery (forced births from women, forced money from men). It reeks of the vindictiveness that can be seen in any number of fringe movements, of the "I don\'t really care whether we live in a just society, as long as you\'re not treated better than me".So yes, I "a real pro-choicer" agree with Matt here, the pro-choicers who are portrayed as disagreeing appear to be some kind of stereotyped 1970s feminist-socialist-activist-bra-burning type.' +p5246 +aS'If there is a positive relationship between drug consumption and crime, it doesn`t seem very likely that crime would go down as a result of lowering the price on drugs (and thus rasing consumption).' +p5247 +aS'Actually it would be impossible for the monblock to spin. There is NO PLACE OUTSIDE OF IT from which to observe! Any observer would necessarily be inside the budding universe - no place else to go you see. Indeed its still impossible for us to know whether the universe as a whole is spinning or not!!!! Sorry I was being a bit ironic thinking you would see the point. Guess not though.' +p5248 +aS"And that's the rub: it never has (apart from when it has of course, with the various versions that exist). You choose to put faith in the writings of a primitive bronze age society. I prefer to trust a textbook that is regularly updated to reflect our latest findings; our most up to date and accurate knowledge of the world." +p5249 +aS"Chuz, the purpose of this summary is not to summarise your arguments as a whole - it is to summarise what your argument is up to this point. Why not post just a summary of your position so far, as you see it - I can do the same, then you can continue with your argument? There's no point in writing an argument, summarising it and then leaving the thread before I've had a chance to respond to even your argument (never mind your summary). If you are going to simply ignore any criticisms of your reasoning, then I struggle to see the point of you repeatedly requesting a one-on-one debate in the first place - you essentially regress your argument to the 'because I said so' that you are (presumably) hoping to avoid, it's just that there's slightly more detail." +p5250 +aS"Jake good try at manipulating scriptures. Jesus is all about family values. The point of thsoe scriptures is that His gospel is above everything else. The only thing that comes before family is GOD. He loves families but won't let a family bring someone down. The US rescues kids from bad homes too because to be in an enviroment that is detrimental serves no one." +p5251 +aS"This has everything to do with guns,how are these people suppose to protect themselves?Since the police have been told to just let them go, crime will run rampant, it will become THE place to go if you feel like duing a little robbery a little burglary,gosh wonder if they gotta let rapo's and killers runaway to. Only 2000? I lived in George Wa. and the population was less than 2000,it was also just off I-90 and we had plenty of crime from people passing through not necessarily from people who lived there." +p5252 +aS"Really? 'cuss what I always see with anti-choicers is that they seem to think that the pregnant woman is invisible. This means that all men and all fetuses have a right to life at all times, but women, for some unknown reason, seem to lose that right when they become pregnant. Weird." +p5253 +aS"it has been known for a long time -- it's just been surpressed because it contradicts genetic determinism and neo-darwinsm in general." +p5254 +aS'That distinction may be irrelevant since they do say that no god that any religious person believes in exists. And that is what I was getting at originaly. Still I think that the idea that the existence of all religious gods can be ultimately refuted based on the logic you bring up is invalid.' +p5255 +aS"I think the OP said it pretty well. If an organism or cell can process information and then make decisions based on that information, that's intelligence." +p5256 +aS'Depends on the usage. Generally, it just refers to the Theory of Evolution or a change in allele frequencies in a population.' +p5257 +aS'So please tell me who would be the actual criminals if the Government violated the Supreme Law of the Land and made all guns illegal?But I do thank you for proving that there are people out there who want them all, despite The Bill of Rights says and what the Supreme Court proved was the correct meaning!' +p5258 +aS'Oh I can easily spend $1,000 dollars an hour. If I could I would also have plenty of reason to live to be 114.' +p5259 +aS'If this is what passes for American healthcare, then your need for change is even more desperate. None of these "treatments" is available on the NHS.' +p5260 +aS"Sure they matter. But that isn't the issue here. You posted this in the abortion forums as if this medical malpractice which is taking place in an impoverished third world country is justification for it in America. That is a ludicrous and totally bogus argument to make.If you thought rationally, you would have it in the health forum and be complaining about how third world countries are so ill prepared for this common problem when we have the technology so readily available to avoid it. My Lord simone, a simple C-Section is all that is required to make this a non issue for mother and baby. But you ignorantly post this drivel as if abortion is the solution. It makes no sense at all, and yet you post it thinking that you're contributing something rational. Go figure, huh!!! emoticonXFrazzled" +p5261 +aS"Oh, I don't think there's anything wrong with it, I'm completely for it." +p5262 +aS'Well to get healthcare from $6000 per person to $3,400 per person you\'d have to pay them less or fire them. So do I understand you correctly that we will either cut pay or fire doctors and nurses?EDIT: that seems dramatic...not "fire" them but they will basically go into another profession since they are no longer needed.' +p5263 +aS"But doesn't Genesis imply that creation occured in one 7-day period (though the days could be symbollic)?" +p5264 +aS'This question is premised on an untenable assumption: that people should not be allowed to vote on particular issues. This premise is clearly not true in any democratic society, and is especially not true in the United States. In the United States, it is a contradiction in terms to say someone is not allowed to vote on X. I have demonstrated this before, and yet the same silly question keeps coming up.' +p5265 +aS"I think that's a good question. I also wonder how long the medical establishment has had this rule? Since there must be some long-standing procedures in executions in the United States that require, by law, a doctor's supervision." +p5266 +aS'Though I know you directed this question at Cthulhu, I will nonetheless jump in to say that I would quickly choose the newborn mentally retarded baby to live and the zygote to die. That is obvious to me since the mentally retarded baby is a currently existing person vs. the zygote being merely a potential person. That zygote may have more potential for the future but the decision is being made in the present. I would feel far more guilt in sentencing a real person to die than in sentencing a potential person (now merely a cell) to die.' +p5267 +aS'That interpretation is fine except that God says, "I WILL make a helper suitable for him." He hadn\'t made the animals yet in verse 18, but he created Adam in verse 7.' +p5268 +aS"Apparently you thought I was claiming that pro-lifers thought that the baby's life was more valuable than the mother's life. So I clarified:" +p5269 +aS"Well if you're going to quote that article that mentions Canada to support your opinion, then does that mean you're in favor of gun registration and licensing? Canada has them. And if the NRA is really interested in enforcing laws why do they ask congress to reduce the budget of law enforcement? The NRA uses its political muscle to make it easier for criminals to obtain guns. Robert Ricker, former top lawyer of the NRA, talks about it. " +p5270 +aS'Because he was found guilty of murdering a minor rather than an adult. Any crime committed by an adult against a child is more heinous in nature.' +p5271 +aS'What Is a Human Person and Who Counts as a Human Person?: A Crucial Question for Bioethics by Prof. William E. MayThere is also an extremely academic school of thought which views the human person in terms of the ego in all its derivations. I cannot hope to summarize what this is all about, please refer to:Philosophical Critiques: The Human Person - 3 One could also consider the social development of an infant, inasmuch as humans are, in most cases, very social animals.According to primatologist Sarah Blaffer Hrdy, the human species is specifically developed to be part of a social system and a newborn infant comes ready made to push all the buttons of the system:' +p5272 +aS'Actually, I believe it was a Reagan policy continued by both Bushes.' +p5273 +aS'This does not mean that the column is fantastic nor imaginative. It may very well be that not all areas of the earth accumulated all types of rock that form the column; this does not mean that the years at which similar columns were deposited in different places in the world are not similar. And of course, even if the Geologic column is not true, this provides no evidence of creationism.' +p5274 +aS'Although i personally oppose abortion,i agree that two wrongs dont make it right.' +p5275 +aS"Yes. The better question is, did it happen just like in Genises? I don't think so." +p5276 +aS"Out-and-out lie. There's really no other way to put this." +p5277 +aS"Yes yes, this was all covered in Wells' previous book, Icons of Evolution. It has been refuted numerous times (some even on this forum). See here for a thorough debunking." +p5278 +aS"Because I am one who likes see things from different angles. What better way to fight your enemies then to understand their viewpoint. Before I am attacked on the the last statement, just because I understand a viewpoint does not meant that I accept it as true or that I don't reject it." +p5279 +aS"Not many women would say they had an abortion now, let alone back when it was illegal.It is an emotionally trying event. I can understand why she wouldn't for that reason alone. Another possibility is that the Administration is buying her silence, or it could be a combination of the two." +p5280 +aS'This coming from the person that makes insane claims without providing evidence. Atleast provide some when asked!' +p5281 +aS'You can not create the general from the specific, only the specific from the general' +p5282 +aS"If I were to become upset merely because you told me the ideas were wrong, you might have a point. But I don't; never have, so far as I recall. An idea can't be stupid, or simple-minded. An idea can be right or wrong, or perhaps partly both. When you describe an idea as stupid, you are saying it is wrong and one would have to be stupid to think that. When you describe an idea as simple minded you are saying it is wrong and one would have to be simple-minded to think that." +p5283 +aS"An independant perspective doesn't make it a good thing. Politicians that propose anti-gun legislation don't have to live in the real world with those of us that the bill will affect, they shouldn't be allowed to propose it." +p5284 +aS'I think you need to answer the same question I asked the other guy, who is God?' +p5285 +aS"Just how do you suppose the government seeking permision would work in reality? And what exactly are you afraid of? It seems odd when people advocate blind trust for Joe Civilian, but then think that the government shouldn't be allowed to be armed. I think there must be a balance in trust given both ways." +p5286 +aS'Do you actually have any idea how science works? Why are you not embarrassed for creationism?' +p5287 +aS"I see. So you can't give an example of a dinosaur being dated with carbon 14. None of us thought you could." +p5288 +aS'Actually, natural selection tends to preserve a species with only minor changes in a stable environment. But environments tend to change. I don\'t know what that "incipient organ" junk is supposed to mean. Is that another way of saying "what good is half a wing." Well, check out a penguin to find out. Look at a seal flipper. It has the same bones, arranged in the same way as a monkey. What good is it for a land animal? And what does "fully functional" mean? What function? Perhaps the new organ had a different purpose - take the clawed hands of fossil birds for example. They were good for catching prey and climbing, just like they were for their dinosaur ancestors. But those clawed wings also allowed early birds to fly.' +p5289 +aS'They are both written in the bible. Neither of them have any evidence (apart from the bible) to support their existence. One of them has been proven to be utterly false. This naturally discredits the other, as they appear in the same publication by the same author. Why decide one is true when the other is clearly not, and neither have any other supporting evidence?' +p5290 +aS"I'll have you know that the abortion went without a hitch, and my uterus is perfectly healthy, thankyouverymuch (not that it is any of your emoticonXCensored business), and yes, I do plan to have a child in the future, and don't really care what you think about it." +p5291 +aS"Actually, we didn't. The first record of a melanic form was in 1848. Presumably other melanic individuals had appeared before this, both in Biston bebularia as well as other moths. We know that a similar mutation occucrred in other moths North America some years after the 1848 record of the B. betualria.There are actually several alleles of the gene responsible for color that form a dominence hierarchy with the fully black morph (called carbonaria) as the top dominant and the typical as recessive. The intermediate forms are referred to as insularia. They are uncommon. At any rate, by 1895, 98% of observed B. betularia in industrialized areas were carbonaria." +p5292 +aS"Both. It's where a human life begins but not a life yet." +p5293 +aS"You're right, I think he has made such comments. Sorry. I think he's wrong and went too far." +p5294 +aS'You think "the unborn child is worthy of protection"..."but not more so than the mother, probably less"...yet you believe "in most circumstances the child should be carried to term?"' +p5295 +aS"Yer lucky you ain't as old as me. They would have loved you with the M-1!" +p5296 +aS"And Atilla's army of as many as 1/2 million men was beaten and forced into retreat by the Romans and Visigoths in 451AD. A year later, he was forced to make peace after devastating the Roman countryside...but NOT Rome itself.He died a year later in 453AD." +p5297 +aS'Oh it\'s no mistake Montalban. I, unlike you, am quite clear in my arguments, and have a direction and a goal. We can take your other definitions of creationism one at a time, thank you very much. I\'d like to first focus on the one that involves your god, or any god, described as being unknowable (which you have said your god is). Will you "allow" us to focus on ONE thing? You see, if we have a list of 4 things, and we go through them one by one, we can maybe arrive at the end!!! Crazy thought isn\'t it!' +p5298 +aS"I'm not sure where anyone said it related to evolution, the big bang, etc., but I might have missed something." +p5299 +aS"But it should be the job of science to establish a clear line between just where established fact stops and philosophy starts. There's no indication that they're getting it done." +p5300 +aS"You're working at the wrong end of the problem. We need young to survive. It's the old that are expendable." +p5301 +aS'But that is your goal whether you want to admit it or not. And that is your sole way of defending creationism as you have admitted you cannot argue creationism based on its own merits. Creationism is wrong independent of Evolution. Even if you somehow manage to disprove evolution (along with every science) you still have to even take a single step towards proving Creationism.' +p5302 +aS'you based this (and other claims) on a summary of the biomorphs program at website that either a) didn\'t also provide dawkins limitations on the program or b) had the limitations and you didn\'t bother to relay this information to the forum. You then make incredulous statements about how unrealistic the biomorphs are. any quotations of web pages are irrelevant because they do not address the basic issue that you are suggesting dawkins puts the biomorphs forth as a model of evolution and natural selection. This is not true as i have quoted part of his book that puts limitations on the biomorphs program, and draws attention to what "morals" should be drawn out of the biomorphs.' +p5303 +aS"You don't have to be the best organism to survive. You just have to be good ENOUGH." +p5304 +aS'Well firstly we do not know that "volition" must be embodied in living organisms only - computers MIGHT be capable of exhibiting it. I think you will find that there is NO valid reason for believing otherwise. And volition itself is NOT a defining characteristic of life. No biologist would buy that assumption. Sponges, bacteria, corn plants etc etc etc are mindless organisms and so far as can be determined do not act out of volition.' +p5305 +aS'Just to be sure you understood, it was the picture below that picture you were supposed to look at.' +p5306 +aS'And you believe that to be what? You really need to just say who/what you think the Creator is to save us from having to make all these clarification posts.' +p5307 +aS'So what if he dislikes science? If he believes something else, he has the right to believe that way. My problem here is that he shows more closed-mindedness to the viewpoints of others.' +p5308 +aS"It doesn't matter whether it is religous or not. The odds of anyboy being fired over such a thing are slim to none. Morning after pills can not possibly make up eough of any given pharmacys revenue to make it worth the expense of replacing a skilled employee." +p5309 +aS'this statement isn\'t logical.It does not follow that if the person who creates the laws has to therefore follow them or can\'t change them...or even that they apply to him. If a teacher says "no talking in the classroom" it doesn\'t apply to the teacher now does it.' +p5310 +aS'So please, feel free to leave this thread to those who DO wish to discuss the issue. No one is forcing you to discuss the topic of this or any other thread. I notice you evidently are not interested in "Understanding "Sexual Prejudice"" That is absolutely fine with me.Or are you now opposed to "Freedom of Speech" also?' +p5311 +aS'Not true Our laws were originally founded on the precepts of the 10 commandments........' +p5312 +aS"So then women who are pregnant shouldn't be allowed to 1) Smoke 2) Take any kind of drug that could possibly harm the child 3) Drink or do any otherwise legal action? And VOR takes another giant step towards fascism." +p5313 +aS"But the belief that 'its gotten us far' is itself a 'scientific' type belief, in fact it has less proof on the empirical assumptions than the science itself. Justifying the validity of experience by experience is the intellectual equivalent of saying'God must exist, because God is good and would not allow a world without God'." +p5314 +aS'Oh, buddy, Atheism has EVERYTHING to do with that. The morality-less framework of Atheism ALLOWED them to justify the horrors that they inflicted.' +p5315 +aS"I may be a pro-gunner but what doe's that have to do with with gay rights? Since I'm a pro- gunner I won't force my life style or views on you,if you don't force yours on me.Deal? After all you seem to be the expert on gay rights." +p5316 +aS'1 - It is innacurate. We allow killing in times of war, in self defense, and in state sanctioned executions. So we already have a situation where, when given X mitigating factors, it is justifiable to take a life. It is impossible to say all life is equal, and then to apply that as law. People will be outraged. I know I would be.2 - Objective to who? Who gets to decide how valuable life is? And why should they get to? And who says they are right? The relative value of life works fine, thanks very much.' +p5317 +aS'Actually, as long as any group is not breaking laws, their ownership of guns is legal. The KKK can even own guns as long as the KKK is abiding by the law. I noticed Brady refered to the KKK as a mob, I get the picture Brady thinks that if gun owners gather for whatever the reason, that we are mobs as well, but when his side gathers they are an organization. And no Brady, I dont belong to or associate with hate groups.' +p5318 +aS"Don't you think this would fit the 'Creationism is nothing but lie's thread a bit better? Although I notice The Skeptic making disparaging remarks about your examples, it seems he attacks you more than deal with the well documented examples you have." +p5319 +aS'But the big bang did not create matter. Matter can neither be created nor destroyed. The matter was already there.You might just as easily ask if god was there to create the universe, where did this god come from.Your answer would be that god has always been there, but I would argue that the matter has always been there. The only difference between these theories is that mine has one less assumption.' +p5320 +aS"Again, this wasn't just about you and me. I do think you corrected someone's spelling and if you didn't it was another creationist." +p5321 +aS"Yes, they do show a faithful devotion to the ultimate reality that there are no gods. You're an atheist, aren't you?" +p5322 +aS'Please define "climb upward" and "downhill slide" in biologically meaningful terms. Please define "degeneration."' +p5323 +aS"Considering your previous comment, that isn't you. Once again, that opinion is based upon who you read." +p5324 +aS'Steve - its not about qualifications - its about impact. Women are the ones who get pregnant, we should have more authority in the matter.' +p5325 +aS'Having human DNA does not necessarily make one a human being. Transgenic animals can have human DNA, does that make them human beings.' +p5326 +aS"Because you know the peer review process is biased. Anything submitted for peer review with a recognizable name like Dembski or Behe will be automatically rejected before the first word is read. The scientific community's problems are just that big." +p5327 +aS"So you're accusing me of the thing that your most guilty of? As I remember your posts have been censored several times by admin because you resorted to viscious personal attacks and name calling. And aren't you interested in the truth. Why isn't whether Jefferson said it or not important?" +p5328 +aS"No, that was not an argument. It was an illustration of a point. The point was this: that in order to stand in moral judgment of God, you would have to be of higher moral character than God. In other words, you would have to be God in order to judge God. Now, the point I made is that this is highly unlikely, as any being claiming to be God would not misspell words, no matter how closely the letters are on the keyboard.To be clear, I was not attacking you (at least I didn't intend to) by calling out your spelling mistake. I was trying to illustrate a point. And the point was this: you are not perfect, and therefore, you are not God. And if you are not God, then you really cannot stand in moral judgment of God." +p5329 +aS'And once it has begun, which would you rather have?' +p5330 +aS'the blog is just the link for the article....geez, get a grip.' +p5331 +aS'But it\'s not detecting any "new" wavelength. It\'s just detecting a wavelength that our eyes are incapable of detecting. You can\'t see radio waves, so radio waves are meaningless to your eye, but they\'re not meaningless to your clock radio receiver.' +p5332 +aS'With all the debt Obama has generated for our nation, he deserves to be filibustered into the ground. For too long the democrats had absolute power and ran amok and unchecked, answering to absolutely nobody and ignoring the will and the voice of the people.' +p5333 +aS"The thing is the Dempski didn't provide any kind of testable or detectable definition about what information is either. He used vague but scienficially sounding terms to push his case. He knew it too." +p5334 +aS"George Bush won the majority of votes (the first majority winner in 16 years) in an election with the highest turnout in US history (>117Million voters). The Senate Minority Leader was defeated by a nobody. Democrats lost at least 3 seats in each of the House and Senate, something that never happens in a Presidential election year. This gave the Republican majority in both branches of Congress even more control. 11 Liberal ballot initiatives went down in flames by huge margins. If liberalism ISN'T dead, then it's in ICU on a heart and lung machine. emoticonXRolleyes " +p5335 +aS"Because there are people who are trying to deny the theory of evolution it's place as a vital part of public school's biology curriculum." +p5336 +aS'Did you read the article? A capuchin is type of monkey, in this case, the type that was used in the experiment.' +p5337 +aS"It is an acronym for 'Y'oung 'E'arth 'C'reationist. In other words... someone who believes that the earth is only 6,000 - 10,000 years old and was created in six days by a being known as God." +p5338 +aS"Well I guess Nato basically::p summed it up:Stupid is as stupid doe's." +p5339 +aS'And it is much easier to have an abortion than to be a mother.' +p5340 +aS"It's one thing that stands between us and a mindless theocracy. It protects the freedom of women from would-be ayatollahs who would make them sexual slaves." +p5341 +aS'What are you talking about? Please define information. What does "new" information have to do with natural selection or evolution? Evolution is NOT defined by evolutionary biologists as an increase in information.So I ask again, please define information in a meaningful way as it applies to DNA and the genome of an organism.' +p5342 +aS'But the law of angular momentum does not require that all parts of a spinning object spin in the same way now does it. If so then something like a rotary engine for an aircraft would not be possible!' +p5343 +aS'No, not in the least. It\'s real intent was to throw a bone to the people pretending to have "family values". The religious right, the conservatives, that lot.' +p5344 +aS"I think that we've got to draw a line at some point, to demarcate between adult and child. Where ever we do draw it, it will seem, in some situations to be arbitrary. If we made it 20, the question would be why 20 year olds and not 19. Through the years society has determined that by 18 people should have attained enough life experience to form intent and to comprehend that their actions have consequences (at least as it applies to the death penalty, they can be tried as adults w/o death). We don't execute people who can't comprehend the nature of their crimes and society says that, under 18 you can't fully comprehend criminal actions." +p5345 +aS"I believe the large majority of such deaths occur among inner city kids who don't know anything about guns except for what they see on TV and movies." +p5346 +aS'Huh? With a 26" barrel the .50 is good out to 2100 yards. With the 29 or 36 that increases to 2500, but the world record sniper shot was made with a .50 BMG and it was 2657 (1.51 miles).' +p5347 +aS"Actually I don't deal with spanish or french because I don't have to. I speak english. emoticonXRolleyes" +p5348 +aS'Preganancy should not be used as a punitive measure against women who are sexual. What you think is not reflective of the reality of women and their cicumstances that exist in the world. The reasons to abort are numerous and complicated. Some reasons are more valid than others. But you have no way of knowing that for millions of women, only they can really know.And although there are some youngsters in this forum who negate life experience, it is not to be negated. Ther is a lot to be said for "walking in a mile in another\'s shoes". Be careful about your desire to take the life circumstances of a stranger in your hands. Are you ready to be morally cuplable for the damage you could do?' +p5349 +aS"Thats a very good question. To be honest - I would prefer no legislation period - but I would not get up in arms about a late term restriction like I described because 1) a fetus could very well survive outside of the mom at that point, 2) most reputable doctors won't conduct an abortion at that stage without a legitimate medical reason anyway." +p5350 +aS'I think a free society works better by saying "You have to have at least a certain variety to give your customers a choice in products". Businesses should have the restrictions, not private citizens.' +p5351 +aS"That's not exactly true now, is it? People get to vote for elected officials, and that's all that's guaranteed federally. Some states have provisions for allowing people to vote on local laws, but in some states the government is allowed to prevent the vote. And of course there is no provision at all allowing the people to vote on federal laws. So in point of fact it is a true statement that in the United States someone is not allowed to vote on X, for some values of X." +p5352 +aS'How is that related to deterrence? Once again, deterrence is preventing through the fear of consequences. What you are talking about is not related to the subject of deterrence.' +p5353 +aS'True, but what i was trying to state is that the bible has little to do with christianity if you dont believe in it. I know many christians who believe in god, and jesus etc, but think the bible is completely false, and is only a book of fables. Thats what i was trying to imply.' +p5354 +aS'You know, I heard that from my mom last week. My parents moved to Arkansas when my dad retired a few years back. Mom thought it was amusing and disgusting that the state she moved to would have voted in such an alarming manor yet takes no measure to secure the marriages they already have. Ironic indeed.' +p5355 +aS"You SERIOUSLY need to take a basic biology course so you can stop sticking your foot in your mouth emoticonXRolleyes An egg is NOT larva, and larva is NOT a caterpillar, and a caterpillar is NOT a butterfly - much the same as a zygote is NOT a embryo, and a embryo is NOT a fetus, and a fetus is NOT a baby, and a baby is NOT an adult. I challenge you to prove that a larva is exactly the same as a butterfly. If you can't even do something as simple as that, then you'll never understand the process/transformation of what a human has to go through, and THAT in and of itself should give you a clue as to how much in denial you are in, and how much you have to twist the truth around just to justify your version of events. Deal with it!" +p5356 +aS'This seems to conflict with some of your earlier posts wherein you support terrorists.' +p5357 +aS'And if there are two competing hypotheses that are actually hard to choose between? As they get closer, it becomes less possible to choose by instinct or testing. A principle comes in handy.' +p5358 +aS'Would that work like the ban on illegal drugs in American? Does that ban keep illegal drugs out of American? The ban on illegal drugs does one thing, it does keep illegal drugs from law-abiding citizens. Law-abiding citizens are the only ones that respect the law when it comes to bans.' +p5359 +aS"For me, this is like the idea that the speed of light was once very fast and has now slowed down. Both ideas indirectly call god a liar. This is bad. If all of our experiments show the Earth is 4.5 billion years old, then that is how old it is. If the Bible says something different, then either God meant Genesis for peoples past and now uses scientists to explain things better (though I am uncomfortable with this idea as many scientists are atheists), or our puny minds, compared with God's, haven't yet worked out how Genesis and an old Earth tie together." +p5360 +aS"The comic relief doesn't even recognize it has passed in on, or attempted to!" +p5361 +aS"YES! the founding fathers realized government was to serve the people it governed. With out a set of rules that limited the government it would run wild (as england did). They made the bill of rights and constitution so that it would limit the government (to keep it from becoming too powerful, and overstepping it's bounds). And the only way the constitution could actually be enforced was for the population to uphold it.Back in the time of it's writing they probably saw the best way for a population to force a government to not over step it's bounds was to force it... er... by force.Today in the information age, a much better weapon is our right to vote. Sweeping changes can be implemented with out the use of force using the system. " +p5362 +aS'But you are forgetting life-without-parole (and I do mean WITHOUT parole). With life without parole, there is also no recidivism.' +p5363 +aS"And there are plenty of people who smoke who don't develop lung cancer. You're cherry picking." +p5364 +aS"Right. And that is the reason for peer review. Creationists don't subject their ramblings to peer review. That is why so much care is devoted to the proper construction of experiments to test the hypotheses by real scientists. Creationists just invent ad hoc stories without any experimentation." +p5365 +aS'A more precise term would be "broaden," since nothing about the definition pertaining to the people currently covered by it would be affected, "diluted" or altered in any way anyone has yet demonstrated. Nothing about the definition that pertains to people who already are, or can be married changes one iota. Their rights, benefits, and protections remain exactly the same. The only "change" would be to other people, people who have no connection to, nor impact on, the marriages of anyone else: the gays who\'ll marry if the legal definition is broadened to encompass them. And the only "change" in that regard will be the fact that they are encompassed by it, nothing more. No substantive aspect of the definition as it currently stands changes in the slightest.The change is not in the definition itself. It\'s in who it applies to.' +p5366 +aS"Excuse me, but you didn't fully read what he wrote. He didn't say that he supported abortion. He said that he wasn't as much a freak about it as you're being." +p5367 +aS"Evolution wasn't introduced until 1859. When did abortion become popular?The industrial revolution occurred in the 1800s. Maybe that was the cause of abortion's alleged popularity.Grover Cleveland was elected in the 1800s. Clearly he had something to do with the alleged increase in abortion's popularity.The American Civil War occurred in the 1800s. It must have been the impetus for the rise in popularity of abortion.A human embryo does have features that look like gill slits. They are not gills but pharyngeal clefts. No modern book presents any information that human embryros have gill slits as if it is fact." +p5368 +aS"Well let me put it like this, I consider it your duty because if you don't protect yourself then you basically shift that responsibility to someone else. Not only is this incredibly selfish, but 9 out of 10 times the 'protection business' gets outsourced to the State.This in itself it dangerous because when people decide that a third party like the State (which has no real accountability) has control over their lives it can all to easily lead to a situation where the State becomes tyrannical.More people have been killed by their own government than by any foreign government." +p5369 +aS"Hang on....think about it.......if there is a large group of people who live in the south, and this large group of people moved to the north, WHY -- being from the south -- would there be anyone in the population that had light skin? Look at Iraq -- all those people have the same exact skin color. Same with Kenya. Same with Japan. Same with Russia. Thus, if any of those groups of people were to migrate, they'd all be in the same boat! There would be NO measurable variation of skin color. Your premise is faulty -- as is the whole premise of Toe." +p5370 +aS"And can you please tell me the difference between nonrandom variation and directed variation? I'd also like a link to verify what you say. Thank you. God Bless!" +p5371 +aS'And yet you "and other women" feel free to impose their version of reality on innocent lives.' +p5372 +aS'So...what was all that bull**** about terrorists exploiting America\'s "weak gun control laws" in order to amass arsenals of deadly weapons?It seems to me that they don\'t need undercover operatives to come to America, forge documents and undergo background checks just to get civilian weapons. They\'ve got their own arms manufacturing plants over there, they can make whatever they need or want.' +p5373 +aS"Apart from the 'horizontally instead of vertically' part which I didn't understand - we're a hundred or so years too late, unfortunately. You might as well ask for an example of a book or website on cosmology that 'admits' the sun may just be a big ball of fire pushed by a scarab beetle, and not a nuclear furnace about which the earth orbits. There comes a point where continuing to seriously 'consider' a viewpoint becomes a waste of time and resources, because sufficient testing has been done and evidence recovered to discount it. We may one day encounter evidence that completely overturns the whole applecart, but so far it hasn't happened." +p5374 +aS'The quality of life ethic is far different from sactity/dignity of life ethic. A quality of life ethic carried out to its logical conclusions does not promote a pro-life society. Instead, there would be genocide against the handicapped, elderly, and people who people of power have deemed life unworthy of life. The problem with this ethic is that it is centered in arbritrary people deciding arbritarily which person passes the "quality of life" test.' +p5375 +aS"Actually, I don't ask how the idea occurred. As I mentioned, Darwin suggested it. I'm not sure what the rese of that paragraph means." +p5376 +aS'Because everyone is equal in the eyes of the law, and rightly so. As for moral standing, you see no problem with equating his immoral behaviour with your own response. Most would.' +p5377 +aS'Actually there is a better solution. Mandatory male and female birth control pills, financial penalties if you stop taking. Anyone who would get off the pill would want a kid, therefore, abortions would cease.' +p5378 +aS'I think you do not know what you are talking about. Your description fits the matter "god" you belive in.' +p5379 +aS'Anyway Duo_Maxwell this isn\'t only creationist debaters, there are many more who do the same thing with different debates. you also forgot7. Make random accusations of logical fallacies when they have no idea what they even mean. Example: You said that my spelling is wrong, that\'s the biggest strawman I\'ve ever heard8. Correct spelling mistakes and convienantly not answer the question. Example: "What do you thinkk of carbon dating?" "you spelled think wrong". If you want to correct spelling, fine but answer the question as well.' +p5380 +aS'Yes because it is "officially" a life.Whether a person believes in life at conception or not they all agree it is life at birth and half way through life it is still life and right before death it is still life.If she does not want the child she can refrain from sex,use a contraceptive or abortion.If he does not want it he can refrain from sex (not likely for men),use a condom (not a guarantee to work),have surgery (hard to reverse) but that is it.So if he was to use a condom and get her pregnant she still has the last option.' +p5381 +aS"Well, since you've called those who've disagreed with you here stupid (and variations thereof), and insinuated that they're too stoned to understand you, I think you have the most ground to make up. You also provide no support for your statements, most of which were debunked years ago as drug czar propoganda." +p5382 +aS'Ludacris and many others in the hip hop scene disrespect women with their lyrics and videos. Much of what hip hop puts out contributes to unwanted pregnancies.' +p5383 +aS'You have to remember that those christians believe that the laws of God superceed those of man. That thier allegiance is to God and his laws above those of the constitution. They also believe that all should be subject to Gods by force if nesesary.' +p5384 +aS"You're an idiot who has obviously never worked ina first responder category. If you think that increasing the volume and social acceptance of drug use to the same level of alcohol will 'solve' anything, then you are just an idiot. You have obviously never seen whart drug abuse does to families and people's lives. You're right, alcohol is worse, and the main reason its worse is because of 2 reasons, volume and availability ala social acceptance. Legalizing all drugs would have catastrophic social impacts.Don't feed me that line about taxing it and using the money for rehab. We have taxed the XXXX out of tobacco and alcohol the last 100 years and the last time I checked alcoholism and lung cancer hadn't been erradicated." +p5385 +aS'But it, along with the uranian tapeworm hypothesis, is just as valid as intellegent design as a hypothesis. Actually, the uranian tapeworm hypothesis,. as far fetched as it may be, is more testable than a supernatural designer.I think maybe the kids SHOULD be taught intellegent design as an example of pseudo-science. Hopefully they will see why it is not science and why evolutionary theory is.' +p5386 +aS"You mean that it must have has a beginning, don't you?" +p5387 +aS"Yes, but if seen from space (something the ancients couldn't do) it LOOKS like it hangs on nothing. Don't worry, I don't mind spelling it out for you." +p5388 +aS"And I think that if I fall off a tall cliff, I'll die. Does that mean that gravity and science are either evil or incorrect?" +p5389 +aS'Yes. It describes an action without ascribing its form to its end result, outcome, whatever but strictly to a cause/s force/s in action. That is why \'selection\' is always teleological. In order to select or choose anything, an end must always be in view. There must always be a volitional discrimination of options based upon a criterion dictated by the desired end. The only time "channel" becomes teleological is when something live [a human or a beaver, let\'s say] intententionally does the channeling. But since it is understood that mechanical forces can also \'channel\', unintentional, out of simple mechanics, the word channel cannot be called teleological. In the same way, \'sorting\' can be considered non-teleological, hence mechanical, and thus suited to your glossary, because things can be sorted by mechanical forces alone. But \'selection\' always requires volition and awareness. So \'selection\' is always teleological.' +p5390 +aS'You lost me there. Try them how and for what?' +p5391 +aS'And here we have a leading YEC showing how he starts with his preexisting religious position and is not about to change it, no matter what the scientific evidences show.' +p5392 +aS'Invalid argument to assert that mutations can map a road outside of their assigned task in illogical, where would the information to do so come from? Biology works because every individual cell doing what it was created to do along with what the one next to it was, though created to perform another set of instructions creates the molecular change that the combination of the cells together would produce. But there is no additional information there... not int he way you assert.' +p5393 +aS'Said like a cruel evil person who has no concern for his fellow man.' +p5394 +aS"The idea of abortion as population control is absurd, especially forced abortions as someone mentioned a few posts ago. Anyone who has read a biology book knows the world has methods of population control on its own, we don't need to be doing stuff like that ourselves." +p5395 +aS'And she was having unprotected sex? So she knew becoming pregnant was a possibility? Yeah, I could see that being condemned by pro-lifers.' +p5396 +aS"That's EXACTLY the point. Regardless of whether or not human minds think differently, whichever mind produced and agrees that 2+2=4 is absolutely correct, the rest are wrong. We know this because we can observe and test the concept in the physical world and prove that it is true. This goes for just about anything, dissention in the face of facts does not change the facts.IMHO, this invalidates your claim that something produced in the human mind is not absolute due to some human minds being contradictory." +p5397 +aS"Well then maybe you can prove it somehow. California has all these laws you support, and even more than that. So if they have these laws on the books and have had them for a while now, and if they're effective at fighting crime, then you must surely have evidence of some sort to prove your case." +p5398 +aS'No offense, but I am in my early teens and understand the situation more than you.' +p5399 +aS"What's your point? Of course they will be bound by Heller just as the courts are bound by Roe v. Wade. That point wasn't in dispute. As long as you're talking about 19th Century Second Amendment case law, I like The State v. Buzzard (1842)." +p5400 +aS'1) Charliegone\'s article was a published research article.I would love to know where "NARTH\'s" editorial was published, if it even was published.2) NARTH\'s article DID NOT show any "higher homosexual activity" because of legalized gay marriage.It thoroughly failed to show ANY rise in homosexuality in ANY "gay marriage" country. It showed some studies which were reportedly done in those countries, but that\'s it.' +p5401 +aS'And how exactly do you propose this suggestion actually be enforced? Have you got it all thought out and prepared to defend in a debate, or are you just throwing out what the liberal loonies tell you is a good idea?' +p5402 +aS'Sigh...for the ill informed who understand nothing about their religion. http://www.religioustolerance.org/abo_hist.htm' +p5403 +aS'It is so the womans decision. If the baby is in the womb they haven\'t experience life, so how can they miss it. And if they are a so called "soul" then they will come out somewhere else.' +p5404 +aS"So, you don't see how stating that in a functioning democratic society guns belong only in the hands of the state is not anti gun?? Maybe you could give us an example of a statement that is more anti gun that that because I am having trouble imagining one." +p5405 +aS"I'll give you that, though there is a whole school of debate about what thoughts are." +p5406 +aS'I see no mention below of any judges in Mass.' +p5407 +aS'Which of course says volumes. On the other hand such metaphors are appropriate in many cases. For example consider the vaccination program for smallpox which eradicated the disease FAPP. It was indeed a struggle and new tools and techniques were critical to reaching the objective. From Jenner to the end of the virus as a human pathogen.' +p5408 +aS'And you will cowardly ignore the validity of the difference, as you whine that there is one ...A person goes to the doctor, that information is NOT public information. A doctor / patient can claim doctor/patient confidentiality. It\'s a recognized and valid situation.But with the "knowthyneighbor", these polls are PUBLIC KNOWLEDGE. The purpose of publicizing them is to prevent fraud.If you weren\'t so intent on trying to bash, you would recognize the obvious distinctions... emoticonXRolleyes' +p5409 +aS'Yes, but I think you missed my point. I stated this above, remember the prohabition? People actually drank MORE alchohal. Without a ban, law abiding citizens and criminals will have them, with a ban, there will be just criminals.' +p5410 +aS"And compare that to an equivalent sized human - if you compared the skill to a 10-13 year old boy, the erectus skeleton's cranial capacity would be significantly smaller. Doesn't contradict in the slightest other than the bizarre positions you decide other people should hold." +p5411 +aS'I know what you meant.My comment was to demonstrate the counter side of the issue.Interracial marriage laws were overturned at a time when this country disapproved of interracial marriage by a margin of three to one.By your approach, interracial marriage laws SHOULD NOT have been overturned in the 1960\'s.In fact, by your approach we still would have had illegal interracial marriage into the late 80\'s, early 90\'s.The 14th amendment makes no proviso about allowing unjust discrimination in cases of majority rule.By your approach, WHAT WOULD BE THE POINT?If the majority disapproves of the discrimination, they simply "vote" it out of existence. No need for the courts at all.' +p5412 +aS'But your own link says that the rise in crime was partially explained by the new system the UK police were using for recording crime and that the British Crime Survey showed a decrease in crime since 1997.' +p5413 +aS'You say that alot but discussion is about taking other people seriously.' +p5414 +aS"But is the Red Cross Christian? Obviously most contributors are Christian. That's obvious as most Americans are Christian." +p5415 +aS'And your point was demonstrated to be specious using your own source. To contain strawmen even as you claimed it to be a strawman.' +p5416 +aS"It wouldn't. Altering any of the fundamental universal constants changes them all. We wouldn't be considering some small change here and small change there. The universe probably wouldn't exist in any form." +p5417 +aS'Not by any means. Evolution works on genetic change that future generations will inherit. Adaptation does no such thing. It changes an individual, but not its genes.For example, if my parents volunteered to be part of a scientific experiment where they two additional arms fused onto their body before I was ever conceived, I would not be born with two extra arms.On the other hand, if a genetic mutation made it advantageous to have two additional arms, and both my parents had that mutation, I would be born with both arms.' +p5418 +aS'How do you explain the change of appearance of the animals over time, as recorded by fossils?' +p5419 +aS"That's not evidence, that's an assertion. As for my dogs (cats), yes. They do put on a winter coat in the much warmer winter climate than Arizona in which I live. So I return to my original question, on what evidence do you base your claim that an arctic fox would not change color in the winter in Arizona?" +p5420 +aS"The Second Amendment does not apply to an Ohio Law. Thus, this ban is not unconstituitonal under the US Constitution. The Ohio Constitution, may however, protect gun rights, but I haven't read it." +p5421 +aS"I'm sure you reproduce these quotes in good faith, but you ought to know they are not necessarily what they seem. The Darwin quote is a particularly craven quote mine: he was expressing empathy with those of his readers who found it difficult to imagine how such a thing as an eye could evolve by stages; effectively putting himself in their place so that he might more readily take them by the hand and show them how such evolution may occur, with ample supporting evidence from the natural world. I refer you to the Quote Mine Project for further edification." +p5422 +aS'How do you know carbon dating is so accurate? Would you bet your life on it?' +p5423 +aS"No, we shouldn't abolish every flawed system. However, when the flaw results in putting innocent people to death, it is not worth the risk.In 26 years the death penalty has been in effect in my home state of Illinois, there have been more people exonerated due to irrefutable evidence than have been put to death. I think that constitutes a serious problem." +p5424 +aS'You know that, I know that, but the creationists do not know that.' +p5425 +aS'I\'m not trying to participate in gang debate, but well..The population of "people with heart trouble" would only be in jeopardy if the heart trouble made it more difficult to reproduce. If reproduction is not hindered then there is much less chance of dying off.' +p5426 +aS'People are protected by law from being harassed, assaulted and/or murdered because they are people. Not because they are a certain religion. Because they are people it would be wrong to allow such things.' +p5427 +aS"I think often abortion is wrong but I do not agree with criminalizing it. Primarily the reasons that are used to justify criminilzation are hugely fallacious and secondarily because it won't do a thing that is positive. A woman who is determined to end her pregancy - will. Criminalization will simply make it extremely dangerous. I am responsible, have even had my tubes tied, but if I were to become pregnant and that pregnancy were the result of rape or a threat to my health or livlihood I would end it - and I will not be checking the law books first. Every woman has her line in the sand - abortion will go on regardless of its legal standing. There are a miriad of reasons seek abortion - comdemning those reasons does nothing (i.e. calling them selfish) - addressing them could help. The reasons are valid." +p5428 +aS'Bad, bad, bad. :( 1) Reducing meat consumption will create a change towards more agricultural farming which is more sustainable for humans and the environment.1) Some, perhaps all "Livestock feed" is actually edible for humans; GM maize is regularly consumed in the US and Mexico.2) One does not have to consume those foods as there are thousands of plant foods that can be eaten.' +p5429 +aS"Do me a favor. Write, in your own words, two paragraphs. One explaining the electromagnetic spectrum (and the visible spectrum's place in it), and one discussing rods and cones in the eyes." +p5430 +aS'Nonsense, societies change over time, therefore they evolve. Only biological populations evolve through natural selection and the theory of evolution only applies to biological populations, but the term "evolution" applies to other things too.' +p5431 +aS"No, say you've got 200 of some species. By some event, 100 member are seperated. Now we have two groups of 100. Each group goes through different selections and they accumulate small changes. Eventually, they will be different enough so that they are no longer able to interbreed. That doesn't mean one group automatically has to die so we remain at the same number of species.Of course, one group might get some significant advantage which allows it to come back and ownzor the original area so the other group gets wiped out." +p5432 +aS'No baby is more precious than another as far as my personal beliefs go it is no more alright to terminate a baby concieved through rape/incest than it is to terminate a baby classed as a mistake/inconvenience.' +p5433 +aS"So, you're saying that you believe in absolutely everything your church believes and you support everything it does and the moment it did anything oustide of these you'd leave right?" +p5434 +aS'It is disappointing that you would continue with this mistake. I said that God is both knowable and unknowable. You simply think that equates to the same thing, and thus you argue against what you believe I say, rather than what I said.' +p5435 +aS"No, I think you're trying to do more than that. You're trying to say that the increase in crime is due to a lack of gun ownership, aren't you? Because if you are, the article you cite doesn't back up that claim. What, no actual data to back up any of your claims? Do you have access to US crime numbers? How many armed breakins do you get in a country where people do have guns? That's the comparison that needs to be made here." +p5436 +aS"It depends on your intention and your methods. Of course, things that don't have some sort of physical manifestation that can be measured can't be studied by science. Science is naturalistic. Scientific data can only include that which can be observed and quantified by natural means. I read it in a book of mythology isn't scientific." +p5437 +aS'Actually, you gave (and misspelled) one of the common names given to the fossil, "Turkana Boy" It is also sometimes called "Nariokotome Boy". But the real designation of the fossil is KNM-WT 15000 and any knowledgeable discussion of that fossil will refer to it as such. That fact, by the way, is how I know that Turkana Boy and Nariokotome Boy are one and the same fossil.' +p5438 +aS"Archie is NOT right - he has an opinion, as we all do. Pro-lifers seem to want the definition of human with attendant rights to begin at conception. The blastocyst is now turning into a tumour. So the pro-lifers can now alter their views on what constitutes 'human' as and when it suits their purpose.Forget the emotive view of what an embryo/foetus looks like: some think that as long as it has appendages and looks human, then it IS. It isn't. It's still a parasitic organism dependant on the host mother. You can't deny that.Contraception v. abortion is a separate issue: in the meantime, the host mother should be the final arbiter of what happens to her body." +p5439 +aS'Old news. There have been accusations of similar stories for years.' +p5440 +aS'What if the surgery for transferring the embryo/fetus would be equal in difficulty, risk, etc. to having an abortion? There would then be no extra physical cost incurred in keeping the embryo/fetus alive. What would be the reasons, in such a case, to keep abortion as an option?' +p5441 +aS"Marriage is a secular condition set up by various Societies over the millenia and one of the prerequisites set out is that such a union should be between people of different genders.Religion has supported this and sanctified it but did not invent it.You don't curse the Church you lobby Society to see if you can effect a change. People who believe the different gender aspect are entitled to lobby for no change." +p5442 +aS'Same in the US. The father does not have the right to choose.' +p5443 +aS'And people say I make strawman arguments.Simply put, not enough to justify your "concerns".' +p5444 +aS"For anti-choicers, it's just about control and power over women. They don't care about life. (Except their own.)This same mother could be a person who didn't have access to pre-natal care. They wouldn't defend that right either.Because they DON'T care about the fetus. They don't care about life. They don't care about health. They care about power and money and pushing people around. That's all." +p5445 +aS"Very sad news. I'm gonna have to say that if I was talking to the assemblyman that they quoted said that to my face, I'd tell the little bigot that his filthy viewpoint sounds exactly like the arguments used against interracial marriage, against civil rights for blacks, women, and various minorities, and also against ending slavery." +p5446 +aS'So if an atheist believes that humans are the highest form of intelligence, and a devout Christian believes God is the highest form of intelligence, the Christian should allow the atheist to force him to behave as if humans are the highest form of intelligence?' +p5447 +aS'How about getting the government out of marriage entirely? That is the goal of the libertarians, and maybe the liberals. No standards would be redefined if that happened, and gays would get their right to marry.' +p5448 +aS'I believe that\'s true, and as a "believer" (creationist), here is what is hard to understand about that; In Matthew, 12:30, Jesus says "He who is not with me is against me, and he who does not gather with me scatters". It is safe to say that both creationists and theistic evolutionists would accept that statement from Jesus, and would seek to be "with" him, while agnostic and atheists would consider themselves "not with" him. Yet theistic evolutionists are comfortable to (usually politically) be "with" agnostics and atheists, and separate themselves from creationists. If they\'re genuine Christians, knowing about the warnings in the Bible about false teachings, how can they be comfortable with that?Miller laments in several places throughout the book that atheists use evolution as a weapon against religion, and that it shouldn\'t be that way - that it causes more strife between the two than should exist. ' +p5449 +aS"Well, it showed how it was physically possible to generate amino acids from inorganic material. That's rather impressive. Again, irrelevant and unrelated to the Scientific theory of Evolution, regardless of you trying to create that association. Your continued attempt at doing so despite having been shown and told multiple times that the two are unrelated, well that only shows one thing, namely that you are dishonest." +p5450 +aS"Oh shut up! You're just sore because your side lost in the McDonald case and now you're left with absolutely nothing. You know that many gun laws are going to fall to the sword of justice, and you just can't stand the fact that your side is going to be brought back into check, just like any other." +p5451 +aS'The big bang, life from non-life, the progression of life from the simple to the complex, just to name a few. None of these can be proved (even on the balance of probabilities) to be true by operations science. All of these contradict scientific observations of the present. As a result, you must take them by purely blind faith.' +p5452 +aS'I suspect that you are thinking of birds. But early birds had fingered claws on those wings. It is generally true that no organ ever springs into existance completely developed where nothing existed before. The wings of bats, birds, and pterodactyls are merely the modified fore-limb of a tetrapod. There is evidence that insect wings may have arisen from some sort of thermal panel. And of course, size has considerable relevance to flight. Wingless spiders fly by spinning a loop of silk that is carried by the moving air. Very small insects require almost no wings to fly. What they do is more similar to a whale in water than a bird in air. If by chance, a small animal is upsized because of a competetive advantage, and the wings are too, then it becomes a larger flying animal.' +p5453 +aS'The tactics pro-lifers use make the Nazis look like the little league. I mean, seriously. The reason we are dealing with terrorism is because women have the right to the abortion procedure. Wow. Please give me one way those two things relate to each other.' +p5454 +aS"I'm talking about the woman, of course. The fetus does not have a positive right to suck nutrients out of the woman's body against her will." +p5455 +aS"Well, not completely, but yes, quite the same. However, this is irrelivent- she wasn't a person, because she was in a coma. Does that give me the right to kill her? Of course not! What about fetuses born in comas? Can we kill them? What about people in vegetative states? After all, they arn't perfect, so let's kill them!" +p5456 +aS'So what?? Who cares what the number of assumptions are? What we care about is whether the idea is correct. And to determine whether it is correct, you have to have data, not counting assumptions.' +p5457 +aS"Well I'm not arguing that this is adaptation...I have never said that.. What I am saying is the environment -- in this case diet is the cause for these traits to emerge in offspring.....but like I said earlier ToE does not admit that the diet or any enviornmental variable can influence traits in offspring. Traits are dictated by genes and genes are closed off from the enviornment. This is the basic dogma of Weismann's barrier. I'm not necessarily calling this evolution....I'm just simply pointing out that acquired traits can be inherited. There is no other way to describe this other than Lamarckism. Do you disagree that The inheritance of acquired characteristics is simply changes in physiology acquired over the life of an organism that are transmitted to offspring?" +p5458 +aS"What laws are these that you speak of? Kindly provide the bill name and number so you have some actual proof and aren't simply parroting from the fear-mongering Brady Campaign and Violence Policy Center.During World War II the American people rounded up Japanese-Americans and herded them into concentration camps because you were at war with the people of Japan and thought that they were the sleeping enemy even though they had no proof. What you're speaking of is no different than this.The way I see it Brady, your hatred for guns and gun owners is so overwhelming and logic defying, that you'd be perfectly alright with unleashing a life-ending pandemic plague on the people of earth if you believed it would put an end to all gun owners everywhere." +p5459 +aS'Dealt with. Wolves and dogs share a genus, not a species. Along with coyotes and jackels. See above for lots of transitionals, also.' +p5460 +aS'Now everyone will know Marc was right all along--that there is an atheist science conspiracy.' +p5461 +aS"How right you are to,and given the forum here, make it a crime to own to own a gun,well I think most of us are automatically criminals.It's like the signs you see...SHOPLIFTERS WILL BE PROSECUTED!lot a good they do.emoticonXBanghead,yeah know matter how illegal their will be crime." +p5462 +aS'You hear that cry...allowing gays to marry will cause the downfall of civilization...but you never hear "how" or "why"? More Chicken Little ####.' +p5463 +aS"So you refuse to engage in an informal debate on the topic, but you all of a sudden are itchin' for a formal debate? How about you make the challenge?" +p5464 +aS'That is a nice little pistol with lots of smack for only 11 onces. Also, I like DA automatics.' +p5465 +aS"The issue of whether or not gay marriage is a 'human' / 'civil' right is begging the question ..." +p5466 +aS"It isn't offered to make that assertion at all. It is offered to show that God values the life of the unborn if He will demand that a man responsible for causing its death in the womb be held accountable by paying the ultimate price." +p5467 +aS"Well, I didn't really mean to go that far. But I'm talking about problems like that all worked out, thought about previously, and that the problem was worked out. I'm talking more about, what if you could make laborers stronger, scientists smarter, and rid us of physical and mental abnormalities ( such as down syndrome, narcolepsy, etc.). I don't think of making everyone the same for that reason. I'm just saying, what if there was a way to better society without going overboard? If the problems were worked out, which I'm sure they will be, what would your moral view on it be?" +p5468 +aS'I suggested nothing. You are reading into this some thing that is absent. "The nurse then informed me, if I had answered yes to any of the questions, I would have lost my concealed carry permit as it would have gone into my medical records and the VA would have reported it to Homeland Security. Looks like they are going after us vets."' +p5469 +aS'But even worse, even if there were some unknown mechanism to cause such movement, it would generate heat. The heat generated by the creation of the mountains of the world would be more than enough to reduce the entire surface to molten lava. Add to that the fact that the condensation of the "vapor canopy" would release enough heat to boil all of the water on earth. ' +p5470 +aS'Oh no, I completely hit the point and exposed it for what it is. Your continuing to compare the ID concept to a flat earth belief proves my point even more. That and the fact that you referred to the flying spaghetti monster seven times in your last post.' +p5471 +aS'Well, "reasonable" is clearly subjective... So the authors of the letter are practicly saying that any gun laws not interfering with the state militia would be permited according to the second amendment. But that gun laws obviously should be reasonable. But what reasonable is, is best left to the democratic will of the people. Or am I reading it wrong?' +p5472 +aS"In case you were wondering, no one here has missed the fact that you're trying to divert attention from the real issues by beating one minor issue into the ground." +p5473 +aS"Actually, my wife and I discuss evolution all the time. She's an evolutionary biologist. She did feel as if she had some duty to watch the show, just to stay on top of the sorts of things being said. She just has a low tolerance for willful stupidity. Which I totally understand. :)" +p5474 +aS'No Ted Kennedy is not a fundie but Vitter is. For God sake the pope is a nazi and a fundie.Marlene Elwell, the nazi *itch, who put the evil mariage amendment on the michigan ballot is a Roman Catholic also. If you are a christian and you believe in the suppression of homosexuality then you are a fundie and a christianist.' +p5475 +aS'Even new Justice Sotomayor, who claimed she ruled by precedent will be bound by the Heller Decision if she remains true to her purported philosophy. The debate between Sui Juris and Res Judicia should no longer be an issue with the liberals on this RIGHT! It either applies to all or it applies to none which would result as Justice W.O. Douglas wrote: "a revolution". It is in the government\'s (federal especially) best interests to keep our soldiers employed in foreign countries. BTW, I think the court decision in Nunn vs. State of Georgia did the best summation of this right!' +p5476 +aS"Your claim is not supported in the least. If we look to the landmark abortion case Roe v. Wade, we find that it was not women seeking abortions that were punished, but the people who procured the abortion that were. It would be the same if abortion were again made illegal. To prove this, we need only to look at a recent abortion regulatory statute: the Partial Birth Abortion Ban Act. Needless to say, there are far less doctors who perform abortions than there are women who seek them, and because it was not a problem executing abortion law prior to 1973, it likewise won't be a problem executing abortion law should abortion be made illegal again." +p5477 +aS"If guns laws don't affect criminals then how do you explain the low rates of criminal gun use in nations like the UK?" +p5478 +aS"So it is claimed. Tiahrt Amendment Facts | ProtectPolice.org I've noticed a pattern. Pro-gun activists give lip service to the idea of enforcing the law and catching the bad guys while supporting legislation that actually makes it harder for law enforcement to do so. They send a mixed message. It's happened before such as when the NRA has lobbied Congress to reduce the budget of the ATF. How can reducing the budget of law enforcement help them do their job better? It gives us a clue to what the gun lobby's true motives are. Truly disturbing." +p5479 +aS"You were crowing a bit. What I don't understand is why. How could you possibly be pleased by some strangers religious views. Would you have been pleased if he switched to liking broccoli? (Or disliking as the case may be)" +p5480 +aS'Were they able to show a previously non-existing code that mutated on a gene somewhere and created this new enzyme activity? It sounds to me that this "new" enzymatic activity came from non-coding dna switching on a gene to produce it. That is what one would expect to find. ...*Two new enzyme activities, 6-aminohexanoate cyclic dimer hydrolase and 6-aminohexanoate dimer hydrolase, were detected inthe adapted strains.*... ' +p5481 +aS'This is actually humorous coming from you who has absolutely no concept that you are a spiritual being, or the extra dimension of yourself which that reality means to you. In other words antonia, It is the epitome of self deceit to lie to oneself about who they are. And you define that darkness which is the great lie you represent so completely.' +p5482 +aS"And we know this how? You complain about the 90% figure being erroneous and then make an unsupported statement like this?Furthermore, if Mexico is making an earnest attempt to smash the cartels and we're financing it in part, wouldn't we want to help reduce the weapons traffic flowing south into the cartel's arsenals?" +p5483 +aS'Well, it seems pretty evident that you have know idea of the meaning of the word theory when used in science.' +p5484 +aS'Actually, it is a mutation. Just like the color of the fur is a mutation. Polar bear fur is not white, it is colorless. Moreover, it is hollow. That is another mutation. And Polar bears have longer legs than their closest relatives, the brown bears. They have smaller ears. None of the changes are caused by "friction".By the way, the webs between the toes of a Polar bear are very much like the webs between the toes of a duck.Adaptation is, by the way, evolution. I presume that is the word you meant to use. Adaptation is not adaption. You talk about the process as if it were adaption and then call it adaptation. In reality it is adaptation.' +p5485 +aS'No it means that the genome operates in a more complex way than was previously believed. It does not mean that "life is irreducibly complex" since that term is not even sufficiently well defined to test the assertion. And given the scattering of information into many pieces I would say that more and more it looks like "pieces that happen to be fitted together". More and more like a complex kludge. Exactly what one might expect to find in an evolved system rather than a designed or deliberate or intentional one!' +p5486 +aS"It's been reported in the Telegraph as well as several other news outlets. Want to slander them as well or do you want to try to disprove their story based on its content. I suggest the former, because the University has already confirmed the authenticity of the e-mails and documents. emoticonXRolleyes" +p5487 +aS'Well survival of the fittest was not Darwins term- although he may of used it it the later editions of the Origin. The phase was actually coined by Herbert Spencer in 1851.Weiner could be forgiven for his statement- if he had read the first edition of the Origin (regarded as being the best version as it contains no responses to critiscsms that were levelled at the preceeding editions) he would not have come across it under Darwins name.It is moot really, as natural selection is the term that is used in this context today.' +p5488 +aS"I think the currently popular belief is that time itself is limited. Space, time, energy, matter and laws all came into existence together. Of course that's impossible for us to envisage...." +p5489 +aS"You don't beleive that it is possible to do something wrong to prevent a larger number of wrongs in the future? Do you think the ends can ever justify the means?" +p5490 +aS"No you haven't. You expressed your opinion but refuted nothing." +p5491 +aS"Again, it's not just 'evidence' but 'evidence constructed into a workable theory'." +p5492 +aS'And yet this is what they fossil record shows. There is alot of information floating around on the uses of feathers for insulation, hunting techniques, display etc before flight.Half a feather might not be as good for flight as a "fully developed" one, but dinosaurs had them and they probably were able to glide, albeit poorly, with them. Even less of a feather might shade a pool of water to allow them to spot small fish or for display to attract a potential mate. To say they were "totally useless", is simply false. Evolution works on adapting already functional structures for different functions.' +p5493 +aS"I don't see why it is so hard to accept he lied. He lost is award and lost his job over his data." +p5494 +aS"Do you mean someone who was wrong? I asked you before to give an example of where Newton found empirical evidence of God. You failed to do so. I suspect that you can't." +p5495 +aS'I see a subtle distinction here. Creationism is concerned with the spiritual origins of people. "Evolutionism" is entirely concerned with explaining the nature and history of the physical world. The conflict of opinion arises out of the importance of the detail- can Genesis be accepted as a parable which contains a fundemental truth or must it be taken as a historical account?' +p5496 +aS'You answered the first one already... it is a \'cartoon\'. It showed that just as one was out-lawed, the other was born. You decide what to believe from this.By the way..."Lockheed Martin is a global leader in the design, development and production of missiles and missile defense solutions for the United States and its allies around the world. The goal: Defend against attacks by ballistic missiles, cruise missiles and other airborne threats."http://www.lockheedmartin.com/wms/fi...=0&ti=0&sc=400' +p5497 +aS'Oh never mind that such a condition would be toxic...not to mention that no ice cores support such magical ideas.' +p5498 +aS"I'm not moving the goal posts, this is just your attempt at intellectual dishonesty. Heller was about an individual right protected in the Constitution, Dred Scott wasn't. Therefore these two cases aren't comparable anymore than cotton candy and scrap metal." +p5499 +aS'And what evidence do you have that having two gay parents would confuse a child about weahter they should be gay? Did you know that the same percentage of children that were brought up by gay couples turn out to be gay as children who are brought up by straight couples? I would say that destroys your conception that the kid would be confused.I know a number of people who were brought up by commited gay couples (admittedly not many), and not one of the ones I know turned out to be gay.' +p5500 +aS"One shouldn't assume ignorance on the part of creationists. That is a mistake that too many evolutionists make. In the real world, we have people willing to say things they already know isn't true. Why should creationists be any different? After all, they are people, too. But rather than accept that fact, evolutionists argue that creationists are ignorant of a subject when, in reality, they (creationists) were simply telling lies." +p5501 +aS'So Minnesota is the one state Ohioprof was referring to?' +p5502 +aS"Well, all I can say then is that no action is just about as bad as failed action, and IS as bad in terms of anything current. Either way you don't have gay marriage. You have a majority in Congress right now, and you're not demanding much change just because of fear of backlash? Yeah, there would be backlash. Heck, the Civil War was the ultimate backlash, but that didn't stop abolitionists from demanding more than TOKEN change, and it's a good thing they did. It's your gig, though, so do what you want. I don't see much point in laboring this discussion any more; I'm just pointing out my observations." +p5503 +aS'When was the last mass murder at a UK university then?' +p5504 +aS"Atheism doesn't have that standard because it's not that encompassing a thought. All athiesm is, is a lack of theism, period. It says nothing about morals or ethics. Your typical athiest, though, looks within to find what's moral or ethical and it usually just stems from what's acceptable behavior within the human species. This is also where religion gets its morality and ethics. But times change, and eating shellfish won't kill you, and eating meat on friday won't make the farmers go broke, so the morals and ethics change to fit the society." +p5505 +aS'But Miller is with Jesus (and by extension, you): he says that God exists and that Christianity is true. Or, if you insist that he\'s against you, you\'re left with this conundrum: You call Miller and theistic evolutionists incorrect, and he calls you and anti-evolutionists incorrect; why is your position any more logical than his?Regarding your citation about atheists using evolutionary findings to support their concepts, you omit the remainder of the paragraph. Shame on you, marc, for your quote mine. Miller clearly continues with "philosophical pronouncements" that many atheists do not forward. Over the following three paragraphs, he examines a single philosophical insinuation -- not a plethora of them -- and then moves beyond "atheistic philosophical pronouncements."' +p5506 +aS"Actually there are already a couple floating around. One fascinating one: Gaia theory and the Daisyworld model. It's all around self-organising systems and the earth as a self-regulating system/organsism/something or other. James Lovelock and co. Interesting to read but sometimes feels a little too 'lets-all-just-get-along' to be real, hard-core theory. Either way, it's probably a lot more likely to be accepted than creationism, should evolutionism for some reason be disproved." +p5507 +aS"Quite frankly, you don't know squat about me. So stop trying to pretend you do.I have gone on record to say I think Christianity does a lot of good in the world.I have even tried to correct Matthew in his anti-Christian tirades. (Until I gave up realizing it would do no good... emoticonXFrazzled )I hate to break it to you, but the WORLD typically functions with people putting out negative news.You hear about how Joe XXXX broke the law.Do you ever hear about how Johnny Atlas keeps the law?emoticonXFrazzled" +p5508 +aS'Hmmm... He may get things right only when he thinks getting it right contradicts evolution...' +p5509 +aS'Falling, the fact that the homeschoolers you mentioned don\'t choose to socialize with you, doesn\'t mean they\'re not far more capable of functioning in the "REAL WORLD" than you might think. I would not choose to socialize with you in the "REAL WORLD", and you most likely would not choose to socialize with me, but that does not make me your social inferior!' +p5510 +aS'Because? The conventional big bang is just as unlikely as God. Therefore your claim is wrong. However the current believe mainly among physicists and astronomers is that there is no end and there is no beginning to the universe. Expansionary theories along with contractionary theories that are being observed have led many to believe that the current universe was born from the death of the last universe. There is no end and there is no beginning. You are out of your league.' +p5511 +aS'You are very right. We too will have to pay tax on the insurance for me. Not fair.' +p5512 +aS"There is no need for prey animals to grow a third or forth eye as a defense mechanism. Binocular vision works. Its balanced and can render 3d positioning in the mind accurately. The lizard that you mentioned is born with a spot sensitive to light which helps the body absorb vitamin d, as humans do due to skin that is light-sensitive to a certain extent. It isn't an eye for defending against predators, and it doesn't need one. As for insects, the fact that they've survived for such a long time goes to show that they have adapted adequately and are doing well. Have you tried sneaking up on a fly lately?" +p5513 +aS'I think perhaps you\'re confused.1. I know of no meaningful definion of the term "god\' as it pertains to reality.2. When you mention science and history, that implies you are interested in reality.3. There is no evidence to support mythological deities, god or God or Odin or the easter bunny.* So, yes THERE IS NO EVIDENCE of the existence of any mytholgoical gods.** Yes, there is no evidence that the universe was created, or if that statement even has meaning if the universe always was, and always will be.p.s. There is easter bunny.-Mach' +p5514 +aS'Well that may be your contention, but medically that is not necessarily true. Maybe being gay doesn\'t mean you are suicidal or depressed, but there is more of it going on in the gay life than in the hetero. That in itself is a wake up call. Depression and suicide are harmful, even if it doesn\'t touch you personally. If it were as simple as you say the APA wouldn\'t be re-evaluating "reorientation therapies" would they and with positive critiques too. You wouldn\'t have prominent gay activists like Camile Paglia deriding the gay community for being malcontent when those unhappy with being gay seek and desire the way to be hetero.' +p5515 +aS'Yet according to PP themselves, they provide FAR more abortions and EC services than any of their other services. :PPPFA Services (2002-2003)Surgical abortions: 227,385 Emergency contraception: 633,756 Prenatal care: 15,860 Adoption referrals: 1,963 (Source: www.plannedparenthood.org)' +p5516 +aS"No I shouldn't be fighting against abiogenesis, I'm for unrestricted freedom to explore it all!" +p5517 +aS"Actually I didn't even read it (and doubt I ever will). Don't get all worked up over it." +p5518 +aS'So what you are saying is simply that the genes do not actively control the body.What is wrong with assuming that genes therefore do not control the body is the fact that the genes were the blueprint for the body. The genes decided the arrangement of cells, the number of fingers, etc.The body, the cells, and the organelles within the cells are therefore strongly influenced by the DNA sequence.' +p5519 +aS'Why didn\'t they "fire" and "bar" him in the sixties?' +p5520 +aS'Actually, creation explains nothing. Evolution is an observation that is explained by theories that explain why populations of animals change. One explanation is the theory of natural selection.' +p5521 +aS"it can't always be cared by anyone. What if no one wants the baby or you can't get to a place where you can give the baby up (maybe snowed in for a week). Can you kill the baby then because it is now dependent on you." +p5522 +aS"Well of course it's about petitions that would lead to amendments. What else would it be about? Nevertheless it is still a voting process. That's how amendments are done. What I'm asking is, does this bill mean that ANY issue that could come up as an amendment would be illegal? And if not, (the more important question) how would they determine what constitutes civil rights. (Which you didn't answer, but rather basically said 'I don't know but rest assured they do' (to paraphrase). Get it now? Anyway, on further review, I believe that the bills only apply to whatever falls under the catagory of 'civil rights', however the heck that is to be determined! emoticonXDonno " +p5523 +aS'Too late, drug usage has already created those epidemics. Legalizing drugs may increase some of them temporarily, but they already exist. I would argue that there would be a decrease in crime, for certain.' +p5524 +aS'Not at all. The theory of evolution contains many many things.' +p5525 +aS'Evolutionary scientists is a confusing term. A geochronologist might work out an age for a lava sample for example. Astronomers have also made comment on the age of the earth as have paleontologists studying certain fossils.So why would no flood make radiometric much more likely to accurate as you say? Can we hear some specific detail on this as it is kinda significant to backing you your assumption.' +p5526 +aS'But the sea and sky are the same regardless. I would say the sailor conceives the information with language. He infers the information with language.' +p5527 +aS'And like the police , the Navy could plan and execute raids.' +p5528 +aS'Your statment is like saying we evented 2+2= 4. We did not envent it, it aways existed. Same with logic, its a concept that exists apart from the meterial universe. But in the atheists worldview, only the meterial universe exists.' +p5529 +aS"See above. Nothing has been demonstrated that convinces me that God has been ruled out of all these issues. He probably isn't active in all situations, but there's nothing that says he (or even Satan) are totally inconsequential either." +p5530 +aS'Homo-erectus and Neandertals had different bone structures. How could they be fully human when their anatomy is fundementally different?' +p5531 +aS"A little of both. Japan is known for allowing its police officers to physically and mentally torture suspects and deny them legal counsel if they determine that such counsel will interfere with their interrogation. Suspects aren't allowed to read confessions before signing them either.Is that what Penfold really wants?" +p5532 +aS'BUt it comes down to gay people being harmed by not being allowed to marry. Any time a group is excluded because of someone elses religious beliefs that group is harmed.' +p5533 +aS'The process of evolution has no scientifically known teleology and follows no known predestined plan. It does not teach that there cannot be any such things as teleology or forethought. This is where your mistake lies.' +p5534 +aS"No-one experiences the existence of an outside world. Explanations such as the Matrix can explain sense impressions as well as some concept of 'external reality'. We have no more evidence for one than the other.The fact no-one takes them seriously is a psychological point about human beings, nothing to do with reality per se." +p5535 +aS'Recent comparisons between the complete chimp genome and the human genome have found that possibly fewer than 3 million nucleotide differences exist in functional DNA.' +p5536 +aS"Actually, the fossil record does support it. Both Eldredge and Gould have discussed it. Both men made observations of slow gradual speciation in the fossil record in a small geographical area. These changes were reflected at other locations as an abrupt change from one species to another. But given that such changes take place very quickly in populations that are usually under environmental stress and isolated from the main population, and given the rarity of fossilization in the first place, we don't expect to find many examples in the fossil record. It is a bit like trying to time a 100 yd. dash with a sundial. The fossil record just isn't fine grained enough to see the rapid (50-60 thousand years) changes." +p5537 +aS"The VAST majority of abortions are performed within the first trimester. When they are performed in the second trimester it's a serious procedure for the mother to go through, and is something she obviously wouldn't go into lightly. Her reasons for choosing an abortion as late as that would have to far outweigh anything else, and she would need consent from two doctors to go ahead with it. Basically what I'm trying to say is something like the foetus being developed enough to feel pain would not change the mind of a woman who had just found out she was pregnant and she'd been raped, or was going through something you can't understand. For an abortion that late she'd have to deliver the foetus anyway, which is traumatising enough. " +p5538 +aS"Just as soon as peddler's cheek stops stinging and he picks the glove up..." +p5539 +aS"So were the officers on the front lines of the Mumbai massacre. But they didn't shoot back, they hid like cowards. They let people get killed for no good reason." +p5540 +aS'So what is being monitored by the ribosome? Information. Material representations (amino acid sequence vs DNA sequence) of information. But, it does not only monitor it, it manipulates it as a means to an end... fidelity.' +p5541 +aS"Well, there is now string theory, which has grown into M-theory, which may have a rational answer (at least a mathematical one). But calling it a theory is really a misnomer. It's more like a hypothetical model.But, do you have a rational explanation for the Big Bang?Or do you think that the Big Bang didn't happen?" +p5542 +aS'Actually I\'m so sure of my manhood that even though I knew that charge would be levelled against me I still posted anyway. Anyway if you feel that men need to be degraded to make up for past actions to women you have gone from "righteous" to bitter.' +p5543 +aS'Nope. And since the melanic form is the dominant allele, your point is moot.' +p5544 +aS'So the intent hiding behind abortion laws all along was to keep women in the gutter. There was not any legititamte concern for the unborn fetus. It was all about how they could keep women down. Tell me then, would someone who supports a ban on partial birth abortion do so simply because they want to repress women?' +p5545 +aS'GREED but what you fail to admit is that that standard of living comes at a price for someone.' +p5546 +aS'think of it as a photocopy of a check for a million dollars. yes the copy is in the image and likeness of the original check, but it is not the check. you cannot cash the photocopy, regardless of how accurate the copy is, it is not the check, only an image of it. that doesn\'t mean anything is "wrong" with the original, and it doesnt mean that the copy has to have all the properties and function of the original. its just an image' +p5547 +aS'My life was a gift from my parents, no more, no less. When i look in the mirror, i do not see an embryo. If someone gives you something, they have every right to take it away if they feel you are not suited to handle it, or if they had second thoughts. I would think this was ok if the baby was stopped in an earlier stage, but once its in its third trimester, you have no right to kill it.' +p5548 +aS"Sucide? Isn't that a mental health issue? If you take a gun from a sucidal and depressed person, does that cure depression? If it does that you have addressed the root cause of sucide. If it does not than you really have not done anything to cure the fundamental cause of sucide." +p5549 +aS'Yes, it is interesting how we draw an arbitary "legal line in the sand" with regards to determining how late into a pregnancy an elective abortion is available.' +p5550 +aS'I think bringing "emotions" into the question of whether God exists or not tends to cloud the issue a bit.Isn\'t the essence of atheism a rational enquiry which concludes that in the absence of any credible evidence, there is no reason to believe in God ? An emotional attachment to "non-belief" would be irrelevant (and irrational).' +p5551 +aS"I don't see anyone without healthcare. None of my friends, none of my family, none of my neighbors. ZILCH. NADA. NAUGHT. CIPHER. Now I don't go wandering around the inner cities looking for half-crazy winos and crack addicts either, so maybe that's why." +p5552 +aS'pro-choice is only pro child if the choice is not abortion and they are only pro family when the choice for family. So really pro choice can be pro child or anti child and pro family or anti family.' +p5553 +aS'I\'m sure the racist white segregationists after Plessey thought exactly as you do now, "That settles the matter."Little Louise Brown had a big SURPRISE!!! for them.You still have not walked upon the thin ice of the "well regulated" wording, we note.' +p5554 +aS'The only person who can take away your sin is God. No human can ever cleanse himself of his sins, so get over it.' +p5555 +aS"And that part of the decision (not allowing for the woman's health to be taken into account) is why I do not agree with nor do applaud this decision (in fact I am rather disgusted with it). If you'd like to see a more concise view from me, you can see the thread that Another_opinion started here: http://www.4forums.com/political/abortion-debates/9678-mothers-health-exception-where-do-we-draw-line.html" +p5556 +aS'The egyptians predicted his birth, death, WWI, WWII, and they have predict the supposed end of the world. Are you saying that this religion was wrong? They predicted a lot more that I have not put that have come true.' +p5557 +aS"I know ... I know. I agree with you that it's sad more of those people couldn't or didn't take advantage of concealed carry to help prevent so many deaths. That needs to change along with education so more people can defend themselves." +p5558 +aS"Actually, that's not true. While all of the sciences actually support one another, one can be a chemist and not accept evolution. One can even do good science without accepting evolution, but it is difficult. For example, cosmology, astrophysics and astronomy see a very old universe. That's not compatible with young earth creationism. Geology finds an old earth, wich isn't compatible with the mythologies of sacred writings. But that is not to say that one cannot be a qualified scientist and a deist or a theist. There are lots of good Christian scientists who accept evolution." +p5559 +aS"Actually JP so far 5 states have passed gay marriage so no not every time it is put to a vote do we lose.And how am I forcing anyone to accept gay marriage? Am I forcing these voters to attend my wedding or dare I say be in a marriage themselves?And I cannot agree with you more about changing the image of the gay community as a whole.. We are not all a bunch of promiscuous sex crazed people running around...What I find funny is once strait people find out how boring we really are, and how we pay taxes just like every other joe schmo they'll think nothing more of special rights lol...But actually like I stated earlier in another thread if those unions constituted the same legal rights as married couples I would be content." +p5560 +aS'Could you perhaps define "teleology" as you understand it and say why you believe there is teleology in the universe?' +p5561 +aS'I think your idea has merit. However, before I would fully endorse it, I am interested in how you see it being implemented and administered from the standpoint of equal protection under the law.' +p5562 +aS'I know what you mean. You should see some of the other "books" he has at his site as well.Well, now we know that Muslim creationists are even nuttier than Christian creationists, but both still use the same twisted ideas and concepts to justify their pseudo-science of creationism (Read: Religious beliefs). ;)' +p5563 +aS"Ok, now I'd like to know why Lappster thinks evolution has anything to do with morality? Do you actually know what evolution is Lappster?" +p5564 +aS"Actually, this guy was an ex-con. It's illegal for a convicted felon to own firearms. Galileo actually helped us more than he helped you. This proves once again that criminals will always refuse to surrender their weapons." +p5565 +aS"And an even funnier thing is it won't affect his wallet at all." +p5566 +aS'I know that. I asked those questions to show how dumb and ridiculous unkerpaulies question was - took it to other examples where such a question is obviously ridiculous to illustrate the ridiculousness of his question.' +p5567 +aS'To be more accurate, (not something noted amongst the pro-gun rabble) the right of protestants to have arms for their defence against catholics.I think we\'ve all seen quite enough of this "defence" in Northern Ireland. (assuming that yanks can locate the place with a map emoticonXRolleyes )' +p5568 +aS"How is that conclusion derived at? The passage is speaking to the consequences to a man who's actions cause the death of an unborn child. And the proscribed consequence is death according to OT Law. So although the passage isn't speaking to abortion at all, it is making a very clear statement regarding the value of the unborn, as it is requiring a life for a life just as for any other sentient being according to the OT Law. So these arguments I get from the likes of you and Iangb which argue that until a child shows mental awareness, it isn't actually a person deserving of human rights is a bogus and shortsighted position according to the scriptural point of view. Of that, there is no question." +p5569 +aS'BWAAAAAAAHAHAHAHAHAHAHAH![/QUOTE]So you are saying that my DNA reflects the fact that I live in Texas?' +p5570 +aS'What\'s "cumulative selection?" Do you mean a series of mutations with small but beneficial influence that occur over the period of thousands or millions of years? Just how do you propose to observe such mutations? In fact, we can observe such mutations by comparing the genomes of related species.' +p5571 +aS"You bring up a very interesting point. All those state level marriage amendments which were voted on also made civil unions illegal as well. When polled, residents in those areas were actually unaware that the amendments also outlawed civil unions. So, not only are the anti's disingenuous as far as what they promoted, but were so in HOW these amendments were promoted." +p5572 +aS'Because we view it as something much more than just a gravy train from the govt., that\'s why.For you it seems to be about the word, and the govt. saying "oh, you use THAT term ("marriage"), ok we recognize it." For us it\'s about the commitment.' +p5573 +aS'Well yes, but thats not what DEFECTIVE GULO indicates. If one has external sources of vitamin C, GULO can mutate to be inactive without causing a problem, and once inactive the inactive gene can be inherited without causing problems so long as vitamin C intake is high enough. An inactive GULO indicates that the species has external sources of vitamin C which is essential to many metabolic processes.' +p5574 +aS'You are missing the entire point (again). Why do you feel ashamed? Because you know that what you did is bad. I have heard from a great Australian war hero, one of our remaining ANZACs soliders (recently passed away I think) that we he stabbed the enemy soldier with the spike thing on the end of their gun (WWI era) and he saw him die that it was "the worst feeling that a human can possibly endure". He said that that image will haunt him for the rest of his life. He knows that he did something wrong, but it was a war, and unfortuantely that kind of thing will happen. You are way off the plot. But let us continue.' +p5575 +aS'They are not exactly the same. See the examples above. It is not random.' +p5576 +aS"I agree it's a threat to us but the point is whether it's really caused by increaing amount of carbon dioxide and how big the threat is.Maybe global warming is just a part of process of global climate change which occured several times long time ago, ie, ice age things like that.As far as I know, global warming is one of the catastrophe which leads to extinction of human beings. However, there might be another problems which are also big threat to us and all creatures on the earth.Anyway, I'm not an expert of environment, so I might be wrong but at least I can say it seems there are some bad effetcts of global warming such as rising sea level, abnormal climate pattern, things like that.We should do something, which might not be appropriate way to solve the problem but it's surely the beginning." +p5577 +aS"Well, the slavery analogy for gay rights is past it's applicability at this point--one was a property issue (also rooted in deep prejudice), the other is a morality issue. Many people oppose gay marriage out of morality and NOT prejudice. The same can't be said for slavery. There are many ways that the analogy doesn't work and that's just one of them. In fact, it could as easily be an analogy to reverse it and say that the ones who did the enslaving were analogous to gay rights lobbyists and the abolitionists were analogous to those who seek to protect marriage. After all, the plantation owners were the ones really fighting for ill-conceived rights--rights that they shouldn't have had. " +p5578 +aS"Funny. That's not what the articles say. All of the articles pretty much concentrate on the research as significant in support of the dinosaur/bird link. If you had been paying attention, you would have been aware that it had been previously established through other tests that protein remnants were present. Thus, the amazement that protein remnants so old had been found had already passed." +p5579 +aS'I have noticed he seems content to drop a Ad Hominem neglecting to actually argue.' +p5580 +aS'Again, they must be alive. Previously, you submitted that there are many problems with society and life or whatever. Could it be that some people might be able to survive those problems? Could it be that those survivors would be the ones to reproduce?' +p5581 +aS"Nope. Frame-shifts move the whole code down one step, making entirely new genes. Often, this is disastrous, but sometimes, a useful new enzyme results.Barbarian observes:It's remarkable then, how much progress we've made. You may or may not approve of the theory, but it works very well at learning more about biology.And, as you may have noticed, we've been very successful at interpreting the data. We've learned to do a lot of things as a result. One of the most important reasons scientists accept the theory is that it works." +p5582 +aS"And what exactly am i granting to the suit-wearing politicians in washington by giving them the right to revoke her ability to make these decisions for herself? I don't think dictatorship is the right word, since she is not asking for the power over anyone but herself, and her child. Would you call a man dying of inoperable cancer who decides to end his chemotherapy a dictator? Or a parent who decides to remove their child from life-support?Would you rather it be a democracy? That everytime a woman is faed with this predicament, we put it to a vote? How about an oligarchy- where her situation is put in front of some committee who decides her fate?" +p5583 +aS'And yet, even though creationists ask for detailed lists of every creature in transition over a period of several million years, I have never found a single creationist who can trace his ancestors back to Adam, a period of only about 6,000 years. The best I can do is to trace my ancestors back to the 1600s.' +p5584 +aS"Oh? They're trained to deal with irate exhusbands who are stabbing their wives and dousing them in gasoline, in broad daylight, in the middle of a busy parking lot? They're trained to deal with that specific kind of #### every single day?" +p5585 +aS'Yes, but gays would also want laws changed to accomodate THEIR form of marriage as well. The fact that one requires less change than the other shouldn\'t matter, should it? Should having to do more reworking of laws and more paperwork hinder the pursuit of equality? It seems to me your argument boils down to "polygamy requires more work to make the laws accomodate it." Yeah--such is the price for marriage equality.Let\'s face it--if society really wanted to make marriage an open-ended institution of equality rather than for opposite-sex couples which comprise most relationships, they could pull it off--polygamy, gays, letting 17 year olds marry, etc. All those civil servants are there and can do it as directed as legislation is changed. Means could be set up to determine inheritance, for example. Laws can be worded to do it.' +p5586 +aS'Since when were proteins no longer structures? A basic freshmen tool for teaching is the phrase "structure defines function."' +p5587 +aS"Really? What a surprise! So tell me. If you don't know what it is or how it works, how do you know that you are opposed to it?" +p5588 +aS'Hardly any criminals go armed in England, and certainly not with guns. Burglars and muggers have enough sense to know that while getting done for burglary or mugging will not be pleasant, getting done for burglarly or mugging AND possession of a firearm will be far, far worse, assuming they survive the arrival of the armed response squad.' +p5589 +aS'I think the only valid reason for owning a gun is because you want to. Every person (with some exceptions) has the right to keep and bear arms, why you do it is your own business. Giving specific reasons for gun ownership is the top of a slippery slope towards banning certain firearms. While I have specific reasons for owning specific guns, to include hunting, I own some of my guns for no other reason than they are fun to shoot. A humorus side note: I own one gun strictly for fishing, sounds odd but its common practice (at least in Alaska) to shoot large Halibut before bringing them aboard.' +p5590 +aS'In my reading of the Declaration (and using the 1st. Amendment as a filter) it doesn\'t matter who or what the founders meant by "Creator." The conlusion is the same; regardless. Namely; The fact that the founders considered our basic rights to be inherrent.' +p5591 +aS'Actually we do not know who the first human to get AIDS was. Most likely it was an African who got it from a green monkey last I looked into the matter, most likely by eating the creature. You are perhaps referring to case zero, but thats only as far back as the chain can be traced, its not the first case in humans.' +p5592 +aS'and how do you know this......oh I see...you said "I think"....but you don\'t really "know" what most Americans favor or don\'t favor...you just "think"' +p5593 +aS"Just another example of using a verse meant for personal use and applying it to wars. Sorry, just doesn't work that way." +p5594 +aS"ZERO. I don't think he ####ed one African. Unless you can demonstrate otherwise, your statement is false." +p5595 +aS'What is incredible is that this is probably the most enlightened response I can expect from this crowd.' +p5596 +aS'In your first post. If you are to qualify that by stating I assert that reproduction is not an absolute requirement of life over the ontogeny of an individual then of course reproduction is not essential character of life.' +p5597 +aS'ummm... the death penalty has always been around. i never claimed that death was the penalty for every crime, nor that it was the most common punishment. try to catch up' +p5598 +aS'When is wealth redistributed on a whim? The NHS is one of the few good things to come out of WWII and is the mark of a fair society (if you ask me). Restricting health-care according to wealth is despotic....' +p5599 +aS"But it took a lot longer to develop. My point was that only after about 5000 years of human civilization did empiricism as science develop. Religion, supernaturalism, and mythology trace back into prehistory. What we know as science didn't even begin to exist until the late 1500s and 1600s. Before that it was OK to do science like Aristotle did - no experiment, only thinking about a logical answer. Thus, heavy objects fell faster than light ones and any fool could tell that the sun orbited the earth.But science is more than an inner way of thinking. It is a process and a method for learning about the universe. It is called methodological naturalism. That is not to say the science asserts that nothing exists except what is natural. It says that science can't study the supernatural." +p5600 +aS'Working on it. Apparently we are still waiting for to to be graded (it was really big, at leat 20 typed pages). I plan on buying from them when they get it back, and maybe putting up a whole page in honor of it. Partly because I think it is very telling, partly because I remember what it was like to be in college and get a little recognition for your work.' +p5601 +aS"If you think that it's OK when the Mother's life is in danger. Why wouldn't it be OK when her life isn't in danger?" +p5602 +aS'And those pillars will be replaced by something stronger like equality and Justice.' +p5603 +aS'This argument is self-defeating. A theory is not a fact, no matter how much evidence may support the theory. Bad wording. But again, if you claim something as a fact, you must have proof, verified in both your method of reasoning, and the reasoning utilized by the person you are proving the fact to.' +p5604 +aS"They do it on purpose, alright. But not because it'll be shot down -- in at least one state, the Supreme Court decided that similar legislation did not address more than one issue.The reason they put them together is that, in most states, a ban on civil unions would FAIL." +p5605 +aS'Strawman. The argument is not to do whatever one wishes with ones body. The argument is soley that one does not have to have another attached, ever, against ones will.' +p5606 +aS"They originally might have been an arbitrary guess, but experience of all humans always has given them a very high probability of being true (at least the existence of the outside world, the others are abstract logical concepts that don't have a physical reality, just an abstract one)." +p5607 +aS'Recent studies apparently show that pot is more harmful than you say. One joint is said to contain more carcinogens than four tobacco cigarettes.I doubt your 20,000 joints theory.You have a simplistic argument going for pot. I can\'t agree that legalizing all drugs would be a good thing either. Programs in Holland have failed to produce significant if any benefits to society in general. The druggies seem to have benefitted by having arrest-free drug zones and access to whatever they want, but the cost of drugs still requires some income, something that most of them likely do not have other than from crime, begging or social programs.One "benefit" I see from legalizing drugs is that the users could be more easily identified.' +p5608 +aS"The man seemed have a thing about prostitutes. I believe he felt it was his God-given destiny to punish them.Cybererratus is a very interesting persona. He manifests a number of very interesting character traits. I don't believe that he likes women very much. In fact, I am rather concerned about how Cybererratus feels about women.Andrea Yates was certifiably insane and her killing of her children had nothing to do with post partum depression.And, she is being punished. She is serving life in prison -- as is Mr. Ridgway.I also find the comparisons that Cybererratus makes to be morally troubling." +p5609 +aS"No, everyone should have those regardless of marriage. You're the one here who seems to think straight and gay marriage should be a litmus test for those things." +p5610 +aS'It has a financial impact on ALL taxpayers. To say that it has no impact on anyone else is disengenuous.' +p5611 +aS"Oh, boy... here you come with your anti-religious bigotry rhetoric, who mentioned one thing about religiosity? C'mon Simone... let's coddle those little bats of common sense back under the belfry of reason where they are supposed to roost... They didn't need laws against it back then because peopel had more human dignity and respect for human life... and they responded within the realm of decency and basic propriety. It is a shame we actually have to go there..." +p5612 +aS"Exactly and if you accept that animals have been on the Earth for millions of years then why can't evolution be a process that God created and controls?" +p5613 +aS"Actually, one. After the adoptions years ago, we hit the financial slump and had a suprise... The costs will extremely low. I've also been in discussion with numerous friends who've delivered, same story. Somehow, no matter how there is no money and no help, babies get born. And as I've said, there are plenty of organizations that will cover all costs finacially in cases of adoption." +p5614 +aS"It's possible that Archaeopteryx is not a direct descendant of modern birds but it's certainly not far from the line and it shares both avian and therepodian characteristics." +p5615 +aS"If that's truly what the organization says, then it's a hypocrite of an organization." +p5616 +aS'And from this we are to infer that Leakey doubts human evolution? There is by now a huge variety of fossil hominids. If Leakey was admitting that it was difficult to be certain which were or were not directly ancestral to modern humans, this is no more than scientific honesty.' +p5617 +aS'This is absurdity. I suppose then that medicine should wreak my body. How about viruses? Am I destroyed by them?' +p5618 +aS'So what is your point? Are you claiming that the tenets of christianity are in doubt because the several thousand denominations hold contradictory views? Science proceeds by challenges and contradictions. Contradiction in science is not evidence of doubt but evidence of a field of advance. In religion, it is without question, a matter of the veracity of the ultimate truth. Which of the thousands of christian faiths hold the truth?' +p5619 +aS'Well, at least accoreding to your "because I say so" belief. The woman, of course, don\'t need to pay attention to your desire to control her own body in bondage to your particular brand of outraged morality.' +p5620 +aS'Your XXX-umption that is a poor attempt to certify a false delimma has long been answered. How many people have been killed in Africa with short handled hoes and machetes? Nary a gun amoungst them.' +p5621 +aS'Well, what faults? You say that innocent people are sentenced to death far too often. Well, the death penalty does not sentence people, our judiciary system does. The death penalty is mearly a punishment. I will agree that some innocent people have been sent to death row, and when their innocence was discovered, they were released. A perfect judiciary system would not sentence innocent people, and would alleviate all problems with the death penalty. If we had a perfect system and no innocent person was ever sent to death row, we could take them directy from sentencing to a little room beside the courtroom containing a bed and a few drugs, put an IV in them, and carry out the sentence before the jurors got out of the courthouse. Of course, we know that our judiciary system is an imperfect thing, so we understand the need for appeals. ' +p5622 +aS'Actually, the Mormon seminaries aren\'t "on the grounds," although they may be on an adjacent, privately owned piece of property. It would be unconstitutional for the seminaries to be on property owned by the school district. The children go to the seminary on released-time, which has been found to be constitutional (although I don\'t see how).Pertinent decisions about religious instruction and schools are:McCollum v. Board of Education (333 U.S. 203)Zorach v. Clauson (343 U.S. 306)McCollum found that religious instruction on school property is unconstitutional, while Zorach found that "accommodating" religious instruction by releasing students from school for that purpose was not.' +p5623 +aS"Well then what the devil are you moaning about then? It's not like Browning shot King, or actually made the rifle that was used or anything like that. Hell it wasn't even a rifle made by the Browning company.There's absolutely no connection between the two for you to be bitching about." +p5624 +aS'Well, I can\'t speak for anyone else, but I support any choice that the woman wants to make. No, I don\'t support forced abortions anywhere, I don\'t support what\'s going on in China and India because they\'re still taking a choice away from the women.What I don\'t get is that many prolifers think that prochoicers are ONLY for the choice of abortion. All the prochoicers I know support any choice the woman feels right about making. For example, I was called a hypocrite because I\'m prochoice and pregnant. The person said "You\'re forcing others to abort while you carry to term." I have NEVER forced anyone to do anything, nor will I ever. I\'ve also never aborted...and many prolifers automatically assume that if one is prochoice they\'ve aborted.' +p5625 +aS"So?I look into the clouds and see a cow. Clouds aren't telling me to have a steak." +p5626 +aS'This joke is based on some reality, "the conquest of the North Pole is traditionally credited to Anglo-American Navy engineer Robert Edwin Peary, who claimed to have reached the Pole on April 6, 1909. Anyhow, not all jokes are completely true, how many stand up comedians have you heard??? If you were to nit pick every joke out there (being politicaly correct etc) there would be no jokes left!' +p5627 +aS'What would you know about fair and balanced?emoticonXCensoredI know a lot of truths about gays. Do you want me to start posting incessant threads pointing them all out?And I am the moderator for the formal debate forum, not the entire board. Want to debate me on the benefits of gays on society vs Christianity?' +p5628 +aS"Actually, if you look at the example I've given, that's false. The probability of A in one organism may be low, but the probability of A in some organism approaches 100% as the population and the number of generations gets larger. And if A is useful and comes to dominate the population, then the probability of an AB individual appearing then also tends towards 100%. In the example above, the chance of an AB mutant occurring, if A and B are substantially useful mutations, is almost a dead certainty. It would be amazing if they didn't stack. So saying that AB occurring is less likely than A is misleading at best, downright wrong at worst. Behe is clearly misapplying probability theory." +p5629 +aS'Actually Archie it was neither left nor right. he went after both democrat and republican and took a center tone to the entire issue at hand. Portraying the reality of the suffering of his hometown due to jobs leaving the US and the greed on wall street.' +p5630 +aS"That is what it said. Now your website gives a false translation to this. It clearly is talking about if the unborn is harmed.Not to mention the numerous other quotes I gave you about how a person (in the Christian faith) is formed before conception! This shows that God has already created you. God also talks about how you can't kill a person he created. This is an easy concept to follow.I suggest if you wish to learn what the Bible says you read it and not take what a biased website has to say. Religioustolerance.org is a joke that misleads people into making God what they want him to be." +p5631 +aS"I think you are the same person as usa all the way and again.. you have no right to talk about murder because you murder the english language everytime you post.And no.. the baby does not belong to god because there is no baby and I don't know if there is a god or not. Btw.. I'm not going to incubate something in my body because of you think it's wrong because someone who may or may not exist said so." +p5632 +aS'And I see you still flip back and fourth from being an atheist to not being an atheist.' +p5633 +aS'Those who set the rules can do with them as they please. It isn\'t illogical nor hypocritical. It IS illogical to assume you can chew gum if the rule is "you cant chew gum" and the teacher allows one student to chew gum.' +p5634 +aS"Pandion has already pointed out that this isn't a theory, it's a mode of wishful thinking. More damagingly, however, if you examine it for more than a moment it doesn't even fulfill the role you give it. You say 'many things in nature make no sense without God', but how do god's origins and nature make sense? Where did he/she/it spring from? All you do by invoking god as an 'explanation' is push the problems one step further back. The god hypothesis may look like an explanation, but it is not." +p5635 +aS"And here you reveal your prediliction for reading what you want to see into the words of others. I described materialism embracing new forces and phenomena which have withstood the rigors of the scientific method. I explicitly described science as a methodology, not a philosophy. You are wrong about me, WW, and the longer you pretend otherwise, the more time you're going to waste on strawmen and the more chances I'm going to get to make your arguments look silly. It's up to you. Argue with me, or argue with the person you want me to be." +p5636 +aS'oh yeahrubbish rubbish,scientifically speaking, human life (using a most bsic term) begins at conception. the twins exist as two seperate entities the moment each contains the individual human dna. seems to me you better be certain when it begins before you go around ending it. if you are driving at night an you "think" you might see a person ahead in the middle of the road you are hopefully not gonna drive over that person. Instead that uncertainty should lead you to stop. If you dont like that example, consider a hunter who is unsure what is in the bushes.' +p5637 +aS"Sounds pretty neat. I've never been there but I'll keep it in mind for a road trip some time.So you are of the belief that dinosaurs and man lived at the same time? I know that there are people who believe in this but I don't come across them very often. So what information do you have to share with us about this idea?" +p5638 +aS"Among other things, generally adaptions to a colder environment. As for your theory as a whole, doesn't the whole 15, 000 year gap between the extinction of the Neanderthalls and the development of farming (particularly the grains youre talking about)." +p5639 +aS"So when you're doing math, you're an atheist? Of course not. Just because there is overlap doesn't mean that the two views are identical." +p5640 +aS"No one mentioned helping or not helping people here, or even dealing with the consquences of pregnancy at all. Its more;'If abortion were banned, what measures or research would you suggest to reduce the pressure for people to have illegal ones or unwanted pregnancies'." +p5641 +aS"Just like the Brady Campaign. Often when trying to paint concealed carry holders as dangerous individuals, most instances they cite either never had a concealed carry permit to begin with, or the matters of the case were instances that lacked mens-rea and weren't crimes to begin with." +p5642 +aS"That's obviously not what is said. The sun's energy is not claimed to be a mechanism that makes order of disorder. What it does do is override the tendancy within the 2LoTD where total usable energy in a system decreases." +p5643 +aS"Can we get away from quoting 5 year old posts? Seriously, if you don't take the time to actually read the thread why should I respond to your post?" +p5644 +aS'They have changed. For example, ancient examples of coelacanth were shallow water species, while the modern coelacanth is a deep marine species (actually, two or three species). And the differences are enough to put them in different families.By the way, ark guy, what do you know about taxonomy?' +p5645 +aS'Logical truths do not come from "somewhere", your question makes as much sense as "What time is a moose?".You do not appear to have read my post at all, variously repeating what I have said and addressing things I did not say.' +p5646 +aS'Obviously that is the case. We cannot simply say that a certain God exists and have it be so.' +p5647 +aS'A taste of what could be our future if the left has its way.' +p5648 +aS'What do you mean by other definitions? Before you stated "Creation is...." thus it is implicit in this that you are arguing against a single homogonous construct. And it\'s embarrassing for you to realise that there\'s actually as much variance of opinion in this, as in evolution.' +p5649 +aS"Do you want to explain what you think the problem is? You're going to see a much larger change if you start fiddling with the controls than if you were replacing bases within the protein coding sequence - a lot of those wouldn't change anything in the protein, and a lot of the changes to the protein wouldn't have a significant effect either." +p5650 +aS'And science helped Stenger write his book. How can the same subject make a stronger case for both of two completely opposing viewpoints? another' +p5651 +aS"That's certainly your right, but supersport is interested in hawking a religious agenda, not a scientific one. He may want it disguised as a scientific one, but a perusal of his posts here bely that desire." +p5652 +aS"They do not. They offer increased thermal protection and thus make a greater range of habitats possible. Feathers also offer increased protection from attack. They are so good that several native American cultures were known to make armor from feathers. They absorb and spread impact quite well.Feathers don't itch and they don't rustle in the bush.Do you have an answers that aren't examples of shallow thinking?" +p5653 +aS"False and that doesn't invalide evolution given how it's a misrepresentation of one of the statements in the theory. Gould can take his comments and shove them up his ***." +p5654 +aS'There are no objective reasons to condemn gays. Marriage is not a matter of state and so it is meaningless to argue whether a state should recognize it.My advocating of perfect liberty allows no contradictions or exceptions, believe me I have lost alot of support from conservatives for this, perhaps even gays if one really applied it to all extremes.' +p5655 +aS'And only a "miniscule and negligible fraction of the total wild moth population" has even been observed resting anywhere else. Despite my explanation of his mathematical misleading, wabbit continues with it.Some of you with better short-term memory might remember that I stated that there is little debate that many of Kettlewell\'s experiments were imperfect. wabbit has posted some excerpts to this effect, but really, all we need to do here is realize that wabbit has quote mined to his little heart\'s content. Here\'s a portion he purposely excised:' +p5656 +aS'Some references please? In general, it seems that most climatologists agree that severe weather systems will occur more frequently with an increase in average global temperature. (ref:http://www.grida.no/climate/ipcc_tar/wg2/061.htm#1434)' +p5657 +aS'This applies only when men strive...that is fight. If a man "Accidently" hits a woman while in a fight and causes her to lose her child then all he has to do is pay a fine. But if he keeps fighting and hurt other people he gets killed. Even in the Bible you dont get punished so severly on accidents.' +p5658 +aS'This is a push to promote lawlessness. The San Francisco fiasco is the prime example. People with certain agendas are refusing to follow the laws. This is a devastating precedent for our Nation.' +p5659 +aS'With regard to this statement you have to consider:1. How can anyone know what product an "intelligent designer" wanted.2. Even from the example of life on Earth we can clearly see there is nothing easy at all about the path life has taken over the millenia.But I think it is possible to hold your position, although it can be a tricky one by virtue of the entrenchment of opinions that has occured in the religion science debate- due to the less than pragmatic attiudes of some of the participants.' +p5660 +aS'Well, one person got it right...where in the constitution does it say something about health having to be protected?' +p5661 +aS"The value of logical reasoning is dependent upon your axioms. Highly religious people are no less capable of reasoning logically than anyone else - but the unshakeable axiom that their personal version of god really exists enters into every equation. For you, one axiom is the existence of Vitality; volition made quantifiable, and the other is that darwinian evolution must be wrong and worthless in every respect.There is no logical reason for you to deride NS the way you do; it's an integral part of any evolutionary theory that seeks to explain the big picture of how the organisms we see around us came to be; the occurrence of mutations, volitional or otherwise is not enough on its own. But your axioms prevent you from incorporating it into EAM and getting on with your life." +p5662 +aS'I think a more telling question would be, why the hell would you rather feel constantly threatened than feel safe? It seems completely idiotic to me. Smiley' +p5663 +aS"Why can't you answer questions directly?anyway, I support ct in passing civil unions or marriage lite as I like to see it, but It doesn't confer equality. If it is really equ8al than it would be marrige. Reason beinbg portablity ( irealize you think that some day we might have that, but we don't so far and we cannot ccontrol other countries who may have gay marriage but not cilvil unions and may not recognize civil unions but recognize marriage.)If it is good for straight couples, it should be equally good for all couples. . No one is more superior. Everyone should be equal. Marriage for all is equals." +p5664 +aS"And then there's this:Alarm at routine patrols by armed police - Crime, UK - The Independent" +p5665 +aS'And depending on what human is "finding the answers" it can unfortunately cheapen and deny many central Biblical teachings.' +p5666 +aS"That's good. You're right, all we can do is hope and pray (I pray for things like this every day, and in a way, God has answered my prayer in this case)." +p5667 +aS'And melting the entire surface of the earth and boiling the oceans. Even creationist who propose the nonsense that you spout admit that they have no way to explain where the heat went. In an effort to answer where the water went, they encounter the problem of explaining where the heat went.' +p5668 +aS'You may have missed the context from the other thread I referred to.The point I made is that the unlikeliness of a Presidential signature did not stop Senator Obama from voting in favor of a required Iraq troop withdraw timetable. The promised veto threat didn\'t matter in this instance. He was "standing on principle." Well, same would apply for his newfound views disfavoring DOMA as well in my view.' +p5669 +aS"It hasn't been proven that the Second Amendment is solely about tyrannical governments and not about dealing with violent criminals." +p5670 +aS'You need to read what people say more thoroughly, and think about it before you respond. When he said "can" (and there are not many simpler words than that!) It didn\'t mean "will", "must", or "shall" be more aggressive. It has been shown that in some cases it "CAN" happen. It may not have happened with you. It still might, we don\'t know. We might even say that it is not likely to happen, but we can\'t say that it won\'t, because sometimes some people do behave more aggressively when they have a gun.' +p5671 +aS"And if someone had written an ad proclaiming that black Americans are inferior the same thing would have happened as well. I can't justify what they did but when you put such a hot-button issue out like that into the open...it has to be expected. People have strong feelings about abortion rights (just like racism) and it is naive to think something like this wasn't going to happen." +p5672 +aS'To point our an error, i believe the baby was at the infant stage, not the toddler.' +p5673 +aS"There are precious few areas on the planet that have not been explored. Those that haven't would not support the kinds of life we are talking about. There is no evidence of any interim species of apes and humans. Not one shred. Those items in the fossil record that are claimed as possibles are only possibles, are dubious at best, and are extremely rare. A recent study also showed that most characteristics of supposed alternate species of hominids were well within the variation seen in current homo sapiens. The point I was making is that if they existed we would see them." +p5674 +aS'Well, it depends on your definition of retarded I guess. The standards to get a drivers license are really not that high. Think of how dumb the average person is, and realize that 50% of people are dumber than that. Kinda makes you cringe. And you wonder what has prevented me from being in an accident? Well, perhaps the fact that I am a concientious, defensive, and skilled driver who excercises caution while on the road. Maybe next time someone pulls out in front of me, I should just throw my hands in the air and scream "take the wheel jesus!" I am sure some magical being will fly down from heaven and save me from crashing. Yeah...sure.' +p5675 +aS"I'll assume this is figurative since they do not literally melt." +p5676 +aS"It won't. I'd think any responsible parent with a teen under the age of 18 who has a sound relationship with that teen would discuss the possibility of her becoming sexually active (a normal function in spite of some puritan attitudes) and offer simple avoidance of possible pregnancy and abortion. Like vehicle insurance she may never need it, but going without either one is plain stupid." +p5677 +aS'Actually, the storm lasted for 40 days and 40 nights. The ark was actually afloat for a year or so. So I guess the answer is that the ark had all kinds of pestilent insects winging about and biting and stinging the occupants. The problem is, how did these aquatic breeders actually propagate in the feces and urine infested bilge of the ark?' +p5678 +aS'Again, you are the affirmative, you must support your claims. Please support the claim that we are using an atheist presupposition. I think we are using more an agnostic presupposition, which is a neutral one.' +p5679 +aS'And religious folk in the south used the Bible to justify enslavement of thousands or millions of blacks, and also to justify their treating blacks as mere property. I suppose (but am not familiar enough with all of the details to know for sure) that some even used the Bible to justify linching blacks.' +p5680 +aS"Congratulations. You are now part of a minority group. Marriage tends to either work or it doesn't. I know, brilliant observation. What I mean is either the couple is together for decades or spend x amount of years being unhappy until the unhappy is more than the baggage of divorce." +p5681 +aS'I think that you missed the point of the argument. VT is arguing that the low birth rate in the West is attributable to high abortion rates and the high birth rates amongst Arabs creates a numbers game in favor of the Arabs. Since they respect life (their own, that is) more than the West, their numbers are growing much quicker, while our lack of respect for human life is causing the gap to widen.' +p5682 +aS"Well, we'll ignore the fact that you think dinos are the same as modern day reptiles, and we'll ignore the fact that you are assuming that what goes today must have gone before (something you rant against on a daily basis). Who said anything about reptiles or dinosaurs?" +p5683 +aS"A fairly good explanation, toned down a bit from Darwin's explanation (for the average person who does not have a PHD in biology)." +p5684 +aS"Oh, so you were not in any way talking about evolution in these posts? Then why are they posted on the c vs e board? Please, that's just pathetic." +p5685 +aS'No proof anyone ever went from gay orientation to straight orientation.' +p5686 +aS'First off, define "government funded". The FBI? The CIA? Other federal law enforcement agencies? The military? All vital government entities that are and should be armed. The fact that governments around the world have killed their own citizens after disarming them does not mean that they should not be armed, it means that the citizens should not be disarmed. Think of what our country would have become over the last 100 years without an armed government.' +p5687 +aS'how many animals do you think were on the Ark? how many species existed at the time? the story of the ark does not coincide with contemporary science, but it does work with the rest of Genesis. this is Genesis 2: 15-23' +p5688 +aS"Actually the majority of homosexuals will tell you it's not a choice. And I, being the wacky gal I am, have a tendency to believe the word of homosexuals on that particular subject over the word of straight neonazicons." +p5689 +aS"You know 'my kind'? How very presumptuous on your part. Then you know individual choice is the issue, not enforced medical procedures. You didn't answer the question regarding pregnant women who intend to carry to term being required to have a sonogram." +p5690 +aS"So then the law is flawed because criminals could just as easily get their hands on select firearms, ban or no ban. You've just admitted that the bill did nothing and thus there's no justification for it to be reinstated." +p5691 +aS"It hasn't happened yet is not absolute proof, just that it makes the probability of it being wrong quite small. By the way, if you are in the least bit intellectually honest, I challenge you to actually act on any of those doubts about the reality of existence and any other reality that we understand from all human experience. Otherwise, if you never act on those doubts, you are simply being hypocritical." +p5692 +aS'Actually, I find it near impossible to discuss the second amendment without gun control advocates bringing up the third argument. Weak? Yes. Rare? No. In my opinion, all arguments in favor of gun control are weak.' +p5693 +aS'Yes, you do have a problem with Archaeopteryx. You can\'t explain it from a creationist point of view. I\'m not claiming that it is a "link," whatever that may be. It is a transitional form. It is a small theropod dinosaur that has characteristics that are common to theropod dinosaurs and only theropod dinosaurs and their ancestors. It also has characteristics that exist in birds and only birds. Some characteristics exist in both. The furcula, for example. A furcula has been identified in some theropods, but it is rather rare and then only imprefectly preserved. An indication that it may be mostly connective tissue. Archaeopteryx has a furcula. But even at that it doesn\'t compare to the same structure in birds. It is intermediate. Imagine that!' +p5694 +aS'actually some did talk about the complexity of life as well as irreducible complexity even though it may not be mentioned in the title' +p5695 +aS'So? There are other articles and books that do. Is your link the ultimate authority on the cause of crime?' +p5696 +aS'Far from showing any modern knowledge of blood circulation, this shows:1) if you take the blood out of an animal it will die. A simple fact all civilizations of the time would have known.2) God like for his followers kill living things. He is the God of blood.' +p5697 +aS'Neener neener - is it time to go in from the playground yet?' +p5698 +aS"No you can prevent the life of the unborn because they are not living but I don't think you should end the life of the born." +p5699 +aS'That\'s why I voted as I did as well. Ideally I\'d prefer the "none required" policy.' +p5700 +aS"The burden of a pregnancy is the woman's. It should be left up to her and her doctor to decide what is best for her." +p5701 +aS'But because your book of mythology tells you about a week of creation, you prefer that (because it requires less thought) to examining reality.' +p5702 +aS'You could put the stranger out even if they had nowhere to go and it was freezing cold out.' +p5703 +aS"Notice the double-standard here? The homosexual lobby accuses us of harassment, yet they are willing to provide names and addresses of people who oppose their agenda. I can't wait to see the backlash from this one." +p5704 +aS'Socialsim and Communism in the Soviet Union failed because the USSR spent its entire existence recovering from war. The country was bombed to hell by Germany twice, around the time of the world wars. The united states put unspeakable amounts of money into their war machine, which forced the Soviets to do the same. I, for one, would buy a gun If I knew my neighbor had six, and he wanted me dead.The CIA and American military carried out immoral operations in 60+ countries since 1945. The soviet KGB, as far as I know, has only been in Germany, korea, China, and Afgahnistan.' +p5705 +aS"If we bankrupt the country, the war on terror won't be the reason. Wasteful domestic spending is the only reason we have trouble funding the war on terror. We need to get intellegent with domestic spending. We could start with the $7 billion EPA." +p5706 +aS'You do have a problem with this person defending himself or you would not be attacking him. Fear made him do this. The fear was created in him by the buglers. You want unarmed passengers to attack armed terrorists on airplanes, but you have a problem with a home owner killing buglers.' +p5707 +aS'And just how are the criminals and terroists to be kept from entering a school while armed? Airplanes, probably with some of the new technology, but schools, or bars, or post offices, or government buildings? Just a law that says it is illegal, surely is not going to work. emoticonXDonno' +p5708 +aS"Yes, do you? It's in a country with no medical facilities, no sterile place to get it done. A country full of HIV and AIDS. I wouldn't be surprised if these mothers had HIV/AIDS and knew they'd leave their child an orphan." +p5709 +aS'I know of at least 3 personally, including my brother. He fought for custody for years and it nearly bankrupted him. He was trying to get his kids away from an ex-wife that would go away with her boyfriend for weekends at a time and leave their 15 year old daughter in charge of threee younger siblings. ' +p5710 +aS'Yes, but all concepts of right or wrong are subjective.' +p5711 +aS'What I\'ve been saying here, and after awhile - the guilt, depression, etc - will get buried, deeper & deeper - but no negative/damaging experiences leave people. They stay quietly in the background-computer base -until, as you said: Hopefully, the person "finds some way of forgiving themselves", right. But what about in the mean-time? - And we know, from research & quite a number of Healers, that rot (inside a person) is damaging... and often in very unsuspecting ways.Much better to life benevolently, in the first place.Annie' +p5712 +aS"What does adoption have to do with being pro choice or life? I thought that the waiting list was years and years long to get a baby. (Not trying to argue, just don't understand)" +p5713 +aS'Because there are still a lot of people in this country that support oppression and injustice toward gay people.' +p5714 +aS'It is \'change over time\', not \'gradual change over time\'. The morphological changes tend to happen with a change in the environment. The difference between \'micro\' evolution and \'macro\' evolution is the number of steps. "Macro" evolution is a bunch of \'micro\' evoltultions that add up. You have two populations that you can compare that used to interbreed, and for some reason, do not, and then you add on a few 1000 \'mircro-evolution\' events to each, they become very very different.' +p5715 +aS'Origins of science, whether truly started by those of faith or not, is irrelevant. Whatever science was, it has become a body of knowledge, through application of reason.' +p5716 +aS"Mach, your ability to make the wrong argument on the wrong post continues. I ask a question of this person, you reply not to them, but to me, and with ad hominem, and a 'just-so' statement." +p5717 +aS"Not really. That's the fallacy of exclusion of the middle. Because there are only two choices, if one is wrong somehow, the other is therefore correct. The problem is that there isn't only two choice for sure. Besides, science is wrong all the time, it doesn't prove that creation is right. In fact, for instance, science estaimtes of moon dust have been proven wildly wrong, and those corrections actually harm creation. " +p5718 +aS"I've always gone the Scylla and Charybdis route before instead." +p5719 +aS'Exactly. Moreover, in Emerson the discussion of the 2nd Am. is dicta (arguments not pertinent to the verdict) so it is not a binding precedent even for the courts in the same Circuit.A question for the "original intent" crowd:What did the Founding Fathers intend with the misplaced comma in the 2nd Amendment?' +p5720 +aS'What this highlights is that the laws of the land are ignored and some people try to place the blame on the victims.' +p5721 +aS"I don't think we have any business forcing anyone to do something they don't want to do. The father is supplying his DNA when he engages in sexual relations. After than point he has in effect signed a blank check. It's like the old saw, if you don't want to do the time, don't do the crime. Fathers to be shouldn't be engaging in sex unless they intend to pony up with the montly check. I come from a bit of a bias on this subject because this was my area of endeavor for some 20+ years." +p5722 +aS'In some cases yes, in others no. If the mutation gives a huge advantage, then there will be a decline in the size of the gene pool for a while (eg when the Australian rabbit population was reduced form 500 million to 100 million by myxomatosis, the gene pool strunk as a result and the genetic "mutation" that gave increased resistance spread throughout the whole population as a result). Most of the time though single mutations do not have such a huge advantage and so genetic variation is maintained.' +p5723 +aS'The counter arguments put forth by its critics do not defeat the Violinist arguments, at the very least. Whether one accepts the argument anyway is another story :P' +p5724 +aS"I believe you are thinking of orders, not denominations. There is a big difference. Strict and loony? Could you be a little more specific, because this statement sounds like it's coming out of complete ignorance. You also seem to be making the assumption that all of the non-Catholic Christians are somehow very similar, which couldn't be further from the truth." +p5725 +aS"Well, there's also carbon dating... Didn't you post something about a decay curve? Are you now going to deny the accuracy of that?" +p5726 +aS"We don't live on carbon dioxide. We live from the energy stored in carbon compounds when we break them down." +p5727 +aS'You either did not read my post thoroughly, or are intentional misrepresenting me. Post 250 (which I had actually read before starting this thread) is nothing but DamEtel rambling about homologies between vertebrae embryos. That has absolutely nothing to do with the unexplained homologies that the Denton talks about. Evolution simply cannot, reasonably speaking, account for the homology between your arm and leg, among other examples.' +p5728 +aS"No. We know that evolution happens. What would be a problem would be to find the processes that made evolution happen as such incredible rates. There isn't any evidence that it can happen that fast." +p5729 +aS'Because there is no evidence against the virgin birth and there is considerable evidence against Adam -- including the text of Genesis 1.' +p5730 +aS'Little boy, you need to do a little study on Nazis. They specialized in death. Unlike pro-life people.' +p5731 +aS'And yet, for most pro-choice folk on these forums, this question really is meaningless. For, even when it is assumed by these folk that the embryo has rights, they nevertheless argue that abortion is still acceptable. Even you believe this Shooter.' +p5732 +aS'Well then quit trolling, and start debunking the BS by providing links to cases that were solved by having a gun registry in place.' +p5733 +aS"From a book review of BETTER FOR ALL THE WORLD: The Secret History of Forced Sterilization and America's Quest for Racial Purity by Harry Bruinius:http://www.nytimes.com/2006/02/26/bo...w/26satel.htmlHmmm, Teddy Roosevelt, Winston Churchill, the Rockefeller foundations, millions of Americans, the State of Indiana. . . all these embraced the concept of EUGENICS.Interesting, yes?" +p5734 +aS"You contradict yourself. If the earth was then much as it is today, then there isn't enough water on earth to cover it in any fashion. I have done the math. Do you have any idea of how high the Himalayas, the Alps, the Andes, and the Rockies are? Besides, the Bible talks about a flood that lasted a year, not a series of tsunamis." +p5735 +aS'In older times man had more questions without answers than today. Some men believed if a God of fire because they did not understand what fire was. Because of their misunderstanding they invented an answer, the Fire God. Today we know exactly what fire is and we don\'t need to invoke some mythical explanation. Today\'s atheists know that there are many other questions we don\'t have answers for and it\'s OK to simply say we don\'t know instead of buying into the whole "let\'s-invent-some-god-to-explain-it" mentality....' +p5736 +aS"Come on, people. You don't butcher an innocent baby for the conveience or sins of the parents. There's plenty of people in the world who would have adopted that baby. And if no one else would have, I would have." +p5737 +aS'Why don\'t we do the same for straight marriages then?Why doesn\'t a straight couple that gets married in Colorado, and then moves to Virginia, have to get their divorce "remotely" from Virginia.Or maybe you should start thinking about what AUTHORITY Colorado has to grant a divorce to Virginian RESIDENTS.' +p5738 +aS'Actually, the answer might depend more on the nature of the question, or the particular religious cult of the person being asked, etc. In questions of science, fundamentalists will tell you that the answer was revealed to them by their god in their holy scripture.On the other hand, you are characterizing religion as insanity. I think that you really mean that when religion is offered as science, then that is insane.' +p5739 +aS"Well . . . one could make that argument about anything--voting for instance. Amendments are created by voting, and people and legislatures vote (hopefully) their conscience (and the will of their constituents), even if they are religious. I think this is a different matter than, say, displaying religious icons on courtroom walls or grounds, which is a clear endorsement of religion by the government. The 18th amendment was religion-motivated, but it didn't get rescinded for THAT reason. It got rescinded because it didn't work practically. (and because FDR wanted to see the returns on the economy for his New Deal)" +p5740 +aS'Exactly. It is their fault, but they can do what they choose. It is punishment and you know it, and it is not your job to make sure no "irresponsible" pregnant woman goes unpunished.' +p5741 +aS'You do not have a right to drive. No one does. Driving is not a right. The state does not owe it to you to give you a license to drive. The activity of driving is a priveldge granted by the state, not a right.Rights are not regulated by government. You have them and no earthly authority can take it away from you. The state never gave me my rights, I already had them, nor do I have to ask for permission to exercise them.' +p5742 +aS'I believe you, OTHERS pick and choose what you believe. What is sad is how many lose their faith when they find how much they have been mislead.' +p5743 +aS'This stat sounds more than a bit inflated. Seeing as it comes from a website called "women\'s issues" it is probably not all that credible.' +p5744 +aS"And evolution is exhausted. It can't do anything with origins, and recent discoveries of the complexities of the simplest forms of life exhaust it even more." +p5745 +aS'Well he has further political aspirations..........The 9th circuit in Sodom (SF) is always making law instead of interpreting it........That is why they are over ruled so often.......' +p5746 +aS"Well let's see . . . the last time a state started recognizing gay marriages, suddenly there was more support for a Federal Marriage Amendment than ever, Democrats lost more seats in Congress, the minority Democratic leader was defeated after years in office, a protestant presidential candidate carried the Catholic vote against a Catholic candidate, evangelicals in the country were energized, the pro-FMA candidate WON re-election even though his approval rating was 50%, and the state that recognized gay marriage fell under a slew of legal challenges to the point where it's up in the air again.The more you push you agenda through activist judges, the closer you get to the people having to pass an amendment. At least New York was smart enough not to do it right before an election." +p5747 +aS'It can go both ways. We all doubt. It is what you do with it that matters.[QUOTE=gnojek]If a child grew up never hearing the words religion, gods, spirits, etc. would this child still have faith of some sort?Is faith some innate human tendency?It could be seeing as how there is the "god spot" in the brain, but maybe the god spot wouldn\'t develop as fully in the child that was never exposed to religion or thoughts of the supernatural.QUOTE]Look around. Faith did not spontaneously generate out of thin air. It is obviously part of our psyche. Every civilization throughout history has felt the need for some type of faith. Even on different sides of the planet.It\'s as natural as the sun rising.' +p5748 +aS"Well, those who keep using that story can't see the real sins of those cities. They are so sure that it was rampent homosexuality which lead to their destruction. Even though we know that before the Angels were ever sent God had spelled out why he was going to destroy them. He sent the angels because they promiced to find even one righteous man. They failed in that because the angels were attacked for being foreigners. Noone who abuses this story is ever going to admit this fact. They can't see past the supposed homosexual issue." +p5749 +aS'Thats true. However, do we not have a state of reasonable compromise at the moment?' +p5750 +aS'Yes, I would stay out of it, unless I knew the woman, and she spoke up and asked me for an opinion, or advice. And even in the case of the woman being my best friend, and knowing all the different aspects to the situation, I still would not feel comfortable weighing in. Just like if it was me in the situation, I know that ultimately, it would be my decision, and I would have a right to that decision.' +p5751 +aS'No nation is perfect, Rev. Not even the USA! A singular instance that you quote is not an argument as anyone can just as easily find criticism with the USA over people freed early from jail.You will find black people over-represented in the jails of the UK, the USA and Australia. There is injustice everywhere.' +p5752 +aS'For a 13 year old girl that could greatly damage her body to have a pregnancy so young. She is just starting to grow and mature, and its not healthy, natural, or right to have a pregnancy at that age. She could cause alot of damage being that young.' +p5753 +aS"But pro-lifers often base the pro-life stance on preventing harm. Not just religion. (And in this case they are one-in-the-same anyway.) This isn't a case of harm-preventative-morality versus religious-morality; it's a case of two harm-preventative moralities in conflict, due to each only focusing mostly on one aspect (either the mother or the unborn baby)." +p5754 +aS"Well if your claim is that you shouldn't push a gun owner's buttons and make them mad, then why are you arguing with me when that's what you're claiming is the wrong thing to do?" +p5755 +aS"Oh dear, you're back to your nasty ad hominem self. I could have made fun of the fact that you don't know about materialism, and how its a major force behind evolution. Which is itself a suggestion that you are unaware of the socio-political forces driving western evolutionary theory.**The issue is about people behind sciences, making many different 'sciences'; based on bias, cultural/political/historical. 'Peer' doesn't mean anything because 'peers' are just people with the same background/bias etc.I notice you didn't touch upon Nationalist Sciences. Or for that matter, Capitalist Science.*You mean 'understanding' written English.**I say 'western' because there are other evolutionary theories - Marxist, Nazi, Feminist etc.Thank you, come again." +p5756 +aS'They do offer a good insulating blanket which would keep the body of the reptile warm which in turn, would allow the reptile to remain active for a longer period of time. This means more time to hunt and reproduce carrying the mutation onwards.' +p5757 +aS'It is clear that the profetallifers wish to make the pregnant woman a slave to her fetus.' +p5758 +aS'Bad Religion or misapplied Religion has been in every century, country and culture.' +p5759 +aS'The fact that some scientists totally dismiss god is proof of there ignorance of scientific method. There is growing evidence to support the existence of a supreme being, and a lot of scientists are ignorant of this fact, yet they accept theories from the quantum level wich are not proven beyond the proof of the existence of god. Mayabe your mind isnt as closed as others I have spoke with on this subject. I do believe in scientific method, but I also have faith that god is out there.' +p5760 +aS"So you're actually claiming that it is a lie to say that the UK has a lower gun crime rate than the US? Even if the police were miscounting crimes it's still a huge and unjustified leap in logic to conclude from that that the UK does not have a lower gun crime rate." +p5761 +aS'But behind that are deeper, more fundamental issues about what homosexuality IS and the morality of it. To many people who view homoseuxality as immoral, your movement seems to be trying to write immorality into law.' +p5762 +aS'State courts can rule based on state and/or federal law. In this case, the answer was found in the state constitution, so the judge did not need to pursue the issue further.Also, a state constitution can offer more protection that the federal one, as long as, in so doing, it does not contradict the federal constitution.' +p5763 +aS'It is horribly oppressive of women, though, to oppose both abortion and contraceptives. That means that women will have no control over their pregnancies at all.' +p5764 +aS'All of these examples are scientifically recognized as human life with a unique genetic code.' +p5765 +aS'As proved above by definition of reason above, it all depends on what premise or starting assumption you have as to what conclusion you will reason out. You are correct that faith does not neccessary require evidence. But there is usually always evidence to support the validity of a particular faith, in this case Christianity.' +p5766 +aS"That is just conservative bias. Conservatives are just as guilty of the same things as liberals and then each has their own ideological idiocy that is unique to each group. Conservatives like classes and don't like change. A pure conservative society would fail just as quickly as a pure liberal one. The last 10 - 20 years as we have become more us vs. them the overall prosperity and well being of the country has declined. With both sides taking the country to extremes. Conservatives eased restrictions and corporations run wild. Those laws are in place for a reason. Liberals overreact and put a choke hold on growth. There was a reason for less restrictive laws, but now they can't do anything meaningful." +p5767 +aS"I don't know if you ever heard of the UK Poll Tax but I could have seen myself protesting by non-payment against such a grotesquely unfair system of taxation had I been of the age to do so." +p5768 +aS"Again, what evidence? anthropic principle doesn't have anything to do with creation. Puntucated Equlibrium anyone? How is symbiotic relations beteween plants and insects sign of creation?What are you talking about? A dog can't have a cat. That's retarded. What facts are you talking abot? " +p5769 +aS'Because in the case of glacial/interglacial variation, CO2 functions as a feedback from orbital forcing. Again, this is all very simple, basic stuff outlined in chapter 6 of the AR4.' +p5770 +aS"Because when something passes every experiment thrown at it and when something fits observation better than anything else, then it's as near as damnit fact. We can get pedantic over this if you want, but the conclusion that reaches is that there are no facts." +p5771 +aS"And that is why they are wrong. They don't understand science. Science is not the presentation of proof but explanations of the evidence that have been tested." +p5772 +aS'Either a gross misunderstanding or a gross misrepresentation of evolutionary theory.' +p5773 +aS"so what about jesus' life is credible if the source is unreliable? was it that jesus didnt walk on water but he fed 5000 with 5 loaves? was it that he didnt forgive the samaritan harlot but he raised lazarus from the dead? what did the authors get right? i mean, i can easily believe jesus said he came to bring a sword and not peace. but you dont. so how do we possibly pattern our lives according to how jesus lived if we dont know whether what they recorded was actually what he did?it is necessary to believe that the gospels are true, otherwise you cannot follow a pattrn you dont have." +p5774 +aS'They have. Prey animals have their eyes to the sides of their heads which allows them to see in every direction, almost 360 degrees around. Predator animals have their both eyes facing forward.' +p5775 +aS'Does any part of the theory of evolution give an accounting of how we transitioned from quadruped movements of the ape to biped? ' +p5776 +aS'Does the sexual orientation of the would-be single parent even come up?' +p5777 +aS"Yes, but our cells, are functional. It's cells are not yet functional beyond dividing." +p5778 +aS'Honest question Arch: where is the problem with a potential variance of 10 billion years? I know this question may appear ridiculous to you but could you take the question in the spirit it was meant?' +p5779 +aS"And I'm going to correct you again. The theory of evolution is by no means an extreme view. It is the prevailing view. More than 99% of biologists accept the theory of evolution as the best explanation for the observations." +p5780 +aS'Given that I do not hold that opinion, I would challenge you show where I have stated such.' +p5781 +aS'I think you have your image of an assault weapon slightly skewed. an assault weapon by its very name is a weapon designed to harm another human. this does not mean full auto it just means that it was never designed to be a target/hunting/self defense weapon.' +p5782 +aS'"Ready to go", in the sense that living things are equipped with a means of making small errors which are used by natural selection to make new structures.Barbarian, regarding mutations:There is a lot of that. Many mutations are recessive and a population over time accumulates a lot of genetic variation that can become useful if the environment changes. The founder population of lizards, for example, could have had at most, 20 alleles for any gene locus, since each lizard can only have 2. The new ones evolved by mutation. Sometimes, we can even observe that happening, or trace the mutation back to a known ancestor. Would you like to learn about it? .' +p5783 +aS'Actually "I don\'t know" is quite a valid answer in science.However, again you slip into this false construct of a belief that all that can be known is in the scope of science; which you\'ve also denied saying you believe in the past.[quote=Montalban]Is this a rational statement? If so, prove it rationally, by science. ' +p5784 +aS"Oh? And what do you consider yourself when it comes to gun rights? Are you moderate or fanatical? Would you actually declare yourself a fanatic or would you like to be known as a moderate? I don't think any organization who wants to be taken seriously will declare themselves fanatical about their cause because that would take away from their credibility." +p5785 +aS'Listen, I have forgotten more than you will ever learn about what is real and true in this world, so either back up your insults with facts or get lost because It is becoming painfully obvious that attempting to reason with you is an exercise in futility. kind of like trying to travel from point A to point B on a merry-go-round.' +p5786 +aS'Well sigma, which is more painful?? Being burnt with salene for 30 minutes to an hour and if that doesnt work after the 3rd time, being born prematurally and laid on a table and starving to death..... OR A woman sticking a clothes hanger up and accidentally killing herself but intentionally killing the kid within her? seems to me that people dont really care about how the baby feels. It has just as much feeling as the mother.' +p5787 +aS"Today's students are tomorrow's scientists. They are unlikely to study something that, if they hear about it at all, they hear about it on a less serious level than they do the happenstance origins of atheist evolution. To reduce ID to other classes like literature or social sciences, etc. (where poetry, fiction, and prehistoric beliefs are the subject matter) is nothing more than a clever, dishonest attempt to belittle it." +p5788 +aS"Many natural disasters such as tornados, destructive flood, severe drought probably have something to do with global warming.I don't know which is first regarding these combinations. Maybe flood is caused due to global warming, maybe reverse.These phenomena are related each other, so it can't be seperated when we think about it.Maybe global warming itself is not such a big threat but many disadvantages resulting from this are threats to us." +p5789 +aS'And how did the Wise Creator come into existence? All that wisdom and creativity cannot come to existence accidentally or spontaneously...' +p5790 +aS"I think you got it backwards Kelvin. You're the one that said you wouldn't let your children play with toy guns because you're afraid that your children wouldn't be able to tell the difference between a real gun and a toy gun. Blindone never advocated toy gun-control. On the contrary, Blindone was pointing out that toy guns don't harm children. And if your children can't tell the difference between fantasy and reality how do you expect them to handle a gun responsibly? They might try to shoot the boogey man or their own shadow." +p5791 +aS'You state "the woman comes first". This seems to be your only "absolute". Why does the woman come first? Is it because she is fully developed? Is she more important than the child she is carrying?' +p5792 +aS"How do we know anything for sure? We can't be certain of the Earth's age in billions of years, but we can use carbon dating to figure out it's older then 55,000 years, which refutes creationism." +p5793 +aS"Actually the kid was on a panel, all pretty much saying the same thing. Why didn't YOU cite them?" +p5794 +aS'But my relationship is between a man and woman. You would be asking marriage to be redefined to do that. Remember, part of what defines marriage is that it is between a man and woman.' +p5795 +aS'No Peeling, it would be, "We proved it was possible to evolve as humans have, so why can only we do it?" Why hasn\'t one other creature on Earth ever evolved to our level of sophistication in the same alleged 4 billion years that we have had to attain our level of evolution? If evo is real, then it seems only right that it should touch all species equally and that all species that weren\'t forced into extinction, but survived and overcame the pressures they faced should have ended up in a similar evolved place that man has attained in 4 billion years.Unless of course that the science of evolution is a humanistic justification to explain our origins but has no basis in fact what so ever. And that is my claim and belief.' +p5796 +aS'And many news stories have referred to the New York shooter as being armed with a "high powered rifle" despite the fact that this was blatantly false. Why should we take this story as being fully factual about the details of background checks and gun shows?And a lot of newspapers are repeating the claims that fully-automatic machine guns, anti-tank missiles, fragmentation grenades and rocket launchers, are being bought by mexican drug cartel members -even though they couldn\'t possibly pass a background check- and that they\'re being bought from gun stores in America! But no matter how many times we demand proof of such, NONE IS EVER PRESENTED!Come back with undeniable proof that FFL dealers never conduct federally mandated background checks when selling guns at gun shows, otherwise don\'t post on the topic anymore since you have nothing but lies and scare mongering tactics.' +p5797 +aS'an image is not the original. a photo of you is not you, its an image of you. the image cannot be or replace the original, and isnt intended toregardless of how "perfect" the photocopier is, you cannot cash the "perfect" copy of the check. it may be a perfect replica, to the detail, but it is still only an image. the problem isnt the quality of the copying process, but the fact that the copy itself is just that, a copy, not the original' +p5798 +aS"The biblical end has got to be near. This was a Doctor who spends all of his life saving people's lives." +p5799 +aS"Well either way he didn't answer the question. I saw the video. I saw and heard his responce. He can't squirm his way out of the fact that he didn't know the answer. The internet site also quotes:" +p5800 +aS"Besides the hundreds of cases in which such things are directly observed, I guess you're right." +p5801 +aS"Not once have I said he is perfect. But when people criticize things that I either know are false or I don't agree with, I will back him up. Just like people back up Kerry. I will remember that when you try to defend anyone." +p5802 +aS"No it's not. Perhaps because you don't understand much about evolutionary theory you have confused it with ID. ID is not science and has no evidence to support it." +p5803 +aS'well i was downplaying your argument because really, pregnancy is not that demeaning to a womans body. ITS NATURAL! OBESITY ISNT!' +p5804 +aS'The laws of physics are short, descriptive statements that describe the operation of certain natural phenomena that always seem to occur in the same way. Many times the "laws of physics" have been amended by further information, causing the law to be restated.Actually, I think he meant the way that we have observed the universe and all of nature to operate.' +p5805 +aS"And as I said, Herbert Spencer's ideas predate Darwin's. Meanwhile, Dawkins writings on religion are irrelevant to whether evolution is good biology." +p5806 +aS"But just try and remove them from those that think we do and you will have a war on your hands. It's too bad we didn't become more like Canada is respect to gun ownership. A lot more people would be alive today and others not sitting in prison for crimes they commited." +p5807 +aS'Is that not agnostic? You leave yourself open to change if evidence dictates it. Sorry if this is just turning into word games.' +p5808 +aS'Not in the concept of what God is like. Jesus, salvation, the afterlife are other topics. Believing that there is a supreme being is only one step.' +p5809 +aS"The only 'duty' that any human being has with a parasite is to extract it as quickly as they can, if they chose to do so." +p5810 +aS'But I see two people involved here. Whether the women is better off or not is irrelevant to me. She has no right to kill the other just like you have no right to kill your neighbor. I\'m not for allowing decisions on everything and to be against "choices" is not a bad thing considering every law restricts choices.' +p5811 +aS'How does being poor limit your responsibility to protect yourself? I know a poor woman who has 10 kids just hoping that one day she would find a man that would be willing to help raise the rest. Also, what do you mean by "less fortunate? It never happened but she kept having kid after kid and hoping it would. Should she be excused for her behavior because she is poor? No, she kept going to BARS looking for good men. Bad choices = bad outcome. Do you think that this is proof that abortion is necessary? Nope, abortion IS NOT the answer in cases like this, only responsibility can solve the problem. The bad thing is that only one of the men do anything for the children and he doesn\'t do enough. She has never filed for child support and the kids are almost never disciplined. ' +p5812 +aS'I\'ve been around the creationist/science discussions for a number of years, about 20 or so. The "you believe in evolution" argument has been around for at least that long. In my experience it has been a waste of breath to try to convince creationists that I don\'t believe in evolution any more than they do. As I recall, the argument was even presented in a court case back in the late 60s, or maybe it was the early 80s. I could be wrong. I\'ll have to check on that.' +p5813 +aS"Oh, is THAT where you are getting your information? The Biotic Message? I read the book tens years ago and eventually sold it because it wasn't worth keeping. You do know that it is a book on biology written not by a biologist, but by an engineer. Right? Walter Jame ReMine is a mere engineer of some sort, and has no degree in biology. And biologists strongly argue against his claims. PS: I even had a few exchanges with ReMine when I was posting at ARN. I argued against him, even though I was an IDist at the time, because he was not being truthful." +p5814 +aS"For years I've tried to get one of our resident gay members to debate me on that fact. To date, no takers. Want to step up?" +p5815 +aS'The gene and therefore the enzyme it produces. LPL is the designation for a gene that encodes Lipoprotein Lipase, an enzyme that hydrolyzes lipids in lipoproteins. The actual gene encodes a protein of 475 amino acids that becomes a mature protein of 448 amino acids after cleavage of a signal peptide. One study was able to identify 3 common SNPs (Single Nucleotide Polymorphism) in the coding region of the gene, 2 of which result in small changes in enzyme function in European populations. The third SNP converts that locus to a stop codon and results in an enzyme that is 447 amino acids long. Thus, the enzyme has been truncated. The resulting enzyme, LPL S447X, is functional. In fact, it results in lower incidence of vascular disease and lower blood pressure. Other truncations result in non-functional enzymes.' +p5816 +aS'How is that a affect of deterrence? Deterrence works by preventing people through the fear of consequences. A dead man has no fears. Furman Vs. Georgia, where the supreme court specifically noted that there is not a single piece of conclusive evidence that the penalty is a effective deterrent.' +p5817 +aS"So God already knows if a particular person will become an addict? That doesn't leave much free choice for that person, does it? If I go to a restaurant and God already knows I'm going to choose the poached salmon for my entree, then I don't have much choice in the matter, do I? Omniscience and free will are mutually exclusive. If God is omniscient, then we are indeed ultimately robots. Deluded with the perception of free will, but robots none the less.Unless of course, God is so omnipotent that he can know everything and still allow free choice. But then reason, logic, and thought become delusional. Sounds like a loose / loose situation to me." +p5818 +aS"To the extent that working toward social change on any moralistic issue is an 'imposition', sure. But I think one could say that about anything that has a social effect." +p5819 +aS'This is a very simple, easily answerable question. Most people, especially in America, have problems with people telling them what to do. Teenagers hate being under the authority of adults. Adults hate being under the authority of the government and enforcers of the law. Everyone in the world is under worldly authority, but to actually have a God who created you, which gives him the right to make commandments stating what is good for you and what is not, that makes most people really XXXXXX off. ' +p5820 +aS"I've been posting at least a few times a week. That's a lot more than once a month. I pointed out that the US has higher levels of gun crime than most developed nations while you tried to focus on a few tragedies in response to someone questioning the claim that criminals will always get guns. I think it's obvious whose argument is more cherry picked. " +p5821 +aS"Yes, in my view, it would be morally correct since it has no brain and, in my definition, is not a person with rights. However, if she doesn't want to support the violinist in that future, she has the responsibility to disconnect from (and therefore kill) that brainless body before the brain gets transplanted. Otherwise, if she waits to disconnect until it is too late, she would be guilty of killing the violinist (a person)." +p5822 +aS'Nothing "proves" evolution. However, there\'s an overwhelming amount of evidence that supports evolution.' +p5823 +aS'Yes, but the statement directly contradicts proponents of "creation science" and of ID. Their claim is that they are doing science, even though they can\'t show how. Scientists have claimed all along that creationists/IDers are doing philosophy and religion, but not science. That is the problem. They never offer any evidence that supports their assertions, only mythology and superstition.But now we have Ray admitting that creationism and ID are not science and can\'t be included in science. They either philosophy or theology, but not science.' +p5824 +aS'Well, if burglars want to steal guns then it makes sense that they would be likely to target the homes of gun owners. And the source is from the recently published book Evaluating Gun Policy which you can read and review. The source is listed at the bottom.' +p5825 +aS'Because that the law one has to presume and of course the law applied to that specific case. As to it being contradictory - well the law is loaded with contradictions if you look at all closely. On the other hand consider that the driver killed the woman AND obviously damaged her fetus beyond recovery - WITHOUT the consent of the woman. In other words the death of the fetus was not by consent of the person who holds the right to decide but rather by the negligence or intent of the guilty party.And yes prior to her death (assumming all other requirements were met) she could have AT HER CHOICE and UN-COERCED have chosen to abort the fetus without incurring a legal penalty. But that would of course be much different.' +p5826 +aS"Unfortunately Democrats have a credibility problem. Many Pro-gun Democrats have been elected, and America is giving them a chance, but apparently they do not believe Obama because of his past Anti-gun support and votes. However Ms. Feinstein's comments about waiting for the correct timing to bring up gun control did not help the creditability problem either. I guess only time will tell." +p5827 +aS'And he accomplished all this human carnage without a gun. This just proves that if it was possible to eliminate all projectile firing weapons from existing on earth, men would find a way to commit atrocities against his own kind just as he did before such weapons existed if murder was in his heart. Guns are not the issue, the corrupted heart/nature of humanity is.' +p5828 +aS'I think I posted that awhile ago. Its huge BS. Thats like saying "Civil rights hurt blacks". Even though abortion may have some unwated side affects, its no where near the emotional and physical pain and suffering for the rest of your life than a forced pregnancy. Just goes to show that the pro-life movement is desperate.' +p5829 +aS'Nothing. "T. Kennedy" is an alias of a known terrorist.' +p5830 +aS"I know you're talking to Jessica, so I will only comment on this. It would be easier to make it rare if pro-life people weren't intent on making it illegal. Pro-choice people have to make it as available as possible to counter pro-life attempts to shut it down entirely.If pro-life people didn't exist, then the reasonable people could work towards making abortion rare.Take the current debates for example. My entire point is that it should not be illegal. That abortion should be available as a safe and legal choice (it can only be really safe if it's legal). We spend all our time and effort debating the legality that we spend no time on creating programs to help women choose to continue their pregnancies instead of having an abortion, legal or not." +p5831 +aS"If the fetus is human is not relevant? So if everyone says it is human then it still doesn't have a right to live then huh? Do you really support the killing of an innocent life for whatever reason? Do you really think placing one human over another is good (in this case women is more important then baby)?" +p5832 +aS"Wow, I think this is the first time I've ever heard anyone claim that the pro-choice movement is for the sake of the child. Sorry, you aren't even close. I don't know a pro-choicer period that would say it's for anything other than the sake of the woman." +p5833 +aS'You say you cannot see it from the gay perspective, then you speak from that perspective as a gay man. This is confusing. As a heterosexual, if you are one, would you give up those rights and let gays have the rights?' +p5834 +aS"Well, their cash cow dried up and even Toby Hoover is going to have to get a new gig. No matter how many times these dire warnings were given they just never came to pass and over 2/3rds of the people are wise to them now and they have lost any credibility at all. Folks all over are now standing up demanding their rights and the left has expended both it's money and political and emotional capital. Stick a fork in them Lucy, they are done emoticonXHoho" +p5835 +aS'And so on. Yes. a lie generated by creationist liars is what you use as source for what scientists are claimed to adhere to? Your dishonesty is actually rather startling. This is the worst attempt at dishonesty I have seen from lying creationists yet, and your gleeful introduction of that lie shows how truly and completely dishonest you are. Would you stop your lies. You are pathetic.' +p5836 +aS'No more so than the Scalia/Uncle Clarence Thomas cabal opining that the words NO LAW mean something other than what they do when they rule in a First Amendment case.' +p5837 +aS"You're obviously an Obama supporter, they're the only people who wouldn't be upset at his abusive tactics of threatening lawsuits against anyone that runs unfavorable ads against him, thus showing that he doesn't support the First Amendment." +p5838 +aS'So given that there are cases where both dies... we just have to give up the mother\'s right to live over a fetus (which will die)? What if the mother isn\'t physically ready to have a baby. In the case of a young female (I\'m talking age of 9 and younger, cause there are cases of young kids having their periods) being raped, doesn\'t she a "baby" (and I say baby, because she is still at an age where a parent would consider her their youngin)... have the right to live? For me, if I knew my child was raped and is in no way ready for a child of her own, physically or mentally... I would rather her not risk her life to try and bring that fetus into the world.Abortion should be pro-choice.' +p5839 +aS'I dunno about that, but possibly. They do know that those afflicted with ADD have some unusual structures in their brains too. Last I heard they were investigating the causality of homosexuality with developmental deficencies in the brain. The jury is not out yet' +p5840 +aS"No it doesn't. That's why Darwin objected to the use of that phrase in reference to his theory. Those who don't bother to learn the theory tend to misunderstand. Fittness is not a reference to big and strong. It makes it too easy to misrepresent evolutionary theory.I'll state it again since you seem to have missed or ignored it the first time. Natural selection is differential reproductive success. Those organisms that are well adapted to their environment tend to survive to reproduce in greater numbers, and therefore they tend to leave more offspring, than those organisms that are less well adapted.You've got to be a pretty shallow thinker to equate an environmental advantage with big and strong." +p5841 +aS'Could you please cite where you are getting this biological definition of evolution?' +p5842 +aS"You only say that it won't make a change because you support the effects it will have." +p5843 +aS'382 - 405 are the dates I have, under Pope Damasus I.' +p5844 +aS"Nice try. If America was an Ally to Germany during WWII, to this day you wouldn't forgive US Citizens no matter what excuse they have." +p5845 +aS"Well then there's grounds for a lawsuit. Find a group of veterans and get them to sue the VA, funded by the NRA, and take the whole organization to court on charges of violating federal standards." +p5846 +aS'Again, we never said that a human fetus was a different species.' +p5847 +aS"I'm not against concealed carry in principle but open carry seems silly to me. I smell posers." +p5848 +aS'Then should not your challenge be re-worded to say "What might be the best..."Because at present we are not at a stage where by we know everything about \'pain\' therefore in the current climate, rather than what might be known down the track, I think I have met the majority of your challenge. After-all, you are insisting now on what \'you can measure\', and we can\'t measure all that there is about pain, at present.' +p5849 +aS"I'm not aware that the police used violence in arresting any of the people discussed in this case. Besides, I'm not discussing personal morality here, I'm discussing what should be legal, and what is practical in a society where not everyone shares the same moral views. Government is there to apply limits to what is permitted, based on the will of the people." +p5850 +aS"No its federal property and falls under AR190-11 and other applicable regulations. If they live off post I believe so if they follow policy and regulations. If they live on post then the POWs must be stored in unit arms rooms and only drawn out with the commander's permission." +p5851 +aS"Socialism is a very broad category of political ideals, which particular form were you thinking of?And just so you know, Fascism is not a form of socialism in any way. Socialism does not have oppressive governments. The purpose of socialism is to remove the class differences in society, if there is a small group of bureaucrats enforcing their will on the workers then that's a class difference." +p5852 +aS"I agree, for the most part. Once you get to tanks and helicopters though? Too big, too easy a target for a tyrannical regime. Do you see the Iraqis and Afghanis using tanks and helicopters? I'm sure they could get them if they really wanted, but they're useless against a government that invests in satellite technology and bombers. Better to stick with the rocket launchers and mines." +p5853 +aS'You offer no positive evidence towards Creationism nor did you deny that the idea of Creationism as scientific was destroyed long ago.' +p5854 +aS"so since most abortions weren't rape, do you still support abortions for people who are raped? Just wondering." +p5855 +aS"None of the 'fishersci' links would take, but I did get a look at the fibre optic systems. Will try again later." +p5856 +aS"Also another example put forward is a bacteria that can only sustain itself by eating Nylon. The theory goes - nylon is a recent invention therefore this bacteria must have eolved recently.What it suggests however is that a portion of an existing population would have died if not for nylon... the bug has to have nylon, or it will die.It is akin to looking at a portion of the human population who would die from heart-trouble. But thankfully we've now got artificial hearts, therefore this portion can survive. They are not a new species of human, but live only because of a recent invention." +p5857 +aS'He was barred for presenting hard evidence against the Big Bang. Observable evidence. He was the head astronomer at Mt Carmel not just another astronomer. He was our best one.Being barred from the telescopes he was in charge of , being fired , and having to move to Germany is not what you consider suppression? I am not willing to discuss this with you anymore if you refuse to do it honestly. You can say anything.' +p5858 +aS"Well do you mean Texas or Texans? Because Texas holds the record for execusions in the US. Not something I'd be proud of." +p5859 +aS"That wasn't my question. My question wasn't what you said, but what you believed. You sort of answered that. But the same people spouting off about the second ammendment being the reason for guns should also be for it defending your right to a nuclear bomb." +p5860 +aS'I have never disagreed that marriage is a special dependent class. My point is that it is a society-sanctioned special class.' +p5861 +aS"I don't think people have a right to kills themselves (obviously not natural and obviously not legal right now). As for the other question, I wouldn't think a blatent disregard for the others health is morally ok." +p5862 +aS"I do not understand why people are stuck in this mindset that we have to define ALL abortions as either right or wrong. In between, there is the option of calling abortion under certain circumstances as right or wrong or calling abortion in certain trimesters as right or wrong. Why limit yourself to the extreme views? I do not believe that the original post asked for an absolute answer, just a survey of opinions. After all, as you say, abortion is not math and there is no one answer that everyone might agree with. However, the question of people's opinions on the beginning of personhood and how it relates to the morality of abortion lies at the very core of the debate on abortion rights. Really ... what other question is more relevant?" +p5863 +aS"Oh, we don't have to - sorry, I wasn't clear enough there. What I'm trying to do is correct your misapprehensions concerning common descent. You said this:" +p5864 +aS'The 7 day creation I am referring to, not merely the possibility of divine creation through the Big bang etc' +p5865 +aS'Well, as usual the Creationist is trying to make an arguement against science using their moral viewpoint. Forget about all that pseudo science trying to discredit evolution and geochronology, all it comes down to is this: "My religion has the exact answers to questions about my origins, I do not like what science has to say on this subject".Its so much more succinct that way, I just wish they could be up front about it.' +p5866 +aS"No. I never mentioned grades. You brought that one up. I'm saying that having guns on school campus isn't a good plan due to the high level of emotions in the area." +p5867 +aS"Yes Peeling; you say this with such assurance, yet what you can't explain with any assurance is why only one offshoot of the Primate genus evolved into what human beings are today. Why only us, when we all allegedly started in the same environment with the same ecosystems putting the same pressures on us. What I'm saying is that in every place where our alleged primate ancestors fossils have been found, so haven't the fossils of animals described as lower primates been found. So your explanation that one species evolved while another stagnated or died out rings hollow with me. Especially since you can actually prove absolutely none of this. Can't you see that Peeling? None of this is provable." +p5868 +aS"Yea I agree with you on how there was no exact se t of laws at the beginning of creation. The reason I say that they most likely didn't marry their sisters is mostly cause God gets mad at Cain and places a mark on his head so everyone he runs across will not kill him unless they want to die a death 10 times worse than his. Kinda just says that there are other people out there." +p5869 +aS'That is an erroneous line of reasoning because it fails to take into account the myriad of other options open to a women after birth to remove the newborn from her care without any ill effects (physically anyway). Killing in the instance of a newborn is not justified because of those other options open to her. By contrast, a pregnant woman has exactly one option open to her to remove the fetus from her care and that is abortion. I would contend that the same line of reasoning that allows for adoption can be used here, that no one must donate their resources to a dependant.Your reasoning that a woman, using the same line of reasoning that pro-choice people employ, can withhold her bodily resources "until the newborn dies" as if that is equal to withholding bodily resources in pregnancy is faulty.' +p5870 +aS"But that doesn't help much with calculating the length of a day from actual astronomical observations. Perhaps if we told Freeofthought that the current rate of slowing of the earth is 0.005 sec/year/year. I have no doubt that Freeofthought will misunderstand that number - it is a rate. Just assume that rate has been unchanging even though it hasn't been.A lot of the creationists misunderstanding comes from remarks like the following." +p5871 +aS'You blame others for your failure to understand the basics.' +p5872 +aS"Any form of legislation is a voting matter. That's the way our system works." +p5873 +aS"Lurch, I don't appreciate your condescending tone. If you want to challenge my assertion that you are a pompous XXX that jumps to conclusions, you will need to be a little less judgemental and start thinking outside of Darwin's Black Box." +p5874 +aS'Well, in the sense that we cannot actually detect the intelligent design Behe proposes, then it it OUTSIDE the limit of actual detection.' +p5875 +aS"Right on! A real man supports those he loves, through thick and thin. He doesn't try and control the things he can't either.In the end, it's not a man's decision. It is not his body, therefore, he has no right to make the ultimate decision. He can only express his view. That's about it. (I'm pretty sure it's not any easier for her to decide). So cudos to those men." +p5876 +aS"So what, the thread isn't about her signature. If we started responding to threads by attacking people's signatures, we'd all be in serious trouble. Especially me emoticonXAngel" +p5877 +aS"You JUST said they get health care in the hospital! Read your post, where's there NO healthcare. And it IS based on the ability to pay...you just want me to pay for someone else's and in the most inefficient way possible." +p5878 +aS'They need to keep their opinions to themselves and out of the law the effect gay peoples lives. I see nothing wrong with locking up those who incite hatred towards gay people just as we lock up people who shout fire in a crowded theatre.' +p5879 +aS"I will stop quoting here. Don't want people to have too big a read. Actually ToE isn't all that random. To a certain degree yes. But Sexual Selection aka a part of the ToE. Dictates that when there is a benificial/attractive change. That change will be enhanced almost exponentially. Because the female of the species will be programmed to search for that and will carry the gene herself so will give it to her off spring. And the male will be more succesfull so produce more off spring. So no instant eyes or anything like that. I think that's what you were implying. Sorry for responding in Kronus's stead. I'm sure he can defend himself but I found it unjust the way you replied to his post and attacked it on foundations that you didn't have." +p5880 +aS'Even though I am for gay marriage I do agree. Correlation is not causation.' +p5881 +aS'I think it would be an exception as well.But if you see an indicator that might point to an "exception", I think the question should be asked.Consider the flip side of things. The question doesn\'t get asked.If Skip had been the type of man to let a gay couple\'s house burn to spite gays, don\'t you think that the gay couple would have had grounds to sue the city in such a situation?Part of this is just the city covering its own XXX. If they ask the question, and the guy lies, they have helped to cover their own XXX by asking the question.' +p5882 +aS'Holy grail implies it is like a religion, which it is not. If evidence is found that overturns this theory, it will be discarded in favour of a better one.' +p5883 +aS'wow... you are bent on harping on creationists arguments at whatever the cost.first of all, you are not even considering that the majority of people are misinformed of what evolution is not because they have creationist motives, but because they go to the dictionary for definitions' +p5884 +aS"Incorrect. Evolution is not something that must be adhered to. It is a scientific theory. As such, if evidence was brought to light that evolutionary theory couldn't account for, then the theory would be altered or scrapped. It's really quite simple." +p5885 +aS"Yes, you are missing something. How come age doesn't start at conception? How come when babies are born they aren't 9 months old instead of, well, seconds old." +p5886 +aS"As a gun owner I'm also a property owner. Or are you denying that guns are property?" +p5887 +aS'Logically incorrect. One can as many red balls as one likes, and still only have one green one.' +p5888 +aS"Apples and oranges. We're not demanding that they have abortions either." +p5889 +aS'But let me guess ... if they step down RIGHT after they find they will have to issue to gay couples, you\'d be in favor of them being able to be sued for it, simply because the "discrimination" in such an event was toward gays? Right? At least if you are consistent with your stance elsewhere in regards to \'timing\' ... emoticonXRolleyesAnyway, aside from that inconsistency with your position elsewhere, I agree that county officials should need to comply. After all, there are probably OTHER examples whereby county officials have to do things that they are religiously against, such as issue divorce papers. Or marry some drunk couple that they know aren\'t really being serious even though they\'re tying the knot ... If all county officials could just refuse to do their job because of their objections--for WHATEVER reasons--it would be a collosal mess.' +p5890 +aS"Gun control maintains its racist roots even in this day and age. What other reason would there be for Form 4473 to ask applicants what their race is? What is the importance of knowing if somebody's white, black or mexican when they're buying a gun?" +p5891 +aS'Actually the Alan Guttmacher Institute is quite reputible. They have their own web site. Check it out. Also, why would a site called "womens issuses" be in valid?' +p5892 +aS'would that be legaly owned guns, or criminals who have guns (and also ues guns) for there crimes? most Gang members have guns, if they are killed in a drive by shooting, is the gun responsable, or would it be the illegal activitys?' +p5893 +aS'To you, it may be an incorrect statement. But if it is, you have to tell me what it is you kill and take the life away from when you abort the zygote. Not knowing if it is being killed or not knowing someone wants to kill it makes no difference. Injustice is still practiced there, and not even some abortion doctors realize it.' +p5894 +aS'Oh joy another drive by with absolutely no proof or evidence.' +p5895 +aS"Everyone expects that. What they don't and shouldn't have to expect is that they will be specifically targeted and have to pay more, be penalised more, etc. than hetero couples such as yourself or me and my husband." +p5896 +aS'"Babies" are a stage reached after birth. If you are talking about abortions, then no babies are involved, anti-choice, histrionic revisionist linguistics none withstanding' +p5897 +aS'None of these alternate views go outside the framework of evolution. They all use poor wording, though, and try to lead one to some conclusion about "information" or something.' +p5898 +aS"You know what they mean, I know what they mean, but as someone involved in teaching evolution to high school kids I wish they'd avoid the implication of purposeful change and just refer to beak size changing in response to new selective pressure.As I said, I may just be being nit-picky. Language apart, this is another nice example of evolutionary change happening right before our eyes." +p5899 +aS"They are safer. The 300 gun deaths per year rate has dropped since then.Let's have a little reality intrude on the gun porn fantasies. Only 13% of Swiss homes ever had an Army-issue weapon in them, Militia service extending only from age 20 to age 30, and the ammunition was stored in a sealed pack, with severe punishments for the seal being broken." +p5900 +aS'Heller is about determining the answer to a long standing question on the nature of the Second Amendment, and how much gun control is legally allowed. Roe v. Wade is about finding legal precedent for the murder of unborn children.I see absolutely no comparison between the two.' +p5901 +aS"Many of the gun hating crowd also own guns. It's the elitism belief, that they're superior to all humans and thus deserve to be armed, while everyone else in the world should be unarmed and bow before them as if they're gods." +p5902 +aS"But I think that is the point. What if you didn't agree with the germ theory of disease? Does that mean that it shouldn't be taught in health classes in our schools? Should it be replaced by the bad humors of night air theory? But not everyone agrees with that theory either." +p5903 +aS'if the only choices we can possibly make are the one God approves, then we dont have free will, because we cannot free choose the option that God does not approve of, which means we are forced to only choose the options that God approves of. this is not free will' +p5904 +aS'We cannot prove the existence of God for, by definition, he dwells in a reality outside our own. Similarly, I cannot prove the existence of a Flying Shoe in Hyperspace, nor can I disprove it, but I can prove that the Flying Shoe does not exist in our world because it exists, by definition, in Hyperspace.I can make up anything I want and say it exists in another universe. A round square, a colorless green idea that sleeps furiously, you name it.' +p5905 +aS'Well, it might help if you could propose a mechanism for such changing traits that would stand up as well as the current model of genetic inheritance.' +p5906 +aS'I think more than this is the principle of human dignity. That humans have inherent dignity and value at every stage of life. This is transcendent of whether they are conscious or unconscious and it is why we treat 24 week premies who have no real conscious existence and a 30 year old automobile accident victim in a coma on a respirator and you and me the same. So strongly do humans recognize this inherent dignity that even in death a person is dignified with a funeral ceremony recognizing their life had inherent meaning and value. We build memorials to those who were victimized in life.' +p5907 +aS"To say nothing of the possible threats to people's safety, if not actual acts of violence." +p5908 +aS"So have I, since I know that evolution has and does take place. But I catch it from both sides because I don't believe the scientific explanation of the origins of life or the beginning of intelligent awareness." +p5909 +aS'Those abortions that are perpetrated as "birth control" should be outlawed.' +p5910 +aS"Dealing with a designated nuisance species isn't the same thing as hunting. It's wildlife management." +p5911 +aS"So, I guess you didn't get the memo that this country was FOUNDED on Christian/Judaic beliefs. Remember: You do have rights; to an extent." +p5912 +aS"It may only be salvaging to you but to the parents involved it is body theft.Let me just ask you to step in our shoes for just 10 minutes imagine trawling around 100's of hospital labs and medical schools seeing all these poor little babies lined up in jars and i don't mean just a few there is up to 50 in each hospital and school imagine looking at those jars hoping that one of them is your child so you can at lastgive him the burial he/she deserves(a basic human right) yet at the same time praying that none of them are yours.Having done that can you still say that it is only salvage bearing in mind our children were only sent for post mortem and many of us have not seen them since?" +p5913 +aS"End the guessing right now. Don't guess. The meaning of the 2nd Amendment is explained in two documents: 1) The Militia Act of 1792 and 2) Federalist Papers #29. Both of which was written by the same Congress and same men who wrote the 2nd Amendment, the Constitution, and established the political philosophy of our country.First the Militia Act states WE AREA ALL IN THE MILITIA and that all citizens bring thier own weapons. - http://www.constitution.org/mil/mil_act_1792.htmThe more broader philosophy and intent of the 2nd Amendment and the Militia Act is further explained in the Federalist #29. - http://federalistpapers.com/federalist29.htmlThese documents are the thoughts and intent of the men who wrote the 2nd Amendment. So gun control slime are guessing or trying to reinvent history when they think gun ownership is collective. None of these documents anywhere support the collective idea." +p5914 +aS"You asked where the line should be drawn in regards to weapons?How about where ownership and use of weapons does not violate the rights of others. Before you respons think about it. Do anything you want. If I don't violate anyone then what is the beef? If I don't break any laws or endanger anyone what is the beef?The safe storage and handling of cannon, cannon propellant, and cannon ammo is well known. They can be stored in places typical of homes without violating the rights of others. BTW a cannon is not a weapon. It is considered a 'firework' by the ATF. Ever see a civil war renactment? Lots of cannons? So yes having a cannon in your front yard does fly." +p5915 +aS'Semantics. God has mandated against homosexuality. My point is, people are prepared to admit that the creation story, and the story of noahs arc are metaphors. They read them, and then look at the evidence to hand and say "Well, it can\'t be really true the way it is written, so it must mean this..."But the bias of the church against homosexuality is based of a small passage of text which, it seems, cannot be interpreted away. That part that condemns homosexuality is accurate, straight-from-gods-mouth truth. Again, why the dichotomy? Why are some parts of the bible open to interpretation, but others are rigid?' +p5916 +aS'Actually they do. Whether or not you think they should is another matter entirely. Did you not notice where the article came from? From a paper in India. I also found articles on the same subject from papers all over the country as well as in other countries such as Romania. Save your snobbery for someone else.' +p5917 +aS"Just some interesting information I learned when we went caving a couple years ago (a real cave, not one of the commercialized ones). Bats actually have better eyesite than humans, but even they can't see in pitch black. No eye can." +p5918 +aS'I think that the type of weapon does make a difference. A tyrant would be more dangerous to the world if he was armed with WMDs rather than knives.' +p5919 +aS'Kronus said this was a win for science. He never mentioned that religion was discredited- never mentioned religion at all. Religion and science are utterly unrelated. Why would you make that connection?' +p5920 +aS'Then 99% of creationists are not informed as far as I can tell. It seems that your position is that "informed" creationists are neo-Darwinists, fully accepting of the theories of evolution.' +p5921 +aS"No, they're the same species. If you put all these fish in the same pool at the end they would all breed with each other. The example wasn't of speciation, merely of a change in a population driven by the environment, which is the essense of evolution." +p5922 +aS'But if you actually take time to read the study that is posted on that website it appears that the claims of the NSPOF are doubtful, inconsistent with other studies, and likely biased in favor of people answering that they had used a gun to defend themselves. ' +p5923 +aS'Actually in high school I had a friend who used to be in placement. He was sixteen years old an he said he got the s*** beat out of him by an eight year old boy. "Street kids" get their XXX beat every day, pain is nothing new to them. It seems they\'re immune to it. It doesn\'t matter how hard you can hit, if you can\'t take a punch, then you can\'t call yourself street-worthy.' +p5924 +aS"I don;t really know anything about british gun control in colonial india, and don't really see it's relevance, since colonial india is gone. I DO know that this had nothing to do with the British refusal to conscript indians into the British Army. This was directed at the disarming of the Indian Army under british rule. The indian citizens were never actually disarmed under British rule, just the army. During WWI, indians were allowed to volunteer for the British army (the British knew it was a bad idea to conscript men from colonies)." +p5925 +aS'Crime has dropped significantly in New York and Los Angeles in recent years. ' +p5926 +aS"I'm glad you made the same correlation I did. ToE is a substitute for #### in this case." +p5927 +aS'Actually, everything the bible say\'s belies your "atheist answer". The reality is that the world itself and all of Gods Creation speaks to His existence as being self evident. It takes a degree of faith to accept Jesus as our personal Savior, but as far as accepting the reality of God Himself, all one need do is look observe the world we live in to see that only an incredible and loving God could create such a Beautiful and marvelous World with so many amazing symbiotic and perfectly interdependent forms of life.' +p5928 +aS"So sorry, Anastasia...that's a horrible thing to face. And now, using that excuse? What! If justice was swift for the guilty then he would not have escaped only to do it again. Some criminals never change, and via your testimony, only live to do it again. There are some who need to be put to death. Your situation made me shudder, Anastasia. But, I am glad you didn't let it (revenge) effect you to the point of taking his life yourself. If it would have been my father, those many years ago, I cannot say that I would have waited, nor would have accepted that lame excuse of retardation. I could very well be in prison myself." +p5929 +aS"And where exactly did you hear this? I find it hard to believe a governent that couldn't keep an affair or a low-level break-in under wraps could keep something like that secret................. Also if it is true and among alliance forces why do you blame solely the US?" +p5930 +aS'Except several rligious organizations around the country have financed, and gathered signatures to put anti gay marriage amendments on the ballot. They have a religious belief that marriage is between one man and one woman. They have turned this belief into law regaurdless of the religious beliefs of gay people. Any one who has voted yes to place these amendments into state constitutions because they have a religious belief that excludes gay people from marriage has also imposed those religious beliefs upon gay people. In short I have been barred from marrying the person I love because someone else, that I do not know and who does not know me, has some sick religious belief.' +p5931 +aS'So we should just say "god did it", and give up?' +p5932 +aS"NOt true,California's ammendments are not doing as well as other states did. You are talking about a very liberal state. If it is decided that marriage is allowed by the courts, then you are talking about taking away rights people have been granted by the courts. I just don't think that will happen in Calf. much too liberal." +p5933 +aS'What you are talking about here is the *potential* to exist being important. I would personally also thinking that potential existence is important, but not nearly as important as an existing person. After all, unfertilized eggs and sperm also have the *potential* to become full people but no one is concerned about their loss. For many of us it is the actual mentally-existing person that is most important. For both the \'braniac" case you present and for the early term fetus, if there is no reason to kill it, then don\'t. However, if there is a contest between the rights of a living, existing person and the rights of either *potential* person, then I think the rights of the living person win out.' +p5934 +aS"Because....expansion occurs after heat is added. How can a expansion occur with a prior cause? You're saying the reaction and cause happen at the same time. Show me an example that does that." +p5935 +aS"That's because its sophistry. Its an inherent contradiction and it simply means we don't have the capacity to understand it. Another more common example is that the assertion that the universe cannot be endless, and yet as far as we know it is. Trying to understand it is for us humans like an ant trying to fathom the theory of relativity.Damn are we ever conceited as a race...we seem to think that if we can't understand something, it cannot be. We also tend to think, in every generation, that we have achieved somehow the pinnacle of progress." +p5936 +aS'So what standards of proof do you hold the bible to? What allows you to hold it next to other religious or fantastical texts and say "Yes, this one is definately, without fail, the word of God, and this one is not."' +p5937 +aS'So do you want to argue my points or do you want to argue me? Which of my bullits are wrong? Which of them are right?' +p5938 +aS'Accidents for one. Just last week a man who was drinking and cleaning his firearm accidentally shot and killed his daughter. Run a google search for "man shoots self" the amount of accidental shootings is rather disturbing yet funny. Most of these however are due to improper gun safety though.' +p5939 +aS"Yes I disagree with that point. The navy, just like the police, can't possibly be everywhere that danger might raise its ugly head. Merchant ships can't afford a 24/7 navy escort anymore than the average citizen can afford to hire body guards 24/7.There's no legitimate reason why merchant ships should be unarmed and unable to address dangers that deliberately come after them." +p5940 +aS"Any belief system is a religion loosely defined. I'd like to know how you think rights are afforded to born persons if not by a belief system or at the very least a belief in natural rights. Either way, that doesn't address the point I had. If I can't impose my beliefs on you then who you are to impose your belief of me not hurting chemist99a?" +p5941 +aS"Obviously not. If the right to life trumps all other rights, then it follows that the mother's right to life and the child's right to life cancel each other out. Mind you, if it's her choice then the pro-life movement endorses such heroism, right?" +p5942 +aS'And were THIS the 17th century, I might understand that, but this is the 21st century. We don\'t "bleed" people to make them well; we don\'t have barbers performing surgery and we usually have a trained physician in the delivery room.' +p5943 +aS"It's still not right for religious people to have to never speak their beliefs. It's a form of tyranny." +p5944 +aS"So, in summary, you aren't against the death penalty on principle. You just want it used judiciously? Same here. Where we'll differ is in the details of what's judiciously." +p5945 +aS"You can't...only admin can...and there's no need to be sorry." +p5946 +aS"Well we assume a right to your own body here. It is also important for you to justify why there should be a difference in human and person and then justify why doing so this time is different from when this was previously done in history.I guess I don't agree with the idea that you have no rights until you can prove you should have them...if this is the standard then we are all in trouble." +p5947 +aS'Read to the very end of the verse. "If you are not pleased with her, let her go wherever she wishes. You must not sell her or treat her as a slave, since you have dishonored her."' +p5948 +aS'Bellesiles claimed his data was destroyed in a flood. Lott claimed his data was destroyed in a computer crash. Some people have been calling John Lott "the Bellesiles of the Right." Read this article "The Bellesiles of the Right? Another firearms scholar whose dog ate his data."http://slate.msn.com/id/2078084/John Lott has already admitted to inventing a fan (Mary Rosh) to praise himself. That\'s intentionally trying to deceive people. http://www.washingtonpost.com/ac2/wp...¬Found=true' +p5949 +aS"Every relationship does entail moral obligations in one way or another, but the argument is that there is no relationship that morally obligates one to share ones body. They are trying to generalize 'moral obligations' as if that justifies anything. There are things that cannot be morally obligated, no matter the relationship, so the argument tries to prove." +p5950 +aS"And the reasons have been discussed at length and most of us agree about the mother's life being endangered or possibly in cases of rape and incest.........Where we disagree with you is unecessary abortions...such as for birth control, a headache on just and inconveniencce........You think any abortion is alright...We don't....." +p5951 +aS'Should it be legalized? Only if every other country did itIs it harmful? Yes more so then moderate alcohol use and worse then smokingShould it be taxed once legalized? Yes.Should laws still apply to it, such as DUIs and the like? Yes.' +p5952 +aS'Mayabe this is a miniscule amount of suffering compared to what awaits you on the flipside. Weather it be an eternity of Bliss or agony and suffering. Who really knows. Mayabe those who have this happen to them have it coming to them?' +p5953 +aS'You have done a marvelous job knocking down strawmen of your own construction. Having offered a naive and superficial caricature of atheism, agnosticism, and theism, you then imagine a self-serving hierarchy that is, in a word, worthless - all in a silly effort to show yourself most humble. Ironic.' +p5954 +aS"This was a comment on the physics book that has biographies of great physicists that were Bible believing christians. Right. Many believed in alchemy (they were wrong), harmful effects of night air (they were wrong), spontaneous growth of maggots from rotting meat (they were wrong), rats arising from grain (they were wrong), and the Bible (they were wrong). If it is important that Newton believed in the Bible, why isn't it as important that he believed in alchemy and did not believe in the divinity of Christ.There isn't any such thing as science from a Christian perspective. Either it is science, or it isn't.You claimed to have studied evolution. You didn't. Why would you tell us that you did?" +p5955 +aS"Thank God. I too hope it doesn't keep going back and forth. While I live across the river in Parkville, Missouri, I used to live in Overland Park Kansas and went to school there. I think they are generally pretty good public schools, it's just the state school board that keeps effing everything up when they get some christonazis on board." +p5956 +aS"besides pain, there is a plethora of experiences that take place in a person's mind that cannot be yet detected by science. imagination, taste, dreams, art appreciation, etc. even though these things are real, they cannot be quantitatively described in physical terms, so they cannot be treated by science" +p5957 +aS"No no; again, you don't get it. He's only struggling because of people like you who deny the obvious. Rather than listen to what Majerus says about Majerus's project, you're listening to Mr. Mistaken Coyne and the author of the the Science article, which doesn't say what you think it says." +p5958 +aS'Well, to say it has no mental existence doesn\'t really tell the whole story. The fetus WILL have (more than likely) full mental existence in a very short time. It seems to me that if you "view humanity with mental existance as important" you\'d also view as important that the unborn baby WILL indeed reach that point, in all likelihood. ' +p5959 +aS"So, because they don't interpret the bible as you do, they believe that there are no deities? That is what you said..." +p5960 +aS'Again???? Gun control laws by design are meant to kept inner city citizens (i.e. black) from owning guns... Liberal terms such as "saturday night special" all have racist undertones. Also since the majority of gun violence in the US is minority on minority... Who are these laws meant to target?' +p5961 +aS'It also allows SCOTUS to strike down State laws that violate constitutional rights ;)' +p5962 +aS"It's truly amazing that even someone like KH can disprove evolution so quickly." +p5963 +aS'If Obama had his way, standing against the government would be the most patriotic thing someone could do.' +p5964 +aS"That's a bit of a sidestep. Abortion is not genocide because abortion is not destruction of a certain group of people based on race, religion, ethnicity, etc. There is no way to make a case for abortion being genocide without making capitol punishment qualify as genocide. Frankly, I think it's easier to do the latter (yet most pro-lifers are also pro-death penalty).If you want to make an argument, then make an argument. But don't call abortion genocide; that's just dumb." +p5965 +aS'Really, fetal persons are born. Science has demostrated that birth really occurs into the womb, not when one leaves it.' +p5966 +aS'Theropods had hollow bones like birds. It was "developed to be lighter[sic]."' +p5967 +aS"Actually, it hasn't. Phylogenetic analysis has no relevance to Occam's Razor. Further, DNA for all organisms is the same until you examine specific sequences. It isn't that the DNA is different, what matters is the the sequence of the bases is different." +p5968 +aS"And what is the full quote? Was it talking about, lets say for example, tutles, where over 90 percent of them die before reaching adulthood?In many species, that is true. The 'rule of thumb' is that the more individuals do not reach adulthood, the more offspring that species has." +p5969 +aS'If that is a human being, then is my kidney a human being too?' +p5970 +aS'So ban guns? That is like curing the headache by cutting off the head. Why not make it a crime to sell a gun privately. Perhaps make it a legal requirement to go to a licensed firearms dealer who at no charge to the parties other than the cost of the background check run the potential buyer through the database. I would certainly be willing to do this. As a responsible gun owner, I would hate to think that the firearm I was going to sell to someone might be going to a felon, or someone likely to use it to commit a crime. ' +p5971 +aS'Just because we interpret the available evidence differently, for you to assume from that, that we believers know nothing about the universe we inhabit is arrogance to the max.' +p5972 +aS'No. I will never allow "the people of the country" to tell me what is best for my my life or my health.To quote Jane Austen in Pride and Prejudice."I am only resolved to act in that manner, which will, in my own opinion, constitute my happiness, without reference to you, or to any person so wholly unconnected with me."' +p5973 +aS'we do......most fossils found are surface finds -- which means anything found on the ground probably contradicts uniformitarian principles because every fossil found laying on the ground probably -- according to ToE -- did not die at the same time. For example, many mammal bones are found on the surface -- yet so are dinosaur and other "ancient" bones from animals that supposedly lived millions of years beforehand. Of course evolutionists will come back and claim "erosion" with no evidence of such, not to mention how rock can be removed from bone after millions of years of being cemented to it.I\'ve got a 900-page book called "Hidden Archeology" (Cremo) that dives into hundreds of fossils and artifacts that are in the "wrong" strata. Your assertion is blatantly false.' +p5974 +aS"I can see what you are saying. It's pretty much true...being a Jewish homosexual, I know it first hand. But just for once, couldn't they pick on somebody else?It seems almost like a bully tactic for the Christian heterosexuals who are against same sex marriages to pick on someone who doesn't have a legal leg to stand on...that's sad." +p5975 +aS'Nonsense. The most widely accepted idea is that these epics were oral traditions that were finally recorded in writing, possibly by a guy named Homer. Read and read.' +p5976 +aS'Nearly all the food humans eat today, even in the Western world is GM including maize, tomatoes, and soy, etc, etc. used as ingredients in products such some soymilk. Essentially everything is with the exception of "organic". However, as i noted above, I wouldn\'t make this argument because I think GM soy esecially is not very healthy for people snd GM foods tend to be more prone to bacterial infection which can make people sick. I haven\'t read from all sides, however.' +p5977 +aS"I disagree. I've been in a loving, committed relationship for 25 years to the same person exclusively...how does this have a negative affect on you?" +p5978 +aS'And last years stats say, 3rd July 2009 The most violent country in Europe: Britain is also worse than South Africa and U.S.' +p5979 +aS'So there you have it: AMENDMENTS ARE PART OF THE CONSTITUTION.' +p5980 +aS"Thanks, Clive, you're a good sport. Of course I can't agree with the idiot part. Rash, unwise, unknowledgeable, maybe, but not fools." +p5981 +aS"It's a flawed step in the right direction. I support it compared to nothing. I did not support it when they were considering CUs vs. full marriage. They took the politically expedient way out.Lest you leap to any unwarranted conclusions, my main objection is the blatent inequality inhererent in CUs." +p5982 +aS'The difference of 43 deaths a year is the 4th largest flucuation since 1990 - not what you call insignificant. Would this difference be made if more guns did equal more crime?' +p5983 +aS'Well... someone hasn\'t been following the campaigns for the so-called "protection of marriage" amendments, federal or state.' +p5984 +aS"I think you are on to something.The problem I see is that any proponent of a plan such as this will have toi take on both the health insurance lobby and the pharma lobby and their bottomless well of $$$ and propaganda.Here's hoping now that there's a new sheriff in town." +p5985 +aS"Well, in the case above, it was step-by-step. First, an existing enzyme was modified to a new use, and over time, became refined to work better and better. This is the way evolution works. Nothing is de novo; it's always a modfication of something else. Second, a mutation produced a regulator that only allowed the enzyme to be produced if the substrate was available. Again, this was refined by natural selection over time. In the end, the newly-evolved system was irreducibly complex, because all three parts have to be present for the system to work. And do show us your numbers proving that such processes can't produce new information. If you don't know how, I'd be pleased to show you how a mutation changes the information in a population." +p5986 +aS'So would you care if abortion were outlawed. If so, what would be bad about allowing a view that places objective value in human life to be the basis for making law?' +p5987 +aS"I didn't answer or you didn't understand? Actually I did answer. The knee joint I described is from a bipedal hominid - there is no question about it. The skull, even though I gave it very ape-like features, is from a biped. There are many examples of what I described." +p5988 +aS'That would be more likely than finding evidence for abiogenesis.' +p5989 +aS"Oh really ? Parts of New Orleans were under water for more than 40 days before all the water receeded. Hasn't the plant life there replenished naturally in the wild ? Of course it has. The Earth is very able to repair itself in spite of modern mans sense of self importance. Here's some interesting photographic evidence of it. www.pbase.com/andrys/noah" +p5990 +aS"Or that they tend to be better prepared, or even less willing to accept help from others or get breakdown cover. That's the trouble with these kind of stats, the interpretations are pretty open to debate." +p5991 +aS"I didn't vote for a republican or a democrat in 2008 and in 2010 it doesn't matter because my rep is not challenged." +p5992 +aS'So do I, but my reasoning is highly speculative, even by my own standards.' +p5993 +aS'Because the men who wrote it mixed their mythology in with their heros. The first 11 chapters of Genesis are obviously mythology. And if what you say is true, then I guess that means that the Illiad is historical. Why would Homer be right about some lives and events, but wrong about others? And of course, there are other parts of the Bible that are pure fiction - Jonah and Job for example.' +p5994 +aS'the fetus would be a real person...and it seems like....in order to make the iraq war/abortion connection....you would have to support the war!' +p5995 +aS"Well if they're automatic weapons then they're obviously importing them illegally from outside the country and violating federal regulations. You've got even bigger problems than you think." +p5996 +aS'Well this is what i am saying. The probability of a and b in one organism i very low. And the probability of A and B in many generations is lower than just A. This is what Behe deals with in his book. One reason evolution of primates interest me more than bacteria is the the number of organisms and generations is much much lower, and the changes involved must be pretty big. It involves Real evolution as opposed to stuff like antibiotic resistance or sicke cell haemoglobin that i see more as a reversable adaption, not a developement to a permanently better/more complex state. IMO there should be possible to make some sort of calculation regarding the probability of RM being cause of the changes.' +p5997 +aS"Actually, Mega didn't make any claims. He just reposted an editorial." +p5998 +aS'Really? Do all your views depend on somebody else changing them for you?' +p5999 +aS'I think our culture is going to play a big role in this as well. I think that is where the majority of this problem lies.' +p6000 +aS"But your new language would be meaningless. The definition of a circle or a square does not vary from language to language. Mathematical definitions are not matters of opinion but quite precise descriptions so that all mathematicians will understand what is meant when the term is used. The words may change but the meaning doesn't. Math is not opinion. It is not my opinion that a triangle has three angles. That is a matter of definition.Apparently Habbit doesn't understand that substituting the words of another language does not change the concept. That sort of argument is basically ignorant XXXX." +p6001 +aS"Well, I've personally measured the gravitational pull of a ball of lead about 5cm in diameter. Are you suggesting that angels push the planets around? That was the leading theory before Newton." +p6002 +aS"That's why the Second Amendment protects the private ownership of arms like the .50 BMG and other such powerful weapons." +p6003 +aS"This is not my problem. As I explained above, I just have to show inconsistency in order to reject the validity of all the claims in the Bible as being undeniable truth. And with the Bible, that's damn easy to do." +p6004 +aS'Well said. With this religion, the gap is very wide between the "average guy" and "authority", because their clergy is more involved in politics than the clergy of Christianity, or the Creator himself. It fits with more Democrats being evolutionists, and more Democrats favoring bigger domestic government.' +p6005 +aS'I would suggest you look at the faero island mouse then. That is a new species, and it is not man doing it, but rather nature itself.' +p6006 +aS"Ah, you've engaged in the grammarian nitpick function of debate. Sad, but predictable. Obviously, I was discussing the entire article, which is making that argument. It is generally bad form to quote an entire post when it reaches such length." +p6007 +aS"Guess what, I'm pro-life as well, that is why I'm also pro-choice." +p6008 +aS'Hope you have fun carrying your pistol through the post office lobby!' +p6009 +aS'Ok...many many people have been killed in Africa because of the policies of the countries in the EU, South America, Asia, and so on....this hypocrisy annoys me.' +p6010 +aS'Because it shows that Ockham was arguing against what Hi_Its_Me says the Razor is.' +p6011 +aS"** This is the best response you've got!?! What a loser!!" +p6012 +aS'ICBM, but I believe the termites make up the largest land-based biomass on earth.' +p6013 +aS"So now Wiesmann's barrier is the most important thing to the ToE? Somehow I doubt that biologists agree, but obviously creationists have more authority on the topic of evolution..." +p6014 +aS'They were both created on the sixth day according to Genesis 1.' +p6015 +aS'Doctors ARE schooled in nutrition, however inadequately, this doesn\'t mean they\'re going to recommend crackpot "raw food" dietary schemes to prevent destructive "lamarckian evolution" on the basis of a single flawed experiment on cats.' +p6016 +aS'Your right, this is not complete free will. But as I mentioned before, if you give yourself free will, then you are saying God has no control over you or your actions -- and therefore he is not God anymore.' +p6017 +aS'I will agree science has disproven the literal reading of a number of different scriptures, such as the literal reading of Genesis (which was never meant to be literal to begin with, but that is a different matter).It also might explain why spiritiual beliefs exist for people.However, when it comes to this vaguly defined entity that alledgely created the universe, science has nothing to say about the existance of this alledged supernatural being.' +p6018 +aS'Last time I checked, it was a debate about religion and evolution co-existing. Not a debate about Creationism vs. "science" and "reality".' +p6019 +aS"Yes the facts speak for themselves, they just don't sing the song you think they do. No biologist will find any need at all to wave any hands in this instance, for as you say the facts DO speak for themselves." +p6020 +aS'Like most things theists that statement is based on ignorance.' +p6021 +aS'I think we should not spend inordinate amount of resources on trying to determine who is homeless and if it his own fault. Anyway, whose business is it where someone lives?' +p6022 +aS"What possible concern is any of that to you? Some actually search for knowledge through debate. This is a debate forum if you recall. Don't play if you're not so inclined but to post warnings not to fall in this trap, c'mon." +p6023 +aS"Yes I know, a lot of people have done a lot of work to try to refute Behe's work. From your link;" +p6024 +aS'Now you\'re being ridiculous. The big bang is not the evolution of the universe. The words "evolution of the universe" do not necessarily entail the big bang. For example, brane theory offers an alternative theory to explain the evolution of the universe.But claiming that the "evolution of the universe" is part of the theory of evolution is somewhat like claiming that because Kate Hudson has achieved stardom, she is producing vast amounts of energy through hydrogen fusion. Why is it that creationists believe that every word has only a single meaning?By the way, I have always heard the creationist invention "GTE" referred to as the General Theory of Evolution - you know, as if there is some relation to the general theory of relativity.' +p6025 +aS"Well i know it wouldn't be sensible for anyone to call my child an it that is just disrespectfull to both your partener and child." +p6026 +aS"Because I don't feel like copying and pasting articles into a forum when they can be easily accessed online. But for a quick summary: The CCR-5 gene mutation is present in about 15% of caucasians, with 1% having the homogeneous version. These 1% are completely immune. The heterogeneous people possess some immunity." +p6027 +aS'Being refuted by organized groups with an agenda they support does not make Supwersports ideas wrong. You call it garbage. I AM interested in what Supersport thinks about how his ideas will get wider respect and how he thinks this will change our society.I think this is an important question, because otherwise posting here seems like a kind of mutual masterbation trading facts and arguments that have no effect.Until I hear from SS, I give him the benefit of the doubt.' +p6028 +aS'For once I agree with you. Your wrong on your thoughts and views with evolution but your right in saying that abortion is wrong.' +p6029 +aS"But isn't that the problem? This creationist decided that science should be limited to his religion. He's afraid of flying." +p6030 +aS"It's all in how you word the questions.You worded the questions with an obvious bias, they did not come across as an honest attempt to learn, but rather as a challenge.Word them properly, and I guarantee you that the people here will be most helpful.WaxyP.S. Your username has a large affect on how you are initially perceived." +p6031 +aS'I am so sorry to hear about what has happened to you. I hope you get away from this terrible man and surround yourself with people who love you.I must ask, though, why are you a Christian? You completely disagree with typical Christian sentiments on abortion, you feel none of the purported guilt the religious movement implies is inevitable, you feel like you did the right thing, so why would you continue to profess to belong to this religion if you disagree with one of the major issues of the day?' +p6032 +aS'Yes California is following European socialism. Just like socialist Europe, they are going broke. Socialism depends on large income taxes to fund social programs. Try the same taxes here in the USA and people will get thier guns and shoot all the politicians trying to tax them. Remember this country was born over a fight over taxes.' +p6033 +aS'The article is saying that it was genetic changes. Changes in genes encoding certain transcription factors is what caused changes in the expression of other genes.' +p6034 +aS'so if cells are controlled by their genes (and the environment), what would you predict would happen to the cell if its genes were removed?' +p6035 +aS'I think that the bad guys will be happy if any gun control law goes into effect, because then there will be less chance of the victum having a weapon for their defense, and the crime rate will rise!!!!!!!!!!!!!!!!!!!!!!' +p6036 +aS'Well, first, those were Hebrews, not Christians. Secondly, the scripture doesn\'t say they raped them, it says "keep them for yourselves." That could mean rape, however, I\'m pretty sure that was not Moses\'s intention. Also, the Hebrews considered it impure to lie with non-Hebrew women or men, so if there was any sexual immorality going on it was very small. However, that DOESN\'T mean it was justified or right.' +p6037 +aS'Demographics plays a role, but it does not explain away the whole shift in the numbers.' +p6038 +aS"While the current cannon was 'accepted' by the late second century, there were numerous other 'gospels' that existed by then, and were eliminated at the 4th century time frame. Most of those copies were destroyed, but some have been unearthed." +p6039 +aS'Gary Ridgway, the serial murderer of some 60 or more women, possibly more.' +p6040 +aS'So why are you here? Do you have anything to offer of any substance?' +p6041 +aS"Actually, Galileo wasn't killed. He was sentenced to house arrest. And his sin was in declaring that the earth moved since the Bible states that the earth doesn't move." +p6042 +aS"That's is ridiculously poor logic. Simply becuase the church makes mistakes doesn't mean it's incorrect in all other charges. The US government is WAY more corrupt than the Catholic Church, and yet we obey every god-damned thing big brother makes us do." +p6043 +aS'"Supposedly"? You ran from those threads. You are the one making assertions that you don\'t back up. You are the one unwilling (i.e. unable) to show that Arctic foxes can adapt to a Phoenix summer. You are the one who keeps ignoring (what I will henceforth refer to as) The Chihuahua Challenge. For somebody claiming to be so clearly right and so obviously vindicated by the evidence, you\'ve done nothing to show it, and you\'ve done everything to run from it.' +p6044 +aS'Because, when each is in its natural habitat, they are reproductively isolated.' +p6045 +aS'Oh, really? Does that mean that pesticides will be OK on marijuana plants? NO.' +p6046 +aS'George Tiller shot to death at Wichita church | News Updates | Wichita Eagle' +p6047 +aS'So you are saying that the democrats have no choice but to inaugarate Brown and let him stop the bill? You suggest that whatever option they pick will be political suicide.' +p6048 +aS'Regardless of the name change, the calendars are still keyed on the birth and death of Christ...and that will be so at least until the atheists are able to come up with another numbering system and force it on everyone else just to pacify their own baby mentalities.' +p6049 +aS"Actually, I snipped your remarks because 1) you twisted what I said and 2) I'm already spending too much time arguing with random complainers and I was in a hurry to do something more important at the time." +p6050 +aS'Only approximate and really depends upon what day you start counting, before or after menses.' +p6051 +aS"oh, now we're getting somewhere. Explain more, please. Oh, and some evidence of incremental modifications would be nice too." +p6052 +aS"Why do people on the pro-gun side continuously try to oversimplify the issue? No one is really arguing that there would be zero murder without guns. The question is would there be less murders without guns. In developed nations with stricter gun laws there are less murders. At any rate, I don't think you can draw such conclusions based on one incident." +p6053 +aS"well heck, if lifeforms cannot realistically be strung together by small, gradual, materialist increments (which they can't and there is no evidence for) then the only alternative is special creation." +p6054 +aS'I wish you guys would quit trying to "muddy the waters" by introducing facts that contradict my claims, innuendo, cliches and WAG. - signed X gazer' +p6055 +aS"You mean to tell me it's a falsehood?? I don't believe it." +p6056 +aS'It is pretty bizzare. There are plenty of groups out there that will reach whatever "conclusion" you pay them to reach. Why he didn\'t cite one of them instead of an easily checkable source that says the opposite of what he says they do is beyond me.' +p6057 +aS'Because Humphreys went out looking? How many should we allegedly find?' +p6058 +aS'I\'ll address the later question. They may not "need" teeth that big, I couldn\'t say. Just because a creature has a feature doesn\'t mean its necessary or useful. While evolution does select for useful traits and against harmful traits, that doesn\'t mean that a trait won\'t develop that is simply odd. As long as it isn\'t particularly negative there\'s no reason to assume it will go away, and so sometimes you get traits that aren\'t "useful", they\'re simply not harmful. Those teeth could be such a case.' +p6059 +aS"I have posted responses to Demon38's earlier post. I have offered DNA findings as evidence to begin with. It is not my evidence, but scientific evidence. That is the only evidence that I will provide in this discussion. I think there is ample evidence to cause scientists to rethink their theories, evidence that they do not want to accept because it puts certain hypothesis they have advanced in a poor light." +p6060 +aS'And the comments section is usually where the real comedy lies.' +p6061 +aS"But wouldn't it make it more likely that a gun dealer that was involved in gun trafficking would be audited and caught by the ATF? If there are less FFLs then the ATF has more time to monitor and inspect each gun dealer." +p6062 +aS'I think an open mind is the best thing to have when it comes to theories. I think there is some truth in everything.' +p6063 +aS"Again, it's not the point. There are many who don't deny evolution, they believe it was guided. Showing examples of guidence - through artificial selection supports this theory" +p6064 +aS'and my wife is also a lot more likely to be overpowered if she has to close to with in a couple of feet of an invader, than if she can stay 15 or 20 feet back.' +p6065 +aS"There's nothing to help, because what you said has no resemblance to reality.If someone is a junkie, they might also smoke pot, or if someone is a crackhead, they might also smoke pot, but the large majority of pot smokers DO NOT do heroin or smoke crack." +p6066 +aS"So 5,000 to 10,000 women dying from illegal abortions isn't high? Dude, that is nearly five times the number of women who were dying from abortions in the 1940s! That is VERY high!" +p6067 +aS'not according the SCJ of Mass. This was part of the grounds of their ruling FOR marriage in Mass.' +p6068 +aS"And that is meaningless babble. Evolution is a process that has been observed whether you like it or not. It is not a moral statement nor is it a statement of faith. It does not deal with government, laws or culture. Whining about it won't change it." +p6069 +aS'No, the question is why you let violent individuals remain free in public.' +p6070 +aS"So what if the author isn't arguing against gun control? At last, there is indication that England has taken a step in the right direction and realized that taking all guns away from everybody isn't the answer to crime." +p6071 +aS'Because the location of the tracks used to be a tidal plane. In other words, it used to be at the edge of the ocean. Around that time the sea coast advanced and receded several times. The tracks were buried. The tracks actually had to be uncovered. The tracks were originally discovered immdiately after an unusually severe storm in the area in which an unusual amount of water came down the Paluxy. That unusual flow of water washed away the soil that covered some of the tracks. Other tracks have been intentionally uncovered. For example, in one case, where a trackway went under a bank, several feet of the bank was removed to expose more tracks.' +p6072 +aS'Because it will encourage teens to engage in riskier behavior. Abstinence until marriage is still the best way.' +p6073 +aS'again, please explain what possible benefits you forsee with teaching intelligent design. Please show me where it is anything than a belief. Evolution was always considered science. It used the scientific method, and offered evidence for everyone to see and peer review. Until the "theory" of intelligent design does that, I will always be forced to put quotes around the word theory, because it will simply be a religious belief.' +p6074 +aS'"A story in some early editions of yesterday\'s Daily News incorrectly reported that gun-control advocate Sarah Brady may have skirted Delaware\'s gun laws when she bought a rifle for her adult son but did not declare who was going to own the weapon."The Delaware Department of Justice initially insisted to The News that gun purchasers must declare who the weapon was intended for so that person\'s background could be checked. Yesterday, a spokeswoman for the Delaware Department of Justice said it misinterpreted the law and that Brady was not obligated to state that the gun was for her son as long as he was legally qualified to own a firearm."In addition, a spokesman for Brady said, \'Sarah Brady told the gun store that the gun was for her son and filled out the forms that they asked her to fill out.\'"The News regrets the error."CORRECTION' +p6075 +aS'It is in the first place unclear to whom the "further harm" is done. But even granting that the fetus dies, it is not clear how the situation is analogous to abortion, because the intentions of not only the man but even more importantly of the pregnant woman are completely different.' +p6076 +aS'In 2000, the U.S. recorded close to 11,000 firearm homicides and more than 16,000 firearm suicides. The European Union -- an area with a population approximately 25% higher than that of the U.S. -- reported fewer than 1,300 firearm homicides for the same year. In Japan, the number was 22.sinjin - The US firearm homicide rate is more than 180x that of Japan.' +p6077 +aS"Again, true. But that doesn't take into account that there are two populations under consideration." +p6078 +aS'The purpose of the Bill of Rights. Preamble to the Bill of Rights' +p6079 +aS'Actually, you have slipped into talking Bible here and seem to be refering to the miracle of Lazarus.' +p6080 +aS'Oh, probably about as many as there are killed by bayonet lugs, pistol grips, heat shields, detachable magazines, and folding stocks.' +p6081 +aS"So the stats come from John Lott.... Wasn't he the one who got caught making up statistics and impersonated a woman for three years to support the pro-gun cause? http://articles.latimes.com/2006/may...on/oe-wiener31http://whoismaryrosh.com/....a bizarre individual who I don't think can be trusted." +p6082 +aS'you know why? because God touches our hearts like nothing you have ever felt before. it is amazing' +p6083 +aS"Actually, the majority of my first post in this thread came from Robert H. Churchill's article who is an advocate of the individual rights interpretation." +p6084 +aS'If information came into being by chance, how can we know that anything is true? How do you know what is false and what is "true"? If we are just products of chance, your brain is also a product of chance. Therefore, the thought patters that determine your logic are also products of chance. If your logic is the result of chance processes, you can\'t even be sure it evolved properly. You can\'t even be sure you can reason properly (using your definition) because you can\'t trust your own logic.As for the second part, no, you\'ve got it backward, rational belief is based on faith in a rational creator. References:* The Creationist Basis for Modern Science.* The Lie: Evolution ~ Ken Ham.* Evolution: Fact or Fiction? ~ John Blanchard.' +p6085 +aS'The difference, Eddie is simply this. If the Constitution needs to be changed, the founders instigated a means to do so. Said means is doubly hard as to make sure what is done, has been given much thought and study. The plan afoot today by the Gun Grabbers is to incrementally usurp the rights of free men, until, the fait accompli has been established. If the Right to Keep and Bear Arms, or any of the other rights guaranteed by the Constitution are to be abridged, they must ne done so by legal means, i.e. constitutional amendment.' +p6086 +aS"ToE is a mechanistic theory -- it says life is like a machine. Machines aren't intelligent, they just do what they're made/programmed to do. Darwinists say lifeforms do what they do because of the way their particular genes program them. This is basic stuff.....yet you come along and say this isn't so. So which is it? Is life intelligent or not? If it is intelligent, what is illogical about believing life was designed intelligently by an intelligent designer? The intelligence had to come from somewhere. Where did the information in the DNA code come from?" +p6087 +aS"Not if they give him the death penalty, then it's apeals till your ears bleed." +p6088 +aS'Not quite. To be more correct regarding government and guns, the right to own weapons is for the right to revolt and revolt with violence.Our political philosophy is very clear on this:"that whenever any Form of Government becomes destructive of these Ends, it is the Right of the People to alter or to abolish it" - Declearation of IndependaceYou have the right to try and revolt with violence. You don\'t have the right to win a revolt.' +p6089 +aS"But we weren't discussing either monkies or hell. One can only wonder at your thought processes that makes such irrelevant and disconnected thoughts pop up." +p6090 +aS'Actually, 2 viruses and a bacteria have been constructed by building the genome from nucleic acids.' +p6091 +aS"If that's true, then Freedom of Speech is doomed. Harassment is subjective. Now I can claim that a book I don't like is harassing me, and it will be banned." +p6092 +aS"I'm still confused by this comment. Did you actually mean that? If you did, that is not Pro-choice but Pro-abortion. Women did not have a choice in whether their pregnancies were terminated or not which, having it, is the definition of the PC point of view. So no, they were NOT Pro-choice." +p6093 +aS'The memo is real, nobody has ever been able to disprove it. Handgun Control Inc. (the people who later became the Brady Campaign) have claimed that the memo is a hoax and that what was released has never been their official position. However them simply stating this, is no different than Obama making a statement on national news, and then several months later saying "I never said that" and trying to reverse his position.Until it can be proven beyond doubt as being untrue and simple propaganda, the memo is real and explains in detail exactly what the gun control groups are after.' +p6094 +aS'Not all evolution takes place over billions of years. There has been speciation that we have actually seen occuring within a few years at a time. "bacteria, birds etcs."Natural selection occures frequently. You can "observe" evolution through the fossile record, DNA, morphology etcs.Evolution has made predictions, these predictions have come true, ergo, it\'s good.' +p6095 +aS"Yep. But our ancestors lived in an area of abundant fruit, and we got all we needed from our diets, so it was no big thing when the gene broke. A few non-primate organisms also have it broken, but it's broken in a different way.Barbarian observes:It's remarkable then, how much progress we've made. You may or may not approve of the theory, but it works very well at learning more about biology." +p6096 +aS"Then for you, you made the right decision at the time. I'd personally have been leary of not getting to work or go to school easily from the doctors statements, especially in regards to keeping the child." +p6097 +aS' I know a bit about this myself. However the difference is that I was allowed to carry a gun under the reasonable man statute. An Armed person truly cannot be bullied! The old saying is. God created man and Samuel Colt made them equal! Old, disabled, female and all, are on an equal footing with these vicious predators!' +p6098 +aS'You have any examples of that? Shooting people for throwing rocks and eggs at houses that is.' +p6099 +aS'What we have here is simply a perspective problem, which is the problem with most debates. I see the Bible as sound, and every "error" in the Bible I have researched (I have admittedly not researched them all) have been refuted.' +p6100 +aS"I think they have more of a chance becasue, while many manage to delude themselves into believing that an unborn child is not a baby, it would be much more difficult to convince yourself that a crying baby isn't a baby. Even in the animal kingdom (which we are all part of) you see some animals hesitate to kill the young of their own species. Evne coyotes will not generally kill a pup (I have even seen a pack of coyoptes pass a domestic pup without killing it, though they could have. I am told this is because of the stubby nose, which shows the coyotes that it is, indeed, a puppy, even though it looks unfamiliar to them)." +p6101 +aS"Actually, no. If it had not been for the gay couples and the organizations who helped them fight for equality it wouldn't be an issue now, but it would still be an issue." +p6102 +aS'So God gets to do these terrible things, but He gets a free pass because He\'s God?Kinda funny what happens when you show Archie that the Bible doesn\'t even support his beliefs, isn\'t it guys?I still like the fact that the Bible says not to count children under one month of age as persons, yet here Archie expects us to count a zygote as "a human life."' +p6103 +aS'Well, thank you for this thread Santafeur. I must say though that I peruse various threads just to read stuff. The C vs. E topic does not strike a nerve with me. In fact, I also wonder what it is about the human mind that makes people so desperate to want to know how we came about. What difference does it make? We are here now. Could we possibly just accept that we got here somehow, and just move on?' +p6104 +aS'This statement is wrong. People from hundreds of years before Jesus was born prophesied that a baby would be born, in Bethlehem, of a virgin. There were over 50 more prophesies that were made about his life, and the sacrafice he made to pay for the sins of man, and the bigest one of all...He completely fufilled scripture when he rose from the dead. These men were inspired by Jesus, God, how can you argue that he is not the christ? The odds of one man filling all the prophesies is impossible. And these scriptures have been unchanged for the past 2000-2500 approx years! Thats proof for me that Jesus existed and that he is God. PM me if you like.' +p6105 +aS"(My evidence does not require this quote, it's for comparison only)The theory of evolution is based on evidence, the existence of god, is not..Reason cannot be applied to it. Furthermore, since evolution relies on reason, faith cannot be applied to it. To attempt to label science as a faith is a contradiction. I know it irks you that your faith cannot be proven, but that's the definition of faith!! It wouldn't be faith without it. As Montalban says in a contradiction of motives: His particular faith does not rest on the foundations of [reason]. Why then look for support from reason?" +p6106 +aS'From your own link it is very clear the NRA DID NOT say that or publish that. Your clearly very wrong.' +p6107 +aS'And I would agree with you as long as all marriages for all couples were called civil unions and there is no two tiered system.' +p6108 +aS'And for good reason. Electrical engineers in general have a pretty poor track record when discussing issues that have nothing to do with... electrical engineering. Examples: Walter ReMine, Fred Williams, etc.' +p6109 +aS'You still haven\'t learned what Google is have you Yankee Fan?HowStuffWorks "Artificial Life"Artificial Life Likely in 3 to 10 Years - Science - redOrbitAnd relying entirely on insults is not a good way of gaining credibility. It didn\'t work on Livewire, it won\'t work here. ' +p6110 +aS"It would be 'an' analogy, but like the language analogy, it has its limitations.It is interesting to note that creationist computer software developers/programmers cannot seem to agree on the implications of 'mutations' when using such analogies - one such person, C.K. Lester, declared that computer programs can accumulate up to 30% 'random change', just like DNA (hypothetically) can, therefore, the computer analogy is a good one. But programmer R. David Pogge declares that even a single altered bit in a line of computer code a million bits in length would destroy it." +p6111 +aS"Because the Iliad and Odyssey do not claim to be divine does not mean they should be placed under a different threshold as the Bible. Otherwise, it's special pleading on your part, and thus logically fallacious. This is one of many inconsistencies between skeptics in regards to the scrutiny of the Bible. They are unwilling to put the standards they have on the Bible against other books similar in age. If they did, there would not be a single book left standing." +p6112 +aS'Not the way I see it from my experiences. I let the readers decide on their own. ' +p6113 +aS'No one said he invented guns!A straw man argument is an informal fallacy based on misrepresentation of an opponent\'s position.[1] To "attack a straw man" is to create the illusion of having refuted a proposition by substituting a superficially similar proposition (the "straw man"), and refuting it, without ever having actually refuted the original position.[1][2]' +p6114 +aS"Actually, it's not conjecture. The genetic makeup of the several subspecies of arctic foxes bear it out. The dominant allele is rare because it is less adaptive. The dominant allele is most likely ancestral. But even foxes below the Arctic circle show differences in their fur between summer and winter. So yes, foxes that were able to change color in the north had a differential reproductive advantage over those who couldn't." +p6115 +aS'Schumer is a bonafide idiot, as are many in the Senate. He failingly tried to draw Alito into exposing how he would rule on abortion if presented a case. Alito is far too intelligent to be logically trapped by a buffoon such as Shumer.It is also plain to see he interrupts when he supposes the response will indeed make sense against his flailings.' +p6116 +aS'And as their populations grew over thousands of years, civilizations seperate out and independent nations form, laws are set up, and some prosper while others wallow in poverty, how long do you think it will take until people begin to kill each other on your peaceful planets? Nice dream, but real life does not work like that.' +p6117 +aS"Hey, as Collin said, P.Z. registered, and got it. I would say that booting him out is the height of hypocrisy. It confirms to be that it is based on a lie, and the producer knows it. The movie was making a claim that the 'opposition' was silencing I.D., and the presentation of alternate ideas. Yet, what do they do? They kicked someone out they INTERVIEWED for the movie (based on false pretenses to be sure, but they did pay him for appearing in the movie).That sounds that THEY are the ones trying to suppress opposing ideas, not science. Yes, they had the legal right. But, boy did it put egg on their face, considering everything. It shows them to be hypocrites and liars." +p6118 +aS'Straw man. I am not attacking the achievements of science. I am attacking the notion that you have that scientists are exempt from the catalogue of influences that affect everyone else; with only the slightest admission of a tiny possibility of cultural influence - which was quickly dismissed anyway with the false analogy of comparing evolution to aeronautical engineering.' +p6119 +aS"If you paid attention the BATFE said so. Yes but some people don't want to close the borders. They prefer no border controls." +p6120 +aS"But it really does deal with thinking. It can invite a more wide open scientific investigation of ecological and developmental patterns. It's not politically afraid to pursue facts about newly discovered complexities of life which pose problems for those trying to make a case for happenstance origins. It invites thought, not suppression, of irreducible complexity, another problem for happenstance origins. " +p6121 +aS"That's because these questions were never, ever, EVER raised in the original Parker case. None of the six DC people who took the city to court possessed a felony record, they didn't bring up anything other than the fact that DC made it impossible for them to legally buy and own a handgun. That's all the court addressed. If they addressed anything else in the Heller case it would've been judicial activism, legislating from the bench." +p6122 +aS"I don't agree with this debate. If preventing the Devil from interfering on earth should not be prevented by God then why is it that God did prevent the Devil from interfering in heaven after he was defeated? They are both essentially taking the Devil away from an area where he could potentially harm those that are good. God seemingly saw fit for one to occur but not the other. Why would that be?" +p6123 +aS'This is why arguments like "well, our population is out of control" never convince ANY Pro-Life advocate that abortion is okay. I think it is amusing when pro-choice people use such arguments... Pro-Lifers have a priority list, and Life makes it to the top. For Pro-Lifers, it\'s a little like saying "Well, Big Macs taste good, so you should never, ever eat filet mignon since burgers taste good!" I mean, sure, burgers taste good, but filet mignon is so much better.' +p6124 +aS"But the military is pretty much all a volunteer thing. It's not a hiring process--employer/employee thing. That arrangement lends itself more to the soldier not volunteering for service in the first place." +p6125 +aS"Absolutely true!I discovered that with my fluoride research...For whatever reason, most people take another's word for what the truth actually is instead of searching for it themselves.If the lie is an easier pill to swallow than the truth pill, they'll take the lie. emoticonXFrazzled" +p6126 +aS'And how does this compare to your ideas on artificial selection?' +p6127 +aS'Sounds like the Brady Law has stopped a lot of criminals from obtaining handguns.' +p6128 +aS"Finally someone answered the question. Thanks. I thought it might be the government.Does your government attempt to do this?What do you think about other democratic nations that have citizens that are less armed? Do you think that they're in danger - or is it only the American government that's out to do this?" +p6129 +aS'Incorrect- I think Olsen is very specific in citing those he feels have overstepped the mark in this instance. He is not ruling out the possibility of a link at all- he (rightly IMO) is targeting certain workers and publications.' +p6130 +aS'As was pointed out in some of your own quotations, survival is not an \'end\' of natural selection. Natural selection is the differential reproductive success of organisms with more favorable suites of characteristics. It is a statistical tendency. Individual organisms may work to survive, but they also work to reproduce. That\'s as close as it gets to "purpose." And as you know, Darwin\'s favored term was natural selection. He never used the phrase "survival of the fittest" without also making a reference to natural selection. The opposite is not the case. Since Darwin\'s time "survival of the fittest" has been rejected by evolutionary biologists because it is such a poor representation of the extent of the theory.' +p6131 +aS"Actually, it's true. One Darwin's basic ideas upon which he based the theory of natural selection." +p6132 +aS"You weren't referring to your home in your little story of helplessness." +p6133 +aS"No, there really aren't. As for Robertson, why do you think I said he was right (as in global warming is happening and we are largely responsible) by sheer luck?" +p6134 +aS"your probably referring to the mexican basin crater. mass extinction doesn't prove evolution. the flood as described in the Bible is an example of mass extinction. besides, in order for the asteroid theory to work, the asteroid would have to create an almost global tidal wave that would effectively kill the animals by drowning. also similiar to the effects of the flood." +p6135 +aS"Well, I personally agree that I 'spanked' marc9000 (http://www.4forums.com/political/showthread.php?t=6348). But we'll have to leave it to the judges to make the formal decision." +p6136 +aS'The anti-abortionists claim a load of **** on many issues. I don\'t listen to them. To put the "life" of an unfertilized egg above that of a person is grotesquely sick IMO. I support any such stem cell research wholeheartedly.' +p6137 +aS"You forgot to fully quote John 8:18. here is the rest: and the Father that sent Me beareth witness of Me. He isn't bearing witness to Himself here. Two witnesses are, one of which is Himself, which is why He said in John 8:17 It is also written in your law, that the testimony of two men is true. John 5:30-32 is saying this exact same thing. " +p6138 +aS"Well said. Most Americans favor more gun control, but unfortunately this majority of Americans tends not to vote based on the issue of gun control while a very vocal minority composed of gun activists definitely does vote based on the issue. This is something politicians have realized since 1994 so they have been more hesitant to support gun control. There probably will be more gun control supporters in office in the coming years but I'm not sure how much this will change things." +p6139 +aS"It's not about how she treated cops. It's about how cops treated her as an American citizen with rights." +p6140 +aS"What does being a priest have to do with anything? It wouldn't matter if he were a Satan worshipper." +p6141 +aS"I'm not claiming any omnipotent deciever. I'm not sure where you derive 'probability' from, or how you can have any degree of certainty over your past experiences or those of other consciousnesses.And in any case, saying 'it hasn't happened yet' is hardly logical proof." +p6142 +aS"Forgive me if this seems picky, but I just want to try and fully understand this argument. I should say that I don't necessarily agree with it, and would like to respond as to why. I just want to give a proper representation of your argument so that I can make a sound response.As such, you can no more force her, against her will, to provide bodily resources to an embryo or fetus, than you can yourself be forced to give of your bodily resources against your will.... Where does this right originate from, i.e., is it from the US Constitution via the 14th amendment etc?" +p6143 +aS'So a theory was revised... does that mean that it was wrong afterwards?' +p6144 +aS"He didn't! I hope you reported that to the admin" +p6145 +aS"Don't expect your misrepresentations of the findings of those studies to sink in. I'm not that easily fooled." +p6146 +aS"Form 4473, question 11a reads as follows:11.a. Are you the actual buyer of the firearm(s) listed on this form? Warning: You are no the actual buyer if you are acquiring the firearm(s) on behalf of another person. If you are not the actual buyer, the dealer cannot transfer the firearm(s) to you.Sarah Brady lied on the background check form, she bought the gun on behalf of her son and supplied it to him, thus ensuring that he wouldn't have to worry about the NICS check red flagging him. By gun control standards she's guilty of a straw purchase and should've been sentenced to ten years without parole in a federal prison." +p6147 +aS'But the point is why are there relatively few creationists. The reason is that the creationist position cannot be defended in open debate. That is why creationist boards censor opposing views. On boards where creationists are not protected there are few.' +p6148 +aS"So it's the blog's fault that Miller sided with the creationists. Right-o, marc. (I suspect you haven't even read the blog entry in question; I'd be surprised if you've read more than a paragraph of PZ's blog.. ever.)" +p6149 +aS"That's fair enough, but I just think it's important to at least acknowledge and realize that the unborn baby does have worth and importance, and not just a piece of tissue as it's so often callously viewed." +p6150 +aS"And if they are governed and regulated people can be victimized by the system. In fact, the regulation might be the very thing victimizing people. Again, it isn't the system but the people who are in society that make a morality." +p6151 +aS"Now, now ZSU, we learned from comrade star gazer that GW created the Continental Army. I am sure these gentlemen have some equally illogical and inaccurate 'facts' to scatter around the barnyard emoticonXHoho" +p6152 +aS'you should be allowed to buy as many as you want to' +p6153 +aS'Well, yes. Eleven years is quite swift, but it actually supports the theory of evolution through natural selection. The estimates of the speed of evolution that you seem to be depending on were done by George Gaylord Simpson way back in the 1940s or 1950s. Since then, we have observed fruit flies, as well as other specimens, to evolve quite rapidly, showing significant evolution in only a decade or so. More recently, however, scientists have been able to observe evolution in natural settings and have found that it can sometimes be quite rapid when environmental change is rapid. Besides the studies that Reznick did on guppies, there are also the studies of the Galapagos finches by the grants, and studies of anole lizards in the Bahamas. These are observable phenotypical changes, not speciation events.' +p6154 +aS"No, I mean evolution, in which statistically random variation is but one factor. It's a terrible mistake to equate evolution with pure chance." +p6155 +aS'So they had guns that could shoot down planes even before they had planes? Their primitive muskets were that powerful? I am not that easy to fool!' +p6156 +aS'You did when you talked about someone loving objects, or a mokey, etc.' +p6157 +aS'A lot of work has been done on that topic. I would recommend reading Debating Design from Darwin to DNA It is a monster of a book, but it is definitely worth the read.' +p6158 +aS'Yes I do understand this. But you must admit that the instantaneous formation of a living organism, even an extremely primitive one, complete with the complexity of the DNA code as a result of random encounters of atoms and molecules is a little too much to buy. There is evidence right there for creationism. Only intelligence could have formed such an elaborate complex system for the structure of life and its propagation. ' +p6159 +aS'So any long publication must be due to a panic attack? It takes a few minutes to read those posts, but it takes an hour and a half to watch Expelled; does that mean that IDers are having the mother of all panic attacks?Your logic can\'t even be described as "tortured," marc, because it\'s completely nonexistent.' +p6160 +aS"That's right. It merely has the capacity to make errors which sometimes slightly improves function in a particular environment. And those tend to accumulate over time." +p6161 +aS"Exactly. If you are a child rapist and someone pops you in the head than you should go to jail for murder. Sorry, two wrongs don't make a right." +p6162 +aS'So what\'s the deal when GWB "gives" $3,000 but the insurance premiums cost $6,000, the family can\'t make up the difference and the $3,000 goes unspent. All we\'ve accomplished is to transfer $ out of the U.S. Treasury. You think it\'s a good idea to just give money away and not get anything for it? You\'re thinking of the Clinton years when there was a surplus.' +p6163 +aS'Might be something to be said for that. Are there any studies that show possible causes of suicide?' +p6164 +aS"Not at all. The issue is receiving the marriage benefits. If gays were given all of the benefits of marriage for just living together, we wouldn't have a fight at all as you would have gotten what you want. It isn't the marriage that is important to you but the benefits. And the debate in Italy of singles who live together seeking marriage benefits also is a good example of the can of worms that will be opened if society concedes to the gay crusaders the undue rights they are demanding.Why is it absolutely impossible for you to reply to an issue without first redefining it to fit your warped World view? Have you no objectivity within you at all?" +p6165 +aS'Umm...thats the point of saying God of the Gaps - when science fills in the gaps then there is less for your God to do.' +p6166 +aS"Because natural selection works on a cost/benefit basis. For bats and whales and cave-dwelling birds echolocation confers huge advantage, allowing them to exploit niches closed to competing species. For ground- or tree-dwelling terrestrial animals, it would be of marginal or zero benefit, given the 'noise' in their immediate surroundings." +p6167 +aS"this is totally false. the laws of logic being absolute does nothing to support a case for god. in fact, everything the bible tells us about god's nature indicates that god is illogical, unpredictable, unreliable and irreplicable. this is totally the opposite of logic" +p6168 +aS'But does anyone actually need a marriage to do this? No. Are there any laws stating one must be married before giving birth? No.' +p6169 +aS"Not realy they are still being manufactured for civilian use and are legal in most states even in states where machine guns are not allowed. You would be actualy supprised at how available they are. You sign your life away and are no longer a name less face to the feds but you may be able to own one in your state. All thats needed is to get your chief law enforcment officer to sign your fourm 4, pay $200 to BATFE, pass an FBI back ground chk and wait appx. 2 mo's and you have one." +p6170 +aS"Good old monkeys! What can't we learn from them :)Since we are in the Creation vs Evolution section I'm guessing that your debate here is that monkeys and humans show some similar ways of thinking such as in this experiment. It does seem like further evidence that evolution did take place between our two species although it isn't a case cracker by any means." +p6171 +aS'just cause you dont buy it doesnt mean it is not true. that life is sacred does provide a (if not the only) compelling altruistic basis for and responsibility to social justice whether it is actually walked out or not. I think that the fact that it is not really walked out in america proves that the majority of americans are not pro life (including a majority of those who actually claim to be pro life). This doesnt negate the truth though.' +p6172 +aS'The other articles on her website are also well worth reading: Musings on Christianity, Homosexuality & the Bible' +p6173 +aS'Depends on which cell you mean. Mammalian red blood cells, for example, have had their entire nuclei and mitochondria removed. Not so much as a smidgeon of DNA.' +p6174 +aS'addition works in the intangible as well. 1 minute + 1 minute = 2 minutes. 1 idea + 1 idea = 2 ideas. the concept of quantity is not limited to matter. if there was just a vaccous void were absolutely nothing was happening, then there would be no application of logic. but even that in itself would be logical. nothing + nothing = nothing is logical. it would actually be logical if a void with nothing added to it result in something. so even in a void, logic still prevails' +p6175 +aS"Man, these guys can't even get into the science before they're outright lying..." +p6176 +aS'Prove your assertion that he has called himself a conservative Christian rather than a conservative Republican OP. Support your clai if you can or stop trying to lump everyone on the right together.' +p6177 +aS"Actually, it is quite correct. You misunderstand. The text book was trying to make it simple so that you would understand. The text book wasn't simple enough. The first record of carbonaria was in 1848. The discussion you quote was trying to explain quite simply, so that you might understand why the change took place. There is no record of anyone ever seeing a carbonaria before 1848. It is probably a safe assumption that an occasional mutation caused some to be born from time to time, but they were not able to reproduce to the extent that they were ever noted before 1848." +p6178 +aS'Define "many". What you really mean one is too much. Even when the one is used soles for personal defense. Besides your in Austraila, no one cares what you think.' +p6179 +aS'And the follow-on that Archie throws out there demonstrates his ignorance on the subject.Such laws DO NOT just protect homosexuals.They protect EVERYBODY from being fired just cause they are gay OR straight (or bisexual or nonsexual).It protects the straights just as much as it protects the gays.It has nothing to do with "better than" or "superior".If people like Archie understood legislation like ENDA, they wouldn\'t try to make such an absurd allegation! emoticonXEmbarrassed' +p6180 +aS"You have this habit of making sweeping claims with little to no substantiation.And even if we were to completely ignore LeVay altogether, there is MOUNDS of other evidence showing a genetic cause.Like I keep pointing out, but nobody on your side of the fence seems to realize, NARTH's OWN CITED REFERENCES say there is a genetic cause!" +p6181 +aS"Could it be that the Supreme Court does not view the right protected by the Second Amendment as being fundamental? This is the same court that said that only guns in common use are protected by the Second Amendment. That tells me the Supreme Court doesn't think the right to bear arms is as fundamental as other rights protected by the Bill of Rights. The protection of a newspaper by freedom of the press does not depend on the newspaper being in common use." +p6182 +aS'Well, if you breed them, you could get taller monkeys with less hair (and other humanlike characteristics). Even so, it would take a long time.' +p6183 +aS'Well, the 40Ar/39Ar method was used to say that it was 65 mya.This same method was used to date volcanic rock from the Mt. Vesuvius eruption to within 7 years. But the KT boundary was dated using several radiometric methods that all agree to within a couple of million years.Here is where I got that info:http://www.ncseweb.org/resources/rnc...12_30_1899.aspLook at table 2.' +p6184 +aS'I gotta admit, I got a real chuckle out of this one. :pWaxy' +p6185 +aS'But not all "designs" are manufactured. Take the repetitive ridges of sand on a beach. They are created by the motion of the water. Shall I remind you of the humorous story about the "image of Jesus" that attracted much attention, yet turned out to be a coincidence of shadows? This is why I insist upon your defining the terms you\'re using.' +p6186 +aS'You are a known anti-gun supporter, should we really be surprised at your presidential choice. Funny thing is, you are going to get screwed just like the rest of us if Obama wins. He might try to take our guns away, but your rights that are important to you wont be very far behind.' +p6187 +aS'So what this guy is saying is that he believes in natural selection but not evolution?' +p6188 +aS"This is a pretty loose definition.It's like saying you have faith that Jesus will come again because you personally witnessed his ressurection.But you didn't, you have faith because you believe this with absolutely no material evidence or logic to back it up." +p6189 +aS"Well, I have heard people on the pro-gun side say that most defensive gun uses don't involve firing even one round. So limiting the capacity would probably have less of an effect on the ability to defend yourself than on crime. So why are people from the gun lobby always whining about restrictions like this? When semi-automatic rifles were banned in Australia, hunters welcomed the law. They saw it as a challenge because it takes greater skill to shoot an animal with a bolt action rifle. Not so in America where some gun owners like to use guns that could take down planes to shoot small animals." +p6190 +aS'Simone is quite right...women will no longer breed to order according to the dictats of outdated religion. British Muslim women will follow at some point (many already are). There are a few hothead extremists who sit on London street corners with placards stating that "UK will be Islamic", "Sharia Law for UK" etc. etc. But those nutters are ignored along with all the other (non-religious) nutters currently walking the streets of London. (For the record, Muslims make up 2.1 per cent of the total United Kingdom population. They are hardly "taking over" )."muslims are taking over the world" is a poor excuse of a reason to be anti-abortion and shows desperation, IMO!' +p6191 +aS'And he has still yet to provide one. If more gun-control means more lives saved then more gun-control means more self preservation.' +p6192 +aS'And thats factually (and logically incorrect). There are many alternatives virtually an infinitude of them in fact.' +p6193 +aS"And I don't expect you to. The reason you won't go into how all men were created equal during reconstruction is because you cannot prove that all men are not created equal." +p6194 +aS"When it comes to all the examples that Behe had provided in both his first book, and his second book , it has been shown to be able to evolve naturally. That means, in principle, IC systems can evolve. If you don't believe so, bring forth the I.C. system of your choice. To say 'But you don't know all the answers' is just the logical fallacy known as 'argument from ignorance'. Behe brings a system up that he claims is IC.. the pathway for evolution is discovered, and Behe trys another one. How dishonest can you get? The concept is falsified." +p6195 +aS'why the comparison of gun owners yo violent killers and serial rapists? What law have I broken? Since we are doing comparisons your anti-freedom agenda is very similar to the bazi gun control laws of the 1930s, it is like the jim crow laws of the US. Your agenda is one of racism. This is insulting, ignorant, and shows your true colors as an enemy of freedom.' +p6196 +aS"No it didn't, there's no suggestions for how to enforce background checks to stomp out straw purchases. Stop offering non-solutions." +p6197 +aS"You can have reasoned faith, but it need not rely on 'empirical' evidence. There are very many forms of evidence." +p6198 +aS"I think you fail to take into account that for most opposers of abortion, they genuinely feel they are trying to save lives by their opposition. In many cases it's not a matter of trying control sexual prermissiveness in society but preventing lives from being killed. Disagree or not, you can't separate the anti-abortion message from the fact that it holds to the view that abortion is a form of murder." +p6199 +aS"Catholics have a different belief. The goal is to always save both mother and child. If the fetus dies during the attempt to save both, then that's what happens. For instance, with an ectopic pregnancy, the goal isn't to kill he fetus, the goal is to save both mother and fetus." +p6200 +aS'Please off one scientific piece of evidence in support of biblical creation.' +p6201 +aS'I responded to your posts on the thread of "Lets discuss the actual..." I suggest we continue that discussion there.' +p6202 +aS'This is exactly what I said in a pm to her. I also suggested that she talk to women who have had abortions, who have not, who have had adoptions, and who have been adopted. I wish there was some kind of "place" you could go to automatically get this kind of dialogue. Not internet sites, but face to face stuff.Want to start a counseling center? :)' +p6203 +aS"But there is evidence that we do evolve. I'll give you an example. In areas of west Africa where malaria is endemic there is an allele of hemoglobin that confers resistance when heterozygous. In other environments that allele is not beneficial and is, in fact, deleterious. It is fatal when homozygous. Now according to evolutionary theory such an allele should decline where it offers no benefit. Studies show that this allele is less frequent by about 2 percentage points in Americans of west African ancestry." +p6204 +aS"The meticulously preserved, unchanging 66 Books of the Bible aren't compelling?" +p6205 +aS"And why would I be anti Christianity when I am Christian? Oh and by the way to who ever it was who said I don't believe in Jesus, or something to that extent, I never said anything to that extent, you just made up what you wanted and got mad about it. I believe in the teachings of Jesus. Yes I'm betting your asking me how I know about his teachings if I have never read the bible, My mom is someone who has re-read the bible like 6 or 7 times. So she's told me all about it, and what its supposed to teach us." +p6206 +aS'Really! Then I assume that you have read Darwin - at least On the Origin of Species. Otherwise you are babbling. Please cite specific passages from Darwin\'s books where he made "morals and ethics" a joke. Please also do the same for the works of Dawkins. Your assertion presumes that you have read the works of both men.' +p6207 +aS'Because to not view it as sacred presents a greater potential for harm. People sometimes to take a disposable view of things that they consider unimportant. To view humanity as sacred helps protect humanity.' +p6208 +aS"I'm not familiar with the book, so can't comment upon it first hand. However http://www.ncseweb.org/icons/ appears to have a detailed critique of the book and may be of interest to you too. As I say I haven't read the original so cannot judge the quality of the link I'm supplying, so apologies in advance if it grossly misrepresents Mr Well's case." +p6209 +aS'Really, with C being between 1/2 and 2 million defensive gun uses per year. Or perhaps the hundreds of millions of legal, non-defense related, gun uses per year. When you compare the number times a guns are used legally to the number of times they are used illegally, B becomes pretty insignificant.' +p6210 +aS'Proof? All I can think to say is that a mind is a terrible thing to waste.' +p6211 +aS"Actually, I reported the real results of a study. Regular church attendees are twice as likely to vote Republican...etc., the conclusion was, however, meant to be a joke. Most got it, you didn't. emoticonXRolleyes" +p6212 +aS"But still, if you think there are rights in the bill of rights that is wrong, that should not be granted or guaranteed, it would be a viable option to vote for removing them.What debate are you trying to end here? The debate: 'do you want little or less gun-control'?" +p6213 +aS"Honestly I'm not sure if it was ever said in the Bible, but I sure have heard a lot of the Bible thumpers saying free will is a gift from God." +p6214 +aS"Because the modern application of gun control is to target everyone. But that doesn't change the fact that gun control began as a purely racist concept." +p6215 +aS'Well of course everybody is entitled. But as history has shown many southern states in America chose to ignore the Constitution and deny black people their rights on the basis of their skin color, using the "black codes" enacted after the Civil War. If it weren\'t for the 14th Amendment that forced state governments to abide by the constitution, minorities would still be out in the cold.The only thing we\'ve been over, is that government and gun control is racist, not the Second Amendment.' +p6216 +aS'You realise I\'m talking about if the burglar is running away, not the householder, right? Looking at it again I realise I may not have phrased it clearly enough. I\'m saying that some of those "violent" crimes may simply have been burglars pegging it when disturbed.' +p6217 +aS"And many of those countries are having problems with it. Furthermore, we aren't even proposing what other countries have." +p6218 +aS'Simply pointing out that swords cut in both directions. Be that as it may, no one has refuted that there are more cases of Concealed Carry Permit holders who have gone off and assaulted people than there have been school shootings. Care to try? Omegaman tried, failed, and went silent on the topic.' +p6219 +aS"Well, I forgot to add one thing: a legal notice to the gov't about such behavior." +p6220 +aS"Well before there was a law someone came up with a difference, I didn't ask if they end result was the same, I asked if there was a difference in the two. Maybe a moral difference or something." +p6221 +aS'Give it a rest... what is evident here is more coffeehouse vasilation on your part... no foam.' +p6222 +aS'It is ALL repeated time after time, and time again then again. But you are correct. Here is one of the links to those studies. emoticonXSmilie http://www.4forums.com/political/gun...tml#post354115But what do we do about this? http://works.bepress.com/cgi/viewcon...dennis_culhane Which is a study of criminals shooting criminals but it is hoped that people will think it is about Law Abiding Concealed Carry. This is NOT representative of Law-abiding Concealed Carry or legal gun ownership in any way. And we have this.Guns and Death - Firearms Research - Harvard Injury Control Research Center - Harvard School of Public HealthSo lets look at the actual crime figures to see if any of this holds water. According to this 1999 article there were 250 million guns in circulation in 1999. Total NICS Background Checks November 30, 1998 - June 30, 2009 ' +p6223 +aS"It's all very interesting, but you left out a critical piece of information. You deliberately omitted the fact that most of the black victims were killed by fellow blacks. These weren't murders carried out by racist white guys, they're the examples of black on black violence." +p6224 +aS'Problem is, you think requiring a woman not to kill someone is "treating them as breeding animals". Kind of an odd thought.' +p6225 +aS"I have heard that the USA spends around 40% (total) more on health care than Canada does. That would be impressive if it weren't for one fact. The USA has 900% of our population. It is your administration costs what are getting you the most. We only spend around 11% on administration while the USA spends around 25% of their health care dollars. We have a cap on how much a doctor can be sued for as well. Yes, our system isn't perfect, but it still works.Nearly 50 million Americans don't have health care at all, that is around 18% of your total population. This is quite shameful. As I've stated, the USA is the only Nation in the Industrialize world to not have universal health care." +p6226 +aS"Are you saying that given enough time you can come with answers? That's a statement of faith." +p6227 +aS"Brinks plays on people's fears to sell security systems that don't even work. Insurance companies play on people's fears to sell their policies." +p6228 +aS"Hi Smallax, welcome to the forum. I did a search and have found some products which might give you an idea about costs and concepts for performing such an experiment. It sounds interesting by the way.First, I found Glass Bell jars that are safe at high pressure. https://www1.fishersci.com/wps/porta...=y&fromSearch=Here's a Nalgene vacuum chamber as another option to the Bell Jar depending on the pressure you're going to use.https://www1.fishersci.com/wps/porta...=y&fromSearch=Here's a motor driven vacuum pump: https://www1.fishersci.com/wps/porta...=y&fromSearch=Here's a precalibrated absolute zero apparatus: https://www1.fishersci.com/wps/porta...=y&fromSearch=This link gives a wide range of products that you might want to be aware of for a wider selection of potential equipment:https://www1.fishersci.com/wps/porta...&catCode=SE_SCHere's a fiber optic system which is interesting and utilizes natural light: Huvco Daylighing Solutions | Parans Fiber Optic Systems | Tubular Skylights | High Performance SkylightsHere's another design but is a different company: SUNLIGHT DIRECTKeep us informed if you run the experiment. I'd be interested in the results." +p6229 +aS"I looked it up and apparently there is a synthetic form of THC on the market, (generically known as Dronabinol and sold under the trade name Marinol). But it is only allowed under restricted prescription (it's a Schedule II controlled substance, the same as morphine or cocaine) and is far less effective than plant-derived THC." +p6230 +aS'Let me explain this to you.You want to stop abortions for someone else. You want to take a womans right to choose away. Where as Jito supporting a womans right to choose does not impose upon your life in any way.You want to stop me from being able to marry this does not effect your life in any way yet has a devastationg effect on my life. The left supports rights while your side want to limit the rights of others.You want to stop me from being able to marry because you have a religious belief against it even though I may have a religious belief that supports it. Therefore you are imposing your religious and moral views on me when I do not share those beliefs.' +p6231 +aS'Actually, society hasn\'t said this. 5 judges, in very recent times, have. I for one think that some 17 year olds fully comprehend the full implications of murder, and therefore should be held accountable in the same way as an 18 year old. I guess I just don\'t see any reason why a jury could not address the issue on a case by case basis. I do not see the "18 and over execution rule" in the eighth amendment.' +p6232 +aS'Right. They can never show how the belief in their deity is not a textbook case of the special pleading fallacy. (Pretty funny after all the hubbub earlier about double standards...)' +p6233 +aS"Because Africa isn't one big homogeneous ecosystem. There are jungles, plains, deserts, swamps. Himps living in the jungle weren't in competition with himps that started migrating out onto the plains. Their food sources are different, their territories are different. The more suited to plains-dwelling we became, the less attractive a prospect it was to return to the jungle. Pretty straightforward, really." +p6234 +aS'I wouls also add that humans have been able to make CHIHUAHUAs and Irish wolf hounds from wolves.' +p6235 +aS'********. Utter fraking ****. Scientists have already accumulated mounds of evidence which suggest the common ancestor. You choose to ignore it as do most scientifically ignorant christians.' +p6236 +aS"Yeah, it does have risk unlike the embryonic stem cells, but I think that if it comes out the way they hope, it will eventually lead to more embryonic uses as well when people realize that this can have risks. I think it is good to have this way as a back up while people argue over the use of cells that would otherwise be disposed, and get some treatment to people who need it rather than letting it be denied to them by anti-abortionists. And yeah, it's pretty much guaranteed that someone will find something to object about, claiming it is immoral (maybe it will now be that these stem cells are potential human life and we can't use them emoticonXRolleyes ), but it will likely not have as many objections." +p6237 +aS'No contradiction; the Permian extinction was the most severe in history and noted as such in the page linked.' +p6238 +aS'Of course not. That battle has already been lost. Creationism is religion and it cannot be taught in a science class, even when it is called "creation science" and the data is distorted and mininterpreted. The most recent attempt by creationists in Kansas on the State Board (and yes, they were YECs) was to eliminate all requirements to teach evolution, and all references to an old earth from all curriculum standards.' +p6239 +aS'I believe in a strict interpretation of the Constitution, this makes me neither a liberal or conservative. The SN was inspired by VOR who kept signing his posts with quotes from Karl Marx.' +p6240 +aS'Agreed that they are still the same species, much like the "13 species" of Darwin\'s Finches, and I have no problem with evolution in that respect. I can even see the plausibility of different subspecies evolving eventually into different species if they are geographically separated for a sufficiently long time. But I still don\'t see where evolution, in that sense of the term, can account for dozens of species of monkeys occupying the same patch of rainforest, or dozens of species of gazelles occupying the same patch of grassland.' +p6241 +aS"The reported killings in European countries have rivaled the levels of Columbine. Quite a feat for a country with strict gun control laws. How can even a rare and isolated incident in a country with draconian gun control, meet or exceed something that's supposedly relatively common in America?" +p6242 +aS'And as such, the term as you use it is utterly meaningless as it could be applied to any cell or sell remnant of human origin.' +p6243 +aS"A master baiter like you should present your thesis to be taken seriously, you haven't and you aren't. " +p6244 +aS"'Self-defense' never enters into it, imo. Unwillingness to share ones body is not necessarily self-defense, so this does not apply." +p6245 +aS'You should have said that. I might have agreed with you.' +p6246 +aS"Wrong and no one has ever called bone marrow an inner sanctum and I don't know what a baby's tabernacle might be." +p6247 +aS'Almost all did. In fact, probably all that you are aware of did. Even the energy in the steak that you eat came from the sun ultimately. The thing is that evolution seems to have resulted in an organism to take advantage of almost every form of available energy. And what energy is left by "higher" animals is used by others - insects, microbes - until there is little usable energy left. That even goes so far that there are some organisms that get their energy from geothermal sources - no light involved.' +p6248 +aS"AGREED!!!!That has to be BY FAR the best series I've ever read!Also, Asimov's Foundation triligoy is good. And again, the classics:Fahrenheit 4511984Catcher in the Rye...and all those other depressing books..." +p6249 +aS'And some of those tests fail. There are holes in the theory of gravity. Yet gravity remains fact in simple every day terms. Evolution is fact because "we can observe it\'s effects on objects and we can do tests to determine more about it". Further there are very few holes in that theory. Evolution is therefore more deserving of being called fact than gravity is. What I think you are really trying to say is that you can think you understand gravity (drop ball; ball falls) therefore you see it as a fact. But evolution is complex even at a basic level, so you do not see it as fact.' +p6250 +aS'But the fact remains that guns are, by design, weapons.' +p6251 +aS'very true. logic exists whether people are there to grasps its concepts or not.where we disagree is at your assumption that god created logic. how can this be? logic is not contingent on any intelligent entity, whether it be man or god, to exist. the logic of increasing a quantity by adding to it would remain whether god existed or not. you have yet to tie the existence of logic to god as its cause' +p6252 +aS'Gun writer Jeff Snider point out. Obama: No AWB for Now?' +p6253 +aS'You misunderstand me I believe they should all be locked up. Anyone who preaches against gay people freely living their lives as equal citizens with all the rights and responsibilites should be locked up in the darkest dungeon. There can be no compromise on this issue peoples lives are at stake.' +p6254 +aS'To force women to have babys that they dont even want is even more "preposterous".' +p6255 +aS"I think hip hop and the arts are reflections of society. It is good to bring these issues to light, if only so that those who wouldn't normally be aware of them are enlightened." +p6256 +aS'What do you mean by this? Could we not have the law treat under-18 capital offenders on an individual basis, determining whether the individual offenders in the individual cases were sufficiently developed?Also, what would you say to the response that our current law provides that juveniles are sufficiently developed enough to have the responsibility, without parental involvement, to decide whether to obtain an abortion? Is it not a conflict to say juveniles should not be eligible for the death penalty because they are not morally developed enough, but at the same time say juveniles are morally developed enough to decide whether to obtain an abortion without involving their parents?' +p6257 +aS'You are the only one defending them now...the funny part it, planned parenthood had the stats as reasons why abortion should be legal (or is legal). But wait! As we established the number of people that died from abortions went down to under a thousand so this reason is still not accurate and is still misleading. Anymore ideas?' +p6258 +aS'Of course everyone has some basis for their views. Not even denying that. However there are ways that using that "basis" most certainly is an imposition and the gay rights battle is a prime example. There are many, many, many people who have done work to stop/block gay marriage and other gay rights when they, themselves, are not gay. That is not merely passing judgement - that is imposition. All I am asking here is that Archie, you, JP, etc. own that.' +p6259 +aS"No. That's not what I said. I said that natural selection is differential reproductive success. I said that those organisms that possessed advantageous characteristics would tend to reach reproductive age more frequently and therefore they will tend to produce more offspring, while those with disadvantageous characteristics will tend to produce fewer offspring. As a result, the heritable characteristics of the population will change over time." +p6260 +aS'Almost? Usually, that is true, and it involves selection between populations. However, there are often times when some of a population is better able to survive. Those times, selection occurs within a population.' +p6261 +aS"You have some good points here, but what do you do in the event of pregnancy due to rape? Or a pregnancy that is going to put the life of the mother at risk?And to push the line a bit further, what about failed contraception, where the 'morning after' pill is taken? Does that count as abortion as it happens after conception?Smiley" +p6262 +aS'No, you are mistaken. Evolution is concerned with the change in allele frequency over time. The age of the Universe is irrelevent.' +p6263 +aS'Religious faith, by definition, is a "jump in the dark" and there is really little(if any) common intellectual ground on which Creationism and ScientificMaterialism can meet. In principle, given adequate evidence etc., there isnothing in the material world that cannot be explained by Science. Butsomeone who has, so to speak, already jumped into the dark cannot see this.The most interesting questions that a supernatural account of human life can raise are concerned with the evolution of law, morality, social conventions,aesthetic sensibility and such like.' +p6264 +aS"But I think that Gods originally came about to explain why a large yellow thing goes up and down everyday. To a caveman the most logical explanation is there is a God. Now we know better. Just because there are still things we can't explain does not mean they must be from God." +p6265 +aS"Like blacks once were? Wasn't that the main thrust of the 14th amendment and incorporation? Given incorporation, imagine the suits those acts of discrimination would bring emoticonXGood " +p6266 +aS"Well then this doesn't answer my question.If you have 10 doctors for 100 people (this is just an example) and only 50 of them have health insurance and each doctor gets paid $100 a year then your health care per capita is $10 ([10doctors x $100]/100 people). If you change it to 100 people with health insurance you now have $10 per capita as well because you population did not change. Health care costs are shown per capita and not per person insured: Per Capita Health Expenditures by Country, 2007 — Infoplease.comSo again, if you go from $6,000 per capita per that website given above to say Switzerland levels at $4,100 per capita then where did that money come from?" +p6267 +aS"Apparently this is a petition opposing the pending resolution before the Illinois lawmakers that will deprive the rights given in the Constitutions. It is to encourage the lawmakers to vote against it. The lawmakers have not yet agreed to vote it down. Knowing the State of Illinois, I am predicting they will pay no attention to the commoners. The only thing a glean out of this is that the common people have more sense than the lawmakers. But I've actually known that for a long time." +p6268 +aS'Well memory is NOT something that is immaterial is it. Its always implemented in the form of material processes well known to biochemistry. Metabolism, ion flows, neuron activity and interconnections, along with potentiation of those connections into networks.Free-will of course is what we call the experience of our choices being not wholly determined by external states alone. By no means does that exclude the fact that our internal states (of which we are largely ignorant) also play a role. The autonomy arises from the operation of the brain and those internal states. Again a purely materialist explanation. And there is no evidence of anything other than material processes in the experience of free-will. In other words neither memory nor free-will require a non-materialist viewpoint.' +p6269 +aS"So you've gone from evolution and ID to cosmology. You have a real problem with maintaining established realms. ID addresses evolutionary theory, not abiogenesis, and not cosmology." +p6270 +aS"Being new isn't a problem. Nor is uncertainty about a position. The way to learn is to ask questions in appropriate places. However, a problem with message boards is that, without experience, it may be difficult to tell who is speaking from knowledge and who is speaking from ignorance or faith." +p6271 +aS'There is just one thing however. The coelacanths found are different from those in the fossil record. Further, ALL evidence pointed to them being extinct, until we found other evidence, and we changed it. And, to top it off, the article says NEARLY extinct, not COMPLETELY. Although, this article was of course written after the coelocanths were re-discovered. Of course, this has absolutely nothing to do with the theory of evolution, which explains the mechanisms responsible for the change of allele frequencies in populations over time.' +p6272 +aS'The whole "change the definition of marriage" is mainly a scare tactic used by anti-gay religious bigots. They don\'t seem to realize that words can have several meanings.' +p6273 +aS"So? In your religion's view, everyone sins. Their sin is no greater or more unforgiveable than yours." +p6274 +aS'This also applies to tapeworms. I fail to see how it is therefore relevent to any debate on abortion.' +p6275 +aS'Manslaughter involves a direct action that causes an unintentional death. Miscarriage is involuntary; besides the person suffering a miscarriage might well want to keep the baby. To equate miscarriage with manslaughter is preposterous.' +p6276 +aS"The interesting thing about the 'quality of life ethic' is that, in a pro-choice framework, it means that we can't degrade anyone's quality of life without their permission. So far from entailing a cull of the elderly, the infirm, the handicapped, and the ugly, the quality of life ethic entails that we cannot kill them off. Each person is entitled to the quality of life that they desire where what they desire does not infringe on other's quality of life. " +p6277 +aS'So the initial murder wasn\'t enough to show "that they are willing to commit acts of violence"? This makes absolutely no sense.' +p6278 +aS'The anti-abortionists claim that would be killing a human life to save one.' +p6279 +aS"No it doesn't, as abortion WAS a legal option in this case. This was not a legality issue, but an education issue." +p6280 +aS"All of the points above should be considered if you want to produce a solid argument that a series of events actually occured in the past. If you wish others to take this seriously please produce some relevant evidence from a source that held to a higher level of credibility. By your standards I should make a thread based on the National Enquirer or Star about Kerry's life as a male gigolo or golddigger." +p6281 +aS"If that were true, why are there millions of miscarriages each year? I don't believe a word of it." +p6282 +aS"And we all know that is what it will become. I'm willing to bet money that Marc is going to argue that abiogenesis is a part of evolution as well as the big bang. There's a clear reason why he won't accept the definitions before the debate starts." +p6283 +aS'The problem here is that Christians (such as I am) consider the Bible to be Proof.' +p6284 +aS"I'm not trying to prove anything. I'm asking if you'd think differently in that case, and you're not answering." +p6285 +aS'Clinton gave access to b/c which is known to prevent pregnancies. Bush has reduced access to b/c (including e/c). A primary reason for aborting is money - Americans have been less well off under Bush.' +p6286 +aS"You/he could just have said 'slippery slope' in the first place; that argument is an old one, which I though was dealt with a long time ago. You can't disapprove of A on the grounds that it might lead to B - firstly because you have little to no evidence that it will, secondly because A is not necessary for B to happen and thirdly because that difference between A and B is all the argument you need to prevent B but be in favour of A. You can approve of punishing criminals but be against the death sentance." +p6287 +aS"First of all, the government cannot increase the volume and social acceptance of a drug - only the market and society can do that. Government cannot even decrease the volume or social acceptance of drugs - despite the government's efforts, drug use has remained relatively constant. What hasn't remained constant is violent crime, which has gone up during the drug war as it did during alcohol prohibition." +p6288 +aS"These aren't the only two options available. The many philosophical views of the material world or ethics don't mean these two things don't exist." +p6289 +aS"Yet it is the only source I've seen that counted the incedents in which a gun was used in self-defence, but nobody was injured. I could assume that all of your sources and Ians only count occasions where one was injured. According to the source, they'd 91.7% of all times where a gun was used in self-defence." +p6290 +aS"He's pointing out that the situation is about the mother and the baby, and that the baby's right to life ends exactly where the woman's right to personal autonomy begins. That's the interesting thing about rights-based ethics, that the rights of any individual are limited precisely by the rights of all other individuals." +p6291 +aS"I think that scientists don't work with religion and religion has no place in science class." +p6292 +aS'When the criminal has greater civil protections than his victim, and this is viewed as being civilized, a society is doomed.' +p6293 +aS"Well let's put it this way. I really like playing baseball. So I put in a law that says everyone has to play baseball unless they're in a position where it will threaten their life. Since it's such a wonderful thing no one should have any problem with a law passed, right?" +p6294 +aS'I think you are entirely correct. From the page VOR linked:' +p6295 +aS'So, if there was a way to know that that baby would be infertile it would be alright in your view to abort?' +p6296 +aS"Not entirely true. While we can't disprove that God created the universe, we can disprove many creationist claims. For example, we can disprove that the earth is 6000 years old." +p6297 +aS'And it is. The ToE is a theory, however. It explains evolution, which has been observed. Do not attempt to deny that.' +p6298 +aS'No one wants to take your "marriage" away Matt. It\'s a free country--no one\'s going to block your way to any chapel that will marry you. Do your gay thing. But let marriage be marriage--it\'s a different matter. People just want to keep you from tampering with the institution of marriage.' +p6299 +aS'See Above.I can\'t help but notice your signature. What are you, Patriot under a different username? Bad show, Patriot. Sock Puppets aren\'t good debate form.Patriot-- About your statement that you\'ve been vindicated. I hope you\'re just fooling around. :)TruthSeeker\'s first post doesn\'t even belong in a debate forum. She stated an opinion, and then stated absolutely nothing to back it up in any way. No evidence. No reasoning. Not one "because". Nothing. It was like entering a presidential candidate debate and saying, "I think the other guy sucks" and leaving. Hence why I asked her as politely as possible to elaborate.' +p6300 +aS'When the needs of the two are in conflict this is unavoidable.' +p6301 +aS"Actually, I don't remember that they did. What they did take bets on was that AIG would be able to find enough stupid people who would buy into their ignorant and scientifically illiterate tripe. As I recall, most who were actually aware of how stupid creationists can be bet that they would be able to do so. So now, besides their other so called 'peer reviewed' magazine, they want to pretend that they are doing science here." +p6302 +aS'Exactly, which brings us back to square 1. Creationism is based on religion, and Evolution is based on the Scientific method, but is not proven. Creationism isnt even near being proven. So, why would you try to impose your religious beliefs on public school children?' +p6303 +aS"just isn't the case in countries with nationalised health care, yet those countries also have a large number of pharmaceutical companies that are based there." +p6304 +aS"Yet another application of a different meaning of the word in an effort to group everything in science that you don't understand and won't accept under one word." +p6305 +aS'Again, modern birds seem to do fine as do gliding mammals such as flying squirrels.' +p6306 +aS"Too much spin there buddy. The potentiality arguement is used by those who believe women have a right to have control over their fertility. As an aside it is also a fundemental tenent in Judaism's view of the unborn- the foetus is a potential life, but has not yet attained that state of being, which occurs at birth." +p6307 +aS'And you think this a good thing? It just shows the weak cowardly position of the creationist.' +p6308 +aS"No, there isn't a consensus among Christians, at least not beyond the fact that God was responsible in one way or another for the universe existing. There is no consensus about method." +p6309 +aS'Do you see the other cities pushing for outrageous standards like NYC?' +p6310 +aS"Now this is a totally inaccurate generalization.I don't think you actually realize the sheer numbers of people who smoke pot in this country, and I'm talking on a regular basis.I am certainly one of them. I have friends that do it and friends that don't.We all lead your typical normal life." +p6311 +aS"If DOMA isn't declared unconstitutional, then those arguing against Prop 8 are micturating into the wind." +p6312 +aS'The original molecule had some lipolytic function, but removing some amino acids from it, in the right place, made it fit better into the substrate, and thereby greatly increased its functionality. Barbarian observes:We thought it would take roughly a million years for bacteria to evolve enzymes capable of digesting nylon (because the compound is so different than any they were able to digest) but it took less than a century. .' +p6313 +aS"A law baning same-sex marriage, then I'd agree. But the reason same-sex marriage doesn't exist (other than Mass.) is not because of law; after all, there are plenty of states that don't have same-sex marriage with no law that outlaws it. You're barking up the wrong tree--this is a cultural issue more than a legal one." +p6314 +aS"Well, actually society has said that 18 is the dividing line. It can then also say, that under certain circumstances, for a particularly bad person, in some cases it will be considered if the person is 16 or 17. That's why we have all the judges and lawyers, etc..." +p6315 +aS'Stevens said that bear arms has a military meaning. So was he saying that the right is individual but existed in connection with militia service? Is this some kind of hybrid model? Interestingly, scholars who made similar claims in the past got lumped in with those who supported a collective right by the pro gun crowd. But I suppose it sounds good to say that all nine Supreme Court justices supported an individual rights interpretation. ' +p6316 +aS"And the risk to minority's civil rights is, of course, the reason for the bill. They are, after all, limiting what can be started via initiative, not eliminating the initiative process altogether. The fraud was merely an example of why the change is needed. As has been argued here before, if civil rights need protecting, it's from the majority. Allowing civil rights to be modified via the initiative process simply makes it too easy for the majority to impose it's will on the minority. That's not what a Democracy is about, at least not our Democracy." +p6317 +aS'That\'s not true -- actually, it doesn\'t make sense. Science is just a bunch of rules (by definition). "Biology uses science to study life" is true. "Physics uses science to study the physical world" is true, but "science\'s purpose is to study life" is not true. ' +p6318 +aS"Actually, I am of the opinion that the fetus has no natural rights of its own. Any rights we grant to a person as a citizen or national are granted at the moment of birth. By granting equal rights to a 3week old fetus that you do to a 20 year old man, you are endangering the rights of the woman who carries that child. Yes, I believe that in most circumstances, the child should be carried to term, but there are exceptions to every rule, and I'm not quite ready to forsake the lives and health of women to protect unborn children. Yes, I think the unborn child is worthy of protection, but not any more so than the mother, in fact probably less." +p6319 +aS'Ah ha! Someone who understands the application of information theory to biological organisms. By the biological specific definition of information, the genome of any organism is information about the environment in which it lives.' +p6320 +aS"It stops us from saying we ara a rational people. I don't support any laws that would allow a father not to have a say so about his child being aborted. Are there any?? If it were a life or death thing for the mother no question.As I stated I don't like the idea but making it illegal would simply put more unwanted kids in state homes. Lets take care of the living first!" +p6321 +aS"But himps living in the jungle were in competition with other himps which didn't migrate to the plains. And pressures from predators, climate and changes in the ecosystem should have continued to force the need or desire to control their environment as our line of himp grew to do. My point is that with all of the same basic tools to start out with such as fingers, opposable thumbs and walking upright, there is no reason why only our line evolved to the level that human beings have attained with the same hundreds of millions of years, and the same pressures pushing us all forward, or towards extinction." +p6322 +aS"It's not a literal account unless you interpret it that way." +p6323 +aS'Since they are issued by the military I would think so. ' +p6324 +aS'Let\'s not confuse our readers. supersport is not saying it\'s evolution; he\'s saying that "evolutionists" say that it\'s evolution. It should be clear now to the readers that scientists recognized perfectly well that this is an example of plasticity.' +p6325 +aS"That's an interesting subject, I had not heard of that b4. Did our bodies once produce Vitamin C?." +p6326 +aS"Actually all decisions based on the self ARE selfish decisions. I really don't care. I make them all the time too. Everyone does. While this is a philosophical issue I really see it as odd that people claim not to be selfish when doing something that benefits them or prevents harm to them with little regard to anyone else." +p6327 +aS"I believe it's there, but I'm certainly no one to push that belief on anyone." +p6328 +aS'Sigma I have taken into account the options a woman has after pregnancy. However, there are no doubt cases in the history of the world (not just within America) where there were no options available to a mother but to keep her child (ie: the first human woman to give birth in the history of the world). For this pro-choice line of reasoning to be absoulutely true it must be true in every possible situation. Are you saying that the killing would be justified if no other options were available to her?' +p6329 +aS"I guess I'd have to reluctantly admit that it didn't take long for some....but I'm an eternal optimist and think civility will prevail. Besides, I try not to judge everybody by the acts of a few." +p6330 +aS"You can do whatever you want to do with your money. The fact that you don't know any better than to do that with your money is telling, though. If you think that the C(R)SC actually does ID-based scientific research, you're exactly the dupe they're looking for.I'm serious. Do the research for yourself. I won't even give you links, because you'll XXXX them off as propaganda. Find any scientific journal article written by a DI member that's actually based on actual scientific experimentation or investigation and supports ID. I dare you." +p6331 +aS'Do you think that the woman will not relive the rape on a daily basis if she destroys the child? Not likely. I think she will still suffer through those thoughts. Killing the baby complicates this. What happens if she has horrible thoughts about a rape with more thoughts about the abortion?' +p6332 +aS"I think they are doing it out of fear. They see the moral decline in America and they have latched onto the GLBT Community as their scapegoat. Since it's no longer PC To attack African-Americans for their obvious differences, it's not PC to go after other religions (especially Judaism - not that it actually stops pure hate groups from doing it) they have decided that attacking a group of people which are sexually different should be the way to go.I mean, their religion tells them that premarital sex is bad and wrong. Even though there is a multi-billion dollar industry based around HETEROSEXUAL sex, they actually depend on that money too much to bite the hand that feeds them. Insted, they attack a group that has not legal rights to marriage let alone little legal standing as far as individual rights. It's easier that way." +p6333 +aS"Evolution's evidence is that life is similar, you won't be able to find an exception I am sure." +p6334 +aS"So, because she's bigger, she can kill the fetus off? That is generally the idea the school yard bully has." +p6335 +aS"There's a distinct difference... so what? No baby at any age can live outside the womb. It still needs care and attention like any other. This difference in age doesn't mean anything." +p6336 +aS'that is not true. a levitating guru that has been seen and proven to levitate doesnt make the process natural. an alien that has been seen and proven to teleport and abduct people in their retractor beam doesnt make the process less paranormal. the definition of supernatural/paranormal doesnt automatically mean they can never be observed, just that they defy physical law. the definition of God is a special case that includes never being observed/proven' +p6337 +aS'So everyone thinks that "evolutionists" should seize power or something? If that is true, it is because evolution is very widely accepted.' +p6338 +aS'They can "marry" whomever they love. Benefits though, are a different matter. The state and society views marriage as an opposite-sex institution. It\'s not about anyone getting harmed; no one said it was.' +p6339 +aS'That and VOR keeps flip flopping on his positions and he refuses to clarify his contridictions.' +p6340 +aS'You believe two things that are incorrect: that you have refuted evolutionary theory, and that we will now accept intellegent design because of your attempt.' +p6341 +aS"How do you know there isn't a tiger in the bathroom? You feel very strongly and have over-whelming evidence that there is no tiger in your bathroom? (You live in an urban area, there are no zoos, you don't hear scratching or biting or the maiming of your poodle, and the water is going) But you cannot prove a negative. Which is also why you won't be able to prove that creationism is wrong, and why we can't prove evolution is wrong. The focus must be on proving one right. How you might do that depends on your method of reasoning and thought." +p6342 +aS'If putting the child up for adoption, this can be covered too. However, you havingto take time out per doctors instructions is something you might not desire as it could affect career opprotunities in certain lines of work.' +p6343 +aS'#2 was questioning the personal, non-scientific beliefs of the evolution believer' +p6344 +aS"There's no adding of firearms going on, because they're already there! The criminals have them, that's a hard fact of life that can't ever be changed. Deal with it. What we want is for the intended victims to be on equal footing with the bad guys. There's nothing unreasonable about that." +p6345 +aS"Cars are a privilege, your gun isn't. Show me evidence that would support the registration of your first amendment rights being constitutional." +p6346 +aS"I laughed when I first saw the ad on MSNBC's Hardball tonight. It shows the fear, insecurities and the fallacies that guide anti-gay equality rights activists." +p6347 +aS"Sorry to inform you, but until you are 18 years old in this country, you are not granted full protection of your rights under the constitution of the united states. I don't agree with testing either, but saying that it violates your rights is not a valid argument. " +p6348 +aS'Actually, it is. There are multitudes of known characteristics that have been shown to be the result of a single point difference in the gene. The discovery of regulatory functions of some translated segments of DNA does not in any way discount what is known about gene function.' +p6349 +aS'it is no "story"........i am debating on the whole evolution thing... look at the facts. so many great ppl, physics people, niels bohr, he was for evoulution, then he found out all of the facts that it is junk, so he became a christian' +p6350 +aS'We\'re legally dead when we no longer mentally exist (hence the term "brain-dead"), so there is no logical reason to set the beginning point as anything other than the start of the mental existence. Just as people who are dead and without mental existence do not have the ability to obtain rights, a collection of human cells without a mental existence cannot obtain rights. I also notice you have resorted to attacking other people\'s views rather than following the topic of the thread, which is to share YOUR views. emoticonXBanghead' +p6351 +aS'This whole riff where people talk about preventing employers from firing gays JUST cause they are gay as a "special right" is something that seems to fool those who are prejudiced against gays...... but for most people, they recognize it as a propagandic phrasing with little merit.I think our laws should include something that prevents people from firing employees based on the employee\'s sexual orientation.But to utilize your phrasing Archie, do you think that religion is something that deserves "special rights"?' +p6352 +aS'"Healthy Families" seems like a strange name for this group that the link is to.' +p6353 +aS'actually, it can be proven whether leprechauns, unicorns, the flying spaghetti monster, magical space monkeys and livining care baers, and even god, exists or not.the question of proving a belief seems kinda self-contradictory to me. if something is a fact that can be proven, then your belief about it is irrelevant. likewise, if you believe something, whether there are facts to support it or not, its still your belief. there are people who believe things inn the absence of supporting facts, and sometimes even in the face of opposing facts. the term for that is faithfaith is the belief of something in the absence of evidence. if you have faith in something, proof is irrelevant, or at least it should be' +p6354 +aS"But you know what really doesn't make sense? Why are they evangelising to people (who they know most of them will reject them) if those people get a special dispensation? They'd be condemning people to hell by evangelizing, would they not? Why not leave the people be and let them get the special dispensation? emoticonXConfused" +p6355 +aS'That is not quite what the \'mitochondrial Eve\' hypothesis posits.Science. 1995 Dec 22;270(5244):1930-6. The myth of Eve: molecular biology and human origins.Ayala FJ.University of California, Irvine, USA.It has been proposed that modern humans descended from a single woman, the "mitochondrial Eve" who lived in Africa 100,000 to 200,000 years ago. The human immune system DRB1 genes are extremely polymorphic, with gene lineages that coalesce into an ancestor who lived around 60 million years ago, a time before the divergence of the apes from the Old World monkeys. The theory of gene coalescence suggests that, throughout the last 60 million years, human ancestral populations had an effective size of 100,000 individuals or greater. Molecular evolution data favor the African origin of modern humans, but the weight of the evidence is against a population bottleneck before their emergence. The mitochondrial Eve hypothesis emanates from a confusion between gene genealogies and individual genealogies.' +p6356 +aS'I see no reason why secular shows should be required to mention your mythology.' +p6357 +aS'Because if you let gays marry because it is an alternitve way the equal protection says that if you let one happen you have to let the others have that right to. But that is not really my point my real point is that if we let this happend it will ruin marriage in this country, marriage is a bond between a man and a women and if we let gays marry this country will be ruining that tradition thus making this country more secular then it all ready is. AND WE HAVE TO STOP THAT.' +p6358 +aS'I believe the question was "who?"I\'m christian and I believe in evolution. Whether it contradicts the Old Testament or not makes no difference to me. Jesus contradicted the Old Testament.The Bible is the inspired word of God, not a dictation to scribes. Men wrote the allegories describing the creation of things.Saying that mankind took a long time to understand certain things is not limiting the power of God. He could have chosen to make early man Einsteinian, but He didn\'t. He could have chosen for mankind to bypass the flat-earth concept, but He didn\'t. He could have chosen for all humans to be highly intelligent, but He didn\'t. What He did was to leave us alone and let us figure things out on our own, including how long it took to get where we are now.' +p6359 +aS'In what universe is there a right to murder?Unfortunately, we in the United States have only recently recognized that abusing children and owning slaves is not a right.And, only recently have women enjoyed the right to vote in the United States.What certain activities are forbidden in public?Some of the conservative red states have only recently decreed that there should be speek limits. Not for safety reasons, of course.And, George Walker Bush has guaranteed the right of corporations to dump dangerous chemicals into lakes and rivers and the oceans.' +p6360 +aS"Well you don't need to doubt it. I like to be rational but I also wish to believe in God. I need some evidence, any evidence, to believe in God and that would be all I would need." +p6361 +aS'They are: those that survive better reproduce more. Members of a species can die if other members have better food/light/attention/camaflouge.' +p6362 +aS'See above. Give kids credit. You give them a bogus answer and they will know. We have got to stop treating sex like a dirty little secret.' +p6363 +aS'And if we can actually doing anything about it. From what I hear on the fringes, the debate should not be about how to change or stop it, but how to change to deal with it and what we should expect as society adapts to a change in climate.' +p6364 +aS"It can't come up with evidence if it's suppressed from future generations. Until you can show that happenstance origins are science, you have no basis to declare that intelligent design is not science. I agree that I haven't shown how ID has a potential advantage to the political corruptness of today's scientific community, but I've shown it's potential advantage to our society. I've shown how thinking is involved with it, the type of thinking involved in any school class involving philosophy, which you said science classes should have." +p6365 +aS'I think you misunderstand my view. I think that a third-term fetus is already sufficiently a person, so I would CERTAINLY consider a newborn baby a person. To me, a person is one who has the most basic, rudimentary sense of thought and emotion. A late-term fetus, from my point of view, is no less a person than an Einstein. An Einstein, of course, is much more useful to a much greater number of people, but from the simple point of view of whether he is more of a person, I would say not.' +p6366 +aS'Well this involves the free will / determinism debate, you say you aren\'t free if your preferences are implanted... I say you are free when you act in accordance with your preferences, regardless of how those preferences were arrived at. I think to claim you need to "choose" your preferences is absurd, as the act of choosing requires prior preferences, which presumably also required a choice.... and the question of how we acquired our first preference arises...' +p6367 +aS"That's the thing, though; even a self-professed non-expert can perfectly well refute the ridiculous points supersport continually spouts. supersport, on the other hand, doesn't know any better." +p6368 +aS"The fact that it's the truth is why I keep repeating it." +p6369 +aS'Sorry to shatter you little world but this is happening it has been happening 25 years and it is happening now and it is completly legal no laws have been broken and yes there is a market for fetal tissue /limbs and bodies.Do some research you will be surprised what you will find.' +p6370 +aS'Mythology. But nevertheless, shipbuilding has been going on for a lot longer than 500 years. There have been a lot of skilled shipbuilders who have passed along their knowledge from generation to generation. Do you think that every time someone builds a ship that they invent the whole process? Nah. 300 ft is about the limit for wood no matter how you design it. Even worse it you cast a big box adrift in a huge storm. How did the animals survive the rolling and rolling?' +p6371 +aS'Somehow I don\'t think a high percentage of Ham\'s "facts" are facts.' +p6372 +aS"I'm afraid it is you who is wrong. I created you so that you would think you created me to think I created everything, even though I did. It's more of a challenge that way to try to convert people to the one true religion. Since you can see that I won't be able to convert the world (it's due in a week), you can pay $100 dollars to me so I will take you with me to the upper world." +p6373 +aS'Yes, everyone is a "potential" felon. Fortunately most people never commit a felony. And there are many different types of weapons, all which could be used by previously law abiding citizens to commit an act of violence.' +p6374 +aS"Because some restrictions that might pass constitutional muster, don't amount to an outright ban. How would impossibility ever be considered constitutional?" +p6375 +aS'Since when does the fate get decided by the victim? A woman could be said to have a biased opinion on it because she is an involved party. Even so, I take the stand that no one has any authority over the other to make that decision.' +p6376 +aS"The short answer is that it isn't. See the details here: Phil Plait" +p6377 +aS'Yes. The assumption happens to be that maybe the bible isn\'t literal. "Lets look into ourselves, shall we?" Behold we did, and Lo! The Earth is old!' +p6378 +aS'No. It steps firmly in the realm of REALITY Jyoshu.Have you never heard people talk about how police in an area respond in X amount of time for one situation, but for a different situation, like in a neighborhood predominantly black or gay or ___, the response time is four times as long?Have you never heard of how there have been cases where people have died because they tried to get medical help at the "white" hospital?Or how about you read about THIS case and tell me that these concerns aren\'t real...' +p6379 +aS"No, but the Roman persecution of Christians, covering Christians in pitch, Roman garden parties, witnesses for Christ being killed for their faith etc. is as irrelevant as it gets. Just be careful, that's all I'm saying. There is a place for that topic." +p6380 +aS'Again? What do you mean? I am talking about different sciences per se. What is your question?' +p6381 +aS"Sounds like the same skeptic argument above. I don't know about you Nu Leader, but when I'm certain my mind exists. Are you not certain? You are actually required to be, to deny you exist would require existence, and that would be logically contradictory." +p6382 +aS"The criminals in DC already have their guns. All striking down DC's handgun ban will do is let the law abiding be able to better defend themselves and be armed for a change." +p6383 +aS"Oh, undoubtedly - but the offspring aren't inheriting traits as such are they? They're just suffering the same symptoms of malnutrition as their parents, except that for them it's happening in vitro so they exhibit the effects from birth. That's why it's such a bad example for what you're trying to get others to accept." +p6384 +aS"But the embryo is a mere clump of flesh inside of a woman's body. Science proves it. It has no sign of intelligence, it is merely cells at this stage. Therefore, it cannot be referred to as another person, or neighbor, and is no where near comparable to a human. Choices that harm another should be illegal, but choices regarding your own personal liberty and freedom should be made by the individual. Not the government." +p6385 +aS'So why should you care about their non-scientific beliefs in a debate on science? Most people who believe in evolution do so because of science, so their non-scientific beliefs are irrelevant.' +p6386 +aS"And, what percentage is that? How was the poll conducted? Who conducted it? How was the determination made about who was a 'scientist'?" +p6387 +aS'That is true but that is the procedure.........Do you deny it?' +p6388 +aS'But the whole process was done in the courts using the process set up by the constitution. Where the laws are not clear on an issue, such as in Massachusetts, it is the courts job to decide. The courts are a check on the injustice towards minorities by the majority.' +p6389 +aS'I believe I said I would change my view. I will change my view on the issue of whether homosexuality is genetic.' +p6390 +aS'Please note that I added the word "human" to your comment above IANGB. After all it is not my claim that all zygotes are human beings / "persons." Agree? Also, I want to make it clear that I am arguing only for the most basic of human rights (life) and not for the full panopoly of rights that say an adult human individual would have.' +p6391 +aS'I believe that science explains the way God created the universe.' +p6392 +aS"Just because a man pays support doesn't mean he is part of the childs life.He has no obligation to do *fatherly* things with his child.Women pay child support BTW." +p6393 +aS'That was a nice rant that had absolutely nothing to do with anything. The essential question is not what various religous leaders have said about the issue, but what the Bible says about the issue.' +p6394 +aS'First of all, it\'s not a precedent. this is the seventh or eighth state where a higher court has found anti-gay discrimination in marriage unconstitutional. Secondly, when so many rulings go in this direction, it can hardly be called "lawlessness". It\'s a call for lawful, constitutional interpretation of statutes.It takes extraordinary intellectual dishonesty to pretend there is some "agenda" at work. These decisions are the consequence of two things: our long history of rationally applying those silly words about equality that folks smarter than this generation of politicians put in the Constitution AND a long-term correction of the misunderstandings of what homosexuality IS and what its consequences are.I know you don\'t personally believe it, but there is nothing wrong with us.' +p6395 +aS'You got it. People make mistakes. Finally you see that scientists are just as human as religious people.' +p6396 +aS"O they don't make space anymore. They'll just put him in a cell with pot growers and crack addicts. He'll be lucky if he gets a spot on the floor to sleep on." +p6397 +aS"no base for calling it a human being? Other than the fact that a fetus is scientifical a human being. Seems you have no basis for saying I can't call a fetus a human being." +p6398 +aS'What you quoted is what Answers in Genesis said. Please do not be dishonest and tell others that I said this as I did not.' +p6399 +aS'This is simply false. Rock can be folded under pressure. This has been proven by lab experiment. However there are many features in sedimentary rocks that cannot be formed quickly, for example, fossil trackways.' +p6400 +aS"The argument that the baby is not a parasite, but is rather 'in its natural environment' seems a false dichotomy: it is natural for a parasite to be in the enviroment of another's body, invading it. The relationship element will be dealt with in the third section." +p6401 +aS"Well, yeah, if science hasn't provided an explanation for a phenomenon, then all we can do is shrug and submit grant proposals." +p6402 +aS"Well, that's your claim, anyway. Truth is that billions of theists accept evolutionary theory as is and reject the standard ID arguments." +p6403 +aS"But wouldn't the biochemical similarities speak for themselves? That is, does one have to believe that the two specimens (which share biochemical similarities) evolved in order to infer that they will respond similarly to antibiotics? The observable facts of the similarities would seem sufficient (and more scientific?)." +p6404 +aS"And for the record, i think anyone that tries to take away a women's right to her own body is a sexist and has no respect for human life, or has any concious about the woman at stake here. You care merely about a couple of cells and not about the real humans, nor do you care about society. It seems to me you are only trying to earn yourself brownie points in heavan. I am not influenced by that, im going to have my own opinions, and speak about what i feel is right instead of some christian god telling me what to do." +p6405 +aS"If you can't eliminate demand you could try to limit supply and control access to that supply." +p6406 +aS"Why would they be useless? They aren't useless on birds? And how is this qustion different in any meaningful way from the above? Aren't wings forelimbs with feathers? It seems that soaring or gliding or even faster running would be extremely useful." +p6407 +aS'He made a post suggesting you were a troll, it has been removed it seems. Anyway, glad to help.' +p6408 +aS'Well let\'s deal with one thing at a time. The NEJM study about Washington D.C. concluded that banning handguns saved 47 lives each year. The study didn\'t conclude that it was just a "curious relationship in the numbers." Go back to that thread and read the study. If you\'re looking for evidence that is absolutely without any degree of uncertainty then you won\'t find it. You can\'t prove things to a 100% certainty with statistics. What you can do is show what is probably true and what is probably not true. Even in court you\'re not expected to prove that someone is guilty to a 100% certainty. You\'re expected to prove that they are guilty beyond a reasonable doubt.' +p6409 +aS"Erm... we are? Levels of CO2 in the atmosphere are usually quoted as parts per million, currently a little over 380ppm, 150 years ago closer to 280. In 1970 about 330ppm. Carbon dioxide in the Earth's atmosphere - Wikipedia, the free encyclopedia" +p6410 +aS'That would most likely (imo) reduce the number of abortions performed. It would depend, I think, on how viable it is to transfer the embryo into the artificial womb. Forced surgery would not be an option if I had anything to do about it.' +p6411 +aS'Really? A human can be determined scientifically. Personhood is a human legal construct. You cannot prove scientifically what a "person" is.' +p6412 +aS"I wouldn't say most cjurches, because you cannot prove that. There is a long list of churches that are accepting of gay folks." +p6413 +aS'In the examples you gave, the doctor is clearly trying his* very best to save the most lives he can. What if the Siamese twins were in no mortal danger while together? And what if one Siamese twin has legs but the other doesn\'t? Isn\'t the other twin dependent on the one with legs? Could a doctor ethically remove the legless twin if the legged twin wanted to and if the legless twin was retarded and the procedure would leave the legless twin dead?*(or her best.. I\'m sorry but my doctor is male, so I will no longer use "his/her" or "he/she"... it just gets tiring after a while...)' +p6414 +aS"A slimey claim you cannot support as usual. In developed Nations, the U.S. is far down the list as has been posted on this very board at least 5 times. Those 'other' Nations also have far more crime and violent crime than the U.S." +p6415 +aS'Not sure how you can tell that since very little is mentioned about his methods.' +p6416 +aS'I did not say that evolution precludes God, all I am saying is that many Atheists seem to think it does, and thus it likely contributes to the number of people who beleive there is no God. If a person does not beleive in God, then they must beleive there is no ultimate morality.' +p6417 +aS'732,000 DIDN\'T sign the petition. It seems only 5% of South Dakotans say "repeal the extreme abortion ban" and that is ASSUMING that all the signatures are valid. The good news for South Dakota is that come November they can show America how they really feel about abortion as opposed to having the courts decide laws.' +p6418 +aS"jessica, all these problems you've listed, the human body takes care of automatically and remarkably well. the fact still remains that only less than 5% of all abortions occur because the risk is great enough to be deemed life-threatening to either tha mother or the child. and that percentage is diminishing as well. the overwhelming majority of abortions occur simply because the woman decides she does not wnat to be a mother." +p6419 +aS"Well he HAS admitted he can't prove his belief. I guess that posting here would admit his false dichotomies that it's either literal genesis or evolution are false and god knows the world will end when that happens. Super admitting he's wrong? Never going to happen." +p6420 +aS'DC has a law that human and civil rights can not be put up for a vote, this is the way it should be in the rest of the country. Why do you want to be able to vote on other peoples lives? Why is it that you are so cruel?' +p6421 +aS'And yet quantum physics tends to be very contradictory, at least to our perceptions. Acausal events happen. A particle can be in two places at the same time. A particle can disappear and reappear in a different location without traversing that distance. And et cetera.Since the beginning of our local universe occurred at quantum levels, I would be cautious about drawing philosophical conclusions based on our macro-world experiences.' +p6422 +aS"You can do so, and if I don't check your source I guess I'm SOL, eh? I've seen the story many places, but this is beyond simply a site dedicated to outing Bush since its a radio show :P" +p6423 +aS'Of course the bolshevik revolution was doomed from the start as Russia was not indsutrialised and the revolution was imposed by a minority of the bourgeoisie rather than a mass movement of the proletariat (not that there was a proletariat in Russia at the time).' +p6424 +aS'The goal of anti-abortionist is clear. The job of self restraint is that of each participant in their close encounters.' +p6425 +aS'Just like no one is really "for" abortions, but they think that it\'s the woman\'s right to decide. Maybe that\'s like when congress gave the President the right to decide to go to war, even when they were supposed to declare war.' +p6426 +aS"The guy can have an opinion but the ultimate choice is up to the woman who can listen to what the guy says or not, it's up to her. I believe that is what sinjin was saying." +p6427 +aS'Ditto squared. If they support killing a perfectly healthy unborn child, they will argue that the reason stated in the Op is the main reason Abortion is needed and justified. And I must say that if 98% of all abortions were performed for that reason, the public stance against them might not be so strong.' +p6428 +aS'Yes, it\'s very subjective. I was using evil as an example that was incorrectly used on the website. Even though evil is subjective, you can still be evil. (you can do evil to take away your goodness, but the only way to make yourself colder is by removing your heat, not adding "cold")' +p6429 +aS'Then how exactly did a time capsule that was buried several feet underground get to the surface at the same rate as the surrounding area?' +p6430 +aS'Yet without it the vessel is just worms, mud, then dust, like rock & tree houses, not made to endure, yet, the life force, energy, back to the cosmos/source, converted, capable of being rewinded, paused, and fastfowarded, like a movie screen amongst the stars, revealing our lives.' +p6431 +aS"It doesn't have to be that way because it's the death penalty. It's that way because of our ever deteriorating legal system." +p6432 +aS'Because of? Hardly. I feel it does change the morality of it, but it is not the sole criteria.' +p6433 +aS"Exactly. Trying to prove that God, if he exists, didn't make us as good as an all powerful being should have made us doesn't prove anything in the God debate. I could always debate that since God is all powerful and all knowing he could have always thought of something better to do. If he made those changes, then of course there would still be something better he could have thought of. This would be an endless loop of creating something better and better until finally he would have to stop and say that is good enough. But even then this debate that he didn't make us as good as he could have would be valid in my view." +p6434 +aS'He had ALREADY MADE the animals. "now the Lord God HAD FORMED..." not "now the Lord God formed..." See the difference? He already HAD FORMED the animals before he brought them to Adam. He made the animals before Adam.' +p6435 +aS'I did not say that violent crime "rarely" occurs, merely that the risk of being a victim of such is lower relative to other risks. I am genuinely curious if you care as much about protecting your heart as you care about protecting yourself from criminals.' +p6436 +aS'And right at the top of the list, at a whopping 31.2 per 100,000, is Washington DC, even though they had a complete and total gun ban in place. How the hell do you explain that? Nobody could own handguns, nobody could ever carry a gun, nobody could have a gun outside of their home, nobody could even load their private guns, so how do they get to be at the top of the list or death rates?' +p6437 +aS"I think its actually the states job...the judiciary does need to overturn Roe v. Wade to get this done though...which doesn't mean it becomes illegal." +p6438 +aS'emoticonXWowYou are making up your own strawman arguments as you go along.Asking "what they would need" is a poor mask to avoid the fact that YOU HAVE NO EVIDENCE in the first place.A lot of "doesn\'t this look like ...", but that\'s akin to interpreting Rorschach tests. You see what you want to.' +p6439 +aS"Just making sure that everybody is aware of his evasion, misrepresentation, and dishonesty. I figured a good time to do that would be while he was accusing scientists of these things... (I figure it's a damn good illustration when a paper's author tells him to stop misrepresenting the paper, and he keeps doing it anyway.)In fairness, being a creationist isn't necessarily an indicator of dishonesty; there are plenty of creationists who are creationists simply because they are uneducated about the subject. Unfortunately, supersport isn't part of this group; he has seen the evidence and is willfully ignorant of it." +p6440 +aS"Even if it was murder, do you really expect me to side with the party that broke into Martin's house and robbed him?" +p6441 +aS'Hmm, when you say "numberless" do you mean something other than the standard definition of infinite? If not, please explain how an infinite number of organisms could be created in a finite time with finite space and resources. Thank you.' +p6442 +aS'There are several scientific explanations for the nature of the earth. Some use \'science\' to say that the world is flat. Granted that these beliefs aren\'t widely accepted, but then not all religions are widely accepted. By your reasoning or \'logic\' you must ask yourself about whether you should rely on science when there are many different scientific theories.The Flat Earth News, at least back then, had a regular column, "One Hundred Proofs Earth is Not a Globe."(go to http://www.flat-earth.org/)Other theories taught as sciencephrenologyalchemyevolutioneugenicsneptunismTheories of the Aether Articles relating to the Emergence of Scientific Theories of the Cosmic Aether(http://www.mountainman.com.au/aether.html)What about \'metascience\'?http://www.calresco.org/lucas/science.htmOr, sciences used to support political ends...What about Marxist Sciencehttp://www.marxists.org/archive/hald...philosophy.htmor Chaos Theory and Marxismhttp://www.marxist.com/science/chaostheory.htmlThere\'s Nazi Sciencehttp://www.webster.edu/~woolflm/naziscience.htmlNationalist Sciencehttp://www.ljudmila.org/nettime/zkp4/08.htmOr social ends...Scientific Racismhttp://www.press.uillinois.edu/f02/tucker.htmlMainstream scientists instead of using the word \'heretic\' use the word \'pseudo-science\' to categorise fringe beliefs.' +p6443 +aS'Been saying that ever since the first time I heard about creationsism.' +p6444 +aS"Right. It's called stasis. Species that are well adapted to their environments tend to change little in a stable environment. It is still true that fossil crocs are not the same as modern crocs. There are obvious differences." +p6445 +aS"I believe you mean pro-choice, don't you. A pro-life mod might agree with you." +p6446 +aS'Notice that even in this version there are elipses just before the quote in question. My bet is if we were to actually refer to this 44 years old book, Simpson would not be saying what Toxey wants him to say.' +p6447 +aS'Are you sure? What about animals that had a combination of both long and short hair. Such fur would function more efficiently as insulation that either long or short alone.' +p6448 +aS'Actually, scientists who discard the global flood are taken seriously.' +p6449 +aS"Is that a trick question? No, the tabloid and other gutter press keep going on about how bad it is, because they sell papers by fanning fear and hatred, and fear of crime is one of their biggest markets. Yes there has been an increase in gun crime over the years, but that's largely attributable to increased attractiveness of crime in a society where social mobility has come to a standstill. In any case the number of incidents where firearms are used in crime is still very small, which is why every time someone gets shot it is headline news. Guns are incredibly rare in this country, the only time I've seen guns in real life (other than air rifles) is on a military base." +p6450 +aS'So much for lists of registration and "safe storage". Same thing happened when Hitler took over a country and got hold of all the lists. They were especially interested in the gun lists and radio lists.' +p6451 +aS'Homo habilis is the first species to use fire as a tool I think.' +p6452 +aS'If he lies about being pro-life, what else will he be willing to lie about in order to be elected? That is a legitimate, not-made-up issue that is relevant to elections.' +p6453 +aS'They are merely taking chemicals that they can detect in outer space and reproducing the enviroment they are found in, by exposing them to ultraviolet. You are exposed to ultraviolet when you walk outside in the sunshine.Every chemical that they used is readily detected in interstellar molecular clouds.' +p6454 +aS"Oh I certainly don't pretend that and certainly didn't claim that either--though a couple of left-wing posters here (who will remain nameless for now) might take the bizarre step of saying my post to you amounted to as much, if history is any indicator. Maybe we'll all luck out and they'll forget their Lenses of Bias at home, and instead read claims people actually make." +p6455 +aS"JFriday:In fairness, no one, pro or ant-gun can ever use UK stats to support thier argument again. Back in Jan '03 the UK government finally came clean and announced that they had been seriously fu**ing with crime statistics.You can make the argument that the UK state had something to hide with guncontrol and you would probably be right. Reliable information from UK ministries should now be accepted as less than credible." +p6456 +aS"This is not true. Rather, when there is conflict between one's sanctity of life vs another's quality of life, the sanctity of life must win." +p6457 +aS'What\'s a "marriage officer"? If that\'s like a priest or minister, than certainly they shouldn\'t have to perform a ceremony that doesn\'t coincide with their beliefs. But if it\'s a government position, like a justice of the peace, then they should either leave their religion at home when they go to work, or get a job that doesn\'t conflict with their beliefs. Religious freedom does not give you the freedom to deny freedom to someone else.' +p6458 +aS"Yet he hasn't. No pro-choice person I know wants abortion to be prevalent, they just want it to be an option. Wanting it safe and rare and available is not an abnormal positon for a pro-choice person." +p6459 +aS'So gay people, in your opinion, have no right to form the families of their choice? So you are defending the continued oppression of gay people?We are sick of conservative family types. We are tired of the closet. The phrase "we are mad as hell and we are not going to take it any more" applies. I see in your response the comming of the camps to lock and exterminate gay people. It is that type of thought, that jews were subhuman, that led to the final solution. As it is here with conservatives and religious right nuts, who believe gay people are sub human sickos in need of curing or killing.' +p6460 +aS'Well if there can be a Constitutional amendment to ban gay marriage, why not to remove marrriage from the federal government? Where do they get that power Constitutionally? So that would mean states can choose not to recognize any marriage Constitutionally. I think that marriage is a church issue. Let gays, straights, everyone get civil unions to be recognized legally. But leave marriage to the churches.' +p6461 +aS'When you have no constructive comment just attacks the messenger with your insultsand name calling.....typical...............so very sad..........Its radicals like you that hurt the cause of gay rights.........' +p6462 +aS"I don't find it surprising. It's probably a strategic sacrifice on their part rather than a change in their personal views . They don't want to lose votes and possible support from gun owners for their priorities like health care reform because of a difference of opinion on gun control policy. They know that the Republicans are going to hit them with everything they've got during election time and exaggerated accusations about the Democrats wanting to take away people's guns would hurt them. The Republicans learned during the Clinton years that creating as much as paranoia as possible about the Democrats supporting big government is the way to regain a majority in Congress. It's all politics." +p6463 +aS"False. Beneficial mutations in bacteria have been observed in the lab. Far from wrecking the system, they allowed the system to continue to live while those without the mutations died: the mutations improved the system's ability to survive and perpetuate itself." +p6464 +aS'By all means, burn those books . . . er, I mean, take down those nativity scenes.' +p6465 +aS'Well, assuming that when the Bible says "you" in passages that are telling "you" to do something with your soul, I would hope that it also applies to women. But it never comes out and says "women and men have souls." This doesn\'t mean they don\'t have them.Same thing with animals. The book isn\'t written for non-humans, so when it says "you" we can assume it doesn\'t refer to non-humans. But the book never says "animals don\'t have souls."So we can\'t assume that they don\'t (according to the bible).' +p6466 +aS'Well done Monty. Mark that up as your first ever 100% honest and accurate post here.' +p6467 +aS'So, the Supreme Court rested its decision not on the 9th Amendment as the District Court had done, but chose instead to base it on the 14th Amendment.' +p6468 +aS"Got evidence to back that up?? I'm not sure how a stoner's worse than an alcoholic really. -Wez" +p6469 +aS"because that's the subject of this thread: what designing a solution to a problem actually entails." +p6470 +aS"That's not quite right. More accurate would be: Nothing that occurs outside the realm of physical law is in the realm of science. Science by no means precludes the possibility of there being something outside the realm of science." +p6471 +aS'My mom can only trace her family back a few generations. By the time we get to the clan that lived in Ohio in the middle of the 19th century, the records get very confusing and very incomplete. By creationist logic, we must then accept that my ancestors, white Americans, were specially created in North America by God.' +p6472 +aS"You lost this debate Skeptic, why drag it back up again? There are plenty of other subjects that we could debate instead. Pick one of them and let's debate again. Alternatively, how about a formal debate on ID in which you never once mention Behe? That'll be a completely different one and worth considering." +p6473 +aS"You mean, the perpetrator is convicted and the defender acquitted? Yes, that's the rule and not the exception. Notice here how no-one ended up dead, or even particularly seriously injured. Additionally the circumstances described are incredibly rare, that's why it makes the news." +p6474 +aS'The article continues to comment that this mechanism serves as a mechanism tailored for evolution? Irrespective of its origins, somehow, life utilizes evolution FOR evolution. B. Convergence As seen in the docking simulation, the solutions all converg' +p6475 +aS'Really? Let me see. Two creation myths and a global flood myth where 5 million "kinds" of animal were crammed into a big box that magically floats for a year - yeah, that\'s secular history.' +p6476 +aS'There are some very rare cases where abortion is legitimately allowable by society. However, most abortions do not fall under this catagory.' +p6477 +aS'Not really. World forests are at risk for farm land and non-paper logging, not for paper which is being replaced by post consumer waste at increasing rates. Most paper people use today contains at least some recycled paper.' +p6478 +aS'And for years they did. They still can. Again, there is not a real problem with pirates.' +p6479 +aS'Yep - that\'s someting that many "pro-lifers" also never take into account.' +p6480 +aS'So what? That means in a firefight with police, the criminal will run out of ammunition in a matter of seconds and be ripe for the picking.' +p6481 +aS'Actually, the more educated a person is, the less likely he is to be a creationist. Creationists tend to be semi-literate (poorly educated), rural, poor, and female.' +p6482 +aS'But what about the hypothetical?I can\'t think of a single child on this planet that has never been exposed to the ideas of the supernatural.So, what I was asking is whether faith is nature or nurture.That\'s why I brought up kids being afraid of the dark, likely no matter what anyone tells them. I think it\'s this fear of the unknown linked to the "logical" brain of a human that possibly creates this need for explanations. But faith involves specifics, so when the specifics are filled in and "make sense" to more than one person, these specific "explanations" can be passed down.So I don\'t know how much of faith is nature and how much is nurture.' +p6483 +aS"Simple. The big government people will tell you that it's in everybody's best interest. The criminals will just kill you without debate." +p6484 +aS"Oh, there's no hypocrisy involved, just you being your usual self and not even looking at the actual information (or, more likely, looking at the information and then deliberately playing dumb)." +p6485 +aS"No, it's often an emotional show. They choose their families based on submitted videos, usually from families with one or more physically challenged members, then they build them a house to fit their needs.There was one in particular with a blind autistic boy who loved to swing. The joy on his face when he got the new swing would make any sensitive person weep with joy for him. There was another about a deaf couple whose new home included and lot of strobe light signaling systems.BTW, alcohol is a depressant! emoticonXWow" +p6486 +aS"I wish you could put your hands on that poll as well. Until then I'll remain skeptical. Let's remember that Democrats and liberals hunt. Remove that group and what's left? Something less than 20% of Americans that own only handguns." +p6487 +aS'Not in matters of atheism. Tell me, when science discovers something that seems to agree with the 150 year old writings of Darwin, are the writings of Darwin disregarded? Or is that type of history trumpeted to the masses?' +p6488 +aS'I suppose the fact that Indian law only applies to its people. Who qualifies as an Indian is another matter. Many people who have as little as one-tenth Indian blood qualify for liberal hunting privileges here in Minnesota.' +p6489 +aS'Because there are no dinosaur fossils above the iridium layer.' +p6490 +aS'Well it all depends on who is going to determine "right", isn\'t it? Abortion is not math. There are no finite answers. Just a myriad of opinions which inevitable lead to either abortion is right or abortion is wrong. No different now then when Roe v Wade became law or any other times in history. I do like Aristotle\'s take; He taught that a fetus originally had a vegetable soul but he didn\'t say what kind of vegetable.' +p6491 +aS"How do you define evolution? If you don't see any, then you aren't using the definition used by evolutionary biologists. The question is who should define the vocabulary of evolutionary biologist, evolutionary biologists or creationists?" +p6492 +aS'Well, by the strict defintion of the word "born", an abortion is considered a premature birth.' +p6493 +aS"Well, if they've re-established control in New Orleans(and it seems they have), then taking a gun away from someone carrying it on the street would be what the police normally do in any city. If they were taking it away from peoples' homes, and not letting them keep them, that would be over and above what they normally do. (I'm very pro-2nd Amendment, so don't get me wrong here. I'm just pointing out that taking guns away from people happens in every city every day)I also think that it's kind of disingenuous to complain about the military coming in--just a week ago everyone was criticizing the govt. for NOT sending in the military. Now people are criticizing them for doing it???" +p6494 +aS'Your reason for believing this lies entirely within the Bible. I hardly consider a 1500 year old book "making clear what he wants". Particularly given that even among those who believe the book, they still can\'t agree on what God wants. And of course, that doesn\'t even beging to address the issue of all the other holy books which contradict the Christian Bible. You may personally believe that you know what God wants, but if so it\'s not because God has been clear about it.' +p6495 +aS"Reading Difficulties, huh? There's a cure for that. It's called school. Perhaps you should go there....." +p6496 +aS"The problem with happenstance origins is that there is no evidence, and it's simply not possible to falsify it. If we were able to prove so many scientific proceedures (from abiogenesis to radiometric dating - all based on the presupposition that there is no God) were indisputably true, then ID would be falsified. There is not enough supporting evidence for happenstance origins. Yet so much of happenstance origins is considered science, so all too often, there is no line between religion and science. " +p6497 +aS"sinjin - I didn't mean to imply any linkage between your opinions and those of another poster. Apologies." +p6498 +aS'This is my understanding as well. Interestingly, concepts only approximate that which they intend to define. Confusion between concept and actuality is fertile ground for misunderstanding.' +p6499 +aS'And here our Government recognizes: Rule of Law: Fundamental Rights of Citizens Democracies exist to serve their people' +p6500 +aS'i\'m impressed! this is a very precise description, in regular englishand yes, the deduction in 9 seems presumptious if all we state is God has a "possibility of existence". how this was cleverly cleared up (from the same source site) was simply a trip back to the definition: "greatest possible being". the "greatest possible being", by definition, MUST have a possible existence. in otherwords, we cannot assume that there is a possibility that the greatest possible being does not exist. yeah, it sounds like the whole "proof" is pointless because your premise is already the proofjust keep in mind that for the purposes of this proof, God is defined as "the greatest being possible". as long as that definition is maintained, the proof works...does that mean that God exists? hmmm....emoticonXFrazzled' +p6501 +aS'You know that what you call "immoralism" is my life. Why do you hate me so much that you would be willing to deny my the happiness that you take forgranted and as your due? You don\'t even know me yet you are willing to defame me just because I am different from you. I don\'t understand how I am running over you by living my life openly and wanting the same thing as you the right to consider whom I choose to be my family. If you have an opinion about gay rights thats fine. If you want to deny me the same rights, as you take for granted, because of your opinion and beliefs though laws then that is bigotry.' +p6502 +aS'You\'re a little confused about that. It\'s all real DNA. Some of it just doesn\'t code for anything. But some parts of non-coding DNA (which you call "junk") has other functions besides coding for proteins.' +p6503 +aS"Yes it is, police aren't obligated by the US Constitution to protect individual citizens. If they were, lawsuits could be filed every time a crime is committed, and the police would go bankrupt really quick." +p6504 +aS"What's your claim? That the seasonal molt of arctic foxes is evolution or that it is not? As usual, your responses show muddled thinking." +p6505 +aS'But my point is that the Supreme Court has disagreed. Hence the illegitimate legal doctrine of substantive due process, which maintains that the due process clause can be violated even in cases where due process has been given.' +p6506 +aS'So Lewontin is the person who determines the opinion of the general public or something?' +p6507 +aS'If a God exists, then God is as God is.' +p6508 +aS"Look up the evolution of colour vision in primates. It's my personal favourite - but what do you think?" +p6509 +aS"I think this is a fair conclusion. I went as far as I did because of what it seems to say about the governor calling for a joint session. I may be wrong, but the text seems to instruct the governor to keep them in joint session until final action is taken. In other words, it doesn't appear that the governor has an option. And it does not seem that the Constitution allows for a legislative session that never ends. I'm not sure how else to square the two except that the legislature should pursue final action. Of course, as you have pointed out, it really is hard to speculate on this one without any historical context of the amended Amendment Process, and/or the relevant legal precedent surrounding it. Any thoughts on this?" +p6510 +aS"You yourself said you don't even know what the gun laws in California are. Yet you're saying there you believe they have legitimate tests?" +p6511 +aS"You think open carrying of loaded handguns in public will become fashionable in CA? I think if anyone took to this they'd find themselves asked to leave establishments routinely." +p6512 +aS'If the child is to be born into a poverty stricken part of the world and is expected to die by the age of 7 by either disease or lack of food, why not spare pain and abort?' +p6513 +aS"And this is a terrific breakthrough. My partner and I are coveered by my company's health insurance, and the state of Connecticut honors our Civil Union. That being said, I still have to pay tax on my partner's health insurance as imputed income because the federal government refuses to acknowledge our union.So it has to be marriage. Full and without exception.Civil Unions are not enough when we are treated differently under the law." +p6514 +aS'actually, the only valid question plotter asked is about the existence of dinosaurs (How did they fit into the creation schedule?) Good question plotter...Plotter: "when did he create all the other planets, when did he create all the other stars and comets?"Gen. 1:14 And God said, "Let there be lights in the firmament of the heavens to separate the day from the night; and let them be for signs and for seasons and for days and years, 15 and let them be lights in the firmament of the heavens to give light upon the earth." And it was so. and XQ, what stories are you talking about?' +p6515 +aS"And are people in DC legally allowed to carry their guns with them in a concealed manner, having them readily available like the rest of us do in the country?Absolutely not. According to DC your rights don't extend past your home, and it barely even exists inside your home." +p6516 +aS'I think that case was in Georgia (a different state) and so far as I know homosexuality was not involved. However if you want to worry about a legal case you need to look at Dover Pa. Not the sticker case in Cobb County.' +p6517 +aS"That's not something you can really blame on the pro-life movement. In fact, a lot of effort in the pro-life movement does go into helping single mothers. Many pro-life counseling services help single mothers offering support in a variety of ways, including financially." +p6518 +aS"Giving an answer to a conumdum doesn't necessarily solve it." +p6519 +aS'but they do support the choice to abort a fetus or embryo. An argument made for slavery was that "you don\'t have to own them but don\'t tell us what to do"..a fairly similar argument but doesn\'t show whether or not abortion is wrong just that some lines of thinking should be questioned.' +p6520 +aS'Actually your posts are providing increasing evidence for just how simple folks can get.' +p6521 +aS'Most Christians are, as is frequently pointed out by numerous posters in many different threads on this board.' +p6522 +aS"Because that's when the law says that they have the 'right to live.' Rights are legal terms that are fabricated by humans. They are not constant, but rather change whenever we wish to change them." +p6523 +aS'And a lot of blacks were killed through hangings. Are you against rope vendors?' +p6524 +aS"First of all, when gun owners say ban guns, it means, if you want to ban ANY Gun, you are a gun banner! You guys want to muck up the argument with we don't want to ban all guns, just some guns! However, that statement is just for now! If you get the ban more will be following! Nelson T. 'Pete' Shields -- Founder of Handgun Control, Inc." +p6525 +asS'val_ind' +p6526 +(lp6527 +I1232 +aI3072 +aI2687 +aI3093 +aI3015 +aI1491 +aI1764 +aI2697 +aI2791 +aI1604 +aI1249 +aI3160 +aI1841 +aI2971 +aI318 +aI1532 +aI2646 +aI2271 +aI2599 +aI3240 +aI1562 +aI899 +aI1350 +aI444 +aI1525 +aI2031 +aI2781 +aI860 +aI3097 +aI1830 +aI8 +aI41 +aI3170 +aI521 +aI567 +aI460 +aI1472 +aI2345 +aI2166 +aI3142 +aI3139 +aI2488 +aI2108 +aI1478 +aI2822 +aI774 +aI359 +aI100 +aI1055 +aI169 +aI819 +aI2852 +aI622 +aI1806 +aI2542 +aI313 +aI2055 +aI103 +aI492 +aI795 +aI508 +aI47 +aI343 +aI347 +aI311 +aI2030 +aI2992 +aI70 +aI1752 +aI2906 +aI1273 +aI2615 +aI3038 +aI485 +aI2263 +aI1896 +aI2362 +aI2712 +aI2382 +aI2402 +aI801 +aI2617 +aI2024 +aI702 +aI35 +aI1942 +aI227 +aI1718 +aI2213 +aI2898 +aI590 +aI831 +aI1696 +aI1244 +aI676 +aI2991 +aI428 +aI1930 +aI2545 +aI1322 +asS'test_ind' +p6528 +(lp6529 +I2083 +aI920 +aI1769 +aI1649 +aI2368 +aI1786 +aI1237 +aI1489 +aI2937 +aI1688 +aI1161 +aI848 +aI1033 +aI2868 +aI1173 +aI1560 +aI363 +aI515 +aI2386 +aI2576 +aI1014 +aI2862 +aI2873 +aI3224 +aI2207 +aI1776 +aI1163 +aI1310 +aI344 +aI2346 +aI1689 +aI1710 +aI3119 +aI2432 +aI964 +aI2956 +aI2666 +aI538 +aI3029 +aI3005 +aI3111 +aI918 +aI1431 +aI2879 +aI2318 +aI1749 +aI2941 +aI2005 +aI1541 +aI2436 +aI1680 +aI2463 +aI2118 +aI2280 +aI2006 +aI2259 +aI1536 +aI2558 +aI69 +aI914 +aI3136 +aI184 +aI51 +aI961 +aI1933 +aI2778 +aI927 +aI1295 +aI2425 +aI2321 +aI73 +aI1740 +aI3079 +aI2735 +aI986 +aI1091 +aI2534 +aI1809 +aI1785 +aI928 +aI1607 +aI1152 +aI652 +aI3174 +aI2673 +aI1997 +aI767 +aI501 +aI1722 +aI2093 +aI599 +aI3091 +aI529 +aI2664 +aI1804 +aI3177 +aI2015 +aI2931 +aI598 +aI356 +aI1621 +aI1262 +aI1168 +aI836 +aI3126 +aI905 +aI3217 +aI718 +aI1292 +aI1301 +aI1592 +aI1418 +aI3088 +aI967 +aI2728 +aI1054 +aI3156 +aI541 +aI2922 +aI2577 +aI2041 +aI2448 +aI223 +aI1326 +aI2915 +aI3253 +aI1912 +aI126 +aI1919 +aI282 +aI1916 +aI880 +aI3084 +aI936 +aI3147 +aI2221 +aI107 +aI2248 +aI1142 +aI2018 +aI1920 +aI376 +aI1337 +aI166 +aI1121 +aI1154 +aI857 +aI37 +aI2865 +aI2072 +aI1644 +aI3001 +aI2709 +aI642 +aI2434 +aI2275 +aI1272 +aI3041 +aI3237 +aI2061 +aI1877 +aI2208 +aI152 +aI2505 +aI2754 +aI644 +aI2326 +aI655 +aI2603 +aI2453 +aI2598 +aI2050 +aI1109 +aI420 +aI3238 +aI2518 +aI576 +aI2047 +aI3053 +aI3131 +aI498 +aI2994 +aI2439 +aI2882 +aI92 +aI314 +aI2916 +aI1951 +aI3195 +aI2333 +aI2299 +aI1089 +aI781 +aI2514 +aI2914 +aI2046 +aI1559 +aI1037 +aI554 +aI1611 +aI3226 +aI2803 +aI201 +aI1194 +aI685 +aI2969 +aI1828 +aI1953 +aI46 +aI553 +aI1826 +aI396 +aI2940 +aI2307 +aI327 +aI98 +aI2142 +aI2746 +aI1461 +aI1376 +aI273 +aI1269 +aI1471 +aI885 +aI2867 +aI1548 +aI2835 +aI933 +aI1372 +aI1921 +aI397 +aI1263 +aI1571 +aI1706 +aI1 +aI3056 +aI1882 +aI1474 +aI1613 +aI1868 +aI32 +aI662 +aI1944 +aI893 +aI3080 +aI2670 +aI947 +aI3203 +aI874 +aI3074 +aI2135 +aI1113 +aI3068 +aI2658 +aI891 +aI724 +aI1317 +aI2332 +aI1215 +aI20 +aI2282 +aI571 +aI1098 +aI2501 +aI1531 +aI2977 +aI1925 +aI2909 +aI1647 +aI1503 +aI2064 +aI1190 +aI1282 +aI2424 +aI1739 +aI2856 +aI105 +aI2273 +aI491 +aI1444 +aI2833 +aI1415 +aI67 +aI151 +aI1391 +aI2529 +aI1801 +aI1481 +aI1101 +aI2594 +aI1940 +aI878 +aI1239 +aI1954 +aI1160 +aI1865 +aI2575 +aI1031 +aI2508 +aI2373 +aI395 +aI2824 +aI1899 +aI1196 +aI2311 +aI2636 +aI1488 +aI2084 +aI2579 +aI29 +aI1364 +aI1948 +aI1771 +aI125 +aI3101 +aI711 +aI1429 +aI734 +aI2924 +aI887 +aI1188 +aI1012 +aI401 +aI1477 +aI231 +aI1443 +aI613 +aI2892 +aI1236 +aI1064 +aI2689 +aI106 +aI2277 +aI999 +aI157 +aI2537 +aI1590 +aI958 +aI27 +aI826 +aI3222 +aI2452 +aI3154 +aI3254 +aI608 +aI2146 +aI2117 +aI1494 +aI1435 +aI2403 +aI99 +aI509 +aI2888 +aI2088 +aI1884 +aI414 +aI266 +aI970 +aI145 +aI2370 +aI1307 +aI2206 +aI1002 +aI2844 +aI2507 +aI962 +aI2506 +aI2946 +aI2197 +aI284 +aI535 +aI2536 +aI3185 +aI580 +aI2891 +aI3073 +aI742 +aI2938 +aI1956 +aI1437 +aI810 +aI3083 +aI1908 +aI130 +aI451 +aI3213 +aI2409 +aI2740 +aI2351 +aI324 +aI188 +aI1270 +aI1909 +aI2392 +aI505 +aI2592 +aI743 +aI2491 +aI2132 +aI2170 +aI1114 +aI89 +aI2443 +aI629 +aI1510 +aI1518 +aI1602 +aI1544 +aI3035 +aI2538 +aI50 +aI2847 +aI57 +aI2060 +aI54 +aI1684 +aI2950 +aI161 +aI1996 +aI2793 +aI1890 +aI2285 +aI238 +aI2723 +aI288 +aI2750 +aI2122 +aI2857 +aI1290 +aI353 +aI2224 +aI1356 +aI1086 +aI194 +aI1561 +aI2468 +aI75 +aI2291 +aI475 +aI853 +aI2153 +aI1442 +aI2163 +aI773 +aI1758 +aI1069 +aI3218 +aI1856 +aI209 +aI2912 +aI2045 +aI389 +aI1378 +aI1983 +aI517 +aI606 +aI1709 +aI143 +aI365 +aI2422 +aI2895 +aI2863 +aI2780 +aI2152 +aI526 +aI2954 +aI1416 +aI1243 +aI2621 +aI2696 +aI268 +aI536 +aI615 +aI1970 +aI175 +aI2830 +aI559 +aI1397 +aI777 +aI200 +aI2087 +aI1975 +aI3221 +aI820 +aI1095 +aI1336 +aI2848 +aI2504 +aI25 +aI242 +aI1746 +aI997 +aI1834 +aI205 +aI1118 +aI2787 +aI2319 +aI1008 +aI13 +aI1598 +aI2162 +aI297 +aI1753 +aI2731 +aI877 +aI2968 +aI3138 +aI21 +aI2023 +aI471 +aI2890 +aI1892 +aI1589 +aI2247 +aI15 +aI2092 +aI278 +aI224 +aI747 +aI586 +aI12 +aI345 +aI1079 +aI1770 +aI1078 +aI2659 +aI2233 +aI1606 +aI2302 +aI977 +aI1790 +aI2849 +aI921 +aI1945 +aI1931 +aI1730 +aI2805 +aI3252 +aI2884 +aI1580 +aI328 +aI68 +aI309 +aI1640 +aI2167 +aI1547 +aI1225 +aI438 +aI1083 +aI1241 +aI433 +aI3046 +aI1513 +aI2201 +aI39 +aI2140 +aI1129 +aI2762 +aI2161 +aI2818 +aI2976 +aI822 +aI2541 +aI1714 +aI3007 +aI2623 +aI1248 +aI1941 +aI426 +aI762 +aI44 +aI302 +aI1327 +aI1459 +aI470 +aI2961 +aI2930 +aI3146 +aI1950 +aI1291 +aI881 +aI1484 +aI2996 +aI2186 +aI628 +aI1220 +aI2054 +aI1179 +aI72 +aI1905 +aI1224 +aI135 +aI330 +aI1446 +aI34 +aI418 +aI650 +aI601 +aI1505 +aI2304 +aI1813 +aI2866 +aI1918 +aI1184 +aI2051 +aI1203 +aI2193 +aI62 +aI1395 +aI3008 +aI2767 +aI1068 +aI1000 +aI1917 +aI281 +aI789 +aI1729 +aI957 +aI1529 +aI383 +aI2466 +aI2526 +aI2104 +aI524 +aI2640 +aI792 +aI952 +aI3152 +aI3236 +aI1210 +aI280 +aI2121 +aI2444 +aI1162 +aI555 +aI94 +aI3157 +aI1387 +aI1128 +aI2692 +aI2278 +aI750 +aI2513 +aI264 +aI714 +aI1389 +aI1878 +aI1900 +aI424 +aI2009 +aI1476 +aI2733 +aI2903 +aI959 +aI2245 +aI1266 +aI1369 +aI864 +aI1540 +aI593 +aI1538 +aI842 +aI3143 +aI2106 +aI1063 +aI807 +aI2022 +aI3235 +aI971 +aI305 +aI132 +aI2358 +aI2897 +aI1499 +aI171 +aI182 +aI371 +aI294 +aI2238 +aI2716 +aI2607 +aI695 +aI2391 +aI340 +aI566 +aI2065 +aI1963 +aI2690 +aI349 +aI122 +aI3198 +aI23 +aI1221 +aI2532 +aI834 +aI2855 +aI2641 +aI2985 +aI610 +aI1299 +aI1226 +aI725 +aI3016 +aI2286 +aI2686 +aI1025 +aI1015 +aI1765 +aI1051 +aI950 +aI1074 +aI2753 +aI2959 +aI153 +aI78 +aI849 +aI2590 +aI1537 +aI1436 +aI2057 +aI3127 +aI2473 +aI840 +aI2719 +aI847 +aI1482 +aI1961 +aI40 +aI2196 +aI3032 +aI2901 +aI3019 +aI1665 +aI425 +aI3020 +aI1409 +aI1888 +aI2239 +aI2214 +aI1475 +aI262 +aI1373 +aI3148 +aI1991 +aI1432 +aI1423 +aI2764 +aI1073 +aI1104 +aI1936 +aI2569 +aI1468 +aI292 +aI3066 +aI1676 +aI213 +aI2932 +aI3116 +aI863 +aI736 +aI2205 +aI298 +aI3258 +aI790 +aI1573 +aI3109 +aI688 +aI3047 +aI1557 +aI116 +aI564 +aI1583 +aI172 +aI3128 +aI1434 +aI500 +aI1860 +aI1445 +aI222 +aI3021 +aI592 +aI1214 +aI2235 +aI1713 +aI1259 +aI1255 +aI2415 +aI2315 +aI285 +aI2935 +aI707 +aI2387 +aI2869 +aI1629 +aI467 +aI1827 +aI3249 +aI2605 +aI798 +aI883 +aI2789 +aI2535 +aI2870 +aI96 +aI3186 +aI963 +aI1075 +aI2499 +aI2400 +aI2972 +aI1619 +aI868 +aI1251 +aI1199 +aI3212 +aI258 +aI2175 +aI2639 +aI2960 +aI900 +aI2410 +aI929 +aI2056 +aI1198 +aI2295 +aI1175 +aI1794 +aI3180 +aI331 +aI2550 +aI780 +aI2472 +aI1293 +aI3078 +aI2240 +aI496 +aI1193 +aI2184 +aI149 +aI1539 +aI2559 +aI179 +aI124 +aI2126 +aI540 +aI95 +aI1627 +aI2075 +aI3043 +aI2456 +aI1610 +aI1568 +aI2383 +aI643 +aI1486 +aI155 +aI1449 +aI813 +aI996 +aI2998 +aI413 +aI181 +aI1044 +aI198 +aI1452 +aI3062 +aI2395 +aI1678 +aI2631 +aI2876 +aI1365 +aI1615 +aI307 +aI845 +aI1209 +aI137 +aI1656 +aI1512 +aI1817 +aI287 +aI823 +aI1390 +aI417 +aI24 +aI2231 +aI2076 +aI583 +aI1605 +aI239 +aI3118 +aI832 +aI2200 +aI1674 +aI2877 +aI85 +aI1519 +aI2481 +aI3023 +aI1843 +aI2309 +aI1927 +aI3014 +aI1880 +aI1701 +aI2227 +aI1760 +aI483 +aI2037 +aI1020 +aI1662 +aI1405 +aI6 +aI2267 +aI400 +aI669 +aI693 +aI128 +aI129 +aI1965 +aI2113 +aI1170 +aI1013 +aI3003 +aI665 +aI1141 +aI3059 +aI753 +aI2138 +aI3112 +aI2371 +aI2533 +aI746 +aI1211 +aI1042 +aI1084 +aI260 +aI3004 +aI636 +aI635 +aI2683 +aI811 +aI300 +aI1702 +aI721 +aI192 +aI867 +aI2389 +aI1693 +aI322 +aI2355 +aI2493 +aI1268 +aI2586 +aI91 +aI2016 +aI1363 +aI351 +aI755 +aI1978 +aI1808 +aI2405 +aI2500 +aI3011 +aI2330 +aI2953 +aI2487 +aI1048 +aI572 +aI2128 +aI2137 +aI2203 +aI2290 +aI3113 +aI2257 +aI1473 +aI170 +aI1455 +aI1233 +aI2204 +aI2125 +aI1863 +aI2165 +aI3025 +aI2600 +aI1726 +aI2679 +aI1814 +aI127 +aI251 +aI577 +aI1715 +aI1119 +aI3242 +aI252 +aI1767 +aI2182 +aI896 +aI2134 +aI2158 +aI232 +aI2973 +aI1650 +aI2596 +aI319 +aI341 +aI28 +aI1386 +aI945 +aI2364 +aI2635 +aI738 +aI216 +aI990 +aI2685 +aI1123 +aI537 +aI2101 +aI1406 +aI90 +aI447 +aI2738 +aI61 +aI2002 +aI2606 +aI926 +aI2325 +aI2871 +aI2619 +aI2616 +aI818 +aI939 +aI121 +aI1859 +aI2919 +aI437 +aI1857 +aI2040 +aI2563 +aI193 +aI2212 +aI954 +aI1946 +aI2815 +aI1280 +aI731 +aI2147 +aI547 +aI2008 +aI1382 +aI2251 +aI487 +aI308 +aI2480 +aI1285 +aI865 +aI113 +aI502 +aI2736 +aI1566 +aI3036 +aI1120 +aI2490 +aI1840 +aI180 +aI3130 +aI1419 +aI408 +aI2923 +aI1705 +aI797 +aI3124 +aI462 +aI1302 +aI1732 +aI678 +aI468 +aI2806 +aI1994 +aI771 +aI985 +aI568 +aI2317 +aI3069 +aI1926 +aI3075 +aI889 +aI1869 +aI419 +aI2804 +aI244 +aI9 +aI527 +aI994 +aI2211 +aI202 +aI3225 +aI1881 +aI2707 +aI1335 +aI732 +aI1517 +aI1297 +aI2612 +aI830 +aI481 +aI904 +aI2808 +aI681 +aI2933 +aI1011 +aI3022 +aI1383 +aI719 +aI3055 +aI640 +aI2131 +aI1398 +aI2266 +aI1522 +aI710 +aI2068 +aI2752 +aI2090 +aI1657 +aI2329 +aI2934 +aI2461 +aI140 +aI1789 +aI1375 +aI2993 +aI2734 +aI1411 +aI2014 +aI114 +aI3169 +aI2079 +aI2289 +aI2244 +aI3122 +aI312 +aI1672 +aI1838 +aI1265 +aI1096 +aI1456 +aI2704 +aI749 +aI1320 +aI2099 +aI3168 +aI1066 +aI2828 +aI784 +aI3002 +aI248 +aI2199 +aI2634 +aI2988 +aI2708 +aI1496 +aI1574 +aI2262 +aI456 +aI679 +aI1334 +aI1928 +aI3028 +aI3230 +aI1788 +aI2816 +aI1151 +aI2591 +aI392 +aI1651 +aI2622 +aI2374 +aI1246 +aI3250 +aI850 +aI1593 +aI2412 +aI488 +aI803 +aI587 +aI2910 +aI499 +aI1125 +aI386 +aI694 +aI3045 +aI575 +aI1520 +aI2768 +aI2520 +aI2737 +aI674 +aI2554 +aI1832 +aI1178 +aI2904 +aI2459 +aI3050 +aI2555 +aI1245 +aI2531 +aI2435 +aI2303 +aI2742 +aI3187 +aI3175 +aI2574 +aI1578 +aI1911 +aI532 +aI36 +aI2034 +aI1618 +aI3129 +aI158 +aI1699 +aI1698 +aI2945 +aI1866 +aI1748 +aI1479 +aI969 +aI1811 +aI2684 +aI279 +aI720 +aI360 +aI2585 +aI748 +aI579 +aI827 +aI594 +aI207 +aI3172 +aI33 +aI2354 +aI2103 +aI2997 +aI1338 +aI1340 +aI2801 +aI2528 +aI2747 +aI2478 +aI1600 +aI1306 +aI2638 +aI2437 +aI852 +aI1384 +aI3144 +aI431 +aI1081 +aI1549 +aI3123 +aI828 +aI174 +aI890 +aI1564 +aI2298 +aI543 +aI1733 +aI1959 +aI934 +aI1646 +aI2655 +aI1982 +aI2408 +aI1110 +aI1871 +aI2773 +aI1324 +aI2677 +aI1140 +aI83 +aI2952 +aI479 +aI2462 +aI377 +aI2433 +aI304 +aI2760 +aI1932 +aI1962 +aI1206 +aI1876 +aI1867 +aI1745 +aI565 +aI236 +aI342 +aI1511 +aI1807 +aI1846 +aI1633 +aI955 +aI2150 +aI17 +aI569 +aI2654 +aI1093 +aI2722 +aI616 +aI472 +aI310 +aI2048 +aI267 +aI2446 +aI484 +aI204 +aI3178 +aI1793 +aI1551 +aI1343 +aI350 +aI1773 +aI412 +aI2582 +aI163 +aI241 +aI393 +aI861 +aI1428 +aI2489 +aI2222 +aI2894 +aI2772 +aI2774 +aI2718 +aI1638 +aI595 +aI1061 +aI1247 +aI1949 +aI2761 +aI3042 +aI1637 +aI203 +aI558 +aI1204 +aI2644 +aI2745 +aI1264 +aI1873 +aI727 +aI225 +aI2907 +aI2587 +aI1711 +aI2523 +aI2465 +aI697 +aI611 +aI178 +aI2215 +aI787 +aI1501 +aI1998 +aI2657 +aI3092 +aI263 +aI1854 +aI1463 +aI1734 +aI3183 +aI3027 +aI1712 +aI1159 +aI2417 +aI2188 +aI2173 +aI596 +aI2957 +aI1460 +aI2 +aI1153 +aI2460 +aI3082 +aI525 +aI1148 +aI2313 +aI2020 +aI1780 +aI450 +aI1296 +aI364 +aI703 +aI2947 +aI1330 +aI2730 +aI2078 +aI2419 +aI2198 +aI1216 +aI1845 +aI3190 +aI843 +aI53 +aI2360 +aI2974 +aI1358 +aI651 +aI183 +aI1521 +aI1708 +aI3155 +aI1632 +aI473 +aI909 +aI897 +aI2790 +aI1642 +aI2983 +aI1879 +aI2429 +aI316 +aI332 +aI1329 +aI561 +aI112 +aI2154 +aI2252 +aI619 +aI2570 +aI2096 +aI369 +aI1787 +aI1200 +aI1987 +aI261 +aI3202 +aI217 +aI1380 +aI612 +aI2293 +aI1490 +aI3210 +aI979 +aI2418 +aI2714 +aI1022 +aI1331 +aI892 +aI1396 +aI682 +aI2129 +aI1663 +aI3247 +aI139 +aI3164 +aI1737 +aI2181 +aI429 +aI696 +aI3012 +aI2675 +aI3110 +aI717 +aI2281 +aI109 +aI2156 +aI1222 +aI2431 +aI1228 +aI1308 +aI1242 +aI1803 +aI2700 +aI2454 +aI19 +aI463 +aI2936 +aI675 +aI119 +aI120 +aI1661 +aI1010 +aI142 +aI1966 +aI1035 +aI1738 +aI597 +aI250 +aI1603 +aI614 +aI723 +aI3189 +aI3159 +aI2115 +aI2609 +aI3173 +aI1679 +aI1298 +aI2347 +aI2510 +aI2786 +aI1421 +aI221 +aI2314 +aI1039 +aI1260 +aI2241 +aI981 +aI455 +aI64 +aI2000 +aI65 +aI2308 +aI446 +aI2033 +aI2771 +aI700 +aI631 +aI1466 +aI1040 +aI699 +aI585 +aI1433 +aI144 +aI3105 +aI2571 +aI1183 +aI829 +aI2191 +aI2843 +aI2127 +aI486 +aI759 +aI2445 +aI2748 +aI2896 +aI1323 +aI1697 +aI101 +aI448 +aI63 +aI55 +aI1515 +aI2372 +aI1498 +aI159 +aI1847 +aI752 +aI2706 +aI326 +aI906 +aI814 +aI1171 +aI912 +aI1357 +aI1420 +aI2052 +aI2228 +aI1805 +aI14 +aI2652 +aI80 +aI1212 +aI3206 +aI1019 +aI2918 +aI539 +aI1500 +aI686 +aI2572 +aI1344 +aI2254 +aI833 +aI1851 +aI903 +aI3037 +aI1305 +aI1368 +aI1579 +aI1149 +aI3197 +aI788 +aI2069 +aI578 +aI2401 +aI160 +aI1107 +aI2649 +aI2185 +aI315 +aI1886 +aI1385 +aI518 +aI374 +aI1058 +aI3163 +aI176 +aI733 +aI1889 +aI1955 +aI1523 +aI825 +aI698 +aI2320 +aI1639 +aI2567 +aI1772 +aI3026 +aI2955 +aI1408 +aI1862 +aI1076 +aI741 +aI2348 +aI1202 +aI3125 +aI2479 +aI3228 +aI2095 +aI987 +aI214 +aI1870 +aI2917 +aI2265 +aI277 +aI219 +aI3179 +aI1612 +aI2797 +aI1458 +aI3058 +aI380 +aI3087 +aI1939 +aI3244 +aI0 +aI2926 +aI1080 +aI2823 +aI2003 +aI1240 +aI1271 +aI1139 +aI1988 +aI1542 +aI2676 +aI1724 +aI2732 +aI2393 +aI757 +aI1655 +aI289 +aI1967 +aI2086 +aI1144 +aI474 +aI1467 +aI2143 +aI1392 +aI2512 +aI1105 +aI2110 +aI975 +aI1004 +aI1691 +aI917 +aI2656 +aI1989 +aI2777 +aI2711 +aI1816 +aI2556 +aI2674 +aI3196 +aI2464 +aI1254 +aI2119 +aI907 +aI495 +aI2327 +aI2223 +aI1784 +aI2025 +aI1070 +aI141 +aI804 +aI276 +aI2648 +aI2343 +aI639 +aI2029 +aI609 +aI2553 +aI2218 +aI2691 +aI1111 +aI452 +aI3044 +aI1570 +aI434 +aI2809 +aI1952 +aI3200 +aI2729 +aI806 +aI884 +aI2160 +aI1935 +aI761 +aI477 +aI2840 +aI1723 +aI627 +aI2893 +aI901 +aI454 +aI2216 +aI1874 +aI2980 +aI2168 +aI317 +aI692 +aI3100 +aI102 +aI1189 +aI1176 +aI348 +aI2043 +aI1622 +aI1839 +aI104 +aI835 +aI638 +aI666 +aI3205 +aI3181 +aI556 +aI2717 +aI187 +aI802 +aI1976 +aI1147 +aI1309 +aI2962 +aI2530 +aI1934 +aI1229 +aI1885 +aI940 +aI1943 +aI1741 +aI1366 +aI2482 +aI2144 +aI2540 +aI2999 +aI1509 +aI649 +aI522 +aI1914 +aI3232 +aI1744 +aI3161 +aI1180 +aI405 +aI1608 +aI2189 +aI2249 +aI1413 +aI661 +aI2611 +aI1563 +aI3255 +aI1217 +aI482 +aI3193 +aI1986 +aI1134 +aI941 +aI1799 +aI2944 +aI1992 +aI2287 +aI1023 +aI2900 +aI973 +aI1219 +aI1404 +aI2082 +aI211 +aI2629 +aI3039 +aI1430 +aI633 +aI898 +aI1480 +aI2578 +aI656 +aI1575 +aI2359 +aI2353 +aI2766 +aI2846 +aI683 +aI1001 +aI1669 +aI930 +aI1850 +aI2601 +aI2854 +aI3052 +aI2390 +aI3246 +aI2471 +aI2174 +aI3106 +aI1594 +aI1325 +aI1003 +aI948 +aI873 +aI859 +aI2361 +aI2989 +aI30 +aI56 +aI1454 +aI1034 +aI1312 +aI966 +aI22 +aI2226 +aI212 +aI1261 +aI2269 +aI2331 +aI1027 +aI982 +aI924 +aI2979 +aI2633 +aI220 +aI1150 +aI1721 +aI729 +aI1947 +aI991 +aI218 +aI2476 +aI3182 +aI2044 +aI1374 +aI1124 +aI2905 +aI2155 +aI138 +aI3071 +aI2195 +aI632 +aI1314 +aI2584 +aI2628 +aI1127 +aI1750 +aI1844 +aI1318 +aI1596 +aI1021 +aI71 +aI1958 +aI998 +aI2350 +aI1815 +aI283 +aI793 +aI246 +aI275 +aI949 +aI1581 +aI1287 +aI2990 +aI110 +aI2516 +aI2982 +aI2136 +aI1007 +aI2825 +aI2011 +aI2220 +aI2845 +aI841 +aI1768 +aI2292 +aI2283 +aI938 +aI1218 +aI607 +aI291 +aI2085 +aI1524 +aI403 +aI148 +aI2202 +aI2829 +aI993 +aI3162 +aI1462 +aI1576 +aI546 +aI1848 +aI2250 +aI3208 +aI1969 +aI911 +aI976 +aI3067 +aI1135 +aI1923 +aI2650 +aI2279 +aI2755 +aI1052 +aI259 +aI2301 +aI1703 +aI173 +aI1252 +aI782 +aI2546 +aI1136 +aI2757 +aI2672 +aI466 +aI603 +aI2788 +aI764 +aI1910 +aI2583 +aI38 +aI3009 +aI2593 +aI164 +aI1283 +aI2130 +aI76 +aI1313 +aI3099 +aI624 +aI2450 +aI2053 +aI1683 +aI1643 +aI870 +aI641 +aI637 +aI18 +aI286 +aI3216 +aI602 +aI2886 +aI1822 +aI1636 +aI2070 +aI2831 +aI2133 +aI381 +aI1024 +aI646 +aI432 +aI2407 +aI489 +aI2502 +aI191 +aI2724 +aI2323 +aI469 +aI93 +aI2398 +aI2800 +aI728 +aI744 +aI2889 +aI2007 +aI2379 +aI2726 +aI2858 +aI1973 +aI2496 +aI1700 +aI1937 +aI2624 +aI1990 +aI2427 +aI2908 +aI1820 +aI1981 +aI2632 +aI2229 +aI913 +aI3070 +aI851 +aI88 +aI338 +aI254 +aI1659 +aI321 +aI1812 +aI3017 +aI1057 +aI2749 +aI3231 +aI306 +aI2388 +aI410 +aI2498 +aI335 +aI2837 +aI1410 +aI1957 +aI1333 +aI108 +aI722 +aI1400 +aI937 +aI1026 +aI1565 +aI1858 +aI894 +aI516 +aI2404 +aI1126 +aI1439 +aI573 +aI2447 +aI97 +aI1904 +aI2230 +aI1294 +aI1275 +aI625 +aI965 +aI1267 +aI1707 +aI1558 +aI2647 +aI1036 +aI226 +aI1339 +aI1922 +aI2885 +aI1059 +aI229 +aI584 +aI2492 +aI2637 +aI115 +aI1587 +aI512 +aI1117 +aI1341 +aI3102 +aI1342 +aI2334 +aI2139 +aI43 +aI1555 +aI449 +aI1686 +aI2544 +aI2232 +aI1492 +aI1381 +aI1687 +aI756 +aI2260 +aI919 +aI534 +aI1425 +aI2887 +aI2377 +aI1166 +aI2028 +aI3251 +aI1279 +aI1735 +aI123 +aI81 +aI2850 +aI2148 +aI1469 +aI2625 +aI2063 +aI1495 +aI441 +aI3090 +aI59 +aI1158 +aI1130 +aI504 +aI2164 +aI1504 +aI2618 +aI989 +aI2012 +aI2105 +aI66 +aI1577 +aI1393 +aI1192 +aI2399 +aI1417 +aI1585 +aI2883 +aI3049 +aI2032 +aI2725 +aI992 +aI3134 +aI1791 +aI2243 +aI2880 +aI2457 +aI2720 +aI2948 +aI303 +aI1205 +aI2943 +aI2902 +aI2958 +aI653 +aI2710 +aI1823 +aI2929 +aI808 +aI654 +aI2987 +aI557 +aI1197 +aI3245 +aI2258 +aI2255 +aI1281 +aI1695 +aI1895 +aI3034 +aI2627 +aI2813 +aI549 +aI1984 +aI1999 +aI167 +aI3063 +aI925 +aI528 +aI995 +aI817 +aI2384 +aI2376 +aI670 +aI2911 +aI387 +aI760 +aI2838 +aI1704 +aI272 +aI3000 +aI1907 +aI49 +aI2123 +aI1349 +aI206 +aI1115 +aI2219 +aI805 +aI1407 +aI605 +aI824 +aI2416 +aI2010 +aI11 +aI3167 +aI3257 +aI2776 +aI542 +aI1351 +aI2519 +aI407 +aI648 +aI2296 +aI1717 +aI791 +aI663 +aI2336 +aI1743 +aI1677 +aI862 +aI778 +aI2693 +aI1457 +aI1586 +aI352 +aI1371 +aI684 +aI677 +aI1623 +aI1403 +aI866 +aI133 +aI1223 +aI664 +aI2426 +aI2565 +aI974 +aI533 +aI2561 +aI886 +aI2620 +aI2741 +aI494 +aI2059 +aI2821 +aI1276 +aI366 +aI1977 +aI716 +aI794 +aI2171 +aI751 +aI1634 +aI357 +aI2597 +aI2920 +aI680 +aI1833 +aI3006 +aI146 +aI1332 +aI709 +aI131 +aI3096 +aI3076 +aI1692 +aI346 +aI706 +aI574 +aI358 +aI478 +aI2027 +aI323 +aI726 +aI52 +aI3248 +aI2073 +aI2568 +aI855 +aI362 +aI253 +aI783 +aI367 +aI1157 +aI1527 +aI1778 +aI1321 +aI2841 +aI406 +aI1682 +aI1670 +aI2860 +aI617 +aI2820 +aI552 +aI26 +aI1775 +aI1757 +aI2274 +aI247 +aI3054 +aI1049 +aI325 +aI785 +aI1483 +aI1599 +aI2562 +aI2580 +aI2151 +aI118 +aI1172 +aI3103 +aI1169 +aI490 +aI147 +aI3199 +aI2642 +aI2380 +aI2939 +aI2588 +aI2667 +aI799 +aI1620 +aI1971 +aI514 +aI730 +aI2626 +aI523 +aI2795 +aI1728 +aI2414 +aI812 +aI3065 +aI2927 +aI1427 +aI1071 +aI869 +aI2089 +aI2187 +aI2832 +aI2503 +aI1893 +aI2527 +aI440 +aI1755 +aI2081 +aI1453 +aI249 +aI1065 +aI1316 +aI2630 +aI2157 +aI2851 +aI2802 +aI2794 +aI2098 +aI409 +aI177 +aI1231 +aI2660 +aI712 +aI551 +aI394 +aI415 +aI1207 +aI2613 +aI3207 +aI3141 +aI2421 +aI2210 +aI2817 +aI3132 +aI1360 +aI1796 +aI3061 +aI2049 +aI2861 +aI2310 +aI1588 +aI1972 +aI1250 +aI1401 +aI3149 +aI507 +asS'train_ind' +p6530 +(lp6531 +I1635 +aI671 +aI888 +aI2524 +aI944 +aI3107 +aI2411 +aI1099 +aI2864 +aI2928 +aI2183 +aI3086 +aI3220 +aI1006 +aI588 +aI2875 +aI1097 +aI2651 +aI87 +aI86 +aI2763 +aI136 +aI2145 +aI2406 +aI737 +aI739 +aI2176 +aI197 +aI1092 +aI715 +aI1528 +aI1056 +aI839 +aI2986 +aI2172 +aI3094 +aI844 +aI2721 +aI2964 +aI1673 +aI876 +aI2663 +aI274 +aI2783 +aI766 +aI701 +aI2610 +aI3239 +aI3243 +aI1747 +aI2921 +aI838 +aI1412 +aI2306 +aI2268 +aI445 +aI1315 +aI1582 +aI1821 +aI2966 +aI2566 +aI800 +aI1182 +aI388 +aI457 +aI2645 +aI2872 +aI1664 +aI382 +aI1535 +aI256 +aI1043 +aI416 +aI2770 +aI82 +aI634 +aI1824 +aI2834 +aI2698 +aI2796 +aI1277 +aI1648 +aI2643 +aI2264 +aI1968 +aI1379 +aI84 +aI2853 +aI42 +aI2785 +aI2294 +aI1631 +aI3188 +aI875 +aI2744 +aI2357 +aI1835 +aI968 +aI1552 +aI2970 +aI1797 +aI2758 +aI1440 +aI2178 +aI1818 +aI1891 +aI3108 +aI3259 +aI3030 +aI768 +aI2799 +aI1497 +aI705 +aI1352 +aI2784 +aI1257 +aI1929 +aI1060 +aI667 +aI570 +aI1465 +aI1132 +aI2661 +aI687 +aI3256 +aI1388 +aI3171 +aI1591 +aI3115 +aI1181 +aI480 +aI1625 +aI2765 +aI2548 +aI1572 +aI1731 +aI2236 +aI2798 +aI1347 +aI1328 +aI1829 +aI255 +aI659 +aI299 +aI2300 +aI1045 +aI436 +aI1470 +aI453 +aI1569 +aI2177 +aI2681 +aI1005 +aI513 +aI189 +aI379 +aI3209 +aI1630 +aI1082 +aI1441 +aI2305 +aI2543 +aI2705 +aI1617 +aI1030 +aI2995 +aI190 +aI1227 +aI3223 +aI2341 +aI3051 +aI2091 +aI2775 +aI3137 +aI1666 +aI1451 +aI233 +aI2792 +aI2141 +aI1164 +aI1502 +aI1556 +aI519 +aI2116 +aI458 +aI1235 +aI1286 +aI2312 +aI1837 +aI2039 +aI1842 +aI165 +aI560 +aI2324 +aI895 +aI333 +aI2328 +aI980 +aI2094 +aI2671 +aI2237 +aI2509 +aI2297 +aI618 +aI2430 +aI1810 +aI385 +aI373 +aI3204 +aI882 +aI391 +aI2703 +aI2225 +aI2495 +aI620 +aI3166 +aI1979 +aI2702 +aI3214 +aI2812 +aI2192 +aI1041 +aI2288 +aI2284 +aI1653 +aI946 +aI1362 +aI390 +aI923 +aI931 +aI1094 +aI1553 +aI1853 +aI1667 +aI645 +aI530 +aI1645 +aI2396 +aI1361 +aI1311 +aI2602 +aI1754 +aI1493 +aI3098 +aI1694 +aI772 +aI1487 +aI2100 +aI2077 +aI2484 +aI45 +aI2782 +aI2965 +aI1993 +aI581 +aI1345 +aI1887 +aI1533 +aI58 +aI3085 +aI1654 +aI545 +aI776 +aI2420 +aI3013 +aI1974 +aI1016 +aI1038 +aI2381 +aI2169 +aI1906 +aI430 +aI2378 +aI1186 +aI3150 +aI1464 +aI1167 +aI3089 +aI531 +aI660 +aI442 +aI626 +aI2595 +aI404 +aI2874 +aI816 +aI951 +aI1085 +aI1554 +aI915 +aI815 +aI355 +aI1725 +aI2363 +aI2688 +aI2573 +aI1855 +aI2458 +aI902 +aI1156 +aI293 +aI2194 +aI60 +aI2521 +aI1514 +aI1424 +aI1304 +aI2455 +aI1550 +aI3031 +aI2253 +aI3219 +aI691 +aI497 +aI2467 +aI1088 +aI2975 +aI2365 +aI3095 +aI3033 +aI1774 +aI111 +aI269 +aI3215 +aI2552 +aI1353 +aI1253 +aI1883 +aI1792 +aI2209 +aI2668 +aI1355 +aI1795 +aI2978 +aI1727 +aI423 +aI1131 +aI3211 +aI3241 +aI235 +aI3081 +aI1187 +aI1720 +aI402 +aI1067 +aI2339 +aI2899 +aI796 +aI2180 +aI336 +aI960 +aI1238 +aI493 +aI2759 +aI1090 +aI398 +aI1779 +aI439 +aI1077 +aI1751 +aI320 +aI3010 +aI2451 +aI7 +aI3145 +aI74 +aI1289 +aI465 +aI1641 +aI2769 +aI1508 +aI1367 +aI943 +aI1781 +aI2352 +aI935 +aI3153 +aI1102 +aI2470 +aI754 +aI2276 +aI1985 +aI411 +aI2560 +aI1690 +aI2179 +aI2042 +aI2338 +aI1938 +aI3227 +aI2190 +aI1671 +aI2001 +aI1875 +aI1485 +aI5 +aI1046 +aI1112 +aI984 +aI2694 +aI1595 +aI2701 +aI2107 +aI1053 +aI2013 +aI1138 +aI2071 +aI3184 +aI422 +aI461 +aI2272 +aI2102 +aI1133 +aI1597 +aI2080 +aI2246 +aI673 +aI1201 +aI1783 +aI763 +aI2441 +aI3060 +aI1546 +aI2385 +aI210 +aI562 +aI510 +aI48 +aI922 +aI758 +aI1777 +aI910 +aI337 +aI2469 +aI2397 +aI1100 +aI4 +aI2440 +aI3133 +aI1601 +aI1964 +aI2614 +aI1782 +aI329 +aI2515 +aI2581 +aI1288 +aI983 +aI2483 +aI2739 +aI370 +aI1174 +aI117 +aI1836 +aI3176 +aI548 +aI1616 +aI2981 +aI1902 +aI858 +aI621 +aI154 +aI1584 +aI630 +aI647 +aI1438 +aI1103 +aI879 +aI2475 +aI1346 +aI3233 +aI2669 +aI2067 +aI2836 +aI3024 +aI2335 +aI1028 +aI257 +aI2316 +aI1995 +aI1062 +aI2356 +aI476 +aI2366 +aI1800 +aI1414 +aI375 +aI1864 +aI3077 +aI2653 +aI690 +aI1628 +aI3165 +aI1675 +aI2423 +aI2124 +aI1258 +aI2112 +aI1426 +aI3048 +aI2680 +aI459 +aI2367 +aI2449 +aI1009 +aI2066 +aI1177 +aI3120 +aI2842 +aI2035 +aI2062 +aI2477 +aI1230 +aI1761 +aI779 +aI2665 +aI1852 +aI704 +aI245 +aI271 +aI1516 +aI2394 +aI2951 +aI1898 +aI2340 +aI1543 +aI1284 +aI846 +aI1348 +aI1191 +aI623 +aI2097 +aI1370 +aI1354 +aI1626 +aI1763 +aI1798 +aI1146 +aI1658 +aI186 +aI2442 +aI1300 +aI215 +aI2019 +aI769 +aI162 +aI1145 +aI978 +aI237 +aI1614 +aI1980 +aI3229 +aI2819 +aI2779 +aI809 +aI421 +aI1234 +aI837 +aI1448 +aI2839 +aI2743 +aI1534 +aI1208 +aI745 +aI31 +aI150 +aI1422 +aI2814 +aI563 +aI604 +aI1762 +aI1047 +aI1825 +aI1507 +aI1402 +aI550 +aI1377 +aI1394 +aI2827 +aI1116 +aI3117 +aI2438 +aI765 +aI740 +aI2517 +aI2017 +aI1742 +aI2878 +aI2494 +aI3140 +aI168 +aI2159 +aI243 +aI2474 +aI2485 +aI2322 +aI3040 +aI932 +aI290 +aI2242 +aI2270 +aI2111 +aI953 +aI399 +aI3158 +aI134 +aI1924 +aI872 +aI79 +aI908 +aI2589 +aI1716 +aI2511 +aI972 +aI2678 +aI1756 +aI1185 +aI2413 +aI1652 +aI2751 +aI1831 +aI2026 +aI2261 +aI2539 +aI334 +aI735 +aI856 +aI443 +aI713 +aI942 +aI1143 +aI770 +aI427 +aI3192 +aI657 +aI1849 +aI786 +aI354 +aI511 +aI3151 +aI1526 +aI240 +aI1213 +aI3191 +aI854 +aI208 +aI1660 +aI600 +aI1903 +aI1278 +aI2349 +aI2074 +aI2344 +aI2913 +aI2881 +aI2756 +aI591 +aI2608 +aI1567 +aI16 +aI3 +aI2682 +aI2486 +aI1399 +aI3135 +aI77 +aI361 +aI2525 +aI2375 +aI2114 +aI544 +aI1029 +aI2234 +aI199 +aI1681 +aI916 +aI2826 +aI2428 +aI2342 +aI1766 +aI1506 +aI2369 +aI2604 +aI2942 +aI1155 +aI1017 +aI234 +aI295 +aI2564 +aI368 +aI10 +aI1106 +aI2497 +aI1685 +aI2662 +aI1872 +aI378 +aI2522 +aI156 +aI1913 +aI1165 +aI372 +aI1960 +aI185 +aI1359 +aI2551 +aI1668 +aI2715 +aI230 +aI384 +aI1450 +aI3234 +aI3018 +aI1819 +aI296 +aI3114 +aI871 +aI2811 +aI1274 +aI668 +aI2217 +aI2949 +aI2699 +aI2859 +aI1032 +aI2557 +aI2120 +aI1894 +aI658 +aI1861 +aI2984 +aI3201 +aI2004 +aI1122 +aI589 +aI503 +aI2058 +aI956 +aI2967 +aI1609 +aI195 +aI339 +aI821 +aI2149 +aI1087 +aI3104 +aI775 +aI265 +aI2695 +aI1072 +aI1915 +aI1719 +aI1447 +aI1736 +aI2807 +aI520 +aI2810 +aI2256 +aI1108 +aI2713 +aI1195 +aI2038 +aI1545 +aI1530 +aI2549 +aI3064 +aI689 +aI2036 +aI1256 +aI435 +aI2109 +aI301 +aI2547 +aI1050 +aI1319 +aI2337 +aI1802 +aI1624 +aI228 +aI1901 +aI270 +aI708 +aI2925 +aI3121 +aI3057 +aI3194 +aI1303 +aI2021 +aI464 +aI506 +aI672 +aI196 +aI988 +aI1759 +aI2727 +aI2963 +aI1137 +aI1018 +aI1897 +aI582 +as. \ No newline at end of file diff --git a/data/SE0714/raw.pickle b/data/SE0714/raw.pickle new file mode 100644 index 0000000..4db3042 --- /dev/null +++ b/data/SE0714/raw.pickle @@ -0,0 +1,11268 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +(lp5 +I01 +aI00 +aI01 +asa(dp6 +g4 +(lp7 +I00 +aI01 +aI00 +asa(dp8 +g4 +(lp9 +I01 +aI01 +aI00 +asa(dp10 +g4 +(lp11 +I01 +aI00 +aI01 +asa(dp12 +g4 +(lp13 +I00 +aI00 +aI00 +asa(dp14 +g4 +(lp15 +I00 +aI00 +aI00 +asa(dp16 +g4 +(lp17 +I00 +aI01 +aI00 +asa(dp18 +g4 +(lp19 +I00 +aI00 +aI00 +asa(dp20 +g4 +(lp21 +I00 +aI01 +aI00 +asa(dp22 +g4 +(lp23 +I00 +aI01 +aI00 +asa(dp24 +g4 +(lp25 +I00 +aI01 +aI00 +asa(dp26 +g4 +(lp27 +I00 +aI00 +aI00 +asa(dp28 +g4 +(lp29 +I00 +aI01 +aI00 +asa(dp30 +g4 +(lp31 +I00 +aI00 +aI00 +asa(dp32 +g4 +(lp33 +I00 +aI00 +aI01 +asa(dp34 +g4 +(lp35 +I00 +aI00 +aI00 +asa(dp36 +g4 +(lp37 +I00 +aI00 +aI00 +asa(dp38 +g4 +(lp39 +I00 +aI00 +aI00 +asa(dp40 +g4 +(lp41 +I00 +aI00 +aI00 +asa(dp42 +g4 +(lp43 +I00 +aI01 +aI00 +asa(dp44 +g4 +(lp45 +I00 +aI01 +aI00 +asa(dp46 +g4 +(lp47 +I01 +aI00 +aI00 +asa(dp48 +g4 +(lp49 +I00 +aI00 +aI00 +asa(dp50 +g4 +(lp51 +I00 +aI00 +aI00 +asa(dp52 +g4 +(lp53 +I00 +aI00 +aI00 +asa(dp54 +g4 +(lp55 +I00 +aI01 +aI00 +asa(dp56 +g4 +(lp57 +I00 +aI00 +aI00 +asa(dp58 +g4 +(lp59 +I00 +aI01 +aI00 +asa(dp60 +g4 +(lp61 +I00 +aI00 +aI00 +asa(dp62 +g4 +(lp63 +I01 +aI00 +aI01 +asa(dp64 +g4 +(lp65 +I00 +aI00 +aI00 +asa(dp66 +g4 +(lp67 +I00 +aI00 +aI00 +asa(dp68 +g4 +(lp69 +I00 +aI00 +aI00 +asa(dp70 +g4 +(lp71 +I00 +aI00 +aI00 +asa(dp72 +g4 +(lp73 +I00 +aI01 +aI00 +asa(dp74 +g4 +(lp75 +I00 +aI00 +aI00 +asa(dp76 +g4 +(lp77 +I00 +aI00 +aI00 +asa(dp78 +g4 +(lp79 +I00 +aI00 +aI01 +asa(dp80 +g4 +(lp81 +I01 +aI00 +aI00 +asa(dp82 +g4 +(lp83 +I00 +aI00 +aI00 +asa(dp84 +g4 +(lp85 +I00 +aI00 +aI00 +asa(dp86 +g4 +(lp87 +I00 +aI00 +aI00 +asa(dp88 +g4 +(lp89 +I00 +aI00 +aI00 +asa(dp90 +g4 +(lp91 +I00 +aI00 +aI01 +asa(dp92 +g4 +(lp93 +I00 +aI00 +aI01 +asa(dp94 +g4 +(lp95 +I00 +aI00 +aI00 +asa(dp96 +g4 +(lp97 +I00 +aI00 +aI01 +asa(dp98 +g4 +(lp99 +I00 +aI00 +aI00 +asa(dp100 +g4 +(lp101 +I01 +aI00 +aI00 +asa(dp102 +g4 +(lp103 +I00 +aI00 +aI00 +asa(dp104 +g4 +(lp105 +I00 +aI00 +aI00 +asa(dp106 +g4 +(lp107 +I00 +aI00 +aI00 +asa(dp108 +g4 +(lp109 +I00 +aI00 +aI00 +asa(dp110 +g4 +(lp111 +I00 +aI01 +aI00 +asa(dp112 +g4 +(lp113 +I00 +aI01 +aI00 +asa(dp114 +g4 +(lp115 +I00 +aI00 +aI01 +asa(dp116 +g4 +(lp117 +I00 +aI00 +aI00 +asa(dp118 +g4 +(lp119 +I00 +aI00 +aI00 +asa(dp120 +g4 +(lp121 +I00 +aI00 +aI00 +asa(dp122 +g4 +(lp123 +I01 +aI00 +aI01 +asa(dp124 +g4 +(lp125 +I00 +aI00 +aI01 +asa(dp126 +g4 +(lp127 +I01 +aI00 +aI01 +asa(dp128 +g4 +(lp129 +I01 +aI00 +aI01 +asa(dp130 +g4 +(lp131 +I00 +aI00 +aI00 +asa(dp132 +g4 +(lp133 +I00 +aI00 +aI00 +asa(dp134 +g4 +(lp135 +I00 +aI00 +aI00 +asa(dp136 +g4 +(lp137 +I00 +aI00 +aI00 +asa(dp138 +g4 +(lp139 +I01 +aI00 +aI00 +asa(dp140 +g4 +(lp141 +I01 +aI00 +aI01 +asa(dp142 +g4 +(lp143 +I00 +aI00 +aI00 +asa(dp144 +g4 +(lp145 +I00 +aI00 +aI00 +asa(dp146 +g4 +(lp147 +I00 +aI00 +aI00 +asa(dp148 +g4 +(lp149 +I00 +aI00 +aI00 +asa(dp150 +g4 +(lp151 +I00 +aI00 +aI00 +asa(dp152 +g4 +(lp153 +I00 +aI01 +aI00 +asa(dp154 +g4 +(lp155 +I00 +aI01 +aI00 +asa(dp156 +g4 +(lp157 +I01 +aI00 +aI01 +asa(dp158 +g4 +(lp159 +I00 +aI00 +aI01 +asa(dp160 +g4 +(lp161 +I00 +aI00 +aI00 +asa(dp162 +g4 +(lp163 +I00 +aI00 +aI00 +asa(dp164 +g4 +(lp165 +I01 +aI00 +aI00 +asa(dp166 +g4 +(lp167 +I00 +aI00 +aI00 +asa(dp168 +g4 +(lp169 +I00 +aI00 +aI00 +asa(dp170 +g4 +(lp171 +I00 +aI00 +aI00 +asa(dp172 +g4 +(lp173 +I00 +aI00 +aI00 +asa(dp174 +g4 +(lp175 +I00 +aI00 +aI00 +asa(dp176 +g4 +(lp177 +I00 +aI00 +aI00 +asa(dp178 +g4 +(lp179 +I00 +aI00 +aI00 +asa(dp180 +g4 +(lp181 +I00 +aI00 +aI01 +asa(dp182 +g4 +(lp183 +I00 +aI01 +aI00 +asa(dp184 +g4 +(lp185 +I00 +aI00 +aI00 +asa(dp186 +g4 +(lp187 +I00 +aI00 +aI01 +asa(dp188 +g4 +(lp189 +I00 +aI00 +aI00 +asa(dp190 +g4 +(lp191 +I00 +aI00 +aI01 +asa(dp192 +g4 +(lp193 +I00 +aI01 +aI00 +asa(dp194 +g4 +(lp195 +I00 +aI00 +aI00 +asa(dp196 +g4 +(lp197 +I00 +aI00 +aI00 +asa(dp198 +g4 +(lp199 +I00 +aI00 +aI00 +asa(dp200 +g4 +(lp201 +I00 +aI00 +aI00 +asa(dp202 +g4 +(lp203 +I00 +aI00 +aI00 +asa(dp204 +g4 +(lp205 +I01 +aI00 +aI00 +asa(dp206 +g4 +(lp207 +I00 +aI00 +aI00 +asa(dp208 +g4 +(lp209 +I00 +aI00 +aI01 +asa(dp210 +g4 +(lp211 +I00 +aI01 +aI00 +asa(dp212 +g4 +(lp213 +I00 +aI01 +aI00 +asa(dp214 +g4 +(lp215 +I00 +aI00 +aI00 +asa(dp216 +g4 +(lp217 +I00 +aI01 +aI00 +asa(dp218 +g4 +(lp219 +I00 +aI00 +aI00 +asa(dp220 +g4 +(lp221 +I00 +aI01 +aI00 +asa(dp222 +g4 +(lp223 +I00 +aI00 +aI00 +asa(dp224 +g4 +(lp225 +I00 +aI00 +aI00 +asa(dp226 +g4 +(lp227 +I00 +aI00 +aI00 +asa(dp228 +g4 +(lp229 +I00 +aI00 +aI00 +asa(dp230 +g4 +(lp231 +I01 +aI00 +aI00 +asa(dp232 +g4 +(lp233 +I00 +aI00 +aI00 +asa(dp234 +g4 +(lp235 +I00 +aI00 +aI00 +asa(dp236 +g4 +(lp237 +I00 +aI00 +aI00 +asa(dp238 +g4 +(lp239 +I00 +aI00 +aI00 +asa(dp240 +g4 +(lp241 +I00 +aI00 +aI00 +asa(dp242 +g4 +(lp243 +I00 +aI00 +aI00 +asa(dp244 +g4 +(lp245 +I00 +aI00 +aI00 +asa(dp246 +g4 +(lp247 +I00 +aI01 +aI00 +asa(dp248 +g4 +(lp249 +I00 +aI00 +aI00 +asa(dp250 +g4 +(lp251 +I01 +aI00 +aI00 +asa(dp252 +g4 +(lp253 +I00 +aI00 +aI00 +asa(dp254 +g4 +(lp255 +I00 +aI00 +aI00 +asa(dp256 +g4 +(lp257 +I00 +aI00 +aI00 +asa(dp258 +g4 +(lp259 +I01 +aI00 +aI00 +asa(dp260 +g4 +(lp261 +I00 +aI00 +aI00 +asa(dp262 +g4 +(lp263 +I00 +aI00 +aI00 +asa(dp264 +g4 +(lp265 +I00 +aI00 +aI00 +asa(dp266 +g4 +(lp267 +I00 +aI00 +aI00 +asa(dp268 +g4 +(lp269 +I00 +aI00 +aI00 +asa(dp270 +g4 +(lp271 +I00 +aI00 +aI01 +asa(dp272 +g4 +(lp273 +I01 +aI00 +aI00 +asa(dp274 +g4 +(lp275 +I00 +aI00 +aI00 +asa(dp276 +g4 +(lp277 +I00 +aI00 +aI00 +asa(dp278 +g4 +(lp279 +I00 +aI00 +aI00 +asa(dp280 +g4 +(lp281 +I00 +aI00 +aI00 +asa(dp282 +g4 +(lp283 +I00 +aI00 +aI00 +asa(dp284 +g4 +(lp285 +I00 +aI00 +aI00 +asa(dp286 +g4 +(lp287 +I01 +aI00 +aI01 +asa(dp288 +g4 +(lp289 +I01 +aI00 +aI01 +asa(dp290 +g4 +(lp291 +I01 +aI00 +aI01 +asa(dp292 +g4 +(lp293 +I00 +aI00 +aI00 +asa(dp294 +g4 +(lp295 +I00 +aI00 +aI01 +asa(dp296 +g4 +(lp297 +I00 +aI00 +aI00 +asa(dp298 +g4 +(lp299 +I00 +aI01 +aI00 +asa(dp300 +g4 +(lp301 +I00 +aI00 +aI00 +asa(dp302 +g4 +(lp303 +I00 +aI00 +aI00 +asa(dp304 +g4 +(lp305 +I00 +aI00 +aI00 +asa(dp306 +g4 +(lp307 +I00 +aI00 +aI00 +asa(dp308 +g4 +(lp309 +I00 +aI00 +aI00 +asa(dp310 +g4 +(lp311 +I00 +aI00 +aI00 +asa(dp312 +g4 +(lp313 +I00 +aI00 +aI01 +asa(dp314 +g4 +(lp315 +I00 +aI00 +aI01 +asa(dp316 +g4 +(lp317 +I00 +aI00 +aI01 +asa(dp318 +g4 +(lp319 +I00 +aI00 +aI00 +asa(dp320 +g4 +(lp321 +I00 +aI00 +aI00 +asa(dp322 +g4 +(lp323 +I00 +aI00 +aI00 +asa(dp324 +g4 +(lp325 +I00 +aI00 +aI00 +asa(dp326 +g4 +(lp327 +I00 +aI00 +aI00 +asa(dp328 +g4 +(lp329 +I00 +aI00 +aI00 +asa(dp330 +g4 +(lp331 +I00 +aI00 +aI00 +asa(dp332 +g4 +(lp333 +I00 +aI00 +aI00 +asa(dp334 +g4 +(lp335 +I01 +aI00 +aI00 +asa(dp336 +g4 +(lp337 +I00 +aI00 +aI00 +asa(dp338 +g4 +(lp339 +I00 +aI00 +aI00 +asa(dp340 +g4 +(lp341 +I00 +aI01 +aI00 +asa(dp342 +g4 +(lp343 +I00 +aI00 +aI01 +asa(dp344 +g4 +(lp345 +I00 +aI00 +aI00 +asa(dp346 +g4 +(lp347 +I00 +aI00 +aI00 +asa(dp348 +g4 +(lp349 +I00 +aI01 +aI00 +asa(dp350 +g4 +(lp351 +I00 +aI00 +aI00 +asa(dp352 +g4 +(lp353 +I00 +aI00 +aI01 +asa(dp354 +g4 +(lp355 +I00 +aI00 +aI00 +asa(dp356 +g4 +(lp357 +I00 +aI01 +aI00 +asa(dp358 +g4 +(lp359 +I00 +aI01 +aI00 +asa(dp360 +g4 +(lp361 +I01 +aI00 +aI00 +asa(dp362 +g4 +(lp363 +I01 +aI00 +aI00 +asa(dp364 +g4 +(lp365 +I00 +aI00 +aI00 +asa(dp366 +g4 +(lp367 +I00 +aI00 +aI00 +asa(dp368 +g4 +(lp369 +I01 +aI00 +aI00 +asa(dp370 +g4 +(lp371 +I01 +aI00 +aI01 +asa(dp372 +g4 +(lp373 +I00 +aI00 +aI00 +asa(dp374 +g4 +(lp375 +I00 +aI00 +aI00 +asa(dp376 +g4 +(lp377 +I00 +aI01 +aI00 +asa(dp378 +g4 +(lp379 +I00 +aI00 +aI00 +asa(dp380 +g4 +(lp381 +I00 +aI00 +aI00 +asa(dp382 +g4 +(lp383 +I00 +aI00 +aI00 +asa(dp384 +g4 +(lp385 +I00 +aI00 +aI00 +asa(dp386 +g4 +(lp387 +I00 +aI00 +aI00 +asa(dp388 +g4 +(lp389 +I00 +aI00 +aI00 +asa(dp390 +g4 +(lp391 +I00 +aI00 +aI01 +asa(dp392 +g4 +(lp393 +I00 +aI00 +aI00 +asa(dp394 +g4 +(lp395 +I01 +aI00 +aI01 +asa(dp396 +g4 +(lp397 +I00 +aI00 +aI01 +asa(dp398 +g4 +(lp399 +I01 +aI00 +aI00 +asa(dp400 +g4 +(lp401 +I00 +aI00 +aI00 +asa(dp402 +g4 +(lp403 +I00 +aI00 +aI00 +asa(dp404 +g4 +(lp405 +I00 +aI00 +aI01 +asa(dp406 +g4 +(lp407 +I00 +aI00 +aI01 +asa(dp408 +g4 +(lp409 +I00 +aI00 +aI00 +asa(dp410 +g4 +(lp411 +I00 +aI00 +aI00 +asa(dp412 +g4 +(lp413 +I00 +aI00 +aI00 +asa(dp414 +g4 +(lp415 +I00 +aI00 +aI00 +asa(dp416 +g4 +(lp417 +I00 +aI00 +aI00 +asa(dp418 +g4 +(lp419 +I00 +aI00 +aI00 +asa(dp420 +g4 +(lp421 +I01 +aI00 +aI01 +asa(dp422 +g4 +(lp423 +I00 +aI00 +aI00 +asa(dp424 +g4 +(lp425 +I00 +aI00 +aI00 +asa(dp426 +g4 +(lp427 +I00 +aI00 +aI01 +asa(dp428 +g4 +(lp429 +I00 +aI00 +aI01 +asa(dp430 +g4 +(lp431 +I00 +aI00 +aI00 +asa(dp432 +g4 +(lp433 +I00 +aI00 +aI00 +asa(dp434 +g4 +(lp435 +I00 +aI00 +aI00 +asa(dp436 +g4 +(lp437 +I00 +aI00 +aI00 +asa(dp438 +g4 +(lp439 +I00 +aI00 +aI00 +asa(dp440 +g4 +(lp441 +I00 +aI00 +aI00 +asa(dp442 +g4 +(lp443 +I00 +aI00 +aI00 +asa(dp444 +g4 +(lp445 +I00 +aI00 +aI00 +asa(dp446 +g4 +(lp447 +I00 +aI00 +aI00 +asa(dp448 +g4 +(lp449 +I00 +aI00 +aI00 +asa(dp450 +g4 +(lp451 +I00 +aI00 +aI00 +asa(dp452 +g4 +(lp453 +I00 +aI00 +aI00 +asa(dp454 +g4 +(lp455 +I00 +aI00 +aI00 +asa(dp456 +g4 +(lp457 +I00 +aI00 +aI00 +asa(dp458 +g4 +(lp459 +I00 +aI00 +aI00 +asa(dp460 +g4 +(lp461 +I01 +aI00 +aI00 +asa(dp462 +g4 +(lp463 +I00 +aI00 +aI00 +asa(dp464 +g4 +(lp465 +I00 +aI00 +aI00 +asa(dp466 +g4 +(lp467 +I00 +aI00 +aI00 +asa(dp468 +g4 +(lp469 +I00 +aI01 +aI00 +asa(dp470 +g4 +(lp471 +I00 +aI01 +aI00 +asa(dp472 +g4 +(lp473 +I00 +aI01 +aI00 +asa(dp474 +g4 +(lp475 +I00 +aI00 +aI00 +asa(dp476 +g4 +(lp477 +I00 +aI00 +aI00 +asa(dp478 +g4 +(lp479 +I00 +aI01 +aI00 +asa(dp480 +g4 +(lp481 +I00 +aI00 +aI00 +asa(dp482 +g4 +(lp483 +I00 +aI00 +aI00 +asa(dp484 +g4 +(lp485 +I00 +aI00 +aI00 +asa(dp486 +g4 +(lp487 +I00 +aI01 +aI00 +asa(dp488 +g4 +(lp489 +I00 +aI00 +aI01 +asa(dp490 +g4 +(lp491 +I00 +aI00 +aI01 +asa(dp492 +g4 +(lp493 +I00 +aI00 +aI00 +asa(dp494 +g4 +(lp495 +I00 +aI00 +aI00 +asa(dp496 +g4 +(lp497 +I00 +aI01 +aI00 +asa(dp498 +g4 +(lp499 +I00 +aI00 +aI00 +asa(dp500 +g4 +(lp501 +I01 +aI00 +aI00 +asa(dp502 +g4 +(lp503 +I00 +aI00 +aI00 +asa(dp504 +g4 +(lp505 +I00 +aI00 +aI00 +asa(dp506 +g4 +(lp507 +I00 +aI00 +aI00 +asa(dp508 +g4 +(lp509 +I00 +aI00 +aI00 +asa(dp510 +g4 +(lp511 +I00 +aI00 +aI00 +asa(dp512 +g4 +(lp513 +I00 +aI00 +aI00 +asa(dp514 +g4 +(lp515 +I00 +aI00 +aI01 +asa(dp516 +g4 +(lp517 +I00 +aI00 +aI00 +asa(dp518 +g4 +(lp519 +I00 +aI00 +aI00 +asa(dp520 +g4 +(lp521 +I00 +aI00 +aI00 +asa(dp522 +g4 +(lp523 +I00 +aI00 +aI00 +asa(dp524 +g4 +(lp525 +I00 +aI00 +aI00 +asa(dp526 +g4 +(lp527 +I00 +aI01 +aI00 +asa(dp528 +g4 +(lp529 +I00 +aI00 +aI00 +asa(dp530 +g4 +(lp531 +I00 +aI00 +aI00 +asa(dp532 +g4 +(lp533 +I00 +aI00 +aI00 +asa(dp534 +g4 +(lp535 +I00 +aI01 +aI00 +asa(dp536 +g4 +(lp537 +I00 +aI00 +aI00 +asa(dp538 +g4 +(lp539 +I00 +aI01 +aI00 +asa(dp540 +g4 +(lp541 +I00 +aI00 +aI01 +asa(dp542 +g4 +(lp543 +I00 +aI00 +aI00 +asa(dp544 +g4 +(lp545 +I00 +aI00 +aI00 +asa(dp546 +g4 +(lp547 +I00 +aI00 +aI00 +asa(dp548 +g4 +(lp549 +I00 +aI00 +aI00 +asa(dp550 +g4 +(lp551 +I00 +aI00 +aI00 +asa(dp552 +g4 +(lp553 +I00 +aI01 +aI00 +asa(dp554 +g4 +(lp555 +I00 +aI00 +aI00 +asa(dp556 +g4 +(lp557 +I00 +aI01 +aI00 +asa(dp558 +g4 +(lp559 +I00 +aI00 +aI00 +asa(dp560 +g4 +(lp561 +I00 +aI00 +aI00 +asa(dp562 +g4 +(lp563 +I00 +aI00 +aI00 +asa(dp564 +g4 +(lp565 +I00 +aI00 +aI00 +asa(dp566 +g4 +(lp567 +I00 +aI00 +aI00 +asa(dp568 +g4 +(lp569 +I00 +aI00 +aI00 +asa(dp570 +g4 +(lp571 +I00 +aI00 +aI00 +asa(dp572 +g4 +(lp573 +I00 +aI01 +aI00 +asa(dp574 +g4 +(lp575 +I00 +aI01 +aI00 +asa(dp576 +g4 +(lp577 +I00 +aI00 +aI00 +asa(dp578 +g4 +(lp579 +I00 +aI00 +aI00 +asa(dp580 +g4 +(lp581 +I00 +aI00 +aI00 +asa(dp582 +g4 +(lp583 +I00 +aI00 +aI00 +asa(dp584 +g4 +(lp585 +I00 +aI01 +aI00 +asa(dp586 +g4 +(lp587 +I00 +aI00 +aI00 +asa(dp588 +g4 +(lp589 +I00 +aI00 +aI00 +asa(dp590 +g4 +(lp591 +I00 +aI00 +aI00 +asa(dp592 +g4 +(lp593 +I00 +aI00 +aI00 +asa(dp594 +g4 +(lp595 +I00 +aI00 +aI00 +asa(dp596 +g4 +(lp597 +I00 +aI00 +aI00 +asa(dp598 +g4 +(lp599 +I00 +aI00 +aI01 +asa(dp600 +g4 +(lp601 +I00 +aI00 +aI00 +asa(dp602 +g4 +(lp603 +I00 +aI00 +aI00 +asa(dp604 +g4 +(lp605 +I00 +aI00 +aI00 +asa(dp606 +g4 +(lp607 +I01 +aI00 +aI01 +asa(dp608 +g4 +(lp609 +I00 +aI00 +aI01 +asa(dp610 +g4 +(lp611 +I00 +aI00 +aI00 +asa(dp612 +g4 +(lp613 +I00 +aI00 +aI00 +asa(dp614 +g4 +(lp615 +I00 +aI00 +aI00 +asa(dp616 +g4 +(lp617 +I00 +aI01 +aI00 +asa(dp618 +g4 +(lp619 +I00 +aI00 +aI00 +asa(dp620 +g4 +(lp621 +I00 +aI00 +aI00 +asa(dp622 +g4 +(lp623 +I00 +aI00 +aI00 +asa(dp624 +g4 +(lp625 +I00 +aI00 +aI00 +asa(dp626 +g4 +(lp627 +I00 +aI00 +aI00 +asa(dp628 +g4 +(lp629 +I00 +aI00 +aI00 +asa(dp630 +g4 +(lp631 +I00 +aI00 +aI00 +asa(dp632 +g4 +(lp633 +I00 +aI00 +aI00 +asa(dp634 +g4 +(lp635 +I01 +aI00 +aI01 +asa(dp636 +g4 +(lp637 +I00 +aI01 +aI00 +asa(dp638 +g4 +(lp639 +I00 +aI01 +aI00 +asa(dp640 +g4 +(lp641 +I01 +aI00 +aI01 +asa(dp642 +g4 +(lp643 +I00 +aI00 +aI00 +asa(dp644 +g4 +(lp645 +I00 +aI00 +aI00 +asa(dp646 +g4 +(lp647 +I00 +aI00 +aI00 +asa(dp648 +g4 +(lp649 +I00 +aI00 +aI00 +asa(dp650 +g4 +(lp651 +I00 +aI00 +aI00 +asa(dp652 +g4 +(lp653 +I00 +aI00 +aI00 +asa(dp654 +g4 +(lp655 +I00 +aI01 +aI00 +asa(dp656 +g4 +(lp657 +I00 +aI00 +aI00 +asa(dp658 +g4 +(lp659 +I00 +aI00 +aI00 +asa(dp660 +g4 +(lp661 +I00 +aI00 +aI00 +asa(dp662 +g4 +(lp663 +I00 +aI00 +aI00 +asa(dp664 +g4 +(lp665 +I00 +aI01 +aI00 +asa(dp666 +g4 +(lp667 +I00 +aI00 +aI00 +asa(dp668 +g4 +(lp669 +I01 +aI00 +aI00 +asa(dp670 +g4 +(lp671 +I01 +aI00 +aI00 +asa(dp672 +g4 +(lp673 +I00 +aI00 +aI00 +asa(dp674 +g4 +(lp675 +I00 +aI00 +aI01 +asa(dp676 +g4 +(lp677 +I00 +aI00 +aI00 +asa(dp678 +g4 +(lp679 +I00 +aI00 +aI00 +asa(dp680 +g4 +(lp681 +I00 +aI00 +aI00 +asa(dp682 +g4 +(lp683 +I00 +aI00 +aI00 +asa(dp684 +g4 +(lp685 +I01 +aI00 +aI00 +asa(dp686 +g4 +(lp687 +I01 +aI00 +aI00 +asa(dp688 +g4 +(lp689 +I00 +aI00 +aI00 +asa(dp690 +g4 +(lp691 +I00 +aI00 +aI00 +asa(dp692 +g4 +(lp693 +I01 +aI00 +aI00 +asa(dp694 +g4 +(lp695 +I01 +aI00 +aI00 +asa(dp696 +g4 +(lp697 +I00 +aI00 +aI00 +asa(dp698 +g4 +(lp699 +I00 +aI00 +aI00 +asa(dp700 +g4 +(lp701 +I00 +aI00 +aI00 +asa(dp702 +g4 +(lp703 +I00 +aI00 +aI00 +asa(dp704 +g4 +(lp705 +I00 +aI00 +aI00 +asa(dp706 +g4 +(lp707 +I01 +aI00 +aI00 +asa(dp708 +g4 +(lp709 +I00 +aI00 +aI00 +asa(dp710 +g4 +(lp711 +I01 +aI00 +aI00 +asa(dp712 +g4 +(lp713 +I00 +aI00 +aI00 +asa(dp714 +g4 +(lp715 +I00 +aI00 +aI01 +asa(dp716 +g4 +(lp717 +I01 +aI00 +aI00 +asa(dp718 +g4 +(lp719 +I00 +aI00 +aI00 +asa(dp720 +g4 +(lp721 +I00 +aI00 +aI01 +asa(dp722 +g4 +(lp723 +I01 +aI00 +aI00 +asa(dp724 +g4 +(lp725 +I01 +aI00 +aI00 +asa(dp726 +g4 +(lp727 +I00 +aI00 +aI00 +asa(dp728 +g4 +(lp729 +I00 +aI00 +aI00 +asa(dp730 +g4 +(lp731 +I00 +aI00 +aI00 +asa(dp732 +g4 +(lp733 +I00 +aI00 +aI00 +asa(dp734 +g4 +(lp735 +I00 +aI00 +aI00 +asa(dp736 +g4 +(lp737 +I00 +aI00 +aI00 +asa(dp738 +g4 +(lp739 +I00 +aI00 +aI00 +asa(dp740 +g4 +(lp741 +I00 +aI00 +aI00 +asa(dp742 +g4 +(lp743 +I00 +aI00 +aI00 +asa(dp744 +g4 +(lp745 +I00 +aI00 +aI00 +asa(dp746 +g4 +(lp747 +I00 +aI00 +aI00 +asa(dp748 +g4 +(lp749 +I00 +aI00 +aI00 +asa(dp750 +g4 +(lp751 +I00 +aI00 +aI00 +asa(dp752 +g4 +(lp753 +I00 +aI00 +aI00 +asa(dp754 +g4 +(lp755 +I00 +aI00 +aI00 +asa(dp756 +g4 +(lp757 +I00 +aI01 +aI00 +asa(dp758 +g4 +(lp759 +I00 +aI01 +aI00 +asa(dp760 +g4 +(lp761 +I00 +aI00 +aI00 +asa(dp762 +g4 +(lp763 +I00 +aI00 +aI01 +asa(dp764 +g4 +(lp765 +I00 +aI00 +aI00 +asa(dp766 +g4 +(lp767 +I00 +aI01 +aI00 +asa(dp768 +g4 +(lp769 +I00 +aI00 +aI00 +asa(dp770 +g4 +(lp771 +I00 +aI00 +aI00 +asa(dp772 +g4 +(lp773 +I00 +aI00 +aI00 +asa(dp774 +g4 +(lp775 +I00 +aI00 +aI00 +asa(dp776 +g4 +(lp777 +I00 +aI00 +aI00 +asa(dp778 +g4 +(lp779 +I00 +aI00 +aI00 +asa(dp780 +g4 +(lp781 +I00 +aI00 +aI00 +asa(dp782 +g4 +(lp783 +I00 +aI00 +aI01 +asa(dp784 +g4 +(lp785 +I01 +aI00 +aI00 +asa(dp786 +g4 +(lp787 +I00 +aI00 +aI00 +asa(dp788 +g4 +(lp789 +I00 +aI00 +aI00 +asa(dp790 +g4 +(lp791 +I00 +aI00 +aI00 +asa(dp792 +g4 +(lp793 +I00 +aI00 +aI00 +asa(dp794 +g4 +(lp795 +I00 +aI00 +aI01 +asa(dp796 +g4 +(lp797 +I00 +aI00 +aI00 +asa(dp798 +g4 +(lp799 +I00 +aI00 +aI00 +asa(dp800 +g4 +(lp801 +I01 +aI00 +aI00 +asa(dp802 +g4 +(lp803 +I00 +aI01 +aI00 +asa(dp804 +g4 +(lp805 +I00 +aI00 +aI00 +asa(dp806 +g4 +(lp807 +I00 +aI00 +aI00 +asa(dp808 +g4 +(lp809 +I01 +aI00 +aI01 +asa(dp810 +g4 +(lp811 +I00 +aI00 +aI00 +asa(dp812 +g4 +(lp813 +I00 +aI00 +aI00 +asa(dp814 +g4 +(lp815 +I00 +aI00 +aI00 +asa(dp816 +g4 +(lp817 +I00 +aI00 +aI00 +asa(dp818 +g4 +(lp819 +I01 +aI00 +aI00 +asa(dp820 +g4 +(lp821 +I00 +aI00 +aI00 +asa(dp822 +g4 +(lp823 +I00 +aI00 +aI00 +asa(dp824 +g4 +(lp825 +I00 +aI00 +aI00 +asa(dp826 +g4 +(lp827 +I00 +aI00 +aI00 +asa(dp828 +g4 +(lp829 +I00 +aI00 +aI00 +asa(dp830 +g4 +(lp831 +I00 +aI00 +aI00 +asa(dp832 +g4 +(lp833 +I00 +aI00 +aI00 +asa(dp834 +g4 +(lp835 +I00 +aI00 +aI00 +asa(dp836 +g4 +(lp837 +I00 +aI00 +aI00 +asa(dp838 +g4 +(lp839 +I01 +aI00 +aI00 +asa(dp840 +g4 +(lp841 +I00 +aI00 +aI00 +asa(dp842 +g4 +(lp843 +I00 +aI00 +aI00 +asa(dp844 +g4 +(lp845 +I00 +aI00 +aI00 +asa(dp846 +g4 +(lp847 +I00 +aI00 +aI00 +asa(dp848 +g4 +(lp849 +I00 +aI00 +aI00 +asa(dp850 +g4 +(lp851 +I00 +aI00 +aI00 +asa(dp852 +g4 +(lp853 +I00 +aI00 +aI00 +asa(dp854 +g4 +(lp855 +I00 +aI01 +aI00 +asa(dp856 +g4 +(lp857 +I00 +aI00 +aI00 +asa(dp858 +g4 +(lp859 +I00 +aI00 +aI00 +asa(dp860 +g4 +(lp861 +I00 +aI00 +aI00 +asa(dp862 +g4 +(lp863 +I01 +aI00 +aI01 +asa(dp864 +g4 +(lp865 +I00 +aI01 +aI00 +asa(dp866 +g4 +(lp867 +I00 +aI00 +aI00 +asa(dp868 +g4 +(lp869 +I00 +aI00 +aI00 +asa(dp870 +g4 +(lp871 +I01 +aI00 +aI00 +asa(dp872 +g4 +(lp873 +I00 +aI00 +aI00 +asa(dp874 +g4 +(lp875 +I00 +aI01 +aI00 +asa(dp876 +g4 +(lp877 +I00 +aI00 +aI00 +asa(dp878 +g4 +(lp879 +I00 +aI00 +aI00 +asa(dp880 +g4 +(lp881 +I00 +aI00 +aI00 +asa(dp882 +g4 +(lp883 +I01 +aI00 +aI00 +asa(dp884 +g4 +(lp885 +I00 +aI00 +aI01 +asa(dp886 +g4 +(lp887 +I00 +aI00 +aI01 +asa(dp888 +g4 +(lp889 +I00 +aI00 +aI00 +asa(dp890 +g4 +(lp891 +I00 +aI00 +aI01 +asa(dp892 +g4 +(lp893 +I00 +aI00 +aI00 +asa(dp894 +g4 +(lp895 +I00 +aI00 +aI00 +asa(dp896 +g4 +(lp897 +I00 +aI00 +aI00 +asa(dp898 +g4 +(lp899 +I01 +aI00 +aI00 +asa(dp900 +g4 +(lp901 +I00 +aI00 +aI00 +asa(dp902 +g4 +(lp903 +I00 +aI00 +aI00 +asa(dp904 +g4 +(lp905 +I00 +aI00 +aI00 +asa(dp906 +g4 +(lp907 +I00 +aI00 +aI00 +asa(dp908 +g4 +(lp909 +I00 +aI01 +aI00 +asa(dp910 +g4 +(lp911 +I00 +aI00 +aI00 +asa(dp912 +g4 +(lp913 +I00 +aI01 +aI00 +asa(dp914 +g4 +(lp915 +I00 +aI00 +aI00 +asa(dp916 +g4 +(lp917 +I01 +aI00 +aI00 +asa(dp918 +g4 +(lp919 +I00 +aI00 +aI00 +asa(dp920 +g4 +(lp921 +I01 +aI00 +aI00 +asa(dp922 +g4 +(lp923 +I01 +aI00 +aI01 +asa(dp924 +g4 +(lp925 +I00 +aI00 +aI00 +asa(dp926 +g4 +(lp927 +I00 +aI00 +aI00 +asa(dp928 +g4 +(lp929 +I00 +aI00 +aI01 +asa(dp930 +g4 +(lp931 +I00 +aI00 +aI01 +asa(dp932 +g4 +(lp933 +I00 +aI01 +aI00 +asa(dp934 +g4 +(lp935 +I00 +aI00 +aI00 +asa(dp936 +g4 +(lp937 +I00 +aI00 +aI00 +asa(dp938 +g4 +(lp939 +I00 +aI00 +aI00 +asa(dp940 +g4 +(lp941 +I00 +aI00 +aI01 +asa(dp942 +g4 +(lp943 +I00 +aI00 +aI00 +asa(dp944 +g4 +(lp945 +I00 +aI00 +aI00 +asa(dp946 +g4 +(lp947 +I00 +aI00 +aI00 +asa(dp948 +g4 +(lp949 +I00 +aI00 +aI00 +asa(dp950 +g4 +(lp951 +I00 +aI00 +aI00 +asa(dp952 +g4 +(lp953 +I00 +aI00 +aI01 +asa(dp954 +g4 +(lp955 +I00 +aI00 +aI00 +asa(dp956 +g4 +(lp957 +I00 +aI00 +aI00 +asa(dp958 +g4 +(lp959 +I00 +aI00 +aI00 +asa(dp960 +g4 +(lp961 +I00 +aI00 +aI00 +asa(dp962 +g4 +(lp963 +I00 +aI00 +aI00 +asa(dp964 +g4 +(lp965 +I00 +aI00 +aI00 +asa(dp966 +g4 +(lp967 +I00 +aI00 +aI00 +asa(dp968 +g4 +(lp969 +I00 +aI00 +aI00 +asa(dp970 +g4 +(lp971 +I00 +aI00 +aI01 +asa(dp972 +g4 +(lp973 +I01 +aI00 +aI00 +asa(dp974 +g4 +(lp975 +I00 +aI01 +aI00 +asa(dp976 +g4 +(lp977 +I00 +aI00 +aI00 +asa(dp978 +g4 +(lp979 +I00 +aI01 +aI00 +asa(dp980 +g4 +(lp981 +I00 +aI00 +aI00 +asa(dp982 +g4 +(lp983 +I00 +aI00 +aI00 +asa(dp984 +g4 +(lp985 +I00 +aI00 +aI00 +asa(dp986 +g4 +(lp987 +I00 +aI00 +aI00 +asa(dp988 +g4 +(lp989 +I01 +aI00 +aI01 +asa(dp990 +g4 +(lp991 +I00 +aI00 +aI00 +asa(dp992 +g4 +(lp993 +I00 +aI00 +aI00 +asa(dp994 +g4 +(lp995 +I00 +aI00 +aI00 +asa(dp996 +g4 +(lp997 +I00 +aI01 +aI00 +asa(dp998 +g4 +(lp999 +I00 +aI00 +aI00 +asa(dp1000 +g4 +(lp1001 +I00 +aI00 +aI00 +asa(dp1002 +g4 +(lp1003 +I00 +aI00 +aI00 +asa(dp1004 +g4 +(lp1005 +I00 +aI00 +aI00 +asa(dp1006 +g4 +(lp1007 +I00 +aI00 +aI00 +asa(dp1008 +g4 +(lp1009 +I00 +aI00 +aI00 +asa(dp1010 +g4 +(lp1011 +I00 +aI00 +aI00 +asa(dp1012 +g4 +(lp1013 +I01 +aI00 +aI01 +asa(dp1014 +g4 +(lp1015 +I00 +aI00 +aI00 +asa(dp1016 +g4 +(lp1017 +I00 +aI00 +aI00 +asa(dp1018 +g4 +(lp1019 +I00 +aI00 +aI00 +asa(dp1020 +g4 +(lp1021 +I00 +aI00 +aI00 +asa(dp1022 +g4 +(lp1023 +I00 +aI01 +aI00 +asa(dp1024 +g4 +(lp1025 +I00 +aI01 +aI00 +asa(dp1026 +g4 +(lp1027 +I00 +aI00 +aI01 +asa(dp1028 +g4 +(lp1029 +I00 +aI00 +aI00 +asa(dp1030 +g4 +(lp1031 +I00 +aI00 +aI00 +asa(dp1032 +g4 +(lp1033 +I00 +aI00 +aI00 +asa(dp1034 +g4 +(lp1035 +I00 +aI01 +aI00 +asa(dp1036 +g4 +(lp1037 +I01 +aI00 +aI01 +asa(dp1038 +g4 +(lp1039 +I01 +aI00 +aI00 +asa(dp1040 +g4 +(lp1041 +I00 +aI01 +aI00 +asa(dp1042 +g4 +(lp1043 +I00 +aI00 +aI00 +asa(dp1044 +g4 +(lp1045 +I01 +aI00 +aI00 +asa(dp1046 +g4 +(lp1047 +I00 +aI00 +aI00 +asa(dp1048 +g4 +(lp1049 +I00 +aI00 +aI00 +asa(dp1050 +g4 +(lp1051 +I00 +aI00 +aI01 +asa(dp1052 +g4 +(lp1053 +I00 +aI00 +aI01 +asa(dp1054 +g4 +(lp1055 +I00 +aI00 +aI00 +asa(dp1056 +g4 +(lp1057 +I00 +aI00 +aI00 +asa(dp1058 +g4 +(lp1059 +I00 +aI01 +aI00 +asa(dp1060 +g4 +(lp1061 +I00 +aI00 +aI01 +asa(dp1062 +g4 +(lp1063 +I01 +aI00 +aI00 +asa(dp1064 +g4 +(lp1065 +I00 +aI00 +aI00 +asa(dp1066 +g4 +(lp1067 +I00 +aI00 +aI00 +asa(dp1068 +g4 +(lp1069 +I00 +aI00 +aI00 +asa(dp1070 +g4 +(lp1071 +I00 +aI00 +aI00 +asa(dp1072 +g4 +(lp1073 +I00 +aI00 +aI00 +asa(dp1074 +g4 +(lp1075 +I00 +aI00 +aI00 +asa(dp1076 +g4 +(lp1077 +I00 +aI00 +aI00 +asa(dp1078 +g4 +(lp1079 +I00 +aI00 +aI00 +asa(dp1080 +g4 +(lp1081 +I00 +aI00 +aI01 +asa(dp1082 +g4 +(lp1083 +I00 +aI00 +aI00 +asa(dp1084 +g4 +(lp1085 +I01 +aI00 +aI00 +asa(dp1086 +g4 +(lp1087 +I01 +aI00 +aI00 +asa(dp1088 +g4 +(lp1089 +I01 +aI00 +aI00 +asa(dp1090 +g4 +(lp1091 +I00 +aI00 +aI00 +asa(dp1092 +g4 +(lp1093 +I00 +aI00 +aI00 +asa(dp1094 +g4 +(lp1095 +I00 +aI00 +aI00 +asa(dp1096 +g4 +(lp1097 +I00 +aI00 +aI00 +asa(dp1098 +g4 +(lp1099 +I00 +aI00 +aI00 +asa(dp1100 +g4 +(lp1101 +I00 +aI00 +aI00 +asa(dp1102 +g4 +(lp1103 +I00 +aI00 +aI00 +asa(dp1104 +g4 +(lp1105 +I00 +aI01 +aI00 +asa(dp1106 +g4 +(lp1107 +I00 +aI00 +aI00 +asa(dp1108 +g4 +(lp1109 +I00 +aI00 +aI00 +asa(dp1110 +g4 +(lp1111 +I00 +aI00 +aI00 +asa(dp1112 +g4 +(lp1113 +I00 +aI00 +aI00 +asa(dp1114 +g4 +(lp1115 +I00 +aI00 +aI00 +asa(dp1116 +g4 +(lp1117 +I00 +aI00 +aI01 +asa(dp1118 +g4 +(lp1119 +I00 +aI00 +aI00 +asa(dp1120 +g4 +(lp1121 +I00 +aI00 +aI00 +asa(dp1122 +g4 +(lp1123 +I00 +aI00 +aI00 +asa(dp1124 +g4 +(lp1125 +I00 +aI00 +aI00 +asa(dp1126 +g4 +(lp1127 +I00 +aI00 +aI01 +asa(dp1128 +g4 +(lp1129 +I00 +aI00 +aI01 +asa(dp1130 +g4 +(lp1131 +I01 +aI00 +aI00 +asa(dp1132 +g4 +(lp1133 +I00 +aI00 +aI00 +asa(dp1134 +g4 +(lp1135 +I00 +aI00 +aI00 +asa(dp1136 +g4 +(lp1137 +I00 +aI00 +aI01 +asa(dp1138 +g4 +(lp1139 +I00 +aI00 +aI01 +asa(dp1140 +g4 +(lp1141 +I00 +aI00 +aI01 +asa(dp1142 +g4 +(lp1143 +I00 +aI00 +aI00 +asa(dp1144 +g4 +(lp1145 +I00 +aI00 +aI00 +asa(dp1146 +g4 +(lp1147 +I00 +aI00 +aI00 +asa(dp1148 +g4 +(lp1149 +I00 +aI00 +aI00 +asa(dp1150 +g4 +(lp1151 +I00 +aI00 +aI00 +asa(dp1152 +g4 +(lp1153 +I00 +aI00 +aI00 +asa(dp1154 +g4 +(lp1155 +I00 +aI01 +aI00 +asa(dp1156 +g4 +(lp1157 +I00 +aI00 +aI00 +asa(dp1158 +g4 +(lp1159 +I00 +aI00 +aI00 +asa(dp1160 +g4 +(lp1161 +I01 +aI00 +aI00 +asa(dp1162 +g4 +(lp1163 +I00 +aI01 +aI00 +asa(dp1164 +g4 +(lp1165 +I00 +aI00 +aI01 +asa(dp1166 +g4 +(lp1167 +I00 +aI01 +aI00 +asa(dp1168 +g4 +(lp1169 +I00 +aI00 +aI00 +asa(dp1170 +g4 +(lp1171 +I00 +aI00 +aI00 +asa(dp1172 +g4 +(lp1173 +I00 +aI00 +aI00 +asa(dp1174 +g4 +(lp1175 +I00 +aI01 +aI00 +asa(dp1176 +g4 +(lp1177 +I00 +aI00 +aI01 +asa(dp1178 +g4 +(lp1179 +I00 +aI00 +aI00 +asa(dp1180 +g4 +(lp1181 +I00 +aI00 +aI00 +asa(dp1182 +g4 +(lp1183 +I00 +aI00 +aI00 +asa(dp1184 +g4 +(lp1185 +I00 +aI00 +aI00 +asa(dp1186 +g4 +(lp1187 +I00 +aI00 +aI00 +asa(dp1188 +g4 +(lp1189 +I00 +aI00 +aI00 +asa(dp1190 +g4 +(lp1191 +I00 +aI00 +aI00 +asa(dp1192 +g4 +(lp1193 +I00 +aI00 +aI00 +asa(dp1194 +g4 +(lp1195 +I00 +aI00 +aI00 +asa(dp1196 +g4 +(lp1197 +I00 +aI00 +aI00 +asa(dp1198 +g4 +(lp1199 +I00 +aI00 +aI00 +asa(dp1200 +g4 +(lp1201 +I00 +aI00 +aI00 +asa(dp1202 +g4 +(lp1203 +I00 +aI00 +aI00 +asa(dp1204 +g4 +(lp1205 +I00 +aI00 +aI00 +asa(dp1206 +g4 +(lp1207 +I01 +aI00 +aI00 +asa(dp1208 +g4 +(lp1209 +I00 +aI01 +aI00 +asa(dp1210 +g4 +(lp1211 +I00 +aI00 +aI00 +asa(dp1212 +g4 +(lp1213 +I00 +aI00 +aI00 +asa(dp1214 +g4 +(lp1215 +I01 +aI00 +aI00 +asa(dp1216 +g4 +(lp1217 +I00 +aI00 +aI00 +asa(dp1218 +g4 +(lp1219 +I00 +aI00 +aI00 +asa(dp1220 +g4 +(lp1221 +I00 +aI01 +aI00 +asa(dp1222 +g4 +(lp1223 +I00 +aI00 +aI00 +asa(dp1224 +g4 +(lp1225 +I00 +aI01 +aI00 +asa(dp1226 +g4 +(lp1227 +I00 +aI00 +aI00 +asa(dp1228 +g4 +(lp1229 +I01 +aI00 +aI00 +asa(dp1230 +g4 +(lp1231 +I00 +aI00 +aI00 +asa(dp1232 +g4 +(lp1233 +I00 +aI00 +aI00 +asa(dp1234 +g4 +(lp1235 +I00 +aI00 +aI00 +asa(dp1236 +g4 +(lp1237 +I00 +aI01 +aI00 +asa(dp1238 +g4 +(lp1239 +I01 +aI00 +aI00 +asa(dp1240 +g4 +(lp1241 +I00 +aI00 +aI00 +asa(dp1242 +g4 +(lp1243 +I00 +aI00 +aI00 +asa(dp1244 +g4 +(lp1245 +I00 +aI00 +aI01 +asa(dp1246 +g4 +(lp1247 +I00 +aI00 +aI01 +asa(dp1248 +g4 +(lp1249 +I00 +aI00 +aI00 +asa(dp1250 +g4 +(lp1251 +I00 +aI00 +aI00 +asa(dp1252 +g4 +(lp1253 +I00 +aI00 +aI00 +asa(dp1254 +g4 +(lp1255 +I00 +aI00 +aI00 +asa(dp1256 +g4 +(lp1257 +I00 +aI00 +aI00 +asa(dp1258 +g4 +(lp1259 +I00 +aI01 +aI00 +asa(dp1260 +g4 +(lp1261 +I00 +aI00 +aI00 +asa(dp1262 +g4 +(lp1263 +I00 +aI00 +aI00 +asa(dp1264 +g4 +(lp1265 +I01 +aI00 +aI00 +asa(dp1266 +g4 +(lp1267 +I00 +aI00 +aI00 +asa(dp1268 +g4 +(lp1269 +I00 +aI00 +aI01 +asa(dp1270 +g4 +(lp1271 +I00 +aI01 +aI00 +asa(dp1272 +g4 +(lp1273 +I00 +aI00 +aI00 +asa(dp1274 +g4 +(lp1275 +I01 +aI00 +aI00 +asa(dp1276 +g4 +(lp1277 +I00 +aI00 +aI01 +asa(dp1278 +g4 +(lp1279 +I00 +aI00 +aI01 +asa(dp1280 +g4 +(lp1281 +I00 +aI00 +aI00 +asa(dp1282 +g4 +(lp1283 +I01 +aI00 +aI00 +asa(dp1284 +g4 +(lp1285 +I00 +aI00 +aI00 +asa(dp1286 +g4 +(lp1287 +I00 +aI00 +aI00 +asa(dp1288 +g4 +(lp1289 +I00 +aI00 +aI00 +asa(dp1290 +g4 +(lp1291 +I00 +aI01 +aI00 +asa(dp1292 +g4 +(lp1293 +I00 +aI00 +aI00 +asa(dp1294 +g4 +(lp1295 +I01 +aI00 +aI00 +asa(dp1296 +g4 +(lp1297 +I00 +aI00 +aI00 +asa(dp1298 +g4 +(lp1299 +I01 +aI00 +aI00 +asa(dp1300 +g4 +(lp1301 +I01 +aI00 +aI00 +asa(dp1302 +g4 +(lp1303 +I00 +aI01 +aI00 +asa(dp1304 +g4 +(lp1305 +I00 +aI00 +aI00 +asa(dp1306 +g4 +(lp1307 +I00 +aI00 +aI00 +asa(dp1308 +g4 +(lp1309 +I00 +aI00 +aI00 +asa(dp1310 +g4 +(lp1311 +I00 +aI00 +aI00 +asa(dp1312 +g4 +(lp1313 +I00 +aI00 +aI00 +asa(dp1314 +g4 +(lp1315 +I00 +aI00 +aI00 +asa(dp1316 +g4 +(lp1317 +I00 +aI00 +aI00 +asa(dp1318 +g4 +(lp1319 +I00 +aI00 +aI00 +asa(dp1320 +g4 +(lp1321 +I01 +aI00 +aI00 +asa(dp1322 +g4 +(lp1323 +I00 +aI00 +aI00 +asa(dp1324 +g4 +(lp1325 +I00 +aI00 +aI00 +asa(dp1326 +g4 +(lp1327 +I00 +aI00 +aI00 +asa(dp1328 +g4 +(lp1329 +I00 +aI00 +aI00 +asa(dp1330 +g4 +(lp1331 +I00 +aI01 +aI00 +asa(dp1332 +g4 +(lp1333 +I00 +aI00 +aI00 +asa(dp1334 +g4 +(lp1335 +I00 +aI00 +aI00 +asa(dp1336 +g4 +(lp1337 +I00 +aI00 +aI00 +asa(dp1338 +g4 +(lp1339 +I00 +aI00 +aI00 +asa(dp1340 +g4 +(lp1341 +I00 +aI00 +aI00 +asa(dp1342 +g4 +(lp1343 +I00 +aI00 +aI00 +asa(dp1344 +g4 +(lp1345 +I01 +aI00 +aI01 +asa(dp1346 +g4 +(lp1347 +I01 +aI00 +aI01 +asa(dp1348 +g4 +(lp1349 +I00 +aI00 +aI00 +asa(dp1350 +g4 +(lp1351 +I00 +aI00 +aI00 +asa(dp1352 +g4 +(lp1353 +I00 +aI00 +aI00 +asa(dp1354 +g4 +(lp1355 +I00 +aI00 +aI00 +asa(dp1356 +g4 +(lp1357 +I00 +aI00 +aI00 +asa(dp1358 +g4 +(lp1359 +I00 +aI00 +aI00 +asa(dp1360 +g4 +(lp1361 +I00 +aI00 +aI00 +asa(dp1362 +g4 +(lp1363 +I00 +aI00 +aI00 +asa(dp1364 +g4 +(lp1365 +I00 +aI00 +aI00 +asa(dp1366 +g4 +(lp1367 +I00 +aI00 +aI00 +asa(dp1368 +g4 +(lp1369 +I00 +aI01 +aI00 +asa(dp1370 +g4 +(lp1371 +I00 +aI00 +aI00 +asa(dp1372 +g4 +(lp1373 +I00 +aI01 +aI00 +asa(dp1374 +g4 +(lp1375 +I01 +aI00 +aI00 +asa(dp1376 +g4 +(lp1377 +I00 +aI00 +aI00 +asa(dp1378 +g4 +(lp1379 +I00 +aI00 +aI00 +asa(dp1380 +g4 +(lp1381 +I00 +aI01 +aI00 +asa(dp1382 +g4 +(lp1383 +I01 +aI00 +aI00 +asa(dp1384 +g4 +(lp1385 +I01 +aI00 +aI00 +asa(dp1386 +g4 +(lp1387 +I00 +aI00 +aI00 +asa(dp1388 +g4 +(lp1389 +I00 +aI00 +aI01 +asa(dp1390 +g4 +(lp1391 +I00 +aI00 +aI00 +asa(dp1392 +g4 +(lp1393 +I00 +aI00 +aI01 +asa(dp1394 +g4 +(lp1395 +I00 +aI00 +aI00 +asa(dp1396 +g4 +(lp1397 +I00 +aI00 +aI00 +asa(dp1398 +g4 +(lp1399 +I00 +aI00 +aI00 +asa(dp1400 +g4 +(lp1401 +I00 +aI01 +aI00 +asa(dp1402 +g4 +(lp1403 +I01 +aI00 +aI00 +asa(dp1404 +g4 +(lp1405 +I00 +aI00 +aI00 +asa(dp1406 +g4 +(lp1407 +I00 +aI00 +aI00 +asa(dp1408 +g4 +(lp1409 +I00 +aI00 +aI00 +asa(dp1410 +g4 +(lp1411 +I00 +aI00 +aI00 +asa(dp1412 +g4 +(lp1413 +I00 +aI00 +aI00 +asa(dp1414 +g4 +(lp1415 +I00 +aI00 +aI00 +asa(dp1416 +g4 +(lp1417 +I00 +aI00 +aI00 +asa(dp1418 +g4 +(lp1419 +I00 +aI00 +aI00 +asa(dp1420 +g4 +(lp1421 +I00 +aI00 +aI00 +asa(dp1422 +g4 +(lp1423 +I00 +aI00 +aI00 +asa(dp1424 +g4 +(lp1425 +I00 +aI01 +aI00 +asa(dp1426 +g4 +(lp1427 +I00 +aI01 +aI00 +asa(dp1428 +g4 +(lp1429 +I00 +aI00 +aI00 +asa(dp1430 +g4 +(lp1431 +I00 +aI00 +aI00 +asa(dp1432 +g4 +(lp1433 +I00 +aI00 +aI00 +asa(dp1434 +g4 +(lp1435 +I00 +aI00 +aI00 +asa(dp1436 +g4 +(lp1437 +I00 +aI00 +aI00 +asa(dp1438 +g4 +(lp1439 +I00 +aI00 +aI00 +asa(dp1440 +g4 +(lp1441 +I00 +aI00 +aI00 +asa(dp1442 +g4 +(lp1443 +I00 +aI00 +aI00 +asa(dp1444 +g4 +(lp1445 +I01 +aI00 +aI00 +asa(dp1446 +g4 +(lp1447 +I00 +aI00 +aI00 +asa(dp1448 +g4 +(lp1449 +I00 +aI00 +aI00 +asa(dp1450 +g4 +(lp1451 +I01 +aI00 +aI01 +asa(dp1452 +g4 +(lp1453 +I00 +aI00 +aI00 +asa(dp1454 +g4 +(lp1455 +I01 +aI00 +aI01 +asa(dp1456 +g4 +(lp1457 +I00 +aI01 +aI00 +asa(dp1458 +g4 +(lp1459 +I00 +aI00 +aI00 +asa(dp1460 +g4 +(lp1461 +I00 +aI00 +aI00 +asa(dp1462 +g4 +(lp1463 +I00 +aI00 +aI00 +asa(dp1464 +g4 +(lp1465 +I00 +aI00 +aI00 +asa(dp1466 +g4 +(lp1467 +I00 +aI00 +aI00 +asa(dp1468 +g4 +(lp1469 +I00 +aI00 +aI00 +asa(dp1470 +g4 +(lp1471 +I01 +aI00 +aI01 +asa(dp1472 +g4 +(lp1473 +I00 +aI00 +aI01 +asa(dp1474 +g4 +(lp1475 +I00 +aI00 +aI00 +asa(dp1476 +g4 +(lp1477 +I00 +aI00 +aI00 +asa(dp1478 +g4 +(lp1479 +I00 +aI00 +aI00 +asa(dp1480 +g4 +(lp1481 +I00 +aI01 +aI00 +asa(dp1482 +g4 +(lp1483 +I00 +aI00 +aI00 +asa(dp1484 +g4 +(lp1485 +I00 +aI00 +aI00 +asa(dp1486 +g4 +(lp1487 +I01 +aI00 +aI00 +asa(dp1488 +g4 +(lp1489 +I00 +aI00 +aI00 +asa(dp1490 +g4 +(lp1491 +I00 +aI00 +aI00 +asa(dp1492 +g4 +(lp1493 +I00 +aI00 +aI01 +asa(dp1494 +g4 +(lp1495 +I00 +aI01 +aI00 +asa(dp1496 +g4 +(lp1497 +I00 +aI00 +aI00 +asa(dp1498 +g4 +(lp1499 +I00 +aI00 +aI00 +asa(dp1500 +g4 +(lp1501 +I00 +aI00 +aI00 +asa(dp1502 +g4 +(lp1503 +I00 +aI01 +aI00 +asa(dp1504 +g4 +(lp1505 +I01 +aI00 +aI00 +asa(dp1506 +g4 +(lp1507 +I00 +aI00 +aI00 +asa(dp1508 +g4 +(lp1509 +I00 +aI00 +aI00 +asa(dp1510 +g4 +(lp1511 +I00 +aI00 +aI00 +asa(dp1512 +g4 +(lp1513 +I00 +aI00 +aI00 +asa(dp1514 +g4 +(lp1515 +I01 +aI00 +aI00 +asa(dp1516 +g4 +(lp1517 +I01 +aI00 +aI00 +asa(dp1518 +g4 +(lp1519 +I01 +aI00 +aI00 +asa(dp1520 +g4 +(lp1521 +I00 +aI00 +aI00 +asa(dp1522 +g4 +(lp1523 +I01 +aI00 +aI01 +asa(dp1524 +g4 +(lp1525 +I01 +aI00 +aI00 +asa(dp1526 +g4 +(lp1527 +I00 +aI00 +aI00 +asa(dp1528 +g4 +(lp1529 +I01 +aI00 +aI00 +asa(dp1530 +g4 +(lp1531 +I00 +aI01 +aI00 +asa(dp1532 +g4 +(lp1533 +I00 +aI00 +aI00 +asa(dp1534 +g4 +(lp1535 +I00 +aI00 +aI00 +asa(dp1536 +g4 +(lp1537 +I00 +aI00 +aI00 +asa(dp1538 +g4 +(lp1539 +I00 +aI00 +aI00 +asa(dp1540 +g4 +(lp1541 +I01 +aI00 +aI00 +asa(dp1542 +g4 +(lp1543 +I00 +aI00 +aI01 +asa(dp1544 +g4 +(lp1545 +I00 +aI00 +aI00 +asa(dp1546 +g4 +(lp1547 +I00 +aI00 +aI00 +asa(dp1548 +g4 +(lp1549 +I00 +aI00 +aI00 +asa(dp1550 +g4 +(lp1551 +I00 +aI01 +aI00 +asa(dp1552 +g4 +(lp1553 +I00 +aI00 +aI00 +asa(dp1554 +g4 +(lp1555 +I00 +aI01 +aI00 +asa(dp1556 +g4 +(lp1557 +I00 +aI00 +aI00 +asa(dp1558 +g4 +(lp1559 +I00 +aI00 +aI00 +asa(dp1560 +g4 +(lp1561 +I00 +aI00 +aI00 +asa(dp1562 +g4 +(lp1563 +I00 +aI00 +aI00 +asa(dp1564 +g4 +(lp1565 +I00 +aI00 +aI00 +asa(dp1566 +g4 +(lp1567 +I00 +aI00 +aI00 +asa(dp1568 +g4 +(lp1569 +I00 +aI00 +aI00 +asa(dp1570 +g4 +(lp1571 +I00 +aI01 +aI00 +asa(dp1572 +g4 +(lp1573 +I01 +aI00 +aI00 +asa(dp1574 +g4 +(lp1575 +I01 +aI00 +aI00 +asa(dp1576 +g4 +(lp1577 +I00 +aI00 +aI00 +asa(dp1578 +g4 +(lp1579 +I00 +aI00 +aI00 +asa(dp1580 +g4 +(lp1581 +I01 +aI00 +aI00 +asa(dp1582 +g4 +(lp1583 +I00 +aI00 +aI01 +asa(dp1584 +g4 +(lp1585 +I01 +aI00 +aI01 +asa(dp1586 +g4 +(lp1587 +I00 +aI00 +aI00 +asa(dp1588 +g4 +(lp1589 +I00 +aI00 +aI00 +asa(dp1590 +g4 +(lp1591 +I00 +aI00 +aI00 +asa(dp1592 +g4 +(lp1593 +I00 +aI00 +aI00 +asa(dp1594 +g4 +(lp1595 +I00 +aI00 +aI00 +asa(dp1596 +g4 +(lp1597 +I00 +aI00 +aI00 +asa(dp1598 +g4 +(lp1599 +I00 +aI00 +aI00 +asa(dp1600 +g4 +(lp1601 +I00 +aI00 +aI00 +asa(dp1602 +g4 +(lp1603 +I00 +aI00 +aI01 +asa(dp1604 +g4 +(lp1605 +I00 +aI00 +aI00 +asa(dp1606 +g4 +(lp1607 +I00 +aI00 +aI00 +asa(dp1608 +g4 +(lp1609 +I00 +aI00 +aI00 +asa(dp1610 +g4 +(lp1611 +I00 +aI00 +aI00 +asa(dp1612 +g4 +(lp1613 +I00 +aI00 +aI00 +asa(dp1614 +g4 +(lp1615 +I00 +aI00 +aI00 +asa(dp1616 +g4 +(lp1617 +I00 +aI00 +aI00 +asa(dp1618 +g4 +(lp1619 +I00 +aI00 +aI00 +asa(dp1620 +g4 +(lp1621 +I00 +aI00 +aI00 +asa(dp1622 +g4 +(lp1623 +I00 +aI00 +aI00 +asa(dp1624 +g4 +(lp1625 +I00 +aI00 +aI00 +asa(dp1626 +g4 +(lp1627 +I00 +aI00 +aI00 +asa(dp1628 +g4 +(lp1629 +I01 +aI00 +aI00 +asa(dp1630 +g4 +(lp1631 +I00 +aI00 +aI00 +asa(dp1632 +g4 +(lp1633 +I00 +aI00 +aI00 +asa(dp1634 +g4 +(lp1635 +I00 +aI00 +aI00 +asa(dp1636 +g4 +(lp1637 +I00 +aI00 +aI00 +asa(dp1638 +g4 +(lp1639 +I00 +aI00 +aI00 +asa(dp1640 +g4 +(lp1641 +I00 +aI00 +aI00 +asa(dp1642 +g4 +(lp1643 +I00 +aI00 +aI01 +asa(dp1644 +g4 +(lp1645 +I00 +aI00 +aI01 +asa(dp1646 +g4 +(lp1647 +I00 +aI01 +aI00 +asa(dp1648 +g4 +(lp1649 +I00 +aI00 +aI00 +asa(dp1650 +g4 +(lp1651 +I00 +aI00 +aI00 +asa(dp1652 +g4 +(lp1653 +I00 +aI00 +aI00 +asa(dp1654 +g4 +(lp1655 +I00 +aI00 +aI00 +asa(dp1656 +g4 +(lp1657 +I00 +aI00 +aI01 +asa(dp1658 +g4 +(lp1659 +I00 +aI00 +aI00 +asa(dp1660 +g4 +(lp1661 +I00 +aI00 +aI00 +asa(dp1662 +g4 +(lp1663 +I00 +aI00 +aI00 +asa(dp1664 +g4 +(lp1665 +I00 +aI00 +aI00 +asa(dp1666 +g4 +(lp1667 +I00 +aI00 +aI00 +asa(dp1668 +g4 +(lp1669 +I00 +aI00 +aI00 +asa(dp1670 +g4 +(lp1671 +I00 +aI00 +aI00 +asa(dp1672 +g4 +(lp1673 +I00 +aI00 +aI00 +asa(dp1674 +g4 +(lp1675 +I00 +aI00 +aI00 +asa(dp1676 +g4 +(lp1677 +I00 +aI00 +aI00 +asa(dp1678 +g4 +(lp1679 +I00 +aI00 +aI00 +asa(dp1680 +g4 +(lp1681 +I01 +aI00 +aI00 +asa(dp1682 +g4 +(lp1683 +I00 +aI00 +aI00 +asa(dp1684 +g4 +(lp1685 +I00 +aI00 +aI00 +asa(dp1686 +g4 +(lp1687 +I00 +aI00 +aI00 +asa(dp1688 +g4 +(lp1689 +I00 +aI00 +aI00 +asa(dp1690 +g4 +(lp1691 +I01 +aI00 +aI00 +asa(dp1692 +g4 +(lp1693 +I01 +aI00 +aI00 +asa(dp1694 +g4 +(lp1695 +I00 +aI00 +aI01 +asa(dp1696 +g4 +(lp1697 +I00 +aI00 +aI01 +asa(dp1698 +g4 +(lp1699 +I01 +aI00 +aI00 +asa(dp1700 +g4 +(lp1701 +I00 +aI00 +aI00 +asa(dp1702 +g4 +(lp1703 +I00 +aI00 +aI00 +asa(dp1704 +g4 +(lp1705 +I00 +aI00 +aI00 +asa(dp1706 +g4 +(lp1707 +I01 +aI00 +aI00 +asa(dp1708 +g4 +(lp1709 +I00 +aI00 +aI00 +asa(dp1710 +g4 +(lp1711 +I00 +aI00 +aI00 +asa(dp1712 +g4 +(lp1713 +I00 +aI01 +aI00 +asa(dp1714 +g4 +(lp1715 +I00 +aI00 +aI00 +asa(dp1716 +g4 +(lp1717 +I00 +aI01 +aI00 +asa(dp1718 +g4 +(lp1719 +I00 +aI00 +aI00 +asa(dp1720 +g4 +(lp1721 +I00 +aI00 +aI00 +asa(dp1722 +g4 +(lp1723 +I00 +aI01 +aI00 +asa(dp1724 +g4 +(lp1725 +I00 +aI00 +aI00 +asa(dp1726 +g4 +(lp1727 +I00 +aI00 +aI00 +asa(dp1728 +g4 +(lp1729 +I00 +aI00 +aI00 +asa(dp1730 +g4 +(lp1731 +I00 +aI00 +aI00 +asa(dp1732 +g4 +(lp1733 +I00 +aI00 +aI00 +asa(dp1734 +g4 +(lp1735 +I00 +aI00 +aI00 +asa(dp1736 +g4 +(lp1737 +I01 +aI00 +aI00 +asa(dp1738 +g4 +(lp1739 +I00 +aI01 +aI00 +asa(dp1740 +g4 +(lp1741 +I00 +aI01 +aI00 +asa(dp1742 +g4 +(lp1743 +I00 +aI01 +aI00 +asa(dp1744 +g4 +(lp1745 +I00 +aI00 +aI00 +asa(dp1746 +g4 +(lp1747 +I00 +aI01 +aI00 +asa(dp1748 +g4 +(lp1749 +I00 +aI00 +aI00 +asa(dp1750 +g4 +(lp1751 +I00 +aI00 +aI00 +asa(dp1752 +g4 +(lp1753 +I00 +aI00 +aI00 +asa(dp1754 +g4 +(lp1755 +I00 +aI00 +aI00 +asa(dp1756 +g4 +(lp1757 +I00 +aI00 +aI00 +asa(dp1758 +g4 +(lp1759 +I00 +aI00 +aI00 +asa(dp1760 +g4 +(lp1761 +I00 +aI01 +aI00 +asa(dp1762 +g4 +(lp1763 +I00 +aI00 +aI00 +asa(dp1764 +g4 +(lp1765 +I00 +aI00 +aI00 +asa(dp1766 +g4 +(lp1767 +I00 +aI00 +aI00 +asa(dp1768 +g4 +(lp1769 +I00 +aI01 +aI00 +asa(dp1770 +g4 +(lp1771 +I00 +aI01 +aI00 +asa(dp1772 +g4 +(lp1773 +I00 +aI00 +aI00 +asa(dp1774 +g4 +(lp1775 +I00 +aI01 +aI00 +asa(dp1776 +g4 +(lp1777 +I00 +aI00 +aI00 +asa(dp1778 +g4 +(lp1779 +I00 +aI00 +aI00 +asa(dp1780 +g4 +(lp1781 +I00 +aI00 +aI00 +asa(dp1782 +g4 +(lp1783 +I00 +aI00 +aI00 +asa(dp1784 +g4 +(lp1785 +I00 +aI00 +aI00 +asa(dp1786 +g4 +(lp1787 +I00 +aI00 +aI00 +asa(dp1788 +g4 +(lp1789 +I00 +aI00 +aI00 +asa(dp1790 +g4 +(lp1791 +I00 +aI00 +aI01 +asa(dp1792 +g4 +(lp1793 +I00 +aI00 +aI00 +asa(dp1794 +g4 +(lp1795 +I00 +aI00 +aI00 +asa(dp1796 +g4 +(lp1797 +I00 +aI00 +aI00 +asa(dp1798 +g4 +(lp1799 +I00 +aI00 +aI00 +asa(dp1800 +g4 +(lp1801 +I00 +aI00 +aI00 +asa(dp1802 +g4 +(lp1803 +I00 +aI00 +aI00 +asa(dp1804 +g4 +(lp1805 +I00 +aI00 +aI01 +asa(dp1806 +g4 +(lp1807 +I00 +aI01 +aI00 +asa(dp1808 +g4 +(lp1809 +I00 +aI00 +aI00 +asa(dp1810 +g4 +(lp1811 +I00 +aI01 +aI00 +asa(dp1812 +g4 +(lp1813 +I00 +aI01 +aI00 +asa(dp1814 +g4 +(lp1815 +I00 +aI01 +aI00 +asa(dp1816 +g4 +(lp1817 +I00 +aI00 +aI00 +asa(dp1818 +g4 +(lp1819 +I00 +aI00 +aI00 +asa(dp1820 +g4 +(lp1821 +I00 +aI00 +aI00 +asa(dp1822 +g4 +(lp1823 +I00 +aI00 +aI00 +asa(dp1824 +g4 +(lp1825 +I00 +aI00 +aI01 +asa(dp1826 +g4 +(lp1827 +I00 +aI00 +aI01 +asa(dp1828 +g4 +(lp1829 +I00 +aI00 +aI00 +asa(dp1830 +g4 +(lp1831 +I00 +aI01 +aI00 +asa(dp1832 +g4 +(lp1833 +I00 +aI01 +aI00 +asa(dp1834 +g4 +(lp1835 +I00 +aI00 +aI01 +asa(dp1836 +g4 +(lp1837 +I00 +aI01 +aI00 +asa(dp1838 +g4 +(lp1839 +I00 +aI00 +aI00 +asa(dp1840 +g4 +(lp1841 +I00 +aI00 +aI00 +asa(dp1842 +g4 +(lp1843 +I00 +aI00 +aI00 +asa(dp1844 +g4 +(lp1845 +I00 +aI01 +aI00 +asa(dp1846 +g4 +(lp1847 +I00 +aI00 +aI00 +asa(dp1848 +g4 +(lp1849 +I00 +aI01 +aI00 +asa(dp1850 +g4 +(lp1851 +I01 +aI00 +aI01 +asa(dp1852 +g4 +(lp1853 +I00 +aI00 +aI00 +asa(dp1854 +g4 +(lp1855 +I00 +aI00 +aI01 +asa(dp1856 +g4 +(lp1857 +I00 +aI00 +aI00 +asa(dp1858 +g4 +(lp1859 +I00 +aI00 +aI00 +asa(dp1860 +g4 +(lp1861 +I00 +aI00 +aI00 +asa(dp1862 +g4 +(lp1863 +I00 +aI00 +aI00 +asa(dp1864 +g4 +(lp1865 +I00 +aI00 +aI00 +asa(dp1866 +g4 +(lp1867 +I00 +aI00 +aI00 +asa(dp1868 +g4 +(lp1869 +I01 +aI00 +aI00 +asa(dp1870 +g4 +(lp1871 +I00 +aI00 +aI00 +asa(dp1872 +g4 +(lp1873 +I00 +aI00 +aI00 +asa(dp1874 +g4 +(lp1875 +I00 +aI00 +aI00 +asa(dp1876 +g4 +(lp1877 +I00 +aI00 +aI00 +asa(dp1878 +g4 +(lp1879 +I00 +aI00 +aI00 +asa(dp1880 +g4 +(lp1881 +I00 +aI00 +aI00 +asa(dp1882 +g4 +(lp1883 +I00 +aI00 +aI00 +asa(dp1884 +g4 +(lp1885 +I00 +aI00 +aI00 +asa(dp1886 +g4 +(lp1887 +I00 +aI00 +aI00 +asa(dp1888 +g4 +(lp1889 +I00 +aI00 +aI00 +asa(dp1890 +g4 +(lp1891 +I00 +aI00 +aI00 +asa(dp1892 +g4 +(lp1893 +I00 +aI00 +aI00 +asa(dp1894 +g4 +(lp1895 +I00 +aI00 +aI00 +asa(dp1896 +g4 +(lp1897 +I00 +aI00 +aI00 +asa(dp1898 +g4 +(lp1899 +I00 +aI00 +aI00 +asa(dp1900 +g4 +(lp1901 +I00 +aI00 +aI00 +asa(dp1902 +g4 +(lp1903 +I00 +aI00 +aI00 +asa(dp1904 +g4 +(lp1905 +I00 +aI00 +aI00 +asa(dp1906 +g4 +(lp1907 +I00 +aI00 +aI00 +asa(dp1908 +g4 +(lp1909 +I00 +aI00 +aI00 +asa(dp1910 +g4 +(lp1911 +I00 +aI00 +aI00 +asa(dp1912 +g4 +(lp1913 +I00 +aI00 +aI01 +asa(dp1914 +g4 +(lp1915 +I00 +aI01 +aI00 +asa(dp1916 +g4 +(lp1917 +I00 +aI01 +aI00 +asa(dp1918 +g4 +(lp1919 +I00 +aI00 +aI01 +asa(dp1920 +g4 +(lp1921 +I00 +aI01 +aI00 +asa(dp1922 +g4 +(lp1923 +I00 +aI00 +aI00 +asa(dp1924 +g4 +(lp1925 +I00 +aI01 +aI00 +asa(dp1926 +g4 +(lp1927 +I00 +aI00 +aI00 +asa(dp1928 +g4 +(lp1929 +I00 +aI00 +aI00 +asa(dp1930 +g4 +(lp1931 +I00 +aI00 +aI00 +asa(dp1932 +g4 +(lp1933 +I00 +aI00 +aI00 +asa(dp1934 +g4 +(lp1935 +I00 +aI01 +aI00 +asa(dp1936 +g4 +(lp1937 +I00 +aI00 +aI01 +asa(dp1938 +g4 +(lp1939 +I00 +aI00 +aI00 +asa(dp1940 +g4 +(lp1941 +I00 +aI00 +aI00 +asa(dp1942 +g4 +(lp1943 +I00 +aI01 +aI00 +asa(dp1944 +g4 +(lp1945 +I00 +aI00 +aI01 +asa(dp1946 +g4 +(lp1947 +I00 +aI00 +aI00 +asa(dp1948 +g4 +(lp1949 +I00 +aI00 +aI00 +asa(dp1950 +g4 +(lp1951 +I00 +aI01 +aI00 +asa(dp1952 +g4 +(lp1953 +I00 +aI01 +aI00 +asa(dp1954 +g4 +(lp1955 +I00 +aI01 +aI00 +asa(dp1956 +g4 +(lp1957 +I00 +aI01 +aI00 +asa(dp1958 +g4 +(lp1959 +I00 +aI00 +aI00 +asa(dp1960 +g4 +(lp1961 +I00 +aI00 +aI00 +asa(dp1962 +g4 +(lp1963 +I00 +aI00 +aI00 +asa(dp1964 +g4 +(lp1965 +I00 +aI00 +aI00 +asa(dp1966 +g4 +(lp1967 +I00 +aI00 +aI00 +asa(dp1968 +g4 +(lp1969 +I00 +aI00 +aI00 +asa(dp1970 +g4 +(lp1971 +I00 +aI00 +aI00 +asa(dp1972 +g4 +(lp1973 +I01 +aI00 +aI00 +asa(dp1974 +g4 +(lp1975 +I00 +aI00 +aI01 +asa(dp1976 +g4 +(lp1977 +I00 +aI01 +aI00 +asa(dp1978 +g4 +(lp1979 +I00 +aI00 +aI00 +asa(dp1980 +g4 +(lp1981 +I00 +aI00 +aI00 +asa(dp1982 +g4 +(lp1983 +I00 +aI00 +aI00 +asa(dp1984 +g4 +(lp1985 +I00 +aI00 +aI00 +asa(dp1986 +g4 +(lp1987 +I00 +aI00 +aI00 +asa(dp1988 +g4 +(lp1989 +I00 +aI00 +aI00 +asa(dp1990 +g4 +(lp1991 +I00 +aI00 +aI00 +asa(dp1992 +g4 +(lp1993 +I00 +aI00 +aI00 +asa(dp1994 +g4 +(lp1995 +I00 +aI00 +aI00 +asa(dp1996 +g4 +(lp1997 +I00 +aI01 +aI00 +asa(dp1998 +g4 +(lp1999 +I00 +aI00 +aI00 +asa(dp2000 +g4 +(lp2001 +I00 +aI00 +aI00 +asa(dp2002 +g4 +(lp2003 +I00 +aI00 +aI00 +asa(dp2004 +g4 +(lp2005 +I00 +aI00 +aI01 +asa(dp2006 +g4 +(lp2007 +I00 +aI01 +aI00 +asa(dp2008 +g4 +(lp2009 +I00 +aI00 +aI00 +asa(dp2010 +g4 +(lp2011 +I00 +aI00 +aI01 +asa(dp2012 +g4 +(lp2013 +I00 +aI01 +aI00 +asa(dp2014 +g4 +(lp2015 +I00 +aI00 +aI00 +asa(dp2016 +g4 +(lp2017 +I00 +aI00 +aI00 +asa(dp2018 +g4 +(lp2019 +I00 +aI00 +aI00 +asa(dp2020 +g4 +(lp2021 +I01 +aI00 +aI01 +asa(dp2022 +g4 +(lp2023 +I00 +aI00 +aI00 +asa(dp2024 +g4 +(lp2025 +I00 +aI00 +aI00 +asa(dp2026 +g4 +(lp2027 +I00 +aI00 +aI01 +asa(dp2028 +g4 +(lp2029 +I00 +aI00 +aI00 +asa(dp2030 +g4 +(lp2031 +I00 +aI00 +aI00 +asa(dp2032 +g4 +(lp2033 +I00 +aI00 +aI00 +asa(dp2034 +g4 +(lp2035 +I00 +aI01 +aI00 +asa(dp2036 +g4 +(lp2037 +I00 +aI00 +aI00 +asa(dp2038 +g4 +(lp2039 +I00 +aI01 +aI00 +asa(dp2040 +g4 +(lp2041 +I00 +aI00 +aI00 +asa(dp2042 +g4 +(lp2043 +I00 +aI00 +aI00 +asa(dp2044 +g4 +(lp2045 +I00 +aI00 +aI00 +asa(dp2046 +g4 +(lp2047 +I00 +aI00 +aI00 +asa(dp2048 +g4 +(lp2049 +I00 +aI00 +aI00 +asa(dp2050 +g4 +(lp2051 +I00 +aI00 +aI00 +asa(dp2052 +g4 +(lp2053 +I00 +aI00 +aI00 +asa(dp2054 +g4 +(lp2055 +I00 +aI00 +aI01 +asa(dp2056 +g4 +(lp2057 +I00 +aI00 +aI00 +asa(dp2058 +g4 +(lp2059 +I00 +aI00 +aI00 +asa(dp2060 +g4 +(lp2061 +I00 +aI00 +aI00 +asa(dp2062 +g4 +(lp2063 +I00 +aI01 +aI00 +asa(dp2064 +g4 +(lp2065 +I00 +aI00 +aI01 +asa(dp2066 +g4 +(lp2067 +I00 +aI00 +aI01 +asa(dp2068 +g4 +(lp2069 +I00 +aI00 +aI00 +asa(dp2070 +g4 +(lp2071 +I00 +aI00 +aI00 +asa(dp2072 +g4 +(lp2073 +I00 +aI00 +aI00 +asa(dp2074 +g4 +(lp2075 +I00 +aI00 +aI00 +asa(dp2076 +g4 +(lp2077 +I00 +aI00 +aI00 +asa(dp2078 +g4 +(lp2079 +I00 +aI00 +aI00 +asa(dp2080 +g4 +(lp2081 +I00 +aI00 +aI00 +asa(dp2082 +g4 +(lp2083 +I00 +aI00 +aI00 +asa(dp2084 +g4 +(lp2085 +I00 +aI00 +aI00 +asa(dp2086 +g4 +(lp2087 +I00 +aI00 +aI00 +asa(dp2088 +g4 +(lp2089 +I00 +aI00 +aI00 +asa(dp2090 +g4 +(lp2091 +I00 +aI00 +aI00 +asa(dp2092 +g4 +(lp2093 +I00 +aI00 +aI00 +asa(dp2094 +g4 +(lp2095 +I00 +aI00 +aI00 +asa(dp2096 +g4 +(lp2097 +I00 +aI00 +aI00 +asa(dp2098 +g4 +(lp2099 +I00 +aI00 +aI00 +asa(dp2100 +g4 +(lp2101 +I00 +aI00 +aI00 +asa(dp2102 +g4 +(lp2103 +I00 +aI00 +aI00 +asa(dp2104 +g4 +(lp2105 +I00 +aI00 +aI00 +asa(dp2106 +g4 +(lp2107 +I00 +aI00 +aI00 +asa(dp2108 +g4 +(lp2109 +I00 +aI00 +aI00 +asa(dp2110 +g4 +(lp2111 +I00 +aI00 +aI00 +asa(dp2112 +g4 +(lp2113 +I00 +aI00 +aI00 +asa(dp2114 +g4 +(lp2115 +I01 +aI00 +aI01 +asa(dp2116 +g4 +(lp2117 +I00 +aI00 +aI00 +asa(dp2118 +g4 +(lp2119 +I00 +aI00 +aI00 +asa(dp2120 +g4 +(lp2121 +I00 +aI00 +aI00 +asa(dp2122 +g4 +(lp2123 +I00 +aI00 +aI01 +asa(dp2124 +g4 +(lp2125 +I00 +aI00 +aI00 +asa(dp2126 +g4 +(lp2127 +I00 +aI00 +aI00 +asa(dp2128 +g4 +(lp2129 +I00 +aI00 +aI00 +asa(dp2130 +g4 +(lp2131 +I00 +aI00 +aI00 +asa(dp2132 +g4 +(lp2133 +I00 +aI00 +aI00 +asa(dp2134 +g4 +(lp2135 +I00 +aI00 +aI00 +asa(dp2136 +g4 +(lp2137 +I00 +aI00 +aI01 +asa(dp2138 +g4 +(lp2139 +I01 +aI00 +aI00 +asa(dp2140 +g4 +(lp2141 +I00 +aI00 +aI00 +asa(dp2142 +g4 +(lp2143 +I00 +aI00 +aI00 +asa(dp2144 +g4 +(lp2145 +I00 +aI00 +aI00 +asa(dp2146 +g4 +(lp2147 +I00 +aI00 +aI00 +asa(dp2148 +g4 +(lp2149 +I00 +aI00 +aI00 +asa(dp2150 +g4 +(lp2151 +I00 +aI00 +aI00 +asa(dp2152 +g4 +(lp2153 +I00 +aI00 +aI00 +asa(dp2154 +g4 +(lp2155 +I00 +aI00 +aI00 +asa(dp2156 +g4 +(lp2157 +I00 +aI01 +aI00 +asa(dp2158 +g4 +(lp2159 +I00 +aI00 +aI00 +asa(dp2160 +g4 +(lp2161 +I00 +aI00 +aI00 +asa(dp2162 +g4 +(lp2163 +I00 +aI00 +aI00 +asa(dp2164 +g4 +(lp2165 +I00 +aI00 +aI00 +asa(dp2166 +g4 +(lp2167 +I01 +aI00 +aI00 +asa(dp2168 +g4 +(lp2169 +I00 +aI00 +aI00 +asa(dp2170 +g4 +(lp2171 +I00 +aI00 +aI00 +asa(dp2172 +g4 +(lp2173 +I00 +aI00 +aI00 +asa(dp2174 +g4 +(lp2175 +I00 +aI00 +aI00 +asa(dp2176 +g4 +(lp2177 +I00 +aI01 +aI00 +asa(dp2178 +g4 +(lp2179 +I00 +aI00 +aI00 +asa(dp2180 +g4 +(lp2181 +I00 +aI00 +aI00 +asa(dp2182 +g4 +(lp2183 +I00 +aI01 +aI00 +asa(dp2184 +g4 +(lp2185 +I00 +aI00 +aI01 +asa(dp2186 +g4 +(lp2187 +I00 +aI00 +aI00 +asa(dp2188 +g4 +(lp2189 +I00 +aI00 +aI00 +asa(dp2190 +g4 +(lp2191 +I01 +aI00 +aI00 +asa(dp2192 +g4 +(lp2193 +I00 +aI00 +aI00 +asa(dp2194 +g4 +(lp2195 +I00 +aI00 +aI00 +asa(dp2196 +g4 +(lp2197 +I01 +aI00 +aI01 +asa(dp2198 +g4 +(lp2199 +I00 +aI00 +aI00 +asa(dp2200 +g4 +(lp2201 +I00 +aI00 +aI00 +asa(dp2202 +g4 +(lp2203 +I00 +aI01 +aI00 +asa(dp2204 +g4 +(lp2205 +I00 +aI00 +aI00 +asa(dp2206 +g4 +(lp2207 +I00 +aI00 +aI00 +asa(dp2208 +g4 +(lp2209 +I00 +aI00 +aI00 +asa(dp2210 +g4 +(lp2211 +I00 +aI00 +aI00 +asa(dp2212 +g4 +(lp2213 +I00 +aI00 +aI00 +asa(dp2214 +g4 +(lp2215 +I00 +aI00 +aI00 +asa(dp2216 +g4 +(lp2217 +I00 +aI00 +aI00 +asa(dp2218 +g4 +(lp2219 +I00 +aI00 +aI00 +asa(dp2220 +g4 +(lp2221 +I00 +aI00 +aI00 +asa(dp2222 +g4 +(lp2223 +I00 +aI01 +aI00 +asa(dp2224 +g4 +(lp2225 +I00 +aI00 +aI00 +asa(dp2226 +g4 +(lp2227 +I00 +aI01 +aI00 +asa(dp2228 +g4 +(lp2229 +I00 +aI00 +aI00 +asa(dp2230 +g4 +(lp2231 +I00 +aI00 +aI01 +asa(dp2232 +g4 +(lp2233 +I00 +aI00 +aI00 +asa(dp2234 +g4 +(lp2235 +I00 +aI00 +aI00 +asa(dp2236 +g4 +(lp2237 +I00 +aI00 +aI00 +asa(dp2238 +g4 +(lp2239 +I00 +aI00 +aI00 +asa(dp2240 +g4 +(lp2241 +I00 +aI00 +aI00 +asa(dp2242 +g4 +(lp2243 +I00 +aI00 +aI00 +asa(dp2244 +g4 +(lp2245 +I00 +aI01 +aI00 +asa(dp2246 +g4 +(lp2247 +I00 +aI00 +aI01 +asa(dp2248 +g4 +(lp2249 +I00 +aI00 +aI00 +asa(dp2250 +g4 +(lp2251 +I00 +aI00 +aI01 +asa(dp2252 +g4 +(lp2253 +I00 +aI00 +aI01 +asa(dp2254 +g4 +(lp2255 +I00 +aI01 +aI00 +asa(dp2256 +g4 +(lp2257 +I00 +aI00 +aI00 +asa(dp2258 +g4 +(lp2259 +I00 +aI01 +aI00 +asa(dp2260 +g4 +(lp2261 +I00 +aI00 +aI01 +asa(dp2262 +g4 +(lp2263 +I00 +aI00 +aI00 +asa(dp2264 +g4 +(lp2265 +I00 +aI00 +aI00 +asa(dp2266 +g4 +(lp2267 +I01 +aI00 +aI00 +asa(dp2268 +g4 +(lp2269 +I00 +aI00 +aI00 +asa(dp2270 +g4 +(lp2271 +I00 +aI00 +aI00 +asa(dp2272 +g4 +(lp2273 +I00 +aI00 +aI00 +asa(dp2274 +g4 +(lp2275 +I00 +aI00 +aI00 +asa(dp2276 +g4 +(lp2277 +I00 +aI00 +aI00 +asa(dp2278 +g4 +(lp2279 +I00 +aI00 +aI00 +asa(dp2280 +g4 +(lp2281 +I00 +aI00 +aI01 +asa(dp2282 +g4 +(lp2283 +I00 +aI00 +aI00 +asa(dp2284 +g4 +(lp2285 +I00 +aI01 +aI00 +asa(dp2286 +g4 +(lp2287 +I00 +aI00 +aI00 +asa(dp2288 +g4 +(lp2289 +I00 +aI00 +aI00 +asa(dp2290 +g4 +(lp2291 +I00 +aI00 +aI00 +asa(dp2292 +g4 +(lp2293 +I00 +aI00 +aI00 +asa(dp2294 +g4 +(lp2295 +I00 +aI00 +aI00 +asa(dp2296 +g4 +(lp2297 +I00 +aI00 +aI00 +asa(dp2298 +g4 +(lp2299 +I00 +aI00 +aI00 +asa(dp2300 +g4 +(lp2301 +I00 +aI00 +aI00 +asa(dp2302 +g4 +(lp2303 +I00 +aI00 +aI00 +asa(dp2304 +g4 +(lp2305 +I00 +aI00 +aI00 +asa(dp2306 +g4 +(lp2307 +I00 +aI00 +aI01 +asa(dp2308 +g4 +(lp2309 +I00 +aI01 +aI00 +asa(dp2310 +g4 +(lp2311 +I00 +aI00 +aI01 +asa(dp2312 +g4 +(lp2313 +I00 +aI00 +aI00 +asa(dp2314 +g4 +(lp2315 +I00 +aI00 +aI00 +asa(dp2316 +g4 +(lp2317 +I00 +aI00 +aI00 +asa(dp2318 +g4 +(lp2319 +I00 +aI00 +aI00 +asa(dp2320 +g4 +(lp2321 +I00 +aI00 +aI00 +asa(dp2322 +g4 +(lp2323 +I00 +aI00 +aI00 +asa(dp2324 +g4 +(lp2325 +I00 +aI00 +aI00 +asa(dp2326 +g4 +(lp2327 +I00 +aI00 +aI00 +asa(dp2328 +g4 +(lp2329 +I00 +aI00 +aI00 +asa(dp2330 +g4 +(lp2331 +I00 +aI00 +aI00 +asa(dp2332 +g4 +(lp2333 +I01 +aI00 +aI01 +asa(dp2334 +g4 +(lp2335 +I01 +aI00 +aI00 +asa(dp2336 +g4 +(lp2337 +I00 +aI00 +aI01 +asa(dp2338 +g4 +(lp2339 +I00 +aI00 +aI00 +asa(dp2340 +g4 +(lp2341 +I00 +aI00 +aI00 +asa(dp2342 +g4 +(lp2343 +I00 +aI00 +aI00 +asa(dp2344 +g4 +(lp2345 +I00 +aI00 +aI00 +asa(dp2346 +g4 +(lp2347 +I00 +aI00 +aI00 +asa(dp2348 +g4 +(lp2349 +I00 +aI00 +aI00 +asa(dp2350 +g4 +(lp2351 +I00 +aI00 +aI00 +asa(dp2352 +g4 +(lp2353 +I00 +aI00 +aI00 +asa(dp2354 +g4 +(lp2355 +I00 +aI00 +aI00 +asa(dp2356 +g4 +(lp2357 +I00 +aI00 +aI00 +asa(dp2358 +g4 +(lp2359 +I00 +aI00 +aI01 +asa(dp2360 +g4 +(lp2361 +I00 +aI00 +aI00 +asa(dp2362 +g4 +(lp2363 +I00 +aI00 +aI00 +asa(dp2364 +g4 +(lp2365 +I00 +aI00 +aI00 +asa(dp2366 +g4 +(lp2367 +I00 +aI00 +aI00 +asa(dp2368 +g4 +(lp2369 +I00 +aI00 +aI00 +asa(dp2370 +g4 +(lp2371 +I00 +aI01 +aI00 +asa(dp2372 +g4 +(lp2373 +I00 +aI00 +aI00 +asa(dp2374 +g4 +(lp2375 +I00 +aI00 +aI00 +asa(dp2376 +g4 +(lp2377 +I00 +aI00 +aI00 +asa(dp2378 +g4 +(lp2379 +I00 +aI00 +aI00 +asa(dp2380 +g4 +(lp2381 +I00 +aI00 +aI00 +asa(dp2382 +g4 +(lp2383 +I00 +aI00 +aI00 +asa(dp2384 +g4 +(lp2385 +I00 +aI00 +aI00 +asa(dp2386 +g4 +(lp2387 +I00 +aI00 +aI00 +asa(dp2388 +g4 +(lp2389 +I00 +aI01 +aI00 +asa(dp2390 +g4 +(lp2391 +I00 +aI00 +aI00 +asa(dp2392 +g4 +(lp2393 +I00 +aI00 +aI00 +asa(dp2394 +g4 +(lp2395 +I00 +aI01 +aI00 +asa(dp2396 +g4 +(lp2397 +I00 +aI00 +aI00 +asa(dp2398 +g4 +(lp2399 +I00 +aI00 +aI00 +asa(dp2400 +g4 +(lp2401 +I00 +aI00 +aI00 +asa(dp2402 +g4 +(lp2403 +I00 +aI00 +aI00 +asa(dp2404 +g4 +(lp2405 +I01 +aI00 +aI00 +asa(dp2406 +g4 +(lp2407 +I00 +aI00 +aI00 +asa(dp2408 +g4 +(lp2409 +I00 +aI00 +aI00 +asa(dp2410 +g4 +(lp2411 +I00 +aI00 +aI00 +asa(dp2412 +g4 +(lp2413 +I00 +aI01 +aI00 +asa(dp2414 +g4 +(lp2415 +I00 +aI00 +aI00 +asa(dp2416 +g4 +(lp2417 +I00 +aI00 +aI00 +asa(dp2418 +g4 +(lp2419 +I00 +aI00 +aI00 +asa(dp2420 +g4 +(lp2421 +I00 +aI00 +aI00 +asa(dp2422 +g4 +(lp2423 +I00 +aI00 +aI01 +asa(dp2424 +g4 +(lp2425 +I00 +aI00 +aI00 +asa(dp2426 +g4 +(lp2427 +I00 +aI00 +aI00 +asa(dp2428 +g4 +(lp2429 +I00 +aI00 +aI00 +asa(dp2430 +g4 +(lp2431 +I00 +aI00 +aI00 +asa(dp2432 +g4 +(lp2433 +I00 +aI00 +aI00 +asa(dp2434 +g4 +(lp2435 +I00 +aI01 +aI00 +asa(dp2436 +g4 +(lp2437 +I00 +aI00 +aI00 +asa(dp2438 +g4 +(lp2439 +I00 +aI00 +aI00 +asa(dp2440 +g4 +(lp2441 +I00 +aI00 +aI00 +asa(dp2442 +g4 +(lp2443 +I00 +aI00 +aI00 +asa(dp2444 +g4 +(lp2445 +I00 +aI00 +aI00 +asa(dp2446 +g4 +(lp2447 +I00 +aI00 +aI00 +asa(dp2448 +g4 +(lp2449 +I00 +aI00 +aI00 +asa(dp2450 +g4 +(lp2451 +I00 +aI00 +aI00 +asa(dp2452 +g4 +(lp2453 +I00 +aI00 +aI00 +asa(dp2454 +g4 +(lp2455 +I00 +aI00 +aI00 +asa(dp2456 +g4 +(lp2457 +I00 +aI00 +aI00 +asa(dp2458 +g4 +(lp2459 +I00 +aI00 +aI00 +asa(dp2460 +g4 +(lp2461 +I00 +aI00 +aI00 +asa(dp2462 +g4 +(lp2463 +I00 +aI00 +aI00 +asa(dp2464 +g4 +(lp2465 +I00 +aI00 +aI00 +asa(dp2466 +g4 +(lp2467 +I00 +aI00 +aI00 +asa(dp2468 +g4 +(lp2469 +I00 +aI00 +aI00 +asa(dp2470 +g4 +(lp2471 +I00 +aI00 +aI00 +asa(dp2472 +g4 +(lp2473 +I00 +aI00 +aI00 +asa(dp2474 +g4 +(lp2475 +I00 +aI00 +aI00 +asa(dp2476 +g4 +(lp2477 +I00 +aI00 +aI01 +asa(dp2478 +g4 +(lp2479 +I00 +aI00 +aI00 +asa(dp2480 +g4 +(lp2481 +I00 +aI00 +aI00 +asa(dp2482 +g4 +(lp2483 +I00 +aI00 +aI00 +asa(dp2484 +g4 +(lp2485 +I00 +aI00 +aI00 +asa(dp2486 +g4 +(lp2487 +I00 +aI00 +aI01 +asa(dp2488 +g4 +(lp2489 +I00 +aI00 +aI01 +asa(dp2490 +g4 +(lp2491 +I00 +aI00 +aI00 +asa(dp2492 +g4 +(lp2493 +I00 +aI00 +aI00 +asa(dp2494 +g4 +(lp2495 +I00 +aI00 +aI00 +asa(dp2496 +g4 +(lp2497 +I00 +aI00 +aI01 +asa(dp2498 +g4 +(lp2499 +I00 +aI00 +aI00 +asa(dp2500 +g4 +(lp2501 +I00 +aI00 +aI00 +asa(dp2502 +g4 +(lp2503 +I00 +aI00 +aI00 +asasS'texts' +p2504 +(lp2505 +S'Mortar assault leaves at least 18 dead' +p2506 +aS'Goal delight for Sheva' +p2507 +aS'Nigeria hostage feared dead is freed' +p2508 +aS'Bombers kill shoppers' +p2509 +aS'Vegetables, not fruit, slow brain decline' +p2510 +aS'PM: Havana deal a good experiment' +p2511 +aS'Kate is marrying Doherty' +p2512 +aS'NASA revisiting life on Mars question' +p2513 +aS'Happy birthday, iPod' +p2514 +aS'Alonso would be happy to retire with three titles' +p2515 +aS"Madonna's New Tot 'Happy at Home' in London" +p2516 +aS"Nicole Kidman asks dad to help stop husband's drinking" +p2517 +aS'United Finds Good Connection in Win' +p2518 +aS"'Runway': Making Good Without Making Nice" +p2519 +aS"We were 'arrogant and stupid' over Iraq, says US diplomat" +p2520 +aS'Bad reasons to be good' +p2521 +aS"Madonna's new baby's daddy didn't realize adoption was `for good'" +p2522 +aS"Women in their 60s 'are perfectly good mothers'" +p2523 +aS"We're a pretty kind 'bully'" +p2524 +aS"Moderate drinking reduces men's heart attack risk" +p2525 +aS'Tom Cruise and Katie Holmes set wedding date' +p2526 +aS'Kidnapped AP photographer freed in Gaza' +p2527 +aS'Bush Insists Troops Stay in Iraq, Predicts Midterm Victory' +p2528 +aS'Hurricane Paul Weakens To Tropical Storm' +p2529 +aS'UK announces immigration restrictions' +p2530 +aS'Three found alive from missing Russian ship -report' +p2531 +aS'Poison Pill to Swallow: Hawks Hurting After Loss to Vikes' +p2532 +aS'Injured Marathon Winner Leaves Hospital' +p2533 +aS'Hacker unlocks Apple music download protection' +p2534 +aS'Spanish journalist seized in Gaza' +p2535 +aS'Sudan urges UN to replace its special envoy' +p2536 +aS'Resolution approved for international games' +p2537 +aS'Pair of Satellites Will Document Sun in 3-D' +p2538 +aS'Martian Life Could Have Evaded Detection by Viking Landers' +p2539 +aS'The sweet tune of an anniversary' +p2540 +aS'Did Viking Probes Miss Life on Mars?' +p2541 +aS'Diplomat acknowledges US arrogance in Iraq' +p2542 +aS'More Human Remains Found at Ground Zero' +p2543 +aS'How to Prevent Iraq From Getting Even Worse' +p2544 +aS'Tensions as Hungary marks uprising' +p2545 +aS'Stanford study warns of Internet addiction' +p2546 +aS'No evidence of ice reserves on the moon' +p2547 +aS'A Picture and A Thousand Words' +p2548 +aS'Parachutist dies at bridge-jump festival' +p2549 +aS'US Troops Killed In October In Iraq' +p2550 +aS'Chefs not counting calories, study finds' +p2551 +aS'Deaths linked to flu vaccine' +p2552 +aS'Perfect lives lose their focus' +p2553 +aS'Bread-Heavy Diet Linked to Kidney Cancer' +p2554 +aS'Beating poverty in a small way' +p2555 +aS'Israel insists on Lebanon overflights' +p2556 +aS'Britain to restrict immigrants from new EU members' +p2557 +aS'Confusion Reigns In the Expanding Digital World' +p2558 +aS'Game on! London exhibition celebrates the history of video games' +p2559 +aS'Making peace from victory over poverty' +p2560 +aS'Marine killed in fighting west of Baghdad' +p2561 +aS'Scientists create first cloaking device' +p2562 +aS'Amateur rocket scientists reach for space' +p2563 +aS'Confusion Reigns In the Expanding Digital World' +p2564 +aS'Deaths linked to flu vaccine' +p2565 +aS'Israel admits using phosphorous shells in Lebanon' +p2566 +aS'4th person dies after receiving flu shot' +p2567 +aS'Police and shoppers targeted in growing Iraq violence' +p2568 +aS'Scientists discover miracle in the depths' +p2569 +aS"Doctors Seeing Patients Who Think They're Internet Addicted" +p2570 +aS'China launches two satellites into orbit' +p2571 +aS'Vegetables May Boost Brain Power in Older Adults' +p2572 +aS'Hurricane Paul nears Category 3 status' +p2573 +aS'Russian ship sinks, 18-member crew missing' +p2574 +aS"Iran's president urges higher birth rate" +p2575 +aS'Apple set for massive market gains' +p2576 +aS'Tumor Types May Explain Survival Rates for Cancer' +p2577 +aS'Routine mission turns into hunt for missing comrade' +p2578 +aS'Bad weather slows S.Korean search for Russian ship' +p2579 +aS'Tailors and housewives busy as Muslims celebrate Eid' +p2580 +aS'Active peace brings the promise of development' +p2581 +aS'Abbas condemns Israeli massacre in northern Gaza Strip' +p2582 +aS'Bangladesh ferry sinks, 15 dead' +p2583 +aS'Bucs find a new kick in life' +p2584 +aS'Google to unveil election mashup' +p2585 +aS'Police warn of child exploitation online' +p2586 +aS'Breast Cancer Awareness is Important' +p2587 +aS'Hungary police tackle violent protestors' +p2588 +aS'Three drivers had reason to be proud in Brazil' +p2589 +aS'Celebrities Protest Malibu Gas Facility' +p2590 +aS'Lebo: A life lived on the edge' +p2591 +aS"Presto! He's Batman, then magic man" +p2592 +aS'Heavy use of mobile phones can make men infertile, scientists say' +p2593 +aS'Russian ship sinks in Pacific' +p2594 +aS'China Successfully Launches Two Satellites' +p2595 +aS'Prestige has magic touch' +p2596 +aS'Lies, damned lies, and divorce' +p2597 +aS'Manning inspires Giants to victory in Dallas' +p2598 +aS'Riot warning for France suburbs' +p2599 +aS'Full recovery expected for marathon winner' +p2600 +aS'Sony apologises for global battery recall' +p2601 +aS'Questions on credit card safety' +p2602 +aS'Budapest calm after night of violent protests' +p2603 +aS'Vegetables May Boost Brain Power in Older Adults' +p2604 +aS'Report criticises US press freedoms' +p2605 +aS'French suburb riots could resume' +p2606 +aS'Photographer kidnapping condemned' +p2607 +aS'Photographer kidnapped in Gaza' +p2608 +aS'Baseball: Rogers enjoys his muddied streak' +p2609 +aS'Cultural revolutionary, the iPod is five' +p2610 +aS'Life on Mars? Maybe We Missed It' +p2611 +aS'Three found alive from missing Russian ship -report' +p2612 +aS"Moderate drinking reduces men's heart attack risk" +p2613 +aS'The sweet tune of an anniversary' +p2614 +aS'Inconvenient truths' +p2615 +aS'Dating difficult for Harry Potter' +p2616 +aS'Students lose their rite of passage' +p2617 +aS'Putin vows to tackle illegal immigration' +p2618 +aS"Ottawa must redefine 'terror'" +p2619 +aS'Britain to Limit Workers from Romania, Bulgaria' +p2620 +aS'Top General Optimistic on Iraq' +p2621 +aS'Kim Osorio Wins Sexual Harrassment Suit Against The Source' +p2622 +aS'Silly and substantial' +p2623 +aS'Official laughs for Borat' +p2624 +aS'Speaker Hastert testifies before panel probing sex scandal' +p2625 +aS'On Educating Sexes Separately' +p2626 +aS'Tom Cruise and Katie Holmes set wedding date' +p2627 +aS'Martian Life Could Have Evaded Detection by Viking Landers' +p2628 +aS'Ukraine gas deal marred by fears' +p2629 +aS'Marathon victory comes at heavy cost' +p2630 +aS'College tuition continues climbing' +p2631 +aS'German paper shows soldiers desecrating skull' +p2632 +aS'War is close, Ethiopia tells Somali rebels' +p2633 +aS'Advantage Cardinals with Suppan in Game 4' +p2634 +aS'NASA spacecraft to measure Sun' +p2635 +aS'Sony Hates Europeans, Will Prevent The Importing of PS3' +p2636 +aS'Flu Vaccine Appears Safe for Young Children' +p2637 +aS'Google To Launch Yet Another Search Tool' +p2638 +aS"Tropical Storm Paul's Outer Bands Hit Mexico's Baja California" +p2639 +aS'Israeli Bomblets Plague Lebanon' +p2640 +aS'New Indonesia Calamity, a Mud Bath, Is Man-Made' +p2641 +aS'U.S. Weighs Sanctions Against North Korea' +p2642 +aS'Rice, in Baghdad, Insists That Iraqis Are ' +p2643 +aS'Senator Says U.S. Should Rethink Iraq Strategy' +p2644 +aS'German Chief Forges Accord on Financing Health Care' +p2645 +aS'Turkish Writers Say Efforts to Stifle Speech May Backfire' +p2646 +aS'Kurdish Lawmaker Killed in an Attack in Baghdad' +p2647 +aS'Anti-U.S. Attack Videos Spread on the Internet' +p2648 +aS'Women Face Greatest Threat of Violence at Home, Study Finds' +p2649 +aS'Appeal by Chinese Researcher for Times May Soon Be Heard' +p2650 +aS'Brazil Air Force Cites Faults and Confusion in Fatal Crash' +p2651 +aS'A Mix of Oil and Environmentalism' +p2652 +aS'Immigrants and French Reach Deal in Standoff' +p2653 +aS'Genghis Khan Beer? Mongolia Grimaces' +p2654 +aS'Dead Bachelors in Remote China Still Find Wives' +p2655 +aS'Managua Journal: Hold the Mojito and Margarita, Nicaragua Has el Macu' +p2656 +aS'Paris Journal: Smoking No Longer Tres Chic in France' +p2657 +aS"An Old Letter Casts Doubts on Iran's Goal for Uranium" +p2658 +aS'U.S. Warns North Koreans About Nuclear Test' +p2659 +aS'Global Sludge Ends in Tragedy for Ivory Coast' +p2660 +aS'Equipment on Plane in Brazil Collision May Have Been Faulty' +p2661 +aS'New Indonesia Calamity, a Mud Bath, Is Man-Made' +p2662 +aS'Iraqi Journalists Add Laws to List of Dangers' +p2663 +aS'U.N. Force Is Treading Lightly on Lebanese Soil' +p2664 +aS'Cleric Said to Lose Reins Over Part of Iraqi Militia' +p2665 +aS"Citing Spy Agencies' Study, Democrats Seek Iraq Changes" +p2666 +aS'Opera Canceled Over a Depiction of Muhammad' +p2667 +aS"Military Officials Add to U.S. Criticism of Iraq's Government" +p2668 +aS'Teacher in Hiding After Attack on Islam Stirs Threats' +p2669 +aS'Combative Bush Releases Parts of Terror Study' +p2670 +aS'Growing Unarmed Battalion in Qaeda Army Is Using Internet to Get the Message Out' +p2671 +aS'Iraqi Linked to Sunni Bloc Is Held in Plot, Military Says' +p2672 +aS'Seduced by Snacks? No, Not You' +p2673 +aS'Friends for Life: An Emerging Biology of Emotional Healing' +p2674 +aS"Alzheimer's Drugs Offer No Help, Study Finds" +p2675 +aS'Across Europe, Worries on Islam Spread to Center' +p2676 +aS'Cooking Defines Sephardic Jews at Sukkot' +p2677 +aS'Fitness: Bodies in Motion, Clean and Sober' +p2678 +aS"In God's Name: Religion-Based Tax Breaks: Housing to Paychecks to Books" +p2679 +aS'Yankee Dies in Plane Crash, Official Says' +p2680 +aS'An Elephant Crackup?' +p2681 +aS'With YouTube, Grad Student Hits Jackpot Again' +p2682 +aS'Dow flirts with record highs again' +p2683 +aS'Tropical Storm Isaac forms in Atlantic' +p2684 +aS'New Iraq terror tape calls for abducting foreigners' +p2685 +aS"'Deep regret' for ex-HP exec" +p2686 +aS"'Opportunity' knocks on geologist's dream crater" +p2687 +aS'Squirrel jumps boy in park; rabies suspected' +p2688 +aS'Girl left comatose after dental visit dies' +p2689 +aS'Porn star candidate campaigns on campus' +p2690 +aS'School ends football season after 0-4 start' +p2691 +aS'Charlie Sheen to become highest-paid sitcom star' +p2692 +aS"Jon Stewart mocks benefits of CNN's I" +p2693 +aS'Ashton Kutcher tells secret to Ryan Seacrest' +p2694 +aS'Nails-on-chalkboard study earns Ig' +p2695 +aS"Gunman 'fine' before shooting" +p2696 +aS"Marijuana may stave off Alzheimer's" +p2697 +aS'Kentucky seeks alcohol huffing ban' +p2698 +aS'Toddler died from tainted spinach' +p2699 +aS"Judge dismisses Karr's porn case" +p2700 +aS'10 die in 22-hour Kashmir standoff' +p2701 +aS'Slain Amish girls laid to rest' +p2702 +aS'5,000 flee plant fire' +p2703 +aS'Cher auction fetches double pre-sale estimates' +p2704 +aS"Stars scuffle on 'Grey's Anatomy'" +p2705 +aS'Probe under way in Yankee crash' +p2706 +aS'Amish schoolhouse torn down' +p2707 +aS"Warner will not run in '08" +p2708 +aS'Reid land deal under scrutiny' +p2709 +aS'Flooding washes out road to Valdez, Alaska' +p2710 +aS'Briton admits U.S. bomb plot role' +p2711 +aS'Commentary: Minutemen have a right to be idiotic' +p2712 +aS'Madonna files adoption papers' +p2713 +aS'Gunmen kill 9 at Iraqi TV station' +p2714 +aS'Hastert sorry for scandal but not quitting' +p2715 +aS'Ex-JonBenet suspect: Child porn case dropped ' +p2716 +aS'Waste plant fire forces 5,000 to evacuate ' +p2717 +aS'Toddler died from E. coli tainted spinach ' +p2718 +aS'Disturbing finds in child sex raids ' +p2719 +aS'Magazine lists women who had abortions ' +p2720 +aS"Pot smokers may avoid Alzheimer's, study says " +p2721 +aS"Student starts white men's club on campus " +p2722 +aS'Kentucky wants to ban alcohol inhalers ' +p2723 +aS'Peter Pan flies into chapter two ' +p2724 +aS'Teen repellent inventor wins infamous prize ' +p2725 +aS"Cher's dress, car, bed have new owners" +p2726 +aS'Dow hits new record, eyes 12,000 ' +p2727 +aS'Ex-Virginia gov not running for president ' +p2728 +aS"Yankee pitcher's pilot log found " +p2729 +aS"Dem leader's $1 million land deal under scrutiny " +p2730 +aS'Dad locked up son, watched on TV, police say ' +p2731 +aS'Navarrette: Minutemen have a right to be idiotic ' +p2732 +aS'Pit bulls jump miniature pony, leave her bloody ' +p2733 +aS'Alaska town cut off from rest of state by flood ' +p2734 +aS'Trailblazing trio protects City by the Bay ' +p2735 +aS'Madonna files adoption papers in Malawi' +p2736 +aS"'Dr. McDreamy' choked in 'Grey's' scuffle " +p2737 +aS'$10,000 poetry prize awarded ' +p2738 +aS'Las Vegas honour for tiger pair ' +p2739 +aS'UK characters boosting box office ' +p2740 +aS'Cher items snapped up at auction ' +p2741 +aS"Griffiths scorns Withnail 'play' " +p2742 +aS'Lily Allen wins web music award ' +p2743 +aS'Costner appeals in casino wrangle' +p2744 +aS'Beyonce copyright claim rejected ' +p2745 +aS'Cohn gunman jailed for 36 years ' +p2746 +aS"Melua's deep sea gig sets record " +p2747 +aS'Sri Lanka clashes kill 129 troops ' +p2748 +aS'Gunmen kill 11 in Iraq TV raid ' +p2749 +aS'Italy drops Sicily bridge plans ' +p2750 +aS'Amish killings school demolished ' +p2751 +aS'Pamuk wins Nobel Literature prize' +p2752 +aS'Madonna adoption bid approved ' +p2753 +aS'Man admits UK-US terror bomb plot' +p2754 +aS'Who are you calling fat?' +p2755 +aS'Test to predict breast cancer relapse is approved' +p2756 +aS'Two Hussein allies are hanged, Iraqi official says' +p2757 +aS'Sights and sounds from CES' +p2758 +aS'Schuey sees Ferrari unveil new car' +p2759 +aS'Closings and cancellations top advice on flu outbreak' +p2760 +aS'Trucks swallowed in subway collapse' +p2761 +aS'Sarkozy letter surprises French cartoons hearing' +p2762 +aS'Building a memorial to a son, one child at a time' +p2763 +aS'Lawmaker seeks iPod ban in crosswalks in New York' +p2764 +aS'Diabetic waits months for eyeglasses' +p2765 +aS'Sudan tells United Nations envoy to leave in 72 hours' +p2766 +aS'5000 years on but couple still hugging' +p2767 +aS"Defense to challenge Russert's credibility" +p2768 +aS'Ozzy, a Hero for the hard-rocking masses' +p2769 +aS'CIA leak trial summary' +p2770 +aS'Dance movie takes over No. 1' +p2771 +aS'Asian nations urge Myanmar reform' +p2772 +aS'After Iraq trip, Clinton proposes war limits' +p2773 +aS'7 dead in apartment building fire' +p2774 +aS"Male sweat boosts women's hormone levels" +p2775 +aS"Carphone Warehouse's mixed signals" +p2776 +aS'Democrats plot Bush troop increase censure' +p2777 +aS'Cisco sues Apple over iPhone name' +p2778 +aS'BB star Jackson denies Goody comments' +p2779 +aS'Inter Milan set Serie A win record' +p2780 +aS'US Airways boosts bid for Delta' +p2781 +aS'Press sees hope in Mecca talks' +p2782 +aS'Bears fan loses bet and changes name' +p2783 +aS'Global National\tMajor child porn ring bust' +p2784 +aS"'Human hair' clue in hunt for airliner" +p2785 +aS'Johnny Depp to make movie of spy poisoning' +p2786 +aS'Really?: The claim: the pill can make you put on weight' +p2787 +aS'5 money makeovers' +p2788 +aS'TBS to pay $2M fine for ad campaign bomb scare' +p2789 +aS'"Stomp the Yard" has winning moves in its weekend debut' +p2790 +aS'Discovered boys bring shock, joy' +p2791 +aS'Bernhard set to leave Volkswagen' +p2792 +aS"Pacers' Jackson misses gun hearing" +p2793 +aS'Cases: when the simple solution is the right one' +p2794 +aS'Two Muslim groups sue French newspaper International' +p2795 +aS'Golden Globes on their way' +p2796 +aS"At New OZZFEST, Freedom Ain't Free" +p2797 +aS'Federer handed tough Aussie draw' +p2798 +aS'Protesters end strike as Nepal PM concedes demands' +p2799 +aS'Turner pays for Boston "bombing"' +p2800 +aS'Two detained in body parts mailing' +p2801 +aS'Essay: about that mean streak of yours: psychiatry can do only so much' +p2802 +aS"Hussein's niece pleads for father's life" +p2803 +aS'Sarkozy heads for clash in cartoons row' +p2804 +aS'Global web of suspects in child-rape download' +p2805 +aS'Blake defeats Moya to retain title' +p2806 +aS'Storms kill, knock out power, cancel flights' +p2807 +aS'Aquarium puts ailing beluga whale to sleep' +p2808 +aS'Microsoft, Sony, we have a problem' +p2809 +aS'A police state? The issues' +p2810 +aS'Move to ban iPods from crossing the street' +p2811 +aS"India's Taj Mahal gets facelift" +p2812 +aS"Cheney to Congress: Can't run Iraq war by committee" +p2813 +aS'Ganguly handed India squad call-up' +p2814 +aS'Fortune: Looking beyond the iPhone' +p2815 +aS'Really?: The claim: the back seat of a car is the safest place to sit' +p2816 +aS'Vaccine mandate upsets legislators' +p2817 +aS'News analysis: Iranian boast is put to test' +p2818 +aS'Panel issues bleak report on climate change' +p2819 +aS"Virtual 'American Idol' hits right notes" +p2820 +aS'Iraq car bombings kill 22 People, wound more than 60' +p2821 +aS"'Stomp' steps to No. 1 at box office" +p2822 +aS'Google executive acts as goodwill envoy' +p2823 +aS'Filipino woman kidnapped in Nigeria' +p2824 +aS'Seahawks, Bears vie for shot at NFL title' +p2825 +aS'Brown not buried as estate issues loom' +p2826 +aS"Will Rob Cohen Direct Third 'Mummy'?" +p2827 +aS'EU will urge China to go green' +p2828 +aS'17th-Century Remedy; 21st-Century Potency' +p2829 +aS'Forecasters expect toasty 2007' +p2830 +aS"'Sunshine' Goydos wins Sony open" +p2831 +aS'Teacher charged with sex assault' +p2832 +aS'Merck: Gardasil may fight more strains' +p2833 +aS'Mountain glaciers melting faster, United Nations says' +p2834 +aS'Snow causes airport closures in Britain' +p2835 +aS'Bananaconda inventor is top poet of kids' +p2836 +aS'Shareholders sue Apple' +p2837 +aS'Israelis retaliate after attack by Lebanese Army' +p2838 +aS'Deadly bird flu confirmed in British Turkeys' +p2839 +aS'Too little sleep may mean too fat kids' +p2840 +aS'Bathing mom awakes to find baby dead' +p2841 +aS'Visitors to Eiffel Tower climb to record in 2006' +p2842 +aS'More sleep, healthier slimmer children ' +p2843 +aS'Queen battles Bond for Baftas' +p2844 +aS"Walters on Trump: 'Poor, pathetic man'" +p2845 +aS'Ice storm smacks roads, power' +p2846 +aS'Iran says it will strike US interests if Attacked' +p2847 +aS'Palestinian factions to resume talks' +p2848 +aS"Study: men's sweat triggers high sexual arousal in women" +p2849 +aS"Outcry at N Korea 'nuclear test'" +p2850 +aS'Russia plans major military build-up' +p2851 +aS'Archaeologists find remains of couple locked in a hug' +p2852 +aS'Stenson defends his title at Dubai' +p2853 +aS'Taking the plunge' +p2854 +aS"Updates on world's top stories" +p2855 +aS'Man rides stationary bike for 85 hours' +p2856 +aS'Ice storm coating Midwest' +p2857 +aS'A Mistrial for Lieut. Watada' +p2858 +aS'Iran warns will hit back at US if attacked' +p2859 +aS'ASEAN talks end on energy-security' +p2860 +aS'Iraqi death toll exceeded 34,000 in 2006, United Nations says' +p2861 +aS'Israel intensifies military flights over Lebanon' +p2862 +aS'New gadgets galore at tech show' +p2863 +aS'Another death at Georgia Aquarium' +p2864 +aS'US to urge Nato Afghan spring offensive' +p2865 +aS'UK letter bombs may be from extremist drivers' +p2866 +aS'Asia seeks breakthrough on North Korea' +p2867 +aS'Federer overcomes a ragged start' +p2868 +aS'Rowdy fans ejected from the Open' +p2869 +aS"Terai protesters hail 'historic' victory over government" +p2870 +aS'Anger at release of two held over beheading plot' +p2871 +aS'Bush adamant on troops to Iraq' +p2872 +aS"Bebe Neuwirth gets to 'wiggle again'" +p2873 +aS'Beckham to L.A.: For the game not fame' +p2874 +aS'Sleep more to fight childhood obesity' +p2875 +aS'Abbas rejects temporary state' +p2876 +aS'Investigation of child porn site hits 77 nations' +p2877 +aS'Sleuths close in on Odysseus home' +p2878 +aS'Variety: Johnny Depp to make movie of spy poisoning' +p2879 +aS'Ice storm cripples central U.S.' +p2880 +aS'Park stars as United maintain lead' +p2881 +aS'Prehistoric Romeo and Juliet discovered' +p2882 +aS"India's famous landmark gets facelift" +p2883 +aS"Joseph Wambaugh's new start" +p2884 +aS'Participant in water-drinking contest dies' +p2885 +aS'Apple drops bombshell with iPhone' +p2886 +aS"Bollywood's 'Brangelina' engaged" +p2887 +aS'Shiite fighters arrested in crackdown, Iraq says' +p2888 +aS'Rio De Janeiro journal: drawing lines across the sand, between classes' +p2889 +aS"Models' health guidelines -- will they help?" +p2890 +aS'Stepping back in time at ski resort' +p2891 +aS'Test cricketer jailed over killing' +p2892 +aS"Walnuts 'combat unhealthy fats'" +p2893 +aS"Apple to Vista upgraders: 'Wait'" +p2894 +aS'Injured Sarwan to miss one-dayers' +p2895 +aS'Firms on alert for letter bombs' +p2896 +aS'Studios sign off on movie downloads' +p2897 +aS'Asif returns with four-wicket haul' +p2898 +aS"Bush authorized Iranians' arrest in Iraq, Rice says" +p2899 +aS'Porn ring scandal reaches Australia' +p2900 +aS'Deputy health minister arrested in US-Iraqi raid' +p2901 +aS'Senator Carl Krueger thinks iPods can kill you' +p2902 +aS'Finally, Senate okays anti-terror bill Manila' +p2903 +aS'Somalia declares state of emergency' +p2904 +aS'Matt shines with his Alpine finish' +p2905 +aS'BP CEO Browne to step down in June' +p2906 +aS'An iPhone by any other name? Surely not' +p2907 +aS'Life in Gaza steadily worsens' +p2908 +aS'The energy challenge | Exotic visions: how to cool a planet (maybe)' +p2909 +aS'Easy ways to (really) save $400,000' +p2910 +aS'Shareholders sue Apple' +p2911 +aS'Findings: Can humanity survive? Want to bet on it?' +p2912 +aS'Iran steps up production of weapons-grade uranium' +p2913 +aS'Rig-threat cargo ship towed ashore' +p2914 +aS'Palestinians say clashes hurt their cause' +p2915 +aS'Male sweat can raise hormones' +p2916 +aS'Vital Signs: Hazards: Antidepressant linked to fractures in older people' +p2917 +aS"Peron held over '70s rights abuses" +p2918 +aS'Space life search turns to TV' +p2919 +aS'Super Bowl ads of cartoonish violence, perhaps reflecting toll of war' +p2920 +aS'YouTube told to drop celeb sex video' +p2921 +aS'Beckham, Posh and more athlete-celebrity couples' +p2922 +aS'City sets up ice storm shelters' +p2923 +aS"Libby prosecutors await judge's rulings" +p2924 +aS"Review: 'Alpha Dog' misses the point" +p2925 +aS'Republicans plan to block Iraq debate' +p2926 +aS"Mixed reaction to China's Africa push" +p2927 +aS'Snowed in the Canadian Rockies' +p2928 +aS'Skip the showers: male sweat turns women on, study says' +p2929 +aS"Gently Weeps' lyrics sheet up for sale" +p2930 +aS'Canete wins inaugural Joburg Open' +p2931 +aS'Rights group halts violent Nepal strikes' +p2932 +aS'Real suffer Carlos injury setback' +p2933 +aS'Astronaut may have buckled under stress' +p2934 +aS'Gunmen abduct Filipino woman in Nigeria' +p2935 +aS"NFL team's fan of the year: 'Flag Lady'" +p2936 +aS'No 10 rejects police state claim' +p2937 +aS'Malaysian AirAsia X to fly in July' +p2938 +aS'10 kidnapped at Nigeria oil base' +p2939 +aS'Guy sweat is babe magnet' +p2940 +aS'Township tourism booming in South Africa' +p2941 +aS"'Alpha Dog' misses the point" +p2942 +aS'Iran leader pays Nicaragua a visit' +p2943 +aS"'Grey's,' 'Pirates' lead People's Choice" +p2944 +aS'Terror network' +p2945 +aS"Now it's official: Iraq's a mess" +p2946 +aS'Snow brings travel misery to England' +p2947 +aS"James Brown's 5-year-old son left out of will" +p2948 +aS'Two men killed by London tube train' +p2949 +aS'US millions fail to buy influence in deadly Gaza power play' +p2950 +aS'PLO ministers agreed upon in Mecca' +p2951 +aS"Squadron apologies over 'friendly-fire' death" +p2952 +aS'New Orleans violence sparks tourism fears' +p2953 +aS"Friendly fire pilot 'experienced'" +p2954 +aS'SPACE.com: Black hole triplets spotted' +p2955 +aS'Vaccines: Mandate or choice?' +p2956 +aS'Congolese soldiers riot, loot over pay issue' +p2957 +aS'Commodities lead Europe higher' +p2958 +aS"Ingredient in male sweat raises women's hormone levels" +p2959 +aS'Goetschl ends Austrian win drought' +p2960 +aS'Doomsday Clock ticking away' +p2961 +aS'Troops massing around Somali town' +p2962 +aS'Tariq Ramadan has an identity issue' +p2963 +aS'Peretz orders IDF to respond with force to north border attacks' +p2964 +aS'Trains crash near Thai resort town' +p2965 +aS"Hamas, Fatah return to unity gov't talks in Mecca" +p2966 +aS"Pats' fourth-quarter rally finishes Chargers" +p2967 +aS'7 Die As US Helicopter Crashes in Iraq' +p2968 +aS'Millionaire secret Santa dies' +p2969 +aS'Morrissey may cheer up Eurovision' +p2970 +aS'Christian values guide Dungy and the Colts' +p2971 +aS"Israeli woman's tirade spurs PM outrage" +p2972 +aS'Passing exchange becomes political flashpoint' +p2973 +aS'Police probe 2 church fires half mile apart' +p2974 +aS"Italy to try US soldier for agent's Iraq death" +p2975 +aS'Depp to star in spy poisoning film' +p2976 +aS"'24's' Jack Bauer returns" +p2977 +aS'US Airways boosts bid for Delta' +p2978 +aS'Even before its release, world climate report is criticized as too optimistic' +p2979 +aS'Second hanging also went awry, Iraq tape shows' +p2980 +aS'Howell takes one shot lead in Sony Open' +p2981 +aS"Psych checks reviewed after astronaut's crack-up" +p2982 +aS'Pap Test, a mainstay against cervical cancer, may be fading' +p2983 +aS'Martins leads Newcastle fightback' +p2984 +aS'PS3 pricey but impressive' +p2985 +aS"Pluto's revenge: 'Word of the Year' award" +p2986 +aS'European Space Agency' +p2987 +aS'Hackers strike at key Internet servers' +p2988 +aS'Hussein co-defendants executed' +p2989 +aS'Memo from Frankfurt: Germany relives 1970s terror as 2 seek release from jail' +p2990 +aS'Blissing out in Ojai' +p2991 +aS"Houston, she's got some problems" +p2992 +aS"Amazon.com has 'best ever' sales" +p2993 +aS'Hackers attack root servers' +p2994 +aS'Video games can improve your vision' +p2995 +aS'Internet attacked! (Did anyone notice?)' +p2996 +aS'In Washington, contractors take on biggest role ever' +p2997 +aS'Floods force Malaysia evacuations' +p2998 +aS'On MySpace, girls seek friends, boys flirt' +p2999 +aS'Tests of drug to block H.I.V. infection are halted over safety' +p3000 +aS'Zoo polar bear to have root canal' +p3001 +aS'Europe take big Royal Trophy lead' +p3002 +aS'Israel to install cameras to show live Mughrabi footage' +p3003 +aS"'We lit our last candle yesterday'" +p3004 +aS'Google buys YouTube for $1.65bn' +p3005 +aS'PSP number one Sony platform in Japan' +p3006 +aS'England include Giles in WC squad' +p3007 +aS"Beckham 'won't play again for Real'" +p3008 +aS'Eight years for Damilola killers' +p3009 +aS'PC World editor slain at California home' +p3010 +aS"Hands on 'Doomsday Clock' move forward" +p3011 +aS"Zach Braff says he has 'mild depression'" +p3012 +aS'Investigation of child porn site hits 77 nations USA Today' +p3013 +aS'Science panel calls global warming unequivocal' +p3014 +aS'News Baby pandas! Baby pandas! Baby pandas!' +p3015 +aS'Get ready for the earnings' +p3016 +aS'Germany agonizes over a brain drain' +p3017 +aS'Iran and Nicaraguan leaders meet' +p3018 +aS'Secret hotels in Irish countryside' +p3019 +aS'Fine wines in British Columbia' +p3020 +aS'Philippine president welcomes Senate approval of anti-terror bill ' +p3021 +aS'Small jet crashes on takeoff, killing 2' +p3022 +aS'Bigger, more aggressive rats infesting UK' +p3023 +aS'Travel+Leisure: Next island hot spot: St. Lucia' +p3024 +aS'Real Mallorca rock leaders Sevilla' +p3025 +aS"Iran's boast on uranium enrichment is put to test" +p3026 +aS'Personal health: for teenagers, the car is the danger zone' +p3027 +aS'Bird watchers flock to see rare owl' +p3028 +aS'Eye on cosmos is lost to short circuit on hubble' +p3029 +aS'Too young for this: facing cancer under 40' +p3030 +aS'Unilever group names new chairman' +p3031 +aS'Minister slams airlines on carbon' +p3032 +aS'Rare optimism as North Korea talks reach crossroads' +p3033 +aS'Man beheaded in southern Thailand' +p3034 +aS"China's 'nightmare scenario'" +p3035 +aS'Annual diving contest in South Korea proves a chilly challenge' +p3036 +aS"Blair says he regrets delays in British soldier's inquest" +p3037 +aS'Iraqi forces detain official suspected in Shia conspiracy' +p3038 +aS'Wellcome awards anti-fat research' +p3039 +aS'Fingers crossed for North Korea' +p3040 +aS'No intention of war with Iran, US says' +p3041 +aS'What Newsom faces in aftermath of scandal' +p3042 +aS"Maggie Gyllenhaal's Globes babysitter: Mom" +p3043 +aS'As inflation soars, Zimbabwe economy plunges' +p3044 +aS'Pledge: I was abused in frat hazing' +p3045 +aS'Experts: Fear likely shackled boy' +p3046 +aS"What's behind the chopper crashes in Iraq" +p3047 +aS'Freed Muslim terror suspect says Britain is "police state"' +p3048 +aS'Blair apologises over friendly fire inquest' +p3049 +aS"Depp 'to make Litvinenko movie'" +p3050 +aS'Why gas follows oil up but not down' +p3051 +aS"'Cravings' still there, sez Tara" +p3052 +aS'Bill would strip convicted legislators of pensions' +p3053 +aS'Bears watch as lead slips away' +p3054 +aS'In clue to addiction, brain injury halts smoking' +p3055 +aS'In rigorous test, talk therapy works for panic disorder' +p3056 +aS"Rice: U.S. won't pull plug on Iraq" +p3057 +aS'On road to Kosovo independence, a warning: go slow' +p3058 +aS'Mistrial for officer who refused to go to Iraq' +p3059 +aS'Rebels to join Nepal parliament' +p3060 +aS'EMI warns on profits, boss goes' +p3061 +aS'Subway collapse caught on camera' +p3062 +aS"Stinky but true: men's sweat is made for love" +p3063 +aS'POLITICS-US: reprieve for officer who denounced "Immoral War"' +p3064 +aS"Hunters stalk world's tallest trees" +p3065 +aS'Fuel spill may lead to missing jet' +p3066 +aS'Sri Lanka floods displace 60,000' +p3067 +aS'Justin Timberlake, Cameron Diaz announce split' +p3068 +aS'Iran to hit US interests if attacked' +p3069 +aS'Israel says hopes to keep Lebanon border calm' +p3070 +aS'Cisco sues Apple over iPhone name' +p3071 +aS'Two Palestinians killed near fence' +p3072 +aS'EarthLink CEO dies at age 49' +p3073 +aS'A star dies, a family feud is born' +p3074 +aS'Carter was a disaster, said Ford' +p3075 +aS"Super Bowl MVP Manning insists he's one of the guys" +p3076 +aS'Personal health: the importance of knowing what the doctor is talking about' +p3077 +aS"Israel's Peretz urges halt to contentious Jerusalem construction" +p3078 +aS'Peter Jackson will never work for me again' +p3079 +aS'U.S. keeps Iran options open' +p3080 +aS'European shares hit fresh highs' +p3081 +aS"For women, nothing's like the smell of men's sweat" +p3082 +aS'Looking beyond the iPhone' +p3083 +aS'Freed kidnap suspect: my terror at police raid' +p3084 +aS"Far away, Super Bowl's losers will be champs" +p3085 +aS'Woman dies after water binge' +p3086 +aS'Mancuso sparks U.S. celebrations' +p3087 +aS'ASEAN urges North Korea resolution' +p3088 +aS'Late penalty costs Roma the points' +p3089 +aS'Mistrial declared in teacher-student rape case' +p3090 +aS"'Bookworm Adventures' wordsmith's joy" +p3091 +aS"Kylie's love split" +p3092 +aS'iPod good for video games' +p3093 +aS"Review: virtual 'American Idol' hits right notes" +p3094 +aS'Leo battles himself' +p3095 +aS"Attorneys point fingers in fight between Ryan O'Neal and son" +p3096 +aS'John Grisham set for court drama' +p3097 +aS'Bill Gates and Craig Mundie: vista is Secure, employees are not' +p3098 +aS'Iraqis fault delayed U.S. plan in attack' +p3099 +aS'Boy Scouts blamed for starting wildfire' +p3100 +aS'China urges UN action on N Korea' +p3101 +aS'Scorpion on a plane, a pantful of pain' +p3102 +aS"Male sweat boosts women's hormone levels" +p3103 +aS'Mbeki on the big visit from the Chinese' +p3104 +aS'French right nominates Sarkozy' +p3105 +aS'Israeli, Lebanese clash on border' +p3106 +aS'North Korea claims nuclear test' +p3107 +aS'Talks begin on Somalia peacekeepers' +p3108 +aS'Action games improve eyesight' +p3109 +aS'A small part of the brain, and its profound effects' +p3110 +aS'IDF shells Lebanese Army positions across northern border' +p3111 +aS'Thailand: missing 25 years after taking wrong bus' +p3112 +aS'Ballerina sparks anti-fascist row' +p3113 +aS'Internet boom in China is built on virtual fun' +p3114 +aS'Review: PS3 pricey but impressive' +p3115 +aS'Machinery orders drive Asia upward' +p3116 +aS"'Lost's' Fox: 'I'm a liar and a cheat'" +p3117 +aS'Russia to strengthen its military muscle' +p3118 +aS'At Libby trial, Russert of NBC gives and gets' +p3119 +aS'North Korea ready to discuss first steps to nuclear resolution' +p3120 +aS'Victim: Gunman bought drink after shooting' +p3121 +aS'Ferrer victorious in Spanish duel' +p3122 +aS'UK workers on alert for letter bombs' +p3123 +aS'Did NASA accidentally kill life on Mars?' +p3124 +aS'New vaccine for cervical cancer could prove useful in men, too' +p3125 +aS'Search on for victims of subway collapse' +p3126 +aS'Human error caused Helios crash' +p3127 +aS'US to prod NATO allies for more troops to defeat Taliban' +p3128 +aS'Microsoft supports OpenID authentication standard' +p3129 +aS'No buyer in sight for Napster' +p3130 +aS'Briefly: preloaded iPods, Wal-Mart movies, Apple stores' +p3131 +aS'China says rich countries should take lead on global warming' +p3132 +aS'North Korea may begin to dismantle nukes' +p3133 +aS'Tracking down hi-tech crime' +p3134 +aS'Barack Obama formally announces bid for president' +p3135 +aS'Kidnappers seize two in Nigeria' +p3136 +aS'Indonesia may sell, not give, bird flu virus to scientists' +p3137 +aS'Attack video saddens "friendly fire" widow' +p3138 +aS'Europe retain trophy with big win' +p3139 +aS'Cutting edge accessories for digital music players' +p3140 +aS'Ice storm descends on central U.S.' +p3141 +aS'Snow brings travel misery to England' +p3142 +aS'Indonesia flood forces 340,000 from homes' +p3143 +aS'Iraqi health minister seized in raid ' +p3144 +aS'Ice storm brings chaos in U.S.' +p3145 +aS'Stinky flower mystery solved' +p3146 +aS'Congressman rebukes U.S. allies for lack of support in Afghanistan ' +p3147 +aS'Roddick overcomes Federer in final' +p3148 +aS'Prehistoric Romeo and Juliet discovered' +p3149 +aS'Donald and Goydos share Sony lead' +p3150 +aS'U.S. and Iraqis are wrangling over war plans' +p3151 +aS'Sea search for missing Microsoft scientist' +p3152 +aS'Iran to Hit US Interests if Attacked' +p3153 +aS'Blair: Terror battle will be long' +p3154 +aS'Bear cub returned to the wilderness' +p3155 +aS'Carrefour sales growth falls short' +p3156 +aS'Allied with democrats, Lieberman easily aligns with Republicans' +p3157 +aS'In the Rockies, pines die and bears feel it' +p3158 +aS'Iran to strike US interests if attacked' +p3159 +aS'Nipple covers, other star secrets' +p3160 +aS'Apple: no iTunes for you if you have Vista!' +p3161 +aS'Smokestacks in a white wilderness divide Iceland' +p3162 +aS"That'll cost ya" +p3163 +aS'Botched hangings in Iraq speed sectarianism' +p3164 +aS'Male sweat raises female hormones' +p3165 +aS'7 GOP senators to force debate on troops in Iraq' +p3166 +aS'Bangladesh ends curfew amid unrest' +p3167 +aS"Italy's dispute with US over Iraq shooting" +p3168 +aS'Here come the Globes!' +p3169 +aS'Snow causes transport chaos in Britain' +p3170 +aS'Snow causes airport closures in Britain' +p3171 +aS'Second opinion: girl or boy? as fertility technology advances, so does an ethical debate' +p3172 +aS'Heavy snow causes travel chaos and shuts schools' +p3173 +aS"Barbaro's legacy: saving other horses" +p3174 +aS"Luxury digs in South Carolina's Lowcountry" +p3175 +aS'Dozens killed in Baghdad bombing' +p3176 +aS'Ice storms kill 21 across nation' +p3177 +aS'De Villiers takes over Dakar lead' +p3178 +aS"Vietnam becomes WTO's 150th member" +p3179 +aS'South African trio share advantage' +p3180 +aS'Observatory: poison begets poison' +p3181 +aS'Action intensity boosts vision' +p3182 +aS"Why the smell of a man's armpit is a turn-on" +p3183 +aS'Nokia 5300 Xpress Music' +p3184 +aS'Dell to cut bonuses, trim management' +p3185 +aS'Second drop in cancer deaths could point to a trend, researchers say' +p3186 +aS'TV game shows go interactive' +p3187 +aS'Boy missing since 2002 found alive' +p3188 +aS'US, North Korea signed nuclear memo' +p3189 +aS'Russia honors Sputnik designer' +p3190 +aS"In Kenya's capital, a sense that danger is ever stronger" +p3191 +aS'Bill, thanks for the RSA memories... and laughs' +p3192 +aS"Friendly fire pilot 'experienced'" +p3193 +aS'MySpace welcomes French friends' +p3194 +aS'Airlines: UK airport runway unsafe' +p3195 +aS'The amounts you have to pay for a bomb scare' +p3196 +aS'In Egypt, Rice speaks softly' +p3197 +aS"Weekly Nielsen Yvonne De Carlo, 'Munsters' star, dead" +p3198 +aS'Senate votes to revoke pensions' +p3199 +aS'EarthLink CEO dies at age 49' +p3200 +aS'Software giant SAP misses target' +p3201 +aS'Vital signs: mental abilities: folic acid may improve thinking skills' +p3202 +aS'De Villiers stretches overall lead' +p3203 +aS'Families celebrate return of sons' +p3204 +aS'China detains 2 after body parts found in mail' +p3205 +aS'North Korea ready to discuss nuke disarmament' +p3206 +aS"For women, nothing's like the smell of men's sweat" +p3207 +aS'Nadal wants Australian Open crown' +p3208 +aS'Beijing journal: Olympic construction unearths ancient treasure trove' +p3209 +aS'Chinese president arrives in Mozambique, African tour nearly over' +p3210 +aS"Reclusive 'Mockingbird' author attends show" +p3211 +aS'Asia near pact on energy, security' +p3212 +aS'Philippine anti-terror law delayed until June' +p3213 +aS'Ex-suspect slams anti-terror laws' +p3214 +aS"Study detects a gene linked to Alzheimer's" +p3215 +aS'Panda cub makes her debut' +p3216 +aS'Harris haul puts South Africa on top' +p3217 +aS'Weight-loss drug to be sold over the counter' +p3218 +aS'Beckham outlines reasons for move' +p3219 +aS'Study finds gritty air raises heart disease risk in older women' +p3220 +aS'Venezuela, Iran fight U.S. dominance' +p3221 +aS"'Housewives' star Marcia Cross on bed rest" +p3222 +aS'Blog: Here come the Globes!' +p3223 +aS'Greek police hunt embassy attackers' +p3224 +aS'Apple warns iTunes users to wait on Vista' +p3225 +aS'Tsunami fears ease after quake' +p3226 +aS'China considers Eurobond reserves' +p3227 +aS'Underarm bowls them over' +p3228 +aS'At least 130 die as blast levels Baghdad market' +p3229 +aS'New McCain team made attack ads he once faulted' +p3230 +aS'Deaths as bird flu flares in Asia' +p3231 +aS'Hamas, Fatah leaders pledge to meet until they reach agreement' +p3232 +aS"Officers had 'rapport' with alleged abductor" +p3233 +aS'No e-Book for Harry Potter VII' +p3234 +aS'Review: Nokia 5300 Xpress Music' +p3235 +aS"'Can't do this anymore'? Not Jack" +p3236 +aS'Black hole triplets spotted' +p3237 +aS'Israel weighs old city project webcast' +p3238 +aS'Indonesian bird flu deaths hit 61' +p3239 +aS'Somali refugees cut off from aid' +p3240 +aS'Microsoft downplays Vista speech-recognition hack' +p3241 +aS'Next island hot spot: St. Lucia' +p3242 +aS'Italy to hold no-show trial of Bronx GI in Iraq slay' +p3243 +aS"Rescued boys parents hail 'miracle'" +p3244 +aS'Canadians tracked in child porn ring' +p3245 +aS'Teen hacks Venezuelan government Web sites' +p3246 +aS'Russia plans new ICBMs, nuclear subs' +p3247 +aS'Gere cheers sex workers in AIDS fight' +p3248 +aS'Study: Male sweat causes female hormones to rise' +p3249 +aS'Collision on icy road kills 7' +p3250 +aS'Surprise: China cuts price of gas' +p3251 +aS'What the Godfather of Soul meant to me' +p3252 +aS'New Mars orbiter spots Pathfinder landing site' +p3253 +aS'Mass Venezuela opposition rally' +p3254 +aS"Glamour -- and 'Borat' -- at Golden Globes" +p3255 +aS'Terror officials see Al Qaeda chiefs regaining power' +p3256 +aS'Ivrea journal: In Italian town, a civics lesson from pelting neighbors' +p3257 +aS'Iraqi sunni lands show new oil and gas promise' +p3258 +aS'Princess and heir of Franz Ferdinand fights to repeal a law and gain a castle' +p3259 +aS'A film star in Kampala, conjuring aminos ghost' +p3260 +aS'Militants attack U.S. base in Iraq' +p3261 +aS'North Africa feared as staging ground for terror' +p3262 +aS'Iran says Sunnis, using Pakistan as base, planned fatal bombing' +p3263 +aS'Anglicans rebuke U.S. branch on same-sex unions' +p3264 +aS'Homemade bombs kill 65 on Indian train' +p3265 +aS'Al Qaeda chiefs are seen to regain power' +p3266 +aS'Chvez threatens to jail violators of price controls' +p3267 +aS"Bush declares Iran's arms role in Iraq is certain" +p3268 +aS'Accord on North Korea is announced' +p3269 +aS'U.S. says powerful Iraqi cleric is living in Iran' +p3270 +aS'Baghdad plan is a success, Iraq prime minister tells Bush' +p3271 +aS'Iraqi sunni lands show new oil and gas promise' +p3272 +aS'Dispute over Iraqi cleric, said to have gone to Iran' +p3273 +aS'Planning seen in Iraqi attacks on U.S. copters' +p3274 +aS'In the world of life-saving drugs, a growing epidemic of deadly fakes' +p3275 +aS'Basics: a mammal in winter with a furnace of her own' +p3276 +aS'Books on science: The problems in modeling nature, with its unruly natural tendencies' +p3277 +aS"Believing scripture but playing by science's rules" +p3278 +aS'A familiar and prescient voice, brought to life' +p3279 +aS'Findings : A cool $25 million for a climate backup plan' +p3280 +aS"Call it serendipity: a missing piece of Washington's war tent is found" +p3281 +aS"Free Will: Now you have it, now you don't" +p3282 +aS"Archaeologists find signs of early chimps' tool use" +p3283 +aS'Wizardry at Harvard: physicists move light' +p3284 +aS'The summit - a slap in the face of the Palestinians' +p3285 +aS'Moscow says Palestine-Israeli contacts key to Mideast peace' +p3286 +aS'Mideast summit edns with little progress' +p3287 +aS"India decries 'an act of sabotage'" +p3288 +aS'Pakistan-India peace talks planned despite bombings' +p3289 +aS'Czechs, Poles get missile warning' +p3290 +aS'Russia warns US against missile bases in East Europe' +p3291 +aS'Cheney starts visit to Japan, Australia' +p3292 +aS'China: Cheney shores up the trilateral alliance' +p3293 +aS'Iraq insurgents attack US base' +p3294 +aS'US soldiers die in day of violence' +p3295 +aS'Iraqi suicide attack kills two US troops as militants fight purge' +p3296 +aS'Iran reneges on nuclear payments to Russia' +p3297 +aS'Top Colombia official resigns' +p3298 +aS"Colombia FM resigns after relatives' arrests for militia links" +p3299 +aS'Foreign minister of Colombia quits in scandal' +p3300 +aS'New Zealand unlikely to allow crippled Japanese whaler' +p3301 +aS'Damaged Japanese whaling ship may resume hunting off Antarctica' +p3302 +aS"Japanese whaling ship won't accept help" +p3303 +aS'Iran top N-envoy heads for Vienna for nuke talks' +p3304 +aS'Victims of Air India still wait for justice' +p3305 +aS'Kanishka bombing case: Inquiry judge threatens to quit' +p3306 +aS'Judge threatens to shut down Air-India inquiry' +p3307 +aS'Royal rescues presidential hopes with commanding performance' +p3308 +aS'Royal seeks to revive French bid' +p3309 +aS'Sarkozy comfort zone offers a royal opportunity' +p3310 +aS'Hicks first in line for trial, Bush says' +p3311 +aS'Australia tells Bush to speed up Guantanamo trial' +p3312 +aS'Howard presses Bush on terror suspect' +p3313 +aS'France ends toxic alert at Canadian embassy in Paris' +p3314 +aS'Paris police investigate package at Canadian embassy' +p3315 +aS'False alarm at Canadian embassy in Paris' +p3316 +aS'Afghan forces retake town that was overrun by Taliban' +p3317 +aS'Taliban seize rural district in southwest as police flee' +p3318 +aS'Afghan poppy war alienates farmers' +p3319 +aS'Will North Korea honor pledge this time?' +p3320 +aS'Kim Jong-il bans Japanese cars in North Korea' +p3321 +aS'Iran vs. North Korea: not all enemies are equal' +p3322 +aS'Catholic archbishop outlines Anglican merger hopes' +p3323 +aS'Anglican and Catholic churches could merge' +p3324 +aS'US helicopter crash kills 8 troops in Afghanistan' +p3325 +aS'Eight US soldiers killed in Zabul helicopter crash' +p3326 +aS'Arroyo lauds passage of anti-terror bill' +p3327 +aS'House passes anti-terrorism measure Manila' +p3328 +aS"Livingstone's transport empire may extend" +p3329 +aS'London is pace-setter on congestion toll, says mayor' +p3330 +aS"Protest greets congestion charge's westward push" +p3331 +aS'Thailand attacks kill three, injure 70' +p3332 +aS'Thai Govt moves to smooth over relations with south' +p3333 +aS"Bombings say Muslim rebels won't negotiate" +p3334 +aS'Roots of autism more complex than thought' +p3335 +aS'Largest ever autism study identifies two genetic culprits' +p3336 +aS'Canadian breakthrough offers hope on autism' +p3337 +aS'Beware of peanut butter pathogens' +p3338 +aS'Experts offer advice on salmonella' +p3339 +aS'Experts issue new heart disease guidelines for women' +p3340 +aS'For women, aspirin a day could keep stroke away' +p3341 +aS'High cholesterol raises stroke risk healthy women' +p3342 +aS'Cooked chicken breasts join tainted-food recalls' +p3343 +aS'Ready to eat chicken breasts recalled due to suspected listeria' +p3344 +aS'Fully-cooked chicken strips recalled ' +p3345 +aS'Committee debates cancer vaccine plan' +p3346 +aS'Stop cancer with a shot' +p3347 +aS'1 mln birds to be vaccinated from bird flu near Moscow' +p3348 +aS'Thousands tested after Russian H5N1 outbreak' +p3349 +aS'Russian bird flu outbreak is deadly "Asian strain"' +p3350 +aS'Bernard Matthews to lay off up to 500 workers' +p3351 +aS'Matthews lays off 130 turkey workers' +p3352 +aS'Reopening bird flu-hitfactory ignores risks - poultryman' +p3353 +aS'Goodbye to girlhood' +p3354 +aS'Media cited for showing girls as sex objects' +p3355 +aS"Sexualisation 'harms' young girls" +p3356 +aS'A shot in the arm' +p3357 +aS'Thousands line up to get late flu shots' +p3358 +aS'King county offering some free flu vaccines' +p3359 +aS'Bush vows cooperation on health care' +p3360 +aS"Health returns as hot issue in '08 race" +p3361 +aS'Small-business owners find Bush health plan appealing' +p3362 +aS'Pediatricians say more cord blood is needed now' +p3363 +aS'Whether to save cord blood can be puzzle for parents' +p3364 +aS'Retinal implant helping blind people see again' +p3365 +aS'Indonesia "will not share" flu samples' +p3366 +aS'Health Canada issues advice on canned tuna' +p3367 +aS'Cholesterol link in diabetes study' +p3368 +aS'Pig cells hope for diabetes cure' +p3369 +aS'Sick hearts switch on a fetal gene' +p3370 +aS'Foetal mechanism helps heart failure' +p3371 +aS'Planned cesareans not risk-free, group warns' +p3372 +aS"Scientists tout cocoa's health benefits" +p3373 +aS'Feeding your brain: new benefits found in chocolate' +p3374 +aS'Some cocoa may improve brain blood flow' +p3375 +aS'Lawyer for deceased Nazi-era collaborator Papon vows to bury him ' +p3376 +aS'Cocoa could be antidote to age-related diseases, says new study' +p3377 +aS'China denies reports of North Korean apology' +p3378 +aS'Hungarian opposition calls for vote after violence escalates' +p3379 +aS"AU regrets Sudan's expulsion of UN envoy " +p3380 +aS'Bush officials: no big move in Iraq plan ' +p3381 +aS'Opponent is put on the spot over remarks about Clinton' +p3382 +aS'House ethics panel talks to Hastert aide' +p3383 +aS'BellSouth says profit rises 30% on cingular earnings' +p3384 +aS'Enron boss gets 24-year sentence' +p3385 +aS'Sony apologizes for battery recall' +p3386 +aS'Google unveils do-it-yourself search engine' +p3387 +aS'Firefox 2.0 hits the Web' +p3388 +aS'Oracle World opens with Dell unveiling AMD-powered computers' +p3389 +aS"Seahawks' QB Hasselbeck out 2-4 weeks" +p3390 +aS'Marathon winner released from hospital ' +p3391 +aS'Punter charged with stabbing asks to live outside state' +p3392 +aS'Allmendinger joining Toyota team in NASCAR ' +p3393 +aS'Trying to assess the damage in Cleveland ' +p3394 +aS"Bryant's boot may have salvaged Bucs' season" +p3395 +aS'This week in auto racing October 27 - October 29' +p3396 +aS'Merriman violation stuns ex-teammate' +p3397 +aS'Bruce revells in upset' +p3398 +aS"Steelers' Roethlisberger has concussion" +p3399 +aS'Arthurs upsets Robredo in first round at the St. Petersburg Open' +p3400 +aS'Mbeki: 2010 World Cup Planning on Track' +p3401 +aS'Clinical Everton show Moyes means business' +p3402 +aS'MS Adds Office 2007 to Vista Coupon Program' +p3403 +aS'One search does not fit all' +p3404 +aS"Apple's dark secret? The 39% claim" +p3405 +aS"Bad weather cancels men's downhill" +p3406 +aS'Cool millions for YouTube founders' +p3407 +aS'London market a shopping, dining haven' +p3408 +aS"'Jackass' star marries childhood friend The secrets people reveal" +p3409 +aS'Audio Slide Show: A love story lasting 61 years' +p3410 +aS'Microsoft to release next generation phone' +p3411 +aS"Body Shop's Roddick has Hepatitis C" +p3412 +aS'Teen allegedly armed by mom turns self in' +p3413 +aS'Oxfam: action needed for Chad' +p3414 +aS'Violence continues at disputed holy site' +p3415 +aS'Storm leaves behind major travel troubles' +p3416 +aS'3 U.S. troops killed hunting weapons cache' +p3417 +aS"China's 'Friends' highlights Web freedoms" +p3418 +aS"NATO: Afghanistan peace 'by 2009'" +p3419 +aS"Alaska's northern lights captivate Japanese" +p3420 +aS"Smith can't be buried until hearing" +p3421 +aS'Spacewalker sets new U.S. record' +p3422 +aS'Fortune: India the Superpower? Think again' +p3423 +aS"Kerry blasts 'escalation of misguided war'" +p3424 +aS'Anna Nicole claimant: A prince of a guy?' +p3425 +aS"'Ronnie' and Eto'o hug and make up" +p3426 +aS'Best of the Chicago Auto Show' +p3427 +aS"'Grey's,' 'Betty,' 'Scrubs' get boost" +p3428 +aS'Massive mud traps dozens of families' +p3429 +aS'Edwards blogger quits, becomes journalistic martyr' +p3430 +aS'Town packs gym to mourn 10 killed in fire' +p3431 +aS'Spain ahead although Nadal is out' +p3432 +aS'ECB holds rates at 3.5 percent' +p3433 +aS'Iran rejects US claims of supplying weapons in Iraq' +p3434 +aS'Jakarta begins disinfection' +p3435 +aS"Rowling 'heartbroken,' 'euphoric' at 'Potter's' end" +p3436 +aS'Apple revs up Mac attacks on Vista' +p3437 +aS'Fear hinders black marrow donation' +p3438 +aS'Texan allegedly joined Somalia rebel plot' +p3439 +aS'U.S. to allow 7,000 Iraqi refugees' +p3440 +aS"Japan: Whaling activists 'terrorists'" +p3441 +aS"'Hannibal' bites the big one" +p3442 +aS'Women protest Pakistan demolition' +p3443 +aS'Wii news for gamers' +p3444 +aS'Democrats look beyond symbolic vote on Iraq' +p3445 +aS'Portugal to vote on abortion laws' +p3446 +aS'Frustration rises as North Korea nuclear talks stall' +p3447 +aS'Horse teeth give details of ancient big chill' +p3448 +aS'Scam lures victims with free puppy offer' +p3449 +aS'Two Koreas to resume talks' +p3450 +aS'Mickelson driving force at masters' +p3451 +aS'England opt for Bopara over Loye' +p3452 +aS"Create own 'Thrillville' for a wild ride" +p3453 +aS"Edwards' campaign blogger quits amid Catholic controversy" +p3454 +aS"Judge: Preserve Anna Nicole's body" +p3455 +aS'Dolphins, sea lions may report for duty soon' +p3456 +aS'Nasdaq-LSE battle nears deadline' +p3457 +aS'A personal plea for HPV vaccine plan' +p3458 +aS'U.S. opens door for Iraqi refugees' +p3459 +aS'Swiss plane crashes at Moscow airport' +p3460 +aS'Study: napping might help heart' +p3461 +aS'MySpace sales surging' +p3462 +aS'Telecoms giant slashes 12,500 jobs' +p3463 +aS'Air France KLM profit rises' +p3464 +aS'Uganda parliament votes to send troops to Somalia' +p3465 +aS'King and queen reign at British film awards' +p3466 +aS"Murphys rule box office with 'Norbit'" +p3467 +aS'Thousands rally in Lebanon' +p3468 +aS"Yahoo's mission quest" +p3469 +aS'Area should get 3-5 inches of snow today' +p3470 +aS'Miss Brazil wins lawsuit competition' +p3471 +aS'Snow wreaks havoc in East, Midwest' +p3472 +aS'The secrets people reveal' +p3473 +aS'Research supports medicinal marijuana' +p3474 +aS'All African amputee football games kick off' +p3475 +aS'Group: Video shows chopper go down' +p3476 +aS'Sale of Chrysler possible' +p3477 +aS'Russia condemns terrorist acts on buses outside Beirut' +p3478 +aS"Technology may save India's river dolphins" +p3479 +aS'Airbus A380 superjumbo takes off' +p3480 +aS'Naps are great for chaps' +p3481 +aS'Female astronaut sets record' +p3482 +aS'Corn stoves popping up in U.S. homes' +p3483 +aS'Iraq closes borders with Syria and Iran' +p3484 +aS"The troubling ending of 'The Departed'" +p3485 +aS'Vietnamese bank plans IPO listing' +p3486 +aS"Toyota's Scion parks in Second Life" +p3487 +aS'Obama will run in 2008' +p3488 +aS"'Cagney and Lacey' finally coming to DVD" +p3489 +aS'Merkel: Stop Iran' +p3490 +aS'Salt Lake City mall shooter was teenager' +p3491 +aS'Female astronaut sets record' +p3492 +aS'Oil holds at $58' +p3493 +aS'Obama announces presidential bid' +p3494 +aS'Tell your boss: Naps are good for you' +p3495 +aS"Serbia rejects United Nation's Kosovo plan" +p3496 +aS'Amish discuss shootings' +p3497 +aS'Jail me, I ate Ivory Coast chocolate' +p3498 +aS'Can North Korea be trusted?' +p3499 +aS"Tourism lags in Bush's hometown" +p3500 +aS"Astronaut's arrest tests NASA's mettle" +p3501 +aS'Man gets second chance at space ride' +p3502 +aS'Go ahead, take a nap, science says' +p3503 +aS"Weekly Nielsen will 'Lost' find its way back?" +p3504 +aS'Brith Airways baggage charges cause confusion' +p3505 +aS'Indonesian with bird flu dies' +p3506 +aS'St. Louis poised for entertainment upswing' +p3507 +aS'New York City may ban iPods while crossing street' +p3508 +aS'Boy allegedly told to kill by mom gives up' +p3509 +aS'Gray wolves off endangered list' +p3510 +aS"Vista's hyped security will be tested" +p3511 +aS'UK police slammed over terror raid' +p3512 +aS'Mogadishu residents flee blasts' +p3513 +aS'Bomb kills 18 on military bus in Iran' +p3514 +aS"'WarioWare,' Wii make perfect fit" +p3515 +aS"U.S. at odds with cleric's aide" +p3516 +aS'Desperate Iraqi mother relies on militia for help' +p3517 +aS'Full details of the EU report on Iran' +p3518 +aS'Singer on Cowell: Glad he was mean' +p3519 +aS'Jones faces Europe meetings snub' +p3520 +aS'Beckham goal helps Real snatch win' +p3521 +aS'Guinea: Plan offices close as country declares emergency' +p3522 +aS"Japan's economy grows" +p3523 +aS'United Nations peacekeepers raid Haitian slum' +p3524 +aS'Work starts on Arctic seed vault' +p3525 +aS'Social networking goes mobile' +p3526 +aS'Beauticians cut, curl, offer stroke-prevention info' +p3527 +aS'Siesta cuts risk of heart disease death, study finds' +p3528 +aS'Thomas Cook to merge with MyTravel' +p3529 +aS'Nap your way to a successful career' +p3530 +aS'Village buried by 100 inches of snow' +p3531 +aS'Oprah announces new book club pick' +p3532 +aS'The science of love ... and lust' +p3533 +aS'Northeaster cancels flights, shuts schools' +p3534 +aS'Napping may be good for your heart' +p3535 +aS"Ryan O'Neal injured son's girlfriend" +p3536 +aS"Chrysler's Valentine's Day massacre" +p3537 +aS'Madrid bombings trial begins' +p3538 +aS'Fight starts over HPV vaccine' +p3539 +aS'Autos drive European gains' +p3540 +aS"James Brown's partner can get her things" +p3541 +aS'Auto show canceled' +p3542 +aS"UK luxury maker Burberry: 'Made in China'?" +p3543 +aS'On-the-job naps might cut heart risk' +p3544 +aS'No. 1 Florida survives Rupp Arena, streak hits 16' +p3545 +aS"J.K. Rowling marks spot of 'Potter's' end" +p3546 +aS'Gronholm takes a commanding lead' +p3547 +aS'Howard slams Obama on Iraq policy' +p3548 +aS'Manila hints at ransom approval' +p3549 +aS'Champion Murray too good for Kim' +p3550 +aS'G7: Yen skates by, yuan singled out' +p3551 +aS"Gunman 'was Srebrenica survivor'" +p3552 +aS'Cutting through the clutter to get things done' +p3553 +aS"Mother: Lohan is doing 'great' in rehab" +p3554 +aS"Who's going to win at the Grammys?" +p3555 +aS'Libby defense upsets judge, rests' +p3556 +aS'Breakup rings find new homes' +p3557 +aS'Gronholm ahead as Solberg crashes' +p3558 +aS"'Norbit' a waste of Murphy" +p3559 +aS'Rocky start for Bangkok airport' +p3560 +aS'12 dead in Lebanese minibus bombings' +p3561 +aS'Sex torture claims hit Russia army' +p3562 +aS'Mega-marsupials once roamed Australia' +p3563 +aS"Rupert Murdoch's secret TiVo" +p3564 +aS'UPDATE 1-Plane crashes at Moscow airport, no passengers' +p3565 +aS'HPV vaccination stirs heated debate in America' +p3566 +aS'Court TV: Accused killer tells jury a love story' +p3567 +aS'Whistle-blowing Web site exposed' +p3568 +aS'Start late, retire rich' +p3569 +aS'Somali PM vows to bring Islamists to justice' +p3570 +aS'Swingers more common than most think' +p3571 +aS'Anna Nicole Smith fans mourn in cyberspace' +p3572 +aS'Antibiotic Ketek more dangerous than thought' +p3573 +aS'Time to book your cruise' +p3574 +aS"'Blazing Angels' for PS3 fails to soar" +p3575 +aS'North Korea aid demand stall talks' +p3576 +aS'Cartoon Network head steps down' +p3577 +aS'Malaysia aggressively wooing tourists' +p3578 +aS"Anna Nicole Smith's Bahamas home seized" +p3579 +aS'Andromeda involved in galactic collision' +p3580 +aS'Rwanda mulling 3-kid limit for families' +p3581 +aS'Wilkinson sets record in tame win' +p3582 +aS'Army engineers say dam safe' +p3583 +aS'France: Al Qaeda suspects arrested' +p3584 +aS'Utah gunman survived Srebrenica' +p3585 +aS'Creating a whole album in a month?' +p3586 +aS'India to test new nuclear missile' +p3587 +aS'G7 to China: Ease exchange rate grip' +p3588 +aS'Hatton hands back IBF title again' +p3589 +aS'Bernanke: Economy healthy, but...' +p3590 +aS'Mickelson, Sutherland share lead' +p3591 +aS'Napping is good for your heart, study finds' +p3592 +aS'Princess Masako author: No regrets' +p3593 +aS'Students use IM-lingo in essays' +p3594 +aS'Malaysia launches tourism campaign' +p3595 +aS"Study: Africa's Internet gap getting wider" +p3596 +aS'Travel chaos as heavy snow hits UK' +p3597 +aS"Paula Abdul: 'I have never been drunk'" +p3598 +aS'Salmonella outbreak traced to peanut butter' +p3599 +aS'Putin: U.S. force fostering nuke ambitions' +p3600 +aS'Nuke detectors to ring New York, official says' +p3601 +aS'Double bus-bombing kills three in Lebanon' +p3602 +aS'Davydenko out as seeds scattered' +p3603 +aS"Obama: I'm running for president" +p3604 +aS'Paterson boots Scotland to victory' +p3605 +aS'African-Americans are organ donors these days, but what about bone marrow?' +p3606 +aS'Study: On-the-job naps might help heart' +p3607 +aS'Guinea capital largely calm under curfew, marital law' +p3608 +aS'Bosses sleeping on idea of letting workers take naps' +p3609 +aS"Teacher's porn conviction sparks tech debate" +p3610 +aS'Singapore pampers its waterfront promenade' +p3611 +aS'Rwanda mulls three-child limit' +p3612 +aS'Samsung settles price-fixing lawsuit' +p3613 +aS'Radical cleric al-Sadr in Iran, U.S. insists' +p3614 +aS'Reports: Harvard set to name first female president' +p3615 +aS'Iraq unveils new security plans' +p3616 +aS'University offers support to New Orleans school' +p3617 +aS'Storm causes slick, icy roads' +p3618 +aS'South Korea fire kills 10 foreigners' +p3619 +aS'Prehistoric lovers found locked in eternal embrace' +p3620 +aS'Charts: Is your city lean or lethargic?' +p3621 +aS'Peru leader questioned in massacre probe' +p3622 +aS'U.S. commander: Iraq not hopeless' +p3623 +aS'Australian PM stands by Obama attack' +p3624 +aS'Mardi Gras rebound in the offing for New Orleans?' +p3625 +aS'Siestas may cut heart disease risk' +p3626 +aS'Oregon snorkeler mistaken for rodent, shot in face' +p3627 +aS'Petraeus takes command in Iraq' +p3628 +aS'6 dead after Utah Mall shooting rampage' +p3629 +aS"Sharks kill four people in 'dull' year" +p3630 +aS'Record-shattering day on Wall St.' +p3631 +aS'Comedian says government silences critics' +p3632 +aS'Rockers big winners at Brit Awards' +p3633 +aS'Samba school leader killed before Rio carnival' +p3634 +aS"Taiwan's 'Mr. Clean' indicted, steps down" +p3635 +aS'Woman fights to keep drunken driver in jail' +p3636 +aS'Al Qaeda group calls for attacks on U.S. oil' +p3637 +aS'Cousin: Gunman was Srebrenica survivor' +p3638 +aS'Turkmenistan votes for president' +p3639 +aS'Here is some advice to take to heart...' +p3640 +aS"10 don't-miss tax breaks" +p3641 +aS'Police break up Kosovo protests' +p3642 +aS'Messi makes Barcelona squad return' +p3643 +aS'Jump reported in accidental drug-overdose deaths' +p3644 +aS'Catania punished for fan violence' +p3645 +aS'Isinbayeva sets 20th world record' +p3646 +aS'Lawmakers blast FDA drug safety oversight' +p3647 +aS'Regular naps make hearts healthy' +p3648 +aS'Ice stops trolleys cold' +p3649 +aS"U.S. gunman 'was Srebrenica survivor'" +p3650 +aS'Outdated baby food found on shelves' +p3651 +aS'Tow truck drivers accused of stealing cars' +p3652 +aS"Bush: It's time for Congress to back energy plan" +p3653 +aS'UK soldiers cleared of Iraq abuse' +p3654 +aS'FDA revises label warnings on the antibiotic Ketek' +p3655 +aS'Toshiba Portege R400' +p3656 +aS'South Africa mourns Adelaide Tambo' +p3657 +aS'Evacuees can return home after plant blast' +p3658 +aS"Anna Nicole Smith's body lies in legal limbo" +p3659 +aS'Former teacher poses for Playboy' +p3660 +aS'France rejects Rwandan investigators' +p3661 +aS'A nap a day may keep the heart doctor away' +p3662 +aS'Higley, Gonzalez lead in Malaysia' +p3663 +aS'Grammys ready to name winners' +p3664 +aS'Pound will not drop Armstrong case' +p3665 +aS'Reunited Police to start world tour in May' +p3666 +aS'Turkmen acting leader sworn in as new president' +p3667 +aS'Allen and Okur get All-Star call' +p3668 +aS'Svindal claims are golden double' +p3669 +aS'Trolley Square shooting leaves 6 dead, including gunman' +p3670 +aS'Bridge blast stops I-95 traffic' +p3671 +aS'Mother, daughter stabbed near school' +p3672 +aS'Excerpt: Politicians and the press' +p3673 +aS"North Korea gets 'money and respect'" +p3674 +aS"Beyonce in a bikini as SI's swimsuit cover model" +p3675 +aS'Loving with all your ... brain' +p3676 +aS"Shoplifters' choice: Police or T-shirt of shame" +p3677 +aS"Cuban official: Web a 'wild colt'" +p3678 +aS"Slow 'Music and Lyrics'" +p3679 +aS'Mexican navy helps in hunt for U.S. engineer' +p3680 +aS'Smith baby may not be pot of gold' +p3681 +aS"Latest updates on world's top stories" +p3682 +aS'Beating leaves teen in coma' +p3683 +aS'Tiempo Libre has Grammy dreams' +p3684 +aS'GPS sneakers locate with press of a button' +p3685 +aS'Embattled Edwards blogger quits campaign' +p3686 +aS'Britons deported from Somalia held under Terrorism Act' +p3687 +aS"Updates on world's top stories" +p3688 +aS'Breast cancer drug promises hope' +p3689 +aS'Ancient coin shows Cleopatra was no beauty' +p3690 +aS'YouTube yields surprising payback' +p3691 +aS'Up to 22 inches of snow in forecast' +p3692 +aS'Werder make 10-man Ajax pay price' +p3693 +aS"EU condemns 'illegal' CIA flights" +p3694 +aS'Report links humans to global warming' +p3695 +aS'UN nuclear watchdog slashes Iran aid' +p3696 +aS'Survey: Tech a tool in teen dating abuse' +p3697 +aS'The breast cancer breakthrough saving 1000 women a year' +p3698 +aS'Tourist spot resists gravity, but not progress' +p3699 +aS"The NFL's 20 biggest potential free agents" +p3700 +aS'World tourism sets record in 2006' +p3701 +aS'BA to charge $470 for an extra bag' +p3702 +aS"Kuerten returns to winners' circle" +p3703 +aS"World's oldest newspaper now exists only online" +p3704 +aS'Japanese whaler afire in Antarctic' +p3705 +aS'EU document: Iranian bomb unstoppable' +p3706 +aS"U.S. urged to lead on 'green' actions" +p3707 +aS"See if your city is one of the United States' top 10 fittest or fattest" +p3708 +aS'Lee in pre-World Cup injury scare' +p3709 +aS'New cancer drug to save a thousand lives a year' +p3710 +aS'Ex-teacher guilty in nude-pictures scheme' +p3711 +aS'Fire extinguisher part of Tennessee execution kit' +p3712 +aS'Founder returns to Dell helm' +p3713 +aS'Charles Gibson takes over first place' +p3714 +aS'Ex-Border Patrol agent beaten in prison' +p3715 +aS"'Made in China' irks some Burberry shoppers" +p3716 +aS"Stonehenge workers' village found" +p3717 +aS'Who is Prince Frederic von Anhalt?' +p3718 +aS"Latest food-fad -- 'space potatoes'" +p3719 +aS'Ethiopia readies for millennium all its own' +p3720 +aS'Good news for slackers: Naps may cut risk for heart problems' +p3721 +aS'Snowbirds shortening their Florida stays' +p3722 +aS'Win a (concert) date with the Police' +p3723 +aS'Snow begins, heavy accumulations expected' +p3724 +aS'Jet flips in snowstorm, none dead' +p3725 +aS"Frantic 911 call in Ryan O'Neal case" +p3726 +aS"Durant's success trumps the Gators" +p3727 +aS"Scientist snoops in astronauts' journals" +p3728 +aS'YouTube founders split $650M payout' +p3729 +aS'African nation hopes Whoopi can help' +p3730 +aS'United hang on to six-point lead' +p3731 +aS"Lawyer seizes Smith's Bahamas home" +p3732 +aS"Was Prince's super show too revealing?" +p3733 +aS'Clijsters looks for a long goodbye' +p3734 +aS"Snow's too deep even for snowmobiles" +p3735 +aS'Study: Female seals picky about mates' +p3736 +aS'ROUNDUP: Protests erupt despite "state of siege" In Guinea' +p3737 +aS'Study: More kids exposed to online porn' +p3738 +aS'Beyonce new SI bikini cover girl' +p3739 +aS'Marijuana helps ease HIV nerve pain, study says' +p3740 +aS'Serena misses Bangalore tournament' +p3741 +aS'Dryer blamed for fire killing 39 cats, dogs' +p3742 +aS'Roddick, Murray score in San Jose' +p3743 +aS'Apple trademark dispute settled' +p3744 +aS'U.S. online love brokers eye China' +p3745 +aS'U.S. diverts troops to fight Taliban' +p3746 +aS"'House of Cards' actor Ian Richardson dead" +p3747 +aS'Taliban leader killed in airstrike' +p3748 +aS'Escape to Prague without the summer hordes' +p3749 +aS'Kathmandu: First snow in 63 years' +p3750 +aS'Nasdaq fails in bid for LSE' +p3751 +aS'Ex-pastor gets death sentence' +p3752 +aS'Baby born on turnpike after dad misses exit' +p3753 +aS"Study links chimps and 'hammers'" +p3754 +aS'UN-Google Earth map climate change' +p3755 +asS'val_ind' +p3756 +(lp3757 +I54 +aI46 +aI86 +aI246 +aI106 +aI87 +aI110 +aI168 +aI169 +aI103 +aI248 +aI69 +aI165 +aI159 +aI191 +aI67 +aI216 +aI223 +aI126 +aI68 +aI121 +aI56 +aI119 +aI184 +aI74 +aI85 +aI101 +aI53 +aI198 +aI41 +aI235 +aI11 +aI35 +aI214 +aI177 +aI25 +aI150 +aI98 +aI89 +aI36 +aI94 +aI63 +aI28 +aI24 +aI124 +aI192 +aI107 +aI116 +aI193 +aI43 +asS'test_ind' +p3758 +(lp3759 +I250 +aI251 +aI252 +aI253 +aI254 +aI255 +aI256 +aI257 +aI258 +aI259 +aI260 +aI261 +aI262 +aI263 +aI264 +aI265 +aI266 +aI267 +aI268 +aI269 +aI270 +aI271 +aI272 +aI273 +aI274 +aI275 +aI276 +aI277 +aI278 +aI279 +aI280 +aI281 +aI282 +aI283 +aI284 +aI285 +aI286 +aI287 +aI288 +aI289 +aI290 +aI291 +aI292 +aI293 +aI294 +aI295 +aI296 +aI297 +aI298 +aI299 +aI300 +aI301 +aI302 +aI303 +aI304 +aI305 +aI306 +aI307 +aI308 +aI309 +aI310 +aI311 +aI312 +aI313 +aI314 +aI315 +aI316 +aI317 +aI318 +aI319 +aI320 +aI321 +aI322 +aI323 +aI324 +aI325 +aI326 +aI327 +aI328 +aI329 +aI330 +aI331 +aI332 +aI333 +aI334 +aI335 +aI336 +aI337 +aI338 +aI339 +aI340 +aI341 +aI342 +aI343 +aI344 +aI345 +aI346 +aI347 +aI348 +aI349 +aI350 +aI351 +aI352 +aI353 +aI354 +aI355 +aI356 +aI357 +aI358 +aI359 +aI360 +aI361 +aI362 +aI363 +aI364 +aI365 +aI366 +aI367 +aI368 +aI369 +aI370 +aI371 +aI372 +aI373 +aI374 +aI375 +aI376 +aI377 +aI378 +aI379 +aI380 +aI381 +aI382 +aI383 +aI384 +aI385 +aI386 +aI387 +aI388 +aI389 +aI390 +aI391 +aI392 +aI393 +aI394 +aI395 +aI396 +aI397 +aI398 +aI399 +aI400 +aI401 +aI402 +aI403 +aI404 +aI405 +aI406 +aI407 +aI408 +aI409 +aI410 +aI411 +aI412 +aI413 +aI414 +aI415 +aI416 +aI417 +aI418 +aI419 +aI420 +aI421 +aI422 +aI423 +aI424 +aI425 +aI426 +aI427 +aI428 +aI429 +aI430 +aI431 +aI432 +aI433 +aI434 +aI435 +aI436 +aI437 +aI438 +aI439 +aI440 +aI441 +aI442 +aI443 +aI444 +aI445 +aI446 +aI447 +aI448 +aI449 +aI450 +aI451 +aI452 +aI453 +aI454 +aI455 +aI456 +aI457 +aI458 +aI459 +aI460 +aI461 +aI462 +aI463 +aI464 +aI465 +aI466 +aI467 +aI468 +aI469 +aI470 +aI471 +aI472 +aI473 +aI474 +aI475 +aI476 +aI477 +aI478 +aI479 +aI480 +aI481 +aI482 +aI483 +aI484 +aI485 +aI486 +aI487 +aI488 +aI489 +aI490 +aI491 +aI492 +aI493 +aI494 +aI495 +aI496 +aI497 +aI498 +aI499 +aI500 +aI501 +aI502 +aI503 +aI504 +aI505 +aI506 +aI507 +aI508 +aI509 +aI510 +aI511 +aI512 +aI513 +aI514 +aI515 +aI516 +aI517 +aI518 +aI519 +aI520 +aI521 +aI522 +aI523 +aI524 +aI525 +aI526 +aI527 +aI528 +aI529 +aI530 +aI531 +aI532 +aI533 +aI534 +aI535 +aI536 +aI537 +aI538 +aI539 +aI540 +aI541 +aI542 +aI543 +aI544 +aI545 +aI546 +aI547 +aI548 +aI549 +aI550 +aI551 +aI552 +aI553 +aI554 +aI555 +aI556 +aI557 +aI558 +aI559 +aI560 +aI561 +aI562 +aI563 +aI564 +aI565 +aI566 +aI567 +aI568 +aI569 +aI570 +aI571 +aI572 +aI573 +aI574 +aI575 +aI576 +aI577 +aI578 +aI579 +aI580 +aI581 +aI582 +aI583 +aI584 +aI585 +aI586 +aI587 +aI588 +aI589 +aI590 +aI591 +aI592 +aI593 +aI594 +aI595 +aI596 +aI597 +aI598 +aI599 +aI600 +aI601 +aI602 +aI603 +aI604 +aI605 +aI606 +aI607 +aI608 +aI609 +aI610 +aI611 +aI612 +aI613 +aI614 +aI615 +aI616 +aI617 +aI618 +aI619 +aI620 +aI621 +aI622 +aI623 +aI624 +aI625 +aI626 +aI627 +aI628 +aI629 +aI630 +aI631 +aI632 +aI633 +aI634 +aI635 +aI636 +aI637 +aI638 +aI639 +aI640 +aI641 +aI642 +aI643 +aI644 +aI645 +aI646 +aI647 +aI648 +aI649 +aI650 +aI651 +aI652 +aI653 +aI654 +aI655 +aI656 +aI657 +aI658 +aI659 +aI660 +aI661 +aI662 +aI663 +aI664 +aI665 +aI666 +aI667 +aI668 +aI669 +aI670 +aI671 +aI672 +aI673 +aI674 +aI675 +aI676 +aI677 +aI678 +aI679 +aI680 +aI681 +aI682 +aI683 +aI684 +aI685 +aI686 +aI687 +aI688 +aI689 +aI690 +aI691 +aI692 +aI693 +aI694 +aI695 +aI696 +aI697 +aI698 +aI699 +aI700 +aI701 +aI702 +aI703 +aI704 +aI705 +aI706 +aI707 +aI708 +aI709 +aI710 +aI711 +aI712 +aI713 +aI714 +aI715 +aI716 +aI717 +aI718 +aI719 +aI720 +aI721 +aI722 +aI723 +aI724 +aI725 +aI726 +aI727 +aI728 +aI729 +aI730 +aI731 +aI732 +aI733 +aI734 +aI735 +aI736 +aI737 +aI738 +aI739 +aI740 +aI741 +aI742 +aI743 +aI744 +aI745 +aI746 +aI747 +aI748 +aI749 +aI750 +aI751 +aI752 +aI753 +aI754 +aI755 +aI756 +aI757 +aI758 +aI759 +aI760 +aI761 +aI762 +aI763 +aI764 +aI765 +aI766 +aI767 +aI768 +aI769 +aI770 +aI771 +aI772 +aI773 +aI774 +aI775 +aI776 +aI777 +aI778 +aI779 +aI780 +aI781 +aI782 +aI783 +aI784 +aI785 +aI786 +aI787 +aI788 +aI789 +aI790 +aI791 +aI792 +aI793 +aI794 +aI795 +aI796 +aI797 +aI798 +aI799 +aI800 +aI801 +aI802 +aI803 +aI804 +aI805 +aI806 +aI807 +aI808 +aI809 +aI810 +aI811 +aI812 +aI813 +aI814 +aI815 +aI816 +aI817 +aI818 +aI819 +aI820 +aI821 +aI822 +aI823 +aI824 +aI825 +aI826 +aI827 +aI828 +aI829 +aI830 +aI831 +aI832 +aI833 +aI834 +aI835 +aI836 +aI837 +aI838 +aI839 +aI840 +aI841 +aI842 +aI843 +aI844 +aI845 +aI846 +aI847 +aI848 +aI849 +aI850 +aI851 +aI852 +aI853 +aI854 +aI855 +aI856 +aI857 +aI858 +aI859 +aI860 +aI861 +aI862 +aI863 +aI864 +aI865 +aI866 +aI867 +aI868 +aI869 +aI870 +aI871 +aI872 +aI873 +aI874 +aI875 +aI876 +aI877 +aI878 +aI879 +aI880 +aI881 +aI882 +aI883 +aI884 +aI885 +aI886 +aI887 +aI888 +aI889 +aI890 +aI891 +aI892 +aI893 +aI894 +aI895 +aI896 +aI897 +aI898 +aI899 +aI900 +aI901 +aI902 +aI903 +aI904 +aI905 +aI906 +aI907 +aI908 +aI909 +aI910 +aI911 +aI912 +aI913 +aI914 +aI915 +aI916 +aI917 +aI918 +aI919 +aI920 +aI921 +aI922 +aI923 +aI924 +aI925 +aI926 +aI927 +aI928 +aI929 +aI930 +aI931 +aI932 +aI933 +aI934 +aI935 +aI936 +aI937 +aI938 +aI939 +aI940 +aI941 +aI942 +aI943 +aI944 +aI945 +aI946 +aI947 +aI948 +aI949 +aI950 +aI951 +aI952 +aI953 +aI954 +aI955 +aI956 +aI957 +aI958 +aI959 +aI960 +aI961 +aI962 +aI963 +aI964 +aI965 +aI966 +aI967 +aI968 +aI969 +aI970 +aI971 +aI972 +aI973 +aI974 +aI975 +aI976 +aI977 +aI978 +aI979 +aI980 +aI981 +aI982 +aI983 +aI984 +aI985 +aI986 +aI987 +aI988 +aI989 +aI990 +aI991 +aI992 +aI993 +aI994 +aI995 +aI996 +aI997 +aI998 +aI999 +aI1000 +aI1001 +aI1002 +aI1003 +aI1004 +aI1005 +aI1006 +aI1007 +aI1008 +aI1009 +aI1010 +aI1011 +aI1012 +aI1013 +aI1014 +aI1015 +aI1016 +aI1017 +aI1018 +aI1019 +aI1020 +aI1021 +aI1022 +aI1023 +aI1024 +aI1025 +aI1026 +aI1027 +aI1028 +aI1029 +aI1030 +aI1031 +aI1032 +aI1033 +aI1034 +aI1035 +aI1036 +aI1037 +aI1038 +aI1039 +aI1040 +aI1041 +aI1042 +aI1043 +aI1044 +aI1045 +aI1046 +aI1047 +aI1048 +aI1049 +aI1050 +aI1051 +aI1052 +aI1053 +aI1054 +aI1055 +aI1056 +aI1057 +aI1058 +aI1059 +aI1060 +aI1061 +aI1062 +aI1063 +aI1064 +aI1065 +aI1066 +aI1067 +aI1068 +aI1069 +aI1070 +aI1071 +aI1072 +aI1073 +aI1074 +aI1075 +aI1076 +aI1077 +aI1078 +aI1079 +aI1080 +aI1081 +aI1082 +aI1083 +aI1084 +aI1085 +aI1086 +aI1087 +aI1088 +aI1089 +aI1090 +aI1091 +aI1092 +aI1093 +aI1094 +aI1095 +aI1096 +aI1097 +aI1098 +aI1099 +aI1100 +aI1101 +aI1102 +aI1103 +aI1104 +aI1105 +aI1106 +aI1107 +aI1108 +aI1109 +aI1110 +aI1111 +aI1112 +aI1113 +aI1114 +aI1115 +aI1116 +aI1117 +aI1118 +aI1119 +aI1120 +aI1121 +aI1122 +aI1123 +aI1124 +aI1125 +aI1126 +aI1127 +aI1128 +aI1129 +aI1130 +aI1131 +aI1132 +aI1133 +aI1134 +aI1135 +aI1136 +aI1137 +aI1138 +aI1139 +aI1140 +aI1141 +aI1142 +aI1143 +aI1144 +aI1145 +aI1146 +aI1147 +aI1148 +aI1149 +aI1150 +aI1151 +aI1152 +aI1153 +aI1154 +aI1155 +aI1156 +aI1157 +aI1158 +aI1159 +aI1160 +aI1161 +aI1162 +aI1163 +aI1164 +aI1165 +aI1166 +aI1167 +aI1168 +aI1169 +aI1170 +aI1171 +aI1172 +aI1173 +aI1174 +aI1175 +aI1176 +aI1177 +aI1178 +aI1179 +aI1180 +aI1181 +aI1182 +aI1183 +aI1184 +aI1185 +aI1186 +aI1187 +aI1188 +aI1189 +aI1190 +aI1191 +aI1192 +aI1193 +aI1194 +aI1195 +aI1196 +aI1197 +aI1198 +aI1199 +aI1200 +aI1201 +aI1202 +aI1203 +aI1204 +aI1205 +aI1206 +aI1207 +aI1208 +aI1209 +aI1210 +aI1211 +aI1212 +aI1213 +aI1214 +aI1215 +aI1216 +aI1217 +aI1218 +aI1219 +aI1220 +aI1221 +aI1222 +aI1223 +aI1224 +aI1225 +aI1226 +aI1227 +aI1228 +aI1229 +aI1230 +aI1231 +aI1232 +aI1233 +aI1234 +aI1235 +aI1236 +aI1237 +aI1238 +aI1239 +aI1240 +aI1241 +aI1242 +aI1243 +aI1244 +aI1245 +aI1246 +aI1247 +aI1248 +aI1249 +asS'train_ind' +p3760 +(lp3761 +I42 +aI30 +aI213 +aI154 +aI48 +aI149 +aI96 +aI55 +aI97 +aI99 +aI164 +aI15 +aI117 +aI115 +aI135 +aI75 +aI32 +aI231 +aI14 +aI156 +aI220 +aI52 +aI230 +aI234 +aI139 +aI188 +aI21 +aI39 +aI113 +aI146 +aI123 +aI120 +aI212 +aI19 +aI29 +aI209 +aI160 +aI58 +aI80 +aI13 +aI1 +aI125 +aI185 +aI2 +aI228 +aI44 +aI227 +aI59 +aI100 +aI127 +aI183 +aI243 +aI140 +aI62 +aI112 +aI51 +aI130 +aI34 +aI5 +aI218 +aI166 +aI240 +aI244 +aI37 +aI142 +aI180 +aI181 +aI233 +aI190 +aI211 +aI178 +aI157 +aI31 +aI102 +aI171 +aI70 +aI145 +aI128 +aI4 +aI66 +aI17 +aI79 +aI186 +aI10 +aI95 +aI33 +aI141 +aI204 +aI40 +aI163 +aI221 +aI7 +aI172 +aI143 +aI12 +aI225 +aI3 +aI205 +aI144 +aI249 +aI109 +aI206 +aI153 +aI138 +aI201 +aI83 +aI158 +aI187 +aI199 +aI133 +aI16 +aI64 +aI108 +aI38 +aI118 +aI197 +aI208 +aI155 +aI175 +aI239 +aI73 +aI49 +aI0 +aI173 +aI161 +aI45 +aI176 +aI202 +aI50 +aI77 +aI247 +aI237 +aI200 +aI132 +aI207 +aI47 +aI136 +aI229 +aI88 +aI131 +aI78 +aI210 +aI170 +aI162 +aI224 +aI26 +aI18 +aI20 +aI174 +aI226 +aI222 +aI236 +aI76 +aI196 +aI137 +aI219 +aI122 +aI71 +aI61 +aI238 +aI8 +aI148 +aI195 +aI57 +aI179 +aI91 +aI111 +aI81 +aI147 +aI215 +aI60 +aI65 +aI203 +aI104 +aI105 +aI194 +aI241 +aI22 +aI6 +aI93 +aI27 +aI129 +aI152 +aI23 +aI242 +aI182 +aI134 +aI9 +aI72 +aI84 +aI82 +aI114 +aI90 +aI245 +aI217 +aI167 +aI232 +aI92 +aI189 +aI151 +as. \ No newline at end of file diff --git a/data/SS-Twitter/raw.pickle b/data/SS-Twitter/raw.pickle new file mode 100644 index 0000000..7be499d --- /dev/null +++ b/data/SS-Twitter/raw.pickle @@ -0,0 +1,23278 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +cnumpy.core.multiarray +scalar +p5 +(cnumpy +dtype +p6 +(S'i8' +p7 +I0 +I1 +tp8 +Rp9 +(I3 +S'<' +p10 +NNNI-1 +I-1 +I0 +tp11 +bS'\x01\x00\x00\x00\x00\x00\x00\x00' +p12 +tp13 +Rp14 +sa(dp15 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p16 +tp17 +Rp18 +sa(dp19 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p20 +tp21 +Rp22 +sa(dp23 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p24 +tp25 +Rp26 +sa(dp27 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p28 +tp29 +Rp30 +sa(dp31 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p32 +tp33 +Rp34 +sa(dp35 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p36 +tp37 +Rp38 +sa(dp39 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p40 +tp41 +Rp42 +sa(dp43 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p44 +tp45 +Rp46 +sa(dp47 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p48 +tp49 +Rp50 +sa(dp51 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p52 +tp53 +Rp54 +sa(dp55 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p56 +tp57 +Rp58 +sa(dp59 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p60 +tp61 +Rp62 +sa(dp63 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p64 +tp65 +Rp66 +sa(dp67 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p68 +tp69 +Rp70 +sa(dp71 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p72 +tp73 +Rp74 +sa(dp75 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p76 +tp77 +Rp78 +sa(dp79 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p80 +tp81 +Rp82 +sa(dp83 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p84 +tp85 +Rp86 +sa(dp87 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p88 +tp89 +Rp90 +sa(dp91 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p92 +tp93 +Rp94 +sa(dp95 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p96 +tp97 +Rp98 +sa(dp99 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p100 +tp101 +Rp102 +sa(dp103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p104 +tp105 +Rp106 +sa(dp107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p108 +tp109 +Rp110 +sa(dp111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p112 +tp113 +Rp114 +sa(dp115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p116 +tp117 +Rp118 +sa(dp119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p120 +tp121 +Rp122 +sa(dp123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p124 +tp125 +Rp126 +sa(dp127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p128 +tp129 +Rp130 +sa(dp131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p132 +tp133 +Rp134 +sa(dp135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p136 +tp137 +Rp138 +sa(dp139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p140 +tp141 +Rp142 +sa(dp143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p144 +tp145 +Rp146 +sa(dp147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p148 +tp149 +Rp150 +sa(dp151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p152 +tp153 +Rp154 +sa(dp155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p156 +tp157 +Rp158 +sa(dp159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p160 +tp161 +Rp162 +sa(dp163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p164 +tp165 +Rp166 +sa(dp167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p168 +tp169 +Rp170 +sa(dp171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p172 +tp173 +Rp174 +sa(dp175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p176 +tp177 +Rp178 +sa(dp179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p180 +tp181 +Rp182 +sa(dp183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p184 +tp185 +Rp186 +sa(dp187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p188 +tp189 +Rp190 +sa(dp191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p192 +tp193 +Rp194 +sa(dp195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p196 +tp197 +Rp198 +sa(dp199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p200 +tp201 +Rp202 +sa(dp203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p204 +tp205 +Rp206 +sa(dp207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p208 +tp209 +Rp210 +sa(dp211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p212 +tp213 +Rp214 +sa(dp215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p216 +tp217 +Rp218 +sa(dp219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p220 +tp221 +Rp222 +sa(dp223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p224 +tp225 +Rp226 +sa(dp227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p228 +tp229 +Rp230 +sa(dp231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p232 +tp233 +Rp234 +sa(dp235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p236 +tp237 +Rp238 +sa(dp239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p240 +tp241 +Rp242 +sa(dp243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p244 +tp245 +Rp246 +sa(dp247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p248 +tp249 +Rp250 +sa(dp251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p252 +tp253 +Rp254 +sa(dp255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p256 +tp257 +Rp258 +sa(dp259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p260 +tp261 +Rp262 +sa(dp263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p264 +tp265 +Rp266 +sa(dp267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p268 +tp269 +Rp270 +sa(dp271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p272 +tp273 +Rp274 +sa(dp275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p276 +tp277 +Rp278 +sa(dp279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p280 +tp281 +Rp282 +sa(dp283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p284 +tp285 +Rp286 +sa(dp287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p288 +tp289 +Rp290 +sa(dp291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p292 +tp293 +Rp294 +sa(dp295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p296 +tp297 +Rp298 +sa(dp299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p300 +tp301 +Rp302 +sa(dp303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p304 +tp305 +Rp306 +sa(dp307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p308 +tp309 +Rp310 +sa(dp311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p312 +tp313 +Rp314 +sa(dp315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p316 +tp317 +Rp318 +sa(dp319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p320 +tp321 +Rp322 +sa(dp323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p324 +tp325 +Rp326 +sa(dp327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p328 +tp329 +Rp330 +sa(dp331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p332 +tp333 +Rp334 +sa(dp335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p336 +tp337 +Rp338 +sa(dp339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p340 +tp341 +Rp342 +sa(dp343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p344 +tp345 +Rp346 +sa(dp347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p348 +tp349 +Rp350 +sa(dp351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p352 +tp353 +Rp354 +sa(dp355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p356 +tp357 +Rp358 +sa(dp359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p360 +tp361 +Rp362 +sa(dp363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p364 +tp365 +Rp366 +sa(dp367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p368 +tp369 +Rp370 +sa(dp371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p372 +tp373 +Rp374 +sa(dp375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p376 +tp377 +Rp378 +sa(dp379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p380 +tp381 +Rp382 +sa(dp383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p384 +tp385 +Rp386 +sa(dp387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p388 +tp389 +Rp390 +sa(dp391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p392 +tp393 +Rp394 +sa(dp395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p396 +tp397 +Rp398 +sa(dp399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p400 +tp401 +Rp402 +sa(dp403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p404 +tp405 +Rp406 +sa(dp407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p408 +tp409 +Rp410 +sa(dp411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p412 +tp413 +Rp414 +sa(dp415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p416 +tp417 +Rp418 +sa(dp419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p420 +tp421 +Rp422 +sa(dp423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p424 +tp425 +Rp426 +sa(dp427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p428 +tp429 +Rp430 +sa(dp431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p432 +tp433 +Rp434 +sa(dp435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p436 +tp437 +Rp438 +sa(dp439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p440 +tp441 +Rp442 +sa(dp443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p444 +tp445 +Rp446 +sa(dp447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p448 +tp449 +Rp450 +sa(dp451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p452 +tp453 +Rp454 +sa(dp455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p456 +tp457 +Rp458 +sa(dp459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p460 +tp461 +Rp462 +sa(dp463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p464 +tp465 +Rp466 +sa(dp467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p468 +tp469 +Rp470 +sa(dp471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p472 +tp473 +Rp474 +sa(dp475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p476 +tp477 +Rp478 +sa(dp479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p480 +tp481 +Rp482 +sa(dp483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p484 +tp485 +Rp486 +sa(dp487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p488 +tp489 +Rp490 +sa(dp491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p492 +tp493 +Rp494 +sa(dp495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p496 +tp497 +Rp498 +sa(dp499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p500 +tp501 +Rp502 +sa(dp503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p504 +tp505 +Rp506 +sa(dp507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p508 +tp509 +Rp510 +sa(dp511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p512 +tp513 +Rp514 +sa(dp515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p516 +tp517 +Rp518 +sa(dp519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p520 +tp521 +Rp522 +sa(dp523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p524 +tp525 +Rp526 +sa(dp527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p528 +tp529 +Rp530 +sa(dp531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p532 +tp533 +Rp534 +sa(dp535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p536 +tp537 +Rp538 +sa(dp539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p540 +tp541 +Rp542 +sa(dp543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p544 +tp545 +Rp546 +sa(dp547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p548 +tp549 +Rp550 +sa(dp551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p552 +tp553 +Rp554 +sa(dp555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p556 +tp557 +Rp558 +sa(dp559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p560 +tp561 +Rp562 +sa(dp563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p564 +tp565 +Rp566 +sa(dp567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p568 +tp569 +Rp570 +sa(dp571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p572 +tp573 +Rp574 +sa(dp575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p576 +tp577 +Rp578 +sa(dp579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p580 +tp581 +Rp582 +sa(dp583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p584 +tp585 +Rp586 +sa(dp587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p588 +tp589 +Rp590 +sa(dp591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p592 +tp593 +Rp594 +sa(dp595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p596 +tp597 +Rp598 +sa(dp599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p600 +tp601 +Rp602 +sa(dp603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p604 +tp605 +Rp606 +sa(dp607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p608 +tp609 +Rp610 +sa(dp611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p612 +tp613 +Rp614 +sa(dp615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p616 +tp617 +Rp618 +sa(dp619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p620 +tp621 +Rp622 +sa(dp623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p624 +tp625 +Rp626 +sa(dp627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p628 +tp629 +Rp630 +sa(dp631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p632 +tp633 +Rp634 +sa(dp635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p636 +tp637 +Rp638 +sa(dp639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p640 +tp641 +Rp642 +sa(dp643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p644 +tp645 +Rp646 +sa(dp647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p648 +tp649 +Rp650 +sa(dp651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p652 +tp653 +Rp654 +sa(dp655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p656 +tp657 +Rp658 +sa(dp659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p660 +tp661 +Rp662 +sa(dp663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p664 +tp665 +Rp666 +sa(dp667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p668 +tp669 +Rp670 +sa(dp671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p672 +tp673 +Rp674 +sa(dp675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p676 +tp677 +Rp678 +sa(dp679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p680 +tp681 +Rp682 +sa(dp683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p684 +tp685 +Rp686 +sa(dp687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p688 +tp689 +Rp690 +sa(dp691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p692 +tp693 +Rp694 +sa(dp695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p696 +tp697 +Rp698 +sa(dp699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p700 +tp701 +Rp702 +sa(dp703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p704 +tp705 +Rp706 +sa(dp707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p708 +tp709 +Rp710 +sa(dp711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p712 +tp713 +Rp714 +sa(dp715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p716 +tp717 +Rp718 +sa(dp719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p720 +tp721 +Rp722 +sa(dp723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p724 +tp725 +Rp726 +sa(dp727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p728 +tp729 +Rp730 +sa(dp731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p732 +tp733 +Rp734 +sa(dp735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p736 +tp737 +Rp738 +sa(dp739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p740 +tp741 +Rp742 +sa(dp743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p744 +tp745 +Rp746 +sa(dp747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p748 +tp749 +Rp750 +sa(dp751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p752 +tp753 +Rp754 +sa(dp755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p756 +tp757 +Rp758 +sa(dp759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p760 +tp761 +Rp762 +sa(dp763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p764 +tp765 +Rp766 +sa(dp767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p768 +tp769 +Rp770 +sa(dp771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p772 +tp773 +Rp774 +sa(dp775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p776 +tp777 +Rp778 +sa(dp779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p780 +tp781 +Rp782 +sa(dp783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p784 +tp785 +Rp786 +sa(dp787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p788 +tp789 +Rp790 +sa(dp791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p792 +tp793 +Rp794 +sa(dp795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p796 +tp797 +Rp798 +sa(dp799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p800 +tp801 +Rp802 +sa(dp803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p804 +tp805 +Rp806 +sa(dp807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p808 +tp809 +Rp810 +sa(dp811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p812 +tp813 +Rp814 +sa(dp815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p816 +tp817 +Rp818 +sa(dp819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p820 +tp821 +Rp822 +sa(dp823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p824 +tp825 +Rp826 +sa(dp827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p828 +tp829 +Rp830 +sa(dp831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p832 +tp833 +Rp834 +sa(dp835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p836 +tp837 +Rp838 +sa(dp839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p840 +tp841 +Rp842 +sa(dp843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p844 +tp845 +Rp846 +sa(dp847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p848 +tp849 +Rp850 +sa(dp851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p852 +tp853 +Rp854 +sa(dp855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p856 +tp857 +Rp858 +sa(dp859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p860 +tp861 +Rp862 +sa(dp863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p864 +tp865 +Rp866 +sa(dp867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p868 +tp869 +Rp870 +sa(dp871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p872 +tp873 +Rp874 +sa(dp875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p876 +tp877 +Rp878 +sa(dp879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p880 +tp881 +Rp882 +sa(dp883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p884 +tp885 +Rp886 +sa(dp887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p888 +tp889 +Rp890 +sa(dp891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p892 +tp893 +Rp894 +sa(dp895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p896 +tp897 +Rp898 +sa(dp899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p900 +tp901 +Rp902 +sa(dp903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p904 +tp905 +Rp906 +sa(dp907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p908 +tp909 +Rp910 +sa(dp911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p912 +tp913 +Rp914 +sa(dp915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p916 +tp917 +Rp918 +sa(dp919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p920 +tp921 +Rp922 +sa(dp923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p924 +tp925 +Rp926 +sa(dp927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p928 +tp929 +Rp930 +sa(dp931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p932 +tp933 +Rp934 +sa(dp935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p936 +tp937 +Rp938 +sa(dp939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p940 +tp941 +Rp942 +sa(dp943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p944 +tp945 +Rp946 +sa(dp947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p948 +tp949 +Rp950 +sa(dp951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p952 +tp953 +Rp954 +sa(dp955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p956 +tp957 +Rp958 +sa(dp959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p960 +tp961 +Rp962 +sa(dp963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p964 +tp965 +Rp966 +sa(dp967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p968 +tp969 +Rp970 +sa(dp971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p972 +tp973 +Rp974 +sa(dp975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p976 +tp977 +Rp978 +sa(dp979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p980 +tp981 +Rp982 +sa(dp983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p984 +tp985 +Rp986 +sa(dp987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p988 +tp989 +Rp990 +sa(dp991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p992 +tp993 +Rp994 +sa(dp995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p996 +tp997 +Rp998 +sa(dp999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1000 +tp1001 +Rp1002 +sa(dp1003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1004 +tp1005 +Rp1006 +sa(dp1007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1008 +tp1009 +Rp1010 +sa(dp1011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1012 +tp1013 +Rp1014 +sa(dp1015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1016 +tp1017 +Rp1018 +sa(dp1019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1020 +tp1021 +Rp1022 +sa(dp1023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1024 +tp1025 +Rp1026 +sa(dp1027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1028 +tp1029 +Rp1030 +sa(dp1031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1032 +tp1033 +Rp1034 +sa(dp1035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1036 +tp1037 +Rp1038 +sa(dp1039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1040 +tp1041 +Rp1042 +sa(dp1043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1044 +tp1045 +Rp1046 +sa(dp1047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1048 +tp1049 +Rp1050 +sa(dp1051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1052 +tp1053 +Rp1054 +sa(dp1055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1056 +tp1057 +Rp1058 +sa(dp1059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1060 +tp1061 +Rp1062 +sa(dp1063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1064 +tp1065 +Rp1066 +sa(dp1067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1068 +tp1069 +Rp1070 +sa(dp1071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1072 +tp1073 +Rp1074 +sa(dp1075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1076 +tp1077 +Rp1078 +sa(dp1079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1080 +tp1081 +Rp1082 +sa(dp1083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1084 +tp1085 +Rp1086 +sa(dp1087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1088 +tp1089 +Rp1090 +sa(dp1091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1092 +tp1093 +Rp1094 +sa(dp1095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1096 +tp1097 +Rp1098 +sa(dp1099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1100 +tp1101 +Rp1102 +sa(dp1103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1104 +tp1105 +Rp1106 +sa(dp1107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1108 +tp1109 +Rp1110 +sa(dp1111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1112 +tp1113 +Rp1114 +sa(dp1115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1116 +tp1117 +Rp1118 +sa(dp1119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1120 +tp1121 +Rp1122 +sa(dp1123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1124 +tp1125 +Rp1126 +sa(dp1127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1128 +tp1129 +Rp1130 +sa(dp1131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1132 +tp1133 +Rp1134 +sa(dp1135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1136 +tp1137 +Rp1138 +sa(dp1139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1140 +tp1141 +Rp1142 +sa(dp1143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1144 +tp1145 +Rp1146 +sa(dp1147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1148 +tp1149 +Rp1150 +sa(dp1151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1152 +tp1153 +Rp1154 +sa(dp1155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1156 +tp1157 +Rp1158 +sa(dp1159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1160 +tp1161 +Rp1162 +sa(dp1163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1164 +tp1165 +Rp1166 +sa(dp1167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1168 +tp1169 +Rp1170 +sa(dp1171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1172 +tp1173 +Rp1174 +sa(dp1175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1176 +tp1177 +Rp1178 +sa(dp1179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1180 +tp1181 +Rp1182 +sa(dp1183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1184 +tp1185 +Rp1186 +sa(dp1187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1188 +tp1189 +Rp1190 +sa(dp1191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1192 +tp1193 +Rp1194 +sa(dp1195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1196 +tp1197 +Rp1198 +sa(dp1199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1200 +tp1201 +Rp1202 +sa(dp1203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1204 +tp1205 +Rp1206 +sa(dp1207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1208 +tp1209 +Rp1210 +sa(dp1211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1212 +tp1213 +Rp1214 +sa(dp1215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1216 +tp1217 +Rp1218 +sa(dp1219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1220 +tp1221 +Rp1222 +sa(dp1223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1224 +tp1225 +Rp1226 +sa(dp1227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1228 +tp1229 +Rp1230 +sa(dp1231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1232 +tp1233 +Rp1234 +sa(dp1235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1236 +tp1237 +Rp1238 +sa(dp1239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1240 +tp1241 +Rp1242 +sa(dp1243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1244 +tp1245 +Rp1246 +sa(dp1247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1248 +tp1249 +Rp1250 +sa(dp1251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1252 +tp1253 +Rp1254 +sa(dp1255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1256 +tp1257 +Rp1258 +sa(dp1259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1260 +tp1261 +Rp1262 +sa(dp1263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1264 +tp1265 +Rp1266 +sa(dp1267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1268 +tp1269 +Rp1270 +sa(dp1271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1272 +tp1273 +Rp1274 +sa(dp1275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1276 +tp1277 +Rp1278 +sa(dp1279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1280 +tp1281 +Rp1282 +sa(dp1283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1284 +tp1285 +Rp1286 +sa(dp1287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1288 +tp1289 +Rp1290 +sa(dp1291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1292 +tp1293 +Rp1294 +sa(dp1295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1296 +tp1297 +Rp1298 +sa(dp1299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1300 +tp1301 +Rp1302 +sa(dp1303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1304 +tp1305 +Rp1306 +sa(dp1307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1308 +tp1309 +Rp1310 +sa(dp1311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1312 +tp1313 +Rp1314 +sa(dp1315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1316 +tp1317 +Rp1318 +sa(dp1319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1320 +tp1321 +Rp1322 +sa(dp1323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1324 +tp1325 +Rp1326 +sa(dp1327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1328 +tp1329 +Rp1330 +sa(dp1331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1332 +tp1333 +Rp1334 +sa(dp1335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1336 +tp1337 +Rp1338 +sa(dp1339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1340 +tp1341 +Rp1342 +sa(dp1343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1344 +tp1345 +Rp1346 +sa(dp1347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1348 +tp1349 +Rp1350 +sa(dp1351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1352 +tp1353 +Rp1354 +sa(dp1355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1356 +tp1357 +Rp1358 +sa(dp1359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1360 +tp1361 +Rp1362 +sa(dp1363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1364 +tp1365 +Rp1366 +sa(dp1367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1368 +tp1369 +Rp1370 +sa(dp1371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1372 +tp1373 +Rp1374 +sa(dp1375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1376 +tp1377 +Rp1378 +sa(dp1379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1380 +tp1381 +Rp1382 +sa(dp1383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1384 +tp1385 +Rp1386 +sa(dp1387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1388 +tp1389 +Rp1390 +sa(dp1391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1392 +tp1393 +Rp1394 +sa(dp1395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1396 +tp1397 +Rp1398 +sa(dp1399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1400 +tp1401 +Rp1402 +sa(dp1403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1404 +tp1405 +Rp1406 +sa(dp1407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1408 +tp1409 +Rp1410 +sa(dp1411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1412 +tp1413 +Rp1414 +sa(dp1415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1416 +tp1417 +Rp1418 +sa(dp1419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1420 +tp1421 +Rp1422 +sa(dp1423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1424 +tp1425 +Rp1426 +sa(dp1427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1428 +tp1429 +Rp1430 +sa(dp1431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1432 +tp1433 +Rp1434 +sa(dp1435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1436 +tp1437 +Rp1438 +sa(dp1439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1440 +tp1441 +Rp1442 +sa(dp1443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1444 +tp1445 +Rp1446 +sa(dp1447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1448 +tp1449 +Rp1450 +sa(dp1451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1452 +tp1453 +Rp1454 +sa(dp1455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1456 +tp1457 +Rp1458 +sa(dp1459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1460 +tp1461 +Rp1462 +sa(dp1463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1464 +tp1465 +Rp1466 +sa(dp1467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1468 +tp1469 +Rp1470 +sa(dp1471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1472 +tp1473 +Rp1474 +sa(dp1475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1476 +tp1477 +Rp1478 +sa(dp1479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1480 +tp1481 +Rp1482 +sa(dp1483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1484 +tp1485 +Rp1486 +sa(dp1487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1488 +tp1489 +Rp1490 +sa(dp1491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1492 +tp1493 +Rp1494 +sa(dp1495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1496 +tp1497 +Rp1498 +sa(dp1499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1500 +tp1501 +Rp1502 +sa(dp1503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1504 +tp1505 +Rp1506 +sa(dp1507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1508 +tp1509 +Rp1510 +sa(dp1511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1512 +tp1513 +Rp1514 +sa(dp1515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1516 +tp1517 +Rp1518 +sa(dp1519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1520 +tp1521 +Rp1522 +sa(dp1523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1524 +tp1525 +Rp1526 +sa(dp1527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1528 +tp1529 +Rp1530 +sa(dp1531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1532 +tp1533 +Rp1534 +sa(dp1535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1536 +tp1537 +Rp1538 +sa(dp1539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1540 +tp1541 +Rp1542 +sa(dp1543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1544 +tp1545 +Rp1546 +sa(dp1547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1548 +tp1549 +Rp1550 +sa(dp1551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1552 +tp1553 +Rp1554 +sa(dp1555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1556 +tp1557 +Rp1558 +sa(dp1559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1560 +tp1561 +Rp1562 +sa(dp1563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1564 +tp1565 +Rp1566 +sa(dp1567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1568 +tp1569 +Rp1570 +sa(dp1571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1572 +tp1573 +Rp1574 +sa(dp1575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1576 +tp1577 +Rp1578 +sa(dp1579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1580 +tp1581 +Rp1582 +sa(dp1583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1584 +tp1585 +Rp1586 +sa(dp1587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1588 +tp1589 +Rp1590 +sa(dp1591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1592 +tp1593 +Rp1594 +sa(dp1595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1596 +tp1597 +Rp1598 +sa(dp1599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1600 +tp1601 +Rp1602 +sa(dp1603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1604 +tp1605 +Rp1606 +sa(dp1607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1608 +tp1609 +Rp1610 +sa(dp1611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1612 +tp1613 +Rp1614 +sa(dp1615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1616 +tp1617 +Rp1618 +sa(dp1619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1620 +tp1621 +Rp1622 +sa(dp1623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1624 +tp1625 +Rp1626 +sa(dp1627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1628 +tp1629 +Rp1630 +sa(dp1631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1632 +tp1633 +Rp1634 +sa(dp1635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1636 +tp1637 +Rp1638 +sa(dp1639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1640 +tp1641 +Rp1642 +sa(dp1643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1644 +tp1645 +Rp1646 +sa(dp1647 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1648 +tp1649 +Rp1650 +sa(dp1651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1652 +tp1653 +Rp1654 +sa(dp1655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1656 +tp1657 +Rp1658 +sa(dp1659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1660 +tp1661 +Rp1662 +sa(dp1663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1664 +tp1665 +Rp1666 +sa(dp1667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1668 +tp1669 +Rp1670 +sa(dp1671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1672 +tp1673 +Rp1674 +sa(dp1675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1676 +tp1677 +Rp1678 +sa(dp1679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1680 +tp1681 +Rp1682 +sa(dp1683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1684 +tp1685 +Rp1686 +sa(dp1687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1688 +tp1689 +Rp1690 +sa(dp1691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1692 +tp1693 +Rp1694 +sa(dp1695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1696 +tp1697 +Rp1698 +sa(dp1699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1700 +tp1701 +Rp1702 +sa(dp1703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1704 +tp1705 +Rp1706 +sa(dp1707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1708 +tp1709 +Rp1710 +sa(dp1711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1712 +tp1713 +Rp1714 +sa(dp1715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1716 +tp1717 +Rp1718 +sa(dp1719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1720 +tp1721 +Rp1722 +sa(dp1723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1724 +tp1725 +Rp1726 +sa(dp1727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1728 +tp1729 +Rp1730 +sa(dp1731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1732 +tp1733 +Rp1734 +sa(dp1735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1736 +tp1737 +Rp1738 +sa(dp1739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1740 +tp1741 +Rp1742 +sa(dp1743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1744 +tp1745 +Rp1746 +sa(dp1747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1748 +tp1749 +Rp1750 +sa(dp1751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1752 +tp1753 +Rp1754 +sa(dp1755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1756 +tp1757 +Rp1758 +sa(dp1759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1760 +tp1761 +Rp1762 +sa(dp1763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1764 +tp1765 +Rp1766 +sa(dp1767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1768 +tp1769 +Rp1770 +sa(dp1771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1772 +tp1773 +Rp1774 +sa(dp1775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1776 +tp1777 +Rp1778 +sa(dp1779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1780 +tp1781 +Rp1782 +sa(dp1783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1784 +tp1785 +Rp1786 +sa(dp1787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1788 +tp1789 +Rp1790 +sa(dp1791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1792 +tp1793 +Rp1794 +sa(dp1795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1796 +tp1797 +Rp1798 +sa(dp1799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1800 +tp1801 +Rp1802 +sa(dp1803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1804 +tp1805 +Rp1806 +sa(dp1807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1808 +tp1809 +Rp1810 +sa(dp1811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1812 +tp1813 +Rp1814 +sa(dp1815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1816 +tp1817 +Rp1818 +sa(dp1819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1820 +tp1821 +Rp1822 +sa(dp1823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1824 +tp1825 +Rp1826 +sa(dp1827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1828 +tp1829 +Rp1830 +sa(dp1831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1832 +tp1833 +Rp1834 +sa(dp1835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1836 +tp1837 +Rp1838 +sa(dp1839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1840 +tp1841 +Rp1842 +sa(dp1843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1844 +tp1845 +Rp1846 +sa(dp1847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1848 +tp1849 +Rp1850 +sa(dp1851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1852 +tp1853 +Rp1854 +sa(dp1855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1856 +tp1857 +Rp1858 +sa(dp1859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1860 +tp1861 +Rp1862 +sa(dp1863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1864 +tp1865 +Rp1866 +sa(dp1867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1868 +tp1869 +Rp1870 +sa(dp1871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1872 +tp1873 +Rp1874 +sa(dp1875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1876 +tp1877 +Rp1878 +sa(dp1879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1880 +tp1881 +Rp1882 +sa(dp1883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1884 +tp1885 +Rp1886 +sa(dp1887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1888 +tp1889 +Rp1890 +sa(dp1891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1892 +tp1893 +Rp1894 +sa(dp1895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1896 +tp1897 +Rp1898 +sa(dp1899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1900 +tp1901 +Rp1902 +sa(dp1903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1904 +tp1905 +Rp1906 +sa(dp1907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1908 +tp1909 +Rp1910 +sa(dp1911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1912 +tp1913 +Rp1914 +sa(dp1915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1916 +tp1917 +Rp1918 +sa(dp1919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1920 +tp1921 +Rp1922 +sa(dp1923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1924 +tp1925 +Rp1926 +sa(dp1927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1928 +tp1929 +Rp1930 +sa(dp1931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1932 +tp1933 +Rp1934 +sa(dp1935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1936 +tp1937 +Rp1938 +sa(dp1939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1940 +tp1941 +Rp1942 +sa(dp1943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1944 +tp1945 +Rp1946 +sa(dp1947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1948 +tp1949 +Rp1950 +sa(dp1951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1952 +tp1953 +Rp1954 +sa(dp1955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1956 +tp1957 +Rp1958 +sa(dp1959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1960 +tp1961 +Rp1962 +sa(dp1963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1964 +tp1965 +Rp1966 +sa(dp1967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1968 +tp1969 +Rp1970 +sa(dp1971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1972 +tp1973 +Rp1974 +sa(dp1975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1976 +tp1977 +Rp1978 +sa(dp1979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1980 +tp1981 +Rp1982 +sa(dp1983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1984 +tp1985 +Rp1986 +sa(dp1987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1988 +tp1989 +Rp1990 +sa(dp1991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1992 +tp1993 +Rp1994 +sa(dp1995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1996 +tp1997 +Rp1998 +sa(dp1999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2000 +tp2001 +Rp2002 +sa(dp2003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2004 +tp2005 +Rp2006 +sa(dp2007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2008 +tp2009 +Rp2010 +sa(dp2011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2012 +tp2013 +Rp2014 +sa(dp2015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2016 +tp2017 +Rp2018 +sa(dp2019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2020 +tp2021 +Rp2022 +sa(dp2023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2024 +tp2025 +Rp2026 +sa(dp2027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2028 +tp2029 +Rp2030 +sa(dp2031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2032 +tp2033 +Rp2034 +sa(dp2035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2036 +tp2037 +Rp2038 +sa(dp2039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2040 +tp2041 +Rp2042 +sa(dp2043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2044 +tp2045 +Rp2046 +sa(dp2047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2048 +tp2049 +Rp2050 +sa(dp2051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2052 +tp2053 +Rp2054 +sa(dp2055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2056 +tp2057 +Rp2058 +sa(dp2059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2060 +tp2061 +Rp2062 +sa(dp2063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2064 +tp2065 +Rp2066 +sa(dp2067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2068 +tp2069 +Rp2070 +sa(dp2071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2072 +tp2073 +Rp2074 +sa(dp2075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2076 +tp2077 +Rp2078 +sa(dp2079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2080 +tp2081 +Rp2082 +sa(dp2083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2084 +tp2085 +Rp2086 +sa(dp2087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2088 +tp2089 +Rp2090 +sa(dp2091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2092 +tp2093 +Rp2094 +sa(dp2095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2096 +tp2097 +Rp2098 +sa(dp2099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2100 +tp2101 +Rp2102 +sa(dp2103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2104 +tp2105 +Rp2106 +sa(dp2107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2108 +tp2109 +Rp2110 +sa(dp2111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2112 +tp2113 +Rp2114 +sa(dp2115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2116 +tp2117 +Rp2118 +sa(dp2119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2120 +tp2121 +Rp2122 +sa(dp2123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2124 +tp2125 +Rp2126 +sa(dp2127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2128 +tp2129 +Rp2130 +sa(dp2131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2132 +tp2133 +Rp2134 +sa(dp2135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2136 +tp2137 +Rp2138 +sa(dp2139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2140 +tp2141 +Rp2142 +sa(dp2143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2144 +tp2145 +Rp2146 +sa(dp2147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2148 +tp2149 +Rp2150 +sa(dp2151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2152 +tp2153 +Rp2154 +sa(dp2155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2156 +tp2157 +Rp2158 +sa(dp2159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2160 +tp2161 +Rp2162 +sa(dp2163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2164 +tp2165 +Rp2166 +sa(dp2167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2168 +tp2169 +Rp2170 +sa(dp2171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2172 +tp2173 +Rp2174 +sa(dp2175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2176 +tp2177 +Rp2178 +sa(dp2179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2180 +tp2181 +Rp2182 +sa(dp2183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2184 +tp2185 +Rp2186 +sa(dp2187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2188 +tp2189 +Rp2190 +sa(dp2191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2192 +tp2193 +Rp2194 +sa(dp2195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2196 +tp2197 +Rp2198 +sa(dp2199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2200 +tp2201 +Rp2202 +sa(dp2203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2204 +tp2205 +Rp2206 +sa(dp2207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2208 +tp2209 +Rp2210 +sa(dp2211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2212 +tp2213 +Rp2214 +sa(dp2215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2216 +tp2217 +Rp2218 +sa(dp2219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2220 +tp2221 +Rp2222 +sa(dp2223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2224 +tp2225 +Rp2226 +sa(dp2227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2228 +tp2229 +Rp2230 +sa(dp2231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2232 +tp2233 +Rp2234 +sa(dp2235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2236 +tp2237 +Rp2238 +sa(dp2239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2240 +tp2241 +Rp2242 +sa(dp2243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2244 +tp2245 +Rp2246 +sa(dp2247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2248 +tp2249 +Rp2250 +sa(dp2251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2252 +tp2253 +Rp2254 +sa(dp2255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2256 +tp2257 +Rp2258 +sa(dp2259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2260 +tp2261 +Rp2262 +sa(dp2263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2264 +tp2265 +Rp2266 +sa(dp2267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2268 +tp2269 +Rp2270 +sa(dp2271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2272 +tp2273 +Rp2274 +sa(dp2275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2276 +tp2277 +Rp2278 +sa(dp2279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2280 +tp2281 +Rp2282 +sa(dp2283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2284 +tp2285 +Rp2286 +sa(dp2287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2288 +tp2289 +Rp2290 +sa(dp2291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2292 +tp2293 +Rp2294 +sa(dp2295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2296 +tp2297 +Rp2298 +sa(dp2299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2300 +tp2301 +Rp2302 +sa(dp2303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2304 +tp2305 +Rp2306 +sa(dp2307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2308 +tp2309 +Rp2310 +sa(dp2311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2312 +tp2313 +Rp2314 +sa(dp2315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2316 +tp2317 +Rp2318 +sa(dp2319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2320 +tp2321 +Rp2322 +sa(dp2323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2324 +tp2325 +Rp2326 +sa(dp2327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2328 +tp2329 +Rp2330 +sa(dp2331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2332 +tp2333 +Rp2334 +sa(dp2335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2336 +tp2337 +Rp2338 +sa(dp2339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2340 +tp2341 +Rp2342 +sa(dp2343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2344 +tp2345 +Rp2346 +sa(dp2347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2348 +tp2349 +Rp2350 +sa(dp2351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2352 +tp2353 +Rp2354 +sa(dp2355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2356 +tp2357 +Rp2358 +sa(dp2359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2360 +tp2361 +Rp2362 +sa(dp2363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2364 +tp2365 +Rp2366 +sa(dp2367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2368 +tp2369 +Rp2370 +sa(dp2371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2372 +tp2373 +Rp2374 +sa(dp2375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2376 +tp2377 +Rp2378 +sa(dp2379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2380 +tp2381 +Rp2382 +sa(dp2383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2384 +tp2385 +Rp2386 +sa(dp2387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2388 +tp2389 +Rp2390 +sa(dp2391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2392 +tp2393 +Rp2394 +sa(dp2395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2396 +tp2397 +Rp2398 +sa(dp2399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2400 +tp2401 +Rp2402 +sa(dp2403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2404 +tp2405 +Rp2406 +sa(dp2407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2408 +tp2409 +Rp2410 +sa(dp2411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2412 +tp2413 +Rp2414 +sa(dp2415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2416 +tp2417 +Rp2418 +sa(dp2419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2420 +tp2421 +Rp2422 +sa(dp2423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2424 +tp2425 +Rp2426 +sa(dp2427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2428 +tp2429 +Rp2430 +sa(dp2431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2432 +tp2433 +Rp2434 +sa(dp2435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2436 +tp2437 +Rp2438 +sa(dp2439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2440 +tp2441 +Rp2442 +sa(dp2443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2444 +tp2445 +Rp2446 +sa(dp2447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2448 +tp2449 +Rp2450 +sa(dp2451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2452 +tp2453 +Rp2454 +sa(dp2455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2456 +tp2457 +Rp2458 +sa(dp2459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2460 +tp2461 +Rp2462 +sa(dp2463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2464 +tp2465 +Rp2466 +sa(dp2467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2468 +tp2469 +Rp2470 +sa(dp2471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2472 +tp2473 +Rp2474 +sa(dp2475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2476 +tp2477 +Rp2478 +sa(dp2479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2480 +tp2481 +Rp2482 +sa(dp2483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2484 +tp2485 +Rp2486 +sa(dp2487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2488 +tp2489 +Rp2490 +sa(dp2491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2492 +tp2493 +Rp2494 +sa(dp2495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2496 +tp2497 +Rp2498 +sa(dp2499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2500 +tp2501 +Rp2502 +sa(dp2503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2504 +tp2505 +Rp2506 +sa(dp2507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2508 +tp2509 +Rp2510 +sa(dp2511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2512 +tp2513 +Rp2514 +sa(dp2515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2516 +tp2517 +Rp2518 +sa(dp2519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2520 +tp2521 +Rp2522 +sa(dp2523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2524 +tp2525 +Rp2526 +sa(dp2527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2528 +tp2529 +Rp2530 +sa(dp2531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2532 +tp2533 +Rp2534 +sa(dp2535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2536 +tp2537 +Rp2538 +sa(dp2539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2540 +tp2541 +Rp2542 +sa(dp2543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2544 +tp2545 +Rp2546 +sa(dp2547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2548 +tp2549 +Rp2550 +sa(dp2551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2552 +tp2553 +Rp2554 +sa(dp2555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2556 +tp2557 +Rp2558 +sa(dp2559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2560 +tp2561 +Rp2562 +sa(dp2563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2564 +tp2565 +Rp2566 +sa(dp2567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2568 +tp2569 +Rp2570 +sa(dp2571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2572 +tp2573 +Rp2574 +sa(dp2575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2576 +tp2577 +Rp2578 +sa(dp2579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2580 +tp2581 +Rp2582 +sa(dp2583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2584 +tp2585 +Rp2586 +sa(dp2587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2588 +tp2589 +Rp2590 +sa(dp2591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2592 +tp2593 +Rp2594 +sa(dp2595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2596 +tp2597 +Rp2598 +sa(dp2599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2600 +tp2601 +Rp2602 +sa(dp2603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2604 +tp2605 +Rp2606 +sa(dp2607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2608 +tp2609 +Rp2610 +sa(dp2611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2612 +tp2613 +Rp2614 +sa(dp2615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2616 +tp2617 +Rp2618 +sa(dp2619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2620 +tp2621 +Rp2622 +sa(dp2623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2624 +tp2625 +Rp2626 +sa(dp2627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2628 +tp2629 +Rp2630 +sa(dp2631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2632 +tp2633 +Rp2634 +sa(dp2635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2636 +tp2637 +Rp2638 +sa(dp2639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2640 +tp2641 +Rp2642 +sa(dp2643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2644 +tp2645 +Rp2646 +sa(dp2647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2648 +tp2649 +Rp2650 +sa(dp2651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2652 +tp2653 +Rp2654 +sa(dp2655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2656 +tp2657 +Rp2658 +sa(dp2659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2660 +tp2661 +Rp2662 +sa(dp2663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2664 +tp2665 +Rp2666 +sa(dp2667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2668 +tp2669 +Rp2670 +sa(dp2671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2672 +tp2673 +Rp2674 +sa(dp2675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2676 +tp2677 +Rp2678 +sa(dp2679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2680 +tp2681 +Rp2682 +sa(dp2683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2684 +tp2685 +Rp2686 +sa(dp2687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2688 +tp2689 +Rp2690 +sa(dp2691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2692 +tp2693 +Rp2694 +sa(dp2695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2696 +tp2697 +Rp2698 +sa(dp2699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2700 +tp2701 +Rp2702 +sa(dp2703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2704 +tp2705 +Rp2706 +sa(dp2707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2708 +tp2709 +Rp2710 +sa(dp2711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2712 +tp2713 +Rp2714 +sa(dp2715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2716 +tp2717 +Rp2718 +sa(dp2719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2720 +tp2721 +Rp2722 +sa(dp2723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2724 +tp2725 +Rp2726 +sa(dp2727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2728 +tp2729 +Rp2730 +sa(dp2731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2732 +tp2733 +Rp2734 +sa(dp2735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2736 +tp2737 +Rp2738 +sa(dp2739 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2740 +tp2741 +Rp2742 +sa(dp2743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2744 +tp2745 +Rp2746 +sa(dp2747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2748 +tp2749 +Rp2750 +sa(dp2751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2752 +tp2753 +Rp2754 +sa(dp2755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2756 +tp2757 +Rp2758 +sa(dp2759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2760 +tp2761 +Rp2762 +sa(dp2763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2764 +tp2765 +Rp2766 +sa(dp2767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2768 +tp2769 +Rp2770 +sa(dp2771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2772 +tp2773 +Rp2774 +sa(dp2775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2776 +tp2777 +Rp2778 +sa(dp2779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2780 +tp2781 +Rp2782 +sa(dp2783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2784 +tp2785 +Rp2786 +sa(dp2787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2788 +tp2789 +Rp2790 +sa(dp2791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2792 +tp2793 +Rp2794 +sa(dp2795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2796 +tp2797 +Rp2798 +sa(dp2799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2800 +tp2801 +Rp2802 +sa(dp2803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2804 +tp2805 +Rp2806 +sa(dp2807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2808 +tp2809 +Rp2810 +sa(dp2811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2812 +tp2813 +Rp2814 +sa(dp2815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2816 +tp2817 +Rp2818 +sa(dp2819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2820 +tp2821 +Rp2822 +sa(dp2823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2824 +tp2825 +Rp2826 +sa(dp2827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2828 +tp2829 +Rp2830 +sa(dp2831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2832 +tp2833 +Rp2834 +sa(dp2835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2836 +tp2837 +Rp2838 +sa(dp2839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2840 +tp2841 +Rp2842 +sa(dp2843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2844 +tp2845 +Rp2846 +sa(dp2847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2848 +tp2849 +Rp2850 +sa(dp2851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2852 +tp2853 +Rp2854 +sa(dp2855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2856 +tp2857 +Rp2858 +sa(dp2859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2860 +tp2861 +Rp2862 +sa(dp2863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2864 +tp2865 +Rp2866 +sa(dp2867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2868 +tp2869 +Rp2870 +sa(dp2871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2872 +tp2873 +Rp2874 +sa(dp2875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2876 +tp2877 +Rp2878 +sa(dp2879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2880 +tp2881 +Rp2882 +sa(dp2883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2884 +tp2885 +Rp2886 +sa(dp2887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2888 +tp2889 +Rp2890 +sa(dp2891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2892 +tp2893 +Rp2894 +sa(dp2895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2896 +tp2897 +Rp2898 +sa(dp2899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2900 +tp2901 +Rp2902 +sa(dp2903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2904 +tp2905 +Rp2906 +sa(dp2907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2908 +tp2909 +Rp2910 +sa(dp2911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2912 +tp2913 +Rp2914 +sa(dp2915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2916 +tp2917 +Rp2918 +sa(dp2919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2920 +tp2921 +Rp2922 +sa(dp2923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2924 +tp2925 +Rp2926 +sa(dp2927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2928 +tp2929 +Rp2930 +sa(dp2931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2932 +tp2933 +Rp2934 +sa(dp2935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2936 +tp2937 +Rp2938 +sa(dp2939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2940 +tp2941 +Rp2942 +sa(dp2943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2944 +tp2945 +Rp2946 +sa(dp2947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2948 +tp2949 +Rp2950 +sa(dp2951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2952 +tp2953 +Rp2954 +sa(dp2955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2956 +tp2957 +Rp2958 +sa(dp2959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2960 +tp2961 +Rp2962 +sa(dp2963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2964 +tp2965 +Rp2966 +sa(dp2967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2968 +tp2969 +Rp2970 +sa(dp2971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2972 +tp2973 +Rp2974 +sa(dp2975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2976 +tp2977 +Rp2978 +sa(dp2979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2980 +tp2981 +Rp2982 +sa(dp2983 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2984 +tp2985 +Rp2986 +sa(dp2987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2988 +tp2989 +Rp2990 +sa(dp2991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2992 +tp2993 +Rp2994 +sa(dp2995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2996 +tp2997 +Rp2998 +sa(dp2999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3000 +tp3001 +Rp3002 +sa(dp3003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3004 +tp3005 +Rp3006 +sa(dp3007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3008 +tp3009 +Rp3010 +sa(dp3011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3012 +tp3013 +Rp3014 +sa(dp3015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3016 +tp3017 +Rp3018 +sa(dp3019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3020 +tp3021 +Rp3022 +sa(dp3023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3024 +tp3025 +Rp3026 +sa(dp3027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3028 +tp3029 +Rp3030 +sa(dp3031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3032 +tp3033 +Rp3034 +sa(dp3035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3036 +tp3037 +Rp3038 +sa(dp3039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3040 +tp3041 +Rp3042 +sa(dp3043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3044 +tp3045 +Rp3046 +sa(dp3047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3048 +tp3049 +Rp3050 +sa(dp3051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3052 +tp3053 +Rp3054 +sa(dp3055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3056 +tp3057 +Rp3058 +sa(dp3059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3060 +tp3061 +Rp3062 +sa(dp3063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3064 +tp3065 +Rp3066 +sa(dp3067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3068 +tp3069 +Rp3070 +sa(dp3071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3072 +tp3073 +Rp3074 +sa(dp3075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3076 +tp3077 +Rp3078 +sa(dp3079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3080 +tp3081 +Rp3082 +sa(dp3083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3084 +tp3085 +Rp3086 +sa(dp3087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3088 +tp3089 +Rp3090 +sa(dp3091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3092 +tp3093 +Rp3094 +sa(dp3095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3096 +tp3097 +Rp3098 +sa(dp3099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3100 +tp3101 +Rp3102 +sa(dp3103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3104 +tp3105 +Rp3106 +sa(dp3107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3108 +tp3109 +Rp3110 +sa(dp3111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3112 +tp3113 +Rp3114 +sa(dp3115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3116 +tp3117 +Rp3118 +sa(dp3119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3120 +tp3121 +Rp3122 +sa(dp3123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3124 +tp3125 +Rp3126 +sa(dp3127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3128 +tp3129 +Rp3130 +sa(dp3131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3132 +tp3133 +Rp3134 +sa(dp3135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3136 +tp3137 +Rp3138 +sa(dp3139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3140 +tp3141 +Rp3142 +sa(dp3143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3144 +tp3145 +Rp3146 +sa(dp3147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3148 +tp3149 +Rp3150 +sa(dp3151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3152 +tp3153 +Rp3154 +sa(dp3155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3156 +tp3157 +Rp3158 +sa(dp3159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3160 +tp3161 +Rp3162 +sa(dp3163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3164 +tp3165 +Rp3166 +sa(dp3167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3168 +tp3169 +Rp3170 +sa(dp3171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3172 +tp3173 +Rp3174 +sa(dp3175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3176 +tp3177 +Rp3178 +sa(dp3179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3180 +tp3181 +Rp3182 +sa(dp3183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3184 +tp3185 +Rp3186 +sa(dp3187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3188 +tp3189 +Rp3190 +sa(dp3191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3192 +tp3193 +Rp3194 +sa(dp3195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3196 +tp3197 +Rp3198 +sa(dp3199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3200 +tp3201 +Rp3202 +sa(dp3203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3204 +tp3205 +Rp3206 +sa(dp3207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3208 +tp3209 +Rp3210 +sa(dp3211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3212 +tp3213 +Rp3214 +sa(dp3215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3216 +tp3217 +Rp3218 +sa(dp3219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3220 +tp3221 +Rp3222 +sa(dp3223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3224 +tp3225 +Rp3226 +sa(dp3227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3228 +tp3229 +Rp3230 +sa(dp3231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3232 +tp3233 +Rp3234 +sa(dp3235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3236 +tp3237 +Rp3238 +sa(dp3239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3240 +tp3241 +Rp3242 +sa(dp3243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3244 +tp3245 +Rp3246 +sa(dp3247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3248 +tp3249 +Rp3250 +sa(dp3251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3252 +tp3253 +Rp3254 +sa(dp3255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3256 +tp3257 +Rp3258 +sa(dp3259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3260 +tp3261 +Rp3262 +sa(dp3263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3264 +tp3265 +Rp3266 +sa(dp3267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3268 +tp3269 +Rp3270 +sa(dp3271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3272 +tp3273 +Rp3274 +sa(dp3275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3276 +tp3277 +Rp3278 +sa(dp3279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3280 +tp3281 +Rp3282 +sa(dp3283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3284 +tp3285 +Rp3286 +sa(dp3287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3288 +tp3289 +Rp3290 +sa(dp3291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3292 +tp3293 +Rp3294 +sa(dp3295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3296 +tp3297 +Rp3298 +sa(dp3299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3300 +tp3301 +Rp3302 +sa(dp3303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3304 +tp3305 +Rp3306 +sa(dp3307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3308 +tp3309 +Rp3310 +sa(dp3311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3312 +tp3313 +Rp3314 +sa(dp3315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3316 +tp3317 +Rp3318 +sa(dp3319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3320 +tp3321 +Rp3322 +sa(dp3323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3324 +tp3325 +Rp3326 +sa(dp3327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3328 +tp3329 +Rp3330 +sa(dp3331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3332 +tp3333 +Rp3334 +sa(dp3335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3336 +tp3337 +Rp3338 +sa(dp3339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3340 +tp3341 +Rp3342 +sa(dp3343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3344 +tp3345 +Rp3346 +sa(dp3347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3348 +tp3349 +Rp3350 +sa(dp3351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3352 +tp3353 +Rp3354 +sa(dp3355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3356 +tp3357 +Rp3358 +sa(dp3359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3360 +tp3361 +Rp3362 +sa(dp3363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3364 +tp3365 +Rp3366 +sa(dp3367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3368 +tp3369 +Rp3370 +sa(dp3371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3372 +tp3373 +Rp3374 +sa(dp3375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3376 +tp3377 +Rp3378 +sa(dp3379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3380 +tp3381 +Rp3382 +sa(dp3383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3384 +tp3385 +Rp3386 +sa(dp3387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3388 +tp3389 +Rp3390 +sa(dp3391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3392 +tp3393 +Rp3394 +sa(dp3395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3396 +tp3397 +Rp3398 +sa(dp3399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3400 +tp3401 +Rp3402 +sa(dp3403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3404 +tp3405 +Rp3406 +sa(dp3407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3408 +tp3409 +Rp3410 +sa(dp3411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3412 +tp3413 +Rp3414 +sa(dp3415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3416 +tp3417 +Rp3418 +sa(dp3419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3420 +tp3421 +Rp3422 +sa(dp3423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3424 +tp3425 +Rp3426 +sa(dp3427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3428 +tp3429 +Rp3430 +sa(dp3431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3432 +tp3433 +Rp3434 +sa(dp3435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3436 +tp3437 +Rp3438 +sa(dp3439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3440 +tp3441 +Rp3442 +sa(dp3443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3444 +tp3445 +Rp3446 +sa(dp3447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3448 +tp3449 +Rp3450 +sa(dp3451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3452 +tp3453 +Rp3454 +sa(dp3455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3456 +tp3457 +Rp3458 +sa(dp3459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3460 +tp3461 +Rp3462 +sa(dp3463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3464 +tp3465 +Rp3466 +sa(dp3467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3468 +tp3469 +Rp3470 +sa(dp3471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3472 +tp3473 +Rp3474 +sa(dp3475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3476 +tp3477 +Rp3478 +sa(dp3479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3480 +tp3481 +Rp3482 +sa(dp3483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3484 +tp3485 +Rp3486 +sa(dp3487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3488 +tp3489 +Rp3490 +sa(dp3491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3492 +tp3493 +Rp3494 +sa(dp3495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3496 +tp3497 +Rp3498 +sa(dp3499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3500 +tp3501 +Rp3502 +sa(dp3503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3504 +tp3505 +Rp3506 +sa(dp3507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3508 +tp3509 +Rp3510 +sa(dp3511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3512 +tp3513 +Rp3514 +sa(dp3515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3516 +tp3517 +Rp3518 +sa(dp3519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3520 +tp3521 +Rp3522 +sa(dp3523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3524 +tp3525 +Rp3526 +sa(dp3527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3528 +tp3529 +Rp3530 +sa(dp3531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3532 +tp3533 +Rp3534 +sa(dp3535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3536 +tp3537 +Rp3538 +sa(dp3539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3540 +tp3541 +Rp3542 +sa(dp3543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3544 +tp3545 +Rp3546 +sa(dp3547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3548 +tp3549 +Rp3550 +sa(dp3551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3552 +tp3553 +Rp3554 +sa(dp3555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3556 +tp3557 +Rp3558 +sa(dp3559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3560 +tp3561 +Rp3562 +sa(dp3563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3564 +tp3565 +Rp3566 +sa(dp3567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3568 +tp3569 +Rp3570 +sa(dp3571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3572 +tp3573 +Rp3574 +sa(dp3575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3576 +tp3577 +Rp3578 +sa(dp3579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3580 +tp3581 +Rp3582 +sa(dp3583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3584 +tp3585 +Rp3586 +sa(dp3587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3588 +tp3589 +Rp3590 +sa(dp3591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3592 +tp3593 +Rp3594 +sa(dp3595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3596 +tp3597 +Rp3598 +sa(dp3599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3600 +tp3601 +Rp3602 +sa(dp3603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3604 +tp3605 +Rp3606 +sa(dp3607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3608 +tp3609 +Rp3610 +sa(dp3611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3612 +tp3613 +Rp3614 +sa(dp3615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3616 +tp3617 +Rp3618 +sa(dp3619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3620 +tp3621 +Rp3622 +sa(dp3623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3624 +tp3625 +Rp3626 +sa(dp3627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3628 +tp3629 +Rp3630 +sa(dp3631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3632 +tp3633 +Rp3634 +sa(dp3635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3636 +tp3637 +Rp3638 +sa(dp3639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3640 +tp3641 +Rp3642 +sa(dp3643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3644 +tp3645 +Rp3646 +sa(dp3647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3648 +tp3649 +Rp3650 +sa(dp3651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3652 +tp3653 +Rp3654 +sa(dp3655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3656 +tp3657 +Rp3658 +sa(dp3659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3660 +tp3661 +Rp3662 +sa(dp3663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3664 +tp3665 +Rp3666 +sa(dp3667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3668 +tp3669 +Rp3670 +sa(dp3671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3672 +tp3673 +Rp3674 +sa(dp3675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3676 +tp3677 +Rp3678 +sa(dp3679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3680 +tp3681 +Rp3682 +sa(dp3683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3684 +tp3685 +Rp3686 +sa(dp3687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3688 +tp3689 +Rp3690 +sa(dp3691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3692 +tp3693 +Rp3694 +sa(dp3695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3696 +tp3697 +Rp3698 +sa(dp3699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3700 +tp3701 +Rp3702 +sa(dp3703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3704 +tp3705 +Rp3706 +sa(dp3707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3708 +tp3709 +Rp3710 +sa(dp3711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3712 +tp3713 +Rp3714 +sa(dp3715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3716 +tp3717 +Rp3718 +sa(dp3719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3720 +tp3721 +Rp3722 +sa(dp3723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3724 +tp3725 +Rp3726 +sa(dp3727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3728 +tp3729 +Rp3730 +sa(dp3731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3732 +tp3733 +Rp3734 +sa(dp3735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3736 +tp3737 +Rp3738 +sa(dp3739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3740 +tp3741 +Rp3742 +sa(dp3743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3744 +tp3745 +Rp3746 +sa(dp3747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3748 +tp3749 +Rp3750 +sa(dp3751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3752 +tp3753 +Rp3754 +sa(dp3755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3756 +tp3757 +Rp3758 +sa(dp3759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3760 +tp3761 +Rp3762 +sa(dp3763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3764 +tp3765 +Rp3766 +sa(dp3767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3768 +tp3769 +Rp3770 +sa(dp3771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3772 +tp3773 +Rp3774 +sa(dp3775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3776 +tp3777 +Rp3778 +sa(dp3779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3780 +tp3781 +Rp3782 +sa(dp3783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3784 +tp3785 +Rp3786 +sa(dp3787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3788 +tp3789 +Rp3790 +sa(dp3791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3792 +tp3793 +Rp3794 +sa(dp3795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3796 +tp3797 +Rp3798 +sa(dp3799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3800 +tp3801 +Rp3802 +sa(dp3803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3804 +tp3805 +Rp3806 +sa(dp3807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3808 +tp3809 +Rp3810 +sa(dp3811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3812 +tp3813 +Rp3814 +sa(dp3815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3816 +tp3817 +Rp3818 +sa(dp3819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3820 +tp3821 +Rp3822 +sa(dp3823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3824 +tp3825 +Rp3826 +sa(dp3827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3828 +tp3829 +Rp3830 +sa(dp3831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3832 +tp3833 +Rp3834 +sa(dp3835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3836 +tp3837 +Rp3838 +sa(dp3839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3840 +tp3841 +Rp3842 +sa(dp3843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3844 +tp3845 +Rp3846 +sa(dp3847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3848 +tp3849 +Rp3850 +sa(dp3851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3852 +tp3853 +Rp3854 +sa(dp3855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3856 +tp3857 +Rp3858 +sa(dp3859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3860 +tp3861 +Rp3862 +sa(dp3863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3864 +tp3865 +Rp3866 +sa(dp3867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3868 +tp3869 +Rp3870 +sa(dp3871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3872 +tp3873 +Rp3874 +sa(dp3875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3876 +tp3877 +Rp3878 +sa(dp3879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3880 +tp3881 +Rp3882 +sa(dp3883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3884 +tp3885 +Rp3886 +sa(dp3887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3888 +tp3889 +Rp3890 +sa(dp3891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3892 +tp3893 +Rp3894 +sa(dp3895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3896 +tp3897 +Rp3898 +sa(dp3899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3900 +tp3901 +Rp3902 +sa(dp3903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3904 +tp3905 +Rp3906 +sa(dp3907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3908 +tp3909 +Rp3910 +sa(dp3911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3912 +tp3913 +Rp3914 +sa(dp3915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3916 +tp3917 +Rp3918 +sa(dp3919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3920 +tp3921 +Rp3922 +sa(dp3923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3924 +tp3925 +Rp3926 +sa(dp3927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3928 +tp3929 +Rp3930 +sa(dp3931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3932 +tp3933 +Rp3934 +sa(dp3935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3936 +tp3937 +Rp3938 +sa(dp3939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3940 +tp3941 +Rp3942 +sa(dp3943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3944 +tp3945 +Rp3946 +sa(dp3947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3948 +tp3949 +Rp3950 +sa(dp3951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3952 +tp3953 +Rp3954 +sa(dp3955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3956 +tp3957 +Rp3958 +sa(dp3959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3960 +tp3961 +Rp3962 +sa(dp3963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3964 +tp3965 +Rp3966 +sa(dp3967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3968 +tp3969 +Rp3970 +sa(dp3971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3972 +tp3973 +Rp3974 +sa(dp3975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3976 +tp3977 +Rp3978 +sa(dp3979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3980 +tp3981 +Rp3982 +sa(dp3983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3984 +tp3985 +Rp3986 +sa(dp3987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3988 +tp3989 +Rp3990 +sa(dp3991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3992 +tp3993 +Rp3994 +sa(dp3995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3996 +tp3997 +Rp3998 +sa(dp3999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4000 +tp4001 +Rp4002 +sa(dp4003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4004 +tp4005 +Rp4006 +sa(dp4007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4008 +tp4009 +Rp4010 +sa(dp4011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4012 +tp4013 +Rp4014 +sa(dp4015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4016 +tp4017 +Rp4018 +sa(dp4019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4020 +tp4021 +Rp4022 +sa(dp4023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4024 +tp4025 +Rp4026 +sa(dp4027 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4028 +tp4029 +Rp4030 +sa(dp4031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4032 +tp4033 +Rp4034 +sa(dp4035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4036 +tp4037 +Rp4038 +sa(dp4039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4040 +tp4041 +Rp4042 +sa(dp4043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4044 +tp4045 +Rp4046 +sa(dp4047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4048 +tp4049 +Rp4050 +sa(dp4051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4052 +tp4053 +Rp4054 +sa(dp4055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4056 +tp4057 +Rp4058 +sa(dp4059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4060 +tp4061 +Rp4062 +sa(dp4063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4064 +tp4065 +Rp4066 +sa(dp4067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4068 +tp4069 +Rp4070 +sa(dp4071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4072 +tp4073 +Rp4074 +sa(dp4075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4076 +tp4077 +Rp4078 +sa(dp4079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4080 +tp4081 +Rp4082 +sa(dp4083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4084 +tp4085 +Rp4086 +sa(dp4087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4088 +tp4089 +Rp4090 +sa(dp4091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4092 +tp4093 +Rp4094 +sa(dp4095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4096 +tp4097 +Rp4098 +sa(dp4099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4100 +tp4101 +Rp4102 +sa(dp4103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4104 +tp4105 +Rp4106 +sa(dp4107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4108 +tp4109 +Rp4110 +sa(dp4111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4112 +tp4113 +Rp4114 +sa(dp4115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4116 +tp4117 +Rp4118 +sa(dp4119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4120 +tp4121 +Rp4122 +sa(dp4123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4124 +tp4125 +Rp4126 +sa(dp4127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4128 +tp4129 +Rp4130 +sa(dp4131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4132 +tp4133 +Rp4134 +sa(dp4135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4136 +tp4137 +Rp4138 +sa(dp4139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4140 +tp4141 +Rp4142 +sa(dp4143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4144 +tp4145 +Rp4146 +sa(dp4147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4148 +tp4149 +Rp4150 +sa(dp4151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4152 +tp4153 +Rp4154 +sa(dp4155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4156 +tp4157 +Rp4158 +sa(dp4159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4160 +tp4161 +Rp4162 +sa(dp4163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4164 +tp4165 +Rp4166 +sa(dp4167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4168 +tp4169 +Rp4170 +sa(dp4171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4172 +tp4173 +Rp4174 +sa(dp4175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4176 +tp4177 +Rp4178 +sa(dp4179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4180 +tp4181 +Rp4182 +sa(dp4183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4184 +tp4185 +Rp4186 +sa(dp4187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4188 +tp4189 +Rp4190 +sa(dp4191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4192 +tp4193 +Rp4194 +sa(dp4195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4196 +tp4197 +Rp4198 +sa(dp4199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4200 +tp4201 +Rp4202 +sa(dp4203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4204 +tp4205 +Rp4206 +sa(dp4207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4208 +tp4209 +Rp4210 +sa(dp4211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4212 +tp4213 +Rp4214 +sa(dp4215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4216 +tp4217 +Rp4218 +sa(dp4219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4220 +tp4221 +Rp4222 +sa(dp4223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4224 +tp4225 +Rp4226 +sa(dp4227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4228 +tp4229 +Rp4230 +sa(dp4231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4232 +tp4233 +Rp4234 +sa(dp4235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4236 +tp4237 +Rp4238 +sa(dp4239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4240 +tp4241 +Rp4242 +sa(dp4243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4244 +tp4245 +Rp4246 +sa(dp4247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4248 +tp4249 +Rp4250 +sa(dp4251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4252 +tp4253 +Rp4254 +sa(dp4255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4256 +tp4257 +Rp4258 +sa(dp4259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4260 +tp4261 +Rp4262 +sa(dp4263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4264 +tp4265 +Rp4266 +sa(dp4267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4268 +tp4269 +Rp4270 +sa(dp4271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4272 +tp4273 +Rp4274 +sa(dp4275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4276 +tp4277 +Rp4278 +sa(dp4279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4280 +tp4281 +Rp4282 +sa(dp4283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4284 +tp4285 +Rp4286 +sa(dp4287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4288 +tp4289 +Rp4290 +sa(dp4291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4292 +tp4293 +Rp4294 +sa(dp4295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4296 +tp4297 +Rp4298 +sa(dp4299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4300 +tp4301 +Rp4302 +sa(dp4303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4304 +tp4305 +Rp4306 +sa(dp4307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4308 +tp4309 +Rp4310 +sa(dp4311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4312 +tp4313 +Rp4314 +sa(dp4315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4316 +tp4317 +Rp4318 +sa(dp4319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4320 +tp4321 +Rp4322 +sa(dp4323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4324 +tp4325 +Rp4326 +sa(dp4327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4328 +tp4329 +Rp4330 +sa(dp4331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4332 +tp4333 +Rp4334 +sa(dp4335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4336 +tp4337 +Rp4338 +sa(dp4339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4340 +tp4341 +Rp4342 +sa(dp4343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4344 +tp4345 +Rp4346 +sa(dp4347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4348 +tp4349 +Rp4350 +sa(dp4351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4352 +tp4353 +Rp4354 +sa(dp4355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4356 +tp4357 +Rp4358 +sa(dp4359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4360 +tp4361 +Rp4362 +sa(dp4363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4364 +tp4365 +Rp4366 +sa(dp4367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4368 +tp4369 +Rp4370 +sa(dp4371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4372 +tp4373 +Rp4374 +sa(dp4375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4376 +tp4377 +Rp4378 +sa(dp4379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4380 +tp4381 +Rp4382 +sa(dp4383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4384 +tp4385 +Rp4386 +sa(dp4387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4388 +tp4389 +Rp4390 +sa(dp4391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4392 +tp4393 +Rp4394 +sa(dp4395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4396 +tp4397 +Rp4398 +sa(dp4399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4400 +tp4401 +Rp4402 +sa(dp4403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4404 +tp4405 +Rp4406 +sa(dp4407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4408 +tp4409 +Rp4410 +sa(dp4411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4412 +tp4413 +Rp4414 +sa(dp4415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4416 +tp4417 +Rp4418 +sa(dp4419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4420 +tp4421 +Rp4422 +sa(dp4423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4424 +tp4425 +Rp4426 +sa(dp4427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4428 +tp4429 +Rp4430 +sa(dp4431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4432 +tp4433 +Rp4434 +sa(dp4435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4436 +tp4437 +Rp4438 +sa(dp4439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4440 +tp4441 +Rp4442 +sa(dp4443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4444 +tp4445 +Rp4446 +sa(dp4447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4448 +tp4449 +Rp4450 +sa(dp4451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4452 +tp4453 +Rp4454 +sa(dp4455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4456 +tp4457 +Rp4458 +sa(dp4459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4460 +tp4461 +Rp4462 +sa(dp4463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4464 +tp4465 +Rp4466 +sa(dp4467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4468 +tp4469 +Rp4470 +sa(dp4471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4472 +tp4473 +Rp4474 +sa(dp4475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4476 +tp4477 +Rp4478 +sa(dp4479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4480 +tp4481 +Rp4482 +sa(dp4483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4484 +tp4485 +Rp4486 +sa(dp4487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4488 +tp4489 +Rp4490 +sa(dp4491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4492 +tp4493 +Rp4494 +sa(dp4495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4496 +tp4497 +Rp4498 +sa(dp4499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4500 +tp4501 +Rp4502 +sa(dp4503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4504 +tp4505 +Rp4506 +sa(dp4507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4508 +tp4509 +Rp4510 +sa(dp4511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4512 +tp4513 +Rp4514 +sa(dp4515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4516 +tp4517 +Rp4518 +sa(dp4519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4520 +tp4521 +Rp4522 +sa(dp4523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4524 +tp4525 +Rp4526 +sa(dp4527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4528 +tp4529 +Rp4530 +sa(dp4531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4532 +tp4533 +Rp4534 +sa(dp4535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4536 +tp4537 +Rp4538 +sa(dp4539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4540 +tp4541 +Rp4542 +sa(dp4543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4544 +tp4545 +Rp4546 +sa(dp4547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4548 +tp4549 +Rp4550 +sa(dp4551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4552 +tp4553 +Rp4554 +sa(dp4555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4556 +tp4557 +Rp4558 +sa(dp4559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4560 +tp4561 +Rp4562 +sa(dp4563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4564 +tp4565 +Rp4566 +sa(dp4567 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4568 +tp4569 +Rp4570 +sa(dp4571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4572 +tp4573 +Rp4574 +sa(dp4575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4576 +tp4577 +Rp4578 +sa(dp4579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4580 +tp4581 +Rp4582 +sa(dp4583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4584 +tp4585 +Rp4586 +sa(dp4587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4588 +tp4589 +Rp4590 +sa(dp4591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4592 +tp4593 +Rp4594 +sa(dp4595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4596 +tp4597 +Rp4598 +sa(dp4599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4600 +tp4601 +Rp4602 +sa(dp4603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4604 +tp4605 +Rp4606 +sa(dp4607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4608 +tp4609 +Rp4610 +sa(dp4611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4612 +tp4613 +Rp4614 +sa(dp4615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4616 +tp4617 +Rp4618 +sa(dp4619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4620 +tp4621 +Rp4622 +sa(dp4623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4624 +tp4625 +Rp4626 +sa(dp4627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4628 +tp4629 +Rp4630 +sa(dp4631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4632 +tp4633 +Rp4634 +sa(dp4635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4636 +tp4637 +Rp4638 +sa(dp4639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4640 +tp4641 +Rp4642 +sa(dp4643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4644 +tp4645 +Rp4646 +sa(dp4647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4648 +tp4649 +Rp4650 +sa(dp4651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4652 +tp4653 +Rp4654 +sa(dp4655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4656 +tp4657 +Rp4658 +sa(dp4659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4660 +tp4661 +Rp4662 +sa(dp4663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4664 +tp4665 +Rp4666 +sa(dp4667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4668 +tp4669 +Rp4670 +sa(dp4671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4672 +tp4673 +Rp4674 +sa(dp4675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4676 +tp4677 +Rp4678 +sa(dp4679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4680 +tp4681 +Rp4682 +sa(dp4683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4684 +tp4685 +Rp4686 +sa(dp4687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4688 +tp4689 +Rp4690 +sa(dp4691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4692 +tp4693 +Rp4694 +sa(dp4695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4696 +tp4697 +Rp4698 +sa(dp4699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4700 +tp4701 +Rp4702 +sa(dp4703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4704 +tp4705 +Rp4706 +sa(dp4707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4708 +tp4709 +Rp4710 +sa(dp4711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4712 +tp4713 +Rp4714 +sa(dp4715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4716 +tp4717 +Rp4718 +sa(dp4719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4720 +tp4721 +Rp4722 +sa(dp4723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4724 +tp4725 +Rp4726 +sa(dp4727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4728 +tp4729 +Rp4730 +sa(dp4731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4732 +tp4733 +Rp4734 +sa(dp4735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4736 +tp4737 +Rp4738 +sa(dp4739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4740 +tp4741 +Rp4742 +sa(dp4743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4744 +tp4745 +Rp4746 +sa(dp4747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4748 +tp4749 +Rp4750 +sa(dp4751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4752 +tp4753 +Rp4754 +sa(dp4755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4756 +tp4757 +Rp4758 +sa(dp4759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4760 +tp4761 +Rp4762 +sa(dp4763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4764 +tp4765 +Rp4766 +sa(dp4767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4768 +tp4769 +Rp4770 +sa(dp4771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4772 +tp4773 +Rp4774 +sa(dp4775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4776 +tp4777 +Rp4778 +sa(dp4779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4780 +tp4781 +Rp4782 +sa(dp4783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4784 +tp4785 +Rp4786 +sa(dp4787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4788 +tp4789 +Rp4790 +sa(dp4791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4792 +tp4793 +Rp4794 +sa(dp4795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4796 +tp4797 +Rp4798 +sa(dp4799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4800 +tp4801 +Rp4802 +sa(dp4803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4804 +tp4805 +Rp4806 +sa(dp4807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4808 +tp4809 +Rp4810 +sa(dp4811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4812 +tp4813 +Rp4814 +sa(dp4815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4816 +tp4817 +Rp4818 +sa(dp4819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4820 +tp4821 +Rp4822 +sa(dp4823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4824 +tp4825 +Rp4826 +sa(dp4827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4828 +tp4829 +Rp4830 +sa(dp4831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4832 +tp4833 +Rp4834 +sa(dp4835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4836 +tp4837 +Rp4838 +sa(dp4839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4840 +tp4841 +Rp4842 +sa(dp4843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4844 +tp4845 +Rp4846 +sa(dp4847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4848 +tp4849 +Rp4850 +sa(dp4851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4852 +tp4853 +Rp4854 +sa(dp4855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4856 +tp4857 +Rp4858 +sa(dp4859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4860 +tp4861 +Rp4862 +sa(dp4863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4864 +tp4865 +Rp4866 +sa(dp4867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4868 +tp4869 +Rp4870 +sa(dp4871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4872 +tp4873 +Rp4874 +sa(dp4875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4876 +tp4877 +Rp4878 +sa(dp4879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4880 +tp4881 +Rp4882 +sa(dp4883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4884 +tp4885 +Rp4886 +sa(dp4887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4888 +tp4889 +Rp4890 +sa(dp4891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4892 +tp4893 +Rp4894 +sa(dp4895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4896 +tp4897 +Rp4898 +sa(dp4899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4900 +tp4901 +Rp4902 +sa(dp4903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4904 +tp4905 +Rp4906 +sa(dp4907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4908 +tp4909 +Rp4910 +sa(dp4911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4912 +tp4913 +Rp4914 +sa(dp4915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4916 +tp4917 +Rp4918 +sa(dp4919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4920 +tp4921 +Rp4922 +sa(dp4923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4924 +tp4925 +Rp4926 +sa(dp4927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4928 +tp4929 +Rp4930 +sa(dp4931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4932 +tp4933 +Rp4934 +sa(dp4935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4936 +tp4937 +Rp4938 +sa(dp4939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4940 +tp4941 +Rp4942 +sa(dp4943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4944 +tp4945 +Rp4946 +sa(dp4947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4948 +tp4949 +Rp4950 +sa(dp4951 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4952 +tp4953 +Rp4954 +sa(dp4955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4956 +tp4957 +Rp4958 +sa(dp4959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4960 +tp4961 +Rp4962 +sa(dp4963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4964 +tp4965 +Rp4966 +sa(dp4967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4968 +tp4969 +Rp4970 +sa(dp4971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4972 +tp4973 +Rp4974 +sa(dp4975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4976 +tp4977 +Rp4978 +sa(dp4979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4980 +tp4981 +Rp4982 +sa(dp4983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4984 +tp4985 +Rp4986 +sa(dp4987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4988 +tp4989 +Rp4990 +sa(dp4991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4992 +tp4993 +Rp4994 +sa(dp4995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4996 +tp4997 +Rp4998 +sa(dp4999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5000 +tp5001 +Rp5002 +sa(dp5003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5004 +tp5005 +Rp5006 +sa(dp5007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5008 +tp5009 +Rp5010 +sa(dp5011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5012 +tp5013 +Rp5014 +sa(dp5015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5016 +tp5017 +Rp5018 +sa(dp5019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5020 +tp5021 +Rp5022 +sa(dp5023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5024 +tp5025 +Rp5026 +sa(dp5027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5028 +tp5029 +Rp5030 +sa(dp5031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5032 +tp5033 +Rp5034 +sa(dp5035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5036 +tp5037 +Rp5038 +sa(dp5039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5040 +tp5041 +Rp5042 +sa(dp5043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5044 +tp5045 +Rp5046 +sa(dp5047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5048 +tp5049 +Rp5050 +sa(dp5051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5052 +tp5053 +Rp5054 +sa(dp5055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5056 +tp5057 +Rp5058 +sa(dp5059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5060 +tp5061 +Rp5062 +sa(dp5063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5064 +tp5065 +Rp5066 +sa(dp5067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5068 +tp5069 +Rp5070 +sa(dp5071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5072 +tp5073 +Rp5074 +sa(dp5075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5076 +tp5077 +Rp5078 +sa(dp5079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5080 +tp5081 +Rp5082 +sa(dp5083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5084 +tp5085 +Rp5086 +sa(dp5087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5088 +tp5089 +Rp5090 +sa(dp5091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5092 +tp5093 +Rp5094 +sa(dp5095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5096 +tp5097 +Rp5098 +sa(dp5099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5100 +tp5101 +Rp5102 +sa(dp5103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5104 +tp5105 +Rp5106 +sa(dp5107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5108 +tp5109 +Rp5110 +sa(dp5111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5112 +tp5113 +Rp5114 +sa(dp5115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5116 +tp5117 +Rp5118 +sa(dp5119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5120 +tp5121 +Rp5122 +sa(dp5123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5124 +tp5125 +Rp5126 +sa(dp5127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5128 +tp5129 +Rp5130 +sa(dp5131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5132 +tp5133 +Rp5134 +sa(dp5135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5136 +tp5137 +Rp5138 +sa(dp5139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5140 +tp5141 +Rp5142 +sa(dp5143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5144 +tp5145 +Rp5146 +sa(dp5147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5148 +tp5149 +Rp5150 +sa(dp5151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5152 +tp5153 +Rp5154 +sa(dp5155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5156 +tp5157 +Rp5158 +sa(dp5159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5160 +tp5161 +Rp5162 +sa(dp5163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5164 +tp5165 +Rp5166 +sa(dp5167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5168 +tp5169 +Rp5170 +sa(dp5171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5172 +tp5173 +Rp5174 +sa(dp5175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5176 +tp5177 +Rp5178 +sa(dp5179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5180 +tp5181 +Rp5182 +sa(dp5183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5184 +tp5185 +Rp5186 +sa(dp5187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5188 +tp5189 +Rp5190 +sa(dp5191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5192 +tp5193 +Rp5194 +sa(dp5195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5196 +tp5197 +Rp5198 +sa(dp5199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5200 +tp5201 +Rp5202 +sa(dp5203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5204 +tp5205 +Rp5206 +sa(dp5207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5208 +tp5209 +Rp5210 +sa(dp5211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5212 +tp5213 +Rp5214 +sa(dp5215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5216 +tp5217 +Rp5218 +sa(dp5219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5220 +tp5221 +Rp5222 +sa(dp5223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5224 +tp5225 +Rp5226 +sa(dp5227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5228 +tp5229 +Rp5230 +sa(dp5231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5232 +tp5233 +Rp5234 +sa(dp5235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5236 +tp5237 +Rp5238 +sa(dp5239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5240 +tp5241 +Rp5242 +sa(dp5243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5244 +tp5245 +Rp5246 +sa(dp5247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5248 +tp5249 +Rp5250 +sa(dp5251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5252 +tp5253 +Rp5254 +sa(dp5255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5256 +tp5257 +Rp5258 +sa(dp5259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5260 +tp5261 +Rp5262 +sa(dp5263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5264 +tp5265 +Rp5266 +sa(dp5267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5268 +tp5269 +Rp5270 +sa(dp5271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5272 +tp5273 +Rp5274 +sa(dp5275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5276 +tp5277 +Rp5278 +sa(dp5279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5280 +tp5281 +Rp5282 +sa(dp5283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5284 +tp5285 +Rp5286 +sa(dp5287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5288 +tp5289 +Rp5290 +sa(dp5291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5292 +tp5293 +Rp5294 +sa(dp5295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5296 +tp5297 +Rp5298 +sa(dp5299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5300 +tp5301 +Rp5302 +sa(dp5303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5304 +tp5305 +Rp5306 +sa(dp5307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5308 +tp5309 +Rp5310 +sa(dp5311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5312 +tp5313 +Rp5314 +sa(dp5315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5316 +tp5317 +Rp5318 +sa(dp5319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5320 +tp5321 +Rp5322 +sa(dp5323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5324 +tp5325 +Rp5326 +sa(dp5327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5328 +tp5329 +Rp5330 +sa(dp5331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5332 +tp5333 +Rp5334 +sa(dp5335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5336 +tp5337 +Rp5338 +sa(dp5339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5340 +tp5341 +Rp5342 +sa(dp5343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5344 +tp5345 +Rp5346 +sa(dp5347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5348 +tp5349 +Rp5350 +sa(dp5351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5352 +tp5353 +Rp5354 +sa(dp5355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5356 +tp5357 +Rp5358 +sa(dp5359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5360 +tp5361 +Rp5362 +sa(dp5363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5364 +tp5365 +Rp5366 +sa(dp5367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5368 +tp5369 +Rp5370 +sa(dp5371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5372 +tp5373 +Rp5374 +sa(dp5375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5376 +tp5377 +Rp5378 +sa(dp5379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5380 +tp5381 +Rp5382 +sa(dp5383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5384 +tp5385 +Rp5386 +sa(dp5387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5388 +tp5389 +Rp5390 +sa(dp5391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5392 +tp5393 +Rp5394 +sa(dp5395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5396 +tp5397 +Rp5398 +sa(dp5399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5400 +tp5401 +Rp5402 +sa(dp5403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5404 +tp5405 +Rp5406 +sa(dp5407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5408 +tp5409 +Rp5410 +sa(dp5411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5412 +tp5413 +Rp5414 +sa(dp5415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5416 +tp5417 +Rp5418 +sa(dp5419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5420 +tp5421 +Rp5422 +sa(dp5423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5424 +tp5425 +Rp5426 +sa(dp5427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5428 +tp5429 +Rp5430 +sa(dp5431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5432 +tp5433 +Rp5434 +sa(dp5435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5436 +tp5437 +Rp5438 +sa(dp5439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5440 +tp5441 +Rp5442 +sa(dp5443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5444 +tp5445 +Rp5446 +sa(dp5447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5448 +tp5449 +Rp5450 +sa(dp5451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5452 +tp5453 +Rp5454 +sa(dp5455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5456 +tp5457 +Rp5458 +sa(dp5459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5460 +tp5461 +Rp5462 +sa(dp5463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5464 +tp5465 +Rp5466 +sa(dp5467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5468 +tp5469 +Rp5470 +sa(dp5471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5472 +tp5473 +Rp5474 +sa(dp5475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5476 +tp5477 +Rp5478 +sa(dp5479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5480 +tp5481 +Rp5482 +sa(dp5483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5484 +tp5485 +Rp5486 +sa(dp5487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5488 +tp5489 +Rp5490 +sa(dp5491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5492 +tp5493 +Rp5494 +sa(dp5495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5496 +tp5497 +Rp5498 +sa(dp5499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5500 +tp5501 +Rp5502 +sa(dp5503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5504 +tp5505 +Rp5506 +sa(dp5507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5508 +tp5509 +Rp5510 +sa(dp5511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5512 +tp5513 +Rp5514 +sa(dp5515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5516 +tp5517 +Rp5518 +sa(dp5519 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5520 +tp5521 +Rp5522 +sa(dp5523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5524 +tp5525 +Rp5526 +sa(dp5527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5528 +tp5529 +Rp5530 +sa(dp5531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5532 +tp5533 +Rp5534 +sa(dp5535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5536 +tp5537 +Rp5538 +sa(dp5539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5540 +tp5541 +Rp5542 +sa(dp5543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5544 +tp5545 +Rp5546 +sa(dp5547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5548 +tp5549 +Rp5550 +sa(dp5551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5552 +tp5553 +Rp5554 +sa(dp5555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5556 +tp5557 +Rp5558 +sa(dp5559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5560 +tp5561 +Rp5562 +sa(dp5563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5564 +tp5565 +Rp5566 +sa(dp5567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5568 +tp5569 +Rp5570 +sa(dp5571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5572 +tp5573 +Rp5574 +sa(dp5575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5576 +tp5577 +Rp5578 +sa(dp5579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5580 +tp5581 +Rp5582 +sa(dp5583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5584 +tp5585 +Rp5586 +sa(dp5587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5588 +tp5589 +Rp5590 +sa(dp5591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5592 +tp5593 +Rp5594 +sa(dp5595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5596 +tp5597 +Rp5598 +sa(dp5599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5600 +tp5601 +Rp5602 +sa(dp5603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5604 +tp5605 +Rp5606 +sa(dp5607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5608 +tp5609 +Rp5610 +sa(dp5611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5612 +tp5613 +Rp5614 +sa(dp5615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5616 +tp5617 +Rp5618 +sa(dp5619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5620 +tp5621 +Rp5622 +sa(dp5623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5624 +tp5625 +Rp5626 +sa(dp5627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5628 +tp5629 +Rp5630 +sa(dp5631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5632 +tp5633 +Rp5634 +sa(dp5635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5636 +tp5637 +Rp5638 +sa(dp5639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5640 +tp5641 +Rp5642 +sa(dp5643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5644 +tp5645 +Rp5646 +sa(dp5647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5648 +tp5649 +Rp5650 +sa(dp5651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5652 +tp5653 +Rp5654 +sa(dp5655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5656 +tp5657 +Rp5658 +sa(dp5659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5660 +tp5661 +Rp5662 +sa(dp5663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5664 +tp5665 +Rp5666 +sa(dp5667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5668 +tp5669 +Rp5670 +sa(dp5671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5672 +tp5673 +Rp5674 +sa(dp5675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5676 +tp5677 +Rp5678 +sa(dp5679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5680 +tp5681 +Rp5682 +sa(dp5683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5684 +tp5685 +Rp5686 +sa(dp5687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5688 +tp5689 +Rp5690 +sa(dp5691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5692 +tp5693 +Rp5694 +sa(dp5695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5696 +tp5697 +Rp5698 +sa(dp5699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5700 +tp5701 +Rp5702 +sa(dp5703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5704 +tp5705 +Rp5706 +sa(dp5707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5708 +tp5709 +Rp5710 +sa(dp5711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5712 +tp5713 +Rp5714 +sa(dp5715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5716 +tp5717 +Rp5718 +sa(dp5719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5720 +tp5721 +Rp5722 +sa(dp5723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5724 +tp5725 +Rp5726 +sa(dp5727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5728 +tp5729 +Rp5730 +sa(dp5731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5732 +tp5733 +Rp5734 +sa(dp5735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5736 +tp5737 +Rp5738 +sa(dp5739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5740 +tp5741 +Rp5742 +sa(dp5743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5744 +tp5745 +Rp5746 +sa(dp5747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5748 +tp5749 +Rp5750 +sa(dp5751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5752 +tp5753 +Rp5754 +sa(dp5755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5756 +tp5757 +Rp5758 +sa(dp5759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5760 +tp5761 +Rp5762 +sa(dp5763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5764 +tp5765 +Rp5766 +sa(dp5767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5768 +tp5769 +Rp5770 +sa(dp5771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5772 +tp5773 +Rp5774 +sa(dp5775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5776 +tp5777 +Rp5778 +sa(dp5779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5780 +tp5781 +Rp5782 +sa(dp5783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5784 +tp5785 +Rp5786 +sa(dp5787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5788 +tp5789 +Rp5790 +sa(dp5791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5792 +tp5793 +Rp5794 +sa(dp5795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5796 +tp5797 +Rp5798 +sa(dp5799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5800 +tp5801 +Rp5802 +sa(dp5803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5804 +tp5805 +Rp5806 +sa(dp5807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5808 +tp5809 +Rp5810 +sa(dp5811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5812 +tp5813 +Rp5814 +sa(dp5815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5816 +tp5817 +Rp5818 +sa(dp5819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5820 +tp5821 +Rp5822 +sa(dp5823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5824 +tp5825 +Rp5826 +sa(dp5827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5828 +tp5829 +Rp5830 +sa(dp5831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5832 +tp5833 +Rp5834 +sa(dp5835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5836 +tp5837 +Rp5838 +sa(dp5839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5840 +tp5841 +Rp5842 +sa(dp5843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5844 +tp5845 +Rp5846 +sa(dp5847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5848 +tp5849 +Rp5850 +sa(dp5851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5852 +tp5853 +Rp5854 +sa(dp5855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5856 +tp5857 +Rp5858 +sa(dp5859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5860 +tp5861 +Rp5862 +sa(dp5863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5864 +tp5865 +Rp5866 +sa(dp5867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5868 +tp5869 +Rp5870 +sa(dp5871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5872 +tp5873 +Rp5874 +sa(dp5875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5876 +tp5877 +Rp5878 +sa(dp5879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5880 +tp5881 +Rp5882 +sa(dp5883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5884 +tp5885 +Rp5886 +sa(dp5887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5888 +tp5889 +Rp5890 +sa(dp5891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5892 +tp5893 +Rp5894 +sa(dp5895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5896 +tp5897 +Rp5898 +sa(dp5899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5900 +tp5901 +Rp5902 +sa(dp5903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5904 +tp5905 +Rp5906 +sa(dp5907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5908 +tp5909 +Rp5910 +sa(dp5911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5912 +tp5913 +Rp5914 +sa(dp5915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5916 +tp5917 +Rp5918 +sa(dp5919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5920 +tp5921 +Rp5922 +sa(dp5923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5924 +tp5925 +Rp5926 +sa(dp5927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5928 +tp5929 +Rp5930 +sa(dp5931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5932 +tp5933 +Rp5934 +sa(dp5935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5936 +tp5937 +Rp5938 +sa(dp5939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5940 +tp5941 +Rp5942 +sa(dp5943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5944 +tp5945 +Rp5946 +sa(dp5947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5948 +tp5949 +Rp5950 +sa(dp5951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5952 +tp5953 +Rp5954 +sa(dp5955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5956 +tp5957 +Rp5958 +sa(dp5959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5960 +tp5961 +Rp5962 +sa(dp5963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5964 +tp5965 +Rp5966 +sa(dp5967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5968 +tp5969 +Rp5970 +sa(dp5971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5972 +tp5973 +Rp5974 +sa(dp5975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5976 +tp5977 +Rp5978 +sa(dp5979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5980 +tp5981 +Rp5982 +sa(dp5983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5984 +tp5985 +Rp5986 +sa(dp5987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5988 +tp5989 +Rp5990 +sa(dp5991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5992 +tp5993 +Rp5994 +sa(dp5995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5996 +tp5997 +Rp5998 +sa(dp5999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6000 +tp6001 +Rp6002 +sa(dp6003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6004 +tp6005 +Rp6006 +sa(dp6007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6008 +tp6009 +Rp6010 +sa(dp6011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6012 +tp6013 +Rp6014 +sa(dp6015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6016 +tp6017 +Rp6018 +sa(dp6019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6020 +tp6021 +Rp6022 +sa(dp6023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6024 +tp6025 +Rp6026 +sa(dp6027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6028 +tp6029 +Rp6030 +sa(dp6031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6032 +tp6033 +Rp6034 +sa(dp6035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6036 +tp6037 +Rp6038 +sa(dp6039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6040 +tp6041 +Rp6042 +sa(dp6043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6044 +tp6045 +Rp6046 +sa(dp6047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6048 +tp6049 +Rp6050 +sa(dp6051 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6052 +tp6053 +Rp6054 +sa(dp6055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6056 +tp6057 +Rp6058 +sa(dp6059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6060 +tp6061 +Rp6062 +sa(dp6063 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6064 +tp6065 +Rp6066 +sa(dp6067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6068 +tp6069 +Rp6070 +sa(dp6071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6072 +tp6073 +Rp6074 +sa(dp6075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6076 +tp6077 +Rp6078 +sa(dp6079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6080 +tp6081 +Rp6082 +sa(dp6083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6084 +tp6085 +Rp6086 +sa(dp6087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6088 +tp6089 +Rp6090 +sa(dp6091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6092 +tp6093 +Rp6094 +sa(dp6095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6096 +tp6097 +Rp6098 +sa(dp6099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6100 +tp6101 +Rp6102 +sa(dp6103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6104 +tp6105 +Rp6106 +sa(dp6107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6108 +tp6109 +Rp6110 +sa(dp6111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6112 +tp6113 +Rp6114 +sa(dp6115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6116 +tp6117 +Rp6118 +sa(dp6119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6120 +tp6121 +Rp6122 +sa(dp6123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6124 +tp6125 +Rp6126 +sa(dp6127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6128 +tp6129 +Rp6130 +sa(dp6131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6132 +tp6133 +Rp6134 +sa(dp6135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6136 +tp6137 +Rp6138 +sa(dp6139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6140 +tp6141 +Rp6142 +sa(dp6143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6144 +tp6145 +Rp6146 +sa(dp6147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6148 +tp6149 +Rp6150 +sa(dp6151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6152 +tp6153 +Rp6154 +sa(dp6155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6156 +tp6157 +Rp6158 +sa(dp6159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6160 +tp6161 +Rp6162 +sa(dp6163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6164 +tp6165 +Rp6166 +sa(dp6167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6168 +tp6169 +Rp6170 +sa(dp6171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6172 +tp6173 +Rp6174 +sa(dp6175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6176 +tp6177 +Rp6178 +sa(dp6179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6180 +tp6181 +Rp6182 +sa(dp6183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6184 +tp6185 +Rp6186 +sa(dp6187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6188 +tp6189 +Rp6190 +sa(dp6191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6192 +tp6193 +Rp6194 +sa(dp6195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6196 +tp6197 +Rp6198 +sa(dp6199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6200 +tp6201 +Rp6202 +sa(dp6203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6204 +tp6205 +Rp6206 +sa(dp6207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6208 +tp6209 +Rp6210 +sa(dp6211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6212 +tp6213 +Rp6214 +sa(dp6215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6216 +tp6217 +Rp6218 +sa(dp6219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6220 +tp6221 +Rp6222 +sa(dp6223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6224 +tp6225 +Rp6226 +sa(dp6227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6228 +tp6229 +Rp6230 +sa(dp6231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6232 +tp6233 +Rp6234 +sa(dp6235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6236 +tp6237 +Rp6238 +sa(dp6239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6240 +tp6241 +Rp6242 +sa(dp6243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6244 +tp6245 +Rp6246 +sa(dp6247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6248 +tp6249 +Rp6250 +sa(dp6251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6252 +tp6253 +Rp6254 +sa(dp6255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6256 +tp6257 +Rp6258 +sa(dp6259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6260 +tp6261 +Rp6262 +sa(dp6263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6264 +tp6265 +Rp6266 +sa(dp6267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6268 +tp6269 +Rp6270 +sa(dp6271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6272 +tp6273 +Rp6274 +sa(dp6275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6276 +tp6277 +Rp6278 +sa(dp6279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6280 +tp6281 +Rp6282 +sa(dp6283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6284 +tp6285 +Rp6286 +sa(dp6287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6288 +tp6289 +Rp6290 +sa(dp6291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6292 +tp6293 +Rp6294 +sa(dp6295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6296 +tp6297 +Rp6298 +sa(dp6299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6300 +tp6301 +Rp6302 +sa(dp6303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6304 +tp6305 +Rp6306 +sa(dp6307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6308 +tp6309 +Rp6310 +sa(dp6311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6312 +tp6313 +Rp6314 +sa(dp6315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6316 +tp6317 +Rp6318 +sa(dp6319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6320 +tp6321 +Rp6322 +sa(dp6323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6324 +tp6325 +Rp6326 +sa(dp6327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6328 +tp6329 +Rp6330 +sa(dp6331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6332 +tp6333 +Rp6334 +sa(dp6335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6336 +tp6337 +Rp6338 +sa(dp6339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6340 +tp6341 +Rp6342 +sa(dp6343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6344 +tp6345 +Rp6346 +sa(dp6347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6348 +tp6349 +Rp6350 +sa(dp6351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6352 +tp6353 +Rp6354 +sa(dp6355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6356 +tp6357 +Rp6358 +sa(dp6359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6360 +tp6361 +Rp6362 +sa(dp6363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6364 +tp6365 +Rp6366 +sa(dp6367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6368 +tp6369 +Rp6370 +sa(dp6371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6372 +tp6373 +Rp6374 +sa(dp6375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6376 +tp6377 +Rp6378 +sa(dp6379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6380 +tp6381 +Rp6382 +sa(dp6383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6384 +tp6385 +Rp6386 +sa(dp6387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6388 +tp6389 +Rp6390 +sa(dp6391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6392 +tp6393 +Rp6394 +sa(dp6395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6396 +tp6397 +Rp6398 +sa(dp6399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6400 +tp6401 +Rp6402 +sa(dp6403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6404 +tp6405 +Rp6406 +sa(dp6407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6408 +tp6409 +Rp6410 +sa(dp6411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6412 +tp6413 +Rp6414 +sa(dp6415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6416 +tp6417 +Rp6418 +sa(dp6419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6420 +tp6421 +Rp6422 +sa(dp6423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6424 +tp6425 +Rp6426 +sa(dp6427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6428 +tp6429 +Rp6430 +sa(dp6431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6432 +tp6433 +Rp6434 +sa(dp6435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6436 +tp6437 +Rp6438 +sa(dp6439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6440 +tp6441 +Rp6442 +sa(dp6443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6444 +tp6445 +Rp6446 +sa(dp6447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6448 +tp6449 +Rp6450 +sa(dp6451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6452 +tp6453 +Rp6454 +sa(dp6455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6456 +tp6457 +Rp6458 +sa(dp6459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6460 +tp6461 +Rp6462 +sa(dp6463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6464 +tp6465 +Rp6466 +sa(dp6467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6468 +tp6469 +Rp6470 +sa(dp6471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6472 +tp6473 +Rp6474 +sa(dp6475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6476 +tp6477 +Rp6478 +sa(dp6479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6480 +tp6481 +Rp6482 +sa(dp6483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6484 +tp6485 +Rp6486 +sa(dp6487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6488 +tp6489 +Rp6490 +sa(dp6491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6492 +tp6493 +Rp6494 +sa(dp6495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6496 +tp6497 +Rp6498 +sa(dp6499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6500 +tp6501 +Rp6502 +sa(dp6503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6504 +tp6505 +Rp6506 +sa(dp6507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6508 +tp6509 +Rp6510 +sa(dp6511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6512 +tp6513 +Rp6514 +sa(dp6515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6516 +tp6517 +Rp6518 +sa(dp6519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6520 +tp6521 +Rp6522 +sa(dp6523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6524 +tp6525 +Rp6526 +sa(dp6527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6528 +tp6529 +Rp6530 +sa(dp6531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6532 +tp6533 +Rp6534 +sa(dp6535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6536 +tp6537 +Rp6538 +sa(dp6539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6540 +tp6541 +Rp6542 +sa(dp6543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6544 +tp6545 +Rp6546 +sa(dp6547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6548 +tp6549 +Rp6550 +sa(dp6551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6552 +tp6553 +Rp6554 +sa(dp6555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6556 +tp6557 +Rp6558 +sa(dp6559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6560 +tp6561 +Rp6562 +sa(dp6563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6564 +tp6565 +Rp6566 +sa(dp6567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6568 +tp6569 +Rp6570 +sa(dp6571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6572 +tp6573 +Rp6574 +sa(dp6575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6576 +tp6577 +Rp6578 +sa(dp6579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6580 +tp6581 +Rp6582 +sa(dp6583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6584 +tp6585 +Rp6586 +sa(dp6587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6588 +tp6589 +Rp6590 +sa(dp6591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6592 +tp6593 +Rp6594 +sa(dp6595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6596 +tp6597 +Rp6598 +sa(dp6599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6600 +tp6601 +Rp6602 +sa(dp6603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6604 +tp6605 +Rp6606 +sa(dp6607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6608 +tp6609 +Rp6610 +sa(dp6611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6612 +tp6613 +Rp6614 +sa(dp6615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6616 +tp6617 +Rp6618 +sa(dp6619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6620 +tp6621 +Rp6622 +sa(dp6623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6624 +tp6625 +Rp6626 +sa(dp6627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6628 +tp6629 +Rp6630 +sa(dp6631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6632 +tp6633 +Rp6634 +sa(dp6635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6636 +tp6637 +Rp6638 +sa(dp6639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6640 +tp6641 +Rp6642 +sa(dp6643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6644 +tp6645 +Rp6646 +sa(dp6647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6648 +tp6649 +Rp6650 +sa(dp6651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6652 +tp6653 +Rp6654 +sa(dp6655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6656 +tp6657 +Rp6658 +sa(dp6659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6660 +tp6661 +Rp6662 +sa(dp6663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6664 +tp6665 +Rp6666 +sa(dp6667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6668 +tp6669 +Rp6670 +sa(dp6671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6672 +tp6673 +Rp6674 +sa(dp6675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6676 +tp6677 +Rp6678 +sa(dp6679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6680 +tp6681 +Rp6682 +sa(dp6683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6684 +tp6685 +Rp6686 +sa(dp6687 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6688 +tp6689 +Rp6690 +sa(dp6691 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6692 +tp6693 +Rp6694 +sa(dp6695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6696 +tp6697 +Rp6698 +sa(dp6699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6700 +tp6701 +Rp6702 +sa(dp6703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6704 +tp6705 +Rp6706 +sa(dp6707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6708 +tp6709 +Rp6710 +sa(dp6711 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6712 +tp6713 +Rp6714 +sa(dp6715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6716 +tp6717 +Rp6718 +sa(dp6719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6720 +tp6721 +Rp6722 +sa(dp6723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6724 +tp6725 +Rp6726 +sa(dp6727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6728 +tp6729 +Rp6730 +sa(dp6731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6732 +tp6733 +Rp6734 +sa(dp6735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6736 +tp6737 +Rp6738 +sa(dp6739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6740 +tp6741 +Rp6742 +sa(dp6743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6744 +tp6745 +Rp6746 +sa(dp6747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6748 +tp6749 +Rp6750 +sa(dp6751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6752 +tp6753 +Rp6754 +sa(dp6755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6756 +tp6757 +Rp6758 +sa(dp6759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6760 +tp6761 +Rp6762 +sa(dp6763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6764 +tp6765 +Rp6766 +sa(dp6767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6768 +tp6769 +Rp6770 +sa(dp6771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6772 +tp6773 +Rp6774 +sa(dp6775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6776 +tp6777 +Rp6778 +sa(dp6779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6780 +tp6781 +Rp6782 +sa(dp6783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6784 +tp6785 +Rp6786 +sa(dp6787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6788 +tp6789 +Rp6790 +sa(dp6791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6792 +tp6793 +Rp6794 +sa(dp6795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6796 +tp6797 +Rp6798 +sa(dp6799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6800 +tp6801 +Rp6802 +sa(dp6803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6804 +tp6805 +Rp6806 +sa(dp6807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6808 +tp6809 +Rp6810 +sa(dp6811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6812 +tp6813 +Rp6814 +sa(dp6815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6816 +tp6817 +Rp6818 +sa(dp6819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6820 +tp6821 +Rp6822 +sa(dp6823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6824 +tp6825 +Rp6826 +sa(dp6827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6828 +tp6829 +Rp6830 +sa(dp6831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6832 +tp6833 +Rp6834 +sa(dp6835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6836 +tp6837 +Rp6838 +sa(dp6839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6840 +tp6841 +Rp6842 +sa(dp6843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6844 +tp6845 +Rp6846 +sa(dp6847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6848 +tp6849 +Rp6850 +sa(dp6851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6852 +tp6853 +Rp6854 +sa(dp6855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6856 +tp6857 +Rp6858 +sa(dp6859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6860 +tp6861 +Rp6862 +sa(dp6863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6864 +tp6865 +Rp6866 +sa(dp6867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6868 +tp6869 +Rp6870 +sa(dp6871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6872 +tp6873 +Rp6874 +sa(dp6875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6876 +tp6877 +Rp6878 +sa(dp6879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6880 +tp6881 +Rp6882 +sa(dp6883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6884 +tp6885 +Rp6886 +sa(dp6887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6888 +tp6889 +Rp6890 +sa(dp6891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6892 +tp6893 +Rp6894 +sa(dp6895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6896 +tp6897 +Rp6898 +sa(dp6899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6900 +tp6901 +Rp6902 +sa(dp6903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6904 +tp6905 +Rp6906 +sa(dp6907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6908 +tp6909 +Rp6910 +sa(dp6911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6912 +tp6913 +Rp6914 +sa(dp6915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6916 +tp6917 +Rp6918 +sa(dp6919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6920 +tp6921 +Rp6922 +sa(dp6923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6924 +tp6925 +Rp6926 +sa(dp6927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6928 +tp6929 +Rp6930 +sa(dp6931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6932 +tp6933 +Rp6934 +sa(dp6935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6936 +tp6937 +Rp6938 +sa(dp6939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6940 +tp6941 +Rp6942 +sa(dp6943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6944 +tp6945 +Rp6946 +sa(dp6947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6948 +tp6949 +Rp6950 +sa(dp6951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6952 +tp6953 +Rp6954 +sa(dp6955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6956 +tp6957 +Rp6958 +sa(dp6959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6960 +tp6961 +Rp6962 +sa(dp6963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6964 +tp6965 +Rp6966 +sa(dp6967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6968 +tp6969 +Rp6970 +sa(dp6971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6972 +tp6973 +Rp6974 +sa(dp6975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6976 +tp6977 +Rp6978 +sa(dp6979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6980 +tp6981 +Rp6982 +sa(dp6983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6984 +tp6985 +Rp6986 +sa(dp6987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6988 +tp6989 +Rp6990 +sa(dp6991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6992 +tp6993 +Rp6994 +sa(dp6995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6996 +tp6997 +Rp6998 +sa(dp6999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7000 +tp7001 +Rp7002 +sa(dp7003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7004 +tp7005 +Rp7006 +sa(dp7007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7008 +tp7009 +Rp7010 +sa(dp7011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7012 +tp7013 +Rp7014 +sa(dp7015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7016 +tp7017 +Rp7018 +sa(dp7019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7020 +tp7021 +Rp7022 +sa(dp7023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7024 +tp7025 +Rp7026 +sa(dp7027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7028 +tp7029 +Rp7030 +sa(dp7031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7032 +tp7033 +Rp7034 +sa(dp7035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7036 +tp7037 +Rp7038 +sa(dp7039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7040 +tp7041 +Rp7042 +sa(dp7043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7044 +tp7045 +Rp7046 +sa(dp7047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7048 +tp7049 +Rp7050 +sa(dp7051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7052 +tp7053 +Rp7054 +sa(dp7055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7056 +tp7057 +Rp7058 +sa(dp7059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7060 +tp7061 +Rp7062 +sa(dp7063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7064 +tp7065 +Rp7066 +sa(dp7067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7068 +tp7069 +Rp7070 +sa(dp7071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7072 +tp7073 +Rp7074 +sa(dp7075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7076 +tp7077 +Rp7078 +sa(dp7079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7080 +tp7081 +Rp7082 +sa(dp7083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7084 +tp7085 +Rp7086 +sa(dp7087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7088 +tp7089 +Rp7090 +sa(dp7091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7092 +tp7093 +Rp7094 +sa(dp7095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7096 +tp7097 +Rp7098 +sa(dp7099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7100 +tp7101 +Rp7102 +sa(dp7103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7104 +tp7105 +Rp7106 +sa(dp7107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7108 +tp7109 +Rp7110 +sa(dp7111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7112 +tp7113 +Rp7114 +sa(dp7115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7116 +tp7117 +Rp7118 +sa(dp7119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7120 +tp7121 +Rp7122 +sa(dp7123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7124 +tp7125 +Rp7126 +sa(dp7127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7128 +tp7129 +Rp7130 +sa(dp7131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7132 +tp7133 +Rp7134 +sa(dp7135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7136 +tp7137 +Rp7138 +sa(dp7139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7140 +tp7141 +Rp7142 +sa(dp7143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7144 +tp7145 +Rp7146 +sa(dp7147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7148 +tp7149 +Rp7150 +sa(dp7151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7152 +tp7153 +Rp7154 +sa(dp7155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7156 +tp7157 +Rp7158 +sa(dp7159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7160 +tp7161 +Rp7162 +sa(dp7163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7164 +tp7165 +Rp7166 +sa(dp7167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7168 +tp7169 +Rp7170 +sa(dp7171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7172 +tp7173 +Rp7174 +sa(dp7175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7176 +tp7177 +Rp7178 +sa(dp7179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7180 +tp7181 +Rp7182 +sa(dp7183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7184 +tp7185 +Rp7186 +sa(dp7187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7188 +tp7189 +Rp7190 +sa(dp7191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7192 +tp7193 +Rp7194 +sa(dp7195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7196 +tp7197 +Rp7198 +sa(dp7199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7200 +tp7201 +Rp7202 +sa(dp7203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7204 +tp7205 +Rp7206 +sa(dp7207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7208 +tp7209 +Rp7210 +sa(dp7211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7212 +tp7213 +Rp7214 +sa(dp7215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7216 +tp7217 +Rp7218 +sa(dp7219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7220 +tp7221 +Rp7222 +sa(dp7223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7224 +tp7225 +Rp7226 +sa(dp7227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7228 +tp7229 +Rp7230 +sa(dp7231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7232 +tp7233 +Rp7234 +sa(dp7235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7236 +tp7237 +Rp7238 +sa(dp7239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7240 +tp7241 +Rp7242 +sa(dp7243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7244 +tp7245 +Rp7246 +sa(dp7247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7248 +tp7249 +Rp7250 +sa(dp7251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7252 +tp7253 +Rp7254 +sa(dp7255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7256 +tp7257 +Rp7258 +sa(dp7259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7260 +tp7261 +Rp7262 +sa(dp7263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7264 +tp7265 +Rp7266 +sa(dp7267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7268 +tp7269 +Rp7270 +sa(dp7271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7272 +tp7273 +Rp7274 +sa(dp7275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7276 +tp7277 +Rp7278 +sa(dp7279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7280 +tp7281 +Rp7282 +sa(dp7283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7284 +tp7285 +Rp7286 +sa(dp7287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7288 +tp7289 +Rp7290 +sa(dp7291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7292 +tp7293 +Rp7294 +sa(dp7295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7296 +tp7297 +Rp7298 +sa(dp7299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7300 +tp7301 +Rp7302 +sa(dp7303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7304 +tp7305 +Rp7306 +sa(dp7307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7308 +tp7309 +Rp7310 +sa(dp7311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7312 +tp7313 +Rp7314 +sa(dp7315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7316 +tp7317 +Rp7318 +sa(dp7319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7320 +tp7321 +Rp7322 +sa(dp7323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7324 +tp7325 +Rp7326 +sa(dp7327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7328 +tp7329 +Rp7330 +sa(dp7331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7332 +tp7333 +Rp7334 +sa(dp7335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7336 +tp7337 +Rp7338 +sa(dp7339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7340 +tp7341 +Rp7342 +sa(dp7343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7344 +tp7345 +Rp7346 +sa(dp7347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7348 +tp7349 +Rp7350 +sa(dp7351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7352 +tp7353 +Rp7354 +sa(dp7355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7356 +tp7357 +Rp7358 +sa(dp7359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7360 +tp7361 +Rp7362 +sa(dp7363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7364 +tp7365 +Rp7366 +sa(dp7367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7368 +tp7369 +Rp7370 +sa(dp7371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7372 +tp7373 +Rp7374 +sa(dp7375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7376 +tp7377 +Rp7378 +sa(dp7379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7380 +tp7381 +Rp7382 +sa(dp7383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7384 +tp7385 +Rp7386 +sa(dp7387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7388 +tp7389 +Rp7390 +sa(dp7391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7392 +tp7393 +Rp7394 +sa(dp7395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7396 +tp7397 +Rp7398 +sa(dp7399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7400 +tp7401 +Rp7402 +sa(dp7403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7404 +tp7405 +Rp7406 +sa(dp7407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7408 +tp7409 +Rp7410 +sa(dp7411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7412 +tp7413 +Rp7414 +sa(dp7415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7416 +tp7417 +Rp7418 +sa(dp7419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7420 +tp7421 +Rp7422 +sa(dp7423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7424 +tp7425 +Rp7426 +sa(dp7427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7428 +tp7429 +Rp7430 +sa(dp7431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7432 +tp7433 +Rp7434 +sa(dp7435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7436 +tp7437 +Rp7438 +sa(dp7439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7440 +tp7441 +Rp7442 +sa(dp7443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7444 +tp7445 +Rp7446 +sa(dp7447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7448 +tp7449 +Rp7450 +sa(dp7451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7452 +tp7453 +Rp7454 +sa(dp7455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7456 +tp7457 +Rp7458 +sa(dp7459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7460 +tp7461 +Rp7462 +sa(dp7463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7464 +tp7465 +Rp7466 +sa(dp7467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7468 +tp7469 +Rp7470 +sa(dp7471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7472 +tp7473 +Rp7474 +sa(dp7475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7476 +tp7477 +Rp7478 +sa(dp7479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7480 +tp7481 +Rp7482 +sa(dp7483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7484 +tp7485 +Rp7486 +sa(dp7487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7488 +tp7489 +Rp7490 +sa(dp7491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7492 +tp7493 +Rp7494 +sa(dp7495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7496 +tp7497 +Rp7498 +sa(dp7499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7500 +tp7501 +Rp7502 +sa(dp7503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7504 +tp7505 +Rp7506 +sa(dp7507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7508 +tp7509 +Rp7510 +sa(dp7511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7512 +tp7513 +Rp7514 +sa(dp7515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7516 +tp7517 +Rp7518 +sa(dp7519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7520 +tp7521 +Rp7522 +sa(dp7523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7524 +tp7525 +Rp7526 +sa(dp7527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7528 +tp7529 +Rp7530 +sa(dp7531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7532 +tp7533 +Rp7534 +sa(dp7535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7536 +tp7537 +Rp7538 +sa(dp7539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7540 +tp7541 +Rp7542 +sa(dp7543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7544 +tp7545 +Rp7546 +sa(dp7547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7548 +tp7549 +Rp7550 +sa(dp7551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7552 +tp7553 +Rp7554 +sa(dp7555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7556 +tp7557 +Rp7558 +sa(dp7559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7560 +tp7561 +Rp7562 +sa(dp7563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7564 +tp7565 +Rp7566 +sa(dp7567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7568 +tp7569 +Rp7570 +sa(dp7571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7572 +tp7573 +Rp7574 +sa(dp7575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7576 +tp7577 +Rp7578 +sa(dp7579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7580 +tp7581 +Rp7582 +sa(dp7583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7584 +tp7585 +Rp7586 +sa(dp7587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7588 +tp7589 +Rp7590 +sa(dp7591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7592 +tp7593 +Rp7594 +sa(dp7595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7596 +tp7597 +Rp7598 +sa(dp7599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7600 +tp7601 +Rp7602 +sa(dp7603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7604 +tp7605 +Rp7606 +sa(dp7607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7608 +tp7609 +Rp7610 +sa(dp7611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7612 +tp7613 +Rp7614 +sa(dp7615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7616 +tp7617 +Rp7618 +sa(dp7619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7620 +tp7621 +Rp7622 +sa(dp7623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7624 +tp7625 +Rp7626 +sa(dp7627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7628 +tp7629 +Rp7630 +sa(dp7631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7632 +tp7633 +Rp7634 +sa(dp7635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7636 +tp7637 +Rp7638 +sa(dp7639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7640 +tp7641 +Rp7642 +sa(dp7643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7644 +tp7645 +Rp7646 +sa(dp7647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7648 +tp7649 +Rp7650 +sa(dp7651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7652 +tp7653 +Rp7654 +sa(dp7655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7656 +tp7657 +Rp7658 +sa(dp7659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7660 +tp7661 +Rp7662 +sa(dp7663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7664 +tp7665 +Rp7666 +sa(dp7667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7668 +tp7669 +Rp7670 +sa(dp7671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7672 +tp7673 +Rp7674 +sa(dp7675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7676 +tp7677 +Rp7678 +sa(dp7679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7680 +tp7681 +Rp7682 +sa(dp7683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7684 +tp7685 +Rp7686 +sa(dp7687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7688 +tp7689 +Rp7690 +sa(dp7691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7692 +tp7693 +Rp7694 +sa(dp7695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7696 +tp7697 +Rp7698 +sa(dp7699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7700 +tp7701 +Rp7702 +sa(dp7703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7704 +tp7705 +Rp7706 +sa(dp7707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7708 +tp7709 +Rp7710 +sa(dp7711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7712 +tp7713 +Rp7714 +sa(dp7715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7716 +tp7717 +Rp7718 +sa(dp7719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7720 +tp7721 +Rp7722 +sa(dp7723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7724 +tp7725 +Rp7726 +sa(dp7727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7728 +tp7729 +Rp7730 +sa(dp7731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7732 +tp7733 +Rp7734 +sa(dp7735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7736 +tp7737 +Rp7738 +sa(dp7739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7740 +tp7741 +Rp7742 +sa(dp7743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7744 +tp7745 +Rp7746 +sa(dp7747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7748 +tp7749 +Rp7750 +sa(dp7751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7752 +tp7753 +Rp7754 +sa(dp7755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7756 +tp7757 +Rp7758 +sa(dp7759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7760 +tp7761 +Rp7762 +sa(dp7763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7764 +tp7765 +Rp7766 +sa(dp7767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7768 +tp7769 +Rp7770 +sa(dp7771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7772 +tp7773 +Rp7774 +sa(dp7775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7776 +tp7777 +Rp7778 +sa(dp7779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7780 +tp7781 +Rp7782 +sa(dp7783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7784 +tp7785 +Rp7786 +sa(dp7787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7788 +tp7789 +Rp7790 +sa(dp7791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7792 +tp7793 +Rp7794 +sa(dp7795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7796 +tp7797 +Rp7798 +sa(dp7799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7800 +tp7801 +Rp7802 +sa(dp7803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7804 +tp7805 +Rp7806 +sa(dp7807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7808 +tp7809 +Rp7810 +sa(dp7811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7812 +tp7813 +Rp7814 +sa(dp7815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7816 +tp7817 +Rp7818 +sa(dp7819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7820 +tp7821 +Rp7822 +sa(dp7823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7824 +tp7825 +Rp7826 +sa(dp7827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7828 +tp7829 +Rp7830 +sa(dp7831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7832 +tp7833 +Rp7834 +sa(dp7835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7836 +tp7837 +Rp7838 +sa(dp7839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7840 +tp7841 +Rp7842 +sa(dp7843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7844 +tp7845 +Rp7846 +sa(dp7847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7848 +tp7849 +Rp7850 +sa(dp7851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7852 +tp7853 +Rp7854 +sa(dp7855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7856 +tp7857 +Rp7858 +sa(dp7859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7860 +tp7861 +Rp7862 +sa(dp7863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7864 +tp7865 +Rp7866 +sa(dp7867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7868 +tp7869 +Rp7870 +sa(dp7871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7872 +tp7873 +Rp7874 +sa(dp7875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7876 +tp7877 +Rp7878 +sa(dp7879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7880 +tp7881 +Rp7882 +sa(dp7883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7884 +tp7885 +Rp7886 +sa(dp7887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7888 +tp7889 +Rp7890 +sa(dp7891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7892 +tp7893 +Rp7894 +sa(dp7895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7896 +tp7897 +Rp7898 +sa(dp7899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7900 +tp7901 +Rp7902 +sa(dp7903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7904 +tp7905 +Rp7906 +sa(dp7907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7908 +tp7909 +Rp7910 +sa(dp7911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7912 +tp7913 +Rp7914 +sa(dp7915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7916 +tp7917 +Rp7918 +sa(dp7919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7920 +tp7921 +Rp7922 +sa(dp7923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7924 +tp7925 +Rp7926 +sa(dp7927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7928 +tp7929 +Rp7930 +sa(dp7931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7932 +tp7933 +Rp7934 +sa(dp7935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7936 +tp7937 +Rp7938 +sa(dp7939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7940 +tp7941 +Rp7942 +sa(dp7943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7944 +tp7945 +Rp7946 +sa(dp7947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7948 +tp7949 +Rp7950 +sa(dp7951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7952 +tp7953 +Rp7954 +sa(dp7955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7956 +tp7957 +Rp7958 +sa(dp7959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7960 +tp7961 +Rp7962 +sa(dp7963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7964 +tp7965 +Rp7966 +sa(dp7967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7968 +tp7969 +Rp7970 +sa(dp7971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7972 +tp7973 +Rp7974 +sa(dp7975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7976 +tp7977 +Rp7978 +sa(dp7979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7980 +tp7981 +Rp7982 +sa(dp7983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7984 +tp7985 +Rp7986 +sa(dp7987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7988 +tp7989 +Rp7990 +sa(dp7991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7992 +tp7993 +Rp7994 +sa(dp7995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7996 +tp7997 +Rp7998 +sa(dp7999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8000 +tp8001 +Rp8002 +sa(dp8003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8004 +tp8005 +Rp8006 +sa(dp8007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8008 +tp8009 +Rp8010 +sa(dp8011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8012 +tp8013 +Rp8014 +sa(dp8015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8016 +tp8017 +Rp8018 +sa(dp8019 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8020 +tp8021 +Rp8022 +sa(dp8023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8024 +tp8025 +Rp8026 +sa(dp8027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8028 +tp8029 +Rp8030 +sa(dp8031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8032 +tp8033 +Rp8034 +sa(dp8035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8036 +tp8037 +Rp8038 +sa(dp8039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8040 +tp8041 +Rp8042 +sa(dp8043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8044 +tp8045 +Rp8046 +sa(dp8047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8048 +tp8049 +Rp8050 +sa(dp8051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8052 +tp8053 +Rp8054 +sa(dp8055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8056 +tp8057 +Rp8058 +sa(dp8059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8060 +tp8061 +Rp8062 +sa(dp8063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8064 +tp8065 +Rp8066 +sa(dp8067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8068 +tp8069 +Rp8070 +sa(dp8071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8072 +tp8073 +Rp8074 +sa(dp8075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8076 +tp8077 +Rp8078 +sa(dp8079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8080 +tp8081 +Rp8082 +sa(dp8083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8084 +tp8085 +Rp8086 +sa(dp8087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8088 +tp8089 +Rp8090 +sa(dp8091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8092 +tp8093 +Rp8094 +sa(dp8095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8096 +tp8097 +Rp8098 +sa(dp8099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8100 +tp8101 +Rp8102 +sa(dp8103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8104 +tp8105 +Rp8106 +sa(dp8107 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8108 +tp8109 +Rp8110 +sa(dp8111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8112 +tp8113 +Rp8114 +sa(dp8115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8116 +tp8117 +Rp8118 +sa(dp8119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8120 +tp8121 +Rp8122 +sa(dp8123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8124 +tp8125 +Rp8126 +sa(dp8127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8128 +tp8129 +Rp8130 +sa(dp8131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8132 +tp8133 +Rp8134 +sa(dp8135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8136 +tp8137 +Rp8138 +sa(dp8139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8140 +tp8141 +Rp8142 +sa(dp8143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8144 +tp8145 +Rp8146 +sa(dp8147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8148 +tp8149 +Rp8150 +sa(dp8151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8152 +tp8153 +Rp8154 +sa(dp8155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8156 +tp8157 +Rp8158 +sa(dp8159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8160 +tp8161 +Rp8162 +sa(dp8163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8164 +tp8165 +Rp8166 +sa(dp8167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8168 +tp8169 +Rp8170 +sa(dp8171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8172 +tp8173 +Rp8174 +sa(dp8175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8176 +tp8177 +Rp8178 +sa(dp8179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8180 +tp8181 +Rp8182 +sa(dp8183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8184 +tp8185 +Rp8186 +sa(dp8187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8188 +tp8189 +Rp8190 +sa(dp8191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8192 +tp8193 +Rp8194 +sa(dp8195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8196 +tp8197 +Rp8198 +sa(dp8199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8200 +tp8201 +Rp8202 +sa(dp8203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8204 +tp8205 +Rp8206 +sa(dp8207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8208 +tp8209 +Rp8210 +sa(dp8211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8212 +tp8213 +Rp8214 +sa(dp8215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8216 +tp8217 +Rp8218 +sa(dp8219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8220 +tp8221 +Rp8222 +sa(dp8223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8224 +tp8225 +Rp8226 +sa(dp8227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8228 +tp8229 +Rp8230 +sa(dp8231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8232 +tp8233 +Rp8234 +sa(dp8235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8236 +tp8237 +Rp8238 +sa(dp8239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8240 +tp8241 +Rp8242 +sa(dp8243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8244 +tp8245 +Rp8246 +sa(dp8247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8248 +tp8249 +Rp8250 +sa(dp8251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8252 +tp8253 +Rp8254 +sa(dp8255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8256 +tp8257 +Rp8258 +sa(dp8259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8260 +tp8261 +Rp8262 +sa(dp8263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8264 +tp8265 +Rp8266 +sa(dp8267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8268 +tp8269 +Rp8270 +sa(dp8271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8272 +tp8273 +Rp8274 +sa(dp8275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8276 +tp8277 +Rp8278 +sa(dp8279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8280 +tp8281 +Rp8282 +sa(dp8283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8284 +tp8285 +Rp8286 +sa(dp8287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8288 +tp8289 +Rp8290 +sa(dp8291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8292 +tp8293 +Rp8294 +sa(dp8295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8296 +tp8297 +Rp8298 +sa(dp8299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8300 +tp8301 +Rp8302 +sa(dp8303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8304 +tp8305 +Rp8306 +sa(dp8307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8308 +tp8309 +Rp8310 +sa(dp8311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8312 +tp8313 +Rp8314 +sa(dp8315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8316 +tp8317 +Rp8318 +sa(dp8319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8320 +tp8321 +Rp8322 +sa(dp8323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8324 +tp8325 +Rp8326 +sa(dp8327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8328 +tp8329 +Rp8330 +sa(dp8331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8332 +tp8333 +Rp8334 +sa(dp8335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8336 +tp8337 +Rp8338 +sa(dp8339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8340 +tp8341 +Rp8342 +sa(dp8343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8344 +tp8345 +Rp8346 +sa(dp8347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8348 +tp8349 +Rp8350 +sa(dp8351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8352 +tp8353 +Rp8354 +sa(dp8355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8356 +tp8357 +Rp8358 +sa(dp8359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8360 +tp8361 +Rp8362 +sa(dp8363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8364 +tp8365 +Rp8366 +sa(dp8367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8368 +tp8369 +Rp8370 +sa(dp8371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8372 +tp8373 +Rp8374 +sa(dp8375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8376 +tp8377 +Rp8378 +sa(dp8379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8380 +tp8381 +Rp8382 +sa(dp8383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8384 +tp8385 +Rp8386 +sa(dp8387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8388 +tp8389 +Rp8390 +sa(dp8391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8392 +tp8393 +Rp8394 +sa(dp8395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8396 +tp8397 +Rp8398 +sa(dp8399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8400 +tp8401 +Rp8402 +sa(dp8403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8404 +tp8405 +Rp8406 +sa(dp8407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8408 +tp8409 +Rp8410 +sa(dp8411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8412 +tp8413 +Rp8414 +sa(dp8415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8416 +tp8417 +Rp8418 +sa(dp8419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8420 +tp8421 +Rp8422 +sa(dp8423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8424 +tp8425 +Rp8426 +sa(dp8427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8428 +tp8429 +Rp8430 +sa(dp8431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8432 +tp8433 +Rp8434 +sa(dp8435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8436 +tp8437 +Rp8438 +sa(dp8439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8440 +tp8441 +Rp8442 +sa(dp8443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8444 +tp8445 +Rp8446 +sa(dp8447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8448 +tp8449 +Rp8450 +sa(dp8451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8452 +tp8453 +Rp8454 +sa(dp8455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8456 +tp8457 +Rp8458 +sa(dp8459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8460 +tp8461 +Rp8462 +sasS'texts' +p8463 +(lp8464 +VListening to the "New Age" station on @SlackerRadio ? http://slacker.com/r/nqKf +p8465 +aVi didnt mean knee high I ment in lengt it goes down to my knees - and is so cute I love it! +p8466 +aVI wana see the vid Kyan +p8467 +aVif my mom went on for the love of ray J or any reality show i'd bee pissed . +p8468 +aV@Mrhilton1985 Welcome to Twitter xx +p8469 +aV@kjbmusic oh yeah... however, I'd still like to be in the midst of it all though... u know... +p8470 +aVI need a nice tea-drinking pic for our #Tea Club Membership page - anyone got one they'd be happy for me to use? http://bit.ly/b1PWLh +p8471 +aV@JonathanRKnight so twitpic it lol, I love Home Depot, love working w/my hands and building things, my dad was in construction +p8472 +aV@BarCough it's enough to make you sick, eh? there's nothing sacred anymore +p8473 +aV"Iran, with its unity and God's grace, will punch the arrogance (West) 22nd of Bahman (Feb 11) in a way that will leave them stunned," +p8474 +aV#4WordsOnObamasHand Don't Say The N-Word +p8475 +aVCity watchdog in chaos as chief executive Hector Sants resigns just months before general election +p8476 +aVRT @MangaUK: God it is a big news day today! By popular demand, "Ah! My Goddess Season 2" will be released in 3 2-disc sets: May, Jul, Sep. +p8477 +aV@zzramesses yes; hope to release that feature next month +p8478 +aVRT @RockinGreenSoap: I Flip(in) Love @rockingreensoap! Follow them to win a free Flip Camera! RT Please! http://tinyurl.com/yffv2pg #clothdiapers +p8479 +aV@ShiedhaO well damn! Renee still aint playin, is she?! and neither is Jack!! @LikasParody +p8480 +aV@heydusti oh, geez, I'd have a lot more songs that way. +p8481 +aV@wendywave1 HAHAHAH that was worded weird. I'm reading while a candle is burning in my room +p8482 +aVOn Insurance and Hospitals: I wonder if there is a connection between the hospital system overload and the format... http://bit.ly/d9QIc5 +p8483 +aVChilling textin (?) ... To much info..foreal you know its los ward yung squad bitch... +p8484 +aVYour busy schedule might not leave you a lot of room today for... More for Scorpio http://twittascope.com/twittascope/?sign 8 +p8485 +aVPhoto: (via fuckyeahkristinchenoweth) omgomgomgomg MAY 19TH http://tumblr.com/x7269s2mn +p8486 +aVHeres a new idea,how about i get you a spoon so you can read my ass. +p8487 +aVRT @FriendsTVFan: #RetweetTHisIf you want #FriendsTheMovie via @Lisa_Kudrow +p8488 +aVAndy is rambling on C&C this morning - shutup and get on with it man +p8489 +aV@tigerlilybubu lol, where are you? I once forgot the car completely and left home without it. +p8490 +aV@LSal92 and yet they are a minority ... despite the election law being changed to skew things in Aoun's favor, they remain a minority +p8491 +aVThe Newest Member of _________________! #yehbuddy +p8492 +aV@SeaNanners Hey Adam, JPizzle1122 (the microwave dude on utube) seems to have a good live stream for MW2, maybe ask for his help? +p8493 +aVLittle Caesars Large Cheese or Pepperoni - No Limit - 2/10 for 3.99: +p8494 +aVoh my goodness I'm emo +p8495 +aV@Din_Jee wait wait wait...im confused...are you there? +p8496 +aVRT @Arranwhisky: New #Arran #Malt #Competition just posted on: www.arranwhisky.com/Default.aspx?page Competition Free bottle and chocolates +p8497 +aVemm, my lip is starting to hurt :/ +p8498 +aVFinally off work. Gonna go home and try to sleep whatever this is off so I can go to my other job. I hate to miss work +p8499 +aV#TED travel off to rocky start thanks to wayward wallet. JUST made my flight, but horridly tense. +p8500 +aVRT 50 Awesome Twitter Tips to become a Pro http://ow.ly/14LjW via @virtuosoblogger +p8501 +aV@JBieberboyyy i was thinking that i wanna make a Cake party in my house :O! lol +p8502 +aVhttp://www.youtube.com/watch?v 0TpGvMh6Uow&feature player_embedded Check it out! In the middle of London! SO COOL! +p8503 +aVMountains, trees, and beautiful cotton-ish blue sky! I will fly! :) +p8504 +aV@justinbieber follow me? please...(: your great and it would make my day. btw, i wanna shampoo your hair ;D lmao. 3 +p8505 +aV@DarrylTalley @J9Talley hi there! Nice to see you back! +p8506 +aVRT @katyperry: I ? New York! +p8507 +aV@Aviemoron My coffin has already been reshaped as it's going with me!!! +p8508 +aVI went to hot power yoga and I loved it. MUCH better than Bikram to me. Power Good. Hot Good. Sweat Good. What's not to love? #stinky +p8509 +aV@nicko236 Lol, well I considered posting something normal, but since when have I been normal. +p8510 +aVIt saddens my heart 2 C women with black eyes! :( +p8511 +aVI cant feel my feet.. that cant be good.. +p8512 +aV@officialerika i hope so dude hahaha 3. So, which subject do you have right now? xx +p8513 +aVHe's been ranting about this for years RT @eugenelee finally blogged "Business is Conducted by People, not Users" http://bit.ly/9Dt24j +p8514 +aVRT @Local76_493: Happy Birthday to Carole King b.1942, Carmen Miranda 1909, +p8515 +aVgoing to get jubby's valentines day gift with some assistance from lee and shane:) finally got my car registered:) work monday-friday 12-4 ? +p8516 +aVAbout to spend the next couple of hours of my life working for the man +p8517 +aVRT @BRADPIFF877: I should of threw my self on the floor and screamed (bro u would be gettin a fat check if u had done dat) +p8518 +aVneed to find a red all lace see thru dress (like my black one)for my friend brian goins red && black birthday party this weekend;;His GIFT! +p8519 +aV@jimalkhalili Well deserved. Seems emblematic of a new BBC confidence unashamedly to produce docs that are pitched at more advanced level. +p8520 +aV@Nyamorabu yea, that's y I'm not supposed to use it, they wanna attribute all the results to the mouthwash, without chewing gum to help it. +p8521 +aV@Jesse_Son How DARE YOU I am now* your darklordwaffle PIMP now hoe work that corner *pimp slaps* +p8522 +aVLearning about water heaters - ah the joys of home ownership - and still being single : ) +p8523 +aV2 cans of full fat coke and im bouncing round the place. +p8524 +aVPORN!?! Shit WONT be E Z my G! Trust me i TRIED! RT @overtheFame I think I know what I am giving up for Lent...it won'... http://3.ly/3uC +p8525 +aVi'm so super duper excitied right now cuz' i'm gonna watch Harry Potter ! +p8526 +aV@planetjedward hey! going to see you in dundrum on friday:) i was talking to ur mam(my teacher) today:) NO SCHOL because im going to you:)x +p8527 +aVRT @kgarrard: "I lift my eyes up to You, to You whose throne is in heaven." Ps. 123:1... 3 // Love it. And the maker of heaven & earth :) +p8528 +aVHow to Succeed in the Age of Going Solo? A great article for everyone to read in the WSJ. http://tinyurl.com/yzma3sn +p8529 +aV@bfrench4 what disneyworld commercial? he's the saints qb and is sooo cute :) +p8530 +aVLas year I was so stressed out I forgot I was my birthday. Didn't figure it out til 730 that night. My bad. +p8531 +aV@reevesforreal Devote yourself to prayer, being watchful and thankful. Very good verse & a great way 2 start a day! Have a fun day in PC! +p8532 +aVJust back from a walk with the doggies. Got caught in a hail storm - hailstones really sting when they're lashing down on your face! +p8533 +aVto better understand me lol - RT @whysogreen i'm going back to school@ doing a free 5 week automotive course! :) +p8534 +aV@yourcitylights And Simon Peter answered and said, Thou art the Christ, the Son of the living God. Matthew 16:16 Jesus Loves you +p8535 +aVBored with waiting for the iPad to come out so I've made my own out of a journos pad and some spray mount http://yfrog.com/3lg87aj +p8536 +aVSo I have come to the conclusions that there's bitches who dnt like me on here bt follow wtf I gotta say! +p8537 +aVRock onRT @inrockmusic: BillZucker: I LOVE @DaveMalby @D_Old_Man @GlassRiverJewel @susancha @burkepreston (cont) http://tl.gd/7sh8m +p8538 +aVRT @diskopo Who wants to laugh? http://bit.ly/aBMOmR +p8539 +aVmy clothes smell like weed, vomit and chicken. and i didnt smoke. nor vomit. and most unfortunately didn't eat chicken. nice -_- +p8540 +aVIt took 2 hours rummaging through my receipt drawer only to learn I?d lost the receipt, isn?t there a better way? http://ow.ly/14Xm2 +p8541 +aV@debontherocks Conferences have NEVER made me wish to have a child. EVER. What are you drinking @ said cons?? +p8542 +aVI favorited a YouTube video -- Zooey Deschanel in Weeds http://youtu.be/FApZlnX_G1U?a +p8543 +aV@armaghetto ugh... if i have too much of the gogo juice i get a bad stomach ache +p8544 +aVUrgh i'm soo bored and tired. text. call, anything. hmm i must find things to multi task on now! +p8545 +aVGuayadeque - Nice music player Ubuntu Geek: Music Player with the aims to be intuitive, easy to use and fast eve... http://bit.ly/9NLi0v +p8546 +aVHeaded to human resources class. Now I know why Michael hates Toby so much. +p8547 +aVBab Girls Club was FunnY ass ShyT can't wait Til the reuion shw +p8548 +aVRT @fallout: Don't forget to watch the #FalloutNewVegas teaser & RT for a chance to win a signed FNV poster http://bit.ly/fnvcon Must be 18 +p8549 +aVmy moms a retard for reading my texts and thinking my most recent tweet was inapproprate +p8550 +aVRT @BoomerLivingNow: Retirement: Don't Run Out of Money Before You Run Out of Time http://ow.ly/15RgI #finances #boomer #retirement +p8551 +aVSo I missed #BGC again this wk...can some tell me wht happened +p8552 +aVEveryone says to give up on you, but they don't see you like I do. +p8553 +aVAfter these shows I'm callin it a early nite, been up early and already gettin sleepy!! +p8554 +aV@pacificbrewnews No beer for me today either. But I am enjoying the 2008 Odonata Grenache. +p8555 +aVFree: Star Bucks Gift Card http://listia.com/1p8s +p8556 +aVRT @Kelsey_Grammer: So GOOGLE BUZZ is a hot topic Look at the OFFICAL GOOGLE [Video] - http://clicky.me/OfficialMI4 and you will LOVE it GO GOOGLE +p8557 +aV@itsonlymichelle guess whats driving on the way to my house ) +p8558 +aVand Verizon to reduce the fees they charge for their airtime, and now if they're successful w/their high speed effort, they'll create the +p8559 +aV@ClassCie I got one more song to finish :) then I will send it +p8560 +aVRT Sorry i've been quiet on the tweetside, i'm just really into @Viewpointr right now (http://viewpointr.com) its addictive. +p8561 +aVjust watched 10 minutes of house of payne cause I didnt want to get up and look for the remote. +p8562 +aVHaving English class now, we're doing profiles to ning.com, not so different from my freetime :D +p8563 +aV@shreyaghoshal hey thats a good news. what is the name of that film. +p8564 +aVI just fell asleep, at the most, three and a half hours ago. Why the bitch am I awake? +p8565 +aVThanks again to Ken for this RT @@KenPlume Now on FRED: @The_No_Show interview w/ James Cameron, Emperor of Everything... http://is.gd/83OtB +p8566 +aVRT @beedle82: I just entered the competition to win a Samsung laptop. To enter, follow @smartaHQ & RT http://bit.ly/b4I200 +p8567 +aVRT @matisyahu: Cool photo spread and interview in Wanted Magazine. Photos http://bit.ly/d5YFxH Interview http://bit.ly/bHAfUI +p8568 +aVToday in History: 1971 Satchel Paige becomes 1st negro-league player elected to Baseball Hall of Fame. (via @TouchByAM) (via @Alyssa_Milano) +p8569 +aVRT @stillgtit: If you can't lick or stick then I must tell you #itaintthatgoodman so introduce me to your best friend +p8570 +aVToday has been INSANE(ly good). So excited for my colleagues who have done so much great work deserving of natl recognition. #NPLAN #PHLP +p8571 +aV@WCooksey I'm shocked, nay appalled, to hear that you are regularly communicating with your constituents. And caught on tape! +p8572 +aV@PHXPhoto thanks, we hope you enjoy it and welcome your input on what you'd like to see! +p8573 +aV@MsChassMarie lol tell him i got a bottle of graduates banana flava waitin for him lmao +p8574 +aV"Society may tolerate you, acquaintances may accept you, but friends understand you." #quote +p8575 +aVIt appears that you have everything under control and your pos... More for Leo http://twittascope.com/twittascope/?sign 5 +p8576 +aV@ElijahRead Oh okay..So thats how you do?..LOL..Copy and Paste like that...LOL +p8577 +aVHome after Lucia's and Key skills this morning; had to attend due to a guest speaker talking about Uni - got me even more excited! Eeee :D +p8578 +aVRT @BenCooper86 Mervyn King says he can't think of any reason why the UK would lose it's AAA rating - now will George Osborne shut up? +p8579 +aV@ansaudi satria dong sa ! Si dika mah geleh ah hahahah http://myloc.me/3GiEB +p8580 +aVAnd obviously not forgetting the fact I'm gonna feel 122356325x worse : Oh well... +p8581 +aVformspring.me - what would you like for valentine?s day? yummy truffles, stargazer lillies, a donation to... http://tumblr.com/xev6brjhk +p8582 +aV@YoungMac24 that's the only game you have? +p8583 +aVhttp://i47.tinypic.com/2yo47qp.jpg A , would lol again. +p8584 +aVwhy do Hong Kong people like to have their air cons on SUPERCOLD!?!?! man, i need some socks or something!!!! +p8585 +aVRT @parismostwanted Check out @ParisMostWanted on IT'S MY TIME and VOTE for us :) http://casting.benetton.com/users/8081-paris-most-wanted +p8586 +aV@sononchalant what happened to snow at 6 pm? http://myloc.me/3G5Mk +p8587 +aV10 absolutely jaw dropping concept car designs http://ow.ly/15OnX +p8588 +aVi can feel that theres a growing pimple on my nose :( +p8589 +aVGreat sunny days with @tetongravity in the beauty mountains of BC...crew was sending! +p8590 +aV@itsBreezeBaby whats that ?? you no me im at work ( +p8591 +aVFound some cool free twitter backgrounds @ http://www.onixbee.com check it out!! #backgrounds #twitter +p8592 +aV@XGlitr_ObsesdX for sme reason my eyes burn too idk +p8593 +aVSama2 sayang ? ? @NengMeryl: Great wednesday ? thanks to @padoeka @chiemuw @ImadhMadum et all to be the part of my superb day :) +p8594 +aVRT @tokyodymond_HLE: ii am leaveinq ; n imma delete my twitter ; n who wants my photoshop? ---ill take it :) +p8595 +aV"I pray also that the eyes of your heart may be enlightened in order that you may know the hope to which he has called you..." Eph1:18 +p8596 +aVRT @wandafay: avoid-an-audit-6-red-flags-you-should-Know http://icio.us/i420ea +p8597 +aVfuel-consumption data indicates weak growth http://bit.ly/bQL91T I First we had rail traffic data: Now we have this and with MSM spin, too +p8598 +aVPressure mounting at Sunderland: Lorik Cana: Sunderland's winless run extended to 12 games following 1-1 ... http://bit.ly/dBAMHd telegraph +p8599 +aVMakin' birthday macaroons that I shall drizzle with caramel sauce. Oh yeah. I do shit up BIG. +p8600 +aV@indu666 heh me too actually... tho kannur i still kinda alive cause a close uncle lives there.. had been thr last week for theyyam \u005cm/ +p8601 +aV@mrmoneyman i don't like bein stuck in the house i'd rather go to class +p8602 +aV@MizLadyLipz girl bye..yuh kno not...#bgc jux came on and tha otha otha iznt gonna miss that...do yuh watch it?? +p8603 +aVI am so pissed! me and my boyfriend broke up today! i broke up with him for the recorde! +p8604 +aV@danicapatrick is CSI investigating brakes tampering, or a little nitro in the engine? Gd luck in Nationwide race #nascar +p8605 +aVUPDATE. :) Dead nanaman ako nito. (doh) Sorry Ate Mona. :'( http://plurk.com/p/3q1mes +p8606 +aV@jamesw650 omfg I cannot believe you just tweeted that? Are you effn serious with me?! +p8607 +aVNinjas got mills I just want a couple too... So bad bout to cry? me a 50? juice?... @Chip216 +p8608 +aVRT @nrodovsky: RT @kimjack61: @lightxxx There are people on here just waiting to help..never underestimate twitter warriors 4 Haiti! +p8609 +aVyou guys are so stupid, seriously. fighting over people you will NEVER get. HAHA. +p8610 +aVi don't understand. i really don't. this course feels wrong, hospital radio isn't right, and i'm not happy. +p8611 +aVArcelorMittal posts 1.68 billon loss for 2009 http://nxy.in/kemfi +p8612 +aVRT @HeavyHand Where is the, where is the, where is the TOILET TISSUE???? FUCK!!!!!! it's OK, you've been blessed with 2 hands..pick 1 +p8613 +aV@craigjettech but I really not like the spring in Macau, it's too wet!! +p8614 +aVfresh out the shower ; currently watchinq the Steve Wilkos Show. +p8615 +aV@CNN Darkeness in the shadows of DC. Bethesda, MD has no power for 4 days..snow, 30 inches, unploughed.. is this the new America? RT +p8616 +aVI just entered to win a Skooba Design Messenger Bag! Follow @anyluckyday (daily contests) and comment to win http://bit.ly/cizppc +p8617 +aVHot Deal! Me to You Love You ?4 off from H Samuel http://tinyurl.com/yzl4s89 +p8618 +aV@molesworth_1 bit of both with a meeting thrown in for good measure. What time you off down the track? +p8619 +aVthanks snowmageddon for getting me out of tomorrow's test! you're the best (until shoveling time comes, that is.) +p8620 +aVRT @rmccue: My school has an SQL injection bug in their site. Gotta love being a better programmer than the professionals. +p8621 +aVi love usher 2! RT @bianca4life: i love Usher like @Jazzylamby love Bow Weezy! so damn serious i've been playin his ish ova and ova all day! +p8622 +aV@mckeay First aid isn't possible - you need a fresh start - reanimating a corpse is not first aid. +p8623 +aVI hate Lloyds Bank. They want me to phone them up everytime I want to do something. I fact I hate banks in general. +p8624 +aVRT @RevRunWisdom: Dbl check who ur hangin with:: Many ppl think they're wise,, because they're hanging with idiots (who u wit?) +p8625 +aVRT @Idothat2: "Are You OK?" I'M CRYING MY EYES OUT DO I LOOK F-ING OK!?! #idothat2 +p8626 +aVPretty dope funk thing by my boy @arch_typ Hands to Hats: http://lnk.ms/5tzdM +p8627 +aVYour relationships are likely to be more satisfying now as lov... More for Pisces http://twittascope.com/twittascope/?sign 12 +p8628 +aVRT @AbonThoughts: Fist pumping my small Asian ass off at Bogies with Pauly D! The ladies call me The Predicament. Holla at cha boy Snooki!!! +p8629 +aVBreaking news : British fashion designer McQueen found dead at 40 (AP): AP - His runway shows were often like perf... http://bit.ly/bWSSop +p8630 +aV@lingchung She picks such great songs to cover too. Her Death Cab cover has me melting right now. I need to learn to play the guitar. +p8631 +aV@XmeganXOXO Yes, met them all at Gridlock and for 3 days at NAMM. All of them are very nice and love their fans. The acoustic set- amazing! +p8632 +aVRT @Do_Over: RT @blacknbling @do_over the "Do Lover" on Valentines Day?!! Can I get a HELL YEAH, people!!!?!!! #pumped +p8633 +aVBouta leave tysons and head to my herndon salon and get my nails toes wax did hayyyyyyyy ) +p8634 +aVthe snow keeps falling here. I will have to shovel again soon .. http://tweetphoto.com/11026757 +p8635 +aV@feltique Its a very sad loss especially to the fashion industry +p8636 +aVThanks for nothing Mr. President: To the Editor: +p8637 +aVVideo: luckyshirt: I?m a huge fan of movie scores. Big, dramatic, heart wrenching soundtracks. Thanks for... http://tumblr.com/xvf6c6763 +p8638 +aVoff to a wack place i call school. +p8639 +aV#WhatsWorseThan dog shit on yo shoe and u track it in yo house +p8640 +aVRIP Alexander McQueen. I can't believe this. :( +p8641 +aVThe 'Miss Me Yet?' billboard. My answer would be absolutely not. http://ow.ly/16oVf +p8642 +aVIf he ever sees that I blipped it; He'll know! But, it applies to me too! ? http://blip.fm/ krhnh +p8643 +aVPorsche 911 GT3 RS Hybrid http://bit.ly/ctJypB (via @joshuabaer) // me likey. but, they need to pick up the pace on production cars. +p8644 +aV@BossCampbell Just drink a bottle of bleach and stop bothering people. +p8645 +aVRT @MONALISALUV #petpeeve the belief that material possessions make you better than the next person. +p8646 +aVRT @footymad: Man. Utd.: Giggs elbow concern for United http://bit.ly/aiv9h1 +p8647 +aVWatch Samson & Delihja (stop motion i made today!) on Vimeo! http://vimeo.com/9374223 +p8648 +aVlike how you guys think that my thesis topic is boring. i mean, i already know it is. no need to keep telling me repeatedly. +p8649 +aVLmaoooo, anyways, G'morning my tweets; hope your day will be as wonderful as mine! +p8650 +aVThe Story of my Life:) http://ow.ly/i/tJs #MNIG +p8651 +aVApple : Tech Today: Google Jolts Telecom Rivals; Apple Is in TV-Pric - http://www.askbiography.com/bio/Apple.html +p8652 +aVDesperate bid to catch flight lands father and son in custody: A desperate bid to catch a? http://goo.gl/fb/JlGe +p8653 +aVRT @MoneAlicia: @IAMSEANO Jealous....I need to be having breakfast with u. All gone :) +p8654 +aV@Theo_Chipmunk *nods and finishs them the pulls out a cookie* mmm +p8655 +aV@CoolKid__Sam Yeeea...scuzzin bluzzin im in the cribberzzz, my fault for not seein yur tweet, dylan online rite now. +p8656 +aV@solarfund That's so sad! RIP Walt Ratterman.....my heartfelt sympathy to his family, friends and colleagues. +p8657 +aV@MissKahla i was playing with you :( so where do you want to go +p8658 +aVthinkin i should wash my hair before i get it done tomorrow... decisions decisions... hmmm +p8659 +aVstarting to really love When I Look At You by Miley. It's a really sweet song. +p8660 +aV@LizzyNY Hi Lizzy. I know you guys really got a lot of snow. They closed our New York office yesterday at 11:30 +p8661 +aVi currently have a gay man with an english accent fixing my washing machine. this is awesome. +p8662 +aVCharlie Wilson, US politician who secretly funded CIA in Afghanistan, dies http://tumblr.com/xpq6cev4y +p8663 +aVAll of a sudden I feel incredibly lonely...I blame the cold weather and hormones...and V-day...damnit, where are my pills? +p8664 +aVRT @colingilchrist: Alexander McQueen, the rumours are true. Poor boy RIP. +p8665 +aVRT @Tiana2Hot: #petpeeve ppl being over-affectionate in front of me..its not me hating it just makes me sick!..Ex:"no I luv u snookie bear..ooh yes I do" +p8666 +aVTomorrow my husband is coming to visit. And enjoy our 2 year anniversary. +p8667 +aVRT @MyTrainerBob: I'm trying to get people to try a yoga workout for those of you that have never it. It's a great stress reliever and awesome workout..xo +p8668 +aVHmm...I need to ask Joe who his groomsmen and best man are. And we need to decide on a date. And our honeymoon. Meh. +p8669 +aV@pocketkip Hahahaha! If you wanted to be extra bitchy, you could've streamed it via UStream! +p8670 +aV@CassieGallant hello im jennas bet friend she told me to add you because ur rly cool +p8671 +aVDirectory Of Ezines.: Earn 90 Per Sale! Ezine Advertising Is Hot And Proven Effective! Now In Our 10th Year, Char... http://bit.ly/c959Zr +p8672 +aVBill: Dorian Gray (por Fucker Berrouz) http://bit.ly/cq7i63 +p8673 +aVI got dat fastRT @GwopBoyStich RT ?Noly opelep atht anc ucfk ylrael gdoo cna erad wtah thsi gesmeas syas(only forward if u figure it out)! +p8674 +aVTbh I'm rarther pissed off, just wana get out my house!! +p8675 +aVhttp://bit.ly/dD1SWw It's me! 300 years ago.. (at 0.47 and 1.40 min. shocking blue amazing hotpants! ;-P) +p8676 +aV@Bolanile I just lost my voice watching this game. +p8677 +aVKudos and Kindness: Officer saves dog from coyotes http://bit.ly/apNf50 +p8678 +aVThis weekend: see the end of the world, rock out or swoon Back Talk East Dallas http://bit.ly/cfDDAP via http://outside.in/75223 +p8679 +aVAm listening to this romantic song by Asher Book called Try and smile to my self about how much I'm hoping to have a date in Valentine's Day +p8680 +aV@peterstmartin I am sure I will find that too..... Good to see you Peter +p8681 +aVThere is something about the sound of snow that enthralls me..like a feather hitting the ground...silence that encompasses...Yet..thunderous +p8682 +aVI don't know what it is +p8683 +aV@bugiaking - That's Because I can BEAT YOU .. MORE THAN SHAWN MICHAELS CAN .. +p8684 +aV@epistolary LOL. haha, that's hilarious. skyping with you sounds like it's bound to be amusing. XD +p8685 +aV#whatsworsethan walkin in late to class and havin to sit in the front when u the only negro in there +p8686 +aVso @JJVARANDAS says to me, no one here said "u should see my vagina!" but we were thinking it!!! I love me some Titi... +p8687 +aVI wanna snap ya neck and spit on you, u say who ARRE you WHO ARE YOOUU!!! +p8688 +aV#petpeeve when someone you 'befriended' on the internet acts like they know you forreal. I never understood that whole thing. +p8689 +aV?The four most important words in any marriage..."I'll do the dishes." Instead just come to The Crown & Goose where we do the dishes! +p8690 +aV@justinbieber come to Brazil, will meet his Brazilian haha I can be! *-* i love u ? +p8691 +aVBill Clinton Undergoes Heart Procedure: An adviser to Bill Clinton says the former president has had two +p8692 +aV@tova_s Oh yeah, I pass that sign quite frequently. Astonishingly, nothing has ever happened to me. Go figger. http://twitpic.com/12l2pq - +p8693 +aV@BorrisInABox You can change the startup sound? How? I didn't think it was possible? +p8694 +aV@killer_360 i guess its cause you like Ross and Jeezy and hardcore shit thats why,but feedback is feedback. +p8695 +aVTo the idiot outside, we didn't make the snowman right outside our window for no reason. Thanks for killing my first snowman jackass! :( +p8696 +aVSo john mayer said the "n word". I said crack/honkie 46 times today. Is my penis racist I think not. I like wh girls to. @MARLONLWAYANS +p8697 +aVBait is too 08 kita! Somethin new please! #noshade RT @MissKitaKatt: He the bait but his phone is shot the hell up! +p8698 +aVFind art retreats, painting, photography and other creative courses throughout Europe. Go to krazart! http://bit.ly/bjYrcy +p8699 +aVI used to sit around & draw pictures of dicks ! Dicks ? Like a man dick ?! Lmfaooo ! Superbad is my shxt ! Haha +p8700 +aV.find() with simple :join: Hello all, I about to pull my hair out. I have two models "Activities" and "Activity_... http://bit.ly/aUTmVI +p8701 +aVRT @generalfonseka: Protect the rights of people to protest http://news.bbc.co.uk/2/hi/south_asia/8508494.stm +p8702 +aVYo mama was like...."I like that dude Koncept, he makes classics"...... myspace.com/konsept101 +p8703 +aVIt looks like you bought that car from Dollar General! +p8704 +aV@amandapalmer thats brilliant !!! is an adelaide ninja show on the go? +p8705 +aVMust go and scrape the ice off the windscreen +p8706 +aVbeganhobbling toward +p8707 +aV@heidiswift Nice! Enjoy your travels. Maybe we'll meet up when you're back and have some shop-talk. +p8708 +aVRT @lr3031: @LizBlaine My latest- Barack Obama: You Have ?No Reasonable Expectation Of Privacy? http://bit.ly/c29txn PLS RT #tcot #sgp #usa +p8709 +aV@skydiver Wow! Not that we need the extra dose of energy this year but you'll just add to the wildness factor! Have the BEST time! +p8710 +aVdid a show last night and tonight. have shows on sunday, monday, tuesday, and wednesday. I'm a busy lil comic +p8711 +aV? For The One I Love - The G.... http://tinyurl.com/yk322o5 +p8712 +aVOur biggest fan who has his own Sunday network show! RT @dcsportsbog: David Gregory just sent me an e-mail about the Capitals. FYI. +p8713 +aVwhat the heck is this thing stuck in my throat.... +p8714 +aVTake someone to prom that you KNOW you would have fun with. +p8715 +aVDon't Ask Me a Question, If You're Not Going to Believe My Answer. http://formspring.me/KAPZTHATITAN +p8716 +aVRT @RevRunWisdom: Never allow a person tell you NO who doesnt have the power to say YES +p8717 +aV@pushaman2010 jo jo!!!!! I'm coming down atl next sat. I wanna see you +p8718 +aV@Baby_Rinna I miss u! +p8719 +aV@AmIzzy she's carrying them around with her, so bound to lose some.has 2 at a time lately! +p8720 +aV@Celebforever I didn't throw it around it was your family member who I feel tried to dis respect me by putn me down to lift u up unessecary +p8721 +aVTanj writes: My interest in Java waned when I could do server-side JavaScript with a call out to C when I... http://twisca.com/?BZ.fB +p8722 +aVHad a nice sleep...now i gotta sort out how i'm gonna get out of this bed...gotta get ready for the club +p8723 +aVI'm awake since 5:30 :) I'm improvin,RT @pigarmahdar: @joeclemenzy Hey! Ure awake...and its 7:37..are u on drugs? TUMBEN BANGET!!! XD +p8724 +aVHaving a bad day? (Story 2) - A man was working on his motorcycle on his patio and his wife was in the... http://tumblr.com/xeg6dfsho +p8725 +aVis finished with my taiwan assignment. Now: vacation +p8726 +aVSnowin!! I love it!! And I love my life +p8727 +aVjust had the nastiest fall. #wth i feel like i might have broken a bone. +p8728 +aV@iamsrk ur indeed THE Supertsar.. THE Real life Hero. Love and Respect to u... "Do it.Fight it.Win it" . Kolkata is surely loving MNIK... +p8729 +aV@faberfaberdrive I like your shirt, too! Haha, oh man. Such fashionable lads. +p8730 +aV@Jchawes have you try Melatonin it has work for me +p8731 +aVRT @DemiRetweets: RT If Demetria Devonne Lovato is the most beautiful name you have ever heard. +p8732 +aV@twifans I want to see the sex scene in 3-D :D (if they make one up, that is...) +p8733 +aVHm @EllnMllr, @Stereogab, number of registered federal lobbyists fell to 13,742 in 2009 from 14,442 in 2008 Jobless recovery? +p8734 +aVA sex doll with a reloadable hymen? Well Happy Valentine's Day to me! http://is.gd/8fdYV +p8735 +aVi love this song! RT @JBrownie16: I wannabe where u r! trey songz! +p8736 +aVRT @JohnnaS: Before you are born you choose many opportunities to learn in many different ways. http://bit.ly/csPOcg +p8737 +aVRT @cakedream: Ppl who say sex is over rated is nt hving mindblowing body shaking ass slapping hair pulling skin gripping awesome sex..#imjustsaying +p8738 +aVMy commitments demonstrate my values,shape my life,and determine my destiny. +p8739 +aVwtheck! secirity and management at front door with 2 costemer?!?!? +p8740 +aVBout to hit up red lobster. Get my tgif meal in. +p8741 +aVI just found out aside from recording and publishing his poetry, Ryan Adams also paints. He ain't that bad either. http://twitpic.com/12oa68 +p8742 +aV@hackneye ahh I found my account with Spotify that I had ages ago, thanks a lot :) +p8743 +aVRT @thisislavie: due to our site being down-to enter our giveaway for a chance to win free gold earrings provided by shayan afshar. pls RT +p8744 +aVCAN'T SLEEP..: http://chatter.com/a/1vhqf +p8745 +aVRT @DjBEYONDnyc: just played the @thereallumidee & @djrobdinero "so fly" remix at the diesel store on 60th and lexington. i just remember how crazy this is. +p8746 +aVFinally editing the Tamper Review!! So fun http://tweetphoto.com/11105662 (via @hslade3) +p8747 +aV@martieu So hard to take people seriously when they mispronounce words! Although my in-laws and I have a running feud about the word "dour." +p8748 +aV@andrewhyde it was great seeing you too! I believe I'm inspired to speak at Ignite sometime.... I already have an idea in the works... +p8749 +aVattempting to understand history lol +p8750 +aV@emilioeric " Your world is my world,and my fight is your fight my breath is your breath and your heart " ? http://www.twitpic.com/12naqy 15 +p8751 +aV@frankenteen Are you ever gonna come to the UK? Oh and....Like my twitter Background? Its you and @mark_salling! :) +p8752 +aV@xolindsey87 haha yeah they called my house while I was at school, they're sending tags for it and then they'll send me the right size. +p8753 +aVHad toooooo much fun yesterday with my @GlamBarSalon family!! We go so hard for eachother! +p8754 +aVRT @RockyRivera: Buy your girlfriend the gift that keeps on giving: GOOD MUSIC SHE CAN RELATE TO! :) www.cdbaby.com/cd/RockyRivera +p8755 +aV@Wellness_News Thanks for the RT :) It was so nice talking to you today! Have a great night, and a Happy Valentine's day. +p8756 +aVReading can get you killed...in Nazi Germany http://imtsbro.com/2010/02/12/so-i-hear-youre-fond-of-literature/ +p8757 +aV@jonasdangerjoe I am interested in jemi ... you two (joe and demi) do very lovely couple!! +p8758 +aVRT @LaToyaDavis: "If you stay ready you don't have to get ready." - Will Smith +p8759 +aV@Greg_Kozarik @tjzuppe @Isley23 -- @sportstalkCLE appreciates you and your work - GREAT JOB tonight guys! +p8760 +aVDon't shoulder your burden out there on your own ... Don't banish me then bid me home - Powderfinger ? Drifting... ? http://blip.fm/ ktm45 +p8761 +aVi need more followers help me and i will help you :) +p8762 +aV@howru2day2009 I second that. the bad boys did it, the bad boys did it but we will clean it up! +p8763 +aVRT @rachellehoude: I suggest we all listen to this beautiful song by @katiacadet with #haiti in our hearts. http://www.mediafire.com/?tv23z4dzhj1 in memory. +p8764 +aV@wheelyweb i don't. But it contributes. Some of it. Most of it is presentation, marketing and so-called "convenience" +p8765 +aVI LOOOOOOOOOOOOOVE my baby. : : : : : : : : : : : +p8766 +aVNice, TGIF! Anyone else enjoying CPK and a movie tonight? RT @curlyhair72400: Going out to eat @ California Pizza Kitchen! yum! Peace peeps! +p8767 +aVQ:IS IT TRUE THAT MAMA DANCA AH BREED FI YU??? A:wat the fuk.......... ah wah kinna suicidal n... http://formspring.me/KingBoots/q/159605074 +p8768 +aVThank you New York and New jersey for picking up your copies. Ain't nothing like the support of your own! +p8769 +aVRT @msjenniewalker Just 15 more followers to hit 1,800 - Can you help? ?? She's a brilliant musical artist. Follow Follow Follow ! +p8770 +aVHates being up early on my day off driving lesson later fucking expensive http://myloc.me/3JN3C +p8771 +aVMy speech and test went well. Thanks for the prayers! Now off to work with @briemory! Woohoo! +p8772 +aVTo all my male followers when textin somebody say OK and not K cause it makes you sound #faggish +p8773 +aV@jwilliams252722 LOL I once woke up in the morning to my then-6-yr-old & her best friend singing "Milkshake" - complete with, "Damn right!" +p8774 +aVRT @RevRunWisdom: Stop judging:: Start LOOKING 4 what other ppl can do , then ppl will start seeing whats good about u! (Karma) +p8775 +aVRT @MikeHoughUK: who like's the new background!? +p8776 +aV@RebeccaInspir Tell her I say happy birthday. 3 +p8777 +aVgetting my lip pierced... hells yeah +p8778 +aVran a 5k in the 19s today, that was my time not the temp! +p8779 +aV@woothemes Liking the Woo Menus - great news they're going to power menus in #WordPress 3.0 +p8780 +aVRT @perezhilton: Entertainment Weekly asks: "John Mayer's 'Playboy' interview: Why does no one care that he also uses a gay slur?" http://bit.ly/9jYdwb +p8781 +aVBobby reed uses this as a member. Love is the master key that opens the gates of happiness. http://ihid.us?i qcp +p8782 +aVFree report: Help offline businesses and make easy cash! http://bit.ly/76oQM7 +p8783 +aVRT @Ahnanymis @MsQueenParis lol! Yo that Mike epps shit had my stomach hurtin smh +p8784 +aVi love quality time w. my bff @beautifuldomiie! its more like touchy feely time LOL +p8785 +aVRT @CHRIS__CHAMBERS: So who's coming to the dream team awards on Monday @ 6:00? I'm ready to serve you :D +p8786 +aVBangladesh clamps down on deadly campus violence http://bit.ly/99S7YB +p8787 +aVTsunami Memory: Choosing the Best WAHM Forums For Your Work at ... http://bit.ly/aNm3iy +p8788 +aV@Miss31337 aww that's what i first thought of!! you think i could pull belle off? she's so pretty! +p8789 +aVRT @TheReal_KDubb: After I make ya mama pop lock n drop it and bust it wide open Ima cook some breakfast buttnekkid in the kitchen Ving Rhames style #thuglife +p8790 +aV"I'm very willing to pay more taxes, because I believe it's the right thing to do" - RenoTH +p8791 +aVDork. http://www.adamofficial.com/ca/news/adam-lambert-toronto +p8792 +aVsorry might not b back 4 a while i have alot coming up ,pantomine,option choices,holiday,footie play offs AND all my ruin your halfterm work +p8793 +aVRT @Saaoirse: I love how awkward everyone looks on QI when being applauded. +p8794 +aVwas asked today in conversation what the end goal of my life is. jesus is. in other news, @quentindill is my favorite basketball player +p8795 +aVI just took "You and Justin are in mcdonald and he goes..." and got: He apologizes and u two become friends:)! Try it: http://bit.ly/9VvGpJ +p8796 +aVcaptain EO will not be opening this weekend. effects not yet ready... still testing. maybe late march to early april. sorry! #disneyland +p8797 +aVchanged my name!!! used to be @InnocentBells88 but...now that i am OFFICIALY MARRIED to @SexyJazzWhit i am @MrsBellsWhit *smiles* +p8798 +aVLet me sneak out to kitchen. I'm hella hungry. Brb! +p8799 +aV@BwanaPapyrus thank you for the #FF !!!! +p8800 +aVI feel u on that one.. RT @BellaKeys I need a dose of #Miami !! I'm getting the #NC virus ! LMAO +p8801 +aVGetting a bit tired... And the 15 is so packed for las vegas. +p8802 +aV@RiichRollin good looks my niggaz...Wat niggaz was fuckin wit last night +p8803 +aVCOMPETITION www.bliss-gifts.co.uk is still running so come and enter for a chance to win a gorgeous prize. +p8804 +aVjust had 3 mouthfuls of dubious looking and tasting beehoon from the neighbour +p8805 +aV@DougieDoug53 I Know You Not Tweeting About Me lol +p8806 +aV????? How I wish you were here... ????? +p8807 +aV@dataddiction yo im bored imma bout to call ya ass on skype +p8808 +aVRT @LauraJSilverman: I bought a recovered memory foam mattress and half of my family doesn't believe it's real. +p8809 +aV@HawkB_LND Naw its pro game just more physical and overseas rules +p8810 +aVRT @iatpapog: articel writing made fun and easy. http://bit.ly/articlewriting +p8811 +aV@SpinsDick O_o Um....*isn't near my house* Can i poof you guys there? :D +p8812 +aVin the past 24 hours i've eaten megabyte pizza, a&w, mcdonalds (three times), kraftdinner, and starbucks. whistler was a blast! +p8813 +aVHAHA Giselle just replied to my text and said 'Fuck yeah'. I love everyone :3 +p8814 +aVready for this juice jam on march 27th, got about 5 more pounds of muscle to gain and i'll be just right.... +p8815 +aVDispatch from Darfur RT @willswanson Valentine party behind barbed wire, sandbags. Nevermind UNAMID armed bouncers; their weapons don't work +p8816 +aVRT @worldprayr: Love Believes all Things - Unshakable confidence and trust. http://bit.ly/dsX6zl +p8817 +aVI saw him yesterday and thought the SAME thing. RT: @StyleIT Oh, crazy suit guy - you are such a #nyfw fixture http://twitpic.com/131gvw +p8818 +aVYou must be Jamaican, cause you Jamaican me crazy. http://plurk.com/p/3rblfk +p8819 +aVWanna help us with tomorrow's bake sale? Here're the details: http://trunc.it/55kni Thank you! +p8820 +aVhave another step to being capable fans down, blog created. http://jrcelski.blogspot.com/ - It is a very very nice place of happiness. +p8821 +aV@justinbieber "cuz this life's too long and this love's too strong. So baby know for sure, that I'll never let you go" (: +p8822 +aV@ItsMeMaven Hee! Nah, since my RNY one glass of wine OMG I'M GONNA TAKE MY SHIRT OFF & DANCE! +p8823 +aVI'm always gonna be here so get use to tha face :)!!! +p8824 +aVRT @martinajoseph 5000th Tweet Soon! -- Just About Half Way Towards Reaching My Standards!:) +p8825 +aVHad been to office today, feeling sleepy now... +p8826 +aVaww elvin ng's so cute w the pink pants and the lalala dance steps! :D +p8827 +aVtime to say goodbye +p8828 +aV@BrunaCoradini so do you speak very well, don't you use the google translate yeah? I wanna someone to practice... +p8829 +aVjust voted "joe jonas" on "who is the cutest guy in disney channel?" vote too ? http://bit.ly/b5Jl28 +p8830 +aVQUOTE: Survival and profit are fine, but if you http://j.mp/cz6d5T +p8831 +aVSo today is the chinese new year and valentine's day at the same time, huh? What would I wear to celebrate both? pink barongsai costume? ;p +p8832 +aV@msfob woo thers like random cartoon characters and kids :) are you pro at mando? +p8833 +aVCouldn't stand the dirty house any longer, so husband (who's home every morning) is going to chess tourney while I stay home & clean. +p8834 +aVRT @Catherine747: ... the global heart is awakening, beating out the rhythm of a new and glorious dance, calling us to a better way of living Anodea Judith +p8835 +aV@joegilder sorry I missed the production club last night...work has been particularly unkind to my spare time this week. +p8836 +aVhttp://twitpic.com/12w7zg - BITCHES DONT KNOW BOUT MY MILLENNIUM FALCON +p8837 +aVStupid Things to Try on Your Cell Phone! - http://goo.gl/fb/WHYH +p8838 +aV@drewbrees I agree! Think you two top my list of people I'd love to meet one day! +p8839 +aV@JamesGang4lyf Yeah I totally agree too, and they both work so hard!! +p8840 +aVTop o the morning... Off to Riveredge forsome Saturday skiing!!! Purdy day for it! +p8841 +aVFuck My Life: OMFG Now I got hiccups!!!! #FML: OMFG Now I got hiccups!!!! #FML http://bit.ly/d4KbNY +p8842 +aVI've got a feeling this is Mexico's year +p8843 +aVRT @THE_REAL_SHAQ: 2nd funniest guy in da nba. check it out http://bit.ly/arCFES +p8844 +aVLook at my horse, my horse is amazing. Give it a lick it tastes just like raisins, by the stroke of its mane it turns into a plane.SINGALONG +p8845 +aV#listeningto Wonderin' (featuring Matt Thiessen of Relient K) - TobyMac , if you love how beautiful "fireflies" voice , MT is the man! +p8846 +aVcan't find my phone it's not charged.. email/twtr/fb if you need me. time for a lowkey night w/@hilaryasmith. 7.5 miler @ 7 AM tom.. ahh!! +p8847 +aVWant to improve your life? Ordain it by understanding the physics involved. Visit http://bit.ly/joedweb +p8848 +aVRT @nadirachianti: RT @aliyajulyan: RT @jacklinevelina: Pleaseeeee, i want to be taller :( http://myloc.me/3MsZj +p8849 +aVLol that shit'll be crazy RT @antlindsey: @TheRyanHenry I'm putting it together in my head now. Ima hv you tat me on the stage @ONTOURAGE +p8850 +aV@ThemPRangers #rangerstagmein cause yall wit me everywhere ii go (only cause ii gotta skin of yall on my phone lol) +p8851 +aVI had a nightmare about this vicious little cat biting me! Dreammoods says it means someone close to me is talkin shit & bein fake. HMMMMM +p8852 +aVMy grandma is so cute! :D she said I'm still young so don't have to do housework. I totally agree with her! (: +p8853 +aVRT @AndyParas: RT @CarolinaScanner SC Highway Patrol working 488 wrecks at the moment..... STAY HOME & DO NOT DRIVE!!! #chstrfc #chswx +p8854 +aVGet back to healthy nutrition basicsAnahuac ProgressA great way to start on the path to better nutrition is to take a n http://url4.eu/1Otsu +p8855 +aVUK Afghan mission 'going to plan' http://www.nwoos.com/uk-afghan-mission-going-to-plan-88534.html +p8856 +aV@MrsJonas622 can u vote stay on which njata is best ? It's my poll +p8857 +aV"It took me a few hours to get my hand un-glued from my face." +p8858 +aVhopin' one day you'll come and sing this song with me. I wrote this song just for you. +p8859 +aVJust realized a friend is off the wagon in a big way - sad;-( +p8860 +aVRT @PaigeXc: Is so excited about Pixies in March. La la love you, don't mean maybe... +p8861 +aVRT @diplo: happy valentines day ! mix from mad decent - http://tinyurl.com/decentLUV +p8862 +aVRT @inspiringMoms: @getsweetie Hi Sweetie! This is YOUR Holiday!You were named for it! Make it a special day!TU for the rt!Amy//Hugs to you! +p8863 +aVRT This is very cool. Parallel genetic code created http://bit.ly/acEJSk /via @RogerHighfield +p8864 +aV@MzJuDolla http://fashioncashsuccess.tumblr.com/ check out my blog!!!! +p8865 +aVRT @CrackerClips2010Pacesetter Awards 2010: Jerry Aronson, education winner: Aronson said he has always considered teaching to be an a... +p8866 +aVdropped my phone at knotts berry farm -_- water rides FTL! +p8867 +aVThe Book of Eli just didn't do it for me... +p8868 +aVWhite Knight Chronicles: Possibly one of the worst games ever made +p8869 +aVSitting in my car :( man I think I really messed up with lukas tonight. :( +p8870 +aVThe thing about pictures of scenery is the never quite being able to translate the true experience- http://tweetphoto.com/11371545 +p8871 +aVOH SNAP. my 6 year old cousin snores SO loud. +p8872 +aVFrom "Hacking Exposed" 2-14-10: MS update gives some XP boxes blue screen of death: http://tinyurl.com/yl8dz44 +p8873 +aVYa style is played out like Arnold & that what you talking 'bout Willis. +p8874 +aV@Intricate11 girl ya it was just how they said it especially the in denial part! http://myloc.me/3NJbN +p8875 +aV@brigwyn the laptop kept overheating and the repair trips were in the waranty period. They could never figure out what was wrong with it +p8876 +aVThe one time NASCAR should step in today, they don't. +p8877 +aVthe annoying cramps is getting my way! I wanna kill eeuuu! +p8878 +aV@justinbieber all I can say is that your are AMAZING! I love & appreciate how you try to treat all your fans equally. We love you! +p8879 +aVV-Day Gift 4 t/Planet A Guide for Mass Meditation for Global Healing - http://bit.ly/8IqS8V #green #meditation #earth #eco Please RT +p8880 +aVBabysitter...check! Day with my honey...check! Nothing else matters, except the kids that is +p8881 +aVHappy V Day everyone! Or happy singles awareness day. Whichever works for you... +p8882 +aVI just took "You live in a House Between Justin and Chris. In ..." and got: You and Justin become good friends! Try it: http://bit.ly/9RTQoA +p8883 +aVHubs: "Hon, if you don't have something nice to say..." Daughter: "Then she'd never say anything." +p8884 +aVto all the wonders that swim in the stream who hang around me...you are marvellous and inspirational and this past year devine :) gratitude +p8885 +aVDaughter's been *killing* it on video chat with Grandma. I'd put her on that ChatRoulette thing if that weren't, like, awful parenting. #fb +p8886 +aV@corynathan I wish! I might have to quiz you after, especially about Daniel Burkas talk. +p8887 +aVRT @vltrgn: RT @aainaanasibah happy Sunday! +p8888 +aVWish I was in Barcelona at the Mobile World Congress this week: http://bit.ly/4yTlYI Friends going. Maybe next year schedules will work out. +p8889 +aVThe next person to tell me that flirting is harmless will be getting slapped on sight... Flirting plants seeds... +p8890 +aVRT @NelenaBieber: okay! this is like my 100th tweet for #Nelena4Vday ...still not on tt?? really?? +p8891 +aVhttp://twitpic.com/1395mn - More meadow thanks to @kstew411 +p8892 +aVThe extra benefit of a Modulating Boiler +p8893 +aVYou could have a hard time letting go of your ambitions now, b... More for Capricorn http://twittascope.com/twittascope/?sign 10 +p8894 +aVDodi and Diana wanted a wedding made in heaven ... ... http://bit.ly/aPoPkJ +p8895 +aVgreat song!!! (YouTube http://youtu.be/a1sf2CzEq0w?a) +p8896 +aVi wanna meet @Jillisalynn so i might have to come to my homie jheri party.. +p8897 +aV@CourtneySit my kitchen's so tiny if I don't put them away I have to walk on tippy-toe around my lounge to get anywhere +p8898 +aVOh my lord, a group of Melissa Marie wannabes have walked into the restaurant. Not everyone can get away with the look. Eeeek. +p8899 +aVWtf. There's a pot deal going down in front of my house..o_O THIS ISN'T STOCKTON, DAMNIT.. +p8900 +aV@michaelgmassey is a bad influence. my liver hates me. +p8901 +aVOllie Hales s (United States, North Carolina) testimonial how to make money online for free. +p8902 +aV#fancy RT @koball: Sporting a bowtie tonight at we hit Minerva's for a Valentine's Evening out with my girls. +p8903 +aV@jesscann They probably just want to draw people in and then when you're there they'll tell you the real price. +p8904 +aV@TheBotLebowski Shut the fuck up Donny! http://www.youtube.com/watch?v MjYJ7zZ9BRw +p8905 +aV@heidianderson Thanks for the RT Heidi.. +p8906 +aVRT @icarusaccount: Happy Valentines Day everyone! tell someone you love them today 3 +p8907 +aV@barretttv they are going to talk to the prisoners regarding loving their spouses. Or cell mates. +p8908 +aVOff for now folks - Hopefully will be able to phone @KrispinDavies. Tw33t ya later. +p8909 +aVAWESOME!! My dream last night was just a little too influenced by Woodstock. +p8910 +aV@EddieGrayy lmaolmaolmao. I'm tweeting it once more because @gescapes told me so. Clearly I do what othres tell me to do. +p8911 +aVdoing my annual valentines day reflecting, and i've really only come to one thing. +p8912 +aVI finished my fourth can of Coke WTF. +p8913 +aVI don't give a shit about Valentines, i'm pissed that i have no access to the new Uffie album!! +p8914 +aV@x_OneLoveJB YESSS! HAHA. Those posters are awesome! :D I can stare at them all day long! xD +p8915 +aVThr R times, tht I test yr faith,'til U think U might surrender. Baby Im, Im not ashamed 2 say, tht my hopes wr (cont) http://tl.gd/919hr +p8916 +aVSo my kids hockey organization is putting on a fundraiser to purchase Sadie's WheelChair Adaptive stroller.. they told us today!! +p8917 +aV@Preach8 me too. I'm disappointed. Expected better from the dunks. +p8918 +aVMy babyshowed up to Love the kids too. @BozackJenkins I'm so glad you are here boo.... http://twitgoo.com/dy32x +p8919 +aV@SlapHoAssNiggas Y nt, its #vday Heather...I dnt hve a Valentine sooooo I gotta gt sum1 wifey... http://url4.eu/1OqNs +p8920 +aVOpen Question: My PSP home button opens but dosn't work.? - http://tinyurl.com/yaqfqjo +p8921 +aVlive about to pick the mitchel musso autograph winner come watch!!!! (Broadcasting live at http://ustre.am/cnDW) +p8922 +aVI gotta go now.... Breakfast, take a shower and stuff +p8923 +aVSTART NOW- Don't waste time-Get A Piece of The Tycoon's Business Empire. Live Life & Dream Big http://budurl.com/ws5a +p8924 +aV@IamPhoReal gotta learn to not let them stress u, boo we can't let prettiness go to waste! +p8925 +aVLoving Venus is your key planet and she is in high demand toda... More for Libra http://twittascope.com/twittascope/?sign 7 +p8926 +aVLouis Armstrong has a new song coming out! http://www.npr.org/templates/story/story.php?storyId 123653650 +p8927 +aV"kaw din ah careful ka sakin,Bka we ended up of hookin up din. " --fcuk! fcuk! kinikilig ako!haha. the return ... http://plurk.com/p/3s2xz9 +p8928 +aV@webosaurpercy i'm fine lol xd Club Penguin coin code on my blog! +p8929 +aVI love my date @tinacookie +p8930 +aVHarold Ford's Tax Problem: Will File First New York State Tax Return This April: +p8931 +aVRT @ParisHilton: Happy Valentines Day Everyone! Hope you have someone to spend it with and that you remembered to buy a gift or card for your loved one. :) +p8932 +aVLol YB RT @itsmefresh: RT @slickydee: All hail the ginger king @itsmefresh #watiido?? on the chillz boss...lol fresh outa church +p8933 +aVHonest time: I hate some of my a hole managers. Never felt this way towards my boss ever before!! I miss green bay bby +p8934 +aVRT @marlonlwayans: #lilduvalsarmsso short he do a hand stand and scrape his head on the floor +p8935 +aV@BigHomieDoe video on the 18th? whoa i gotta outswag all the other people gettin cameos, what song? im wearing a poncho to ur shit! +p8936 +aV@bonesbird my brain keeps traveling in the wrong direction +p8937 +aVRT @OMGthatssotrue: There's always that one person who always catches you doing something weird. #omgthatssotrue +p8938 +aVRT @DavidCarlson1: Can't wait for the Death Race prequel! - http://tinyurl.com/yklonxw +p8939 +aVGoing to sleep feeling misserable and getting ill again +p8940 +aV@natasharadmehr that's true. on a related note, do you know if Susan Boyle is on twitter? +p8941 +aVCyz he's a lib. RT @nscrwriter: Why is everyone so surprised that Brian Williams is a #NASCAR fan? Thought it was pretty well known already. +p8942 +aVI have no idea Rinko acted at liar game 2!! +p8943 +aVSupport Lace Up Save Lives, add a #twibbon to your avatar now! - http://bit.ly/7P3atY +p8944 +aVNot feelin so good.: http://chatter.com/a/1yeto +p8945 +aVGod Hates Fags lists of bands that will produce a gay child http://bit.ly/cE715I Who comes up with this stuff and what kind of drugs? +p8946 +aVAt least you know RT @beforetheehype: but I'm not getting him a real gift on the side like he got me. that's fcked up right? *shrug* +p8947 +aVSign up free and Expand your Twitter followers using http://FollowersTrain.com +p8948 +aVKid Cudi will not leave my head. Ah!!! +p8949 +aV@HelpMeRick That sounds like a great marketing technique to boost biz....you & @talkingdigital should have a friendly showdown! #gjco +p8950 +aV@kathrynyu I think it has to do with the symbolic luck part. WHICH HAS NO PRICE. +p8951 +aV@whereisivana which movie are you watching, and did you like it? replied to your tweet: http://bit.ly/cwDc8D +p8952 +aVRT @AntixOnline: Women are always moaning about the things guys will say to get into their pants... Bitch, try being a successful DJ!!!! +p8953 +aVbrowsed a Toys R Us and two Targets, no toys were bought...oh well...better luck next time. +p8954 +aVand then there was dude who was doing psychedelic weird marijuana shit moves in front of the bar completely freaked me out +p8955 +aV#nowplaying Pink- Please Dont Leave Me " I can cut you into pieces... when my heart is broken" @AlistAnt +p8956 +aVi'm sooo happy for @MikeHoughUK :D it's all so EXCITINGGGGG :D +p8957 +aV@DJEIGHTMILE wassup my dude i like what u do i wanted to talk bizness with you +p8958 +aV@lildeegodsgift I aready kno .. Lol +p8959 +aVWatch My Name is Khan....its worth watching......the Trio(SRK,Kajol,KJ) proved again..... +p8960 +aVObsessed with Mario Bros Galaxy on the Wii. @iamglenn and I can't stop playing. +p8961 +aVRT @ButsyInMyBed: @rbutler7 im waiting for you to tweet duuudeee :D come onlineee xx +p8962 +aVhow does someone dick you over on valentines day? :( +p8963 +aVRT @discountgamesUK: 1 lucky winner will #WIN this GAME when we have 1,000 followers http://bit.ly/cREZW4 RT & Follow 2 enter! #comp +p8964 +aVI'm just going to bed. I think I might be b-polar. +p8965 +aVSick as a dog but still made something to smoke my bud out of.. http://twitgoo.com/e0dfr +p8966 +aVlol good ones RT @Percival: Lessons learned from "Too Fat to Fly" with @thatkevinsmith and @southwestair http://bit.ly/aDtwaP +p8967 +aV...oh my god. Something just went down next door. The dog went mad, there was a girl screaming and a guy yelling. 0___0; +p8968 +aVMy knee hurts so badly. frick! +p8969 +aVI almost slipped and fell on my way to my dorm room...classes should be canceled +p8970 +aVI have some of the weirdest cravings. +p8971 +aVAnd if you say something wrong, a lot of people will hear you, take it offensively and hate you :/ +p8972 +aV@cuffsthelegend the new pizza is good actually +p8973 +aVRT @myfabolouslife: This might fuck up a future collab but this dude Usher look like a Gay Urban Batman in the All Star game show +p8974 +aVOh how I hate it when quick-and-dirty comes back to haunt you! +p8975 +aV@getpersonal those big ones without frames? I don't care how hot the girl is who is wearing them, I have an instant dislike to her. +p8976 +aVBrunch with my darling @ryanduffey (@ Pastis) http://4sq.com/3txOEd +p8977 +aVStill sick. Coughin up a lung at this point, but I got things to do later. Gotta make it work +p8978 +aV@that_ghoul_ava not much I can do--all the fucking ports are closed +p8979 +aV36C when i got home; i still went for a run. can't wait for cool weather to exercise in Oz. bbq snags & beer after prob just kept me even +p8980 +aV@steezDOTcom haha i'll pinch the cheeks of a 30 yr old.. PSHH!! you look about... 21?? Am i right? +p8981 +aVDONE CLEANING! all i have to do now is go to the Dr.'s and watch Coraline! +p8982 +aVis yay it's finally going to be nice out.. :) +p8983 +aV@Monz_cupcake Yeah I've seen it a few times now lool, they're looking like their having the time of their lives chillin with VANILLA ICE lol +p8984 +aVRT @jaredleto: thank u! RT @IAmCattSadler: Most stylish & kindest celeb I've talked with at FW so far. Thx Jared Leto! http://tweetphoto.com/11415563 +p8985 +aVRT @justinbieber: Happy Valentine's Day to all my amazing ladies out there. You are all my Valentine today +p8986 +aVmy fault cuz i stuck around long enough to make it happen. smh. +p8987 +aV@__Zero just for the banter I guess :L what train do you get? +p8988 +aVI actually just called my father "old man" during an argument... +p8989 +aV@teatimegon3wild Omg "/ I did not neglect you last night . +p8990 +aVok, back out to make more hay while the sunshines...isn't it a lovely day #sacramento, at least the ghetto bird is gone... +p8991 +aV@Salz102782 I'm not, it was a group on facebook and I thought of you. Feel special. +p8992 +aVOh btw, Dear John WORST MOVIE EVER. Waste of my life and time. +p8993 +aVAt my favorite dessert spot (@ Finale - Park Plaza) http://4sq.com/34J7z2 +p8994 +aVRT @GammaCounter: Brought my favorite indestructo travel watch: http://bit.ly/cyAkcm . [I have one of those. Ken Trading Brain *rules*!] +p8995 +aVGet free Godiva chocolate and gifts http://goo.gl/fb/r6LM +p8996 +aVblowin trees and gettin money as always..o and bumpin breezy to lol yu @drewdfiasco +p8997 +aVRT @deepakchopra: If you examine your suffering you will realize you do not own it. You share it with all those who grasp & cling +p8998 +aV...Lookin to feel my belly wit that Rallys, bullsh*t.....that's what I get for not thinkin like an Outkast +p8999 +aV@nuxnixThanks for that. I'm about to put Win 7 Ultimate on the same MBP, good to know it runs well for you. +p9000 +aVcant find my wallet.. eeek +p9001 +aVshould cheryl give ashley the boot??? +p9002 +aVBeen Tweeting a lot because the hospital that I've been in for a week doesn't have a Wi-Fi connection. +p9003 +aVI am so Happy right now. For many, many reasons! And for one quite wonderful reason. +p9004 +aVI pleasee *-* (@cauasobieray live on http://twitcam.com/f84g)) +p9005 +aVWow worst movie ever so so so boring but thanks dad for the quality time lol now what to do hmmm +p9006 +aVjust voted "I Like this one" on "Do I Look Nice? Which looks nicer?" vote too ? http://bit.ly/9yoVkg +p9007 +aV@DEUCEofEARL @HighLife89 he's a brown puppy with heart filled collar... O and he's loving and kind lol ? lol +p9008 +aV@Vampiric_AQW he's also the one who made my blade in Flash! +p9009 +aV@BittluvsVFC same here just making my radio station hope people will listen to me +p9010 +aVDo you sometimes get annoyed that a lowercase "l" and capital "I" look the same in some fonts? #idothistoo (via @omgidothistoo) +p9011 +aVRT @AshB1013: RT @BossyMinaj: EVERYBODY CHECK OUT MY NEW VIDEO RAPPING TO VIDEO PHONE!!! http://youtu.be/G9aN2nYdsHA [RE-TWEET] +p9012 +aVIf you like it then you should have put a ring on it. +p9013 +aVuhmm my followers number is decreasing! #makesmesomad +p9014 +aVRT @ft: John Podesta, former chief of staff, says the Obama administration is in a "mess" and America's political system "sucks". www.ft.com/vfdc +p9015 +aVIf you have only one smile in you, give it to the people you love..... +p9016 +aVhttp://twitpic.com/13gqku - hugs to you ALL-- who make each of my day brighter thru #Jesus ! +p9017 +aV@diamond_truths Ring arrived today, it is fabulous. Thank you so much for your help. We are absolutely delighted. +p9018 +aV*goes to meet Alex*- Logan & Carlos, Do you think she'll have food waiting?- Carlos. Shut up, Carlos.- Logan +p9019 +aVRT @incubusquotes: I come dressed as any pill you deem fit. Whatever helps you swallow the truth, all the more easily... Vitamin +p9020 +aV#youknowWHEN i look through my followers.. they are all goooorgeous 3 :D +p9021 +aVRT@Keyz216 girls go off when a nigga say sumthin wrong,but like the most disrespectful songs? I'ma start rappin 2 these hoes #16bars4abitch +p9022 +aV@freddyadu11 I hope you do a good season there in greece, so that you can comeback to Benfica later on, and play with us to get titles. +p9023 +aVsnow! pushing michelles car up the steep icy driveway lol I slipped n fell under the car while she was driving. mom was? http://lnk.ms/4ZcKm +p9024 +aV@GetalifeUK Taz rang earlier and asked if I'd taken too much St John Wort! Haven't touched a drop or a tablet. I couldn't risk it! +p9025 +aV@lacheeka You must share that info! I need to go. +p9026 +aVcrisis solved. it was my dad. wow dad. +p9027 +aV@itswlw @solababy Plz RT #1)A cool nickname. I tried SheSheWaWaBar but it was a no...DJM It was off the top of my head! 2bcont... +p9028 +aV@gloriabell @heathie You got it. B&W movie during #CampCamp. Maybe a good camping movie? +p9029 +aVLooking forward to..RT @achildofthejago London Fashion Week invites - Thanks to everyone who has contacted us http://tl.gd/9ghhi +p9030 +aVTop 10 Amazing Cities You Will Never Visit http://ow.ly/179sH +p9031 +aV#lemmegetthisstr8 U weigh 250 but U thick and not fat? #tryagain +p9032 +aVPhoto: fuckyeahqaf: Love Gale and Randy together http://tumblr.com/x2d6i6mrs +p9033 +aV@themanwhofell Accepted, especially as that RT cracked me up +p9034 +aV' d loveJBseyes ' im not on the computer im on my phone. my computers being so gaay +p9035 +aV@Thisisddlovato -pulls you in for a hug and holds you tight, closes my eyes- +p9036 +aV@Legion11 Haha! I love the little Apple tote bag. This will be the first of many, I feel, now that we have the store on our doorstep :P +p9037 +aVThe princes are royal beauts! +p9038 +aV@TRAPBOYSTEVIE its like they know I hate touching strangers and will automatically get up and stand for the rest of my ride. Fuck faces. +p9039 +aVFlowers - One Of The Best Sources To Express Your Feelings - http://bit.ly/aKIZXB +p9040 +aVGood Morning NorthWest! Sunny weather, banging music, and the drive to conquer! Tell me what else I need! +p9041 +aVRT @Drudge_Report: Privacy group files FTC complaint on GOOGLE Buzz... http://drudge.tw/9r4v9C +p9042 +aVHaving a interesting conversation with my oldest uncle, man my family is a trip! +p9043 +aVChillin in my set +p9044 +aVTIHIS IS THE WEEK TO BUY SELECT MACBETH SHOES at 50 % OFF @MidwestTrader92 get in there for a crazy deal !!!!!!!!!!!! +p9045 +aVFuck, my ankle fucking hurts... +p9046 +aVI have time to twitter now :-) +p9047 +aVSaid he's sending me an 8x10 framed photo. Told him that ish won't go up in my house. He's got a better chance with a 4x6. #justsayin +p9048 +aVsitting by a hot idiota! my life is amazing now. +p9049 +aV@darkelegance I KNOW YOU DO BB. THAT'S WHY I DO IT ALL THE TIME +p9050 +aVShen, Zhao absolutely golden in pairs victory: China?s Shen Xue and Zhao Hongbo won the pairs gold medal at the Va... http://bit.ly/9Qmhfs +p9051 +aVHe was like o shit oh fuck over and over again it worried me +p9052 +aVAlright....the Norwegian curling team's clown pants have got to go.....make me queasy. http://twurl.nl/q6vjmb +p9053 +aVif I ask "anything else for you." Don't answer "yes" and then just stare at me. +p9054 +aV@jessicaalba going to watch valentines day on thursday! Soo exciting! I was jw if bradley cooper was in it coz my friends were debating it?X +p9055 +aVRT @bieberscap: #becauseofbieber were all are here and going crazy over geting his attention +p9056 +aV@HookedOnPop and so is lily allen so perfect match really +p9057 +aVSometimes I feel it might just be easier to spell my name the way everyone thinks it's spelt. +p9058 +aV@Dragatomi The thought of an all-nighter makes me shudder. I'd be sleeping for days. DAYS! +p9059 +aV@DBJones25 DS shit no problem, whats good didnt hit you up yesterday was in the studio all night +p9060 +aVRT @EVRY1NOSEJadeC: @youngchief415 I got some cherry limeaid n the fridge whats hanenen lol +p9061 +aVHappy birthday toooo meee :) http://tweetphoto.com/11552258 +p9062 +aV@WhoaOhCharlotte yess! i loved it! Taylor Swift and Anne Hathaway are hilarious in it! :] +p9063 +aV@hattikins it'll be on iPlayer in a couple of hours - you then have a week to enjoy it again! +p9064 +aVtip @techmeme "In Apps World, Divide and Conquer Carries Risks - NYTimes.com" ( http://nyti.ms/ak2Khs ) +p9065 +aV@jameyjasta looking forward to plymouth tonight!!! +p9066 +aV@ladygaga http://twitpic.com/12qwsl - My feelings for you, my superstar! Little Monsters will be with you 4ever. Love u more than anything! +p9067 +aVBayh retirement plan fuels GOP hope - Sen. Evan Bayh, Indiana Democrat, said Monday that he will not seek re-electi... http://ow.ly/16AAxT +p9068 +aVWe need a breakthrough in Israel. Haiti needs you to be their only face of God they will ever see. +p9069 +aVGREAT NEWS! Sunday messages online! Check out website and share with your friends. http://bit.ly/b5Zofr +p9070 +aVEeekkk! It's fucking cold outside! Do i really wanna go play in this shit today? +p9071 +aV@msmoore2u I love you so much! BAAAHAHAH!! Just about everything you say and do CRACKS me up! We need a date ASAP! +p9072 +aVabout to have alot of bonding time with @marg_claire @joshshidler @dleethorne at the hump +p9073 +aV@Trumpfy I hate being pushy so if you ever feel that way just tell me to STFU! Since you posted the first I figured I'd give you the choice +p9074 +aVokay back home and i really should be doing work but all i wanna do is sit in front of the tv some more. gahhhhh +p9075 +aV"Obama Better Start Breaking Kneecaps" and "Time for Obama to go ?gangsta? on GOP" - the headlines from the... http://bit.ly/9BXQy4 +p9076 +aVcongratulations tothe newly weds. http://yfrog.com/auiqttj +p9077 +aV@monicahamburg Man, you're really taking an orthodox position on puns. +p9078 +aVOmg a tweet frm @JLYN773 yayyyyy !!! Tour time!! Hey yawl I am her support dancer so #ff her please and support cuz she has intense talent2! +p9079 +aV@1Simran omg simran I found this for you in Iceland!! http://twitpic.com/13ktkj +p9080 +aV@pratheepthavara I dont think #MNIK is a must watch movie. +p9081 +aVRT @TachiaNewall: By the way I told them that al of you were goin mad on Twitter. And Marvin said: Its all about them! +p9082 +aVRT @SexyMinxXx: @dai_dom stop using to differenciate sentences. it wrks doesn't it? +p9083 +aV@WordFlyer Even when I'm at home I feel like I need to get it. lol Its like my Tuesday internal clock. +p9084 +aV@uncreativeboi you said that i said so but in fact i didn't. how can i understand this? +p9085 +aVHookah for the first time :) w/ my girls Sharise & Kaydene ! at blue lizard hookah longue http://loopt.us/tNv_WQ.t +p9086 +aV@erkthajerk lmao!! that's funny! when's this episode coming out? my 5yr old is already into iCarly, and em preteen shows tho.. #Scary! +p9087 +aV@urgency MY HEART IS BURSTING FORTH IDEK I JUST LOVE YOU I DO REALLY OH MY GOD VICTORIA I FEEL LOVE +p9088 +aVRT @HoustonSchmaps Those sound sooo yummy! RT @jodycakes +p9089 +aV@ShadowdancerL2 There.. I am ready when he get the kids settled!!! I'll go say boo! +p9090 +aVHow Come the Gov. Doesn't use words of Pain ie. This Decision has been on him? see see his reply http://screencast.com/t/NmIxZTIxNmIt #FLJew +p9091 +aVGoing to sleep. Doing homework and watching Olympic curling and hockey all day tomorrow. 3:30 class, you'll be skipped, I bet. +p9092 +aVTU ANO #yojopochile Come watch and chat with me! http://justin.tv/s/04/4ouCmow/yojopochile +p9093 +aVThere?s No Place Like Home at The Irvine Village of Woodbury East - PRLog (free press release): PR Log (Press Rele... http://bit.ly/bDIrgr +p9094 +aVhttp://twitpic.com/13mcup - Cleaning my room, heres a b4 picture +p9095 +aV@MattEdmondson Nandos is the greatest! Can't beat a bit of Spicy chicken! :P +p9096 +aV@planetjedward Are you gonna be in any movie's shoutout to hayley and rachel :) xoxoxox +p9097 +aVHope you enjoy. And follow hin @mahesautara .you'll got the latest RT @mayanazaya: Listening to Mahesa Utara. Thanks @wangsadibrata :ppp +p9098 +aV@sara_aziz Mastodon owwwwwwn JLS. Bloody nancy boys compared to them! +p9099 +aVRT @Daily_Pinch: This is what is wrong w/ healthcare. 1172? // RT @moosep: Last week my Dr referred me to ER for an IV. The bill came in today. 1172 :-( +p9100 +aVDudee well went to school then i chilled and soon im going to the hallmark store to get animal braclets then gymm:P +p9101 +aVBill Bradley to receive award from NABC http://bit.ly/aJZ1o6 +p9102 +aVAre you looking for new tools to stylize your dance and boost your sexy factor? Try our body movement class this Friday night! +p9103 +aVRT @Danecook: I believe in unconditional love. Just ask my 2 headed unicorn that lives atop a chocolate ice creme mountain in Impossibletown. +p9104 +aVNo thx! RT @noseygirll: @dhimohutahaean hey please follow @BaadAssBitch , and i'll folllow you back, thanks 33 +p9105 +aV@jamie_oliver fantastic. We need this in America - So proud of your work in the UK +p9106 +aVThe fire pager...the only damn thing that can wake me from deep sleep. Not helping my migraine :( +p9107 +aV@joejonas Do you wanna come back to Argentina, right? You want your nenas from Argentina ;) haha +p9108 +aVRT @graypowell: http://pleaserobme.com/ this is great... letting you see the other side of social networking.. +p9109 +aVAirlines grapple with fat flier issue. I think that if you are obese you need to buy two seats. - http://bit.ly/9kknRM #cnn +p9110 +aVThe new roommates look like the Olsen twins -__- +p9111 +aVRT @justmikey7: Shout out to my compai @NiCkLeON_22 and the rest of the spc bball team....good luck tonite get (cont) http://tl.gd/9oo4f +p9112 +aV@TMNTyler you didnt reply to me (:.. I think you should, just because you can ? +p9113 +aV@mErocrush you're penciled in my calender! +p9114 +aVKobe misses 4th straight game (AP)http://bit.ly/apjNwl +p9115 +aV@missmma09 The photoshoot. Shoot I need to get a site together to show my photography skills. LOL +p9116 +aV@Amazing_Again Indeed. And you're tiny which makes you very squishable. #dontgetsquished +p9117 +aV@ladygaga http://twitpic.com/10vu2d - oooohh so proud of you, Gagaloo you are living proof and inspiration that hard work does have it's rew +p9118 +aV@phyliciajade YAY! I am going to email you the fancy pics we have of your tagline too! There are some in Long Beach - more info to come +p9119 +aVAin't no mountain high enough. +p9120 +aVWhy, yes, I think I will have a @BellsBrewery Two Hearted. #thankyouverymuch #iwillbenicerthen +p9121 +aVRT @DarkBeautyKimmy: Talk is CHEAP!! Any1 can afford it, Its the action that PAYS Off!! +p9122 +aVRT @chelseymary: #shoutout to my new followerrr DellU - New York (DellU_NY). :) i ? dell. :) +p9123 +aVI just scored 50388 while defending MT.CRUZE island and is now ranked 1235 in the world! http://bit.ly/cbIMpJ +p9124 +aVEver since we learned about Bob Dylan in popular music and society I've heard him on the radio everyday. I sure hope this trend doesn't end. +p9125 +aVSo glad ex-service men/women and currents are against this +p9126 +aVThese 3 hour classes def be killing me...i've been here for an hour and a Half and I couldn't tell you u one thing my professor said so far +p9127 +aVRT @shanell_snl: I LIVE 4 THIS SHIT... I BLEED MUSIC!! +p9128 +aVI found out my ex is engaged, he had the nerve to say "It coulda been you" O_O The arrogance of this dude is *hilarious*. #BetterOffSingle +p9129 +aVRT @SonamRileyFyffe: RT @_iloveCM_JmTrKi: @Princessnyah no problem :] you do music ?x ? hw cn u nt knw who (cont) http://tl.gd/9q31t +p9130 +aVToday's Mantra: "Each day is a new day filled with unlimited possibilities. Each day is an opportunity to awaken to the Truth I AM." +p9131 +aVRT @Chinkze_Money1 @prettyxlabelz ight ded ass imma burnt shit now ight bett (that's what I said right #BYEEe +p9132 +aV@MsMandyMay @nikkibenz I've said it before and I'll say it again...that is the most perfect posterior in history! I would love to spank it +p9133 +aVLost a follower :( i follow 1990 people and i only have 1100. Shoutouts please? even if i dnt follow back, you can be my missing followers. +p9134 +aV@TeamMinajOhio It's entirely your decision but I think it will be gangsta for all her Barbies to have it...A lot of us already have them! +p9135 +aVWhy cant I ever wake up n say "good morning everyone" *kicking rocks with an attitude* its always "good afternoon" which I cut dwn to wussup +p9136 +aV@treatstoshare have you heard the gloriana cd? i like it.... +p9137 +aVThis is all yours. You're the owner of this world. +p9138 +aV@greyrider i'm waiting to see if something better comes out... that and the purchase of a MacBook Pro in the next year is looming... +p9139 +aVA day of writing about US foreign policy and gothic story-telling awaits. Best not get the two mixed up. +p9140 +aVRT @gabsssy: #iDontUnderstandWhy is my lil brother always annoying. +p9141 +aVNet Throttling Hasn't Stopped http://bit.ly/dbJYLW +p9142 +aV@TsunamiWonny I'm always up... I'm feedin the baby right Now.. My mind is heavy too +p9143 +aVI often have no idea I'm enraged until I notice my knuckles turning white. +p9144 +aValso trying to upload dance vids but they're AVI files and I can't work out how to convert them to MPEG so its taking time +p9145 +aVRT @BREAKIN_HEARTS @poloshawty1134 yuppp smh somebody need 2 choke life out that whore wtf wrong with some of these simple minded fools +p9146 +aVGosh I feel horrible :( +p9147 +aVhttp://twitpic.com/13ql6h Bruno from Rio in Brazil - Sorry Bruno, there's no way I can spell your second name! +p9148 +aVRT@BreakThruGuy@earthXplorer: "What is it that you like doing?If you don't like it, get out of it, because you'll be lousy at it"Lee Iacocca +p9149 +aVRT @FreyaSykes Oooh I'm at 1,973 now! Not many more and I'll hit that magic 2k followers! ;-) +p9150 +aV@cakesrme I'm so glad my cousin @keekee_1985has somebody to look out for her down there!!!! +p9151 +aVI hope I get 2 train wit these niggies tomorrow, get my combine game up lol +p9152 +aV@FauxTayMomsen lmfao we do D: i think its cute too xD +p9153 +aVI think we all should get over J's hair for a while. Yes, he cut it/shaved it/etc, and well...he's the only one (cont) http://tl.gd/9jhf2 +p9154 +aV@familyforce5x ummm ultravoilet, nothing but the truth,adventureland, chicago and NINE ahahah +p9155 +aV"There comes a moment when you have to stop revving up the car and shove it into gear." +p9156 +aVRT @KFZuzulo: Free copy of THE GENIE'S CURSE to a participant at tomorrow night's CoffeeTime Chat. Topic is sacrifice. http://bit.ly/iFArB +p9157 +aVnice to know true love exists RT @RichDenzler: Grandparents are celebrating 68 years of marriage today. Crazy! #RVA +p9158 +aVamazing. #wisewords RT @aplusk You can't solve a problem with the same consciousness that created it. -einstein +p9159 +aVIF YOU WISH @JustinBieber WAS YOU BOYFRIEND THEN TWEET -- #iwishJBwasmyBF AT THE END OF YOUR TWEETS. ) ? +p9160 +aVI was hungryRT @BadBishLish: @BadGirlAsh grubbing http://tweetphoto.com/11637754 +p9161 +aVCEZ halts approvals for solar, wind power plants http://bit.ly/bekeAQ Solarif +p9162 +aV@haydenalxwhite i think you just broke my heart.... +p9163 +aVI swear everytime I wake in the chinese ppl kno me n wat I want they jus start cookin my shit! #fatshit I mean wat if I want sumthin new smh +p9164 +aV@zrobinsonn the best is yet to come, better days are just ahead :-) +p9165 +aVRT @keeperofdreams: Wonderful Snow Photography by Piotr Krzaczkowski - AmO Images: http://bit.ly/b5k4Wy via @addthis +p9166 +aVRT @SwitchFoot: Home for a few hours, it's sunny and 74, and @fm949sd played mess of me just as I started my car. Not a bad way to come home! -Tim +p9167 +aV@roguemouse paclpackpack still not cleaned. I have decided to do the least possible. Um yeah.. sorry :D +p9168 +aV(Me & my pile of fresh smelling laundry are waiting for #dwdd) +p9169 +aVRT @Caseyjones71: @usearubber cocaine is a hell of a drug. yes it is +p9170 +aVRT @Industry_Mag: Um yeah... We're ready for THIS video :] http://necolebitchie.com/2010/02/17/young-moneys-roger-that-video-shoot +p9171 +aVQ:Ash wendsday is one of the biggest christian holidays. ... A:not for baptists. but thanks (: http://formspring.me/heidismyname/q/185694307 +p9172 +aVChecking the menu @ Tennessee Red's BBQ, & the smoke wafting thru the air smells damn good. This might be dinner. http://twitpic.com/13og8o +p9173 +aVYou are one of the reasons that made my day meaningful, deaar! ? @rizkifakhrurozi http://myloc.me/3URIp +p9174 +aV@vyshnavi ohh.. that is waaayyy tooooo long.. I need sleep and I need it now +p9175 +aVMariah Carey is my definition of perfection! +p9176 +aV@alieeparramoure And fail for sending this as the wrong twitter first. +p9177 +aVIf you're shopping at Walmart your paying too much +p9178 +aV@gauravkapur You missed meeting me and watching Anushkas performance:-( +p9179 +aVMAN WTF the cops was at my house ringing da door bell in shit they tryin to get me fuck dat i aint goin back !!!!!!! grn +p9180 +aV(8)And now you wanna pretend that your a superstar, And now you want us to end what's taken you this far, Dont tell me that your done as... +p9181 +aVWhy did I go to class? The class skipping calculator even told me not to go. +p9182 +aVWelcome to my life!!! ) +p9183 +aV@TheAimage @Platinum_Group Pink diamond G-Shock...Oooh?? Take pics...I want to see! :) +p9184 +aVGoddamn it, @chirbit ! The timer very specifically said 1 minute and 50 seconds or so! I did not pass 2 minutes! Getting annoyed. +p9185 +aVIf you were accused of being a Christian, would there be enough evidence to convict you? +p9186 +aVYou dont walk into love, you fall head over heels 3 I listen to his heart beat because it plays my favorite song 3 +p9187 +aVMe too!! RT @jpitkin: I love the smell of chlorine in the morning. +p9188 +aVOMG!!!!! Jeremy Scott just came up to me to take a pic.... I'm stoked!!!!! It's got to be the jacket. +p9189 +aVJanuary giveaway wrap-up and more freebies for new subscribers - http://arst.ch/dp3 +p9190 +aVTeen Vogue recs "Remember Me" if you're a LOST fan..is it bc of Emilie or does the movie have time travel islands it's not advertising?! lol +p9191 +aVwell todays all rong and i cant stop the pain im my heart and my finger that waz slammed ina door it [purple] and nasty haha comment if you? +p9192 +aVWherever you go, no matter what the weather, always bring your own sunshine.-- Anthony J. D'Angelo +p9193 +aV@jimmymachan naww I just luv ur thoughts jimmy. they're the same as mine and when u write them I feel like ur huggin me. ILY! 3, x +p9194 +aVI Gotta Feeling - Black Eyed Peas. Ready to get this early party started???? Me, YESSSS!!!! +p9195 +aVso marsha, just one word "SORRY' and that's all +p9196 +aV@veganchefdoug let me in on some juicy (and tasty) details. i'd like to write something about you - remember;) +p9197 +aVmaking her bags to go to Antwerp. Mwahaha, 2morro alone with Mother In Law. Gonna be a big laugh :D *poke poke* +p9198 +aVmy fat ass cuzin broke my table this boi 9 nd weigh 210 & thy mad at me cuz I'm yellin at him. HIS FAT ASS SHOULDN'T OF SAT ON A GLASS TABLE +p9199 +aV@xmrsburns I'll give in and then take it out on myself by running extra miles...stupid cookies +p9200 +aV@ashleydc Yes, you and @FrenzLo... That was the good jam I remember. :-) +p9201 +aVI have spent all day dealing with computer issues. Grrrr! +p9202 +aVWake up in the morning feelin so damn krispyy, i grab my coat im out the door its about to be real frisky. +p9203 +aVOnline opportunities for internet marketing - get ideas by the score! http://bit.ly/mmsg1 +p9204 +aV/@Agent_Ben talk? You weren't very interested in talking during that... meeting with @gillian_foster and I earlier. +p9205 +aVwow ppl need to grow the fuck up....got kicked outta my dads house last night cuz hes childish and treats his house like a fuckicn prison. +p9206 +aV@Zeptonn http://stingerstyler.deviantart.com/ Welcome! I loved the little bird, great job, haha! @DeviantArt +p9207 +aVPerformed AFTER the baby was delivered via C section. My God, this is getting more and more harrowing. Poor women. #rtept +p9208 +aV@bruces Looking at the Word metadata, he spent two days on that note, 27 revisions. Yet still managed to leave an unintelligible manifesto. +p9209 +aV@MandyPandy32 for you or for the kids? ;o) +p9210 +aVRT @2xTheLady: @marksdailynews LMAO...on second thought, you just may be right lol told u....lol +p9211 +aVBe back later Ya'll! Talk to you then! +p9212 +aVYes!!!!! RT @Pilsberry773 am i the only one who wants tyris thomas to stay with the bulls +p9213 +aV@Chinx14 I might have 2 take a trip 2 east 2 and watch or join one day lmaoooo #Twitterafterdark hahah im going to bed +p9214 +aVAndy Roddick and James Blake to Miss Davis Cup http://bit.ly/c0IoEa +p9215 +aV@Leigh_Wright_ there's not as much suppression as you think. You've been looking at pure propaganda dressed up as reporting. +p9216 +aVI wonder if my followers will ever reach double figures :-? +p9217 +aV@BiebersPride http://twitpic.com/13z9xf - Awww this Pic is so adorable u look rlly pretty ! xx +p9218 +aVHey Eric i Think if you did more freeruns you would get tons of views an... (YouTube http://youtu.be/EuB85NG6FrE?a) +p9219 +aVCost cuts help MGM Mirage narrow loss: With some help from cost-cutting and relatively stable occupancy rates in L... http://bit.ly/aHcK0j +p9220 +aVRT @HarvardBiz: The Daily Stat: Fewer Sick Days in Green Buildings http://s.hbr.org/dtq8Db +p9221 +aVtheres a band called Deep Throat my Shotgun.... i like them already +p9222 +aV@brassedoff Ja, that's good... It's really local stuff.... tomorrow do you need some killepitsch for stock replacement at home???? +p9223 +aV@NickyHayden69 Good luck hustling that Ducati around the track this year. If anyone can make it work, apart from Casey, i reckon you can. +p9224 +aVI know this new kid is gay! I always go into my bag and i see him staring at me. I can see him even if im looking forward FML +p9225 +aVSooo looking forward to seeing @Switchfoot tonight!!! +p9226 +aVSo I was just daydreaming on my drive back to work... I wanna go back to school for nursing +p9227 +aVomfg today was awesome, i never thought i'd say i had fun at school lol but i DID!!!!! oh yeah, nerd in the making +p9228 +aV@elainecabildo, just saw the tweet about my lying all the time. NOT TRUE! +p9229 +aVRT @WittyQwan #Shewashornyuntil I called her sumbody else name in our cyber sex story / major #fail LOL damn +p9230 +aV@cookiemomtenn I didn't follow all of them. You can go to the website and there is a list. Look at the last people I followed. +p9231 +aVhttp://twitpic.com/1407rg - Mr. RiguMan!!! +p9232 +aVhttp://twitpic.com/lkxzw - wow +p9233 +aV@joem3120 didn't you like tayshaun? He held on to him too long. He's fucked us. We have exp contracts. Teams are selling low +p9234 +aVYeahhh!! RT @OhJustLikeMe: my top subjects? twitter. #OhJustLikeMe http://myloc.me/3Wh3Q +p9235 +aV@ASH_S_B We'd be happy to send more options your way: help@resideo.com +p9236 +aV@Reesiefbabii We Dedicate this song to you "Take You Anywhere" G.M.B. (G Man Band) feat @ITSThaHitman http://tiny.cc/7A1h1 +p9237 +aV@BabyZebra_also need to back at the end.. :P +p9238 +aVUghh my tweet was too longggg and they shortened it +p9239 +aVThe best thing about me is you. +p9240 +aV@yogabbagabba http://twitpic.com/13vsnv - oh the irony. +p9241 +aV@jonfmoss @AlexInsideMedia Yup, and much more. We have integration with LinkedIn, Facebook & Twitter. Not to mention fast search, etc. +p9242 +aV@RinaDaSinger how am I a stupid fool what!? +p9243 +aVIran's Brinkmanship Is Paying Off #nuclear #Iran http://bit.ly/bDfwBh +p9244 +aVVery productuve right now finished an assignment in bout a hour which means I'm on a roll +p9245 +aVAre there any engineers in Miami that do morning sessions??? Afternoon and Night???? And I'm dead a serious super annoyed w/ ppl! +p9246 +aVand im tweeting this because its happening to more than one owner of jboverdose . 2/3 are involved in it . so if we seem sad , thats why . +p9247 +aVMetal roof may have a lifetime guarantee but if all the gaps aren't sealed you'll have a leak! Here's how to detect it http://bit.ly/9FR2q0 +p9248 +aVQ:How old do you have to be to purchase alchohol? A:18. ;)) http://formspring.me/peace/q/188431498 +p9249 +aV@zoom703 yea he nice with rhymes i give him that +p9250 +aV@LH2450 I could beat you even if you cut off my arms and legs #YouIsAWeenie +p9251 +aVNathan Amaral's Blog: The Dynamic Power of Prosperity: Prosperity is so much more than money or material possessio... http://bit.ly/9WYuj4 +p9252 +aVRT @atlantayouth It's not too late to join Team AYA to train for the ING Half Marathon! This week: 8 miles... http://schmap.it/yVfuWV --MAP +p9253 +aVSwity! watsup?RT @umarsule: *HEY ? :)RT @newnewbabie: Mehn, wat a nite. jst wat i needed 2 get my mind off al my problms....nice 2 knw u +p9254 +aVBeautiful morning! Special hello to the kids at 35th Street School. We see how hard you are working! +p9255 +aVFor the first time, I got a scholarship :D - I am happy today because I get a scholarship. For the first time... http://tumblr.com/xgm6lb8ns +p9256 +aV@TheodoreBoborol thanks Sir, i already recieved the confirmation message.. wuhoo !!! GOOD LUCK TO ALL ASPIRANTS !! +p9257 +aV?Basically, our goal is to organize the world's information and to make it universally accessible and useful.? Larry Page +p9258 +aVRT @sbctoday: Holy SubversionPart One - Rev. Trevin Wax has released the book Holy Subversion. I have the privilege of reviewing... http://ow.ly/16CcOM +p9259 +aV@DaRealSafado I am Tired of the Bitchassness, You Fucking Right. +p9260 +aVObsession of the Week: BCBG's Way-Cute Animal Models http://racked.cc/bxGyrT from @Racked +p9261 +aVHouse now full of sons and husband. There'll be no more amoking for now ... +p9262 +aVThe Twit Cleaner looks awesome http://thetwitcleaner.com I'm trying it now. +p9263 +aVRT @JayUnCut: #AtlChicks ain't shit! Thats why I'm in Indianapolis #YeahISaidThatShit- hey my bestie is from atl, she's a really good person +p9264 +aVLaptop has no charger. I cannot do my Composition Remake. +p9265 +aV#FF my big sis she's 1 of the best mommy's I kno @misslee +p9266 +aVMelo like Black Moon I gotcha Opin ! Dam George Karl with the cancer diagnose hard for me not to root for the Nuggets ! +p9267 +aVEveryone, please give a big twitter welcome to @GibsonLondon! Follow them to see what Gibson has brewing in the UK. +p9268 +aVMy stomach is off the fuckin wall ! U wudda thought i ate vans +p9269 +aVMy dreams are haunting me!!! +p9270 +aVPortsmouth keeper James: I am back to my best http://bit.ly/bcNVnj +p9271 +aV@lauravand pride goeth before the fall :) and let's be honest, i'm *way* more likely to stoop to dirty tricks. "hi, kenny? it's me, john..." +p9272 +aVI Would Never Call Myself #JonasFanNr1 Cause Everyone Is #JonasFanNr1 :)) +p9273 +aVOutstanding Poker Training Center - Start Making Money Today! http://bit.ly/c12svx +p9274 +aVGoodnight.......world. Neeta copy poa and and and Q7-8 tomorrow. shhh haha +p9275 +aVno gas and no money until the 5th of march. I can't even make it home for Spring break...............*exhausted sigh* +p9276 +aVWin a 25 American Express Gift Card #giveaway from @earlsdaughter http://bit.ly/cUL8Kc +p9277 +aV@DaisyTheCrazy Cool i want to buy a BB but are they hard to modifyy? +p9278 +aVRT @mizmoni: I feel like crap! Didnt get much sleep.part of me dont want to go to kelly clarkson concert tonight as i'm tired and stressed out +p9279 +aVThanks to my dealers who joined us for our Webinar this week. Hope the info helped. Dealers glad to be selling TS5's. Have a great day! +p9280 +aV?I am So Sorry?.. Ok Let?s Play Golf! http://bit.l y/9YfEko +p9281 +aVLearn the one skill (Chipping) that will save you strokes -http://bit.ly/ckoxDr +p9282 +aVAm I rdy 2 go back 2 Cali so soon after grandma passin away?? Don't know if a stop 2 Cali after Cabo is a good idea but I miss my fam. ( +p9283 +aVi dont like when people at work bring fish for lunch in a hot ass office at that +p9284 +aVI FELL ASLEEP txtn my BB_BB las nite... I thank I ean #stalked him in my sleep zzzBB_BBzzz bwuahahaa +p9285 +aV@TommieKelly You should GIVE IT TO ME because I know the truth behind the Morrigan! +p9286 +aVThe #French Alps offer excellent #skiing conditions wid some of d world's best skiing #resorts..http://uurl.in/9q7jA +p9287 +aVShoutout To All Mha New Followers ! +p9288 +aVUltra RARE dress hat by Tiffany New York http://shop.ebay.com/130368396840 GREAT HAT!!!! +p9289 +aV@Jess92 ipod shit? i guess...i still dont understand. and im sorry u miss her....u should text her and stuff. how come u havent talked 2her? +p9290 +aVOil drilling off the Falkland Islands will begin next week despite Argentine opposition, the UK territory's go.. http://bit.ly/9j8gEc +p9291 +aVRT @ShiBadd #FF Follow My Honeys... R&Bs best shot at stayin alive: @MateoAmarei @OmegaThaKid @DeonteMUSIC you'll never be disappointed! +p9292 +aV@joelcomm you can start the one saying "NO". +p9293 +aVRT @dougbenson: If you have to apologize for sex addiction, I guess I need to talk to the hand. #myhand +p9294 +aV#isitme or do your balls fall in the toilet water when your taking a shit as well? +p9295 +aVRT @hayleyinme A little bit longer and i'll be fine . +p9296 +aVRT @PrinceAdrian22: #Dontjudgeme just because my girl is better than yours +p9297 +aVBecoming more of a Mac enthusiast after spending the past hour trying to get our expense/receipt web program to work. +p9298 +aV@Twilight I am sooooo excited!! I CAN'T wait to see it!! +p9299 +aV#imfromKC where we think a party is a bunch of niggas sitting around smoking weed #FuckOuttaHere I moved to San Antonio +p9300 +aVTo be quite frank. I'm extremely brittle right now. That is all. +p9301 +aVRT @kennedae: Goodnight my luvs. "Everyone wants to be somebody, but nobody wants to be themselves." +p9302 +aVIf you're interested in promoting your Twitter profile, you should check out FeaturedUsers.com. http://bit.ly/bZTXiY +p9303 +aVIm off to Wigan this weekend to watch Tottenham...First away game in agesssssss and taking Emily with me wooo x +p9304 +aVThe Ultimate Super Soviet Russian team sure has been scrambling the last few minutes. +p9305 +aV@Ptownn my G whats goody whens your lunch +p9306 +aVSomeone found 9 fine restaurants in Colorado Springs, Colorado - with http://bit.ly/ofJfg Did they find you? +p9307 +aV@missgiggly No you wont. @mr_billiam pointed out that a few others are using it.. and its an adjective. But whatever. +p9308 +aVWISH i could be at the talent show right now. but I have the worst sore throat everrr +p9309 +aV@RobertVerdi RT to win a FAB Fashion Week Gift Bag, also in the bag...@rockandrepublic jeans!!! (winner chosen at random) #RVTIPS +p9310 +aVPeople are overrated and I'm over it, blah. +p9311 +aVRT @wonkroom To clarify: Reid says IF reconciliation is chosen, public option will come to vote. No final decision on reconciliation +p9312 +aVI dunno whose idea of a joke this was, but I was in Wyshynski-ville (New Jersey) this year and @wyshynski is in my homeland for two weeks. +p9313 +aV#imfromGvegas where da good die young! RIP my nigga skee http://twitpic.com/141h2l +p9314 +aVIm just gonna clear my mind of everything and just smile and live. +p9315 +aVOn TV: "Lost" Spoiled Bastard. Late...and lost?: Part of me doesn't feel so guilty about posting this on Thursday,... http://bit.ly/dbr7fo +p9316 +aVive done all my homework for the holidays from maths. and i really cba doing the maths homework : argh. +p9317 +aVNo artshow...no driving...ready to relax w/ a glass of wine and good company. +p9318 +aVRT @OGOchoCinco She needs a damn OSCAR for this performance she putting on, I quit porn to be with him, girl SHUT THE FRONT DOOR +p9319 +aVFun night of NBA2K10 with my cousins. Discovery of the night: Pwede pala ang 5 controllers sa PS3 haha. @samuelpaler FYI. It takes five! +p9320 +aVI am shaking and its not from the cold +p9321 +aV#Death 2 You #WackBITCHES! +p9322 +aVRT @markcrilley: Best Prince song that hasn't been played to death? I vote for "Sign o' the Times": --I vote for "Peach". Great guitar work +p9323 +aV#Thanks to everyone that gives me #blogspot love! -hugs- ( +p9324 +aVQ:y r u awake? A:because im bored and cnt sleep [ help http://formspring.me/AurenixRTM/q/200091136 +p9325 +aV@J_BieberLoverXO lmao! its okay . everyone loves you xD +p9326 +aVI'm lip syncing to the song! +p9327 +aV@iCest_la_vie help me.! I need someone to unbore me. +p9328 +aVMy all time favorite episode of Sonny with a chance is the talk show .. i think @ddlovato is hilarious in it !!! :D +p9329 +aVme is going to follow her tumblr. hehehe +p9330 +aVThe Ibprofen isnt doing what its meant to. +p9331 +aV@paulsq now you've shattered my illusion. I must go to London town and see what the real people are like. +p9332 +aVRT @maljames2: Just got a BIG project at work. This is gonna be great, I cant wait to show out --- Yeah! Do it the James way! +p9333 +aVRT @missmi3ka: #IwouldLikeToKnow why niggas with big ass dicks wear skinny jeans?? +p9334 +aV#nowplaying ss-tested and true. 3 +p9335 +aV@marixalilith be warned. it will fuck you up +p9336 +aV@rainertibbett thankyou for the song :)) +p9337 +aVtoday, i want to study hard because tommorow the 2nd T.O. wish me luck :) +p9338 +aV@PeterArceo you called it. get the hairdryer out. And hair clippers. :) +p9339 +aVI feel like everything I have ever established is worthless +p9340 +aV@Preem_ThaaDream same so mad skool on monday wish diss skool shit was ova buhh I only got like 4months soo yea how was ya break??? +p9341 +aVCan't believe how contagious it is! my neighbors are listening to the Jonas Brothers! :D so awesome @jonasbrothers 3 +p9342 +aV@princey_mj_real PPPPPRRRRIIINNNCCCEE!I'm Sahana how are you?PLEASE reply me and thanks for my list.You rock! +p9343 +aV@GIMMEhead_aches BLACK. Or rainbow. Whatever you like baby! +p9344 +aVRT @OGOchoCinco Changing my last name to Goodell, when I get fined the headlines would say Goodell fines Goodell again, #randomthoughtthatsf +p9345 +aV@YamiLovesJustin & @BieberCrazy1003 thx 4 following me.!u're anytime welcome - can you help me to ask @justinbieber if he can DM me pls.?! 3 +p9346 +aVGreat time with @shashacarr , @shanaisrad , @the_real_fisch , @kwtu11 and the rest of the @cherrycrusade - awesome game #fsj +p9347 +aVchinnes take out.tv.and computer this is the life lmao +p9348 +aV@iamRobster ok. I want to see alice in wonderland 3D at imax but need to book. I been snooping....loved Gamer too! +p9349 +aVGiant Rabbit! The same kind of rabbit as what we had but 3x bigger. http://bit.ly/aMFFFd +p9350 +aV@TubbySaurusRex A teddy bear. And you'd be losing. +p9351 +aV3 hour lifting, conditioning, and ab workout at 8 this morning, awesome. gettin recognized at the bball game tonight, scholar athlete night. +p9352 +aV@TheCurvyModel I have been having the very same problem. +p9353 +aV@Albyll levelling multiple alts on RAF, much easier to buy bracelets and get a level or two each day. +p9354 +aVProgram targeted in Fort Jackson probe moved: A U.S. Army program at the center of a probe into allegations that M... http://bit.ly/aCSszQ +p9355 +aVJust remembered Al and I were PURE JIVING to Mowgli's road at @MarinasDiamonds last night. Oh dear. +p9356 +aV@mwhi I'd pay handsomely for an autographed copy. +p9357 +aVRT @swifterland: making up lies, rumors & making someone look bad because there's no real reason for you to dislike that person is pathetic. +p9358 +aV@HImmHOtt1 @BPEMusic I feel U My Dude Only Way. +p9359 +aVFeels like I should try and get more out of my mac today. +p9360 +aVFOLLOW @FollowCher AND I'LL DM JUSTIN FOR YOU! the first person who tells me that they followed her, i'll DM him for ya ;) +p9361 +aVHas Kenny Chesney had his cowboy hat surgically attached to his head yet? If not, I say go for it Buffett Jr. What have you got to lose? +p9362 +aVRT @Its_Me_Zuli: Ooooooh I think Ima make some fried shrimps w French fries. I want some +p9363 +aV@runway_addict glad you ladies made it safely...have fun +p9364 +aVJon Montgomery's Gold Medal Start!!! GO CANADA!!! http://post.ly/Okmc +p9365 +aVRT @thelovestrings: You don't have to ruin the beautiful petals of a flower, because you know from the start that I Love You MORE. ) 3 +p9366 +aV02/20/2010: Police Commissioner says Christianity does not make the police soft and meek (Times of Swaziland) +p9367 +aVJust had the massage of my life! I am soooo relaxed! +p9368 +aVI watched 18 episodes of the office today/tonight #feelit. Just a few more to go and season 5 is done. +p9369 +aV#iloveto enjoy an icecream and watch my favorite channel. really good match. +p9370 +aVWant to escape from being among the 95%? +p9371 +aV"How are you feeling?" Just Peachy! :) http://short.to/183sq +p9372 +aVRT @ellepiari: Ck out "my" song! ;)*beaming* @douglaspaul: #ff @ellepiari : Howard Roberts' "The Lady Wants To Know" comes to mind. ? http://twt.fm/376319 +p9373 +aVloll my playlist is a perfect pick me up! all you guys should listen to it!!! +p9374 +aVi love my shawty @admirebieber 3 +p9375 +aV@isabellajessica ciee,, yg di sitnii,,,how's the weather? It's raining cats and dogs n elephants n dinosaurs in jkt!! Haha *lebay mode on* +p9376 +aVAnd then I'm gone bug the shit outta them Triple C's niggas until I het Gunplay on a track..he be on that gutta shit +p9377 +aVSingle Mom Discovers Simple System For Making Quick And Easy Money Online with Work-At-Home Opportunities! http://tinyurl.com/yc4kadd +p9378 +aV#thepiratebay A new experience with PirateBay! Participate!! It's fun! http://thepiratebay.org/ +p9379 +aVWhy in the world I got may weird people,weird means unfair,silly,nasty,stingy,etc +p9380 +aVNew track by P.P.Ska named Ass-O-Ass is going to crash the charts! At least you will see a video clip on it in april! We hope... :) +p9381 +aVi had the best gelato of my life at northpark mall in dallas. what is the name of that place?? proguito's or something like that. +p9382 +aVChris Brown has a song "Invented Head"????......hmmmm I'm gonna have to hear that one... +p9383 +aVWatching australias greatest athlete, I think I may be beginning to like sport ;) http://myloc.me/3YAyT +p9384 +aVi wish it was easier to express things to you. +p9385 +aVis shattered and off to bed after an evening with Dave and George. Dave being a tv channel and George, well, not. +p9386 +aVI live my life just like a robot. always doing the same thing everyday and I'm SO SICK OF THIS for my godsake. +p9387 +aVCharlotte hand Cleveland second straight NBA defeat (AFP)http://bit.ly/9wN8Rs +p9388 +aVHey @Turn10Studios , I won the Hyundai Video Battle, and I'm picking up my Hyundai Genesis this week. Do you want to do any press? +p9389 +aV#shoutout to the new followers...especially the 900th follower @DocLG +p9390 +aV"This pad has doors so people don't come up in yo space son." http://bit.ly/dyazPO +p9391 +aV@J3NICH0L4S you totally can come! I'll pick you up in uh, my jet. You know. ;) +p9392 +aV@molly_oneill You need godsends! Ours here at FPLM are worth their weight in gold, chocoloate, scotch AND cupcakes. Want to borrow one? +p9393 +aVNetflix Goes Down - Hopefully your Friday night plans didn?t consist of streaming a movie via Netflix, becaus... http://ow.ly/16Cz3p +p9394 +aV#youknowitslovewhen fate doesn't want you to be apart :) +p9395 +aV@creampuffsteph because the LU are losers who can't make it criticizing published works in RL they have to stoop to ffn +p9396 +aVwhy do they kick you out of a bar for being drunk? i've never been thrown out of a restaurant for being full. +p9397 +aV@saultyevil but now my middle finger has swelled up +p9398 +aV@tinchystryder hi there, im marrying you, goodbye :) x +p9399 +aVi can never keep a straight face when im taking pics with people +p9400 +aVYou got it baby :) RT @hanirazdy: @nuramima 13th Mar Make yourself free!!!! +p9401 +aV@high_n_fly or she give u head while playin or watchin the game #Woot #Woot +p9402 +aVThey say that's its love but to me it's lookin counterfeit...I get done wit one then move right on to another chick. +p9403 +aV@estellehart What've you gone for? The 13.5 plus to heavy blankets & a hot water bottle is working out great for me. +p9404 +aVSinging helps stroke victims regain speech - http://bit.ly/bEfawZ +p9405 +aVhttp://www.youtube.com/watch?v UXxRyNvTPr8 #nowplaying one sweet day... damn i miss the ones ive lost 3 1.4.10 3 2.4.09 3 5.26.08 +p9406 +aV#GoVegetarian , simple as dat.... I'm on my way to Vegan. Just goota learn Vegan Chocolates! +p9407 +aV; at last my "MySpace" keep receiving friend requests . yeah ! hop out of the bed , man ! hehee +p9408 +aVSECRET: White Teeth Trick! Dentists don't want you to know about THIS teeth whitening secret! ad http://tinyurl.com/yemoot3 +p9409 +aVThis is the 1st time I've watched my brother play COD and remained silent lol +p9410 +aVthe word #commitment is like a snake around my neck chocking me .. +p9411 +aVZack Rosen is more red hot than his hair. Another 3 pointer, that's 3-7 from three for him and a game high 23 points so far +p9412 +aVwhen i got on earlier i had 269 followers now i have 327 thanks to the people who gave me shoutotus... you know who you are +p9413 +aVRT @louiseblack: arg! True Blood season 3 is set to come out in June this year. That's soooo long to have to wait. +p9414 +aV@tweetjeffmonday yes- thanks for the tip! +p9415 +aVJoin Data Network Affiliates for Free and I will help you grow your business. spon http://tinyurl.com/yc6ytlf +p9416 +aVwas in a hurry to do maths homework realised that i dont have it tomorrow! +p9417 +aVRT @maineprince: Im Wit my hmeboi stalkin his baby mama lmao too funny we want details lol +p9418 +aVget the hottest ringtones on your cell music sounds and more http://bit.ly/1aDlLg +p9419 +aV#nowplaying 05 - 11am ? Incubus http://bit.ly/alZhuf via @twitbird -- forgive my indecision, I am only a man... +p9420 +aV@AntiBarbieBitch girl u need to need to read just old dude. tryna roast me!!! but go through my page! +p9421 +aVMe and kara discovered thee best nicknames, she is my best. tada! +p9422 +aVI don't mind movie trailers, but why do i have to sit through Malteasers and (soon to be) out of date SKY TV Promotions? +p9423 +aVMake Big Part-Time from home working on the Internet. Get complete details now! http://www.mlmfreesuccesstips.com +p9424 +aVRT @DudifyMe: Supermac18.. Behind the scenes? http://bit.ly/dneC3f Enjoy the music! RT? +p9425 +aV@TheJonasSource my friends and I noticed that too! haha! +p9426 +aVBaby's birthday was a success! Thanks to y'all who came and showed Kaiyana love... she's super pooped! +p9427 +aV@crackpotjack The Kwon on the cave roof is most likely Jin. Last week when Aldo wanted to kill him. Justin said "we can't. He's one of them" +p9428 +aV@ValClifton that u know of... I'm sure one of the dude building it crapped in your toilet and took a quick shower afterwards. +p9429 +aVUmmmm may be I should not wait for them to scream at me and get started :S +p9430 +aVThank you Streamate members for making our night orgasmiclly fun! You guys and gals rock!! +p9431 +aVRT @bahlimited: Hey peeps, kindly check out our new design 'RUMBLE'. Thanks heaps! http://bit.ly/bZ4i39 http://myloc.me/41y5f +p9432 +aVUgh! If I am up past midnight tonight, take away my Internet!! Also? Not talk to @an_an0maly and @the_girl_20 today :( +p9433 +aV@shanselman The same thing that my boys do I bet. We have to put patches on patches. +p9434 +aV@roxymeloni They look like there about to just kiss :) I love how @nealbaer put them in that kind of position when there together . +p9435 +aVOMG! I'm listen to Conspiracy Theory :O No words for describe it @nickjonas You rock :) ! +p9436 +aVAaarrrgh really wanna pull my decks out the garage but I ain't got n e needles n haven't bought vinyl for bout 6years. Me need cd decks pls +p9437 +aVQ:nope your good thats what i think about ... A:Thanks :] lol i do write what i feel... http://formspring.me/ChandreIsANerd/q/203924928 +p9438 +aVSupport Cheias na Madeira, add a #twibbon to your avatar now! - http://bit.ly/byufMN +p9439 +aV@Farisky Sreesanth is a fast bowler; he has the ability to bring any match (that India bat first) to a fast finish. +p9440 +aV@JAYlbaitXx @Tulip001 @ourbombay Yes i agry +p9441 +aVRT @kellencoldiron: http://twitpic.com/14k92g - My favorite picture of last week. Pure joy... my fave too. +p9442 +aV@Bonang http://tweetphoto.com/12086867 the original looks much better mmm http://myloc.me/41VhN +p9443 +aVDon't you worry 'bout a thing, cause I'll be standing on the side when you check it out (by @johnlegend) #nowplaying +p9444 +aV@carynroman thank you so much! so glad to be sharing it with you (20.5 years and counting... :) +p9445 +aVRT @abc7chicago: School helps children with autism make 'giant steps' http://bit.ly/aRbuVT +p9446 +aV@CBreezysLuver http://twitpic.com/14lazu - TC just tweeted me saying its Drew :L we dont need sherlock +p9447 +aVworking out, going to the movies, dinner with the family, then back to bg, hopefully my roommate will be better and can come back! +p9448 +aVI sware ppl be takin me der man family members always got somethin to say boa yu be wantin to punch them more den the outsiders huh +p9449 +aV@missChrisCash I mean I'm bouta see everybody with them on and I meant the grey ones.... its a shame +p9450 +aV@lindseyj_08 you go girl! I hope you've had tons of fun! +p9451 +aVRT @OxRxG: Jackie O-Smashes carried off, her ankle bandaged. We hope you are alright girl! MDL @oxrxg +p9452 +aVRT @ZanessaFanClub: http://bit.ly/9Vjohg X17 gave Vanessa flowers on Valentine's Day, and Vanessa semmed happy to receive them! - Daniela. +p9453 +aVMy name is Khan and I am not a terrorist http://ow.ly/1925V +p9454 +aVI love every song! #TokioHotelVenAVenezuela http://myloc.me/40pT6 +p9455 +aVRT:@steveaustinBSR Can't wait for The Expendables, I hope you kill at least 500 people in it or I'll w... http://bit.ly/9TpkYR #expendables +p9456 +aV@justinbieber, Chuck Norris would be very happy if you follow me! haha, Pleasee, FOLLOW mee... let me happy :D ILY 3 75 +p9457 +aV@Kimbanerd Ermm thats i did on mine lol right just click on the tweedy sign and its says allow and it should be alright x +p9458 +aV@Gina_luh If you are feeling down meditate, calmness is one of the most successful ways of combating stress +p9459 +aVwith brooke&justin latttter. hit the celllllll nigga. +p9460 +aVFinally read joe stack's letter that the fbi decided to censor. Its sad that our gov has driven people 2 this. +p9461 +aVGood fun! RT @mashable NASA?s First iPhone Game: Lunar Electric Rover Simulator - http://bit.ly/ceZYxM +p9462 +aVRT @LoveMissPiffy: #ImAttractedTo Men that'll hold you down no matter what +p9463 +aVMiss you too of course hihiRT @dinayuliana: Asik my ex @thomaschrismadi miss me ! Miss you too +p9464 +aV@samjacklover bored. And gotta go back. Be back at lunch. Going away again. +p9465 +aVI don't like royal flush on ABDC .. they're wack ! +p9466 +aVWoohoo! here it comes my favorite Rammstein's song! "Do Riechst So Gut" #nowplaying +p9467 +aVI hate working with my stepdad this is bullshit +p9468 +aVJust left maddie's house... And this why you don't leave an entire bio project for one night... +p9469 +aVGot home b4 it gets dark and now I'm onto bigger things. +p9470 +aV@maccaveen I fucked up a filling. It hurts. I have a cold. +p9471 +aVManbitch RT @sab316: #imattractedto to the latest #blackberry phone that is out, LOVE my 9700! +p9472 +aVjust got off of the bus; had a great dayy (: I thought of him *all day* (: I love him so so much (: +p9473 +aVOK so I thought this may happen: but does the job offer prevent me from continuing my application up the road? +p9474 +aVremembering watching the movie percy jackson and the olympians... i wouldnt say it was bad... it was ok but leaning closer to it was good :) +p9475 +aVWhere are YOU at with chick-fil-A ma'am?!? Lol RT @Bask_N_Robbins Chick-Fil-A on deck :) +p9476 +aVHihi RT @dinaheristin: I also see her..RT @febicil: I just realize that one of my lecturer is on take celebrity out.. Omg! +p9477 +aV#ilikedyouuntil you got mad I wouldn't let you hit #growthefuck up #bitchboy . +p9478 +aV@itsSterlingK *giggles and runs fingers through your hair, looking at you* We were very hyper... o.O +p9479 +aVhttp://twitpic.com/12gq08 Stop hating on @parishilton ! She is the sweetest most down to earth celeb i have ever met!(: I adore her 3 xo +p9480 +aVSo. Thriving Ivory is my new favorite band. The song Angels On The Moon is amazing! EVERYONE GO LISTEN TO IT RIGHT NOW. 333 +p9481 +aV@djblord im not sure he was at magnatizm....but give him a call he does good work an he wont ry to bust ur head +p9482 +aVComputerWorld EU data protection chief slams secret ACTA talks http://ow.ly/16Dpo7 +p9483 +aVUFO - Done, my first try at FMQ +p9484 +aVRT @KUSports: The Jayhawks could clinch a 6th-straight Big 12 crown w/a victory tonight over Oklahoma. http://bit.ly/a288nn #kubball +p9485 +aVRT @ihatequotes: True happiness comes from the effort of making others happy. Give and share your love everyday. (real talk) #ihatequotes +p9486 +aV@udothedishes I need a video camera!!! DM, how much u want? +p9487 +aV@wasteyouryouth yea thats the one! +p9488 +aV@ProWrestlingUSA you guys are all over the place I am liking that +p9489 +aV@MichaelAllStar you guys did great i loved it +p9490 +aVI know #oneofmyfollowers goin to say sumthin bout my goings on tonite. But hey, Villain in the name for a reason +p9491 +aV@JoshLebron I can't that day , cuz it's my dads bday too and mothers day ! :( +p9492 +aVWell my monday is half way done +p9493 +aVRT @breetaay: #awesomeindianthings my bffffff raha 3 favorite indian forrlife (; +p9494 +aVone of the best bookstores in town has to be crosswords # kemps corner +p9495 +aVBrothers and Sisters star Dave Annable gives diamond engagement ring to Odette Yustman: Brothers and Sisters star ... http://bit.ly/aE0qG6 +p9496 +aVForeskin Restoration - How to Attain a New Foreskin Using a Simple Exercise Any Man Can Learn and Use http://zwap.to/001lo +p9497 +aV@GottaLaff its been on and off on my computer and i always make sure that my results are never filtered +p9498 +aVRT @christopher832: #SuperBallinTweet micheal jordan asked for my autograph +p9499 +aVA big Thanks to everyone that came by the TWIRP booth at the Texas WebEOC Conference. We're now focused on the ROCs that are coming in April +p9500 +aVI need a herooooo I'm holding out for a hero till the end of the niiiiight #Bonnietyler +p9501 +aVtoday is not my best day ............. +p9502 +aV@melnichter is funnnnnny!!!!!!!! i was shouting by the way. +p9503 +aVif ya can't support ur own local artist .how can you support anyone!? I support ANYONE doin something positive for the city of Indianapolis +p9504 +aVRT @JoStepBar: Holder admits nine Obama Dept. of Justice officials worked for terrorist detainees via @twitoaster http://bit.ly/b1rdvH +p9505 +aV@BieberDweebs im going to the 25th one in chicago!!!! +p9506 +aVRT @tommcfly: Everything will be ok in the end. If it's not ok, it's not the end. +p9507 +aVRT @_wotta: Unsure about #HeavyRain? Win our cpy just follow @wonderwallweb @_wotta and @alec_hilton and RT winner Friday when my SE copy arrives :) +p9508 +aVRT @DeauxmaLive: http://bit.ly/a24qJz vote for my boobs RT RT can't believe I am on twitter and don't really know why I typed RT +p9509 +aVI'm so hungry someone feed me :( http://myloc.me/44GoJ +p9510 +aVWinter is a-stayin' in, Lhude sing Goddamm, Raineth drop and never stop and still the wind doth ramm! Roll on March! +p9511 +aVfalling in love, such a delicate way to get hurt. and i can't say i'm not afraid. +p9512 +aVis home from school (: today was pretty good! I love you Brad and Alexis 3 +p9513 +aVhttp://is.gd/8TDSI Shameless, I know, let's use HaitiAid to smuggle Heroin. #BornInNextLifeAsADUNGBEETLE +p9514 +aV@nia_zuri yea i'm there with my band. we sing EVERYday at the Bell Ice Cube. u should come out! :) +p9515 +aV@tajacek You didn't waste your money on the iPhone any more than you wasted money on your first car or first computer. +p9516 +aVI'm proudly wearing my @bigasssandwich shirt underneath my chef coat today +p9517 +aV@GreeGreece However, consider the uncertainty principle of QM and the observer effect. I don't think it only applies at the quantum level... +p9518 +aVSimple exercise to strengthen the memory and to promote a healthy brain. The oxygen will feed you... http://bit.ly/b279zH +p9519 +aVSo apparently my PMR number is 69. Two years ago I didn't think of anything. Now? FUCK YEAH. +p9520 +aV@mandapops I want my bedddd. +p9521 +aV@SackieBaby LMFAO! HOW CAN YOU CALL SOMALIANS CRETURES!!! See what I'm saying compared to you lot I aint not racist +p9522 +aVRandomly #nowplaying. Summer Sunshine by The Corrs. Reminds me the days I liked this song. 2004/2005. +p9523 +aVShe told me to shut up, then asked a question :( .. but she told me to shut up! I'm not a bad person :( +p9524 +aV"it rocks , it rocks"-barkley RT @Power106LA The continuing saga of @Junior106 & what he had 4lunch today:http://tweetphoto.com/12117560 . +p9525 +aVI'm gonna start hunting girl scouts down... so they will sell me some cookies!!! +p9526 +aVYou Have Been Created As One Of A Kind. There Has NEVER Been One Like You...And There Never Will Be Again... http://snipurl.com/ts12h +p9527 +aVjust got done rocking with @jbizness. it was dope spinning for you holmes! +p9528 +aVhttp://twitpic.com/14sxwe - boredom. possibly the worst diagnosis i could ask for. +p9529 +aVmy eye lids are trying to shut themselves! i must be tired or something! +p9530 +aVAllready up and running. Have to do some stuff today, but first a breakfast. +p9531 +aVRT @ihatequotes: I love 3 things: the sun, the moon and you. The sun for the day, The moon for the night and You for-ever. -G. Blackmore #ihatequotes +p9532 +aV#Musicmonday "Dude Beenie Man Ft. Shawna and Miss Thing My bad yal my spelling is way off today +p9533 +aVKahshe Casuals Giveaway. Enter to win a Crew Neck Sweatshirt http://www.todaysdiva.ca/2010/02/kahshe-casuals-giveaway-ends-march-3.html? +p9534 +aV@LauzAfrodite @obivain1 bit isnt jamie at the hotel at the moment ? x +p9535 +aV@josephpagen RT In each other's eyes we can see the entire universe, all the mysteries of the cosmos and the other side of our soul. +p9536 +aV@modernemotive Wow had no idea! We have talked about starting our own garden. I wonder about all the plants out in our yard sometimes +p9537 +aVRT @TNgirlinWA: YEP! RT @NCognito336: Roman Polanski has new movie out called The Ghost Writer go watch it if u support child molesters... +p9538 +aVU did it again! Are u ROBL again?haha RT @ViraHalima: haha i know, it's my bad, i am error +p9539 +aVNEVER Struggle To Generate Traffic To Your Site Again! http://bit.ly/5atCi6 Grab Your Copy Of Twitter Decoded NOW! +p9540 +aV#imtiredof Winter and Snow +p9541 +aVhad a wonderful meeting with the College Republicans of UNC-CH last night, thanks for having me and look forward... http://bit.ly/aiaWsB +p9542 +aVhttp://trunc.it/5tikz Some nice Nintendo DS ads on BannerBlog. +p9543 +aVFeeling like shit this morning. I hope its just a cold +p9544 +aVjust woke up goin to greer town hope kim you get better..., cant wait for the friggin weekedn +p9545 +aVI think i found the right balance in my dinner, two pieces of rice cakes with 3-2 slices of cheese and a big cheese of peppers and white +p9546 +aVThis is the only tiger I feel sorry for:http://bit.ly/a3RJ7H Culled for body parts, what?! +p9547 +aVeating pudding; bored out of my mindd!! TAYLOR LAUTNER 3 +p9548 +aVLike I wanted mom to cut off the back of my hawk but she was too lazy "Why wouldn't you do a mohawk tomorrow for the last time?" So I did. +p9549 +aV@Dr_Supreme thanks for the RT +p9550 +aVOh, I tried a new organic shampoo for healthier scalp. Amazing after just 1 application. It's Avalon and you may want to check it out. +p9551 +aVMAC Cyndi Lauper Viva Glam application complete! I adore @MACartists check it out http://twitpic.com/14wlse +p9552 +aVYeay, sold my apartment! Moving in 6 days to the other one! Mi is happy!!! +p9553 +aVGuess i was not enough ( +p9554 +aVI have never met a man so ignorant that I couldn't learn something from him. +p9555 +aV@Culdo pffft I remember a year ago you didnt even know who kol were +p9556 +aVMe and @thewaywetalk__ are going to the movies next Friday xDD +p9557 +aVand he knows every word to @justinbieber s songss. its preettyy funnnyy not gonna lieee +p9558 +aVRT @asherroth: "Marijuana, in its natural form, is one of the safest therapeutically active substances known to man." +p9559 +aVoh contract is gonna b first hour.wil b boring alot. hope i don sleep. +p9560 +aVRT: Goodbye: I'll see you again, til your hand is ready to hold mine. Letting go: I'll miss your hand, I just realize it can't hold mine. +p9561 +aVbout to watch batman begins.... o yea +p9562 +aVYou'll need to apply yourself extra diligently today or you'll... More for Gemini http://twittascope.com/twittascope/?sign 3 +p9563 +aVIt looked like the RT_Steve_Jobs test worked. You must be human! +p9564 +aVwaiting at luna park for paramore.. @loveonherwrist and @linna_la almost here :D 6 ppl in front HELL YEAH! +p9565 +aVRT @YogenFruzSC: There is a 50% off coupon on our Google Maps profile. Go find it !! +p9566 +aV@ashtay9 ME TOO I LOVE THAT STORE! +p9567 +aVTop CNN Headline Iran arrests Sunni militant leader - Iranian authorities have arrested the leader of a Sunni milit... http://ow.ly/16DPUw +p9568 +aVRT @XWhitakersNeckX: @hollywudbabylon @GGTMC I loved David Hess in Smash Cut, my wife has a big crush on him? +p9569 +aVI'm super tired but I'm going to stay awake for a little bit longer and finish some work. Also, I need to make my dad a facebook page. +p9570 +aVi give up studying....i gotta write this paper +p9571 +aVRT @hancia: RT @OhJustLikeMe: Teachers were once students. Why can't they feel our pain? #OhJustLikeMe http://myloc.me/46izi +p9572 +aVRT @jfuturistic09: OMG BOW BOW #WHOAREU IF U AINT HEARD #FUTURISTICZOO LETS GO! @ http://short.to/18czv #RETWEET +p9573 +aVProsecutor: Man stalked, killed 5 Calif. victims http://bit.ly/aeh3mD +p9574 +aVRT @BADBiTCHangie: #IfYourPuertoRican you love Christmas time, Thanksgiving, Easter..PERNiL!!!!! +p9575 +aVHow can I sleep without duck-down duvet at this cold weather? +p9576 +aV@khyLEEahx3 I REALLY dont appreciate how jeanmarc johnmarc (u get the point) followed me without tellin me! and i was tlking about all types +p9577 +aVSo many folks sleep on Tue but if u play it right, it could be a big too +p9578 +aVBuy Cheap HP 2509m 25-Inch Diagonal Full HD LCD Monitor (Black) Specia http://bit.ly/d3ZOQe +p9579 +aVIhop getting ready to grub!!! http://twitpic.com/14x8qu +p9580 +aV@_sutcliffe today is actually national pancake day. happy holidays to you and yours +p9581 +aV@SteveOReilly Yeah, Im going to that one live, i cant believe the shit Mir just said about Brock Lesnar +p9582 +aVAlso, I feel like I finally did something genuinely good for once. +p9583 +aVI think i accually want to go to school, hm. +p9584 +aVi just w0nder if u ever think of me..happy thoughts +p9585 +aVLet's see....twitter or homework? Hmm.....is that even a descision? +p9586 +aVcan't wait for 11:30 :-D +p9587 +aV@Mini_Mimi_23 lol really?!? yea i been born and raised here hehe...im a southern girl at heart too :) +p9588 +aV@Leslieeann I need your help - please join my clan! http://ninjaclash.com/invite/direct_link?uid 1000146530 +p9589 +aV@ErinHere lucky you! I'm dying to read The Passage. +p9590 +aV@docbrite Wow! I never noticed that EITHER! Wonder what was going on in the King's mind when he named them? +p9591 +aVHaving some pizza at Aniello's with my brother and his gay friends. Can't wait to get a piece of sausage! +p9592 +aV@gvh0203 I was gonna talk to u bout that cause I wanna buy my #miniplan...I think its the 21 games one in the lower reserve for about 260. +p9593 +aVi #love #gmail :) mail, calendar with sms reminder and such.. buzz! +p9594 +aV@JillibEan623 fair. . . My stomach is full after my cheese and crackers lunch too. Us dainty's have to stick together +p9595 +aVI cant wait till the ist of March and maybe they will believe me +p9596 +aVRT @catchme_J: Can't wait for the world tour 2010 .. So excited ! 3 +p9597 +aVRT @ithinkthatTOO: How can there be people out there that abuse animals..just how could they do that?.. #ithinkthatTOO +p9598 +aVIt is crazy! RT @Marcusfitz1: Its crazy that Westbrook & LT were both released within days of each other and (cont) http://tl.gd/b8nma +p9599 +aVI feel like I'm getting a fever again, this can't be good +p9600 +aVYet another blog post to make you question my sanity http://completespaz.blogspot.com/2010/02/olympic-spirit-will-probably-never.html +p9601 +aV@basicTeeC Lol, awww. Why she say that. That's not nice. :( +p9602 +aV@thebg5lover My favorite is the Cherry Almond Meal Bar , bit.ly/bBtE72, but I'll check and see if new flavors are in the works. +p9603 +aVahahahah How to Suck at Facebook http://theoatmeal.com/comics/facebook_suck +p9604 +aVRT @ShanikaLaShae: Jade is freaking hilarious! ? ? "How Low Can You Go? How Low Can You Go? ? ? Lmbo! http://twitvid.com/C4FA5 To Cute aww +p9605 +aVI hope everyone is having a great and productive week thus far! Make it happen! +p9606 +aV@XxSceneDreamXx And all the rest of his movies!!! +p9607 +aVRT @mattvardy: Check out Ontario's most exciting up & coming pop rock band... pardon? Yah I said it: http://wp.me/pEZ9F-8J @tonighttonightt #musicmonday +p9608 +aVListening to the new Joanna Newsom cd and taking a quick snooze. +p9609 +aV@Blessingbieber heeeey can you PLEASE help me get to 4,000 im so close +p9610 +aVFollow @ARoadRetraveled A #traveltuesday favorite who will take you around the world from your desktop. #rec +p9611 +aV : I fucking want to kick my brothers asss I swear stupid fucking prick. +p9612 +aVGreat to hear that Scotland international Thom Evans is on the road to recovery after his injury picked up in the... http://bit.ly/9wzpIS +p9613 +aVRT @YuksGirlYum: He has arrived.the next big thing in Pop Music.my best friend & cousin Jeremiah Scott!! Follow him @JScottOfficial +p9614 +aVim only 16 and i already have wrinkles ;_; i need to stop scrunching my 4head and get antiwrinkle cream STAT +p9615 +aV@PersonaJLesus Oh you're so nice ! I smile for you ! Hope you smiling too ! Thanks a lot for being here ! I love you too :) 3 +p9616 +aVI wonder why in tarnations Americans are so puritan that they actually expect their superstars to apologize for getting laid... #TigerWoods +p9617 +aV@withlovenico yeah super cute and he's the only band member that I know. Lol! Suresure ! Show me on fri! +p9618 +aV@essdogg, 3 Favs! Your tweet has been favorited by 3 people. http://favstar.fm/users/essdogg/status/9559303051?a m +p9619 +aVRT @StarCreations: RT @dutchfeltart @GlassRiverJewel: Sweet Spring! http://bit.ly/czZKl3 #etsy #wwes +p9620 +aVlies on top of lies smfh +p9621 +aVI NEED 30 more min me sleep..... but I guess not - cause that would make me late to work! +p9622 +aVI thought Didi Benami did very well. ) +p9623 +aV@wordtoraven Alright then. Thanks. +p9624 +aV@bevysmith You are watching a nervous breakdown in real time. +p9625 +aVhttp://twitpic.com/1501qo chicken n guacamole, the rest of the dish is still cookin..n i didnt deep fry da chicken its baked +p9626 +aVI need to bring up my grades. Bahh. +p9627 +aV"It is hypocritical to pray for victory over our sins yet b careless n our intake of the Word of God." - Jerry Bridges http://myloc.me/48QeI +p9628 +aVIt would appear that my account has been hacked! FUCKERS! +p9629 +aV@jallah @adamtwentytwo Andy Hundly got head for 5 and then punched the girl in the face left her 3 and dipped. Rtrtrtrtrt +p9630 +aV@PaulaXFactor Thank you! :) I will do it first thing when I come back home tomorrow! :) x +p9631 +aV@Kenasha I cosign lol +p9632 +aVLopez tonight baby!! http://myloc.me/47uXg +p9633 +aV@thetwatwaffle I always say twat muffin, that's kind of like twat waffle! lol +p9634 +aV@writerinmydream they don't really scare me....they are def going after big fics +p9635 +aV@eddiemunchies can you tell my mom to be here at 2:15 please! +p9636 +aV@vocarosia /for some reason, dies D: /please don't bury me with the mask on +p9637 +aVRT Go get a copy of @Somaya_Reece #TRAMP it's on tunes!! http://bit.ly/9Qx388 only 0.99 cents!! +p9638 +aV3Downing these alcoholic shots I feel numb and desolate/ My senses are starting to rest/ Gentle Mimosa, +p9639 +aV@Lucia316 you are typo guy today. one in your tweet and one in your 2nd paragraph +p9640 +aV@mvrk122 Thank U! I learned so much from you during Urban Mission. You really have taught me.. SHOWN me how to have a personal evangelism. +p9641 +aVGoing to Vampire Weekend in may with Nora! :D +p9642 +aVI just updated my background at http://TweakMyTwitter.com! Also Customize your Google Start Page at http://tweakmytwitter.com/google.php +p9643 +aVTrying to send 1 last email for the night and the documentation is taking some 20years to upload..am ah get mad!!! +p9644 +aV@qfishchitown wow I can See you * WAVES * +p9645 +aVWooooow...I'm listening to this reference I jus recorded on #units and I feel like partying RIGHT NOW!! Lol @dbtrakz got haute beats +p9646 +aV"Come on team, you really rock. Check it out, I have a cock!" LOL, I fukking love Robot Chicken. :) +p9647 +aV@Codysshort ill be your friend cody.:) +p9648 +aV@SianyLou88 bastard shower!! +p9649 +aV... and then I shared my score on Facebook. :) (re: "How Millienial Are You? quiz http://bit.ly/aT3cc1) +p9650 +aV#imtiredof this SNOW and COLD weather!!! +p9651 +aV@imisspekkle I haven't heard from you or seen you on for a long time!! I miss you +p9652 +aVOk, g'night peaches. I should've been asleep at 9. _ 6 AM wake up is going to suck. +p9653 +aVMmm I swearr carls jr has the best chicken strips +p9654 +aVAnahi is the worst thing I have ever seen in Vi?a del Mar... Let her know she is don t sing lol.... +p9655 +aVCounting down the hours to Spiaggia! Thank you Chicago restaurant week :) +p9656 +aVHave dinner plans? May we recommend dining at Sole Mio! The Nashville restaurant will donate 50% of tonight's dinner sales to @AliveHospice. +p9657 +aVRT @NEWNEWBLONDeD: @VansMarley WONDERFUL AND U??? +p9658 +aVMiss Beverly Hills thinks homos should be put to death, but she has a lot of gay friends. I'm thinking not anymore. http://ow.ly/1azwG +p9659 +aV@Themopinator Not sure of those details, but nothing gets my blood boiling like property taxes: pure theft. +p9660 +aVRT @time TIME http://ow.ly/1pcDhh is college really nec. for everyone? I say forget about B.A....now you need a M.S. to get anywhere! +p9661 +aVRT** FUCK ALAH,ISLAM and MOSLEMS**Radical cleric calls for mass execution of political opposition: http://is.gd/95j29 #isreal #IranElection +p9662 +aVRT @teesdatcutie Stupid meeting smh I don't even kno wat its about +p9663 +aVIs super sad you leave tomarrow. Hurry and come back, I miss you already. +p9664 +aVSwine Flu Not Over, 10000 Steps - myfoxny.com (http://cli.gs/MjvYN) #swineflu #H1N1 +p9665 +aV@papercoversrock Find one that is fun and full of the information you're seeking. You'll make good connections and come back feeling great! +p9666 +aVmy back hurts. +p9667 +aVim gonna go dry and fix my hair. and then call adam :] +p9668 +aV@LittlecBeadles I would like you to follow my bieberbuddy, @BiebersSwagg 6 +p9669 +aVHoping for no school for I can sleep all day and nighttt +p9670 +aVBlogging for Businesses results in 55% More Traffic, 97% More Inbound Links!! SysComm International http://ow.ly/1aMkR +p9671 +aVRT @DeeMagicJuan @MzBDominique I fell asleep in the parkinglot lmao Wtf!! U only had 2 beers Juan!!! Lmao! Wow! #lightweight +p9672 +aVjust started the chemistry homework. not feeling okay.. +p9673 +aV@wgillis he said his spoiler was fake, but it wasn't. +p9674 +aV@jim_harper actually the scenario ur positing doesn't work; when lappy checks in from xternal IP, they know it's not at school +p9675 +aVomg......the wall turned out looking gd. +p9676 +aVNow Another Team Got Problems ! SMH Do Yall Niggas Sit At a Table And Plan To Suck RMG Dick Like Who Are Yew Bois - Get +p9677 +aVso they make life size cardboard cutouts of the twilight characters... but they can't make a @justinbieber one??? this world is crazy! +p9678 +aV@georgeotiono idc sorority row still did shitty, only high school idiots watched it I'm sure & everyone else was disappointed cause I was +p9679 +aV@rhaynecoleman I haven't forgotten about sunday morning praise #PRAISEHIM +p9680 +aVHattrickheaven.com Newcastle surrendered top spot in the #Championship after crashing 2 a 3-0 defeat at Derby. +p9681 +aV"i remember the simple things, i remember 'till i cry. but the one thing i'd wish i'd forget, the memory i wanna forget, is goodbye." +p9682 +aVI'm totally addicted to FormSpring! +p9683 +aVAs many times as I've seen the movie scream, it still scares me. #justsayin +p9684 +aVfirst thing first - well you know what guys I?m still confused about how to using this page nyeeh so maybe... http://tumblr.com/xu96stw26 +p9685 +aVso much for that. i'm :'-( and not because of that... think i'll go home tomorrow to get away from people i dont like... +p9686 +aV@lexxxylives I am so very glad that you died of laughter. xD +p9687 +aVRT @djkingspin: Good Morning ppl! 4 my early birds i got new music 4 u guys! @ www.djkingspin.podomatic.com +p9688 +aV@Simpsoncody , your moving to the states ? :) +p9689 +aVstupidest exam and assignment due tomorrow finish survey then continue wasting life away via facebook +p9690 +aV"Do nothing against one's conscience. With this secret we can enjoy life & have no fear of death." Voltaire #quote #character @tinyquote +p9691 +aVOmg... I actually have a thursday night off O!! Movies or late night shopping??? Cant decide!!! +p9692 +aVPS Taja doesn't frolic in fields! I hate the smell of freshcut grass and I hate insects! @aaliyahMichelle +p9693 +aVDenny's has never been so great. Rednecks fighting. http://myloc.me/4a5Um +p9694 +aVRT @Idothat2: RT if all you need to feel better sometimes is a hug. #idothat2 +p9695 +aVI just got a new phone. Loving it its an HTC hero from Verizon I'm happy +p9696 +aVshe wants me to play with her until we fall alseep together.......so goodnight tweople shalam +p9697 +aVShot man 'was stripped and bound' http://bit.ly/9569ja +p9698 +aVRT @EmanuelKiriakou: All I wanted was to get in my wifes pants...and now I have 2 kids.. ------ LMFAO!!!!!! +p9699 +aV@calandro5 Sounds like it was very miserable. I feel bad for my friends who are TCC while it seems like every other friend is now pregnant. +p9700 +aV@TheSteveWoods Hi Steve, all Twitopia. Yes, had meeting today then hung with daughter. Ian home now...am writing. YUCK. +p9701 +aV@NickWoodford93 goood:), alrite i supposee 33 up too muchh xx +p9702 +aVTo my network news producer followers...I know this is naive, but while the full-length, live #hcr summit makes for dreadful television.. +p9703 +aVRT @Greer_Grammer: Will: "isn't it sad that were gonna be remembered as a generation who loves sparkly vampires??" Me: "I LOOOOVE sparkly vampires!!!!!" +p9704 +aVRT @HeavenForex: Howdy, guys! So, we are starting now! In a few moment you'll es the first trade made by Heaven Forex developer! Be read ... +p9705 +aV@Bigojac2000 I'm sorry for the way I treated u...I was selfish and impatient...this is my public apology...? +p9706 +aVSome people are making such thorough preparation for rainy days that they aren't enjoying today's sunshine. *William Feather +p9707 +aVRT @TheLoveStories: Cling to your imperfections, they are what make you unique. -Debbie Black #TLS +p9708 +aVI am the rust upon your gears I am the insect in your ear +p9709 +aVRT @BriSObad #youever wanted to just smack the SHIT out of somebody? - OH GOSH ALL THE TiME . +p9710 +aVI love my hairstylist. I believe she thinks I'm gay, so she flirts with me constantly and vigorously runs her (cont) http://tl.gd/bjssg +p9711 +aV@JGONeill Blanche, Norris, Graham and to some extent Steve MacDonald are the funniest characters of the last few years. More please. #corrie +p9712 +aVomw to this shoot and my back is killing me! Wtf? +p9713 +aVCrazy to think that I went into labor a year ago today! Teagans birthday is tomorrow, but today brings back a lot of memories. So amazing! +p9714 +aVRT @channel4news: Footballer Wayne Bridge has said his position in the England squad is "untenable and potentially divisive" - statement from lawyers. +p9715 +aVRT @OMGIKnowRight: Saying "No, Thank you" to a biscuit (Just to be polite) and then regreting it. #OMGIKnowRight +p9716 +aVLights flickering in the office - could it be an impending power cut? Save work now!!! +p9717 +aV@RyanSheckler Hay Ryan why have you no real life soap anymore? I liked it! kisses from Holland in Europe +p9718 +aVRT @DopeSince88: i'm lowkey about to buy my LB's album on itunes...its actually good whose album?? +p9719 +aV@Xavieralanzbaby haha hit it up when you make a new batch :) +p9720 +aVRT @Pai_Sitang: RT @KongKaroon: Thank God I'm free today!!--take a rest na ka :) http://myloc.me/4a4ZT :) +p9721 +aV@BrittanyLovesC @Idiodd yall still arguing! +p9722 +aVWho Else Wants to Secure A FREE Wealth & Power Building eBooks & Audio Package (Including Limited Time Bonuses)? http://bit.ly/WealthPackage +p9723 +aV@simplyme4you so? you always make tweets about tila, if you don't like her why you do that? OH I KNOW THE ANSWER YOU LOVE TILA!@officialtila +p9724 +aV@CheapEatsDotIE you could say 'in like a big h*rny thing' :) +p9725 +aV@DoseGambino yea dat right I run red lights I thot u new? And I drive wit 2 feet so wut dat tell u? Im ready playa! +p9726 +aVits only 200 runs and now i seriously feel that sachin is overhyped +p9727 +aVRT @MSJAJALOVE S/o to all my real females followers ** +p9728 +aV@cspeters sunova! I'm losing all my 'tukee mayorships since I've moved away :( +p9729 +aV#tosavemoney you can't have too many black friends. they always askin to "borrow"..you'll never see that money again +p9730 +aVLunch at Hard Rock Cafe, a place I will never go to again. My soul is waiting outside for me to finish. +p9731 +aVMy Work: I just wanted to share my work with everyone here. I have been working on two websites that aim to help p... http://bit.ly/cHFaib +p9732 +aV@theviewtv topic for today... what are the odds? I think the universe is messing w/me +p9733 +aVI want some in n out frys and a chocolate milk shake... +p9734 +aVHappy Birthday @Swagbucks! Here's to another year of free rewards at http://bit.ly/KdISW! #swagbucks +p9735 +aV@AlishaRoberts7 Hey Mamma ..thats more important than my video..next time :) +p9736 +aV@JoseFloresJr LOL IC...I've seen it...I thought they did another one. +p9737 +aVIts time you changed direction! This is the answer! It'll blow your socks off! http://profusionXis4me.info +p9738 +aVRT @prettypinkposh New Prettypinkposh Sizzix giveaway! Here's your chance to win some brand new products! http://alturl.com/ua8f +p9739 +aVRT @lifehousemusic: 5 days untill smoke and mirrors!! http://bit.ly/aQrxgq :) +p9740 +aV@aliciaaw002 hey hi :) +p9741 +aVRT @3greenangels: Spread the word, find out what is in your food and help others! http://www.whatsonmyfood.org/banner.jsp #ecowed +p9742 +aVGreat idea! RT @SharonDV: @AbsolutCJ @yummymummyclub A Blue MOuntain getaway would be AWESOME! +p9743 +aV@jcogliandro You moved too slow, bro! #BestBuy +p9744 +aVRT @candacejade84: @CPOLKgotdoe no......and if someone say yes hook em up to a lie detector... +p9745 +aVSitting in Italian hanging around! Hopefully I won't fail this stupid conversation thing! +p9746 +aVis trynna figure out y these niggas dun gased up my dude?! +p9747 +aVRT @angstgoddess003: Fuckery is afoot. If you've gotten an email from FFn admin within the last month (esp. from this "JAMES" mofo), could you DM me? Tracing IPs +p9748 +aV@YUNGDURTY580 yuhhh that Touch Down is my shit and that M town and Loco !!!! +p9749 +aVHuge blast hits Afghan capital +p9750 +aV@eemeer the oral is so easy! who are you doing it on mr.bean? +p9751 +aVI unlocked "Win Level 2" in "SteamPunk Hockey"! http://bit.ly/cHX9Kd +p9752 +aV@benjaminmadden ur lookin ripped dude! always been a GC fan, looking 4ward to the new material, much respect +p9753 +aV@johncmayer, thank you for another incredible night ... I'm speechless 3 +p9754 +aVpicked up the book #RealityHunger by David Shields today. That is correct: I disconnect myself from the computer from time to time. +p9755 +aV@lightnessalways Intend to do that tomorrow! +p9756 +aVDear Coldplay, i want to see you live before i die. +p9757 +aV@JansArceo i like the song Black and BLue :D +p9758 +aVPls check ur direct message n sms inbox! RT @yugalinan: @lovedella bunny ak ud bangun.... http://myloc.me/4ckDE +p9759 +aVSorry tyler don't throw the judges under the bus and the 70s are over sorry +p9760 +aVGreat to hear the crowd and the team sing our anthem. We could do with more of that. #gocanadago +p9761 +aV@Wossy Geez, your house is turning into a zoo! lol love the names for the mice! ;o) love, xx +p9762 +aV@heidiglamluvvsu my lesson today was grab life by the balls and hold on for dear life lol +p9763 +aV@BIGGC_ ....doesn't help me at the moment. +p9764 +aV@adamlambert yaaaaaaaayyyyy so happy bout the idol performance and ur gonna sing music again on leno!!!! +p9765 +aV@StuckOnHandsome hahahah of course +p9766 +aVLeverage is kind-of surprisingly good. +p9767 +aV@stolenmanners do you wanna do anything tomorrow? or this weekend? i hafta work at the navy saturday & sunday.............. +p9768 +aVtaking a break from crazy packing to watch 2012. +p9769 +aVRT @Breathe_EZ_Papa: PURE Is Shpopppinnn!!! Feelin My Ladies And Fellas Right Now!! +p9770 +aVI'm so pleased I'm gonna post it again http://twitpic.com/15h0nd +p9771 +aVloves you Galouuuu the wolf. http://myloc.me/4e2Kr +p9772 +aVGmorning:-) Uthini uLinda..lol just tuned in&they playing #potoko RT @songistylez: Who listens to Khozi fm in the morning #vukamzansi #linda +p9773 +aV#shoutout 2 ma charger that jus disapated in thin air jus now..just as I needed it! +p9774 +aVHave been too busy at work to tweet. Heading home in 80 minutes. +p9775 +aVI hurt someone's feelings tonight - they thrust their drooly baby at me and I told him I didn't want to hold said baby. +p9776 +aVI like chinese blueberry green tea. Yummay RT @IamRah: And yes green tea DOES go with everything dammit... +p9777 +aVSleepy time...also photo of the day! The background @TrishaOSDesigns made me!! http://tweetphoto.com/12547820 +p9778 +aV@jupiters_crunch naw actually i do the sam thing i wait till after i eat to brush me teeth to me that is the more logical way to do it lol +p9779 +aVwhat comes in that box that box that rocks +p9780 +aV@Riss123 Bahaha do it! I brought my sister tickets for her birthday and she asked me to go with her. +p9781 +aVEsperanza Atlanta A GEM FROM THE SPORT OF DOWNHILL SKIING: A GEM FROM THE SPORT OF DOWNHILL SKIING. In the spiri... http://bit.ly/9K6Zzj +p9782 +aV@josephdee Sorry to hear that. I hope you are okay. Wait until tomorrow morning to evaluate your health. You might be sore then. +p9783 +aV@Rumpusgoopus well i wouldn't have caught it if you hadn't said something! +p9784 +aVMom and Dad are BOTH being dickheads. I just want to crawl into a whole and not come out until the weekends over. +p9785 +aVTHIS BUSH HERE AND ITLL BE OUR LITTLE SECRET.... IF YOU TELL ANYONE THAT ITS THERE ILL COME TO YOUR HOUSE AND I WILL CUT YOU! +p9786 +aV@zhnafisal Best of luck to u then.. Hope we can meet when I;m back in malaysia.. BTW anything u interested about Russia? +p9787 +aVThis could be bad... I'm going to put some chicken in the skillet and get in the shower. We'll see! +p9788 +aVIn my arms, at least you can feel safe here.. +p9789 +aVRT @bukonvict: RT @ladygaga: Celebrate! Rejoice 2nite monsters! The album you believed in #THE FAME is officially DIAMOND WORLDWIDE! 10,000,054 copies! +p9790 +aVYOU ARE RT @MzMG2U: I am the coolest lolRT @Just_Tone: #FF @MzMG2U becuz she's possibly the coolest chick in kent +p9791 +aV@RealKevinLUCAS not while you're in a theme park o.o +p9792 +aVAnd I, I've got to have my way now, baby All I know is that to me You look like you're havin' fun Open up your lovin' arms Watch out, here ? +p9793 +aVHmm sorry he is my boy wkwk tonight or tomorrow ;) RT @koesdinda: @NabilaKariza mau dong za foto yg sama @rogun32 hihihihi +p9794 +aVGrowing Pains Actor Found Dead: Very sad news. +p9795 +aV[News]: Beyonce Says She 'Killed' Sasha Fierce http://bit.ly/9j0bkp +p9796 +aVRT @TheRealBash: Like the pics? thats a sneak peak before theyre finished... -They ard they ard. LOL Gotta take 1, passing out fliers. +p9797 +aVLol RT @DrewSmileAlot: #probablywonthappen "I just left this popppin Iota party..bout to hit the after joint @The Iota crib" +p9798 +aVClosed Friday, February 26: Due to inclement weather we are closed today. http://bit.ly/bxOd1S +p9799 +aV@Miss__JayJay Hehe. So true-idk, maybe I'll get brave and post some. lol. I've got a few I could probably post within the next few weeks :-) +p9800 +aV@TheEllenShow "When you wake up to curling, it's time to go to bed." haha, tell Gladys Canada loves her. +p9801 +aVso i have 3 days left of birth control.. fml lol. i should prolly make an appt ASAP! no babies for theresa anytime sooon! plus condoms suck +p9802 +aVI call BULLSHIT RT---- RT @donna_rai @_Kerry_ lol these h00rs have tainted my innocent mind @silverelefanfic @Janigirl07 @AndyMCope +p9803 +aVoh I pray it get's sorted now, I'm going to end up as bad as @wizzyrose if this continues to stress me. +p9804 +aVI'm gonna have to do MAD push ups to compensate...I mean Vegeta...dragonball Z...hyperbaric time chamber push ups!!! +p9805 +aVJust Tryin To Find My Way Back Home... The Old Me Is Dead And Gone +p9806 +aVHope everyone is ready too Voscillate on the 9th of this March!!!! +p9807 +aV@swindleuk tho they said say, the music industry is kind of a mess, 'commercially' even my man jay-z the (cont) http://tl.gd/bsct2 +p9808 +aVWhy customer focus? Reason12: Everybody sells. When everyone in your organisation is focused on delighting customers, they are selling. +p9809 +aVaww, i was gnna do a special 4000th tweeet, i just realiseed i passed it..........a while ago :'( im on 4017 +p9810 +aV@kendoork what do you mean left? but you still love her right? huhu. what's wrong with popoy? :( +p9811 +aV@donna_81 I'm doing well ) just listening to music and waiting for the Olympics to begin +p9812 +aVI watch the omnibus RT @AldeciaM0laudzi: Agreed! RT @MsLeloB: Become a #RhythmCityzen RT @Nhlanhla_: Isiding is boring these days gosh! +p9813 +aVWow. Think I'm gonna have to start retouching dark circles from my own eyes. Can I get away with wearing concealer on the daily??! +p9814 +aVRT @S3ackii: #pausemarley lol you think you dennis rodman lol...lmaoooo +p9815 +aVDrug violence flares in border cities http://bit.ly/9CwR5e +p9816 +aV#doyouhaveto rock that V-neck jus to show ya babychest tat #cumonson yu fiendin +p9817 +aVI wont be sleeping tonight. +p9818 +aVJust finished a meeting with the netherlands rugby board, great people. +p9819 +aVRT @sannyhalim: miss my frnds in a sudden.Ijustdon't want farewell cmes that fast.It's like in just 2 months we have to say bye to each othr +p9820 +aVMe my dad have no shame x) it's hilarious ... I ended up cackling so bad. Lull. +p9821 +aVDoesn't know what to do.. Wait in my room until 2? I think soo +p9822 +aVJust because I like girls doesn't mean I like you. I'm picky, I like a certain type of bitch - and you're not it. +p9823 +aVi need something to read...but winglin is under maintenance +p9824 +aV@tgoodnight Isn't that the way it is with old houses? Everything's a non-standard size, type...Do you have any other ways of staying warm? +p9825 +aV@CharlottePoole FFS tho i do love golden syrup! 8D 3 +p9826 +aVJeff Beck on His Legendary Unreleased 1970 Motown Album! for more info go to: http://wp.me/pJSnd-HK +p9827 +aVYea you know me! Congrats to the pre-nom! -NaVell. RT @rickygoldin Who's down with RPG??? I'm back! +p9828 +aVSleep...me and U always fight. Why cant we come to a compromise huh? +p9829 +aVRT @elliottyamin: Complete and utter choas on the streets...no power...my heart is beatin outta my chest!....tsunami warnin...I am only a mile inland! +p9830 +aVLORENZOfarrell - lmfao, ilove weezy w. all my heart thoe. +p9831 +aVRT @QJa421: @besdress waasupp i know im late as hell but wats up +p9832 +aV@SaphireTopaz I wish! +p9833 +aVBeyond ready to go home. +p9834 +aV20 miles in 3:00:02 :):) +p9835 +aVhate to say it, but it feels like watching for a train wreak that will 'probably' happen. +p9836 +aV@thisplum You're not a Delapore too, are you? Been hearing things in my wall on and off for a while and I haven't eaten anyone yet AFAIK +p9837 +aVWow, 98% of people like MILFs. http://bit.ly/bAAcVF #milfs +p9838 +aVJust when I thought @bet couldn't get worse they put this whack ass clown nigga waka fucka lame on 106 and park smh +p9839 +aVsuck my cock, bytch http://photos-f.ak.fbcdn.net/hphotos-ak-snc3/hs109.snc3/15713_104923232868667_100000529737664_135172_292841_n.jpg +p9840 +aVSPOTD _____MAKE___ME___AN___OFFER___ON___ANYTHING_____I_dare_you: I have to clear out my stock room ready for painting and would rathe... +p9841 +aVwish twitter would decide whether to have the lists as "@matteh/list" or "list", cant be doing with it changing. +p9842 +aVRT @bobbymacReuters: Earthquake, 7.0, hit Okinawa too, apparently. That was 5:31 a.m. local time to Japan. +p9843 +aV@Hoodstar87 Lol!! You got jokes huh! But yes indeed it is party time!! +p9844 +aVBRING JAEBUM BACK NOW!!RT @weheartkpop: Read this everyone. Please. http://bit.ly/9XlxbZ +p9845 +aV@tinkeylicious http://twitpic.com/15o97f share lng poh.. which pic of Melai is ur fave? hehehe +p9846 +aVYung Berg & Lil Mama would be a perfect couple! http://bit.ly/cUy8Pp +p9847 +aVI hope everyone finds one. RT @MyAnnoyances: A truly good relationship is one where both individuals think they're the lucky one. +p9848 +aVIn conclusion, I'm a horrible person. +p9849 +aVTryin to figure out what the hell is wrong with this phone +p9850 +aV@MJLove1827 yes, u see why I cursed alot last night? Something I hardly ever do. That part when he did the CPR on the bed n they showed how +p9851 +aVRT @asmaax3: Wesbrook wants to play for the Bears.: how about at SD? : } +p9852 +aVWhat about the olimpics? Netherlands rocks on socks.. +p9853 +aV@knightrider233 Hahahahahaha! We need to start a @JonathanRKnight stiffy collection! http://tweetphoto.com/12622317 +p9854 +aVrt @BOSSINBECCA_JTB YB'Z SMACKFEST TONIGHT!!! HMMMM!! dey been havin a smack for the past 2 dayssss..lml.. +p9855 +aVuqhh moms just left me home wid my sisters smhh +p9856 +aV@LISAefBABY u know what i mean! +p9857 +aV@Catch_Up_Haters go to bed u always getin smacked I thought u was a good boy +p9858 +aVI Make Mistakes That I Don't Ever Make Excuses For, Like Leaving Girls That Loves Me And Constantly Seducing Hoes +p9859 +aVRT @dapoawofisayo: LONDON!!!! Follow @THEREALSWIZZZ now he will follow you back!!!........ +p9860 +aV@ the cookout w @locngrowpromo ppls in the hooooood!!! We r hving soooo much fun!! http://tweetphoto.com/12705637 +p9861 +aVGood lord, Maxine Waters, I suspected that you weren't up to your job, and now you've supplied the world with proof http://is.gd/9hmIH +p9862 +aVJust left goose island got my eat on now it's time to go shoppin! Magnificent Mile here I come... +p9863 +aVJoin MyLikes, very interesting..http://bit.ly/cl4bZa +p9864 +aVIn the car rn. Oh. I have been having this urge to sing. :O But the radio has been playing songs I don't know, especially Bieber's One Time. +p9865 +aVWhoever greenlighted these Census ads should be fired. +p9866 +aVRT @whymommy: I'm using The Twit Cleaner to find all the spammers & junk on twitter. You should check it out: http://thetwitcleaner.com +p9867 +aV@rsmiff can @mattyg share that with me ? ;) +p9868 +aVMotherjane and Led Zepplica gonna rock the show tonite! +p9869 +aVtotally met the soup nazi tonight! best night of my life? probably... +p9870 +aVAs I drank Green tea AND didn't buy cake today. I have treated myself to the Maryland cookies that were left over watching Lost last night. +p9871 +aVNo 46 would have broke the all time record he tied it +p9872 +aVCold burrrrr +p9873 +aV@R_C_bdb *climbs in bed and gives you a deep full kiss as common faded and switches to "orange moon" by badu*. Good night Kalfu. +p9874 +aVi'm gonna upload a video. i understand it's no time for entertainment, but i'm just upload*ing. +p9875 +aV@jonnycampbell Hope you and the MDD team have a great night. Will raise a glass to you at the 40th party I'm at. +p9876 +aVDone wit this studying biz! Time to head home to nap and then steppin out +p9877 +aVHappy birthday baby sister :) awws my bibi is 19!! +p9878 +aVRT @tattEd_MoMMi: twitter aint no joke..shit will make ya man now..friends lateer...and friends now..enemies lata +p9879 +aVAir De Venecia: http://bit.ly/a5Wcu3. Man that kid can jump! +p9880 +aV@anabuenviaje haha I found out why its not working, its a problem at my end, delete my contact and I may ask u to send me an invite again. +p9881 +aVDamn man ! I shouldve called earlier . The karoke contest started 2 hrs ago ... Ughh :(??R +p9882 +aVWeebee's Cafe on #Yelp: Good food, good service, interesting atmosphere. My first experience at Weebee's Cafe was po... http://bit.ly/ci4Ugh +p9883 +aVScreen issues has delayed the JooJoo tablet, now expected on 25th March http://cli.gs/1nqHN +p9884 +aV"But I guess things change it's funny how success brings pain" +p9885 +aVRT @elliottyamin: Oh shit!!..here come some more aftershox....sweet jesus,and baby jesus!! #Chile #TerremotoChile +p9886 +aVapparently I can't spell... Sorry Bede Burdidge, ah, I mean Bede Durbidge!!! +p9887 +aVI did 50 sit ups. I feel better about myself now. +p9888 +aVfull wend in the studio, might as well move in there at the mo, looking forward to getting out next wend, play some records and party hard +p9889 +aV@xxnonnahs oh i will ;) haha jk. Lol. Ill call u tomo. Je t'aime wifey. +p9890 +aV'Oklahoma!' at Live Arts Md. more than OK: And its opening departed from the conventional stage filled with chorus... http://bit.ly/9Gs9mO +p9891 +aV@TheSirOfBL thanks for the follow +p9892 +aV@MillyCMM u already kno u suppose 2 be here I am fucked up in my telly goin crazy +p9893 +aVRT @ihatequotes: After the storm, love won't break your heart, but dismiss your fears. (real talk) #ihatequotes +p9894 +aVNot sure whether this is working properly linking my Facebook status to my Twitter account +p9895 +aVRT @iSasha_Fierce: #Ibelieve That Kobe Is The Best +p9896 +aVI pray each day 4 PeaCe to come; I know i'm not the only one...just think how good it would be-4 everyone to just be ?FREE??SmiLey??HaPPy? +p9897 +aV@AlpineUSA INA W900 in my H2. But having trouble with the ipod video and the wireless remote http://tweetphoto.com/12789502 +p9898 +aV"When you are strong enough to love yourself 100%, good and bad?you will be amazed at the opportunities that life... http://bit.ly/c0rCOb +p9899 +aVDamnit @kearycolbert reminding me I might have to hit play on the @PolB soon.... +p9900 +aVI should try to get something outta this let's wait and see ha +p9901 +aV@ILLMIZ said I'm a fool,but she's just sittin on a stool n then im gna throw her in the pool but tht wud break a rule n we wud have to duel +p9902 +aVI don't think 6 hrs is enough to build new, strong calluses on the finger tips. +p9903 +aVPhoto: ilovesleeeep: http://tumblr.com/xru6whcc1 +p9904 +aV@armygirlnay oooo- hope you have glitter!! ;) +p9905 +aV@hammyhavoc LOL when her mom goes back +p9906 +aVLiked "Patates-Sogan :)" [pic] http://ff.im/-gHmW8 +p9907 +aV#design MSI unveils R5870 Lightning Graphics Card with 15-phase Power ...: 15-phase power supply designs, two 8-pi... http://bit.ly/9qJ3B0 +p9908 +aV#NowPlaying Bridging the Gap by Nas/Olu Dara +p9909 +aVRT @xshopping @Jader_Raide I think this person is great. You should follow them. -thnxx Hun +p9910 +aVGet the Best Watches @ the Best Price-Free S&H through tues. http://www.hurl.ws/c5fs +p9911 +aVRT @B5Unplugged: I wish Kelly had a twitter or something so that he could see his birthday page and all of your birthday messages/wishes. +p9912 +aVAnd this #onetime at band camp xDD +p9913 +aVi just want u to be happy +p9914 +aVTech.Blorge: Upgrading to Android 2.1 may not exactly be a painless experience: If you own an Android phone, we ha... http://bit.ly/cDVJHO +p9915 +aVI hate females wit big ass Pitbull heads +p9916 +aVUgh i don't see how people wake up in the morning feeling like rap moguls because right now i feel like hell. +p9917 +aVYou could win the trip of a lifetime at http://RethinkWhatMatters.com - before you know it you'll be #rethinking in paradise. Soooo nice. +p9918 +aVwhat's up with training? gdgd? hmm. jia you and see ya tomorrow! lol. @gracecwt +p9919 +aV' i only see the memoriess from u and me honey it's never gonna endsz ; jj ' . +p9920 +aVAt the Norwood Food & Wine Festival. Gorgeous day. Let's have a drink! #Adelaide +p9921 +aV@howlieT New pants, blankets and horlicks. Ready to take on the world, we are. #beinghuman +p9922 +aVThe Lovely Bones; I want to read the book! +p9923 +aVRT @Masterskier: Race Day! The big one is finally here. +p9924 +aV@bkbaybee14 victoria, girl you should follow comedian @kevinedwardsjr..hes funny and real..will have u laughin :) +p9925 +aVmad tired, about 2 eat den sleep +p9926 +aVThe key to alot of things is balance, whether its balance of power or love, 4 some of us it seems 2 far out of reach, 2 difficult 2 achieve +p9927 +aV@AyuBieberJonas um OK!:) my goal is 6 more? What about you!? +p9928 +aV@JessicaVickery lol I will babe already have +p9929 +aVGood Morning!! This is the day that the Lord has made. Let us rejoice and be glad in it. +p9930 +aV@sonatacreative I hope you're going to share the recipe! +p9931 +aVwell that was starnge and awkward +p9932 +aVThank You Lord, - For letting me wake up each morning and going to bed at night; for the sun; for the moon;... http://tumblr.com/xlo6wsx5v +p9933 +aV@JoelMadden lol Joel, no fist pump xD hopefully when I'm 21 you'll be in AC a lot (: +p9934 +aVWhat a game!! #Terps beat #Hokies 104 - 100 in Double OT. Greivis is a beast!! +p9935 +aV#straightlyin 'man i paid full price for my polo'.....yall tj maxx ass niggaz! +p9936 +aVRT @scorcherslife: RT @Mr_Bogle: #Somewhererightnow someones eatin McDonalds in KFC Lmao +p9937 +aVROFL. RT @imdaviddalen if i see someone tweet about zingled one more time im gonna club a baby seal. +p9938 +aV@nathbush dude you've gone delirious after the run through the tunnel. +p9939 +aVRise and shine time!! Noshville then studio with nick to create genius..again:-) +p9940 +aVAlyssa Marie: ....really? - ? Yeah, I hate you. Get it through your big head. I don?t know how many times I... http://tumblr.com/xb26yd1mf +p9941 +aVMFL: Minor delays en route to destinations due to equipment shortages this afternoon. +p9942 +aV@laurenmason1 mornin mornin babe, Did ya dwnload what'sapp yet?? What's ya plans for this wkend an nx?? Gna arrange a girly nyt @ mine xxx +p9943 +aVRT @michiiiiih: Someday we will be together again, huhuy i believe +p9944 +aVIs it weird that I'm crying while watching Celebrity Rehab with Dr. Drew? +p9945 +aVGrab my glasses i'm out the door i'm gonna hit this city [lets go] +p9946 +aVOk they're gone I can do some more work. Sigh. +p9947 +aVYoung Love never seems to last +p9948 +aV@VanNessVanWu wow so yummy!! :D hope u enjoy it.. http://tweetphoto.com/12927669 +p9949 +aVBE HER THEN!! RT @MagnificentVee: @FARFROMbasic wish I was her +p9950 +aVI wud lov 4 dis shit to last So Ill tak picturs of my rearend so you wont 4get my ass Alls well that ends ok So Ill end? http://lnk.ms/6YNlq +p9951 +aVListening to @scottkwalker w/ Mike Gousha. Why is he trying to steal credit for Barrett's hard work? Is there anything Walker won't steal? +p9952 +aVCanada wins Olympic gold in ice hockey with 3-2 win over United States (source: Orlando Sentinel): Canada beat the... http://bit.ly/aefWgM +p9953 +aVRT @BBMCHAT: todays person to follow is @drm2blv everyone rt and follow! :) +p9954 +aVIncrease your sex drive like i did! http://tr.im/QcRS +p9955 +aVElliptical, ugh. Texas de Brazil last night. It's early. id really feel like crap if i had eaten the meat. +p9956 +aVSooo proud to be Canadian we are simply amazing, CROSBY I love you!!!!!!! +p9957 +aV@ozgolith Hank is probably my favorite spoken-word performer .... smart, funny, and a HUGE heart ... love that guy +p9958 +aV@DelightfulToni Honored to be listed as one of ur fave #1 Brands - TY! Enjoy the rest of your weekend :) +p9959 +aV@Saltysal24 idontknow i heard that +p9960 +aVI think I can say I have been more productive with my homework than other times... :) +p9961 +aV@jfrances Thanks so much for including me in your treasury! All the way to the FP of #Etsy!! +p9962 +aV@MidnightHatter Tell Carolyn I said hello, then. Remember to pull out. +p9963 +aV@JenWPortraits I swear they think coupons reduce their paychecks. Grrrrr Why give out RRs then make it so hard to redeem them?! +p9964 +aV@NileyCyrus I went with Nora to Camden didn't I.. lol. Now, me and you have to go. Ha. Depends what type of stuff you like I guess... +p9965 +aVRT @srounce: Help! Anyone in Sheffield Centre got a MacBook Charger I can borrow till Wednesday night?! :( +p9966 +aV@faithfoodfit Hahaha omg I just made quinoa! I love it, though. +p9967 +aVdon't give up so easy..: http://lnk.ms/4yMG0 +p9968 +aV@jandtmornings YES! I love dates. :) Big love to you both!! +p9969 +aVWhat do you think about cheating in school?: Don't worry folks, it's all anonymous, so we promise not to tell your... http://bit.ly/ahfd4X +p9970 +aVGoing to see gaga tonight XD +p9971 +aVIt's so windy and i'm wearing a flouncy skirt...so basically I'm just flashing everyone on my way to class. MLIA. +p9972 +aVI am at @hotprints trying to make my free book, but its not letting me add photos? #hotprints +p9973 +aVI felt like Mary Poppins leaving work, I almost took to the air with my umbrella! +p9974 +aVtmr gonna repeat again, except for the gym part. i gave up a super tempting job for SHINee. im so money deprived. AHHH!! :( +p9975 +aVMargaritas was like jamrock 2night..shout out to my nigga killah holdin it down against the wall gha gha.. +p9976 +aVDid I forget to mention my tv also died this weekend? I was just gonna live w/out that one so I could do the shirts. I have internets. +p9977 +aVOne last go - otherwise I give up.... +p9978 +aVhmmmm I guess hoping Classified will come out and sing 'Oh...Canada' is out... +p9979 +aV@MsMandyMay wow +p9980 +aV"Be quiet and hold your peace; you little know how many mercies lie in the womb of this affliction." John Flavel +p9981 +aV@Ganonsfoot I have that same relationship with Cervantes... That mother fucker... I hateeee fighting him +p9982 +aVVandalism on 19XX PHILSAR, Memphis, TN (via spotcrime.com): Vandalism/Misdemeanor http://bit.ly/9NZNco +p9983 +aVMy main impression from being at #RedSox camp for the first time: Everybody is just thrilled to be here. Never seen anything like it. +p9984 +aVthe only reason Justin Beiber be a TT is because people hatin' be typin' his name too. Y'all gotta spell his name wrong on purpose +p9985 +aV@LeiraKiss everybodys nasty tweets they don't say till the sun goes down +p9986 +aVRT @madisonviolet: Madison Violet just won the Grand Prize in the John Lennon Songwriting Contest / Folk Category for 'The Ransom'!!!!!!!! Woo hoo! +p9987 +aV7 am phone call - can I substitute at Little Girl's school AGAIN? Coming on the heels of tax season AND subbing last week, I'm not pleased. +p9988 +aVFirst #SouthwestAir with #KevinSmith, now #Sony with #Playstation3FAT. Screw fatists! +p9989 +aVWoahhh!! Just found Justin biebers personal Twitter... SWEET!! Haha. But I didn't follow it because I know that he needs his privacy!! :) +p9990 +aVThese pralines were ordered 4 a business meeting 2mar...they r gonna luv em...melt in the mouth! Will package em in pretty Diva Dishes wrap +p9991 +aVpea coats were originally worn by sailors and members of the europeans navy. So, europen, coastal & vintage.. i like. +p9992 +aVMassive Wealth from Home No bugging family or friends! Plug and play system. +p9993 +aVits movie over here... im about to get in this crazy ass carnival ride / +p9994 +aV@Alexlovesmusic :) no prob hun . it was such a beautiful picture i HAD to :) we must have a photoshoot. youd be great to shoot +p9995 +aVOut for drinks with the guys! 3 +p9996 +aVIf anyone else wants to bust out a FIFTY KiLOMETER ski meet me on 9th and NEVER +p9997 +aVRT @RealKidPoker: Brutal seat @lapokerclassic Steve Sung on my right Carlos Mortensen on my left, and to his left the guy who crushed me yesterday. +p9998 +aVOur first winner issss: @TheVeganOne! She receives an awesome @TWSTweets T-shirt: http://bit.ly/dwj8YA #TWSTcontest +p9999 +aV@kcklo63 I look it. Horn rims, grey hair on the temples... I like to think of it as "distinguished". +p10000 +aVI got an idea of writing a love novel. It's kinda depressing by the way +p10001 +aVTheft on FLORANCE//MONROE, Memphis, TN (via spotcrime.com): Theft from Motor Vehicle http://bit.ly/ckQ3A5 +p10002 +aVBack at my house to let Piggy outside and to see if the cat will give me some attention. Then off to visit Baby Ruth! +p10003 +aVRT @Watts108Nigga: @Bno108 You gotta get in the gloves my man...say nomore a man who just got fired is a dangerous man +p10004 +aVDr. Laura's advice today is for women to stop picking birds with broken wings and instead choose the high-soaring eagles. Come on ladies!! +p10005 +aV@nugzy i used to read "come as you are" all the time, i was a nirvana tragic, much long after kurt died, around 95/96 .... +p10006 +aVi feel no shame im proud of where i came from i was born and raised in the boondocks 3 +p10007 +aVMakes me fuckn sick that everybody abt 21 and younger think that ke ha started the all so famous 80's rhyme style that she uses in her song +p10008 +aVAsk me the WEIRDEST question EVAR!! http://formspring.me/agentshawnee +p10009 +aV@SteadyMoney_BGB LMAO . U STUPiD , DONT CUFF DOE . CUFFIN IS FUH LAMES +p10010 +aVATTENTION ALL MOMS! Join our team of Moms working from home and loving it! http://lyndellprosper.myworldmoms.com +p10011 +aVAlways seem to enter trades too early and exit too late http://bit.ly/HqjfZ +p10012 +aVQ:what kind of female do u see your self marr... A:sumone that will make me happy smart indepe... http://formspring.me/WETOFDPB/q/249826276 +p10013 +aVQ:Im following you ;D A:stalker much? i'm rather scared. can you see what i'm doing too? :S... http://formspring.me/RebeccaFTMx/q/253164842 +p10014 +aVproductive day, all days :B +p10015 +aV@clau76 think i should go to bridge and fall down... +p10016 +aVRT @thelovestrings: whats meant to be, will always find its way . +p10017 +aV@Jeremy_Levine but i imagine to the Jack & Jill set I had missed some common experience that they'd all had, as well. +p10018 +aV@klconover I find it interesting that there still appears to be some level resistance to learning/using social media tools. #schieffer +p10019 +aVI like USA and GB and CA, and AU, but do You like My country Hungary? But why? +p10020 +aVYet be mindful of the Books you read, too! Manifest_1 #Well #JustSayin +p10021 +aV@theburiedlife hey guys do yo by chance know when the new tshirts will be sent out? Thanks:) #TheBuriedLife ;D +p10022 +aVFREE tools to help you with your business opportunities! http://ihid.us?i ahas +p10023 +aVGay Mother-a homosexual male who you look up to, will guide you in the right path, will be a maternal figure?I need a gay mother at Howard +p10024 +aVCity council elections in Holland tomorrow. Good luck to all my Twitter and FB fans who r running. Still haven't decided who I'll vote for. +p10025 +aVRT @THON: Thank you for your support @CongressmanGT! We really can't thank you enough! #THON +p10026 +aV#nowplayin "Pretty Boy Swag" by @Souljaboytellem i loveeeeee dis shyt!!! goes suppa suppa hard +p10027 +aVdef. True RT @ShotOfGee: - Alot of girls have no idea wht the definition of #wifey is. Then wonder y guys act the way they do. +p10028 +aV@JacobxBlackx *Moans, losing myself in your kiss, sliding my hands up your shirt, taking it off you, and letting my hands roam freely* +p10029 +aV@isanaka fact that every act prior to Goodie Mob was trash. ...both on Twitter and at the show. *Ye shurg* No one ever steps to me. It's +p10030 +aVam exited my best friend Eyeisha text me the other day +p10031 +aVI hate bloody PCs. Ten minutes and still unable to log on. Buy Macs, people. +p10032 +aVRT @andabogdan RT @worldprayr: RT @BarryMoore2010 In bham please pray for Heathers dad! +p10033 +aVAwkward dinner moment... Molly and I get plates, dan doesn't. +p10034 +aV@RussFrushtick There are about 50 people playing, they just bunch together. I'll be on in a bit if you want to squad up. +p10035 +aVAm I really becoming the woman God wants me to be or stuck in this rat race of life trying to become what I want to be? +p10036 +aVRT @marykayhoal: If you get this message: "somebody wrote something about you in this blog here http://tinyurl.com/yauj2fw" Don't click the link! +p10037 +aV@dougiemcfly im not even beating you in tweets :O ...... few more to go..... +p10038 +aV@deniece_ awesome! busy playing with 2nd generation of the grandchilds. All the 6yrs and below (: +p10039 +aVeating some strawberries ! And Trevor just came over !! ;) +p10040 +aV20% off coupon this week in my centsible shop for these awesome @MelissandDoug pattern blocks:http://bit.ly/bmnCje Code: Centsible20 +p10041 +aVI didnt really think that you and Kamy would last being best friends. +p10042 +aV@heyynodzz who were you talking to in the last tweet, CAUSE THERE WERE NO @'S +p10043 +aV@illneverusethis also I drank half a liter of crown during the wedding so I didnt make it to the after party. +p10044 +aVRT @Crucial101: #uknowubroke when you know the McDonalds dollar menu by heart. +p10045 +aV@OGKingShootah I feel you! As long as you gettin' to the moneyyy, I understand lol +p10046 +aVLol @awesomelulu has a groupie @Lomage http://myloc.me/4m4w3 +p10047 +aV@TheBAbyAintMiNE wait ; bruh come harder .. you couldn't measure with measuring tape ? what about a caspers hotdog .. tigers list of women.. +p10048 +aVOff to watch the rest of Brideshead Revisited. Le sigh. Matthew Goode and Ben Whishaw. I miss British men. +p10049 +aV@jaredleto I hope you kept those Red Glasses. I threw them on the stage. PS: GREAT SHOW!!! +p10050 +aV@ItsBriannaGomez yup! I'll twitpic it to you tomro..if u want I'm on my iPod :/ so what u doing.!? +p10051 +aVAwkward: Ranger called me William's "Daddy," & I replied "I'm just his special friend." Seriously Kendal, "babysitter" is much less creepy. +p10052 +aVwalking into he office later would take a whole load of strength so it's best i go recharge now... +p10053 +aV@sassyele lol, Ok, I'll meet you 1/3 of the way from my end, I'll be seeing them elephants by then for sure ;-) +p10054 +aVYou know, when that last remark trails off into the depths of slightly uncomfortable. +p10055 +aVMark 8:38 If anyone is ashamed of me and my words in this adulterous and sinful generation, . . . +p10056 +aV@veganatalie An extremely bright ISS will cross your sky tonight! It comes up in Southwest at 7:33 pm. Details: http://twisst.nl/13857 +p10057 +aV@skymovies_com Good shout, though I'm a sucker for Rockstar Energy Original, damn that's good elixir. +p10058 +aVGTG. Will do a project in History. I want it to be done right away. +p10059 +aV1: i thought i lived in the south. 2: i thought march was like, basically almost spring. 3: why the heck is it snowing?! +p10060 +aV@sofauxboho I no longer drink enough / to think you're witty. +p10061 +aVRT @TeamKenielle: If they seem like jb fans I'm just telling them not to spam. Spread the word! ONLY PUT IT ONCE PER TWEET. #SoProudOfYouNickJ +p10062 +aVRT @Ala4adam: Don't forget to text PLAY LAMB at 55100 so Adam can make the Z100 countdown tonight! +p10063 +aVOur dance contest sponsors are Twitter Superstars!! Watch our video, and learn more about these fantastic companies! http://short.to/q9me +p10064 +aV@edenfantasys who is it? lol I wanna know! +p10065 +aV@verylazygarlic would prefer to have my garlic peeled and not my eyes.... +p10066 +aV@donttrythis http://twitpic.com/169rju - Ya it would get kinda chilly with the cargo door open, but I'm from Canada, we just put on another +p10067 +aV@TreySmith83 Ahh yes, the boiled pork. The microwave was probably my favorite Charles moment. It smelled like cotton candy. Way better. +p10068 +aVWin Natura's Ultimate Pillow (ARV 120) for the BEST night's sleep @thxmailcarrier from @naturaworld! http://bit.ly/cJypqN #win #giveaway +p10069 +aVI favorited a YouTube video -- Modern Warfare 2: FPSKyle's How to Play Sabotage Like a Man (MW2 Gamepla... http://youtu.be/rtmDv0aheSk?a +p10070 +aVOH yes! RT @LaBellaLeigh How about we just push Emilie aside and replace her with KStew... okay? Perfect +p10071 +aVRT @STLScorpio31 One who smiles rather than rages is always the stronger. Japanese Proverb #quote: RT @STLScorpio31 One who smiles ra... +p10072 +aVRT @OMGIKnowRight: WHEN I READ CAPITALS, THERE IS A SHOUTING VOICE IN MY HEAD! #OMGIKnowRight +p10073 +aVListening to@BaisdenLive,my three year screams hey mommy it's Michael Jackson,LOL,this is an old school girl then asked me is that the OJays +p10074 +aVLabels Say The Use of Social Media Is A Must The music industry has been gaining ground in their attempts of .. http://oohja.com/x7ZRS +p10075 +aVis annoyed "a character in the James Bond film Die Another Day" is the first result when he searched "Zao" in wikipedia +p10076 +aVRT: Social Media Guru. Awesome - doesn't he look like Mark? #himc http://bit.ly/gcr1y +p10077 +aVDarn course packs, lab coat and glasses ( +p10078 +aVY'all think it's too early to change my pic for #wardrobeWEDNESDAY ??? +p10079 +aVCan't say it's a surprise .. Egypt score. Fabio not impressed. +p10080 +aVRT @theellenshow: Same-sex marriage was legalized this morning in Washington DC ? hopefully other parts of the country will follow their lead. Go DC! +p10081 +aVugghhh.. going to be in so much troublee. +p10082 +aVRT @bieberinmypants: take a chill pill. i dont think Caitlin and Justin are dating.And if they are than its not a big deal... forget dra ... +p10083 +aVCan't wait for the para-olympics! (: +p10084 +aVSukumar Azhikodu on Sachin hit 200 -"Sachin shud retire from hockey" #fakingnews :D My last tweet +p10085 +aV@Forsureitsdb why are you gaining weight? +p10086 +aV@GarethBRUTAL me too :S +p10087 +aVI can see why CA is bankrupt as a state. Look at all the racist fools that attend universities there -- and the people that support them. +p10088 +aVBurning Legion: The Horde successfully attacked the Alliance. Next battle: 3:38 AM +p10089 +aV@justinbieber please notice this http://www.youtube.com/watch?v IF8DVTR8cvU it was made by a proud belieber.. not me... @iTzbiebershawty 29 +p10090 +aV@MrsPinkyIvory pink sweat suits frowning up n every pink sneaker n everything pink from lol girls I know I did lolol I'm true to my pink! +p10091 +aVJohn Barnes: Wayne Rooney And Steven Gerrard Are England's Two Most Important ... - goal.com http://bit.ly/aVoPI1 +p10092 +aVI just so appreciate my Tweeps from "across the pond". They seem to understand American culture as much as we understand theirs. #anarchyUK! +p10093 +aVhave i done much of my journal? nope. what a waste of an hour. +p10094 +aV@cricepr Good for him! I'm a DMV native...saw him from his humble beginnings...so glad he put go-go on the map! +p10095 +aV@manigjr oh dang. i wish i could just go to the globe and buy one but above sucks :/ +p10096 +aV@meeranagaraj Hi Meera, nice to see you here! How are you? Where are you? I am with your previous company - Wipro! :-) +p10097 +aVI@RunToLove Will you please scratch my back? ;) +p10098 +aVthe IBS show is coming up they are soooooo gonna break my pockets +p10099 +aVRT @MonStarMimz: RT @violetnight: F A S H I O N #yeathatsmyshit U knw this R.I.P McQUEEN *Ledgend!!!** +p10100 +aVRT @AngelaSimmons: Laughter is the way to my heart :) +p10101 +aVSaying good morning to everyone. Another gorgeous morning in Surrey. Wishing you all well. +p10102 +aVMy favorite song Communication Breakdown By Led Zeppelin Is playing on WRAT! Listen now http://stream.wrat.com +p10103 +aVRT @trudydehacker: six sixes in an over, 200 runs in ODI, 10 wickets in an inning, max fours in ODi, max runs in ODI and test - all records belong to INDIA !! +p10104 +aVI really think this past weekend has made me realize something that i never thought possible, i think it made us closer than before +p10105 +aV@TonJonas my car actin stupid, i think my power steerin bout to go... bad look +p10106 +aVRT @_shianne: @MrSoloDolo_3DH I want em I think me @tawpteam_3dh Aniya and ant jr gon get em then all of yall just cop em lol +p10107 +aV@Jade_TeamByrne What colour are they? I NEED some new shoes lol x +p10108 +aVRT @9KayBeauty0: Dis gurl said she got pregnant to get attention #smh ---#thingsBASICbitchesdo!!! +p10109 +aVWatching Toy Story. In a better mood already. ) +p10110 +aV@AntiSocialBitxh i aint THAT slow ! +p10111 +aVIs it Bad to Have es Type off feelinqq when you aintt Aroundd ? Missin Baby . & ets kindaa retarted i havee too tell yuhrr sisterr fahh yuh? +p10112 +aVI luv gang of roses wit lisa ray & stacy dash I luv them ma fav actress.... +p10113 +aVMy favourite place in the world!! RT @GuardianBooks Shakespeare and Company, a creative sanctuary Stephen Emms http://bit.ly/c2DH1R +p10114 +aVI'm hosting this week's BSI!! Wait for tonight's ingredient reveal on my blog! :D +p10115 +aVhttp://twitpic.com/16bbjc - The night would not be complete w/out a trip to @Sephora! +p10116 +aVThis weather is shitty, it is so effing slow at work and I am beyond bored. Pretty much bored to tears. I should probably just do homework. +p10117 +aV#oneofmyfollowers jst made me hungry wen dey t0ld me wat dey c00ked +p10118 +aVThis one? Or is my smile gayyyy? http://tweetphoto.com/13139779 +p10119 +aV@Dynamite619 I'm just goin play zone cause its obvious that u can't win when someone plays zone against u +p10120 +aV"Jason does not have a farmville because the government pays him a subsidy to not grow imaginary bullshit." -- I love my friends. +p10121 +aVEveryone seriously needs to get @liltunechi's #rebirth...the mans a genius +p10122 +aVListenin to some of my old songs laughin LOL...whats funny is, i shopped some of these. WHOA haha..Always been mad confident lol smh +p10123 +aVIt's time! Home sweet home! +p10124 +aVTweeple n #specialteams mates hope you'll stop by and check out the ning I created for all of us! http://specialteams.ning.com/ +p10125 +aVI favorited a YouTube video -- The Big Bang Theory - Sheldon Bazinga !! http://youtu.be/siWh5qnpclk?a +p10126 +aVRT @_StylezP: @mylioness who is this asshole tryna diss people on twitter? just what you said. An asshole hiding behind a name, girl. +p10127 +aVFantastic Forex:: Latest Forex Converter Yahoo Au... http://www.forextradingautomatedrobot.com/latest-forex-converter-yahoo-auctions-4.html +p10128 +aVThanks, means a lot to the volunteers who have grown it to this point. RT @sav01: @mpaynknoper #agchat very impressive in my opinion. +p10129 +aV@Jehremy You'll be seeing this soon enough too and agreeing! RT @Jchawes: Craziness... http://yfrog.com/jpqdasj +p10130 +aV@joeymcintyre "the dipance is youuuuu" is possibly my favorite part of Griffin's music video. He really feels the music. Adorbs. +p10131 +aVeverything's better "tilted" RT @vtravelled A day in the life of New York City, in miniature. http://vimeo.com/9679622 / @NYCEDC +p10132 +aVRT @fenty_lovegood: #060 from #365shots : Show your love ... http://post.ly/QWyQ +p10133 +aV@InsaneSteez and fuck it if I misspelled my last @ comment to you. my bad +p10134 +aVRT @theonlinemom: Although we report on the studies, we do not believe video games are the cause of violent behavior in children http://bit.ly/UbVoM +p10135 +aVi like that game better than the usual "i spy my credit card at revival" i usually play on sat mornings. @legendsleague +p10136 +aV@louiehiguera Waddup brotha! I needs to get my Twitter chops up :) +p10137 +aVRT @crazimonkay: Lamatrix: #RIPMadisonBieber? Unbelieveable. Just because there's a Jonas TT like that. Wow. Justin Bieber fans are PATHETIC. +p10138 +aVRT @iamdiddy: Attention paris I have a party at club VIP on thursday!!!! Let's go!!!! Spread the word! Last (cont) http://tl.gd/d7v83 +p10139 +aV@TheRichLane What up Bruh Bruh! Yo I'm bout to order them Ray Ban's twitpic ya jawns for me. I'm not sure if mines is the right ones +p10140 +aVI experienced that 2nite!! RT @TheIntelligentW: I Love Seeing Health & Fitness 'Experts' That Look Like They Just ... http://bit.ly/cTSzW6 +p10141 +aVRT @slownessmood: Thanks to peru, china, korea, argentina, usa and brasil for help our people. THE HELP IS COMMING!! +p10142 +aV@kakakakourtney bad news...he couldnt unlocked it +p10143 +aVRT @BelieberBabes: #JonasBieberPeace good to know. +p10144 +aV@rainnluv Kris and Cale singing that remains to be my favorite thing ever. +p10145 +aVMy beard trimmer isn't charging, due probably to a difference in voltage... I'm going to look like Karl Marx +p10146 +aVRT @shoppingqueeen: The only real valuable thing is intuition: Albert Einstein +p10147 +aV@youngmyke Thank you!! OHHH Chrissy. Remember her? Anywho..she preggy! +p10148 +aVThe narrator's voice has me pinned. I cannot move. All I can do is wait for him to say 1960, with light, crisp emphasis. +p10149 +aV2 all my new friends: Welcome! Peace and Love 2 all. 2 all MY FRIENDS!! I am very hon...: http://chatter.com/a/2dmnp +p10150 +aVNEWS: CAMPAIGNERS are moving a step closer to making a lethal road safer to cross. Villagers in North Weald are fi... http://bit.ly/bPXafs +p10151 +aVNow I'm scared too go to sleep @cuntwhoreee was telling me ghost stories!!!!!! Ughh:/ +p10152 +aVSo is Microsoft's "software plus services" strategy dead? It appears to be all "cloud" now. #pcbuzz +p10153 +aVRT @ddlovato: "We'll Be A Dream" is now available as a single on Itunes!! Check it out!! +p10154 +aV@mollyheartssoap Heeeey! So I was right about Babs having a boyfriend!! x +p10155 +aV@ceisenhood Hm, that or maybe bc the site got hacked a few weeks ago. @wachen can you check why older Local articles aren't Google indexing? +p10156 +aVNews:Pearson was arrested today at Pierce College in Woodland Hills, CA for the crime of making criminal threats +p10157 +aV@JarvisTheArtist I'm good lil homey!!! Ready to get this WORK in witcha!!! LETS GET IT!!! +p10158 +aVWon my 3rd match out of 8! 5 more to go! Allez meee:) +p10159 +aV"Great men are they who see that the spiritual is stronger than material force, that thoughts rule the world." Ralph Waldo Emerson +p10160 +aV#Shoutout to Pretty woman @getyourhoneyon +p10161 +aVim so happy all thz snow meltinq!!! +p10162 +aVOh my!!! Cherry Bomb by Dakota & Kristen AMAZING!!! Oh man this movie is gonna ROCK! http://bit.ly/cUraaJ +p10163 +aV@rohmeo01 sounds like a perfectly reasonable thing to do to me. Why not? +p10164 +aVThis nigguh needs to chill the fuck out fucken fat shit +p10165 +aVFarah's TEES MAAR KHAN to release on December 24th 2010 - News: This Christmas audiences are in for a treat with F... http://bit.ly/ar5h5R +p10166 +aVGrabbed some interviews at break. Now rushing to write this story for Fox at 10 and @CBS19 at 11! +p10167 +aVHe is my all... And I couldn't ask for more... +p10168 +aVNow Casting Single Men & Women who are looking for love online!: Are you a single, in your 20's, 30's or 40's and ... http://bit.ly/cmiO8s +p10169 +aVMan dont change the money..money change the man.. +p10170 +aVokays, im gonna do my makeup and get dressed now. no one talks to me -.- +p10171 +aVRT @kajjajja Your heart and my heart / Are very, very old friends. Hafiz +p10172 +aVTip #14: Feelings only need to be felt, so express them safely & privately, & feel better soon-soon! *wink* +p10173 +aVI love Softlips lip balm @ilovesoftlips In fact, I applied the vanilla flavor just a few mins ago :) +p10174 +aV@_souzafan Launched our tracker, so join us for free leech... oh, seed too! h ttp://BrazilTorrents.com/register.php zj +p10175 +aVThink I just taught my daughter the nuance btwn "answering honestly but w/a relevant omission" and "lying". That probably wasn't very smart. +p10176 +aVGreatest Hits Box almost gone! http://www.youtube.com/watch?v dAqV-gGoSF0 +p10177 +aVRT @yogee_raj: Likes Dreamworks Animation: wow - http://likaholix.com/r/pCK #movies +p10178 +aV"Now I'm stronger than yesterday, now it's nothing but my way; my loneliness ain't killing me no more..." #twirl #HomoExplosion +p10179 +aVFafsa saved us 5550.00 this time around. +p10180 +aVOmg! http://bit.ly/c7yoI7 - Using this my website got 12k views today. National Grammar Day #JonasBrothersAre #itsNotCool +p10181 +aV@justinbieber can you PLEASE follow me and give me a big shoutout ) 3 +p10182 +aV@yankeegirl51680 thanks! my mom is there now she was walking by saw the line and jumped on it lol +p10183 +aV@MeanderingSoul At least I would say it, because it's truly what you are: an adorable, amazing dork with a good soul! +p10184 +aV#F1 Remember, the 2009 race edit is now on the F1 web! Great to be able to watch it at last!! +p10185 +aV@ShannOOO lol its cooliooo!! I get off@6 today if u wanna come by b4 kid pick up time lmaoo!! Or u know they're more than welcome too lol!! +p10186 +aVThe judges on #idol are making me not want to watch the show. +p10187 +aVi haven't seen him yet today. i was hoping for a smile +p10188 +aV@cutealesia after looking at the picture with the article I understand why someone would buy an island. +p10189 +aVLoving the track playing on 6music right now +p10190 +aVMy knuckle is big, gotta work on lefty +p10191 +aVGRRRRRRRAAAAAAHHHHH! GODD@ # MAYA! WHY WONT YOU WORK FOR ME?! :( I really need to see if I can get a tutor to help me learn this stuff. :( +p10192 +aVPPP has surpassed the 100,000 view mark. A big thank you to our fans and our web partners @koldcasttv & @bliptv +p10193 +aV@EmmaXMichaelX It Was Really Coool !! .x I Told Jack About It And He Started Pissing Himself !! I Looovvveee yooouu Sooooo Mucchhh +p10194 +aVRT @lovesmesomeyou: Ever wonder about Sin: Fat or Gay? My video response http://bit.ly/9jM8Ch +p10195 +aVGood Morning! Temps right now in the upper 20s. +p10196 +aV@Nikekaws OH EM GEEE!!! why do i have to be a bean head looser!!!? +p10197 +aV@RadioLunchbox you need to bathe, dude. +p10198 +aVJust took "What kind of Animal are you in bed?" and got: a Teddybear! Try it ? http://bit.ly/akrxM8 +p10199 +aVRT @NBSoftwareStore: Five minutes to go! Winner will be randomly selected and announced at 12:01PM EST. #NBS http://bit.ly/NBSiPhone +p10200 +aVYour friends seem to be extra supportive of you now but upon c... More for Taurus http://twittascope.com/twittascope/?sign 2 +p10201 +aVRT @lockerz: I like to PLAY the Patric Stump video on Lockerz.com +p10202 +aVRT @alacimass: VAs: are business owners & understand many if not all functions of keeping a business running like a well oiled machine. +p10203 +aVI just took "Which Twilight New Moon Character Are You?" and got: jacob! Try it: http://bit.ly/aL06cd +p10204 +aV@n00bf4c3pl0x australia wbu? :) +p10205 +aVwow is all i have to say +p10206 +aVRT @Kingjones88: I've wasted so much time on chicks .... thank god I didn't waste the same amount of (I feel the same way) +p10207 +aV@PerezHilton if you do it I would definitely watch it! +p10208 +aVLoss of UB rehabilitation program will hurt region: The attending physicians are also faculty at the University at... http://bit.ly/clpjZM +p10209 +aVi am off that college work to do ill be on my phone if yah want me just @ reply my :) love yah all thanks for following........... :) 3 xoxo +p10210 +aVAin't asking nobody for nothing http://www.youtube.com/watch?v bs4y5si8DGs +p10211 +aVMy niche is better than yours! http://tinyurl.com/yd4xuee +p10212 +aVHave You Heard About The Secret Behind ?The Secret?? (this is SHOCKING Stuff)... http://bit.ly/FREEDVD +p10213 +aVomg thank u!!! http://tweeter.faxo.com/Biggest_Emily_Osment_Fan +p10214 +aV@So_MzUnderstood I might have one F too because my professor gives us nothing but tests & no homework. What u got an F in? +p10215 +aV4real! RT @JillianMichaels: Ok I am obsessed with Carrie underwoods cowboy cassanoca song. It takes a woman that hot to make like country. +p10216 +aVmy thursday eavening tv line-up goesss Eastenders, #snogmarryavoid, then hotter than my daughter, then after a while skins. WOOP (: +p10217 +aV@MKqueenBee @iluvjosh4ever Stare at it and you can kind of see him falling D Renee, lesson learned, right? :p +p10218 +aV2 and a half hours until i see Jim Halpert's beautiful baby!!! +p10219 +aV@beautiful_x3 aight ima hit yall up tomarro after this nigga do somethin on my whip +p10220 +aV@KermitHermit that's is the logic. But twitter is now against common sense +p10221 +aVIt looks really nice outside!! Sun is out +p10222 +aV@ForeverWithYou_ but by time I load up my computer it will be 9 and you'll be gone D: +p10223 +aV@mtorres1992 i am whipped. i am starting to think about marriage and shit. i need her. get her to talk to me. please? +p10224 +aVI just got up to 28,044 in #DoodleJump!!! Beat that! http://itunes.com/app/DoodleJump +p10225 +aV@catherinealulio random just watch it :D +p10226 +aV@boomkit18 Awww, can I see? Nobody deserves to be put down. +p10227 +aV@e_austin I am pro-union! Let's quiz pub emp union mems & see what they know about labor movement. Raised by local pres & business agent. +p10228 +aV@JA5KAUR lol h-i-triple x. i wonder what u thought i said durin the verse. +p10229 +aVPraying for you my sista!! -- RT @HydeiaBroadbent Living with AIDS is a pain!!! +p10230 +aVOh & now my batteries gonna die. sum1 hates me 2nite missed Chezza & am gonna miss @wossy +p10231 +aV@anugrahayyu u should visit me in gorontalo. u can stay at my house!:D lol +p10232 +aVGetting ready to rock out at Made with Love Bakery and Cafe - Today at 4pm! Yummy, yummy... http://bit.ly/aFfOns +p10233 +aV@stuffbyxtine hahahaha exactly five o'clock and i just finished that sushi cat game! perfect timing :P (been playing on and off) +p10234 +aVGoodmorning The Swagg Rises From his Slumber last day last class lets get it poppin nyc by the end of the night Loveit ! +p10235 +aVrepresented a client at a green card interview in Garden City, Long Island on Tuesday. We were in and out and approved in under one hour! +p10236 +aV@TartletTran @etalien16 HAHAHAHAHAHA!!! rofl!!! okok cool then! imma sleep too! soo late!! nighty night!!! +p10237 +aVLOL. The 10ers are dancing to Oh! again. :) +p10238 +aV@oaklandcemetery Really looking forward to Oakland events for the Phoenix Flies http://bit.ly/cxIveQ OMG you have just got to see this! +p10239 +aVTWIST SHOULD TOUR W. JB CAUSE THEY BOTH SICKKK ! HOW BOUT CHUCKEE THO ? (#TwistShouldTourWithJB live at http://ustre.am/2HH8) +p10240 +aV@majornelson http://twitpic.com/16rsgc - #toysoldiers thats simple it was a atari 2600 with pole position and galaxian lol played with it fo +p10241 +aV@Boolumaster This dude is like MJ the sequel really..he always hits the big shot!!! +p10242 +aVtomorrow is goin to be interestin, so excited to go out of town for 4 days +p10243 +aVRT @MsLeloB: It's not true? Yep.no one can confirm @bonang story as the source of breakingnews.*damaginghercareer* +p10244 +aV@rebelbrown That amazing girl gave that speech years ago..she is still speaking today! Still working for cause she believes in... +p10245 +aVi hate children laughter in scary movies __ +p10246 +aVBrent and Brad in hot flip flop fuck action - http://bit.ly/9fJdOI +p10247 +aVI Took ballet/tap/jazz classes when I was 8...not by choice RT @mikeziemer: If you're awake, @mikeziemer me a #randomfact about you. +p10248 +aVRT @jackietino: if any1 thinks @rbutler7 is being rude, annoying, or mean.. go to bed and wake up again, think if you were in his place, you'd be pissed too +p10249 +aVI spilled milk all up in my phone. +p10250 +aVVery excited today - I am taking a day off. Unheard of! Going to a market to shop. Catching up with a friend. And doing other fun things : ) +p10251 +aVPhoenix- FREE I-Pod touch: Just got a newer one for my birthday. This one works fine and I'm giving it away. Youd ... http://bit.ly/bD85td +p10252 +aV#Ibelieve in You and me. Everything will be alright. +p10253 +aVQ:can me & you get to kno each i think u real cute & wat not & u seem like a cool p... A:who r u? http://formspring.me/rialequay/q/265383689 +p10254 +aVLooking forward to seeing @SadaoTurner too of course. +p10255 +aVi more hour to go. then.. i'm DEAD. TT TT +p10256 +aVGuys I just noticed this, 30 for TWO commissions from two of my favorite cartoonists: http://is.gd/9M6Sw (@philmcandrew and @britterson) +p10257 +aVWelcoming Joe Sinclair; social media svengali, author of WKW, and Marketing Director into the Guided team. +p10258 +aV@supportingbiebr LOL OMG AND AHAHHAH IS IT JUST ME OR MOST OF JUSTIN IS ABOUT SEX LOL OH HOW U DO ME AND FIRST DANCE LMAO +p10259 +aV@adamcohen That's right. I could really go for a coffee right about now too. +p10260 +aV@_DAVECHAPPELLE ogochocinco was injured in a fatal cargo pants commercial...It's hideous to watch +p10261 +aVSo tired! First week back to work and I've had to start before 8am the last 4 days. Big sleep planned for tomorrow +p10262 +aV@Stephlouise_xo you get me, using words like LUGUBRIOUS (like this guy http://www.youtube.com/watch?v OF0Re7gJBb8), it's all crazy... +p10263 +aVMy Loc is still on my profile...wth +p10264 +aVRT @justinbieber justin im thinking you should do a half hour session where you just reply to your fans non stop :) what do you think?30 +p10265 +aVI want to read: Princess for Hire by Lindsey Leavitt http://bit.ly/bGqpBX +p10266 +aVyou are my sunshine, my only sunshine, you make me happy when skies are grey... +p10267 +aV@cmhoughton I ran the games. "Born to Be Wild" is my nightmare song. +p10268 +aVwhoever invented these deserves a noble prize http://yfrog.com/j3feij +p10269 +aVRT @weirdoinpink: daydreaming is the best for boosting my mood +p10270 +aVMan the earth is a lil angry i see this morning, Big quake in Indonesia and huge aftershock in Chile today. +p10271 +aVWSJ: unemployed not at the office so not spreading flu means quiet flu season ergo everyone should work from home! http://bit.ly/bASnYQ +p10272 +aVWhy are 3rd level colleges semi-finals played one day and then they must play the final straight away the next day???? +p10273 +aVim tired of thinking of ways to create playlist using visual basic and windows media player control +p10274 +aVall this time..all I have done is clean 1 room....partially GRRRRR!.....still a little bothered by my talk with someone on aim last nite :'( +p10275 +aV@cyandle - Yes it did. Just found out about it yesterday afternoon. Any ideas what to do? +p10276 +aVplaying with my lil sister,sometimes it's funny forget all... :D +p10277 +aVPhoto: readmypockyface: waaa! waaannnttt!!!!!!! http://tumblr.com/xiv72ref8 +p10278 +aVI am lost without you. +p10279 +aV@MistressMarlowe By the way, I always thought I was green rather than blue. It was a bad passport photo I used for my profile picture. +p10280 +aV@lindseyIsEpic http://twitpic.com/mhrmw - I agree I would do anything to get one of these, that would be so awesome framed and on my wall,,, +p10281 +aVRT @Younggee: @ShoSmoove i was abt to ask u if u were ok?! lol!!! --lol yeah I'm good +p10282 +aVGet thousand of followers for FREE! VIP are getting over 1,000 per day!! http://tinyurl.com/yg35rnz +p10283 +aVHeading home after 12 plus hours on duty. Had to clean someone else's weapon without q-tips... +p10284 +aV@itsRamel thanks!!! For the #Ff #LOVE!! +p10285 +aVThey shooting at the Pentagon? Maaaaannnn people are mad as fuck. +p10286 +aVRT MAKE LOADS OF MONEY! http://bit.ly/axExNC +p10287 +aV@LostLambFound "can we trust our own heart?" Absolutely!Our heart is the most sacred place.It's where truth lies.And where God dwells. +p10288 +aVN I m going to mumbai after 2 weeks.. That proves that I can survive without going home (at least for 2 weeks! :P) +p10289 +aV@AlluringMelody doin my hair (which is goin to take forever) and some preparation for spring break. U? +p10290 +aVRT @flavorpill: The top 100 Jewish Moments in Film via @heebmagazine http://bit.ly/aaoAgj +p10291 +aV@seankingston follow me pleaseee :) you're amazzzzing!! #KINGSTONFOLLOWS .. +p10292 +aVi have the worst posture. +p10293 +aVHave you enter the awesome Zevia giveaway yet today?! http://bit.ly/9Iokfk #BFC Belly Fat Cure +p10294 +aV@heartoflincoln "'I'm going to fuck them,' he IMed a friend." oh, modern business. the internet hath made you mighty. +p10295 +aV@sk8terbwoy lol cause I know you wouldn't. I'm fragile. Touch with care +p10296 +aV@karimahhhxD A Day Is In Advance Tho ha! But Seriouslly Think Bout It ... Lol It Actually Is. & Umm wHERE U STAY AT AGAIN? +p10297 +aV@kurtadametz Boy i aint boojee..lol. I keeps it real, you feel me... +p10298 +aV@songbird328 Hey there. We are good. Meeting with a house builder today. Hope you are well! +p10299 +aVRevenue managers.....why are we stuck with rooms only? arent there other revenue producing areas??? +p10300 +aVNO CEILINGS BEST MIXTAPE EVER +p10301 +aV@Jac_kay then get one my dear +p10302 +aV@StepDaddyStar Just Let Me Kno Its About 2 Start Gettin Hot So You Kno A Nigga Goin 2 Be On The Move +p10303 +aV@iKissedJoeJx3 Wooo! You Get The Book...That Is GREAT! I ? Daniel But Want Cam! 900 Oooo Good Luck!...xoxo You Are Interseting...It Won't Be +p10304 +aVHere's a great pre-review of the divination deck I designed: http://is.gd/9MIpm You can still preorder a copy here:http://is.gd/9MIsy #tarot +p10305 +aVI drove a whole lot today. Only 3 more weeks and I take the test : / +p10306 +aVTonight is date night with Joe. - And I?m in such a weird mood? I just want to lay in bed and cry all night.... http://tumblr.com/xkx73ioaz +p10307 +aVbored out of my mine +p10308 +aV25 Amazing and Fresh jQuery Plugins - Speckyboy Design Magazine http://goo.gl/fb/yKvW +p10309 +aVRT @OneWorld420 We are now at the new location. 1804 Newport Blvd is poppin off! Come by and check us... http://schmap.it/62IQQc +p10310 +aVRT @CoCoDivineXXX: @MsPerrine June 10th season 3 starts... 3 that show! +p10311 +aVsuge said if they had let me finish my set i wouldve had them shootin.. lmao +p10312 +aVFudge made with vegan condensed soya milk by my friend Alice! :) http://bit.ly/dxvnwb via @VeganDotCom +p10313 +aV@mikethegreat1 lmao how u gon get to my house? +p10314 +aV@mrios6288 follow me!! +p10315 +aV@poeticallydumb ALWAYS, I WANNA BE WITH YOU. AND MAKE BELIVE WITH YOU. AND LIVE IN HARMONY HARMONY.. +p10316 +aV*Jimzus! Tis too early u2* RT @SheriphSkills: Cos u drank too much camel piss as a kid! RT @EmiNiBreezi: (cont) http://tl.gd/e4198 +p10317 +aVThe wind is howwwwllllin....awoooooo!!!!!! +p10318 +aV@lucentdossier i miss the old days .. +p10319 +aVHi renee, How are you going, i hope that you don't mind me lokking you up. Hey +p10320 +aVRT @I_am_Shanel: @datdamndivine you know I know where all the good fat girl snacks are in the dc area lol --lmaoooo +p10321 +aVhey, you there, have you met my friend @HeyThereMiley cuz you should, and by meet, i mean follow ;) +p10322 +aVhttp://twitpic.com/16z3e6 - @DJGREGSTREET AND @DJTROCATLANTA!! BREAK UR RECORD. AND LIVE LIKE A KING!!! +p10323 +aV5* MicroTut is COOL: Centering a Div Both Horizontally And Vertically http://bit.ly/9A19uc (via @Tutorialzine) +p10324 +aVRT @FreakingDUMMY: RT @tbreezyworld LADY GAGA SH** WATCH HOW I POKE HER FACE! http://www.zshare.net/audio/7277196017b6c89c/ #NOWPLAYING "TRUNT UP" BY T-BREEZY +p10325 +aVIf anyone is interested in a free lyric API with revenue share get in touch. I've 1.7 million lyrics sitting here waiting to be utilised! +p10326 +aVFollow @missbethanyj because she's my sister & I love her sooooooo much! & she's SAVED! Sanctified, water baptized & Holy Ghost filled!! +p10327 +aVLove me do http://myloc.me/4w2tt +p10328 +aV@MiniWanostrocht It was delicious! I'm pretty much a prettier version of Nigella. +p10329 +aVrawrrawrrawr. you're supposed to still be stuck on me. +p10330 +aVRT @MichaelStryder: Liz Cheney: Taking flak from the right as well as the left http://bit.ly/duZe3v +p10331 +aVi am sooo bored.: http://chatter.com/a/2g30e +p10332 +aVit's so hot! this el nino is becoming more and more intolerable.. +p10333 +aV@jitterbug96 i've gone through it logically and it just doesnt make sense! he has ruled out all continents except africa or s.america! +p10334 +aV@TheDuchi hehe,m mad at u jor,u didn't call me back..but yh,dts part of it.:( +p10335 +aV@greggles1969 Thank you for the ties and signed pics, they arrived safe and sound this morning! X +p10336 +aVOMG, I was just winked at by Steve Buscemi's doppleganger. I kid you not. Ew. +p10337 +aVHave just re-pierced own nose and had mini pity party in the bath with jelly beans. Slightly more spontaneous than give self credit for. +p10338 +aVRT @Vincent_Ang: The man who views the world at fifty the same as he did at twenty has wasted thirty years of his life - Muhammad Ali #quote +p10339 +aVRT @johnellsmalls: Don't really wanna call it a night but I guess I'll go to sleep! +p10340 +aV@CreamiePuff9 oh! and also saturday, or shall i say black saturday, and will be back in ester sunday!haha +p10341 +aVMeet the most #Gorgeous Boys in all the world! ------------ http://blog.gorgeousboys.com +p10342 +aVi wish i had a london accent :/ +p10343 +aV@hencehemmo you havea cold. it's be RUDE not to +p10344 +aVFrustrated? Try this INCREDIBLE way to earn REAL money in 24 hours!- Check this out NOW! http://cli.gs/abMY5T This could be the ANSWER 4 U! +p10345 +aVWNY IS EVERYTHING ABOUT LBP AWESOME? the music the cuteness asdfghjk +p10346 +aVThe next radio commercial for Texano comes on at 11:50pm!!! HOT 1079 make sure u listen for it !!! http://twitpic.com/164py6 +p10347 +aVsomeone PM'd me saying they won and they didn't WTF you think I'm stupid?? (don't answer that) someone just trying to get something for free +p10348 +aVThis is NOT the business.!!! +p10349 +aV@SexyDoll360 lol how you figure? +p10350 +aVI'm with Mickey Mouse. :-) +p10351 +aVQ:Youh Shouldn;;t BCUXZ youh kan Die. A:like i said, i only do once in a while, but i'm done w... http://formspring.me/nesssss0x/q/268347882 +p10352 +aVTime fur breakfast, den bakk 'gain for the ONE and ONLY QUEEN OF POP? MADONNA?!! http://moby.to/rwx3eh +p10353 +aVSALES AND SPECIALS AVAILABLE THIS WEEK ONLY: Hello Digital Scrappers,Scrapbooks gone Digital! has news for you!DI... http://bit.ly/9pFcCj +p10354 +aVMaybe they appeal to my desire for a nice, ordinary, warm, pleasant life. +p10355 +aVgoing to skate with @MattyVengenZe...peace! @LouisSmiles, pick us up in town when you get out of work please ] thank you +p10356 +aV@ThesPNation I LOVE U!!! Srsly you are my new BF! I need new product reviews and vids IMMEDIATELY! +p10357 +aVMy FIRST and FAVORITE follower :) @Switchfoot ? I love u guys, and wait you! Argentina wants to be rocked by you! +p10358 +aVI just got the Mac Heist bundle. 7 awesome Mac apps worth 260 for only 20 and got 3 sweet bonus apps free! http://bit.ly/heist-it +p10359 +aVNow i know that i cant make you stay. But wheres your heart. +p10360 +aVcant wait to watch remember me!!haha +p10361 +aVRT @ItsMaryRose: In staying home tonight. Who's got a blackberry? Keep me entertained and bbm me.;; bbm me hoe ;) 312BB5EE +p10362 +aV@justinbieber Where in australia are you performing , ? ox. +p10363 +aV@lorraineag Congratulations on the 26 lb. weight loss. Keep it off. http://bit.ly/lwMPx +p10364 +aVi have to say that i loved alice in wonderland ? :) +p10365 +aV@RheaBea I go to Alabama State and I love it im glad i made this choice +p10366 +aV@katebornstein biological pets I'm on board with. Human pets suggests a dungeon environment I wasn't prepared for on a Sunday afternoon +p10367 +aVListening to the New WebComics Weekly. Maybe it's the hour or the fact that I listened to CC2C but I keep hearing my own voice! in there! +p10368 +aVJst left US berley!..on my way bak home +p10369 +aVwith boys like you, i'm better off on my own +p10370 +aVRT @GroundZeroPromo: "One thing that's forever is a soulmate" +p10371 +aVHave to watch the Oscars online tonight due to those b@stards at Sky putting it on a pay channel.... +p10372 +aV@SenryuSoul send some my way please.... +p10373 +aVA bit of good news about classical music in the U.S. http://tinyurl.com/yk4npga +p10374 +aVespresso writing making omlettes. I love Sundays. +p10375 +aVRT @Pokkahontas: @yung_freshh @Wayneshiaa what did I tell you fools!!? +p10376 +aV@hausofmario hahah what is she doing here? +p10377 +aVRT @bigmarry: happy feet... http://bit.ly/coTEAR +p10378 +aV@ANTMAN15 why was it fruitless? +p10379 +aVNice work - personally I prefer the cane. ;-) RT @rich_evans http://bestc.am/BZK0q @mistressmia 5 riding crops... Thinking of you. +p10380 +aVOkay !! Im Gewd !! Got a random axx text from T n he made my day !! +p10381 +aVGOOD NIGHT twitter. And thanks for a day, that made me tweet and booth more. WRITE ME! +p10382 +aVRT @WaynOsUav3 @Real_Slick yeahh dat shit is IIGHT -__- -- iight? That shit ohdee poppin nigga +p10383 +aVI hit the gym 2day.feel so good and fresh.my face looks so much bettr wd all that sweating out +p10384 +aV@ALPAPERS it was good, I had a great time! Ready to get back to NY. "In da streets" you say, where'd ya go? +p10385 +aV@briannaorg @hannahmosk this is alarmingly true. But at least with twitter, I have something to do with my lack of sleep besides watch anime +p10386 +aVhttp://www.youtube.com/watch?v wcjr53W361E&feature sub I totally gonna love the New Season of "Sonny with a Chance"!! So Random LOL +p10387 +aVEven though I hate you my life would suck without you! +p10388 +aVGot a Sunday off and I get to watch the Atlanta race today. Yippee! Over in Rowdy chat as well if people want to come join in. +p10389 +aV@KayDee215 yea man... but yea things do seem to fall in place if u let em right... man i might see u soon anyway SMH :P +p10390 +aV@Jihime Yeah :) I was given season 1 remastered as a gift too, so looking the shiny and pretty :) I want Spock. +p10391 +aVHOPING there is space on the Bellbowrie Under 15s Hockey Team!!! +p10392 +aV@nicolemason65 im very very good :) just finished work and home now to relax.. got uni and work tomorrow:( what you been doing ?? ? +p10393 +aV@KimberlyBarth that's why ur one of my heros lol +p10394 +aVDon?t miss! 250 in Free Outback Steakhouse Gift Cards! (USA offer) http://bit.ly/ak6YA0 +p10395 +aVRT @@ayasnastiti: Wooyyy !!! Tell all I'm in BADMOOD . http://myloc.me/4wEmi +p10396 +aVRT @aMaceingMegLiz: @nickjonas @joejonas could you please watch www.youtube.com/idahoodblogg she did Who I am and a bunch of other songs in Signed English! 3 +p10397 +aVFinally...Cape Town gets rain after days of heat!! +p10398 +aVwe love lil twist because that nigga rap +p10399 +aV@LoveMyMindFirst yeah i think i was lol +p10400 +aVCan somebody recommend some bands to me? :] +p10401 +aV@Pan_duh Aaaawe c: That is too cute for words 8D I love you and would adore it if you got me one n___n +p10402 +aV: Eff Folgers! The best part of waking up, is this crazy-awesome lemonade that my dad makes, in your cup. #DELICIOUS! +p10403 +aVThis weather reminds me of Thanks giving.. I think imma have Boston Market tonight!! Or does someone want to cook me that food?? Ha +p10404 +aVThis place is dead. Finishing my beer that was bought for me and moving on!! Ha +p10405 +aVI'm a better man today than I was yesterday. +p10406 +aV@justinbieber i will travel all over the world to find and buy my world 2.0. promise...!!!91 +p10407 +aV@Michaelhutto Many thanks. :) Yes. First race of the year. I'm so excited. :D +p10408 +aVRT @TheHugoAwards: One week till Hugo Nomination deadline! Details here: http://tiny.cc/t1qzV /via @vjdocherty +p10409 +aVAh yes the screaming baby. 20 says next to me on this long flight +p10410 +aVI love @alfredapp..seriously..check this out. +p10411 +aVDuck and Cover & everything will b ok. http://tunetoneandtechnical.blogspot.com/2010/03/duck-and-cover-and-everything-will-be.html +p10412 +aV#welovezanessa because they're so sweet to each other. They hold each other's back every minute and second 3 +p10413 +aV@travisjgordon ahahha . im guessing that was to me . well that would be entertaining . hahah that would only fill up one lunch though . +p10414 +aVCards missing out my deck +p10415 +aVMovie with my mommy. Perfect for a rainy day. :) +p10416 +aVLanggeng yaa RT @gitagraceia: 1/3 year with @sonnens. Thank God. How I love you, dude :-* +p10417 +aV@sparkyjanie Pretty good, I've written a lot so that's definitely good! +p10418 +aVPhoto: WHOOP WHOOP http://tumblr.com/xr0752nxe +p10419 +aVSorry about that. Here's what the Oscar goody bag has http://bit.ly/dBVgI2 +p10420 +aVgo and follow @alltimeoonagh shes freaking amazing :) x 3 +p10421 +aV@mgilchr see now get outta MY neck o the woods!!!! +p10422 +aVMy speech is so hypocritical. +p10423 +aVNothing is as hard to do gracefully as getting down off your high horse. +p10424 +aVRT @MikeSheaAP: There is a direct correlation between being a superior band and no one wanting to read about you. Don't be offended. Jus ... +p10425 +aVi am the DJ tonight! RT @alisonkjordan: I hope @djevilone will appear and kick the DJ off tonight. +p10426 +aVRT @ReIsFiYaa: I gotta follow nicki minaj she told @myfabolouslife in a song they got she gon put her puss on his chipped tooth lls tht chick is wild ilike +p10427 +aV@V3nom6139 not #coonery. i want chicken and grits...is that a crime?? lol +p10428 +aVI don't know what my heart wants. I don't want to see him, but then I do.. I don't know : +p10429 +aV@suziwong66 also the credit music from Avril Lavigne was awfully jarring - was not and am not a fan of hers! +p10430 +aVRT @LoveHasQuotes: If you aren't good at loving yourself, you will have a difficult time loving anyone. +p10431 +aVRT @Casey_OnTheMoon What the fuck is up with the trending topics? Smh. +p10432 +aV@Nino_of_CFE Am I Playin to Harsh, lmaoo whats score? lol +p10433 +aVGoodnight world. May tomorrow bring you peace. 3 3 +p10434 +aVsays ...wew....nid to review n ..hahaha...finals n eeh...sna d aq tamad :-Din.. http://plurk.com/p/41yylw +p10435 +aV@ryuuzaraki re:"lol im starting to like matthew" --Yes, well he's a very likable fellow, if I do say so myself. _ +p10436 +aVSo I'm getting a tribute peace for Baltimore...it's 1200 for the tat...lol np...we the moneymen let's do it +p10437 +aV@souljaboytellem Maybe u can follow me? just press my follow button:D +p10438 +aVMySpace limit per song is 6M. My track is 6,7M at 128 kbps. Fuck MySpace. This is not a place for music. Such sizes suit ringtones more... +p10439 +aVFor my mom who beat breast cancer 8 years ago, I love you! http://tweetphoto.com/13531327 +p10440 +aVIS EPIC!!! ) clearly i LOVE +p10441 +aV@IlaKandinsky Where's my love?-14and then Bournemouth!!Do u have a little space for me in your suitcase?I would love to come..but one day... +p10442 +aVRT @awriterslife92: "If you think about shortages,you?re going to attract more shortage!" - Wayne Dyer +p10443 +aVoff to make the Q&A!!! +p10444 +aVRT RT @NatsJournal: #Nationals staff: 50 runs, 67 hits, 12.82 ERA, 15 pitchers with 9.00 ERA. March 6 is too soon to worry. But good God. +p10445 +aVworking on a new game:) +p10446 +aVRT @eonIine: Nick Jonas punches his brother Joe in the airplane yelling "Its a grey sweater! get it right!" Details on E! +p10447 +aVRT @Larry411: Shout! RT @RMSaturdayUK: RT @jenbirtles: can we get a shout out for @RMSaturdayUK all Brits supporting Remember Me and Rob in the UK!! +p10448 +aVWatching Rocketman. Brings back a lot of good memories. +p10449 +aVMy nephew is so stinking cute! +p10450 +aV@MizLizzy lol I am loving it all!! +p10451 +aVCongrats to swimmers in gr. 1-5 at Argenziano & swimmers in gr. 6-8 at the Healey for winning their division in the city-wide swim meet! +p10452 +aVI am so happy, #SherlockHolmes incredible soundtrack! Glad to see others appreciated. Now if it wins, crossing my fingers. +p10453 +aVRT @youngzeakbho: Find Something Upright, to Pull Up On! +p10454 +aV@106andpark i wanna thank ma dad from when i was in trouble with the police...he helped me out of it +p10455 +aV#ifiwerealame i would be just like you...... +p10456 +aVhailings to all my peeps top of the morning to yah +p10457 +aVRT if youre pretty excited bcause is just 15 day untill My World 2.0 @justinbieber +p10458 +aVHappy hour becomes skinny hour, as well. No wonder she's so happy. http://nyti.ms/cAwl2a +p10459 +aVWell... Off to my great day _ +p10460 +aV@TheRockStarChar *shrughs* I dont mind. Just me & my bently, *laughs* +p10461 +aVGot the highest compliment today! +p10462 +aVIts not my fault that I am on top of my @chris_daughtry news!! My TWIN SISTER is coming with me to the meet and greet not some werido!!thnks +p10463 +aVI like giants. Especially girl giants. Cause all girls feel too big sometimes, regardless of their size. +p10464 +aV@SuperGirlSean The Academy is unfortunately not in that business of time-tested awardsgiving; I cite as always Sunset Boulevard, 1950. +p10465 +aVI'm a fan of Short Stack. That doesn't make me a slut. +p10466 +aVDefeat - I (2351) was beaten by ugma (1900) :( +p10467 +aV@Juelz04 says that you got pretzel stick legs ha and that you cant turn corners runnin to fast for ya own safety.isnt that right @HalfCraZee +p10468 +aV@flatfoot56 Any plans on coming back to Atlanta? Had a great time seeing and talking with you guys at the Business last year +p10469 +aVPhew, we can all relax now. According to this first gameplay footage from Prince of Persia: The Forgotten Sands... http://zmarter.com/142276 +p10470 +aV@shadyrunway u lie it was dumb as shit! The only thing that was on was the hair and the makeup how u doin and the effects +p10471 +aVCr/D/Fail is going to be reday to go for April 15th registration!!! +p10472 +aVRT @BlogXilla: I'm really happy for you @Sandra_Bullshit and imma let you finish but Precious was the best actress of all time... *really +p10473 +aVNext time someone answer "lol" to one of my message, I'll ask them "Really, are you?" +p10474 +aVSitting on the back porch grilling and staring off into the woods... Nothing better. +p10475 +aV@chettinnae i'm still here in aurora. and yes, we definitely don't deserve to wait! +p10476 +aVIf it snows tomorrow, I'm staying in bed. Screw that. +p10477 +aVAnd the week begins! Hope its a good one! 7 more to go! :) +p10478 +aVStory of her life RT @kellicb: James Cameron's wife is looking very washed out and terrible +p10479 +aVWet morning! I feel like dancing in the rain!! @NCity +p10480 +aVi am so mad at the upper marlboro court system for losing my community service papers. :( freakin losers. +p10481 +aV@22Percent HAHAAHAHA! Our cake looks like one big vomit pile and your little pieces of hair on it +p10482 +aV#relationshiprules don't Ever go thru my phone unless u paying tha bill +p10483 +aVSuccessful outing today. Had lunch by the beach in Fernandina Beach and then went shopping at Tar... http://schmap.it/pcobw6 (via @hairgeek) +p10484 +aV@cbcnn - I love Green too. Though, my taste buds are accustomed to Jack. That apparently calls for a toast, Le Chaim. Cheers! +p10485 +aVIt's been awhile since I've tweeted. Twitter, have you missed me? +p10486 +aVit looks like i wrote a whole freaking essay for a simple english assignment. +p10487 +aVYea,though I walk through the valley of the shadow of death,I will fear no evil: For thou art with me. Amen to that. :) +p10488 +aVRT @boyreporter: HA! RT @DoseDotCa: Mickey Rourke is at home, yelling, "I MADE THE EXACT SAME MOVIE A YEAR AGO, YOU ASSHOLES." #oscars +p10489 +aVI can't believe I somehow managed to ever draw things I was proud of on these things. +p10490 +aVRT @kimbaleo: @TristanRose Mo'Nique won best supporting actress ;) omg!!!!!!! Yesssssssssss! Owww! So excited! #YouRock x +p10491 +aV@amfan_jenny just wondering i cant believe hes on here i like him when he was on SS! +p10492 +aVI think working on your birthday should be illegal so Imma start that movement today LoL. Woke up just to call in :) +p10493 +aVThanks!!! @IamSucceeding I am trying to make it memorable :-) You have a beautiful day as well!!! +p10494 +aV@jeyyounit11 yay!! I can't wait to buy your songs :D +p10495 +aV#Oscarshighlights: Gabourey to Gerard Butler: I'd hit that! http://wonderwall.msn.com/#wallState 2__/movies/Gabby-on-Gerard-1507.video +p10496 +aV@kelsiann this is perfect omg +p10497 +aVBored. Doing My Homework. +p10498 +aVRT @rottentomatoes: Sandra Bullock wins best actress. And she won the Razzie yesterday! +p10499 +aVRT @designsponge: wow. RT @juliarothman +p10500 +aVhurt locker won bcuz avatar was 2 long and like a smerf love story +p10501 +aVRT @thebeat1005: LISTEN OUT TO SOME NEW TUNES THIS WEEK, WE ADDED: DARUDE, BLACK EYED PEAS, & CHARICE! http://the-beat-radio.com. http://bit.ly/bi8Urn +p10502 +aV@alardw nah, they just know what you like (of at least they think they know :-) +p10503 +aVI uploaded a YouTube video -- MY SECOND YOUTUBE UPDATE AHHHHHHHHHHHHHHHH http://youtu.be/q9iLloGxN0E?a +p10504 +aVsays good morning everyone! have a nice day! :-) http://plurk.com/p/42y3fe +p10505 +aVwatching home improvement chillin wid the hubbi i love u jonathan miller!!!! +p10506 +aVIf love is just a word, then all my words are vain - @christoferdrew MAN YOU ROCK! YOU ARE A GIFT FROM HEAVEN!!!!! +p10507 +aV@MMH_PiiNkY aiqhtt dnt get carried way lil pickney +p10508 +aVRT @MichaelHyatt: The Rolltop Computer?a totally out-of-the-box design. Wow! http://bit.ly/bgh3CR +p10509 +aVRT @IllustriousAce @splitscr33n @IllustriousAce @PrettyDaGoddd-- simple its called drivin home lol +p10510 +aVTraining update: Michele and Dani walked 3.5 miles on Sunday! +p10511 +aV@SweetestBiitch exactly she need grew up u know what he told me that she one day went to his house right and she was "mad" at me +p10512 +aV#IfBiggieWasHere who would you wanna see him collab with ? Gangsta for life me say !!! +p10513 +aV#ripbig when I die I wanna go to hell cuz I'm a piece of shit it aint hard to fucking tell +p10514 +aVSent me to the camp. I overcame all da courses. Now i'm geared up. Polos with blue horses. +p10515 +aV@larrydhalstead Aw, Congrats :)! +p10516 +aVRT @MrSealthedeal: #RaiseUrHandIf you used to steal meat from the pot KMT I STILL DO +p10517 +aVHe Love My B Apples Yess I'm Talking Bout Boobs ; The Thought Of Him Sexing Me Make My Pussy Drool. . . http://myloc.me/4CCga +p10518 +aVSome of you insecure rappers might take "Standing On It" the wrong way! Oh well! Come down to BBC March 12th for the album release party! +p10519 +aVPacking. Texting my amazing boyfriend and all my st louis peeps +p10520 +aV#jessechat Hi Jesse. Is it easy to walk for example in the park? I think it's hard, when everybody know you and watch each you step. +p10521 +aVContent thyself to live obscurely good. Joseph Addison +p10522 +aVThanks again for everyone who came out to support us and, most especially, our friend Hayley Payne last Saturday!... http://bit.ly/acnISM +p10523 +aV@2STix_iNaBUN nd you been callin me outta my name so that's wat tha fuck you got backk.. ,, +p10524 +aVConverting At 1 In 14 Hops 1.37 Epc To Affiliates - Must See!!! http://bit.ly/cabN8u +p10525 +aVHahahah RT @EghieKo: Allloooo buuuddddzzzzz... :p RT @felanofficial: RT @reawaworuntu: Semua! Autumn Leaves, (cont) http://tl.gd/eu32q +p10526 +aVI don't see myself going super far in dance or the fashion industry. Ppl tell me I eat too much. And I'm not giving up food! +p10527 +aVThat movie was crazy!!! Depressing an action!!!! +p10528 +aV@RollingStone6 Lmfao, yeah I know. +p10529 +aVRT @ryu_winds: Thank you for"HELLO" +p10530 +aVWhat a beautiful day !!! Clean bathroom clean bathroom!! +p10531 +aV@Sheng07 I have some free time tomorrow and friday so imma try and get the SJ video and things sorted, too. :D +p10532 +aVThanks to everyone who participated in the webchat. We really enjoyed your suggestions, and will do another one soon! http://bit.ly/aDxUC6 +p10533 +aV:( oh no! :( god.. :'( little layla! RT @LaylaGrace: Layla went to play with the angels early this morning. Rest (cont) http://tl.gd/f488k +p10534 +aV@jaysonst OMFG THAT'S AMAZING. I CANNOT BELIEVE THAT. STOP RIGHT THERE +p10535 +aVjust loved the morning benders - Excuses http://awe.sm/52Kyr on @hypem +p10536 +aVit'd be awesome to sit in the passenger seat of a car for once. +p10537 +aVThis boy isn't wearing shoes again. I know its a recession but come on shoes are a necessity. +p10538 +aVPicked up oil this weekend, today I'm anointing my feet & asking our Heavenly Father to "order my steps"...Anoint yourself today, BE BLESSED +p10539 +aVahhhh, my gum stings. i have no idea how i cut it :S /via @Leewsa ... I've heard sucking on toes can cause this. ;) jk +p10540 +aVRT @StarJonesEsq: Lesson: Don't abuse your friends with toxic mean-spirited words and expect them to consider it constructive criticism. +p10541 +aVI am sooo happy that my seatmate found my phone, and he gave it to my professor. THANK YOU THANK YOU THANK YOU WITH ALL MY HEART! 3 :) +p10542 +aVFunny!!! Worth watching, japanese guys can be funny... http://www.youtube.com/watch?v EtotGNBFmTs +p10543 +aVTonkatsu with Illahe Viognier...yum. +p10544 +aV"if the light's red , you're gonna hit the dirt roads." lmfao EPIC . +p10545 +aV@gingerssnap I do produce for other people too, but at the mo am booked up for a few months (just saw ur old msg :) x +p10546 +aV@rowansmom2010 yeah it was awesome he is an amazing performer for sure! and just always takes time for his fans too..what a sweetheart. +p10547 +aV@arminjamula-seriously it was awesome +p10548 +aVIt's another beautiful! I hope all of you appreciate today as much as I will! +p10549 +aVRT @WTFSexFacts: Pandas like to watch porn movies of other pandas having sex. Panda porn has been successfully used to encourage pandas in captivity to mate. +p10550 +aV@rayze1 lmfaoooo dead @ unforgivable being the name of diddys cologne aka ciroc disguised as cologne +p10551 +aVI like this: http://ow.ly/1fOcM Genuine, poetic expressions of connection, healing and hope. +p10552 +aVFashooo besides I don't drink much. I just get giggly and more flirty lol +p10553 +aV@phdinparenting Following you via @MrTweet. Looking forward to your tweets! +p10554 +aVI'm starting to worry that my brain is abandoning me... I'm showing signs of typing dyslexia. Reading: normal. Writing: fkcued up. Yo... Oy! +p10555 +aVMy daughter watches your show with me and said your were pretty. :) (#MyLifeAsLiz live at http://ustre.am/dIJF) +p10556 +aV@TBO_Rays are you jocking that's what he said. Wow even its true don't come out in the papers. This guy could be trouble. +p10557 +aV@ukkoite AND all plugs and ports are on the sides, none at the back..why? Why? Why laptop designers, why? Maketh no sense to me. +p10558 +aVRT @leelandmooring: I just got my first official speeding ticket. Go me, 5 years Ive had a clean record, not anymore folks! +p10559 +aVRT @UCraveLaurenJ: U gotta make cuts every now & then. Everyones not meant to be on ya team. My eyes are always wide open. +p10560 +aVFOLLOWS, FOLLOWS! IF YOU NEED FOLLOWERS FAST THEN YOU HAVE GOT TO SEE THIS SITE! IT'S COMPLETELY AUTOMATED. http://bit.ly/9ro24T +p10561 +aV@daleXXdisaster i've never been to a party either. it'll be fun +p10562 +aVthank you lord for the delicious breakfast and coffee you have blessed me with, i am truly greatful +p10563 +aVRT @CarolenaSabah: RT @paulocoelhoapp Special day! Apple contacted us to praise our Paulo Coelho app! Please RT. Thank you! +p10564 +aVYup. Great for @davidelfin and rest of the crew RT @judybattista: Love that Washington Times also in Top 10 APSE..... +p10565 +aVThe surprising thing about young fools is how many survive to +p10566 +aVbored, well you can always visit the blog-murmurings of @teraknor at http://bit.ly/dh6i8I +p10567 +aVim reeeeallly bored. anyone gonna talk? +p10568 +aVNever by tea at Schiphol airport, it's expensive and you get a lousy cup of tea! +p10569 +aV@EmmeRylan I am so happy that you are going to be on my favourite show. When GL ended I was like: "Y&R needs to scoop up those fab actors!" +p10570 +aV@tittoantony minnor one's first day in my pre, but i ragged many, In my pre & in my degree :D +p10571 +aV@missjuicybq yeap....*sings* WIPE OUTTTTTTT, don nun nun nun nun nunna nunt. Lol, we sure would. +p10572 +aV30 SEconds To Mars tomarrow :) niiice +p10573 +aVRT @DIME10_DIVA: @MZMOODY I like my babe's tat there...."great minds think alike" --YEA ITS NICE MAKE ME WANNA GET ANOTHER +p10574 +aVI see some TT I wanna go in on but I don't got no time to chat. I gotta go be a somebody's slave right now. +p10575 +aVRT @JoseCarol: If you fall, GET UP!, if you're going through difficult situation DON'T STOP! Allow it to bring the Best out of you! +p10576 +aV@MakikiGirl I'm giving my 2 Japanese Chins a bath today. Maybe I'll get a pic of them wet. They do look miserable when wet. @MiwaOgleTree +p10577 +asS'val_ind' +p10578 +(lp10579 +I612 +aI264 +aI149 +aI2068 +aI342 +aI1000 +aI1163 +aI2040 +aI1421 +aI194 +aI733 +aI1172 +aI409 +aI1845 +aI977 +aI364 +aI808 +aI816 +aI396 +aI1528 +aI372 +aI151 +aI283 +aI924 +aI1279 +aI1081 +aI1614 +aI896 +aI1911 +aI444 +aI1377 +aI276 +aI1126 +aI500 +aI1796 +aI208 +aI1151 +aI24 +aI718 +aI861 +aI1561 +aI417 +aI245 +aI1933 +aI2037 +aI1568 +aI762 +aI1899 +aI1396 +aI1610 +aI780 +aI436 +aI1519 +aI1788 +aI2061 +aI793 +aI468 +aI1161 +aI370 +aI809 +aI1873 +aI1136 +aI1074 +aI1034 +aI717 +aI296 +aI330 +aI203 +aI1940 +aI1040 +aI1638 +aI1216 +aI434 +aI482 +aI101 +aI350 +aI1846 +aI1829 +aI749 +aI28 +aI1599 +aI506 +aI589 +aI68 +aI1564 +aI1536 +aI285 +aI1903 +aI124 +aI1328 +aI1693 +aI1510 +aI2027 +aI1760 +aI131 +aI1754 +aI1993 +aI1822 +aI2099 +aI1725 +asS'test_ind' +p10580 +(lp10581 +I1611 +aI1881 +aI1100 +aI562 +aI491 +aI1171 +aI865 +aI526 +aI1848 +aI202 +aI1349 +aI1667 +aI1104 +aI2072 +aI1672 +aI1650 +aI651 +aI1127 +aI1442 +aI1941 +aI41 +aI1094 +aI60 +aI564 +aI1239 +aI1095 +aI987 +aI253 +aI449 +aI1205 +aI530 +aI1475 +aI1089 +aI1488 +aI1960 +aI1467 +aI1556 +aI744 +aI509 +aI747 +aI1669 +aI1225 +aI907 +aI1481 +aI1227 +aI580 +aI165 +aI1559 +aI766 +aI1326 +aI231 +aI107 +aI395 +aI1832 +aI677 +aI1708 +aI365 +aI982 +aI76 +aI1369 +aI1790 +aI1517 +aI699 +aI1916 +aI667 +aI1469 +aI442 +aI652 +aI225 +aI93 +aI116 +aI473 +aI1977 +aI1837 +aI1818 +aI1228 +aI935 +aI1579 +aI154 +aI1753 +aI1014 +aI723 +aI498 +aI942 +aI1281 +aI1378 +aI9 +aI1106 +aI1504 +aI83 +aI64 +aI122 +aI532 +aI1800 +aI1486 +aI561 +aI460 +aI1018 +aI1271 +aI1346 +aI1585 +aI1493 +aI850 +aI1761 +aI2071 +aI1575 +aI1572 +aI914 +aI92 +aI1639 +aI269 +aI1929 +aI1738 +aI1110 +aI1701 +aI2041 +aI335 +aI282 +aI1686 +aI574 +aI1435 +aI1741 +aI2046 +aI769 +aI522 +aI112 +aI1919 +aI754 +aI300 +aI55 +aI1557 +aI262 +aI1260 +aI2022 +aI577 +aI958 +aI965 +aI1747 +aI1698 +aI621 +aI1400 +aI1499 +aI1640 +aI1463 +aI1405 +aI1535 +aI768 +aI1910 +aI150 +aI426 +aI2010 +aI1802 +aI1393 +aI139 +aI1280 +aI143 +aI543 +aI1268 +aI1888 +aI1924 +aI1742 +aI968 +aI235 +aI1148 +aI1712 +aI650 +aI1008 +aI852 +aI1191 +aI943 +aI146 +aI1062 +aI204 +aI1870 +aI1226 +aI1732 +aI1978 +aI581 +aI1892 +aI1333 +aI1248 +aI906 +aI1688 +aI1141 +aI172 +aI160 +aI2007 +aI638 +aI448 +aI782 +aI1956 +aI1077 +aI3 +aI1543 +aI1656 +aI353 +aI37 +aI1058 +aI1154 +aI1551 +aI1524 +aI459 +aI882 +aI779 +aI1374 +aI783 +aI1945 +aI1285 +aI918 +aI727 +aI873 +aI1851 +aI899 +aI1996 +aI1165 +aI2100 +aI1114 +aI1540 +aI397 +aI704 +aI869 +aI414 +aI608 +aI1308 +aI687 +aI856 +aI992 +aI33 +aI1339 +aI256 +aI275 +aI1429 +aI1188 +aI1577 +aI2084 +aI1460 +aI2035 +aI78 +aI171 +aI1182 +aI1137 +aI1675 +aI43 +aI1953 +aI1566 +aI374 +aI1999 +aI771 +aI1838 +aI737 +aI2081 +aI2076 +aI1118 +aI359 +aI1273 +aI1827 +aI617 +aI611 +aI2108 +aI1820 +aI99 +aI572 +aI905 +aI1849 +aI1920 +aI419 +aI2101 +aI8 +aI674 +aI1709 +aI1844 +aI1983 +aI110 +aI1947 +aI1178 +aI1180 +aI1224 +aI963 +aI815 +aI1840 +aI877 +aI1366 +aI267 +aI297 +aI286 +aI1814 +aI1756 +aI1613 +aI367 +aI376 +aI2024 +aI966 +aI1219 +aI605 +aI1283 +aI1084 +aI845 +aI348 +aI875 +aI1984 +aI465 +aI1981 +aI1117 +aI501 +aI223 +aI1054 +aI846 +aI546 +aI1007 +aI1063 +aI1602 +aI126 +aI1208 +aI1841 +aI1626 +aI382 +aI1457 +aI1023 +aI1691 +aI998 +aI1415 +aI1476 +aI243 +aI273 +aI1617 +aI994 +aI1598 +aI1327 +aI657 +aI1330 +aI1966 +aI2030 +aI1108 +aI1649 +aI313 +aI1242 +aI2025 +aI249 +aI80 +aI1086 +aI1578 +aI1102 +aI1541 +aI504 +aI1070 +aI598 +aI389 +aI512 +aI263 +aI915 +aI410 +aI1685 +aI817 +aI1653 +aI1979 +aI1472 +aI753 +aI730 +aI229 +aI1586 +aI318 +aI1793 +aI1432 +aI1682 +aI357 +aI1474 +aI212 +aI5 +aI1751 +aI988 +aI689 +aI326 +aI1160 +aI615 +aI1116 +aI45 +aI1775 +aI659 +aI1797 +aI1032 +aI1152 +aI1451 +aI1687 +aI290 +aI2083 +aI912 +aI467 +aI443 +aI1521 +aI306 +aI1749 +aI536 +aI2036 +aI324 +aI1388 +aI17 +aI1514 +aI1970 +aI147 +aI1479 +aI301 +aI516 +aI645 +aI310 +aI854 +aI358 +aI1930 +aI1721 +aI378 +aI647 +aI1523 +aI337 +aI2056 +aI251 +aI144 +aI1139 +aI1404 +aI1745 +aI1235 +aI1357 +aI649 +aI1286 +aI327 +aI1932 +aI311 +aI1699 +aI1952 +aI1220 +aI2054 +aI1495 +aI720 +aI1593 +aI837 +aI201 +aI1496 +aI1589 +aI1768 +aI207 +aI74 +aI257 +aI1530 +aI1431 +aI241 +aI227 +aI1553 +aI1368 +aI1184 +aI892 +aI986 +aI2005 +aI786 +aI217 +aI634 +aI709 +aI323 +aI1440 +aI312 +aI293 +aI1069 +aI113 +aI956 +aI406 +aI486 +aI1316 +aI1112 +aI141 +aI533 +aI54 +aI1135 +aI1311 +aI2002 +aI508 +aI1923 +aI1522 +aI1959 +aI895 +aI1197 +aI897 +aI1379 +aI2045 +aI493 +aI678 +aI999 +aI1428 +aI1123 +aI240 +aI1305 +aI1238 +aI1491 +aI839 +aI1666 +aI1170 +aI1857 +aI1307 +aI799 +aI1204 +aI1061 +aI1198 +aI197 +aI738 +aI1448 +aI159 +aI1584 +aI211 +aI1872 +aI1132 +aI1030 +aI271 +aI1552 +aI752 +aI1329 +aI1931 +aI10 +aI1811 +aI510 +aI1240 +aI1223 +aI87 +aI483 +aI1652 +aI627 +aI1967 +aI1437 +aI2000 +aI835 +aI2021 +aI381 +aI1173 +aI1985 +aI1508 +aI1006 +aI1854 +aI1992 +aI1455 +aI373 +aI784 +aI1020 +aI314 +aI1618 +aI1290 +aI1964 +aI644 +aI1282 +aI930 +aI1397 +aI1003 +aI30 +aI2095 +aI973 +aI1001 +aI610 +aI555 +aI541 +aI1901 +aI1113 +aI46 +aI1757 +aI1546 +aI830 +aI694 +aI458 +aI1360 +aI398 +aI539 +aI1891 +aI1395 +aI368 +aI801 +aI1162 +aI1149 +aI1244 +aI1737 +aI2031 +aI1562 +aI366 +aI802 +aI855 +aI496 +aI1209 +aI1972 +aI1264 +aI989 +aI886 +aI800 +aI794 +aI1713 +aI96 +aI1354 +aI494 +aI1648 +aI1059 +aI471 +aI415 +aI798 +aI662 +aI547 +aI1859 +aI2096 +aI478 +aI26 +aI653 +aI71 +aI1202 +aI1266 +aI1233 +aI1403 +aI1221 +aI177 +aI1908 +aI19 +aI675 +aI946 +aI1772 +aI1534 +aI453 +aI210 +aI1885 +aI1158 +aI1049 +aI534 +aI441 +aI430 +aI7 +aI1401 +aI157 +aI1336 +aI2029 +aI632 +aI640 +aI1714 +aI713 +aI633 +aI603 +aI20 +aI1458 +aI1343 +aI252 +aI743 +aI851 +aI423 +aI978 +aI79 +aI1884 +aI953 +aI928 +aI479 +aI1031 +aI1446 +aI1186 +aI218 +aI630 +aI261 +aI922 +aI1987 +aI1812 +aI1501 +aI84 +aI1452 +aI2052 +aI940 +aI187 +aI1862 +aI1237 +aI1033 +aI1628 +aI158 +aI1958 +aI1622 +aI42 +aI1937 +aI174 +aI490 +aI4 +aI1427 +aI407 +aI773 +aI1391 +aI719 +aI760 +aI469 +aI1722 +aI1497 +aI1660 +aI1302 +aI181 +aI880 +aI2080 +aI796 +aI1733 +aI722 +aI1718 +aI792 +aI363 +aI1402 +aI21 +aI495 +aI1419 +aI485 +aI1896 +aI416 +aI1810 +aI1570 +aI810 +aI745 +aI996 +aI591 +aI377 +aI1462 +aI1641 +aI1902 +aI726 +aI515 +aI1075 +aI1215 +aI1505 +aI1935 +aI1805 +aI1502 +aI691 +aI1871 +aI125 +aI88 +aI1498 +aI1301 +aI1287 +aI1426 +aI319 +aI95 +aI1087 +aI246 +aI643 +aI1876 +aI710 +aI200 +aI604 +aI565 +aI1471 +aI1194 +aI1724 +aI1269 +aI2091 +aI1744 +aI433 +aI1175 +aI646 +aI1706 +aI2051 +aI104 +aI1490 +aI712 +aI413 +aI1199 +aI1867 +aI1671 +aI549 +aI1146 +aI2042 +aI663 +aI1623 +aI1988 +aI153 +aI972 +aI1729 +aI563 +aI129 +aI1624 +aI1642 +aI1465 +aI50 +aI1381 +aI1363 +aI75 +aI1746 +aI586 +aI985 +aI236 +aI1252 +aI361 +aI40 +aI355 +aI1926 +aI322 +aI1090 +aI233 +aI343 +aI669 +aI1217 +aI1071 +aI1654 +aI1946 +aI1740 +aI599 +aI970 +aI1222 +aI325 +aI952 +aI2065 +aI593 +aI1051 +aI360 +aI969 +aI696 +aI1270 +aI23 +aI1321 +aI584 +aI818 +aI1815 +aI1036 +aI1413 +aI1785 +aI1253 +aI388 +aI1728 +aI848 +aI883 +aI1954 +aI1809 +aI167 +aI1218 +aI334 +aI725 +aI1615 +aI1986 +aI1774 +aI1411 +aI1921 +aI1694 +aI690 +aI1101 +aI1245 +aI1203 +aI1700 +aI13 +aI1500 +aI1830 +aI2014 +aI1861 +aI1526 +aI824 +aI2043 +aI340 +aI32 +aI1183 +aI1864 +aI1289 +aI1300 +aI1246 +aI1644 +aI1882 +aI1484 +aI405 +aI921 +aI247 +aI1477 +aI748 +aI105 +aI1370 +aI917 +aI554 +aI853 +aI1789 +aI341 +aI1835 +aI38 +aI567 +aI127 +aI1464 +aI16 +aI622 +aI1627 +aI1576 +aI601 +aI1907 +aI1786 +aI1717 +aI1681 +aI750 +aI132 +aI234 +aI179 +aI1037 +aI1255 +aI1690 +aI788 +aI1620 +aI435 +aI597 +aI585 +aI63 +aI487 +aI1211 +aI1659 +aI1571 +aI2032 +aI309 +aI260 +aI1045 +aI1236 +aI1284 +aI1704 +aI1466 +aI1990 +aI672 +aI209 +aI248 +aI2012 +aI371 +aI902 +aI1678 +aI1758 +aI858 +aI156 +aI1043 +aI97 +aI481 +aI408 +aI573 +aI777 +aI292 +aI387 +aI1711 +aI1121 +aI27 +aI1529 +aI916 +aI445 +aI695 +aI1297 +aI427 +aI844 +aI1773 +aI790 +aI1005 +aI428 +aI1243 +aI354 +aI130 +aI386 +aI431 +aI476 +aI676 +aI1200 +aI1153 +aI2075 +aI1359 +aI575 +aI232 +aI1913 +aI1668 +aI1109 +aI57 +aI502 +aI1776 +aI1674 +aI595 +aI648 +aI1310 +aI870 +aI806 +aI90 +aI1957 +aI866 +aI715 +aI1645 +aI1024 +aI1582 +aI317 +aI384 +aI316 +aI926 +aI947 +aI1373 +aI993 +aI1190 +aI456 +aI626 +aI120 +aI1765 +aI781 +aI298 +aI1314 +aI785 +aI685 +aI184 +aI1394 +aI2047 +aI876 +aI73 +aI1608 +aI609 +aI425 +aI2107 +aI980 +aI556 +aI2077 +aI1858 +aI307 +aI724 +aI1365 +aI401 +aI1147 +aI721 +aI1730 +aI1767 +aI390 +aI454 +aI394 +aI1968 +aI1468 +aI2063 +aI983 +aI1207 +aI1196 +aI1974 +aI1293 +aI936 +aI834 +aI583 +aI422 +aI885 +aI944 +aI128 +aI961 +aI1633 +aI186 +aI881 +aI303 +aI284 +aI884 +aI1542 +aI1353 +aI746 +aI735 +aI1167 +aI822 +aI1949 +aI2059 +aI765 +aI1323 +aI1355 +aI1145 +aI1047 +aI86 +aI1380 +aI776 +aI1096 +aI1399 +aI31 +aI1375 +aI679 +aI1142 +aI2104 +aI1934 +aI795 +aI1313 +aI477 +aI945 +aI1299 +aI315 +aI356 +aI702 +aI1492 +aI1390 +aI571 +aI1532 +aI1887 +aI1631 +aI740 +aI1855 +aI871 +aI82 +aI1445 +aI1594 +aI1144 +aI1995 +aI1719 +aI503 +aI49 +aI666 +aI1831 +aI967 +aI2048 +aI1784 +aI1229 +aI1294 +aI594 +aI1261 +aI1257 +aI579 +aI1792 +aI1082 +aI566 +aI523 +aI814 +aI1898 +aI1664 +aI52 +aI821 +aI308 +aI15 +aI1021 +aI1925 +aI183 +aI1723 +aI1412 +aI528 +aI278 +aI1948 +aI2109 +aI59 +aI2103 +aI1088 +aI1249 +aI932 +aI1762 +aI1544 +aI701 +aI1384 +aI976 +aI1325 +aI190 +aI1963 +aI1099 +aI2028 +aI39 +aI840 +aI1507 +aI328 +aI1129 +aI489 +aI228 +aI1889 +aI1424 +aI557 +aI1518 +aI658 +aI527 +aI1798 +aI531 +aI904 +aI551 +aI887 +aI1065 +aI1371 +aI464 +aI258 +aI1013 +aI681 +aI529 +aI1456 +aI255 +aI655 +aI1344 +aI1392 +aI931 +aI1625 +aI1026 +aI1574 +aI1288 +aI1434 +aI2079 +aI1038 +aI432 +aI1600 +aI995 +aI1019 +aI1828 +aI823 +aI1119 +aI629 +aI1550 +aI1057 +aI741 +aI1189 +aI2092 +aI1803 +aI1256 +aI1538 +aI1125 +aI842 +aI136 +aI708 +aI520 +aI1039 +aI1483 +aI1569 +aI1567 +aI119 +aI380 +aI668 +aI625 +aI238 +aI1545 +aI230 +aI778 +aI418 +aI1107 +aI1755 +aI1449 +aI1423 +aI1702 +aI1115 +aI2053 +aI2034 +aI1274 +aI1072 +aI12 +aI1067 +aI488 +aI1591 +aI429 +aI437 +asS'train_ind' +p10582 +(lp10583 +I910 +aI1338 +aI1554 +aI70 +aI1185 +aI592 +aI109 +aI2112 +aI1122 +aI697 +aI1847 +aI347 +aI461 +aI1801 +aI195 +aI1759 +aI2016 +aI53 +aI2049 +aI2050 +aI1663 +aI1909 +aI1004 +aI911 +aI1863 +aI472 +aI1169 +aI1098 +aI1430 +aI438 +aI1320 +aI1852 +aI1155 +aI1629 +aI1817 +aI1752 +aI72 +aI1002 +aI180 +aI2039 +aI2008 +aI929 +aI552 +aI1555 +aI1319 +aI1866 +aI1928 +aI161 +aI758 +aI764 +aI346 +aI843 +aI2057 +aI1895 +aI742 +aI2093 +aI811 +aI1906 +aI1563 +aI1975 +aI525 +aI1347 +aI1764 +aI279 +aI703 +aI2089 +aI320 +aI288 +aI1258 +aI1581 +aI925 +aI11 +aI1727 +aI1676 +aI656 +aI535 +aI280 +aI1703 +aI1980 +aI1277 +aI1813 +aI1358 +aI379 +aI1304 +aI957 +aI812 +aI162 +aI362 +aI1212 +aI606 +aI1715 +aI420 +aI1410 +aI244 +aI242 +aI1516 +aI686 +aI841 +aI1683 +aI1193 +aI1890 +aI0 +aI36 +aI457 +aI1770 +aI1673 +aI637 +aI400 +aI403 +aI507 +aI1877 +aI1515 +aI900 +aI304 +aI908 +aI2058 +aI920 +aI981 +aI974 +aI1853 +aI440 +aI1834 +aI2078 +aI1596 +aI1787 +aI714 +aI1398 +aI1603 +aI1511 +aI336 +aI1549 +aI576 +aI51 +aI1265 +aI2082 +aI66 +aI6 +aI1850 +aI1842 +aI975 +aI1262 +aI1533 +aI1588 +aI270 +aI1276 +aI813 +aI108 +aI294 +aI755 +aI1573 +aI923 +aI1635 +aI302 +aI2106 +aI763 +aI1335 +aI1017 +aI1259 +aI1055 +aI1332 +aI2105 +aI959 +aI1124 +aI1367 +aI272 +aI688 +aI1306 +aI299 +aI616 +aI1372 +aI1912 +aI1836 +aI791 +aI949 +aI192 +aI2070 +aI1606 +aI2088 +aI1298 +aI857 +aI979 +aI849 +aI2 +aI939 +aI1821 +aI517 +aI1710 +aI582 +aI1520 +aI391 +aI77 +aI1991 +aI1632 +aI1696 +aI542 +aI205 +aI521 +aI1128 +aI1438 +aI1050 +aI220 +aI1480 +aI734 +aI451 +aI1066 +aI660 +aI2102 +aI1651 +aI559 +aI1201 +aI1658 +aI115 +aI1943 +aI1808 +aI664 +aI1726 +aI492 +aI375 +aI1385 +aI18 +aI860 +aI123 +aI1351 +aI628 +aI951 +aI803 +aI106 +aI1407 +aI1580 +aI901 +aI1303 +aI1839 +aI1053 +aI1291 +aI1587 +aI1092 +aI1637 +aI596 +aI1875 +aI960 +aI1439 +aI639 +aI2004 +aI623 +aI903 +aI345 +aI671 +aI1179 +aI189 +aI1692 +aI1823 +aI751 +aI274 +aI1029 +aI1707 +aI1509 +aI894 +aI1525 +aI1150 +aI450 +aI1989 +aI1177 +aI636 +aI1389 +aI1011 +aI518 +aI404 +aI1312 +aI761 +aI1143 +aI22 +aI997 +aI2038 +aI1341 +aI1806 +aI2006 +aI2085 +aI1159 +aI1604 +aI145 +aI1447 +aI1927 +aI1951 +aI1997 +aI452 +aI135 +aI1168 +aI455 +aI214 +aI1799 +aI1763 +aI828 +aI91 +aI1612 +aI544 +aI700 +aI1560 +aI1295 +aI862 +aI1461 +aI351 +aI1234 +aI1052 +aI1998 +aI474 +aI1130 +aI1042 +aI545 +aI553 +aI707 +aI1670 +aI1661 +aI480 +aI833 +aI732 +aI1364 +aI148 +aI1444 +aI1022 +aI1769 +aI265 +aI29 +aI369 +aI421 +aI1356 +aI48 +aI402 +aI462 +aI888 +aI1739 +aI1976 +aI1918 +aI152 +aI1883 +aI424 +aI1824 +aI1296 +aI1091 +aI2062 +aI2017 +aI805 +aI889 +aI600 +aI898 +aI680 +aI1601 +aI463 +aI1616 +aI175 +aI1060 +aI114 +aI331 +aI878 +aI215 +aI1376 +aI927 +aI2097 +aI2064 +aI1791 +aI624 +aI1156 +aI1027 +aI1548 +aI1382 +aI1634 +aI1111 +aI570 +aI1350 +aI933 +aI1646 +aI1254 +aI499 +aI1939 +aI1324 +aI1655 +aI1025 +aI772 +aI1417 +aI2019 +aI1781 +aI1015 +aI163 +aI2074 +aI1917 +aI259 +aI1494 +aI1950 +aI2090 +aI446 +aI684 +aI1878 +aI466 +aI58 +aI1241 +aI1213 +aI807 +aI934 +aI1684 +aI1232 +aI1473 +aI484 +aI1592 +aI1131 +aI137 +aI182 +aI619 +aI142 +aI1454 +aI759 +aI1386 +aI1192 +aI1250 +aI548 +aI1263 +aI2011 +aI266 +aI540 +aI1408 +aI329 +aI1251 +aI1083 +aI2073 +aI1904 +aI393 +aI2098 +aI950 +aI1782 +aI1489 +aI1166 +aI1425 +aI98 +aI1807 +aI1962 +aI642 +aI1073 +aI237 +aI1315 +aI1825 +aI1016 +aI1856 +aI191 +aI2086 +aI65 +aI344 +aI1046 +aI1420 +aI1340 +aI519 +aI1345 +aI919 +aI2066 +aI164 +aI1816 +aI1886 +aI1078 +aI1079 +aI665 +aI613 +aI14 +aI827 +aI1105 +aI825 +aI2009 +aI1609 +aI1041 +aI166 +aI1478 +aI863 +aI692 +aI1868 +aI332 +aI829 +aI1157 +aI1334 +aI1619 +aI138 +aI948 +aI287 +aI34 +aI1331 +aI1766 +aI1482 +aI879 +aI511 +aI206 +aI1547 +aI1894 +aI1689 +aI1414 +aI635 +aI333 +aI250 +aI291 +aI385 +aI757 +aI1231 +aI305 +aI971 +aI1647 +aI102 +aI698 +aI1735 +aI1433 +aI399 +aI984 +aI1860 +aI176 +aI1662 +aI85 +aI1843 +aI1164 +aI1965 +aI670 +aI1879 +aI1503 +aI1777 +aI2003 +aI1779 +aI736 +aI1 +aI913 +aI1210 +aI1607 +aI1048 +aI121 +aI2094 +aI198 +aI224 +aI447 +aI475 +aI239 +aI1214 +aI1748 +aI550 +aI1181 +aI1565 +aI1012 +aI1897 +aI1961 +aI2013 +aI168 +aI1272 +aI1406 +aI1174 +aI602 +aI1247 +aI178 +aI1278 +aI2044 +aI2023 +aI1705 +aI1140 +aI1436 +aI1206 +aI1982 +aI1677 +aI1527 +aI739 +aI558 +aI1348 +aI578 +aI289 +aI213 +aI2069 +aI1416 +aI867 +aI439 +aI587 +aI1944 +aI1597 +aI631 +aI219 +aI819 +aI706 +aI893 +aI1804 +aI1679 +aI173 +aI1383 +aI1731 +aI100 +aI767 +aI338 +aI2015 +aI789 +aI1636 +aI1771 +aI2087 +aI836 +aI169 +aI955 +aI383 +aI56 +aI673 +aI1590 +aI277 +aI103 +aI560 +aI941 +aI1826 +aI1064 +aI2026 +aI1056 +aI831 +aI962 +aI2055 +aI1450 +aI1643 +aI216 +aI1893 +aI2020 +aI226 +aI47 +aI820 +aI2111 +aI874 +aI661 +aI1133 +aI847 +aI991 +aI281 +aI1795 +aI67 +aI2033 +aI607 +aI537 +aI222 +aI1322 +aI1630 +aI81 +aI890 +aI1441 +aI1187 +aI774 +aI1539 +aI1337 +aI505 +aI891 +aI787 +aI1783 +aI524 +aI909 +aI94 +aI804 +aI1103 +aI1621 +aI731 +aI775 +aI770 +aI614 +aI1361 +aI1657 +aI1134 +aI1914 +aI111 +aI1028 +aI1230 +aI1512 +aI497 +aI990 +aI1833 +aI1736 +aI1750 +aI2018 +aI1453 +aI1665 +aI339 +aI1275 +aI938 +aI1267 +aI2110 +aI1973 +aI1971 +aI1880 +aI1697 +aI140 +aI1195 +aI188 +aI2067 +aI693 +aI1595 +aI1085 +aI1470 +aI1938 +aI61 +aI295 +aI133 +aI1506 +aI1531 +aI1387 +aI352 +aI797 +aI1309 +aI1819 +aI1418 +aI716 +aI44 +aI1120 +aI683 +aI268 +aI199 +aI89 +aI1068 +aI254 +aI155 +aI1318 +aI1905 +aI1035 +aI1583 +aI134 +aI1869 +aI1093 +aI1922 +aI2060 +aI964 +aI1138 +aI1537 +aI1176 +aI193 +aI838 +aI69 +aI937 +aI618 +aI654 +aI569 +aI392 +aI864 +aI1513 +aI513 +aI1942 +aI1778 +aI1443 +aI1292 +aI1874 +aI868 +aI221 +aI756 +aI682 +aI1485 +aI514 +aI1317 +aI185 +aI568 +aI1720 +aI118 +aI1009 +aI1969 +aI1342 +aI1865 +aI1900 +aI728 +aI1076 +aI1780 +aI321 +aI1695 +aI411 +aI1044 +aI1716 +aI196 +aI1080 +aI620 +aI2001 +aI1422 +aI729 +aI1362 +aI588 +aI1097 +aI1680 +aI1994 +aI35 +aI1605 +aI590 +aI1010 +aI705 +aI412 +aI170 +aI1734 +aI1487 +aI1955 +aI832 +aI1915 +aI641 +aI1558 +aI349 +aI1794 +aI872 +aI1936 +aI1352 +aI62 +aI470 +aI954 +aI25 +aI826 +aI117 +aI1459 +aI1409 +aI538 +aI711 +aI859 +aI1743 +as. \ No newline at end of file diff --git a/data/SS-Youtube/raw.pickle b/data/SS-Youtube/raw.pickle new file mode 100644 index 0000000..caf74b5 --- /dev/null +++ b/data/SS-Youtube/raw.pickle @@ -0,0 +1,23597 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +cnumpy.core.multiarray +scalar +p5 +(cnumpy +dtype +p6 +(S'i8' +p7 +I0 +I1 +tp8 +Rp9 +(I3 +S'<' +p10 +NNNI-1 +I-1 +I0 +tp11 +bS'\x00\x00\x00\x00\x00\x00\x00\x00' +p12 +tp13 +Rp14 +sa(dp15 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p16 +tp17 +Rp18 +sa(dp19 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p20 +tp21 +Rp22 +sa(dp23 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p24 +tp25 +Rp26 +sa(dp27 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p28 +tp29 +Rp30 +sa(dp31 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p32 +tp33 +Rp34 +sa(dp35 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p36 +tp37 +Rp38 +sa(dp39 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p40 +tp41 +Rp42 +sa(dp43 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p44 +tp45 +Rp46 +sa(dp47 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p48 +tp49 +Rp50 +sa(dp51 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p52 +tp53 +Rp54 +sa(dp55 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p56 +tp57 +Rp58 +sa(dp59 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p60 +tp61 +Rp62 +sa(dp63 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p64 +tp65 +Rp66 +sa(dp67 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p68 +tp69 +Rp70 +sa(dp71 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p72 +tp73 +Rp74 +sa(dp75 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p76 +tp77 +Rp78 +sa(dp79 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p80 +tp81 +Rp82 +sa(dp83 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p84 +tp85 +Rp86 +sa(dp87 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p88 +tp89 +Rp90 +sa(dp91 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p92 +tp93 +Rp94 +sa(dp95 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p96 +tp97 +Rp98 +sa(dp99 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p100 +tp101 +Rp102 +sa(dp103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p104 +tp105 +Rp106 +sa(dp107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p108 +tp109 +Rp110 +sa(dp111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p112 +tp113 +Rp114 +sa(dp115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p116 +tp117 +Rp118 +sa(dp119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p120 +tp121 +Rp122 +sa(dp123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p124 +tp125 +Rp126 +sa(dp127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p128 +tp129 +Rp130 +sa(dp131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p132 +tp133 +Rp134 +sa(dp135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p136 +tp137 +Rp138 +sa(dp139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p140 +tp141 +Rp142 +sa(dp143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p144 +tp145 +Rp146 +sa(dp147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p148 +tp149 +Rp150 +sa(dp151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p152 +tp153 +Rp154 +sa(dp155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p156 +tp157 +Rp158 +sa(dp159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p160 +tp161 +Rp162 +sa(dp163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p164 +tp165 +Rp166 +sa(dp167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p168 +tp169 +Rp170 +sa(dp171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p172 +tp173 +Rp174 +sa(dp175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p176 +tp177 +Rp178 +sa(dp179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p180 +tp181 +Rp182 +sa(dp183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p184 +tp185 +Rp186 +sa(dp187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p188 +tp189 +Rp190 +sa(dp191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p192 +tp193 +Rp194 +sa(dp195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p196 +tp197 +Rp198 +sa(dp199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p200 +tp201 +Rp202 +sa(dp203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p204 +tp205 +Rp206 +sa(dp207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p208 +tp209 +Rp210 +sa(dp211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p212 +tp213 +Rp214 +sa(dp215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p216 +tp217 +Rp218 +sa(dp219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p220 +tp221 +Rp222 +sa(dp223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p224 +tp225 +Rp226 +sa(dp227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p228 +tp229 +Rp230 +sa(dp231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p232 +tp233 +Rp234 +sa(dp235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p236 +tp237 +Rp238 +sa(dp239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p240 +tp241 +Rp242 +sa(dp243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p244 +tp245 +Rp246 +sa(dp247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p248 +tp249 +Rp250 +sa(dp251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p252 +tp253 +Rp254 +sa(dp255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p256 +tp257 +Rp258 +sa(dp259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p260 +tp261 +Rp262 +sa(dp263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p264 +tp265 +Rp266 +sa(dp267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p268 +tp269 +Rp270 +sa(dp271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p272 +tp273 +Rp274 +sa(dp275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p276 +tp277 +Rp278 +sa(dp279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p280 +tp281 +Rp282 +sa(dp283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p284 +tp285 +Rp286 +sa(dp287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p288 +tp289 +Rp290 +sa(dp291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p292 +tp293 +Rp294 +sa(dp295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p296 +tp297 +Rp298 +sa(dp299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p300 +tp301 +Rp302 +sa(dp303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p304 +tp305 +Rp306 +sa(dp307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p308 +tp309 +Rp310 +sa(dp311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p312 +tp313 +Rp314 +sa(dp315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p316 +tp317 +Rp318 +sa(dp319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p320 +tp321 +Rp322 +sa(dp323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p324 +tp325 +Rp326 +sa(dp327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p328 +tp329 +Rp330 +sa(dp331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p332 +tp333 +Rp334 +sa(dp335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p336 +tp337 +Rp338 +sa(dp339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p340 +tp341 +Rp342 +sa(dp343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p344 +tp345 +Rp346 +sa(dp347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p348 +tp349 +Rp350 +sa(dp351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p352 +tp353 +Rp354 +sa(dp355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p356 +tp357 +Rp358 +sa(dp359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p360 +tp361 +Rp362 +sa(dp363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p364 +tp365 +Rp366 +sa(dp367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p368 +tp369 +Rp370 +sa(dp371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p372 +tp373 +Rp374 +sa(dp375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p376 +tp377 +Rp378 +sa(dp379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p380 +tp381 +Rp382 +sa(dp383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p384 +tp385 +Rp386 +sa(dp387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p388 +tp389 +Rp390 +sa(dp391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p392 +tp393 +Rp394 +sa(dp395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p396 +tp397 +Rp398 +sa(dp399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p400 +tp401 +Rp402 +sa(dp403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p404 +tp405 +Rp406 +sa(dp407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p408 +tp409 +Rp410 +sa(dp411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p412 +tp413 +Rp414 +sa(dp415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p416 +tp417 +Rp418 +sa(dp419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p420 +tp421 +Rp422 +sa(dp423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p424 +tp425 +Rp426 +sa(dp427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p428 +tp429 +Rp430 +sa(dp431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p432 +tp433 +Rp434 +sa(dp435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p436 +tp437 +Rp438 +sa(dp439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p440 +tp441 +Rp442 +sa(dp443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p444 +tp445 +Rp446 +sa(dp447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p448 +tp449 +Rp450 +sa(dp451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p452 +tp453 +Rp454 +sa(dp455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p456 +tp457 +Rp458 +sa(dp459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p460 +tp461 +Rp462 +sa(dp463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p464 +tp465 +Rp466 +sa(dp467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p468 +tp469 +Rp470 +sa(dp471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p472 +tp473 +Rp474 +sa(dp475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p476 +tp477 +Rp478 +sa(dp479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p480 +tp481 +Rp482 +sa(dp483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p484 +tp485 +Rp486 +sa(dp487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p488 +tp489 +Rp490 +sa(dp491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p492 +tp493 +Rp494 +sa(dp495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p496 +tp497 +Rp498 +sa(dp499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p500 +tp501 +Rp502 +sa(dp503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p504 +tp505 +Rp506 +sa(dp507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p508 +tp509 +Rp510 +sa(dp511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p512 +tp513 +Rp514 +sa(dp515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p516 +tp517 +Rp518 +sa(dp519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p520 +tp521 +Rp522 +sa(dp523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p524 +tp525 +Rp526 +sa(dp527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p528 +tp529 +Rp530 +sa(dp531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p532 +tp533 +Rp534 +sa(dp535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p536 +tp537 +Rp538 +sa(dp539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p540 +tp541 +Rp542 +sa(dp543 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p544 +tp545 +Rp546 +sa(dp547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p548 +tp549 +Rp550 +sa(dp551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p552 +tp553 +Rp554 +sa(dp555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p556 +tp557 +Rp558 +sa(dp559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p560 +tp561 +Rp562 +sa(dp563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p564 +tp565 +Rp566 +sa(dp567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p568 +tp569 +Rp570 +sa(dp571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p572 +tp573 +Rp574 +sa(dp575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p576 +tp577 +Rp578 +sa(dp579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p580 +tp581 +Rp582 +sa(dp583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p584 +tp585 +Rp586 +sa(dp587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p588 +tp589 +Rp590 +sa(dp591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p592 +tp593 +Rp594 +sa(dp595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p596 +tp597 +Rp598 +sa(dp599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p600 +tp601 +Rp602 +sa(dp603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p604 +tp605 +Rp606 +sa(dp607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p608 +tp609 +Rp610 +sa(dp611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p612 +tp613 +Rp614 +sa(dp615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p616 +tp617 +Rp618 +sa(dp619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p620 +tp621 +Rp622 +sa(dp623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p624 +tp625 +Rp626 +sa(dp627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p628 +tp629 +Rp630 +sa(dp631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p632 +tp633 +Rp634 +sa(dp635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p636 +tp637 +Rp638 +sa(dp639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p640 +tp641 +Rp642 +sa(dp643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p644 +tp645 +Rp646 +sa(dp647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p648 +tp649 +Rp650 +sa(dp651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p652 +tp653 +Rp654 +sa(dp655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p656 +tp657 +Rp658 +sa(dp659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p660 +tp661 +Rp662 +sa(dp663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p664 +tp665 +Rp666 +sa(dp667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p668 +tp669 +Rp670 +sa(dp671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p672 +tp673 +Rp674 +sa(dp675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p676 +tp677 +Rp678 +sa(dp679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p680 +tp681 +Rp682 +sa(dp683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p684 +tp685 +Rp686 +sa(dp687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p688 +tp689 +Rp690 +sa(dp691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p692 +tp693 +Rp694 +sa(dp695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p696 +tp697 +Rp698 +sa(dp699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p700 +tp701 +Rp702 +sa(dp703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p704 +tp705 +Rp706 +sa(dp707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p708 +tp709 +Rp710 +sa(dp711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p712 +tp713 +Rp714 +sa(dp715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p716 +tp717 +Rp718 +sa(dp719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p720 +tp721 +Rp722 +sa(dp723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p724 +tp725 +Rp726 +sa(dp727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p728 +tp729 +Rp730 +sa(dp731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p732 +tp733 +Rp734 +sa(dp735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p736 +tp737 +Rp738 +sa(dp739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p740 +tp741 +Rp742 +sa(dp743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p744 +tp745 +Rp746 +sa(dp747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p748 +tp749 +Rp750 +sa(dp751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p752 +tp753 +Rp754 +sa(dp755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p756 +tp757 +Rp758 +sa(dp759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p760 +tp761 +Rp762 +sa(dp763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p764 +tp765 +Rp766 +sa(dp767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p768 +tp769 +Rp770 +sa(dp771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p772 +tp773 +Rp774 +sa(dp775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p776 +tp777 +Rp778 +sa(dp779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p780 +tp781 +Rp782 +sa(dp783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p784 +tp785 +Rp786 +sa(dp787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p788 +tp789 +Rp790 +sa(dp791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p792 +tp793 +Rp794 +sa(dp795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p796 +tp797 +Rp798 +sa(dp799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p800 +tp801 +Rp802 +sa(dp803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p804 +tp805 +Rp806 +sa(dp807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p808 +tp809 +Rp810 +sa(dp811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p812 +tp813 +Rp814 +sa(dp815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p816 +tp817 +Rp818 +sa(dp819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p820 +tp821 +Rp822 +sa(dp823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p824 +tp825 +Rp826 +sa(dp827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p828 +tp829 +Rp830 +sa(dp831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p832 +tp833 +Rp834 +sa(dp835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p836 +tp837 +Rp838 +sa(dp839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p840 +tp841 +Rp842 +sa(dp843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p844 +tp845 +Rp846 +sa(dp847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p848 +tp849 +Rp850 +sa(dp851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p852 +tp853 +Rp854 +sa(dp855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p856 +tp857 +Rp858 +sa(dp859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p860 +tp861 +Rp862 +sa(dp863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p864 +tp865 +Rp866 +sa(dp867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p868 +tp869 +Rp870 +sa(dp871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p872 +tp873 +Rp874 +sa(dp875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p876 +tp877 +Rp878 +sa(dp879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p880 +tp881 +Rp882 +sa(dp883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p884 +tp885 +Rp886 +sa(dp887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p888 +tp889 +Rp890 +sa(dp891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p892 +tp893 +Rp894 +sa(dp895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p896 +tp897 +Rp898 +sa(dp899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p900 +tp901 +Rp902 +sa(dp903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p904 +tp905 +Rp906 +sa(dp907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p908 +tp909 +Rp910 +sa(dp911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p912 +tp913 +Rp914 +sa(dp915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p916 +tp917 +Rp918 +sa(dp919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p920 +tp921 +Rp922 +sa(dp923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p924 +tp925 +Rp926 +sa(dp927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p928 +tp929 +Rp930 +sa(dp931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p932 +tp933 +Rp934 +sa(dp935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p936 +tp937 +Rp938 +sa(dp939 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p940 +tp941 +Rp942 +sa(dp943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p944 +tp945 +Rp946 +sa(dp947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p948 +tp949 +Rp950 +sa(dp951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p952 +tp953 +Rp954 +sa(dp955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p956 +tp957 +Rp958 +sa(dp959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p960 +tp961 +Rp962 +sa(dp963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p964 +tp965 +Rp966 +sa(dp967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p968 +tp969 +Rp970 +sa(dp971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p972 +tp973 +Rp974 +sa(dp975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p976 +tp977 +Rp978 +sa(dp979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p980 +tp981 +Rp982 +sa(dp983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p984 +tp985 +Rp986 +sa(dp987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p988 +tp989 +Rp990 +sa(dp991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p992 +tp993 +Rp994 +sa(dp995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p996 +tp997 +Rp998 +sa(dp999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1000 +tp1001 +Rp1002 +sa(dp1003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1004 +tp1005 +Rp1006 +sa(dp1007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1008 +tp1009 +Rp1010 +sa(dp1011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1012 +tp1013 +Rp1014 +sa(dp1015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1016 +tp1017 +Rp1018 +sa(dp1019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1020 +tp1021 +Rp1022 +sa(dp1023 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1024 +tp1025 +Rp1026 +sa(dp1027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1028 +tp1029 +Rp1030 +sa(dp1031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1032 +tp1033 +Rp1034 +sa(dp1035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1036 +tp1037 +Rp1038 +sa(dp1039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1040 +tp1041 +Rp1042 +sa(dp1043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1044 +tp1045 +Rp1046 +sa(dp1047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1048 +tp1049 +Rp1050 +sa(dp1051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1052 +tp1053 +Rp1054 +sa(dp1055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1056 +tp1057 +Rp1058 +sa(dp1059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1060 +tp1061 +Rp1062 +sa(dp1063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1064 +tp1065 +Rp1066 +sa(dp1067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1068 +tp1069 +Rp1070 +sa(dp1071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1072 +tp1073 +Rp1074 +sa(dp1075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1076 +tp1077 +Rp1078 +sa(dp1079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1080 +tp1081 +Rp1082 +sa(dp1083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1084 +tp1085 +Rp1086 +sa(dp1087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1088 +tp1089 +Rp1090 +sa(dp1091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1092 +tp1093 +Rp1094 +sa(dp1095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1096 +tp1097 +Rp1098 +sa(dp1099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1100 +tp1101 +Rp1102 +sa(dp1103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1104 +tp1105 +Rp1106 +sa(dp1107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1108 +tp1109 +Rp1110 +sa(dp1111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1112 +tp1113 +Rp1114 +sa(dp1115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1116 +tp1117 +Rp1118 +sa(dp1119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1120 +tp1121 +Rp1122 +sa(dp1123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1124 +tp1125 +Rp1126 +sa(dp1127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1128 +tp1129 +Rp1130 +sa(dp1131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1132 +tp1133 +Rp1134 +sa(dp1135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1136 +tp1137 +Rp1138 +sa(dp1139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1140 +tp1141 +Rp1142 +sa(dp1143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1144 +tp1145 +Rp1146 +sa(dp1147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1148 +tp1149 +Rp1150 +sa(dp1151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1152 +tp1153 +Rp1154 +sa(dp1155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1156 +tp1157 +Rp1158 +sa(dp1159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1160 +tp1161 +Rp1162 +sa(dp1163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1164 +tp1165 +Rp1166 +sa(dp1167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1168 +tp1169 +Rp1170 +sa(dp1171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1172 +tp1173 +Rp1174 +sa(dp1175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1176 +tp1177 +Rp1178 +sa(dp1179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1180 +tp1181 +Rp1182 +sa(dp1183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1184 +tp1185 +Rp1186 +sa(dp1187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1188 +tp1189 +Rp1190 +sa(dp1191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1192 +tp1193 +Rp1194 +sa(dp1195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1196 +tp1197 +Rp1198 +sa(dp1199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1200 +tp1201 +Rp1202 +sa(dp1203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1204 +tp1205 +Rp1206 +sa(dp1207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1208 +tp1209 +Rp1210 +sa(dp1211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1212 +tp1213 +Rp1214 +sa(dp1215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1216 +tp1217 +Rp1218 +sa(dp1219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1220 +tp1221 +Rp1222 +sa(dp1223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1224 +tp1225 +Rp1226 +sa(dp1227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1228 +tp1229 +Rp1230 +sa(dp1231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1232 +tp1233 +Rp1234 +sa(dp1235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1236 +tp1237 +Rp1238 +sa(dp1239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1240 +tp1241 +Rp1242 +sa(dp1243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1244 +tp1245 +Rp1246 +sa(dp1247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1248 +tp1249 +Rp1250 +sa(dp1251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1252 +tp1253 +Rp1254 +sa(dp1255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1256 +tp1257 +Rp1258 +sa(dp1259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1260 +tp1261 +Rp1262 +sa(dp1263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1264 +tp1265 +Rp1266 +sa(dp1267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1268 +tp1269 +Rp1270 +sa(dp1271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1272 +tp1273 +Rp1274 +sa(dp1275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1276 +tp1277 +Rp1278 +sa(dp1279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1280 +tp1281 +Rp1282 +sa(dp1283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1284 +tp1285 +Rp1286 +sa(dp1287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1288 +tp1289 +Rp1290 +sa(dp1291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1292 +tp1293 +Rp1294 +sa(dp1295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1296 +tp1297 +Rp1298 +sa(dp1299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1300 +tp1301 +Rp1302 +sa(dp1303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1304 +tp1305 +Rp1306 +sa(dp1307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1308 +tp1309 +Rp1310 +sa(dp1311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1312 +tp1313 +Rp1314 +sa(dp1315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1316 +tp1317 +Rp1318 +sa(dp1319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1320 +tp1321 +Rp1322 +sa(dp1323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1324 +tp1325 +Rp1326 +sa(dp1327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1328 +tp1329 +Rp1330 +sa(dp1331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1332 +tp1333 +Rp1334 +sa(dp1335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1336 +tp1337 +Rp1338 +sa(dp1339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1340 +tp1341 +Rp1342 +sa(dp1343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1344 +tp1345 +Rp1346 +sa(dp1347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1348 +tp1349 +Rp1350 +sa(dp1351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1352 +tp1353 +Rp1354 +sa(dp1355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1356 +tp1357 +Rp1358 +sa(dp1359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1360 +tp1361 +Rp1362 +sa(dp1363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1364 +tp1365 +Rp1366 +sa(dp1367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1368 +tp1369 +Rp1370 +sa(dp1371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1372 +tp1373 +Rp1374 +sa(dp1375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1376 +tp1377 +Rp1378 +sa(dp1379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1380 +tp1381 +Rp1382 +sa(dp1383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1384 +tp1385 +Rp1386 +sa(dp1387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1388 +tp1389 +Rp1390 +sa(dp1391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1392 +tp1393 +Rp1394 +sa(dp1395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1396 +tp1397 +Rp1398 +sa(dp1399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1400 +tp1401 +Rp1402 +sa(dp1403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1404 +tp1405 +Rp1406 +sa(dp1407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1408 +tp1409 +Rp1410 +sa(dp1411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1412 +tp1413 +Rp1414 +sa(dp1415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1416 +tp1417 +Rp1418 +sa(dp1419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1420 +tp1421 +Rp1422 +sa(dp1423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1424 +tp1425 +Rp1426 +sa(dp1427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1428 +tp1429 +Rp1430 +sa(dp1431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1432 +tp1433 +Rp1434 +sa(dp1435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1436 +tp1437 +Rp1438 +sa(dp1439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1440 +tp1441 +Rp1442 +sa(dp1443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1444 +tp1445 +Rp1446 +sa(dp1447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1448 +tp1449 +Rp1450 +sa(dp1451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1452 +tp1453 +Rp1454 +sa(dp1455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1456 +tp1457 +Rp1458 +sa(dp1459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1460 +tp1461 +Rp1462 +sa(dp1463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1464 +tp1465 +Rp1466 +sa(dp1467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1468 +tp1469 +Rp1470 +sa(dp1471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1472 +tp1473 +Rp1474 +sa(dp1475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1476 +tp1477 +Rp1478 +sa(dp1479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1480 +tp1481 +Rp1482 +sa(dp1483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1484 +tp1485 +Rp1486 +sa(dp1487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1488 +tp1489 +Rp1490 +sa(dp1491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1492 +tp1493 +Rp1494 +sa(dp1495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1496 +tp1497 +Rp1498 +sa(dp1499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1500 +tp1501 +Rp1502 +sa(dp1503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1504 +tp1505 +Rp1506 +sa(dp1507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1508 +tp1509 +Rp1510 +sa(dp1511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1512 +tp1513 +Rp1514 +sa(dp1515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1516 +tp1517 +Rp1518 +sa(dp1519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1520 +tp1521 +Rp1522 +sa(dp1523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1524 +tp1525 +Rp1526 +sa(dp1527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1528 +tp1529 +Rp1530 +sa(dp1531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1532 +tp1533 +Rp1534 +sa(dp1535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1536 +tp1537 +Rp1538 +sa(dp1539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1540 +tp1541 +Rp1542 +sa(dp1543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1544 +tp1545 +Rp1546 +sa(dp1547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1548 +tp1549 +Rp1550 +sa(dp1551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1552 +tp1553 +Rp1554 +sa(dp1555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1556 +tp1557 +Rp1558 +sa(dp1559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1560 +tp1561 +Rp1562 +sa(dp1563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1564 +tp1565 +Rp1566 +sa(dp1567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1568 +tp1569 +Rp1570 +sa(dp1571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1572 +tp1573 +Rp1574 +sa(dp1575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1576 +tp1577 +Rp1578 +sa(dp1579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1580 +tp1581 +Rp1582 +sa(dp1583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1584 +tp1585 +Rp1586 +sa(dp1587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1588 +tp1589 +Rp1590 +sa(dp1591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1592 +tp1593 +Rp1594 +sa(dp1595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1596 +tp1597 +Rp1598 +sa(dp1599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1600 +tp1601 +Rp1602 +sa(dp1603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1604 +tp1605 +Rp1606 +sa(dp1607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1608 +tp1609 +Rp1610 +sa(dp1611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1612 +tp1613 +Rp1614 +sa(dp1615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1616 +tp1617 +Rp1618 +sa(dp1619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1620 +tp1621 +Rp1622 +sa(dp1623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1624 +tp1625 +Rp1626 +sa(dp1627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1628 +tp1629 +Rp1630 +sa(dp1631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1632 +tp1633 +Rp1634 +sa(dp1635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1636 +tp1637 +Rp1638 +sa(dp1639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1640 +tp1641 +Rp1642 +sa(dp1643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1644 +tp1645 +Rp1646 +sa(dp1647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1648 +tp1649 +Rp1650 +sa(dp1651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1652 +tp1653 +Rp1654 +sa(dp1655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1656 +tp1657 +Rp1658 +sa(dp1659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1660 +tp1661 +Rp1662 +sa(dp1663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1664 +tp1665 +Rp1666 +sa(dp1667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1668 +tp1669 +Rp1670 +sa(dp1671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1672 +tp1673 +Rp1674 +sa(dp1675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1676 +tp1677 +Rp1678 +sa(dp1679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1680 +tp1681 +Rp1682 +sa(dp1683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1684 +tp1685 +Rp1686 +sa(dp1687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1688 +tp1689 +Rp1690 +sa(dp1691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1692 +tp1693 +Rp1694 +sa(dp1695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1696 +tp1697 +Rp1698 +sa(dp1699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1700 +tp1701 +Rp1702 +sa(dp1703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1704 +tp1705 +Rp1706 +sa(dp1707 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1708 +tp1709 +Rp1710 +sa(dp1711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1712 +tp1713 +Rp1714 +sa(dp1715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1716 +tp1717 +Rp1718 +sa(dp1719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1720 +tp1721 +Rp1722 +sa(dp1723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1724 +tp1725 +Rp1726 +sa(dp1727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1728 +tp1729 +Rp1730 +sa(dp1731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1732 +tp1733 +Rp1734 +sa(dp1735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1736 +tp1737 +Rp1738 +sa(dp1739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1740 +tp1741 +Rp1742 +sa(dp1743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1744 +tp1745 +Rp1746 +sa(dp1747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1748 +tp1749 +Rp1750 +sa(dp1751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1752 +tp1753 +Rp1754 +sa(dp1755 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1756 +tp1757 +Rp1758 +sa(dp1759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1760 +tp1761 +Rp1762 +sa(dp1763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1764 +tp1765 +Rp1766 +sa(dp1767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1768 +tp1769 +Rp1770 +sa(dp1771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1772 +tp1773 +Rp1774 +sa(dp1775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1776 +tp1777 +Rp1778 +sa(dp1779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1780 +tp1781 +Rp1782 +sa(dp1783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1784 +tp1785 +Rp1786 +sa(dp1787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1788 +tp1789 +Rp1790 +sa(dp1791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1792 +tp1793 +Rp1794 +sa(dp1795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1796 +tp1797 +Rp1798 +sa(dp1799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1800 +tp1801 +Rp1802 +sa(dp1803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1804 +tp1805 +Rp1806 +sa(dp1807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1808 +tp1809 +Rp1810 +sa(dp1811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1812 +tp1813 +Rp1814 +sa(dp1815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1816 +tp1817 +Rp1818 +sa(dp1819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1820 +tp1821 +Rp1822 +sa(dp1823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1824 +tp1825 +Rp1826 +sa(dp1827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1828 +tp1829 +Rp1830 +sa(dp1831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1832 +tp1833 +Rp1834 +sa(dp1835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1836 +tp1837 +Rp1838 +sa(dp1839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1840 +tp1841 +Rp1842 +sa(dp1843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1844 +tp1845 +Rp1846 +sa(dp1847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1848 +tp1849 +Rp1850 +sa(dp1851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1852 +tp1853 +Rp1854 +sa(dp1855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1856 +tp1857 +Rp1858 +sa(dp1859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1860 +tp1861 +Rp1862 +sa(dp1863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1864 +tp1865 +Rp1866 +sa(dp1867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1868 +tp1869 +Rp1870 +sa(dp1871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1872 +tp1873 +Rp1874 +sa(dp1875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1876 +tp1877 +Rp1878 +sa(dp1879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1880 +tp1881 +Rp1882 +sa(dp1883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1884 +tp1885 +Rp1886 +sa(dp1887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1888 +tp1889 +Rp1890 +sa(dp1891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1892 +tp1893 +Rp1894 +sa(dp1895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1896 +tp1897 +Rp1898 +sa(dp1899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1900 +tp1901 +Rp1902 +sa(dp1903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1904 +tp1905 +Rp1906 +sa(dp1907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1908 +tp1909 +Rp1910 +sa(dp1911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1912 +tp1913 +Rp1914 +sa(dp1915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1916 +tp1917 +Rp1918 +sa(dp1919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1920 +tp1921 +Rp1922 +sa(dp1923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1924 +tp1925 +Rp1926 +sa(dp1927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1928 +tp1929 +Rp1930 +sa(dp1931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1932 +tp1933 +Rp1934 +sa(dp1935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1936 +tp1937 +Rp1938 +sa(dp1939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1940 +tp1941 +Rp1942 +sa(dp1943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1944 +tp1945 +Rp1946 +sa(dp1947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1948 +tp1949 +Rp1950 +sa(dp1951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1952 +tp1953 +Rp1954 +sa(dp1955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1956 +tp1957 +Rp1958 +sa(dp1959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1960 +tp1961 +Rp1962 +sa(dp1963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1964 +tp1965 +Rp1966 +sa(dp1967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1968 +tp1969 +Rp1970 +sa(dp1971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1972 +tp1973 +Rp1974 +sa(dp1975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1976 +tp1977 +Rp1978 +sa(dp1979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1980 +tp1981 +Rp1982 +sa(dp1983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1984 +tp1985 +Rp1986 +sa(dp1987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1988 +tp1989 +Rp1990 +sa(dp1991 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p1992 +tp1993 +Rp1994 +sa(dp1995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p1996 +tp1997 +Rp1998 +sa(dp1999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2000 +tp2001 +Rp2002 +sa(dp2003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2004 +tp2005 +Rp2006 +sa(dp2007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2008 +tp2009 +Rp2010 +sa(dp2011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2012 +tp2013 +Rp2014 +sa(dp2015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2016 +tp2017 +Rp2018 +sa(dp2019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2020 +tp2021 +Rp2022 +sa(dp2023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2024 +tp2025 +Rp2026 +sa(dp2027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2028 +tp2029 +Rp2030 +sa(dp2031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2032 +tp2033 +Rp2034 +sa(dp2035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2036 +tp2037 +Rp2038 +sa(dp2039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2040 +tp2041 +Rp2042 +sa(dp2043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2044 +tp2045 +Rp2046 +sa(dp2047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2048 +tp2049 +Rp2050 +sa(dp2051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2052 +tp2053 +Rp2054 +sa(dp2055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2056 +tp2057 +Rp2058 +sa(dp2059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2060 +tp2061 +Rp2062 +sa(dp2063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2064 +tp2065 +Rp2066 +sa(dp2067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2068 +tp2069 +Rp2070 +sa(dp2071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2072 +tp2073 +Rp2074 +sa(dp2075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2076 +tp2077 +Rp2078 +sa(dp2079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2080 +tp2081 +Rp2082 +sa(dp2083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2084 +tp2085 +Rp2086 +sa(dp2087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2088 +tp2089 +Rp2090 +sa(dp2091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2092 +tp2093 +Rp2094 +sa(dp2095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2096 +tp2097 +Rp2098 +sa(dp2099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2100 +tp2101 +Rp2102 +sa(dp2103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2104 +tp2105 +Rp2106 +sa(dp2107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2108 +tp2109 +Rp2110 +sa(dp2111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2112 +tp2113 +Rp2114 +sa(dp2115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2116 +tp2117 +Rp2118 +sa(dp2119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2120 +tp2121 +Rp2122 +sa(dp2123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2124 +tp2125 +Rp2126 +sa(dp2127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2128 +tp2129 +Rp2130 +sa(dp2131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2132 +tp2133 +Rp2134 +sa(dp2135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2136 +tp2137 +Rp2138 +sa(dp2139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2140 +tp2141 +Rp2142 +sa(dp2143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2144 +tp2145 +Rp2146 +sa(dp2147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2148 +tp2149 +Rp2150 +sa(dp2151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2152 +tp2153 +Rp2154 +sa(dp2155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2156 +tp2157 +Rp2158 +sa(dp2159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2160 +tp2161 +Rp2162 +sa(dp2163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2164 +tp2165 +Rp2166 +sa(dp2167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2168 +tp2169 +Rp2170 +sa(dp2171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2172 +tp2173 +Rp2174 +sa(dp2175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2176 +tp2177 +Rp2178 +sa(dp2179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2180 +tp2181 +Rp2182 +sa(dp2183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2184 +tp2185 +Rp2186 +sa(dp2187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2188 +tp2189 +Rp2190 +sa(dp2191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2192 +tp2193 +Rp2194 +sa(dp2195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2196 +tp2197 +Rp2198 +sa(dp2199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2200 +tp2201 +Rp2202 +sa(dp2203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2204 +tp2205 +Rp2206 +sa(dp2207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2208 +tp2209 +Rp2210 +sa(dp2211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2212 +tp2213 +Rp2214 +sa(dp2215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2216 +tp2217 +Rp2218 +sa(dp2219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2220 +tp2221 +Rp2222 +sa(dp2223 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2224 +tp2225 +Rp2226 +sa(dp2227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2228 +tp2229 +Rp2230 +sa(dp2231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2232 +tp2233 +Rp2234 +sa(dp2235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2236 +tp2237 +Rp2238 +sa(dp2239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2240 +tp2241 +Rp2242 +sa(dp2243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2244 +tp2245 +Rp2246 +sa(dp2247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2248 +tp2249 +Rp2250 +sa(dp2251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2252 +tp2253 +Rp2254 +sa(dp2255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2256 +tp2257 +Rp2258 +sa(dp2259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2260 +tp2261 +Rp2262 +sa(dp2263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2264 +tp2265 +Rp2266 +sa(dp2267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2268 +tp2269 +Rp2270 +sa(dp2271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2272 +tp2273 +Rp2274 +sa(dp2275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2276 +tp2277 +Rp2278 +sa(dp2279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2280 +tp2281 +Rp2282 +sa(dp2283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2284 +tp2285 +Rp2286 +sa(dp2287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2288 +tp2289 +Rp2290 +sa(dp2291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2292 +tp2293 +Rp2294 +sa(dp2295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2296 +tp2297 +Rp2298 +sa(dp2299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2300 +tp2301 +Rp2302 +sa(dp2303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2304 +tp2305 +Rp2306 +sa(dp2307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2308 +tp2309 +Rp2310 +sa(dp2311 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2312 +tp2313 +Rp2314 +sa(dp2315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2316 +tp2317 +Rp2318 +sa(dp2319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2320 +tp2321 +Rp2322 +sa(dp2323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2324 +tp2325 +Rp2326 +sa(dp2327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2328 +tp2329 +Rp2330 +sa(dp2331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2332 +tp2333 +Rp2334 +sa(dp2335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2336 +tp2337 +Rp2338 +sa(dp2339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2340 +tp2341 +Rp2342 +sa(dp2343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2344 +tp2345 +Rp2346 +sa(dp2347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2348 +tp2349 +Rp2350 +sa(dp2351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2352 +tp2353 +Rp2354 +sa(dp2355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2356 +tp2357 +Rp2358 +sa(dp2359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2360 +tp2361 +Rp2362 +sa(dp2363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2364 +tp2365 +Rp2366 +sa(dp2367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2368 +tp2369 +Rp2370 +sa(dp2371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2372 +tp2373 +Rp2374 +sa(dp2375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2376 +tp2377 +Rp2378 +sa(dp2379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2380 +tp2381 +Rp2382 +sa(dp2383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2384 +tp2385 +Rp2386 +sa(dp2387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2388 +tp2389 +Rp2390 +sa(dp2391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2392 +tp2393 +Rp2394 +sa(dp2395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2396 +tp2397 +Rp2398 +sa(dp2399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2400 +tp2401 +Rp2402 +sa(dp2403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2404 +tp2405 +Rp2406 +sa(dp2407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2408 +tp2409 +Rp2410 +sa(dp2411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2412 +tp2413 +Rp2414 +sa(dp2415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2416 +tp2417 +Rp2418 +sa(dp2419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2420 +tp2421 +Rp2422 +sa(dp2423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2424 +tp2425 +Rp2426 +sa(dp2427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2428 +tp2429 +Rp2430 +sa(dp2431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2432 +tp2433 +Rp2434 +sa(dp2435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2436 +tp2437 +Rp2438 +sa(dp2439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2440 +tp2441 +Rp2442 +sa(dp2443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2444 +tp2445 +Rp2446 +sa(dp2447 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2448 +tp2449 +Rp2450 +sa(dp2451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2452 +tp2453 +Rp2454 +sa(dp2455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2456 +tp2457 +Rp2458 +sa(dp2459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2460 +tp2461 +Rp2462 +sa(dp2463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2464 +tp2465 +Rp2466 +sa(dp2467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2468 +tp2469 +Rp2470 +sa(dp2471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2472 +tp2473 +Rp2474 +sa(dp2475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2476 +tp2477 +Rp2478 +sa(dp2479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2480 +tp2481 +Rp2482 +sa(dp2483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2484 +tp2485 +Rp2486 +sa(dp2487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2488 +tp2489 +Rp2490 +sa(dp2491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2492 +tp2493 +Rp2494 +sa(dp2495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2496 +tp2497 +Rp2498 +sa(dp2499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2500 +tp2501 +Rp2502 +sa(dp2503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2504 +tp2505 +Rp2506 +sa(dp2507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2508 +tp2509 +Rp2510 +sa(dp2511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2512 +tp2513 +Rp2514 +sa(dp2515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2516 +tp2517 +Rp2518 +sa(dp2519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2520 +tp2521 +Rp2522 +sa(dp2523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2524 +tp2525 +Rp2526 +sa(dp2527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2528 +tp2529 +Rp2530 +sa(dp2531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2532 +tp2533 +Rp2534 +sa(dp2535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2536 +tp2537 +Rp2538 +sa(dp2539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2540 +tp2541 +Rp2542 +sa(dp2543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2544 +tp2545 +Rp2546 +sa(dp2547 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2548 +tp2549 +Rp2550 +sa(dp2551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2552 +tp2553 +Rp2554 +sa(dp2555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2556 +tp2557 +Rp2558 +sa(dp2559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2560 +tp2561 +Rp2562 +sa(dp2563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2564 +tp2565 +Rp2566 +sa(dp2567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2568 +tp2569 +Rp2570 +sa(dp2571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2572 +tp2573 +Rp2574 +sa(dp2575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2576 +tp2577 +Rp2578 +sa(dp2579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2580 +tp2581 +Rp2582 +sa(dp2583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2584 +tp2585 +Rp2586 +sa(dp2587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2588 +tp2589 +Rp2590 +sa(dp2591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2592 +tp2593 +Rp2594 +sa(dp2595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2596 +tp2597 +Rp2598 +sa(dp2599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2600 +tp2601 +Rp2602 +sa(dp2603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2604 +tp2605 +Rp2606 +sa(dp2607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2608 +tp2609 +Rp2610 +sa(dp2611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2612 +tp2613 +Rp2614 +sa(dp2615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2616 +tp2617 +Rp2618 +sa(dp2619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2620 +tp2621 +Rp2622 +sa(dp2623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2624 +tp2625 +Rp2626 +sa(dp2627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2628 +tp2629 +Rp2630 +sa(dp2631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2632 +tp2633 +Rp2634 +sa(dp2635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2636 +tp2637 +Rp2638 +sa(dp2639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2640 +tp2641 +Rp2642 +sa(dp2643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2644 +tp2645 +Rp2646 +sa(dp2647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2648 +tp2649 +Rp2650 +sa(dp2651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2652 +tp2653 +Rp2654 +sa(dp2655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2656 +tp2657 +Rp2658 +sa(dp2659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2660 +tp2661 +Rp2662 +sa(dp2663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2664 +tp2665 +Rp2666 +sa(dp2667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2668 +tp2669 +Rp2670 +sa(dp2671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2672 +tp2673 +Rp2674 +sa(dp2675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2676 +tp2677 +Rp2678 +sa(dp2679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2680 +tp2681 +Rp2682 +sa(dp2683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2684 +tp2685 +Rp2686 +sa(dp2687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2688 +tp2689 +Rp2690 +sa(dp2691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2692 +tp2693 +Rp2694 +sa(dp2695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2696 +tp2697 +Rp2698 +sa(dp2699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2700 +tp2701 +Rp2702 +sa(dp2703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2704 +tp2705 +Rp2706 +sa(dp2707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2708 +tp2709 +Rp2710 +sa(dp2711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2712 +tp2713 +Rp2714 +sa(dp2715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2716 +tp2717 +Rp2718 +sa(dp2719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2720 +tp2721 +Rp2722 +sa(dp2723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2724 +tp2725 +Rp2726 +sa(dp2727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2728 +tp2729 +Rp2730 +sa(dp2731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2732 +tp2733 +Rp2734 +sa(dp2735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2736 +tp2737 +Rp2738 +sa(dp2739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2740 +tp2741 +Rp2742 +sa(dp2743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2744 +tp2745 +Rp2746 +sa(dp2747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2748 +tp2749 +Rp2750 +sa(dp2751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2752 +tp2753 +Rp2754 +sa(dp2755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2756 +tp2757 +Rp2758 +sa(dp2759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2760 +tp2761 +Rp2762 +sa(dp2763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2764 +tp2765 +Rp2766 +sa(dp2767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2768 +tp2769 +Rp2770 +sa(dp2771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2772 +tp2773 +Rp2774 +sa(dp2775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2776 +tp2777 +Rp2778 +sa(dp2779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2780 +tp2781 +Rp2782 +sa(dp2783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2784 +tp2785 +Rp2786 +sa(dp2787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2788 +tp2789 +Rp2790 +sa(dp2791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2792 +tp2793 +Rp2794 +sa(dp2795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2796 +tp2797 +Rp2798 +sa(dp2799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2800 +tp2801 +Rp2802 +sa(dp2803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2804 +tp2805 +Rp2806 +sa(dp2807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2808 +tp2809 +Rp2810 +sa(dp2811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2812 +tp2813 +Rp2814 +sa(dp2815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2816 +tp2817 +Rp2818 +sa(dp2819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2820 +tp2821 +Rp2822 +sa(dp2823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2824 +tp2825 +Rp2826 +sa(dp2827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2828 +tp2829 +Rp2830 +sa(dp2831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2832 +tp2833 +Rp2834 +sa(dp2835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2836 +tp2837 +Rp2838 +sa(dp2839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2840 +tp2841 +Rp2842 +sa(dp2843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2844 +tp2845 +Rp2846 +sa(dp2847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2848 +tp2849 +Rp2850 +sa(dp2851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2852 +tp2853 +Rp2854 +sa(dp2855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2856 +tp2857 +Rp2858 +sa(dp2859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2860 +tp2861 +Rp2862 +sa(dp2863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2864 +tp2865 +Rp2866 +sa(dp2867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2868 +tp2869 +Rp2870 +sa(dp2871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2872 +tp2873 +Rp2874 +sa(dp2875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2876 +tp2877 +Rp2878 +sa(dp2879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2880 +tp2881 +Rp2882 +sa(dp2883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2884 +tp2885 +Rp2886 +sa(dp2887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2888 +tp2889 +Rp2890 +sa(dp2891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2892 +tp2893 +Rp2894 +sa(dp2895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2896 +tp2897 +Rp2898 +sa(dp2899 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2900 +tp2901 +Rp2902 +sa(dp2903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2904 +tp2905 +Rp2906 +sa(dp2907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2908 +tp2909 +Rp2910 +sa(dp2911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2912 +tp2913 +Rp2914 +sa(dp2915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2916 +tp2917 +Rp2918 +sa(dp2919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2920 +tp2921 +Rp2922 +sa(dp2923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2924 +tp2925 +Rp2926 +sa(dp2927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2928 +tp2929 +Rp2930 +sa(dp2931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2932 +tp2933 +Rp2934 +sa(dp2935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2936 +tp2937 +Rp2938 +sa(dp2939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2940 +tp2941 +Rp2942 +sa(dp2943 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2944 +tp2945 +Rp2946 +sa(dp2947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2948 +tp2949 +Rp2950 +sa(dp2951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2952 +tp2953 +Rp2954 +sa(dp2955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2956 +tp2957 +Rp2958 +sa(dp2959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2960 +tp2961 +Rp2962 +sa(dp2963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2964 +tp2965 +Rp2966 +sa(dp2967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2968 +tp2969 +Rp2970 +sa(dp2971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2972 +tp2973 +Rp2974 +sa(dp2975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2976 +tp2977 +Rp2978 +sa(dp2979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2980 +tp2981 +Rp2982 +sa(dp2983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2984 +tp2985 +Rp2986 +sa(dp2987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p2988 +tp2989 +Rp2990 +sa(dp2991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2992 +tp2993 +Rp2994 +sa(dp2995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p2996 +tp2997 +Rp2998 +sa(dp2999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3000 +tp3001 +Rp3002 +sa(dp3003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3004 +tp3005 +Rp3006 +sa(dp3007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3008 +tp3009 +Rp3010 +sa(dp3011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3012 +tp3013 +Rp3014 +sa(dp3015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3016 +tp3017 +Rp3018 +sa(dp3019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3020 +tp3021 +Rp3022 +sa(dp3023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3024 +tp3025 +Rp3026 +sa(dp3027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3028 +tp3029 +Rp3030 +sa(dp3031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3032 +tp3033 +Rp3034 +sa(dp3035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3036 +tp3037 +Rp3038 +sa(dp3039 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3040 +tp3041 +Rp3042 +sa(dp3043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3044 +tp3045 +Rp3046 +sa(dp3047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3048 +tp3049 +Rp3050 +sa(dp3051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3052 +tp3053 +Rp3054 +sa(dp3055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3056 +tp3057 +Rp3058 +sa(dp3059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3060 +tp3061 +Rp3062 +sa(dp3063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3064 +tp3065 +Rp3066 +sa(dp3067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3068 +tp3069 +Rp3070 +sa(dp3071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3072 +tp3073 +Rp3074 +sa(dp3075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3076 +tp3077 +Rp3078 +sa(dp3079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3080 +tp3081 +Rp3082 +sa(dp3083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3084 +tp3085 +Rp3086 +sa(dp3087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3088 +tp3089 +Rp3090 +sa(dp3091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3092 +tp3093 +Rp3094 +sa(dp3095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3096 +tp3097 +Rp3098 +sa(dp3099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3100 +tp3101 +Rp3102 +sa(dp3103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3104 +tp3105 +Rp3106 +sa(dp3107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3108 +tp3109 +Rp3110 +sa(dp3111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3112 +tp3113 +Rp3114 +sa(dp3115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3116 +tp3117 +Rp3118 +sa(dp3119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3120 +tp3121 +Rp3122 +sa(dp3123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3124 +tp3125 +Rp3126 +sa(dp3127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3128 +tp3129 +Rp3130 +sa(dp3131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3132 +tp3133 +Rp3134 +sa(dp3135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3136 +tp3137 +Rp3138 +sa(dp3139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3140 +tp3141 +Rp3142 +sa(dp3143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3144 +tp3145 +Rp3146 +sa(dp3147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3148 +tp3149 +Rp3150 +sa(dp3151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3152 +tp3153 +Rp3154 +sa(dp3155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3156 +tp3157 +Rp3158 +sa(dp3159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3160 +tp3161 +Rp3162 +sa(dp3163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3164 +tp3165 +Rp3166 +sa(dp3167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3168 +tp3169 +Rp3170 +sa(dp3171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3172 +tp3173 +Rp3174 +sa(dp3175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3176 +tp3177 +Rp3178 +sa(dp3179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3180 +tp3181 +Rp3182 +sa(dp3183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3184 +tp3185 +Rp3186 +sa(dp3187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3188 +tp3189 +Rp3190 +sa(dp3191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3192 +tp3193 +Rp3194 +sa(dp3195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3196 +tp3197 +Rp3198 +sa(dp3199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3200 +tp3201 +Rp3202 +sa(dp3203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3204 +tp3205 +Rp3206 +sa(dp3207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3208 +tp3209 +Rp3210 +sa(dp3211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3212 +tp3213 +Rp3214 +sa(dp3215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3216 +tp3217 +Rp3218 +sa(dp3219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3220 +tp3221 +Rp3222 +sa(dp3223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3224 +tp3225 +Rp3226 +sa(dp3227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3228 +tp3229 +Rp3230 +sa(dp3231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3232 +tp3233 +Rp3234 +sa(dp3235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3236 +tp3237 +Rp3238 +sa(dp3239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3240 +tp3241 +Rp3242 +sa(dp3243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3244 +tp3245 +Rp3246 +sa(dp3247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3248 +tp3249 +Rp3250 +sa(dp3251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3252 +tp3253 +Rp3254 +sa(dp3255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3256 +tp3257 +Rp3258 +sa(dp3259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3260 +tp3261 +Rp3262 +sa(dp3263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3264 +tp3265 +Rp3266 +sa(dp3267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3268 +tp3269 +Rp3270 +sa(dp3271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3272 +tp3273 +Rp3274 +sa(dp3275 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3276 +tp3277 +Rp3278 +sa(dp3279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3280 +tp3281 +Rp3282 +sa(dp3283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3284 +tp3285 +Rp3286 +sa(dp3287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3288 +tp3289 +Rp3290 +sa(dp3291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3292 +tp3293 +Rp3294 +sa(dp3295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3296 +tp3297 +Rp3298 +sa(dp3299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3300 +tp3301 +Rp3302 +sa(dp3303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3304 +tp3305 +Rp3306 +sa(dp3307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3308 +tp3309 +Rp3310 +sa(dp3311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3312 +tp3313 +Rp3314 +sa(dp3315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3316 +tp3317 +Rp3318 +sa(dp3319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3320 +tp3321 +Rp3322 +sa(dp3323 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3324 +tp3325 +Rp3326 +sa(dp3327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3328 +tp3329 +Rp3330 +sa(dp3331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3332 +tp3333 +Rp3334 +sa(dp3335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3336 +tp3337 +Rp3338 +sa(dp3339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3340 +tp3341 +Rp3342 +sa(dp3343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3344 +tp3345 +Rp3346 +sa(dp3347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3348 +tp3349 +Rp3350 +sa(dp3351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3352 +tp3353 +Rp3354 +sa(dp3355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3356 +tp3357 +Rp3358 +sa(dp3359 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3360 +tp3361 +Rp3362 +sa(dp3363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3364 +tp3365 +Rp3366 +sa(dp3367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3368 +tp3369 +Rp3370 +sa(dp3371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3372 +tp3373 +Rp3374 +sa(dp3375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3376 +tp3377 +Rp3378 +sa(dp3379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3380 +tp3381 +Rp3382 +sa(dp3383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3384 +tp3385 +Rp3386 +sa(dp3387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3388 +tp3389 +Rp3390 +sa(dp3391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3392 +tp3393 +Rp3394 +sa(dp3395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3396 +tp3397 +Rp3398 +sa(dp3399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3400 +tp3401 +Rp3402 +sa(dp3403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3404 +tp3405 +Rp3406 +sa(dp3407 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3408 +tp3409 +Rp3410 +sa(dp3411 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3412 +tp3413 +Rp3414 +sa(dp3415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3416 +tp3417 +Rp3418 +sa(dp3419 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3420 +tp3421 +Rp3422 +sa(dp3423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3424 +tp3425 +Rp3426 +sa(dp3427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3428 +tp3429 +Rp3430 +sa(dp3431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3432 +tp3433 +Rp3434 +sa(dp3435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3436 +tp3437 +Rp3438 +sa(dp3439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3440 +tp3441 +Rp3442 +sa(dp3443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3444 +tp3445 +Rp3446 +sa(dp3447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3448 +tp3449 +Rp3450 +sa(dp3451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3452 +tp3453 +Rp3454 +sa(dp3455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3456 +tp3457 +Rp3458 +sa(dp3459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3460 +tp3461 +Rp3462 +sa(dp3463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3464 +tp3465 +Rp3466 +sa(dp3467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3468 +tp3469 +Rp3470 +sa(dp3471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3472 +tp3473 +Rp3474 +sa(dp3475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3476 +tp3477 +Rp3478 +sa(dp3479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3480 +tp3481 +Rp3482 +sa(dp3483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3484 +tp3485 +Rp3486 +sa(dp3487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3488 +tp3489 +Rp3490 +sa(dp3491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3492 +tp3493 +Rp3494 +sa(dp3495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3496 +tp3497 +Rp3498 +sa(dp3499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3500 +tp3501 +Rp3502 +sa(dp3503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3504 +tp3505 +Rp3506 +sa(dp3507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3508 +tp3509 +Rp3510 +sa(dp3511 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3512 +tp3513 +Rp3514 +sa(dp3515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3516 +tp3517 +Rp3518 +sa(dp3519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3520 +tp3521 +Rp3522 +sa(dp3523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3524 +tp3525 +Rp3526 +sa(dp3527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3528 +tp3529 +Rp3530 +sa(dp3531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3532 +tp3533 +Rp3534 +sa(dp3535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3536 +tp3537 +Rp3538 +sa(dp3539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3540 +tp3541 +Rp3542 +sa(dp3543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3544 +tp3545 +Rp3546 +sa(dp3547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3548 +tp3549 +Rp3550 +sa(dp3551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3552 +tp3553 +Rp3554 +sa(dp3555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3556 +tp3557 +Rp3558 +sa(dp3559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3560 +tp3561 +Rp3562 +sa(dp3563 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3564 +tp3565 +Rp3566 +sa(dp3567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3568 +tp3569 +Rp3570 +sa(dp3571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3572 +tp3573 +Rp3574 +sa(dp3575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3576 +tp3577 +Rp3578 +sa(dp3579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3580 +tp3581 +Rp3582 +sa(dp3583 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3584 +tp3585 +Rp3586 +sa(dp3587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3588 +tp3589 +Rp3590 +sa(dp3591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3592 +tp3593 +Rp3594 +sa(dp3595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3596 +tp3597 +Rp3598 +sa(dp3599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3600 +tp3601 +Rp3602 +sa(dp3603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3604 +tp3605 +Rp3606 +sa(dp3607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3608 +tp3609 +Rp3610 +sa(dp3611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3612 +tp3613 +Rp3614 +sa(dp3615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3616 +tp3617 +Rp3618 +sa(dp3619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3620 +tp3621 +Rp3622 +sa(dp3623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3624 +tp3625 +Rp3626 +sa(dp3627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3628 +tp3629 +Rp3630 +sa(dp3631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3632 +tp3633 +Rp3634 +sa(dp3635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3636 +tp3637 +Rp3638 +sa(dp3639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3640 +tp3641 +Rp3642 +sa(dp3643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3644 +tp3645 +Rp3646 +sa(dp3647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3648 +tp3649 +Rp3650 +sa(dp3651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3652 +tp3653 +Rp3654 +sa(dp3655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3656 +tp3657 +Rp3658 +sa(dp3659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3660 +tp3661 +Rp3662 +sa(dp3663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3664 +tp3665 +Rp3666 +sa(dp3667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3668 +tp3669 +Rp3670 +sa(dp3671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3672 +tp3673 +Rp3674 +sa(dp3675 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3676 +tp3677 +Rp3678 +sa(dp3679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3680 +tp3681 +Rp3682 +sa(dp3683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3684 +tp3685 +Rp3686 +sa(dp3687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3688 +tp3689 +Rp3690 +sa(dp3691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3692 +tp3693 +Rp3694 +sa(dp3695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3696 +tp3697 +Rp3698 +sa(dp3699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3700 +tp3701 +Rp3702 +sa(dp3703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3704 +tp3705 +Rp3706 +sa(dp3707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3708 +tp3709 +Rp3710 +sa(dp3711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3712 +tp3713 +Rp3714 +sa(dp3715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3716 +tp3717 +Rp3718 +sa(dp3719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3720 +tp3721 +Rp3722 +sa(dp3723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3724 +tp3725 +Rp3726 +sa(dp3727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3728 +tp3729 +Rp3730 +sa(dp3731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3732 +tp3733 +Rp3734 +sa(dp3735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3736 +tp3737 +Rp3738 +sa(dp3739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3740 +tp3741 +Rp3742 +sa(dp3743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3744 +tp3745 +Rp3746 +sa(dp3747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3748 +tp3749 +Rp3750 +sa(dp3751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3752 +tp3753 +Rp3754 +sa(dp3755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3756 +tp3757 +Rp3758 +sa(dp3759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3760 +tp3761 +Rp3762 +sa(dp3763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3764 +tp3765 +Rp3766 +sa(dp3767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3768 +tp3769 +Rp3770 +sa(dp3771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3772 +tp3773 +Rp3774 +sa(dp3775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3776 +tp3777 +Rp3778 +sa(dp3779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3780 +tp3781 +Rp3782 +sa(dp3783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3784 +tp3785 +Rp3786 +sa(dp3787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3788 +tp3789 +Rp3790 +sa(dp3791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3792 +tp3793 +Rp3794 +sa(dp3795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3796 +tp3797 +Rp3798 +sa(dp3799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3800 +tp3801 +Rp3802 +sa(dp3803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3804 +tp3805 +Rp3806 +sa(dp3807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3808 +tp3809 +Rp3810 +sa(dp3811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3812 +tp3813 +Rp3814 +sa(dp3815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3816 +tp3817 +Rp3818 +sa(dp3819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3820 +tp3821 +Rp3822 +sa(dp3823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3824 +tp3825 +Rp3826 +sa(dp3827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3828 +tp3829 +Rp3830 +sa(dp3831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3832 +tp3833 +Rp3834 +sa(dp3835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3836 +tp3837 +Rp3838 +sa(dp3839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3840 +tp3841 +Rp3842 +sa(dp3843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3844 +tp3845 +Rp3846 +sa(dp3847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3848 +tp3849 +Rp3850 +sa(dp3851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3852 +tp3853 +Rp3854 +sa(dp3855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3856 +tp3857 +Rp3858 +sa(dp3859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3860 +tp3861 +Rp3862 +sa(dp3863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3864 +tp3865 +Rp3866 +sa(dp3867 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3868 +tp3869 +Rp3870 +sa(dp3871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3872 +tp3873 +Rp3874 +sa(dp3875 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3876 +tp3877 +Rp3878 +sa(dp3879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3880 +tp3881 +Rp3882 +sa(dp3883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3884 +tp3885 +Rp3886 +sa(dp3887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3888 +tp3889 +Rp3890 +sa(dp3891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3892 +tp3893 +Rp3894 +sa(dp3895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3896 +tp3897 +Rp3898 +sa(dp3899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3900 +tp3901 +Rp3902 +sa(dp3903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3904 +tp3905 +Rp3906 +sa(dp3907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3908 +tp3909 +Rp3910 +sa(dp3911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3912 +tp3913 +Rp3914 +sa(dp3915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3916 +tp3917 +Rp3918 +sa(dp3919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3920 +tp3921 +Rp3922 +sa(dp3923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3924 +tp3925 +Rp3926 +sa(dp3927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3928 +tp3929 +Rp3930 +sa(dp3931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3932 +tp3933 +Rp3934 +sa(dp3935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3936 +tp3937 +Rp3938 +sa(dp3939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3940 +tp3941 +Rp3942 +sa(dp3943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3944 +tp3945 +Rp3946 +sa(dp3947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3948 +tp3949 +Rp3950 +sa(dp3951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3952 +tp3953 +Rp3954 +sa(dp3955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3956 +tp3957 +Rp3958 +sa(dp3959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3960 +tp3961 +Rp3962 +sa(dp3963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3964 +tp3965 +Rp3966 +sa(dp3967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p3968 +tp3969 +Rp3970 +sa(dp3971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3972 +tp3973 +Rp3974 +sa(dp3975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3976 +tp3977 +Rp3978 +sa(dp3979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3980 +tp3981 +Rp3982 +sa(dp3983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3984 +tp3985 +Rp3986 +sa(dp3987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3988 +tp3989 +Rp3990 +sa(dp3991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3992 +tp3993 +Rp3994 +sa(dp3995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p3996 +tp3997 +Rp3998 +sa(dp3999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4000 +tp4001 +Rp4002 +sa(dp4003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4004 +tp4005 +Rp4006 +sa(dp4007 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4008 +tp4009 +Rp4010 +sa(dp4011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4012 +tp4013 +Rp4014 +sa(dp4015 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4016 +tp4017 +Rp4018 +sa(dp4019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4020 +tp4021 +Rp4022 +sa(dp4023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4024 +tp4025 +Rp4026 +sa(dp4027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4028 +tp4029 +Rp4030 +sa(dp4031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4032 +tp4033 +Rp4034 +sa(dp4035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4036 +tp4037 +Rp4038 +sa(dp4039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4040 +tp4041 +Rp4042 +sa(dp4043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4044 +tp4045 +Rp4046 +sa(dp4047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4048 +tp4049 +Rp4050 +sa(dp4051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4052 +tp4053 +Rp4054 +sa(dp4055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4056 +tp4057 +Rp4058 +sa(dp4059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4060 +tp4061 +Rp4062 +sa(dp4063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4064 +tp4065 +Rp4066 +sa(dp4067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4068 +tp4069 +Rp4070 +sa(dp4071 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4072 +tp4073 +Rp4074 +sa(dp4075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4076 +tp4077 +Rp4078 +sa(dp4079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4080 +tp4081 +Rp4082 +sa(dp4083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4084 +tp4085 +Rp4086 +sa(dp4087 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4088 +tp4089 +Rp4090 +sa(dp4091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4092 +tp4093 +Rp4094 +sa(dp4095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4096 +tp4097 +Rp4098 +sa(dp4099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4100 +tp4101 +Rp4102 +sa(dp4103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4104 +tp4105 +Rp4106 +sa(dp4107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4108 +tp4109 +Rp4110 +sa(dp4111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4112 +tp4113 +Rp4114 +sa(dp4115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4116 +tp4117 +Rp4118 +sa(dp4119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4120 +tp4121 +Rp4122 +sa(dp4123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4124 +tp4125 +Rp4126 +sa(dp4127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4128 +tp4129 +Rp4130 +sa(dp4131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4132 +tp4133 +Rp4134 +sa(dp4135 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4136 +tp4137 +Rp4138 +sa(dp4139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4140 +tp4141 +Rp4142 +sa(dp4143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4144 +tp4145 +Rp4146 +sa(dp4147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4148 +tp4149 +Rp4150 +sa(dp4151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4152 +tp4153 +Rp4154 +sa(dp4155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4156 +tp4157 +Rp4158 +sa(dp4159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4160 +tp4161 +Rp4162 +sa(dp4163 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4164 +tp4165 +Rp4166 +sa(dp4167 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4168 +tp4169 +Rp4170 +sa(dp4171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4172 +tp4173 +Rp4174 +sa(dp4175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4176 +tp4177 +Rp4178 +sa(dp4179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4180 +tp4181 +Rp4182 +sa(dp4183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4184 +tp4185 +Rp4186 +sa(dp4187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4188 +tp4189 +Rp4190 +sa(dp4191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4192 +tp4193 +Rp4194 +sa(dp4195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4196 +tp4197 +Rp4198 +sa(dp4199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4200 +tp4201 +Rp4202 +sa(dp4203 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4204 +tp4205 +Rp4206 +sa(dp4207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4208 +tp4209 +Rp4210 +sa(dp4211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4212 +tp4213 +Rp4214 +sa(dp4215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4216 +tp4217 +Rp4218 +sa(dp4219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4220 +tp4221 +Rp4222 +sa(dp4223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4224 +tp4225 +Rp4226 +sa(dp4227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4228 +tp4229 +Rp4230 +sa(dp4231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4232 +tp4233 +Rp4234 +sa(dp4235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4236 +tp4237 +Rp4238 +sa(dp4239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4240 +tp4241 +Rp4242 +sa(dp4243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4244 +tp4245 +Rp4246 +sa(dp4247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4248 +tp4249 +Rp4250 +sa(dp4251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4252 +tp4253 +Rp4254 +sa(dp4255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4256 +tp4257 +Rp4258 +sa(dp4259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4260 +tp4261 +Rp4262 +sa(dp4263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4264 +tp4265 +Rp4266 +sa(dp4267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4268 +tp4269 +Rp4270 +sa(dp4271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4272 +tp4273 +Rp4274 +sa(dp4275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4276 +tp4277 +Rp4278 +sa(dp4279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4280 +tp4281 +Rp4282 +sa(dp4283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4284 +tp4285 +Rp4286 +sa(dp4287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4288 +tp4289 +Rp4290 +sa(dp4291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4292 +tp4293 +Rp4294 +sa(dp4295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4296 +tp4297 +Rp4298 +sa(dp4299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4300 +tp4301 +Rp4302 +sa(dp4303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4304 +tp4305 +Rp4306 +sa(dp4307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4308 +tp4309 +Rp4310 +sa(dp4311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4312 +tp4313 +Rp4314 +sa(dp4315 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4316 +tp4317 +Rp4318 +sa(dp4319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4320 +tp4321 +Rp4322 +sa(dp4323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4324 +tp4325 +Rp4326 +sa(dp4327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4328 +tp4329 +Rp4330 +sa(dp4331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4332 +tp4333 +Rp4334 +sa(dp4335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4336 +tp4337 +Rp4338 +sa(dp4339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4340 +tp4341 +Rp4342 +sa(dp4343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4344 +tp4345 +Rp4346 +sa(dp4347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4348 +tp4349 +Rp4350 +sa(dp4351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4352 +tp4353 +Rp4354 +sa(dp4355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4356 +tp4357 +Rp4358 +sa(dp4359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4360 +tp4361 +Rp4362 +sa(dp4363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4364 +tp4365 +Rp4366 +sa(dp4367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4368 +tp4369 +Rp4370 +sa(dp4371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4372 +tp4373 +Rp4374 +sa(dp4375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4376 +tp4377 +Rp4378 +sa(dp4379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4380 +tp4381 +Rp4382 +sa(dp4383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4384 +tp4385 +Rp4386 +sa(dp4387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4388 +tp4389 +Rp4390 +sa(dp4391 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4392 +tp4393 +Rp4394 +sa(dp4395 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4396 +tp4397 +Rp4398 +sa(dp4399 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4400 +tp4401 +Rp4402 +sa(dp4403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4404 +tp4405 +Rp4406 +sa(dp4407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4408 +tp4409 +Rp4410 +sa(dp4411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4412 +tp4413 +Rp4414 +sa(dp4415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4416 +tp4417 +Rp4418 +sa(dp4419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4420 +tp4421 +Rp4422 +sa(dp4423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4424 +tp4425 +Rp4426 +sa(dp4427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4428 +tp4429 +Rp4430 +sa(dp4431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4432 +tp4433 +Rp4434 +sa(dp4435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4436 +tp4437 +Rp4438 +sa(dp4439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4440 +tp4441 +Rp4442 +sa(dp4443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4444 +tp4445 +Rp4446 +sa(dp4447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4448 +tp4449 +Rp4450 +sa(dp4451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4452 +tp4453 +Rp4454 +sa(dp4455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4456 +tp4457 +Rp4458 +sa(dp4459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4460 +tp4461 +Rp4462 +sa(dp4463 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4464 +tp4465 +Rp4466 +sa(dp4467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4468 +tp4469 +Rp4470 +sa(dp4471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4472 +tp4473 +Rp4474 +sa(dp4475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4476 +tp4477 +Rp4478 +sa(dp4479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4480 +tp4481 +Rp4482 +sa(dp4483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4484 +tp4485 +Rp4486 +sa(dp4487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4488 +tp4489 +Rp4490 +sa(dp4491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4492 +tp4493 +Rp4494 +sa(dp4495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4496 +tp4497 +Rp4498 +sa(dp4499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4500 +tp4501 +Rp4502 +sa(dp4503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4504 +tp4505 +Rp4506 +sa(dp4507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4508 +tp4509 +Rp4510 +sa(dp4511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4512 +tp4513 +Rp4514 +sa(dp4515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4516 +tp4517 +Rp4518 +sa(dp4519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4520 +tp4521 +Rp4522 +sa(dp4523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4524 +tp4525 +Rp4526 +sa(dp4527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4528 +tp4529 +Rp4530 +sa(dp4531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4532 +tp4533 +Rp4534 +sa(dp4535 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4536 +tp4537 +Rp4538 +sa(dp4539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4540 +tp4541 +Rp4542 +sa(dp4543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4544 +tp4545 +Rp4546 +sa(dp4547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4548 +tp4549 +Rp4550 +sa(dp4551 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4552 +tp4553 +Rp4554 +sa(dp4555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4556 +tp4557 +Rp4558 +sa(dp4559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4560 +tp4561 +Rp4562 +sa(dp4563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4564 +tp4565 +Rp4566 +sa(dp4567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4568 +tp4569 +Rp4570 +sa(dp4571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4572 +tp4573 +Rp4574 +sa(dp4575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4576 +tp4577 +Rp4578 +sa(dp4579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4580 +tp4581 +Rp4582 +sa(dp4583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4584 +tp4585 +Rp4586 +sa(dp4587 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4588 +tp4589 +Rp4590 +sa(dp4591 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4592 +tp4593 +Rp4594 +sa(dp4595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4596 +tp4597 +Rp4598 +sa(dp4599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4600 +tp4601 +Rp4602 +sa(dp4603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4604 +tp4605 +Rp4606 +sa(dp4607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4608 +tp4609 +Rp4610 +sa(dp4611 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4612 +tp4613 +Rp4614 +sa(dp4615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4616 +tp4617 +Rp4618 +sa(dp4619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4620 +tp4621 +Rp4622 +sa(dp4623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4624 +tp4625 +Rp4626 +sa(dp4627 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4628 +tp4629 +Rp4630 +sa(dp4631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4632 +tp4633 +Rp4634 +sa(dp4635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4636 +tp4637 +Rp4638 +sa(dp4639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4640 +tp4641 +Rp4642 +sa(dp4643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4644 +tp4645 +Rp4646 +sa(dp4647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4648 +tp4649 +Rp4650 +sa(dp4651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4652 +tp4653 +Rp4654 +sa(dp4655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4656 +tp4657 +Rp4658 +sa(dp4659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4660 +tp4661 +Rp4662 +sa(dp4663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4664 +tp4665 +Rp4666 +sa(dp4667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4668 +tp4669 +Rp4670 +sa(dp4671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4672 +tp4673 +Rp4674 +sa(dp4675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4676 +tp4677 +Rp4678 +sa(dp4679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4680 +tp4681 +Rp4682 +sa(dp4683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4684 +tp4685 +Rp4686 +sa(dp4687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4688 +tp4689 +Rp4690 +sa(dp4691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4692 +tp4693 +Rp4694 +sa(dp4695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4696 +tp4697 +Rp4698 +sa(dp4699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4700 +tp4701 +Rp4702 +sa(dp4703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4704 +tp4705 +Rp4706 +sa(dp4707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4708 +tp4709 +Rp4710 +sa(dp4711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4712 +tp4713 +Rp4714 +sa(dp4715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4716 +tp4717 +Rp4718 +sa(dp4719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4720 +tp4721 +Rp4722 +sa(dp4723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4724 +tp4725 +Rp4726 +sa(dp4727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4728 +tp4729 +Rp4730 +sa(dp4731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4732 +tp4733 +Rp4734 +sa(dp4735 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4736 +tp4737 +Rp4738 +sa(dp4739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4740 +tp4741 +Rp4742 +sa(dp4743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4744 +tp4745 +Rp4746 +sa(dp4747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4748 +tp4749 +Rp4750 +sa(dp4751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4752 +tp4753 +Rp4754 +sa(dp4755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4756 +tp4757 +Rp4758 +sa(dp4759 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4760 +tp4761 +Rp4762 +sa(dp4763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4764 +tp4765 +Rp4766 +sa(dp4767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4768 +tp4769 +Rp4770 +sa(dp4771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4772 +tp4773 +Rp4774 +sa(dp4775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4776 +tp4777 +Rp4778 +sa(dp4779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4780 +tp4781 +Rp4782 +sa(dp4783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4784 +tp4785 +Rp4786 +sa(dp4787 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4788 +tp4789 +Rp4790 +sa(dp4791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4792 +tp4793 +Rp4794 +sa(dp4795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4796 +tp4797 +Rp4798 +sa(dp4799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4800 +tp4801 +Rp4802 +sa(dp4803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4804 +tp4805 +Rp4806 +sa(dp4807 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4808 +tp4809 +Rp4810 +sa(dp4811 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4812 +tp4813 +Rp4814 +sa(dp4815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4816 +tp4817 +Rp4818 +sa(dp4819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4820 +tp4821 +Rp4822 +sa(dp4823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4824 +tp4825 +Rp4826 +sa(dp4827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4828 +tp4829 +Rp4830 +sa(dp4831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4832 +tp4833 +Rp4834 +sa(dp4835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4836 +tp4837 +Rp4838 +sa(dp4839 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4840 +tp4841 +Rp4842 +sa(dp4843 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4844 +tp4845 +Rp4846 +sa(dp4847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4848 +tp4849 +Rp4850 +sa(dp4851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4852 +tp4853 +Rp4854 +sa(dp4855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4856 +tp4857 +Rp4858 +sa(dp4859 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4860 +tp4861 +Rp4862 +sa(dp4863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4864 +tp4865 +Rp4866 +sa(dp4867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4868 +tp4869 +Rp4870 +sa(dp4871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4872 +tp4873 +Rp4874 +sa(dp4875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4876 +tp4877 +Rp4878 +sa(dp4879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4880 +tp4881 +Rp4882 +sa(dp4883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4884 +tp4885 +Rp4886 +sa(dp4887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4888 +tp4889 +Rp4890 +sa(dp4891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4892 +tp4893 +Rp4894 +sa(dp4895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4896 +tp4897 +Rp4898 +sa(dp4899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4900 +tp4901 +Rp4902 +sa(dp4903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4904 +tp4905 +Rp4906 +sa(dp4907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4908 +tp4909 +Rp4910 +sa(dp4911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4912 +tp4913 +Rp4914 +sa(dp4915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4916 +tp4917 +Rp4918 +sa(dp4919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4920 +tp4921 +Rp4922 +sa(dp4923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4924 +tp4925 +Rp4926 +sa(dp4927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4928 +tp4929 +Rp4930 +sa(dp4931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4932 +tp4933 +Rp4934 +sa(dp4935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4936 +tp4937 +Rp4938 +sa(dp4939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4940 +tp4941 +Rp4942 +sa(dp4943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4944 +tp4945 +Rp4946 +sa(dp4947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4948 +tp4949 +Rp4950 +sa(dp4951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4952 +tp4953 +Rp4954 +sa(dp4955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4956 +tp4957 +Rp4958 +sa(dp4959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4960 +tp4961 +Rp4962 +sa(dp4963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4964 +tp4965 +Rp4966 +sa(dp4967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4968 +tp4969 +Rp4970 +sa(dp4971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4972 +tp4973 +Rp4974 +sa(dp4975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4976 +tp4977 +Rp4978 +sa(dp4979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4980 +tp4981 +Rp4982 +sa(dp4983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4984 +tp4985 +Rp4986 +sa(dp4987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p4988 +tp4989 +Rp4990 +sa(dp4991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4992 +tp4993 +Rp4994 +sa(dp4995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p4996 +tp4997 +Rp4998 +sa(dp4999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5000 +tp5001 +Rp5002 +sa(dp5003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5004 +tp5005 +Rp5006 +sa(dp5007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5008 +tp5009 +Rp5010 +sa(dp5011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5012 +tp5013 +Rp5014 +sa(dp5015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5016 +tp5017 +Rp5018 +sa(dp5019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5020 +tp5021 +Rp5022 +sa(dp5023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5024 +tp5025 +Rp5026 +sa(dp5027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5028 +tp5029 +Rp5030 +sa(dp5031 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5032 +tp5033 +Rp5034 +sa(dp5035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5036 +tp5037 +Rp5038 +sa(dp5039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5040 +tp5041 +Rp5042 +sa(dp5043 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5044 +tp5045 +Rp5046 +sa(dp5047 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5048 +tp5049 +Rp5050 +sa(dp5051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5052 +tp5053 +Rp5054 +sa(dp5055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5056 +tp5057 +Rp5058 +sa(dp5059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5060 +tp5061 +Rp5062 +sa(dp5063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5064 +tp5065 +Rp5066 +sa(dp5067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5068 +tp5069 +Rp5070 +sa(dp5071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5072 +tp5073 +Rp5074 +sa(dp5075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5076 +tp5077 +Rp5078 +sa(dp5079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5080 +tp5081 +Rp5082 +sa(dp5083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5084 +tp5085 +Rp5086 +sa(dp5087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5088 +tp5089 +Rp5090 +sa(dp5091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5092 +tp5093 +Rp5094 +sa(dp5095 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5096 +tp5097 +Rp5098 +sa(dp5099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5100 +tp5101 +Rp5102 +sa(dp5103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5104 +tp5105 +Rp5106 +sa(dp5107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5108 +tp5109 +Rp5110 +sa(dp5111 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5112 +tp5113 +Rp5114 +sa(dp5115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5116 +tp5117 +Rp5118 +sa(dp5119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5120 +tp5121 +Rp5122 +sa(dp5123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5124 +tp5125 +Rp5126 +sa(dp5127 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5128 +tp5129 +Rp5130 +sa(dp5131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5132 +tp5133 +Rp5134 +sa(dp5135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5136 +tp5137 +Rp5138 +sa(dp5139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5140 +tp5141 +Rp5142 +sa(dp5143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5144 +tp5145 +Rp5146 +sa(dp5147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5148 +tp5149 +Rp5150 +sa(dp5151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5152 +tp5153 +Rp5154 +sa(dp5155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5156 +tp5157 +Rp5158 +sa(dp5159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5160 +tp5161 +Rp5162 +sa(dp5163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5164 +tp5165 +Rp5166 +sa(dp5167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5168 +tp5169 +Rp5170 +sa(dp5171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5172 +tp5173 +Rp5174 +sa(dp5175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5176 +tp5177 +Rp5178 +sa(dp5179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5180 +tp5181 +Rp5182 +sa(dp5183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5184 +tp5185 +Rp5186 +sa(dp5187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5188 +tp5189 +Rp5190 +sa(dp5191 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5192 +tp5193 +Rp5194 +sa(dp5195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5196 +tp5197 +Rp5198 +sa(dp5199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5200 +tp5201 +Rp5202 +sa(dp5203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5204 +tp5205 +Rp5206 +sa(dp5207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5208 +tp5209 +Rp5210 +sa(dp5211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5212 +tp5213 +Rp5214 +sa(dp5215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5216 +tp5217 +Rp5218 +sa(dp5219 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5220 +tp5221 +Rp5222 +sa(dp5223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5224 +tp5225 +Rp5226 +sa(dp5227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5228 +tp5229 +Rp5230 +sa(dp5231 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5232 +tp5233 +Rp5234 +sa(dp5235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5236 +tp5237 +Rp5238 +sa(dp5239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5240 +tp5241 +Rp5242 +sa(dp5243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5244 +tp5245 +Rp5246 +sa(dp5247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5248 +tp5249 +Rp5250 +sa(dp5251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5252 +tp5253 +Rp5254 +sa(dp5255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5256 +tp5257 +Rp5258 +sa(dp5259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5260 +tp5261 +Rp5262 +sa(dp5263 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5264 +tp5265 +Rp5266 +sa(dp5267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5268 +tp5269 +Rp5270 +sa(dp5271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5272 +tp5273 +Rp5274 +sa(dp5275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5276 +tp5277 +Rp5278 +sa(dp5279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5280 +tp5281 +Rp5282 +sa(dp5283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5284 +tp5285 +Rp5286 +sa(dp5287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5288 +tp5289 +Rp5290 +sa(dp5291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5292 +tp5293 +Rp5294 +sa(dp5295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5296 +tp5297 +Rp5298 +sa(dp5299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5300 +tp5301 +Rp5302 +sa(dp5303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5304 +tp5305 +Rp5306 +sa(dp5307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5308 +tp5309 +Rp5310 +sa(dp5311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5312 +tp5313 +Rp5314 +sa(dp5315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5316 +tp5317 +Rp5318 +sa(dp5319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5320 +tp5321 +Rp5322 +sa(dp5323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5324 +tp5325 +Rp5326 +sa(dp5327 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5328 +tp5329 +Rp5330 +sa(dp5331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5332 +tp5333 +Rp5334 +sa(dp5335 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5336 +tp5337 +Rp5338 +sa(dp5339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5340 +tp5341 +Rp5342 +sa(dp5343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5344 +tp5345 +Rp5346 +sa(dp5347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5348 +tp5349 +Rp5350 +sa(dp5351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5352 +tp5353 +Rp5354 +sa(dp5355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5356 +tp5357 +Rp5358 +sa(dp5359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5360 +tp5361 +Rp5362 +sa(dp5363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5364 +tp5365 +Rp5366 +sa(dp5367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5368 +tp5369 +Rp5370 +sa(dp5371 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5372 +tp5373 +Rp5374 +sa(dp5375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5376 +tp5377 +Rp5378 +sa(dp5379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5380 +tp5381 +Rp5382 +sa(dp5383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5384 +tp5385 +Rp5386 +sa(dp5387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5388 +tp5389 +Rp5390 +sa(dp5391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5392 +tp5393 +Rp5394 +sa(dp5395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5396 +tp5397 +Rp5398 +sa(dp5399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5400 +tp5401 +Rp5402 +sa(dp5403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5404 +tp5405 +Rp5406 +sa(dp5407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5408 +tp5409 +Rp5410 +sa(dp5411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5412 +tp5413 +Rp5414 +sa(dp5415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5416 +tp5417 +Rp5418 +sa(dp5419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5420 +tp5421 +Rp5422 +sa(dp5423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5424 +tp5425 +Rp5426 +sa(dp5427 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5428 +tp5429 +Rp5430 +sa(dp5431 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5432 +tp5433 +Rp5434 +sa(dp5435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5436 +tp5437 +Rp5438 +sa(dp5439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5440 +tp5441 +Rp5442 +sa(dp5443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5444 +tp5445 +Rp5446 +sa(dp5447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5448 +tp5449 +Rp5450 +sa(dp5451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5452 +tp5453 +Rp5454 +sa(dp5455 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5456 +tp5457 +Rp5458 +sa(dp5459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5460 +tp5461 +Rp5462 +sa(dp5463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5464 +tp5465 +Rp5466 +sa(dp5467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5468 +tp5469 +Rp5470 +sa(dp5471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5472 +tp5473 +Rp5474 +sa(dp5475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5476 +tp5477 +Rp5478 +sa(dp5479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5480 +tp5481 +Rp5482 +sa(dp5483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5484 +tp5485 +Rp5486 +sa(dp5487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5488 +tp5489 +Rp5490 +sa(dp5491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5492 +tp5493 +Rp5494 +sa(dp5495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5496 +tp5497 +Rp5498 +sa(dp5499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5500 +tp5501 +Rp5502 +sa(dp5503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5504 +tp5505 +Rp5506 +sa(dp5507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5508 +tp5509 +Rp5510 +sa(dp5511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5512 +tp5513 +Rp5514 +sa(dp5515 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5516 +tp5517 +Rp5518 +sa(dp5519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5520 +tp5521 +Rp5522 +sa(dp5523 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5524 +tp5525 +Rp5526 +sa(dp5527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5528 +tp5529 +Rp5530 +sa(dp5531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5532 +tp5533 +Rp5534 +sa(dp5535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5536 +tp5537 +Rp5538 +sa(dp5539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5540 +tp5541 +Rp5542 +sa(dp5543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5544 +tp5545 +Rp5546 +sa(dp5547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5548 +tp5549 +Rp5550 +sa(dp5551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5552 +tp5553 +Rp5554 +sa(dp5555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5556 +tp5557 +Rp5558 +sa(dp5559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5560 +tp5561 +Rp5562 +sa(dp5563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5564 +tp5565 +Rp5566 +sa(dp5567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5568 +tp5569 +Rp5570 +sa(dp5571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5572 +tp5573 +Rp5574 +sa(dp5575 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5576 +tp5577 +Rp5578 +sa(dp5579 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5580 +tp5581 +Rp5582 +sa(dp5583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5584 +tp5585 +Rp5586 +sa(dp5587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5588 +tp5589 +Rp5590 +sa(dp5591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5592 +tp5593 +Rp5594 +sa(dp5595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5596 +tp5597 +Rp5598 +sa(dp5599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5600 +tp5601 +Rp5602 +sa(dp5603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5604 +tp5605 +Rp5606 +sa(dp5607 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5608 +tp5609 +Rp5610 +sa(dp5611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5612 +tp5613 +Rp5614 +sa(dp5615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5616 +tp5617 +Rp5618 +sa(dp5619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5620 +tp5621 +Rp5622 +sa(dp5623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5624 +tp5625 +Rp5626 +sa(dp5627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5628 +tp5629 +Rp5630 +sa(dp5631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5632 +tp5633 +Rp5634 +sa(dp5635 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5636 +tp5637 +Rp5638 +sa(dp5639 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5640 +tp5641 +Rp5642 +sa(dp5643 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5644 +tp5645 +Rp5646 +sa(dp5647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5648 +tp5649 +Rp5650 +sa(dp5651 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5652 +tp5653 +Rp5654 +sa(dp5655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5656 +tp5657 +Rp5658 +sa(dp5659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5660 +tp5661 +Rp5662 +sa(dp5663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5664 +tp5665 +Rp5666 +sa(dp5667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5668 +tp5669 +Rp5670 +sa(dp5671 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5672 +tp5673 +Rp5674 +sa(dp5675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5676 +tp5677 +Rp5678 +sa(dp5679 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5680 +tp5681 +Rp5682 +sa(dp5683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5684 +tp5685 +Rp5686 +sa(dp5687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5688 +tp5689 +Rp5690 +sa(dp5691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5692 +tp5693 +Rp5694 +sa(dp5695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5696 +tp5697 +Rp5698 +sa(dp5699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5700 +tp5701 +Rp5702 +sa(dp5703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5704 +tp5705 +Rp5706 +sa(dp5707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5708 +tp5709 +Rp5710 +sa(dp5711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5712 +tp5713 +Rp5714 +sa(dp5715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5716 +tp5717 +Rp5718 +sa(dp5719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5720 +tp5721 +Rp5722 +sa(dp5723 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5724 +tp5725 +Rp5726 +sa(dp5727 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5728 +tp5729 +Rp5730 +sa(dp5731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5732 +tp5733 +Rp5734 +sa(dp5735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5736 +tp5737 +Rp5738 +sa(dp5739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5740 +tp5741 +Rp5742 +sa(dp5743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5744 +tp5745 +Rp5746 +sa(dp5747 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5748 +tp5749 +Rp5750 +sa(dp5751 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5752 +tp5753 +Rp5754 +sa(dp5755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5756 +tp5757 +Rp5758 +sa(dp5759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5760 +tp5761 +Rp5762 +sa(dp5763 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5764 +tp5765 +Rp5766 +sa(dp5767 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5768 +tp5769 +Rp5770 +sa(dp5771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5772 +tp5773 +Rp5774 +sa(dp5775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5776 +tp5777 +Rp5778 +sa(dp5779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5780 +tp5781 +Rp5782 +sa(dp5783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5784 +tp5785 +Rp5786 +sa(dp5787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5788 +tp5789 +Rp5790 +sa(dp5791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5792 +tp5793 +Rp5794 +sa(dp5795 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5796 +tp5797 +Rp5798 +sa(dp5799 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5800 +tp5801 +Rp5802 +sa(dp5803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5804 +tp5805 +Rp5806 +sa(dp5807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5808 +tp5809 +Rp5810 +sa(dp5811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5812 +tp5813 +Rp5814 +sa(dp5815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5816 +tp5817 +Rp5818 +sa(dp5819 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5820 +tp5821 +Rp5822 +sa(dp5823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5824 +tp5825 +Rp5826 +sa(dp5827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5828 +tp5829 +Rp5830 +sa(dp5831 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5832 +tp5833 +Rp5834 +sa(dp5835 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5836 +tp5837 +Rp5838 +sa(dp5839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5840 +tp5841 +Rp5842 +sa(dp5843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5844 +tp5845 +Rp5846 +sa(dp5847 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5848 +tp5849 +Rp5850 +sa(dp5851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5852 +tp5853 +Rp5854 +sa(dp5855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5856 +tp5857 +Rp5858 +sa(dp5859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5860 +tp5861 +Rp5862 +sa(dp5863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5864 +tp5865 +Rp5866 +sa(dp5867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5868 +tp5869 +Rp5870 +sa(dp5871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5872 +tp5873 +Rp5874 +sa(dp5875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5876 +tp5877 +Rp5878 +sa(dp5879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5880 +tp5881 +Rp5882 +sa(dp5883 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5884 +tp5885 +Rp5886 +sa(dp5887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5888 +tp5889 +Rp5890 +sa(dp5891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5892 +tp5893 +Rp5894 +sa(dp5895 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5896 +tp5897 +Rp5898 +sa(dp5899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5900 +tp5901 +Rp5902 +sa(dp5903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5904 +tp5905 +Rp5906 +sa(dp5907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5908 +tp5909 +Rp5910 +sa(dp5911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5912 +tp5913 +Rp5914 +sa(dp5915 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5916 +tp5917 +Rp5918 +sa(dp5919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5920 +tp5921 +Rp5922 +sa(dp5923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5924 +tp5925 +Rp5926 +sa(dp5927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5928 +tp5929 +Rp5930 +sa(dp5931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5932 +tp5933 +Rp5934 +sa(dp5935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5936 +tp5937 +Rp5938 +sa(dp5939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5940 +tp5941 +Rp5942 +sa(dp5943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5944 +tp5945 +Rp5946 +sa(dp5947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5948 +tp5949 +Rp5950 +sa(dp5951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5952 +tp5953 +Rp5954 +sa(dp5955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5956 +tp5957 +Rp5958 +sa(dp5959 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5960 +tp5961 +Rp5962 +sa(dp5963 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5964 +tp5965 +Rp5966 +sa(dp5967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5968 +tp5969 +Rp5970 +sa(dp5971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5972 +tp5973 +Rp5974 +sa(dp5975 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5976 +tp5977 +Rp5978 +sa(dp5979 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5980 +tp5981 +Rp5982 +sa(dp5983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5984 +tp5985 +Rp5986 +sa(dp5987 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p5988 +tp5989 +Rp5990 +sa(dp5991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5992 +tp5993 +Rp5994 +sa(dp5995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p5996 +tp5997 +Rp5998 +sa(dp5999 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6000 +tp6001 +Rp6002 +sa(dp6003 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6004 +tp6005 +Rp6006 +sa(dp6007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6008 +tp6009 +Rp6010 +sa(dp6011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6012 +tp6013 +Rp6014 +sa(dp6015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6016 +tp6017 +Rp6018 +sa(dp6019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6020 +tp6021 +Rp6022 +sa(dp6023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6024 +tp6025 +Rp6026 +sa(dp6027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6028 +tp6029 +Rp6030 +sa(dp6031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6032 +tp6033 +Rp6034 +sa(dp6035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6036 +tp6037 +Rp6038 +sa(dp6039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6040 +tp6041 +Rp6042 +sa(dp6043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6044 +tp6045 +Rp6046 +sa(dp6047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6048 +tp6049 +Rp6050 +sa(dp6051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6052 +tp6053 +Rp6054 +sa(dp6055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6056 +tp6057 +Rp6058 +sa(dp6059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6060 +tp6061 +Rp6062 +sa(dp6063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6064 +tp6065 +Rp6066 +sa(dp6067 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6068 +tp6069 +Rp6070 +sa(dp6071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6072 +tp6073 +Rp6074 +sa(dp6075 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6076 +tp6077 +Rp6078 +sa(dp6079 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6080 +tp6081 +Rp6082 +sa(dp6083 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6084 +tp6085 +Rp6086 +sa(dp6087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6088 +tp6089 +Rp6090 +sa(dp6091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6092 +tp6093 +Rp6094 +sa(dp6095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6096 +tp6097 +Rp6098 +sa(dp6099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6100 +tp6101 +Rp6102 +sa(dp6103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6104 +tp6105 +Rp6106 +sa(dp6107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6108 +tp6109 +Rp6110 +sa(dp6111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6112 +tp6113 +Rp6114 +sa(dp6115 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6116 +tp6117 +Rp6118 +sa(dp6119 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6120 +tp6121 +Rp6122 +sa(dp6123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6124 +tp6125 +Rp6126 +sa(dp6127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6128 +tp6129 +Rp6130 +sa(dp6131 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6132 +tp6133 +Rp6134 +sa(dp6135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6136 +tp6137 +Rp6138 +sa(dp6139 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6140 +tp6141 +Rp6142 +sa(dp6143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6144 +tp6145 +Rp6146 +sa(dp6147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6148 +tp6149 +Rp6150 +sa(dp6151 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6152 +tp6153 +Rp6154 +sa(dp6155 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6156 +tp6157 +Rp6158 +sa(dp6159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6160 +tp6161 +Rp6162 +sa(dp6163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6164 +tp6165 +Rp6166 +sa(dp6167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6168 +tp6169 +Rp6170 +sa(dp6171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6172 +tp6173 +Rp6174 +sa(dp6175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6176 +tp6177 +Rp6178 +sa(dp6179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6180 +tp6181 +Rp6182 +sa(dp6183 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6184 +tp6185 +Rp6186 +sa(dp6187 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6188 +tp6189 +Rp6190 +sa(dp6191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6192 +tp6193 +Rp6194 +sa(dp6195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6196 +tp6197 +Rp6198 +sa(dp6199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6200 +tp6201 +Rp6202 +sa(dp6203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6204 +tp6205 +Rp6206 +sa(dp6207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6208 +tp6209 +Rp6210 +sa(dp6211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6212 +tp6213 +Rp6214 +sa(dp6215 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6216 +tp6217 +Rp6218 +sa(dp6219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6220 +tp6221 +Rp6222 +sa(dp6223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6224 +tp6225 +Rp6226 +sa(dp6227 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6228 +tp6229 +Rp6230 +sa(dp6231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6232 +tp6233 +Rp6234 +sa(dp6235 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6236 +tp6237 +Rp6238 +sa(dp6239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6240 +tp6241 +Rp6242 +sa(dp6243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6244 +tp6245 +Rp6246 +sa(dp6247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6248 +tp6249 +Rp6250 +sa(dp6251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6252 +tp6253 +Rp6254 +sa(dp6255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6256 +tp6257 +Rp6258 +sa(dp6259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6260 +tp6261 +Rp6262 +sa(dp6263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6264 +tp6265 +Rp6266 +sa(dp6267 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6268 +tp6269 +Rp6270 +sa(dp6271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6272 +tp6273 +Rp6274 +sa(dp6275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6276 +tp6277 +Rp6278 +sa(dp6279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6280 +tp6281 +Rp6282 +sa(dp6283 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6284 +tp6285 +Rp6286 +sa(dp6287 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6288 +tp6289 +Rp6290 +sa(dp6291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6292 +tp6293 +Rp6294 +sa(dp6295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6296 +tp6297 +Rp6298 +sa(dp6299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6300 +tp6301 +Rp6302 +sa(dp6303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6304 +tp6305 +Rp6306 +sa(dp6307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6308 +tp6309 +Rp6310 +sa(dp6311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6312 +tp6313 +Rp6314 +sa(dp6315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6316 +tp6317 +Rp6318 +sa(dp6319 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6320 +tp6321 +Rp6322 +sa(dp6323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6324 +tp6325 +Rp6326 +sa(dp6327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6328 +tp6329 +Rp6330 +sa(dp6331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6332 +tp6333 +Rp6334 +sa(dp6335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6336 +tp6337 +Rp6338 +sa(dp6339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6340 +tp6341 +Rp6342 +sa(dp6343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6344 +tp6345 +Rp6346 +sa(dp6347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6348 +tp6349 +Rp6350 +sa(dp6351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6352 +tp6353 +Rp6354 +sa(dp6355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6356 +tp6357 +Rp6358 +sa(dp6359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6360 +tp6361 +Rp6362 +sa(dp6363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6364 +tp6365 +Rp6366 +sa(dp6367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6368 +tp6369 +Rp6370 +sa(dp6371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6372 +tp6373 +Rp6374 +sa(dp6375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6376 +tp6377 +Rp6378 +sa(dp6379 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6380 +tp6381 +Rp6382 +sa(dp6383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6384 +tp6385 +Rp6386 +sa(dp6387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6388 +tp6389 +Rp6390 +sa(dp6391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6392 +tp6393 +Rp6394 +sa(dp6395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6396 +tp6397 +Rp6398 +sa(dp6399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6400 +tp6401 +Rp6402 +sa(dp6403 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6404 +tp6405 +Rp6406 +sa(dp6407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6408 +tp6409 +Rp6410 +sa(dp6411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6412 +tp6413 +Rp6414 +sa(dp6415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6416 +tp6417 +Rp6418 +sa(dp6419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6420 +tp6421 +Rp6422 +sa(dp6423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6424 +tp6425 +Rp6426 +sa(dp6427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6428 +tp6429 +Rp6430 +sa(dp6431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6432 +tp6433 +Rp6434 +sa(dp6435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6436 +tp6437 +Rp6438 +sa(dp6439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6440 +tp6441 +Rp6442 +sa(dp6443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6444 +tp6445 +Rp6446 +sa(dp6447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6448 +tp6449 +Rp6450 +sa(dp6451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6452 +tp6453 +Rp6454 +sa(dp6455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6456 +tp6457 +Rp6458 +sa(dp6459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6460 +tp6461 +Rp6462 +sa(dp6463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6464 +tp6465 +Rp6466 +sa(dp6467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6468 +tp6469 +Rp6470 +sa(dp6471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6472 +tp6473 +Rp6474 +sa(dp6475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6476 +tp6477 +Rp6478 +sa(dp6479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6480 +tp6481 +Rp6482 +sa(dp6483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6484 +tp6485 +Rp6486 +sa(dp6487 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6488 +tp6489 +Rp6490 +sa(dp6491 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6492 +tp6493 +Rp6494 +sa(dp6495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6496 +tp6497 +Rp6498 +sa(dp6499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6500 +tp6501 +Rp6502 +sa(dp6503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6504 +tp6505 +Rp6506 +sa(dp6507 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6508 +tp6509 +Rp6510 +sa(dp6511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6512 +tp6513 +Rp6514 +sa(dp6515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6516 +tp6517 +Rp6518 +sa(dp6519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6520 +tp6521 +Rp6522 +sa(dp6523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6524 +tp6525 +Rp6526 +sa(dp6527 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6528 +tp6529 +Rp6530 +sa(dp6531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6532 +tp6533 +Rp6534 +sa(dp6535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6536 +tp6537 +Rp6538 +sa(dp6539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6540 +tp6541 +Rp6542 +sa(dp6543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6544 +tp6545 +Rp6546 +sa(dp6547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6548 +tp6549 +Rp6550 +sa(dp6551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6552 +tp6553 +Rp6554 +sa(dp6555 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6556 +tp6557 +Rp6558 +sa(dp6559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6560 +tp6561 +Rp6562 +sa(dp6563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6564 +tp6565 +Rp6566 +sa(dp6567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6568 +tp6569 +Rp6570 +sa(dp6571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6572 +tp6573 +Rp6574 +sa(dp6575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6576 +tp6577 +Rp6578 +sa(dp6579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6580 +tp6581 +Rp6582 +sa(dp6583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6584 +tp6585 +Rp6586 +sa(dp6587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6588 +tp6589 +Rp6590 +sa(dp6591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6592 +tp6593 +Rp6594 +sa(dp6595 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6596 +tp6597 +Rp6598 +sa(dp6599 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6600 +tp6601 +Rp6602 +sa(dp6603 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6604 +tp6605 +Rp6606 +sa(dp6607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6608 +tp6609 +Rp6610 +sa(dp6611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6612 +tp6613 +Rp6614 +sa(dp6615 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6616 +tp6617 +Rp6618 +sa(dp6619 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6620 +tp6621 +Rp6622 +sa(dp6623 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6624 +tp6625 +Rp6626 +sa(dp6627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6628 +tp6629 +Rp6630 +sa(dp6631 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6632 +tp6633 +Rp6634 +sa(dp6635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6636 +tp6637 +Rp6638 +sa(dp6639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6640 +tp6641 +Rp6642 +sa(dp6643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6644 +tp6645 +Rp6646 +sa(dp6647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6648 +tp6649 +Rp6650 +sa(dp6651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6652 +tp6653 +Rp6654 +sa(dp6655 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6656 +tp6657 +Rp6658 +sa(dp6659 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6660 +tp6661 +Rp6662 +sa(dp6663 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6664 +tp6665 +Rp6666 +sa(dp6667 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6668 +tp6669 +Rp6670 +sa(dp6671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6672 +tp6673 +Rp6674 +sa(dp6675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6676 +tp6677 +Rp6678 +sa(dp6679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6680 +tp6681 +Rp6682 +sa(dp6683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6684 +tp6685 +Rp6686 +sa(dp6687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6688 +tp6689 +Rp6690 +sa(dp6691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6692 +tp6693 +Rp6694 +sa(dp6695 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6696 +tp6697 +Rp6698 +sa(dp6699 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6700 +tp6701 +Rp6702 +sa(dp6703 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6704 +tp6705 +Rp6706 +sa(dp6707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6708 +tp6709 +Rp6710 +sa(dp6711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6712 +tp6713 +Rp6714 +sa(dp6715 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6716 +tp6717 +Rp6718 +sa(dp6719 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6720 +tp6721 +Rp6722 +sa(dp6723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6724 +tp6725 +Rp6726 +sa(dp6727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6728 +tp6729 +Rp6730 +sa(dp6731 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6732 +tp6733 +Rp6734 +sa(dp6735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6736 +tp6737 +Rp6738 +sa(dp6739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6740 +tp6741 +Rp6742 +sa(dp6743 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6744 +tp6745 +Rp6746 +sa(dp6747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6748 +tp6749 +Rp6750 +sa(dp6751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6752 +tp6753 +Rp6754 +sa(dp6755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6756 +tp6757 +Rp6758 +sa(dp6759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6760 +tp6761 +Rp6762 +sa(dp6763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6764 +tp6765 +Rp6766 +sa(dp6767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6768 +tp6769 +Rp6770 +sa(dp6771 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6772 +tp6773 +Rp6774 +sa(dp6775 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6776 +tp6777 +Rp6778 +sa(dp6779 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6780 +tp6781 +Rp6782 +sa(dp6783 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6784 +tp6785 +Rp6786 +sa(dp6787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6788 +tp6789 +Rp6790 +sa(dp6791 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6792 +tp6793 +Rp6794 +sa(dp6795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6796 +tp6797 +Rp6798 +sa(dp6799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6800 +tp6801 +Rp6802 +sa(dp6803 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6804 +tp6805 +Rp6806 +sa(dp6807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6808 +tp6809 +Rp6810 +sa(dp6811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6812 +tp6813 +Rp6814 +sa(dp6815 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6816 +tp6817 +Rp6818 +sa(dp6819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6820 +tp6821 +Rp6822 +sa(dp6823 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6824 +tp6825 +Rp6826 +sa(dp6827 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6828 +tp6829 +Rp6830 +sa(dp6831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6832 +tp6833 +Rp6834 +sa(dp6835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6836 +tp6837 +Rp6838 +sa(dp6839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6840 +tp6841 +Rp6842 +sa(dp6843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6844 +tp6845 +Rp6846 +sa(dp6847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6848 +tp6849 +Rp6850 +sa(dp6851 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6852 +tp6853 +Rp6854 +sa(dp6855 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6856 +tp6857 +Rp6858 +sa(dp6859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6860 +tp6861 +Rp6862 +sa(dp6863 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6864 +tp6865 +Rp6866 +sa(dp6867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6868 +tp6869 +Rp6870 +sa(dp6871 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6872 +tp6873 +Rp6874 +sa(dp6875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6876 +tp6877 +Rp6878 +sa(dp6879 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6880 +tp6881 +Rp6882 +sa(dp6883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6884 +tp6885 +Rp6886 +sa(dp6887 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6888 +tp6889 +Rp6890 +sa(dp6891 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6892 +tp6893 +Rp6894 +sa(dp6895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6896 +tp6897 +Rp6898 +sa(dp6899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6900 +tp6901 +Rp6902 +sa(dp6903 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6904 +tp6905 +Rp6906 +sa(dp6907 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6908 +tp6909 +Rp6910 +sa(dp6911 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6912 +tp6913 +Rp6914 +sa(dp6915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6916 +tp6917 +Rp6918 +sa(dp6919 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6920 +tp6921 +Rp6922 +sa(dp6923 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6924 +tp6925 +Rp6926 +sa(dp6927 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6928 +tp6929 +Rp6930 +sa(dp6931 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6932 +tp6933 +Rp6934 +sa(dp6935 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6936 +tp6937 +Rp6938 +sa(dp6939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6940 +tp6941 +Rp6942 +sa(dp6943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6944 +tp6945 +Rp6946 +sa(dp6947 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6948 +tp6949 +Rp6950 +sa(dp6951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6952 +tp6953 +Rp6954 +sa(dp6955 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6956 +tp6957 +Rp6958 +sa(dp6959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6960 +tp6961 +Rp6962 +sa(dp6963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6964 +tp6965 +Rp6966 +sa(dp6967 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6968 +tp6969 +Rp6970 +sa(dp6971 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6972 +tp6973 +Rp6974 +sa(dp6975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6976 +tp6977 +Rp6978 +sa(dp6979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p6980 +tp6981 +Rp6982 +sa(dp6983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6984 +tp6985 +Rp6986 +sa(dp6987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6988 +tp6989 +Rp6990 +sa(dp6991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6992 +tp6993 +Rp6994 +sa(dp6995 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p6996 +tp6997 +Rp6998 +sa(dp6999 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7000 +tp7001 +Rp7002 +sa(dp7003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7004 +tp7005 +Rp7006 +sa(dp7007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7008 +tp7009 +Rp7010 +sa(dp7011 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7012 +tp7013 +Rp7014 +sa(dp7015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7016 +tp7017 +Rp7018 +sa(dp7019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7020 +tp7021 +Rp7022 +sa(dp7023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7024 +tp7025 +Rp7026 +sa(dp7027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7028 +tp7029 +Rp7030 +sa(dp7031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7032 +tp7033 +Rp7034 +sa(dp7035 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7036 +tp7037 +Rp7038 +sa(dp7039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7040 +tp7041 +Rp7042 +sa(dp7043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7044 +tp7045 +Rp7046 +sa(dp7047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7048 +tp7049 +Rp7050 +sa(dp7051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7052 +tp7053 +Rp7054 +sa(dp7055 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7056 +tp7057 +Rp7058 +sa(dp7059 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7060 +tp7061 +Rp7062 +sa(dp7063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7064 +tp7065 +Rp7066 +sa(dp7067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7068 +tp7069 +Rp7070 +sa(dp7071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7072 +tp7073 +Rp7074 +sa(dp7075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7076 +tp7077 +Rp7078 +sa(dp7079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7080 +tp7081 +Rp7082 +sa(dp7083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7084 +tp7085 +Rp7086 +sa(dp7087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7088 +tp7089 +Rp7090 +sa(dp7091 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7092 +tp7093 +Rp7094 +sa(dp7095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7096 +tp7097 +Rp7098 +sa(dp7099 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7100 +tp7101 +Rp7102 +sa(dp7103 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7104 +tp7105 +Rp7106 +sa(dp7107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7108 +tp7109 +Rp7110 +sa(dp7111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7112 +tp7113 +Rp7114 +sa(dp7115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7116 +tp7117 +Rp7118 +sa(dp7119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7120 +tp7121 +Rp7122 +sa(dp7123 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7124 +tp7125 +Rp7126 +sa(dp7127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7128 +tp7129 +Rp7130 +sa(dp7131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7132 +tp7133 +Rp7134 +sa(dp7135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7136 +tp7137 +Rp7138 +sa(dp7139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7140 +tp7141 +Rp7142 +sa(dp7143 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7144 +tp7145 +Rp7146 +sa(dp7147 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7148 +tp7149 +Rp7150 +sa(dp7151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7152 +tp7153 +Rp7154 +sa(dp7155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7156 +tp7157 +Rp7158 +sa(dp7159 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7160 +tp7161 +Rp7162 +sa(dp7163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7164 +tp7165 +Rp7166 +sa(dp7167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7168 +tp7169 +Rp7170 +sa(dp7171 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7172 +tp7173 +Rp7174 +sa(dp7175 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7176 +tp7177 +Rp7178 +sa(dp7179 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7180 +tp7181 +Rp7182 +sa(dp7183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7184 +tp7185 +Rp7186 +sa(dp7187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7188 +tp7189 +Rp7190 +sa(dp7191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7192 +tp7193 +Rp7194 +sa(dp7195 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7196 +tp7197 +Rp7198 +sa(dp7199 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7200 +tp7201 +Rp7202 +sa(dp7203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7204 +tp7205 +Rp7206 +sa(dp7207 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7208 +tp7209 +Rp7210 +sa(dp7211 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7212 +tp7213 +Rp7214 +sa(dp7215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7216 +tp7217 +Rp7218 +sa(dp7219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7220 +tp7221 +Rp7222 +sa(dp7223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7224 +tp7225 +Rp7226 +sa(dp7227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7228 +tp7229 +Rp7230 +sa(dp7231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7232 +tp7233 +Rp7234 +sa(dp7235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7236 +tp7237 +Rp7238 +sa(dp7239 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7240 +tp7241 +Rp7242 +sa(dp7243 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7244 +tp7245 +Rp7246 +sa(dp7247 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7248 +tp7249 +Rp7250 +sa(dp7251 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7252 +tp7253 +Rp7254 +sa(dp7255 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7256 +tp7257 +Rp7258 +sa(dp7259 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7260 +tp7261 +Rp7262 +sa(dp7263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7264 +tp7265 +Rp7266 +sa(dp7267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7268 +tp7269 +Rp7270 +sa(dp7271 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7272 +tp7273 +Rp7274 +sa(dp7275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7276 +tp7277 +Rp7278 +sa(dp7279 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7280 +tp7281 +Rp7282 +sa(dp7283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7284 +tp7285 +Rp7286 +sa(dp7287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7288 +tp7289 +Rp7290 +sa(dp7291 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7292 +tp7293 +Rp7294 +sa(dp7295 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7296 +tp7297 +Rp7298 +sa(dp7299 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7300 +tp7301 +Rp7302 +sa(dp7303 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7304 +tp7305 +Rp7306 +sa(dp7307 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7308 +tp7309 +Rp7310 +sa(dp7311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7312 +tp7313 +Rp7314 +sa(dp7315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7316 +tp7317 +Rp7318 +sa(dp7319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7320 +tp7321 +Rp7322 +sa(dp7323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7324 +tp7325 +Rp7326 +sa(dp7327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7328 +tp7329 +Rp7330 +sa(dp7331 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7332 +tp7333 +Rp7334 +sa(dp7335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7336 +tp7337 +Rp7338 +sa(dp7339 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7340 +tp7341 +Rp7342 +sa(dp7343 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7344 +tp7345 +Rp7346 +sa(dp7347 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7348 +tp7349 +Rp7350 +sa(dp7351 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7352 +tp7353 +Rp7354 +sa(dp7355 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7356 +tp7357 +Rp7358 +sa(dp7359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7360 +tp7361 +Rp7362 +sa(dp7363 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7364 +tp7365 +Rp7366 +sa(dp7367 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7368 +tp7369 +Rp7370 +sa(dp7371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7372 +tp7373 +Rp7374 +sa(dp7375 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7376 +tp7377 +Rp7378 +sa(dp7379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7380 +tp7381 +Rp7382 +sa(dp7383 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7384 +tp7385 +Rp7386 +sa(dp7387 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7388 +tp7389 +Rp7390 +sa(dp7391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7392 +tp7393 +Rp7394 +sa(dp7395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7396 +tp7397 +Rp7398 +sa(dp7399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7400 +tp7401 +Rp7402 +sa(dp7403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7404 +tp7405 +Rp7406 +sa(dp7407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7408 +tp7409 +Rp7410 +sa(dp7411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7412 +tp7413 +Rp7414 +sa(dp7415 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7416 +tp7417 +Rp7418 +sa(dp7419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7420 +tp7421 +Rp7422 +sa(dp7423 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7424 +tp7425 +Rp7426 +sa(dp7427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7428 +tp7429 +Rp7430 +sa(dp7431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7432 +tp7433 +Rp7434 +sa(dp7435 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7436 +tp7437 +Rp7438 +sa(dp7439 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7440 +tp7441 +Rp7442 +sa(dp7443 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7444 +tp7445 +Rp7446 +sa(dp7447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7448 +tp7449 +Rp7450 +sa(dp7451 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7452 +tp7453 +Rp7454 +sa(dp7455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7456 +tp7457 +Rp7458 +sa(dp7459 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7460 +tp7461 +Rp7462 +sa(dp7463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7464 +tp7465 +Rp7466 +sa(dp7467 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7468 +tp7469 +Rp7470 +sa(dp7471 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7472 +tp7473 +Rp7474 +sa(dp7475 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7476 +tp7477 +Rp7478 +sa(dp7479 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7480 +tp7481 +Rp7482 +sa(dp7483 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7484 +tp7485 +Rp7486 +sa(dp7487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7488 +tp7489 +Rp7490 +sa(dp7491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7492 +tp7493 +Rp7494 +sa(dp7495 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7496 +tp7497 +Rp7498 +sa(dp7499 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7500 +tp7501 +Rp7502 +sa(dp7503 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7504 +tp7505 +Rp7506 +sa(dp7507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7508 +tp7509 +Rp7510 +sa(dp7511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7512 +tp7513 +Rp7514 +sa(dp7515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7516 +tp7517 +Rp7518 +sa(dp7519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7520 +tp7521 +Rp7522 +sa(dp7523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7524 +tp7525 +Rp7526 +sa(dp7527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7528 +tp7529 +Rp7530 +sa(dp7531 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7532 +tp7533 +Rp7534 +sa(dp7535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7536 +tp7537 +Rp7538 +sa(dp7539 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7540 +tp7541 +Rp7542 +sa(dp7543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7544 +tp7545 +Rp7546 +sa(dp7547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7548 +tp7549 +Rp7550 +sa(dp7551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7552 +tp7553 +Rp7554 +sa(dp7555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7556 +tp7557 +Rp7558 +sa(dp7559 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7560 +tp7561 +Rp7562 +sa(dp7563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7564 +tp7565 +Rp7566 +sa(dp7567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7568 +tp7569 +Rp7570 +sa(dp7571 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7572 +tp7573 +Rp7574 +sa(dp7575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7576 +tp7577 +Rp7578 +sa(dp7579 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7580 +tp7581 +Rp7582 +sa(dp7583 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7584 +tp7585 +Rp7586 +sa(dp7587 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7588 +tp7589 +Rp7590 +sa(dp7591 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7592 +tp7593 +Rp7594 +sa(dp7595 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7596 +tp7597 +Rp7598 +sa(dp7599 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7600 +tp7601 +Rp7602 +sa(dp7603 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7604 +tp7605 +Rp7606 +sa(dp7607 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7608 +tp7609 +Rp7610 +sa(dp7611 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7612 +tp7613 +Rp7614 +sa(dp7615 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7616 +tp7617 +Rp7618 +sa(dp7619 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7620 +tp7621 +Rp7622 +sa(dp7623 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7624 +tp7625 +Rp7626 +sa(dp7627 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7628 +tp7629 +Rp7630 +sa(dp7631 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7632 +tp7633 +Rp7634 +sa(dp7635 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7636 +tp7637 +Rp7638 +sa(dp7639 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7640 +tp7641 +Rp7642 +sa(dp7643 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7644 +tp7645 +Rp7646 +sa(dp7647 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7648 +tp7649 +Rp7650 +sa(dp7651 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7652 +tp7653 +Rp7654 +sa(dp7655 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7656 +tp7657 +Rp7658 +sa(dp7659 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7660 +tp7661 +Rp7662 +sa(dp7663 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7664 +tp7665 +Rp7666 +sa(dp7667 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7668 +tp7669 +Rp7670 +sa(dp7671 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7672 +tp7673 +Rp7674 +sa(dp7675 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7676 +tp7677 +Rp7678 +sa(dp7679 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7680 +tp7681 +Rp7682 +sa(dp7683 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7684 +tp7685 +Rp7686 +sa(dp7687 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7688 +tp7689 +Rp7690 +sa(dp7691 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7692 +tp7693 +Rp7694 +sa(dp7695 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7696 +tp7697 +Rp7698 +sa(dp7699 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7700 +tp7701 +Rp7702 +sa(dp7703 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7704 +tp7705 +Rp7706 +sa(dp7707 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7708 +tp7709 +Rp7710 +sa(dp7711 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7712 +tp7713 +Rp7714 +sa(dp7715 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7716 +tp7717 +Rp7718 +sa(dp7719 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7720 +tp7721 +Rp7722 +sa(dp7723 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7724 +tp7725 +Rp7726 +sa(dp7727 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7728 +tp7729 +Rp7730 +sa(dp7731 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7732 +tp7733 +Rp7734 +sa(dp7735 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7736 +tp7737 +Rp7738 +sa(dp7739 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7740 +tp7741 +Rp7742 +sa(dp7743 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7744 +tp7745 +Rp7746 +sa(dp7747 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7748 +tp7749 +Rp7750 +sa(dp7751 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7752 +tp7753 +Rp7754 +sa(dp7755 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7756 +tp7757 +Rp7758 +sa(dp7759 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7760 +tp7761 +Rp7762 +sa(dp7763 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7764 +tp7765 +Rp7766 +sa(dp7767 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7768 +tp7769 +Rp7770 +sa(dp7771 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7772 +tp7773 +Rp7774 +sa(dp7775 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7776 +tp7777 +Rp7778 +sa(dp7779 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7780 +tp7781 +Rp7782 +sa(dp7783 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7784 +tp7785 +Rp7786 +sa(dp7787 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7788 +tp7789 +Rp7790 +sa(dp7791 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7792 +tp7793 +Rp7794 +sa(dp7795 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7796 +tp7797 +Rp7798 +sa(dp7799 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7800 +tp7801 +Rp7802 +sa(dp7803 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7804 +tp7805 +Rp7806 +sa(dp7807 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7808 +tp7809 +Rp7810 +sa(dp7811 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7812 +tp7813 +Rp7814 +sa(dp7815 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7816 +tp7817 +Rp7818 +sa(dp7819 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7820 +tp7821 +Rp7822 +sa(dp7823 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7824 +tp7825 +Rp7826 +sa(dp7827 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7828 +tp7829 +Rp7830 +sa(dp7831 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7832 +tp7833 +Rp7834 +sa(dp7835 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7836 +tp7837 +Rp7838 +sa(dp7839 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7840 +tp7841 +Rp7842 +sa(dp7843 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7844 +tp7845 +Rp7846 +sa(dp7847 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7848 +tp7849 +Rp7850 +sa(dp7851 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7852 +tp7853 +Rp7854 +sa(dp7855 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7856 +tp7857 +Rp7858 +sa(dp7859 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7860 +tp7861 +Rp7862 +sa(dp7863 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7864 +tp7865 +Rp7866 +sa(dp7867 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7868 +tp7869 +Rp7870 +sa(dp7871 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7872 +tp7873 +Rp7874 +sa(dp7875 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7876 +tp7877 +Rp7878 +sa(dp7879 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7880 +tp7881 +Rp7882 +sa(dp7883 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7884 +tp7885 +Rp7886 +sa(dp7887 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7888 +tp7889 +Rp7890 +sa(dp7891 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7892 +tp7893 +Rp7894 +sa(dp7895 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7896 +tp7897 +Rp7898 +sa(dp7899 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7900 +tp7901 +Rp7902 +sa(dp7903 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7904 +tp7905 +Rp7906 +sa(dp7907 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7908 +tp7909 +Rp7910 +sa(dp7911 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7912 +tp7913 +Rp7914 +sa(dp7915 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7916 +tp7917 +Rp7918 +sa(dp7919 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7920 +tp7921 +Rp7922 +sa(dp7923 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7924 +tp7925 +Rp7926 +sa(dp7927 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7928 +tp7929 +Rp7930 +sa(dp7931 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7932 +tp7933 +Rp7934 +sa(dp7935 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7936 +tp7937 +Rp7938 +sa(dp7939 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7940 +tp7941 +Rp7942 +sa(dp7943 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7944 +tp7945 +Rp7946 +sa(dp7947 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7948 +tp7949 +Rp7950 +sa(dp7951 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7952 +tp7953 +Rp7954 +sa(dp7955 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7956 +tp7957 +Rp7958 +sa(dp7959 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7960 +tp7961 +Rp7962 +sa(dp7963 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7964 +tp7965 +Rp7966 +sa(dp7967 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7968 +tp7969 +Rp7970 +sa(dp7971 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7972 +tp7973 +Rp7974 +sa(dp7975 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7976 +tp7977 +Rp7978 +sa(dp7979 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7980 +tp7981 +Rp7982 +sa(dp7983 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7984 +tp7985 +Rp7986 +sa(dp7987 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7988 +tp7989 +Rp7990 +sa(dp7991 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p7992 +tp7993 +Rp7994 +sa(dp7995 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p7996 +tp7997 +Rp7998 +sa(dp7999 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8000 +tp8001 +Rp8002 +sa(dp8003 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8004 +tp8005 +Rp8006 +sa(dp8007 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8008 +tp8009 +Rp8010 +sa(dp8011 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8012 +tp8013 +Rp8014 +sa(dp8015 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8016 +tp8017 +Rp8018 +sa(dp8019 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8020 +tp8021 +Rp8022 +sa(dp8023 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8024 +tp8025 +Rp8026 +sa(dp8027 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8028 +tp8029 +Rp8030 +sa(dp8031 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8032 +tp8033 +Rp8034 +sa(dp8035 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8036 +tp8037 +Rp8038 +sa(dp8039 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8040 +tp8041 +Rp8042 +sa(dp8043 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8044 +tp8045 +Rp8046 +sa(dp8047 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8048 +tp8049 +Rp8050 +sa(dp8051 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8052 +tp8053 +Rp8054 +sa(dp8055 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8056 +tp8057 +Rp8058 +sa(dp8059 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8060 +tp8061 +Rp8062 +sa(dp8063 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8064 +tp8065 +Rp8066 +sa(dp8067 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8068 +tp8069 +Rp8070 +sa(dp8071 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8072 +tp8073 +Rp8074 +sa(dp8075 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8076 +tp8077 +Rp8078 +sa(dp8079 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8080 +tp8081 +Rp8082 +sa(dp8083 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8084 +tp8085 +Rp8086 +sa(dp8087 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8088 +tp8089 +Rp8090 +sa(dp8091 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8092 +tp8093 +Rp8094 +sa(dp8095 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8096 +tp8097 +Rp8098 +sa(dp8099 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8100 +tp8101 +Rp8102 +sa(dp8103 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8104 +tp8105 +Rp8106 +sa(dp8107 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8108 +tp8109 +Rp8110 +sa(dp8111 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8112 +tp8113 +Rp8114 +sa(dp8115 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8116 +tp8117 +Rp8118 +sa(dp8119 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8120 +tp8121 +Rp8122 +sa(dp8123 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8124 +tp8125 +Rp8126 +sa(dp8127 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8128 +tp8129 +Rp8130 +sa(dp8131 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8132 +tp8133 +Rp8134 +sa(dp8135 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8136 +tp8137 +Rp8138 +sa(dp8139 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8140 +tp8141 +Rp8142 +sa(dp8143 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8144 +tp8145 +Rp8146 +sa(dp8147 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8148 +tp8149 +Rp8150 +sa(dp8151 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8152 +tp8153 +Rp8154 +sa(dp8155 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8156 +tp8157 +Rp8158 +sa(dp8159 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8160 +tp8161 +Rp8162 +sa(dp8163 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8164 +tp8165 +Rp8166 +sa(dp8167 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8168 +tp8169 +Rp8170 +sa(dp8171 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8172 +tp8173 +Rp8174 +sa(dp8175 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8176 +tp8177 +Rp8178 +sa(dp8179 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8180 +tp8181 +Rp8182 +sa(dp8183 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8184 +tp8185 +Rp8186 +sa(dp8187 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8188 +tp8189 +Rp8190 +sa(dp8191 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8192 +tp8193 +Rp8194 +sa(dp8195 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8196 +tp8197 +Rp8198 +sa(dp8199 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8200 +tp8201 +Rp8202 +sa(dp8203 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8204 +tp8205 +Rp8206 +sa(dp8207 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8208 +tp8209 +Rp8210 +sa(dp8211 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8212 +tp8213 +Rp8214 +sa(dp8215 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8216 +tp8217 +Rp8218 +sa(dp8219 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8220 +tp8221 +Rp8222 +sa(dp8223 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8224 +tp8225 +Rp8226 +sa(dp8227 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8228 +tp8229 +Rp8230 +sa(dp8231 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8232 +tp8233 +Rp8234 +sa(dp8235 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8236 +tp8237 +Rp8238 +sa(dp8239 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8240 +tp8241 +Rp8242 +sa(dp8243 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8244 +tp8245 +Rp8246 +sa(dp8247 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8248 +tp8249 +Rp8250 +sa(dp8251 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8252 +tp8253 +Rp8254 +sa(dp8255 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8256 +tp8257 +Rp8258 +sa(dp8259 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8260 +tp8261 +Rp8262 +sa(dp8263 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8264 +tp8265 +Rp8266 +sa(dp8267 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8268 +tp8269 +Rp8270 +sa(dp8271 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8272 +tp8273 +Rp8274 +sa(dp8275 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8276 +tp8277 +Rp8278 +sa(dp8279 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8280 +tp8281 +Rp8282 +sa(dp8283 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8284 +tp8285 +Rp8286 +sa(dp8287 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8288 +tp8289 +Rp8290 +sa(dp8291 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8292 +tp8293 +Rp8294 +sa(dp8295 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8296 +tp8297 +Rp8298 +sa(dp8299 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8300 +tp8301 +Rp8302 +sa(dp8303 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8304 +tp8305 +Rp8306 +sa(dp8307 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8308 +tp8309 +Rp8310 +sa(dp8311 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8312 +tp8313 +Rp8314 +sa(dp8315 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8316 +tp8317 +Rp8318 +sa(dp8319 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8320 +tp8321 +Rp8322 +sa(dp8323 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8324 +tp8325 +Rp8326 +sa(dp8327 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8328 +tp8329 +Rp8330 +sa(dp8331 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8332 +tp8333 +Rp8334 +sa(dp8335 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8336 +tp8337 +Rp8338 +sa(dp8339 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8340 +tp8341 +Rp8342 +sa(dp8343 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8344 +tp8345 +Rp8346 +sa(dp8347 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8348 +tp8349 +Rp8350 +sa(dp8351 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8352 +tp8353 +Rp8354 +sa(dp8355 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8356 +tp8357 +Rp8358 +sa(dp8359 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8360 +tp8361 +Rp8362 +sa(dp8363 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8364 +tp8365 +Rp8366 +sa(dp8367 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8368 +tp8369 +Rp8370 +sa(dp8371 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8372 +tp8373 +Rp8374 +sa(dp8375 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8376 +tp8377 +Rp8378 +sa(dp8379 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8380 +tp8381 +Rp8382 +sa(dp8383 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8384 +tp8385 +Rp8386 +sa(dp8387 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8388 +tp8389 +Rp8390 +sa(dp8391 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8392 +tp8393 +Rp8394 +sa(dp8395 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8396 +tp8397 +Rp8398 +sa(dp8399 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8400 +tp8401 +Rp8402 +sa(dp8403 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8404 +tp8405 +Rp8406 +sa(dp8407 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8408 +tp8409 +Rp8410 +sa(dp8411 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8412 +tp8413 +Rp8414 +sa(dp8415 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8416 +tp8417 +Rp8418 +sa(dp8419 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8420 +tp8421 +Rp8422 +sa(dp8423 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8424 +tp8425 +Rp8426 +sa(dp8427 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8428 +tp8429 +Rp8430 +sa(dp8431 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8432 +tp8433 +Rp8434 +sa(dp8435 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8436 +tp8437 +Rp8438 +sa(dp8439 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8440 +tp8441 +Rp8442 +sa(dp8443 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8444 +tp8445 +Rp8446 +sa(dp8447 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8448 +tp8449 +Rp8450 +sa(dp8451 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8452 +tp8453 +Rp8454 +sa(dp8455 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8456 +tp8457 +Rp8458 +sa(dp8459 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8460 +tp8461 +Rp8462 +sa(dp8463 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8464 +tp8465 +Rp8466 +sa(dp8467 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8468 +tp8469 +Rp8470 +sa(dp8471 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8472 +tp8473 +Rp8474 +sa(dp8475 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8476 +tp8477 +Rp8478 +sa(dp8479 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8480 +tp8481 +Rp8482 +sa(dp8483 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8484 +tp8485 +Rp8486 +sa(dp8487 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8488 +tp8489 +Rp8490 +sa(dp8491 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8492 +tp8493 +Rp8494 +sa(dp8495 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8496 +tp8497 +Rp8498 +sa(dp8499 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8500 +tp8501 +Rp8502 +sa(dp8503 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8504 +tp8505 +Rp8506 +sa(dp8507 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8508 +tp8509 +Rp8510 +sa(dp8511 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8512 +tp8513 +Rp8514 +sa(dp8515 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8516 +tp8517 +Rp8518 +sa(dp8519 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8520 +tp8521 +Rp8522 +sa(dp8523 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8524 +tp8525 +Rp8526 +sa(dp8527 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8528 +tp8529 +Rp8530 +sa(dp8531 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8532 +tp8533 +Rp8534 +sa(dp8535 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8536 +tp8537 +Rp8538 +sa(dp8539 +g4 +g5 +(g9 +S'\x00\x00\x00\x00\x00\x00\x00\x00' +p8540 +tp8541 +Rp8542 +sa(dp8543 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8544 +tp8545 +Rp8546 +sa(dp8547 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8548 +tp8549 +Rp8550 +sa(dp8551 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8552 +tp8553 +Rp8554 +sa(dp8555 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8556 +tp8557 +Rp8558 +sa(dp8559 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8560 +tp8561 +Rp8562 +sa(dp8563 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8564 +tp8565 +Rp8566 +sa(dp8567 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8568 +tp8569 +Rp8570 +sa(dp8571 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8572 +tp8573 +Rp8574 +sa(dp8575 +g4 +g5 +(g9 +S'\x01\x00\x00\x00\x00\x00\x00\x00' +p8576 +tp8577 +Rp8578 +sasS'texts' +p8579 +(lp8580 +Vwhen the time comes for all to know it will be to late +p8581 +aV@princessofportk The first are a pair of devil horns, and the second look like a pair of cat or feline like ears +p8582 +aVI gotta feeling they partlishly took it off fomr MIB anime ep form the american unless they took that one off from it, but the story is really different. +p8583 +aVNot a lot of "removing" going on here... bucket teeth removal maybe. +p8584 +aV@qingian they represent HK. but considering how their last names are spelled, i think they are from China. they don't get to represent China because they're not as good as Ma Long, Zhang Jike and Xu XIn. +p8585 +aVPastor Morgan brought a powerful encouraging word to us in that service. I really enjoyed her. To GOD be the Glory!!! +p8586 +aVif that was supposed to rhyme, it didn't +p8587 +aVAbsolutely awesome!! Impressive. +p8588 +aVYeah, because a minute and a half definitely equals 30 sec. +p8589 +aVloved the video joey it was awesome :O +p8590 +aVthis is such a high quality game i cannot believe it. it is a lot greater than mw1. ive only just attained the 2nd prestige ! i'm so delighted. got the game only yesterday evening from mw2forfreeYinfo (replace Y with . ) but im undoubtedly annihilating most people! +p8591 +aVepic song fo sho +p8592 +aVAwesome song Danger Danger rocks +p8593 +aVThis is my favorite song. He told me it's about his guitar. +p8594 +aVreminds me of some of the old timers up here in the hills! awesome! +p8595 +aVi just love him.... a looooooooot..... he's the ideal one... +p8596 +aVYOU ARE MOST WELCOME.... and if you have any questions, I am here to help. +p8597 +aVinfinite possibilities, thanks for postingone love :) +p8598 +aVi love this!!!! way better then the original :D +p8599 +aVit's "phenomenon" by thousand foot krutch +p8600 +aVIan gillan is the best........ +p8601 +aVlooks like we're not guna see kenpachi 4 a couple more episodes +p8602 +aVCHocoolate! :D +p8603 +aVi eman 1st best 1 the 3rd 1, 2nd best is the 1st 1, 3rd best is the last 1. +p8604 +aVlol +p8605 +aVomg how old is the youngest one?shes really good at guitar :Dgreat job :D +p8606 +aVfantastic quality thanks so much +p8607 +aVThis is really cool, I hope you publish the book, I'd love to read it. If you don't mind, could you tell me what the name of the very first song is. Please and thank-you.5 stars btw +p8608 +aVListen, fuck off. Just because you have something that is "yorkshire" does not mean you have to put t' in front of random fucking words in your desription. Yes we do it but not as fucking much as that. Do you do the subtitles for coronation street? Because apparently lancastrians do it all the time aswell +p8609 +aV@bullawaya I never said anything about a one time experience or calvin or spurgeon. +p8610 +aVsucked so bad +p8611 +aVhella dope! +p8612 +aVEven in 8 bit this music rocks. +p8613 +aVwatever kid u dont know wat the fuk ur talking about ur stupid y would u say that if ur username is Osiris +p8614 +aVNOW THAT'S AN OPENING TO A VIDEO. +p8615 +aVMY FAVORITE MYRTHA DOES IT AGAIN. +p8616 +aVsuperba .... +p8617 +aVLove this scene. F&F are the best couple. +p8618 +aVInstant Classic. Boon where are you playing all your synths from? +p8619 +aVTears in my eyes! I wish they would've talked at least a little about Secretariat's relationship with Eddie Sweat- his indespensible groom! I seriously cannot wait for the movie to come out this fall!! +p8620 +aVREPITITION: CHANGE CHANGE CHANGE CHANGE "YES WE CAN" YES WE CAN YES WE CAN LMBO. They're all the same and yes THAT IS TRUE but I have to say the end is near I've never seen as many people mind controlled as with who the NWO just put in power SMART MOVE ON THEIR PART STUPID PEOPLE TO THINK HE IS DIFF. THEN BUSH THEY WORK FOR THE SAME PPL. +p8621 +aVyou would get raped by cross fire. +p8622 +aVlmfao 9PRELUDE. +p8623 +aVif you wanna help go to thedenanproject. +p8624 +aVI cant believe anyone would thumbs up Hernje on anything. +p8625 +aVI know right!!Workout music!!! I 3 Kandi!! +p8626 +aVso do you think black holes definately don't exist or do you think they may or may not exist? +p8627 +aVIf you like this, check out Quantic. +p8628 +aVPEACE ! +p8629 +aVThanks. :) +p8630 +aVlove the tennis match ,, great video ty +p8631 +aVThis is a song that was a signature song for Average White Band that hit the souls of my youths growing up in the city during the 70's. I know, because that's what it did for me and my friends. +p8632 +aVhaha they're hilarious together! thank you for subbing ) +p8633 +aVnice vid +p8634 +aVhe's so sweet! i 3 himmmm! +p8635 +aVYou looked very nice. +p8636 +aVOne of my favorite's by Joanna. She's simply an amazing Musician. +p8637 +aVShe's so beautiful! +p8638 +aVsimply incredible. +p8639 +aV@BritishWarLord . ur a fag +p8640 +aVcompliment: you have beautiful eyes!! and pretty long lashes too! :) +p8641 +aVNice job! :) +p8642 +aVfucking cunts. +p8643 +aVWill is so talented! He is also my cousin lol +p8644 +aVOnly when we remember our "inalienable rights" were granted to us by God and not man will we be immune from the brainwashing this documentary uncovered. Those "crazy" psychiatrists proved that the inmates are often running the asylum. The Bible could not be more accurate in describing the human heart as "wicked & deceitful". We are selfish, play "mind games" and try to dominate each other in our families & also internationally. Our only hope resides in our humility and love of God. +p8645 +aVTommo is a cockflap. There's shit-all chance of 6 Music being cancelled. +p8646 +aVNPNS - No Plug, No Sale! +p8647 +aVIt's all that damn clown's fault,!!!!TWO FUCKING DOLLARS MAN!!!! +p8648 +aVa jolly good show +p8649 +aV@itsDezz101 so do i. :o +p8650 +aV@0rima1 Thanks for commenting and watching! +p8651 +aVthis video is really cool +p8652 +aVLol... Onion is great... +p8653 +aVwhere is the clap!!! that is my favorite part!!!!besides the build at 4:27. the release at 4:45 gives me goosebumps.... +p8654 +aVThats not Texas for you Thats 100% Shamrock right there..... I lived in that town for 3 years and it was a hell hole +p8655 +aVThese ads are becoming parodies of themselves now. +p8656 +aVthanks for posting all of these Bernstein Mahler 3 movements. This is not only beautiful music interpretation, but also extremely fine filming. What a find for me here. Thank you. +p8657 +aVyou can get this on anime-online.c()m for ?1 if you want, its good. +p8658 +aVi agree, the last minute and a half is musical perfection. I listen to all genres and I've never heard anything as beautiful as it sounds. It's what I imagine being played in heaven. no joke. It really shows their evolution as a band. +p8659 +aVI Love you man. Keep up the great work. '?Let your food be your medicine, and your medicine be your food ?" - Hippocrates...OG gangster.PS: Read Eat,Pray, Love +p8660 +aVU r a weird spaz +p8661 +aVdatwaz rubbish never seen something so rubbish balddyyy +p8662 +aVChild, you are such a talent. Love your work and your soulful vibe.Kathryn Keats +p8663 +aVthank you very much! +p8664 +aVHow come there are only guys? Strange...something is being hinted here... +p8665 +aVI love synthesizers! this song is so uplifting and beautiful ) +p8666 +aVOMG ONLY 47 VIEWS! +p8667 +aVhe is a perfect presentation full package +p8668 +aVba ba booyah! go SPOUSE! +p8669 +aVOne of the greatest displays of the human spirit in the history of mankind. The world will now look to Chile for inspiration. They did the impossible, all the trapped miners and rescue workers showed the world what unity is all about. +p8670 +aVI've already done so, several times in fact, and all you do is keep citing the same discredited studies, links, and 'authorities'. And you've now expanded your bloviating to include 'every science academy on the planet'...Superlatives such as THAT are concessions on your part...as everyone can see. +p8671 +aVUsual leftie, foaming at the mouth crap. National Union of Teachers - in other words commies who hate their own race. Thank God for the BNP. Come on Nick, let's get you into Westminster and really sicken them. +p8672 +aVAHH im the first to comment aswell!love it roddie +p8673 +aVhey i seen that tractor just last week ) i got a gold key tour there. wach our 9430 be built +p8674 +aV...but an Ideal Standard (1980s batch) handle :-) +p8675 +aV@BudPeters44 Are YOU fucking stupid? You SERIOUSLY believe in a worldwide flood? Like, 2 by 2 the millions of different species of animals skipped onto an ark? Didn't kill eachother, had enough food for their specialized diets for 40 days and were appropr +p8676 +aVThat's amazing! Now babies and young children can swim by themselves. +p8677 +aVEven though I didn't know it at the time, living in Silver Lake in my early 20s was one of the best experiences of my life. I was going through some hard times back then, and if I hadn't been in such a tolerant, laid back community, my troubles would have metastasized. I will be forever grateful to the community of Silver Lake for giving me the space I needed to become the productive member of society I am today. +p8678 +aVI keep coming back to your performance of this magnificent piece, surely one of the noblest in the organ repertoire. It combines youthful exuberance with a remarkably mature msical insight. A fine organ, too - but I would love to hear you repeat this on a real Cavaill?-Coll - St Sulpice or St Ouen, for example. +p8679 +aV@thecomicbots Nice!!! +p8680 +aVA Tribe is the effen best +p8681 +aVyea I hope she's alright +p8682 +aVShe is absolutely awesome for a 3 year old. It is amazing that she was able to memorize that whole routine at her age. However, I must agree with a lot of the posts. Her poor neck and spine take a lot of impact when she lands on her head like that. I bet a doctor would cringe if? they saw her do that over and over again. Hopefully she won't have any neck or back pain later in life from this. That being said, you are awesome little lady!!! +p8683 +aVWow the blonde girl is super yummy +p8684 +aVi love this song!!! This video is great! +p8685 +aVGenn is made of magic +p8686 +aVNo problem! :] +p8687 +aVso good! wonder what nick is going to say? +p8688 +aVNo way! I played against T Rey at SD Team Tourney years ago (98 ish). And Ahart? Love the shorts and moustache combo! Diggin these old skool vids!! +p8689 +aVOMG SSSOOOO CUTE :) he looks like my baby yorkie when i got him :) hes a year old now my babi :P +p8690 +aVyou try cooking while giving a presentation, u dick +p8691 +aVWho can watch this? +p8692 +aVfor earth day, i celebrated by . . going to my local deli, purchasing as many sandwiches as possible, throwing them all in the trash, then taking those styrofoam boxes and digging them deep in the earth in various ity parks. it was awesome. i felt good afterward because i knew i had done my part that day!! also took all the non-biodegradable trash from my garbage and strewn it around as many school gardens as i could find.it truly was a WONDERFUL earth day!! yay!!!! +p8693 +aVGlad you enjoyed it and thanks so much for the kind words! +p8694 +aVTry warpin Rodney Mullen and his tech skate style +p8695 +aVLove it! Is the kid Chris' son, maybe? +p8696 +aVI love this show. +p8697 +aVDude, this is really good. Indeed, the theme music raped my ears, but this was exactly the kind of thing that needs to get posted more often. Bravo. +p8698 +aVWONDERFUL +p8699 +aVOMG, I had no idea...I'm soooo loving this, Wes! I've been into Grass since I was 15 (preferring BG festivals to rock concerts) and loved The Birchmere back home. +p8700 +aVGood Job. +p8701 +aVi didnt ask u to watch it or comment it so shut up it aint my fault u thought it was porno or something well srry 2 dissapoint ya perv +p8702 +aVyou're horrible lol, fucking clicker go die +p8703 +aV2:27 jojo! :D +p8704 +aVBad audio :( +p8705 +aV@5796 I really don't like Ten Chances because players waste the rest of their chances on the 2nd prize. +p8706 +aVNiceee +p8707 +aVOMG That Trey is so fucking sexy +p8708 +aVhow did iran get the S-300!!! please!! +p8709 +aVgreat video +p8710 +aVgive me the live cow right over the table ill carve off what i want and ride the rest home dum dadadumdadadum +p8711 +aVKim K. recommending Kim S. was sufficient enough for me to get interested. I have been using a modified Snider Investment Method for the last 3 years very successfully. I am very impressed with her both as a system builder, and a financial advisor. Thanks goes to both Kims.Glen +p8712 +aVLike you wouldn't believe. That man makes me want to buy out a BB&B store. +p8713 +aVum...... +p8714 +aVhe is awesome and i now enjoy the cod 4 game play wayyy more now.... +p8715 +aV@Guaranch pufffffff ... blah blah blah.. girl is your dad,jerk! +p8716 +aVAWESUUUMMM!!! first comment! +p8717 +aVfml +p8718 +aVIt's raining asbestos on them +p8719 +aV@celest143 me too :) will watch a few mins :D +p8720 +aVoho, nice ;-) +p8721 +aVcool +p8722 +aVThis is a cool video. +p8723 +aVCool David +p8724 +aVSome great info! I'm very excited to see more talks from this year get posted! +p8725 +aVinspiring +p8726 +aVawesome! +p8727 +aVI WAS THERE I MET THE AFTER THE CONCERT!!!! hehe THEY'RE AMAZING!!! +p8728 +aVThat last "Tun tun tun tun tun tun!" Cracks me up xD +p8729 +aVI think we all know that the trumpet player was excellent but man on man, the orchestra backing him up was superb. Very musical and followed all the dynamics....true professionals. +p8730 +aVartistic... talented man +p8731 +aV4:15, pretty cool moment. +p8732 +aVi just love this song , very goog song :D +p8733 +aVso wonderful job! +p8734 +aVMy favorite part was the ending with Jack saying "Did you miss me?" Nice! +p8735 +aVA knob wow How old are u kid like 12 what would your mom say if she knew u were using that kinda language .go get a life +p8736 +aVBeautiful! +p8737 +aVyeah they would be able to engage +p8738 +aVraven needs 2 c'm back eric young sucks i wanna c him leave tna g2 shitty wwe +p8739 +aVGreat style. Really smooth and clean. +p8740 +aVits a CHICKEN!!! and yep. 50 bucks. :) +p8741 +aV:D yugioh references lol +p8742 +aVawesome +p8743 +aVAs did I +p8744 +aVMake that 4 people. I hated that guy! We were glad to get rid of him +p8745 +aVMy favourite ballet. The second act is the best bit, (if there is one!) Thanks for sharing. +p8746 +aVthat was great fun rick. you are are a fun host too - cracked me up. also great questions and all that. !!! +p8747 +aVYou are most definitely an open channel! Your videos just keep getting better and better. Your sense of color and balance is amazing. +p8748 +aVRobin Hood is my favourite one!:-) HAHAHA +p8749 +aVdara is not only cute or sexy 2ne1 is not the same like others group they are the best because they are not just cute ,pretty ,sexy unlike the other using that effect but 2ne1 they have everything sexy ,cute, pretty ,hot ,cool and talented !!! go go go dara park and 2ne1 +p8750 +aVThere is a song here that every country music fan can relate too sometime in their life! Thank you for your great uploads!!!!! +p8751 +aVThanks for helping me against that heavy.0:49 +p8752 +aVGreat video!!! +p8753 +aVHello? (it's the brain) +p8754 +aVdizaster sucks +p8755 +aVSex, drugs, rock-n-roll !!! +p8756 +aVvanguard of justice my ass more like the vangurd of low down cheating mother fuckers +p8757 +aVyou couldn't be a Libertarian and believe the way you believe +p8758 +aVthis is my new favorite super furry animals song +p8759 +aVtotally agree with you. liked them for a couple years now. +p8760 +aVyeah its totally worth it +p8761 +aVSo Dope...!!! +p8762 +aVCharmed LOL +p8763 +aVi was a little kid when i heard this song in my moms cd's. i dont remember how old i was but i remember i didint understand the words to well, but i fell in love. i fell in love with the music and the words my small brain could pick up. great era of music. +p8764 +aV? this swucks +p8765 +aVGreat video Steve! I remember the first time I read John Muir's description of the ice cone, I was amazed by it. To see it through your eyes is pretty cool. Love the time lapse of the creek too. +p8766 +aVThank you! :) +p8767 +aVlegit +p8768 +aVyes +p8769 +aV@ln4359 havent played since i broke my wrist last year.....its still not 100% yet.... +p8770 +aVI cannot thank you enough for this incredible information. You are living proof that the raw food diet is miraculous. You are SO beautiful! Thank you so much for your example and for being such an inspiration. I want to look as beautiful and be as healthy as you are! +p8771 +aVthat is the best video I have seen on what the argument is.Thank you +p8772 +aVlaureen cheated laureen cheated she cheated FUKIN cheated +p8773 +aVwow neon another episode your uploading alot today +p8774 +aVi think im in love.. lol +p8775 +aVtry and make ur vids more clear +p8776 +aVwhy do you have that if you don't have 2 +p8777 +aVLove the AMV.OMG. That's my TV! :O +p8778 +aVon thing to say to cobra commander cooooooobra. +p8779 +aVgood job! +p8780 +aVI luv this film +p8781 +aVPITIFUL that the federal govt doesn't give a damn about the very folks that voted them into office. It's absurd to enforce a regulation/law that REQUIRES a pharmacy, OR ANY BUSINESS, TO OPERATE BELOW COST! This is just plain WRONG! As we say in the South- That dog won't hunt". +p8782 +aVaww shes so cute ny little brother does this too +p8783 +aVwow, sickest commentary ever, he's playing assasins creed on gow2! loool +p8784 +aVwhich is what i origionaly said obama is waisting all of the tax payers money spending waaay too much and not spending they way he should. +p8785 +aVthis is the best PCTS live show ever +p8786 +aVsnoops fucking baked +p8787 +aVCool. Good job! And dope tracc! Straight up G shit!Thanks 4 tha upload! +p8788 +aVWow your lyrics are awesome :D Love the key of awesome. Always entertaining +p8789 +aVlve daa song ;) +p8790 +aVyou'll always mean so much to me.........thank's for being such awonderful friend......I'll just keep right on proving that good friends were meant to last.... +p8791 +aVWhy is Jack seemingly nude when he's scared? xD +p8792 +aVi completely just fell for you.....you i will see in namibia. +p8793 +aVflorence is my favorite city in the entire world...and, believe me, i've been around. i LOVE LOVE LOVE that you were so slow and deliberate in your filming of my favorite city. i wll visit your post ofte...and wish i were back in the land and city that i love! gracie! +p8794 +aVYou freak! +p8795 +aVlooks damn good! can't wait to see it! +p8796 +aVgood +p8797 +aVYou GO girl !!! If everybody were a diva then asshat CEOs might get their act together !!! +p8798 +aVAwesome +p8799 +aV@whatif1999 I like the bit where she jumpes to the floor and it dosn't blow up and then it blows up and she gets back up and when it blows the second time then she jumps well at 3:21/4:10 +p8800 +aVIn the past four years, Bayh collected more than 1.7 million in pre-tax income when she exercised stock options from two of the corporations. Her actual income from exercising stock options is higher, but the details of one transaction were not publicly reported. +p8801 +aVAlison Moyet's looking bloody terrific! Wowser x +p8802 +aVcavs have a terrible bench, pietrus outscored the whole bench and hes a bench warmer as well so cavs are a team that breaks in the playoffs so next season you will see lebron on the knicks +p8803 +aVWhat a beautiful look that I can wear anywhere. I don't recall seeing you use pigments. Do you like them or use them? If so, I would like to see a step by step tutorial. +p8804 +aVtapthattoast (jeezechesse)is like a super star so is jeezejess and jeezecheese +p8805 +aVI used to watch this when I was younger! Good times... lol This was one of my favorite episodes! +p8806 +aVConan's such a class act. +p8807 +aVDamn nice +p8808 +aVHaha, wow. +p8809 +aVThis is awesome +p8810 +aVssatish112233: another 23 yr old moron on YouTube that don't know shit EXCEPT he's a white boy trying to be black, lol, got all the Dre and Snoop joints in his lowrider, ,lol. You're a fawkin disgrace to this Country. Get a clue, read something like American history... Fawk off moron. +p8811 +aVi love being busy too! as a college student, i get my water in SOOOO fast if i I bring it with me to classes. when I sit at home, I drink diet coke. Haha. If I bring my water, i drink it as I am bored in class. :) love it.anyways, you go girl. stay busy, its good for our minds! just start eating some more calories and keep doin everything else. you look great and will do great at your new job! congrats!ps- love those earrings! +p8812 +aV@azamatbagatov your a faggot.case closed. +p8813 +aVThat is a very interesting vid really +p8814 +aVLove it +p8815 +aVYou're good at this! +p8816 +aVThank you for posting this, the quality is awesome! +p8817 +aVcool +p8818 +aVwho's the hot guy with the goatee ? +p8819 +aVAwesome. Keep it up bro. +p8820 +aVMan this song is truley amazing ) +p8821 +aVWow, I'm very impressed. I actually felt my chakras and as I let the music take over I started to 'see' patterns like the patterns on the vid! Great work! I think I'll wait until you create that dvd for the best quality. I heard that compress music degrades the quality thus degrading the effects of the music. My friend told me they did a study on plants where they played analog, cd, and mp3 quality music and mp3 plants grew the least. Anyone hear about this study? Thanks again! +p8822 +aVHi erik!!!!! +p8823 +aVthen you'll be happy the rest of your life. +p8824 +aVWow Hadley, this is really interesting. +p8825 +aVholly shit I like that!! +p8826 +aVShe looks real!thanks.sahit. +p8827 +aVok, i got to watch this again today, and I have to say I love it even more! The music and scene selection was perfect and tied together very nicely, and I like the little effects in this that made a big difference! This is one of my favorite videos for A tale of two sis. 3 +p8828 +aVsooo boring +p8829 +aVif looks could kill is such a good song to blasst in my car +p8830 +aVAlan is a douche bag! Does he actually think he's charming and witty enough to win over Nat? +p8831 +aVI wish I could pull on your beard! +p8832 +aVthats awsome. +p8833 +aVSorry, but i think you have the wrong Chris. Or you might just be messing around. +p8834 +aV@FintyWalsh lol yeah. that made me laugh so hard. I love the ending scenes. +p8835 +aVdid they cut it down because of the lightning strike? did it kill it? +p8836 +aVLove this guy! He left us with some great music. Thanks for sharing this! +p8837 +aVGood Luck 2009 You are the Future and the Present ! +p8838 +aVat 1:55-1:58, that kid got embarrassed! +p8839 +aVew Derwin... +p8840 +aVrofl best version of bohemian rhapsody ever! +p8841 +aVah, but what is the point, stripped down to what it is? the point is: the poor people are being fucked over by the rich people. that's what it boils down to. the rich buy our legislators and make our laws. we are owned and as long as we can go home and watch the game and drink and eat too much, we'll buy in and go to a job we hate which makes us miserable, and be led right along the path they want us to take. like good little sheep. +p8842 +aVlook at my videos lol xD +p8843 +aVWhoaa that's awesome! 5/5 +p8844 +aVThat's just too adorable! Congrats! +p8845 +aVlets chat +p8846 +aV@Mr0Whitey wtf if you go on any revision 3 program you will get adverts +p8847 +aV@clautucans That is great to know D +p8848 +aVKinda like being "gifted" a lap dance, eh?! LOL +p8849 +aVbut there is one thing i always see i never see a bear or a roach or a tiger beeing possesed by a demon "ONLY" humans! and they same thing we do eat sleep and shit and fuck i wish i was a animal they seem to be the only ones not having problems start looking at the whole picture instead of just looking at humans +p8850 +aVnice point .. about the chimney.. maybe he was high on grass +p8851 +aVI LOVE YOU MA, +p8852 +aVXD lol i always love doing that 3:46 +p8853 +aVProbably my favorite line of the track. +p8854 +aV@nor888vast695 She was smart. +p8855 +aVA very nice rendition of Ivor Novello s song by a wonderful singer, lets hear more. +p8856 +aVKeep it coming!! The congregations need more of this. It is pure music, singing and lyrics truly praising Yeshua the Messiah. Also, very TRUE to the Scriptures. Just beautiful, Ms. Davis. Bless you. +p8857 +aVI used to work with Cami in the wacky world of advertising. She's is an extremely talented writer and the book is well worth reading. +p8858 +aVOh. I was asking because of the "deja-vu" thing.Anyway, if you like this, subscribe, as more's to come. +p8859 +aVThe guitarron is usually tuned an octave below a guitar. Simon Edwards, the guitarron player in this clip, left the ukulele orchestra to form Fairground Attraction and had a hit with "It's got to be perfect". The left handed blond ukulele player is Andy Astle, one of the founders of the orchestra, currently working with "The Band of Holy Joy", and teaching ukulele. +p8860 +aVIf we own gold do you not think there is a possibility the government will repossess it like they did during the great depression? +p8861 +aVI love the end. +p8862 +aVAaah.what a guy,one of a kind.RIP Mr Miller x +p8863 +aVWe are looking for Medical Cannabis users to post up reviews of their favorite dispensaries! Google MMJSpots and register. 10 Posts gets you 2 stickers! +p8864 +aVI'm a fucking retard, I know. Can you send me a link that will send me directly to the toolbar download because I can't find it any where for the life of me. +p8865 +aVHey! +p8866 +aVLove soup :D +p8867 +aVI agree.All of Dr. Larson's stuff is very interesting, and does not seem to be well known among main stream medicine. +p8868 +aVcool. first to comment? Rowan Atkinson kicks all ass! legend! +p8869 +aVVery good cover version and your lookin fit in your video. +p8870 +aVola liana +p8871 +aVshe is coming to America???YAY! X) +p8872 +aVthey should have a ust contest on cape cod !!!!!!! +p8873 +aVMan, I looooooooved this show when I was a kid. So awesome. +p8874 +aVIt was done at the Ponca City, OK store. +p8875 +aVamazingness lol +p8876 +aVsounds like a cummins jesus +p8877 +aVThanks for watching! +p8878 +aV@gurglepuck111 why do you despise them?? +p8879 +aVthis is my favorite game, i cant think of anything better.....to me this is better than any of the new games...cant wait till the second one +p8880 +aVbritish marines: awesome +p8881 +aV@5deadspace Update your graphics card's driver software. Worked for me. +p8882 +aVAnother good one LORC, its funny - people also seem to turn red when I'm around them as well! +p8883 +aVhey I like this song because god has really favored me +p8884 +aVi love dis song! +p8885 +aVThanks :D +p8886 +aV@1blackone I'm 6' 1" I just bought one, love it, get one quick, their goin fast +p8887 +aVLOL!! Excellent! +p8888 +aVI must admitt.. This is definitely the best Kobe vid I've seen on youtube so far. 5 stars. +p8889 +aVThey want us to afford them the protection of our laws but at the same time, they will deny you even the basic right to free speech. Don't be fooled. Islam is here to become dominant. +p8890 +aVPlease view my new Tree of Life video. Thank you. +p8891 +aVFantastic 3 +p8892 +aVactually the adventures of sonic the hedgehog and SatAM where both on mobius, as where sonic 1-3 +p8893 +aVHow dare you say that catholics secretly worship Lucifer in your comments. It makes no sense whatsoever and shows your research is flawed. Masonary, Theosophy and many more (self admittedly), but Catholic dogmas are anything but secret and completely anti thetical to what you suggest. +p8894 +aV4:57 LOL +p8895 +aVThe story of the Mini Gateic Bypass is very inspiring. And I'm a happy patient +p8896 +aV@DaRxGuY Get All Black Ones.. Or Cortez +p8897 +aVman that's good way to practice (with the boards and all) wouldn't have thought of it +p8898 +aVWhat about princesstard? +p8899 +aV@Retter81 me too ;D +p8900 +aVListen to Ryan Canning's first set on you tube for a great rendition of fiddlers rally +p8901 +aVim gonna make this tmrw tnx +p8902 +aVVaccines kill and mame too , my 13 yr old son is autistic from the vaccines the THAT truth the GOV is stil tring to cover that one up. yes- they are out to destroy a drop the population- why did she not tell us"where" a safe place is to go with our families?... +p8903 +aVMon Scotland!!! Love this makes me cry laughing you rock xxx +p8904 +aVlove this song, perfect for me and my boyfriend's long distance relationship +p8905 +aVLol! :D +p8906 +aVAWESOME!!!!!! +p8907 +aV@Elitekiller72 this is my sisters vidio right, so dont comment anymore cause if ur bored then dont comment or watch simple as............ ok +p8908 +aVWell done. +p8909 +aVbrillient +p8910 +aVmmm sexxy daddy come to my house ;) +p8911 +aVOne of my favorite places in the whole wide world. Thanks for the vid. +p8912 +aVannoying ass commentators, thick accent not being eloquent at all repetitive, dude needs a speech therapist. +p8913 +aVYour really beautiful ! +p8914 +aVall about THE ORIGINAL....just like BOBBY!!!!!!! +p8915 +aVyoo probbally didnt get fsx then +p8916 +aVi was there today!!! +p8917 +aVi like your dogmy puppy has started responding very well.he doesnt always but most of the time he does.his name's Keo +p8918 +aVWELL PUT TOGETHER, 6 SONG CLIPS IN 1 DEMO MIXHOPE YOU ENJOY THIS THANKS. +p8919 +aVyea me 2 dat would be the best thing ever +p8920 +aVPLease try to upload The Sword in the Stone +p8921 +aVI like your cover of this song -- the reverb on your voice and slow acoustic guitar sound great together. +p8922 +aV@bugman05 i agree +p8923 +aVWhat a yummy video! I'm glad you enjoyed yourself.:) +p8924 +aVvery pretty patterns 0:52 - 0:56 +p8925 +aVThanks so much for putting these up. +p8926 +aVlol! exactly. +p8927 +aVbryn ..the superhero....fantastic stuff... +p8928 +aVPaul mate. Loved that interview!!! +p8929 +aV@kylhul81 Saying oil is going up...Is child play. Anyone with just a gram of knowledge knows the direction of commodities when you print too much money...as gold goes so does all other commodities. +p8930 +aVget out of my office mr.sob i should try that sometime +p8931 +aV@yogitavijay you are a fucking retard. If shiva had some chickens get eaten he would turn them into boots to you retard! Your a bleeding heart loser and I'll bet you are a hypocrite as you are most likely wearing leather shoes and eating meat from an anim +p8932 +aVThat's a nervous chap .... +p8933 +aVhow do i seperate my higher self from my physical mind?is there examples for this triangle?how can the physical mind be in charge of your selfcan someone please give me an example of this triangle in action? from where the physical mind perceives the the brain receives and the higher self conceives +p8934 +aVG. Bush was a total frailer. But look ad you president Obama, you are my inspiration, here you are ad your best, this speech was the best speech I have heard in a life time. It applauds not only the great students but also for the US nation and all regions on the world. +p8935 +aVThese kinds of lies don't work anymore. +p8936 +aV@lovelydove,I just went to your channel & saw your "favorites." You listen to George Bloomer (a false prophet)? & you're interested in hatha yoga (a demonic practice from Hinduism)?? ...No wonder you called my comments "negative"....you have itching ears +p8937 +aV@ECOOL76 only the Very Special ones +p8938 +aVDon't even notice that there's no bass. He gets a hell of a sound out of that thumb of his. +p8939 +aVI love these guys! +p8940 +aVget it kidds.they lookk likee they having fun! +p8941 +aVPINGAS...ANOYYING +p8942 +aVMy wife and I have talked to him a few times. Seen him at a few rallies and Albuquerque. Trying to talk his parents to come to EAA in Oshkosh WI. Great guy just like his parents. +p8943 +aVDisgusting. Our country is in ruins. +p8944 +aVI bought 300K in gold 3 years ago on Peter's advice (bullion). I bought it at about 580/oz if I recall.Smart people listen to guys like Peter Schiff, Alex Jones, Ron Paul, Joesph Stiglitz, to name a few. +p8945 +aVblues are pretty (: +p8946 +aVI was there when these two guys did this... the whole thing was sooooooooo funny!!! anyone have the whole thing? amazing video though! +p8947 +aVPlzzz #7!!!!!!!! +p8948 +aVthis is just the best, Ratt fan 4 life! +p8949 +aVFreaking awesome!!! Isn't that crystal right thurr??? Lol +p8950 +aVI shot this to show on a big screen at the West Cliff House Owners' Association AGM in the Salt House on 28th April, so folks had something to watch before the meeting began. It was at the time Google was in the headlines cruising round the UK with car-cams, so it was topical. As for opening the gate, I wanted the cruise to be circular so it could run and run. If you look carefully, you'll see it was patched together from 3 separate runs! +p8951 +aVLL Cool J and Eminem disliked this video +p8952 +aVO__OThe masking is perfect! I don't know how you did all that without your hand falling off. ;DI loved it 8D +p8953 +aV@noobkiller329 How can nasty looking women be prostititutes? +p8954 +aV ) r.i.p outlawz for life +p8955 +aVTheshroomery check it out +p8956 +aVI was in Mitre Square on new years eve. There is an atmosphere, even today.Thanks for the video. +p8957 +aV@Cdubzhappy: lmao....oh but acid is so much funner. +p8958 +aV@clehneis then dont watch you moron. +p8959 +aVI didn't even watch gh back when helena was around, but I have seen clips of helena at her best. I LOVE HELENA'S RETURN!!!!! +p8960 +aVdinho atheist evangelistIf you think hitchens is not a hater you are in serious denial.enlighten yourself with thiswatch?v GMsjWb975tM +p8961 +aVi so agree!!! XD This may be the best anime i watched this year!!!! seriously it just keep gstting better and better every time i watch a new anime.....i wonder if this is a book? i hope so cause i would TOTALY buy it!!!! XD +p8962 +aV@AndreMitStrich because andremit they don't like to hear the truth +p8963 +aVAlso viewable; SHEER PRIDE Ghost dance, VIBE Everyone's a Winner, VIBE Rescue Me, VIBE I Believe, FORMOSA Metal Guru +p8964 +aVawesome vid ] +p8965 +aVI love Madoka!! And such a nice song :P +p8966 +aVVery pretty. What is your hair type if you don't mind me asking? +p8967 +aVA Classic in the world of Comedy, the writing, storyline & acting all come together flawlessly which very few films of any nature even come within a mile of doing. +p8968 +aVgreat song +p8969 +aVthis is y i LOVE maryland football +p8970 +aV@666fannyfart what rubbish. you are not a doctor. +p8971 +aVBy the way, your opening is awesome. +p8972 +aVStupid ass bitch ass mother fucken ass reporter +p8973 +aVI dont like this album much at all, theres only 4 or 5 songs on it that really stand out to me.. Theres not enough heavy stuff on it +p8974 +aVbest show ever!!! he's sarcastic and hilarious! +p8975 +aVGorgeous +p8976 +aVhe can die from that he can overload his stomach causing it to push his lungs and ribs suffication and it pops +p8977 +aV@TimothyParadox1 It should involve Gordan, but just in basic speech. It should follow the basic storyline of HL2, but focus on the soldiers life, not the actually game. +p8978 +aVCan I move in with you guys??? :3 +p8979 +aVR u a mac professsional artist? Cause ur really good! +p8980 +aVmay allah bless him jannah may it give reflect humanity peace and light +p8981 +aVhe needs to start doing stairs +p8982 +aVare rude comments by ignorant people really needed? there's an option known by most people to put the volume on 'mute' or turning the sound off. hope that's not too difficult for you to figure out. +p8983 +aVthank u 4 uploading!!!! P.S i am makeing flan now!!!!!!!!! +p8984 +aVJust once I would love to do the Monkee walk with some friends like this -- just for the fun and laugh of it (can we throw in the Monkees too? -- LOL). +p8985 +aVlike itt 3 3 +p8986 +aVGO CHUCK GO CHUCK GO GO GO CHUCK! +p8987 +aVfemale seeking a married sugar daddy +p8988 +aV@vanityvideo just because i dont have a mac doesnt mean im not smart. i bet you can barely grasp basic 10th grade algebra. i never said about the right thing, you said the population is dying when its clealy not +p8989 +aVMy pet ferret is named 'Charlie' because of that video +p8990 +aVFreakin' Awesome. 3 +p8991 +aVAnd remember...selena luved donna summers & janet jackson and they were african american so selena is the best person wen it comes 2 lovin different kinds of races +p8992 +aVLangue...langue..... We all have the government we deserve. Somalia is a cesspool, so you have a cesspool for a government. It's at the point that Somalia's Neighbors had to intervene because off cross border raids and the West has too shoot pirates to protect global trade routes. Somalia Is like Retarded child spreading shit all over the walls, which others have too clean up! +p8993 +aVI love this, U keep Me Fallin Head Over Heals :-) +p8994 +aVSend me your direct email in a private message on youtube, and I will email an mp3 to you. +p8995 +aVLOVE the Movie LOVE the Song LOVE Tanner and Nathaniel and LOVE what you have done with IT!!! +p8996 +aVguess that car that will end up splitting in half shouldnt have been there at the time. +p8997 +aVFirst thing first you should learn how to spell .Second who cares that he is bi racial i don't care he is the best man for the job and Powell is free to support whom ever he see fit too i could care less about repbu lick ass there the ones out of touch that's why their not in charge any more because there so out of touch? Get a ged then talk too me inbred white trailer trash cunt +p8998 +aVThis is the winemaker.Always discard the +p8999 +aVIn Sickness and in Health is Pending DVD release. Spread the word to other fan's so we get all 6 series and the 5 christmas specials on DVD. Series 1 will be released soon, as soon as I get the release date it'll be on here... +p9000 +aVGosh , you can feel her Voice !! +p9001 +aVtotally awesome +p9002 +aV@sky466 its a guy called johnny rose, i can't find his version on youtube either though, if thats what you mean +p9003 +aVit look lie a monopod +p9004 +aV4 weeks prior to 9/11 my son and I flew to Brazil, we saw no high security in the 2 US airports through which we passed. When we arrived at GRU the airport was filled with Military, Police, sniffer dogs, security was intense. I asked what was going on, they said there are terrorist threats to airports! Everywhere we went in SP we saw high security, embassies, public bldgs, shopping centers, etc. We returned 5 days before 9/11, still no high security in the 2 US airports...who dropped the ball? +p9005 +aVgroup hug! :D!!! +p9006 +aVCan't quite see the strings! But, they are puppets! Do they Fly? Do not think so! +p9007 +aVwhat is this song called btw i loved it ive watched it so many times before +p9008 +aVThank you Diana for all of them. Loved ithem yesterday and love them today +p9009 +aVI saw Roger Waters performing Dark Side of the Moon and others on July 12, 2007 at Darien Lake, NY, best show ever. He opened with this song, but the visuals were different; in my opinion, way cooler, because instead of a picture, it was the video of the hammers marching along with the rhytum of the music, occasionally changing from white to red, and back. To agree with you, perfect song to open with! +p9010 +aVI was 6 yrs old and my Elementary School bus driver would play it on my bus to school....Cool huh.... +p9011 +aVfirst view comment and rate good video +p9012 +aVThe beautiful story of our origins is bringing us together as the people of the one race... the human race. +p9013 +aVNekoooooooooooooooooooooooooooooooooooooooooo my case +p9014 +aVThe greys are real, this is proofreally nice song 5/5 +p9015 +aVi was looking for this tutorial from a long time actualy i was knowing all the steps untill you load the shader color with the image i didn't know maya actually figure out to load automaticaly all the image sequence to be corespondent with frames , and i ceck lots of tutorials and you are the first one ho do this thanks alot ,i configure the plane diferently and maya does the calculation for me ,i drop the plane then i go in inputs with 3 height 2 and after i scale x and z:8 to optain 24/16 +p9016 +aVwhat a horrible dream! +p9017 +aVNow live in USA , but proud to say I come from a good English navy family. Both Grandfathers Father and about eight other family members. +p9018 +aVAmericans are thick...believe me, I've been living amongst them for the past ten years. +p9019 +aVsad thing is, is that this will probly happen in real life +p9020 +aVwow what a super fabulous Mum you are..your children are sure to have some fantastic keepsakes..you are so creative and talented i love all your work +p9021 +aVIt realy touches u if u think how much theyhave and how much we have today in america...I saw it at church a week ago and I cried its realy sad...my church is rasing money to build and fill a fresh water well in Kenya...and we are almost there! +p9022 +aV@10cx thank you :D +p9023 +aVget fucked yankee boy i aint no helpless woman or child you think you can bully so go fuc yaself...ok YA! +p9024 +aVNo kidding, I remember my first video camera, lol! +p9025 +aVWhat would be the first step to ask a girl out ? +p9026 +aVJust because something affects society doesn't classify it as a "social issue." Every issue affects society, so by that logic every issue is a "social issue" and why even put "social" in there, just call them "issues."lol fuck semantics anyways.Capitalism may be greed based, but that's because we're greedy by nature, civilized or not. Also, calling people idiots for not bowing to your beliefs does nothing to convince anybody. +p9027 +aV@Catherine8raw His immune system was already low before the TB and Hepatitis hit. He had an accident where he cut his knee I believe, when he was a teenager, and he got the HPV infection. But unfortunately his immune system was unable to beat it so he gre +p9028 +aVThe show in general is well... stupid and Michelle just makes it all much worse she's such a loser wannabe Feminist. +p9029 +aVThanks Pascal +p9030 +aVYou guys are legittt! +p9031 +aVthe weapon... the foot ahhh this guy cracks me up. +p9032 +aVHope she catches fire. Her opponent sure handed her a sure fire shovel to bury him with. +p9033 +aVI'm going to take a wild guess and say Eddie long ain't gonna be there +p9034 +aVyuppie flu? +p9035 +aVthis was very informative could you make one for (please come to boston) by kenny loggins?! +p9036 +aVI think you're refering to Rosie O'Donnel sitting next to her. +p9037 +aV@EvilDoR wow. they had better make it so all classes are open to all genders quick or their reputation is going to take a hit +p9038 +aVSounds like your tomatoes aren't being pollinated. Do you have enough bees in your area? You can pollinate your tomatoes yourself with a small paint brush. Just touch each tomatoe blossom with the tip of the paintbrush as a bee would do. You should get a better yield. Also, thin out the bloooms so you only have two tomatoes on each stem. This will allow them to develop into bigger, more tastey tomatoes. Good luck. +p9039 +aVMises' Cable network would be awesome. +p9040 +aV@varunlele lots of rebuilds :S thats wut happeneds in a 2 stroke +p9041 +aVwhat the hell was she doing with her underwear down? +p9042 +aVShe had the voice of an Angel. The moment you hear her you fall in love with her. +p9043 +aVthat park looks amazing +p9044 +aVwhat a beautiful song. +p9045 +aVdude this is sweet this made is so ultra fast its unbelievable thanx XD +p9046 +aVmy little girl cant stop watching +p9047 +aVi love deidara and sasori!!!! *fangirl squeal then faints* +p9048 +aVtru genius +p9049 +aVthats right man homey +p9050 +aVStill my favourite album from Esem. +p9051 +aVI love this video production, even though it may be "amateur". It definitely struck a chord with me, and the narration is perfect in my humble opinion. Great job! +p9052 +aVi have a twin sister and her name is rosemary hope miss rosemary gets well soon she is just a sweetie and sooo is rickey !!!! :0) +p9053 +aVThen Mary's head is lit on fire +p9054 +aVahh man, thats how im gonna propose to my soulmate :) +p9055 +aVwho the fuck said fuck oy nope nigga fuck u oyyy night was gooody +p9056 +aVthe diffrence is in america its not a god in japan it is america changed it to burning gundam becuz it might be offending some ppl calling gundam a god +p9057 +aVAnother great video. Thanks! +p9058 +aVAnd then it got quiet +p9059 +aVI wass theree! (L) +p9060 +aVYou asswipe. +p9061 +aVThanks for your kind comment! I picked this little whistle up in a thrift store for 2 about three months ago, sanitized it, played it once and set it aside - it sounded REALLY rough. Today I took it out and tweaked it a little and I was pretty pleased with the tone. Again, thanks! Looking forward to more videos from you as well! +p9062 +aVthis my straight issh.. she went hard on this.. big ups to pharell for helpin her make this! two geniuses at wk! +p9063 +aVAWESOME THANK U :) NAMASTE SUNSHINE SMILES :) +p9064 +aVsneaky! but not very good loot . +p9065 +aVplease upload this movie +p9066 +aV@philosophic9 we are just starting to show it at festivals so hopefully sometime next year to the public... you can follow the film on Twitter (@rubblekings) for screening updates... +p9067 +aVThere are Anderson PowerPoles that go up to 75W... I try to use Anderson's for everything I do. Just makes everything universal. +p9068 +aVIt's "From Yesterday" by 30 seconds to Mars +p9069 +aVthis video is boring +p9070 +aVI love O Fortuna, its such an epic peice of poetry. I am gonna use it as a trailer for one my videos. I'm not trying to advertise my channel either. I'm just saying how cool this song is. I first heard it on Son of Jackass. I thought the way they used it was halarious XD +p9071 +aVoh man!..... batista and undertaker are two of my favorite wrestlers!!!! +p9072 +aVomg, she is so dumb. +p9073 +aVThank you for this beautiful song. Rest in Peace Monsieur Brel. +p9074 +aVAwesome, I needed a guide on this achievement. +p9075 +aVonly one lyric I'm not sure about that may be wrong due to watching his live performances change in brackets [ ]:You're my bad habit babyYou're myYou're taking my souldown to the level [O] +p9076 +aV1:00 i eat grilled cheeses with a sliced pickle also , i love the contrastin flavor of the dill pickle taste and the crispness of it against the softy gooey and somewhat sweet melted cheese and buttery toasted bread +p9077 +aVI absolutely love this Apron! I think I'll make a couple for my Great-Granddaughters for Christmas. Thanks a bunch! +p9078 +aV: ) +p9079 +aVI like how you're not sponsored. Keep it real. Looking forward to what you have to offer! +p9080 +aVwow, my mind is completely blown. i would give anything to draw like that! :D +p9081 +aVsooo cute....! i am totally doing this +p9082 +aVI love how you can hear people in the audience singing "Cherry blossom girl"They sound beautiful live! +p9083 +aV...and what if the world is really depressing? God didnt heal you? You are speaking to thousands of people and they are listening !!! Spiritually you hang on to Jesus like you never have before. This IS healed !!! You have to hold on to this truth- Jesus died for you when the world didnt care. Onward Christian !!! remember your love for Christ? Shine before the world !!! +p9084 +aVOh, yeah I subscribed and marked this as my favorite. +p9085 +aVI'd fucking kick the living shit out of the driver after the race............... Track him down and pound him down relentlessly..................... Go to his house and fuck his wife. +p9086 +aVGenies in bottles, toothpaste in tubes.... Is it too much to ask, that these "highly educated" people we elect to office can clearly literate their ideas, take responsibility and solve problems? oh wait......yes it is. People who once held these same positions 50 years ago, thought marijuana caused Blacks and Mexicans to rape white women, that "reefer madness" was real.How long can an oligarchy monkey fuck the truth and we stand around and take it? SPEAK OUT! +p9087 +aVBEST EVER!!!!!!!!!!!!!!!!!!!!!!!!!! +p9088 +aVI love this look! Thanks for the vid! +p9089 +aVhaha well said +p9090 +aVLOL cool vid, I'VE BEEN THERE!!!!! XD u guys seem really cool! +p9091 +aVi"m a big fan of the wall and i will tell all of you why the wall is all of me and avrey time i see the wall movey or here th cd and i just get the feling of that i belong to the wall. +p9092 +aVOh, Wonder boy is upset! +p9093 +aVSounds like am saturday lol +p9094 +aVif a man talk about another man when that man aint present that man dont listen.thats true shit +p9095 +aVHee Hee! at 0:03... I see THUMB!Wonderful return bC2! This piece is *so* quirky-cool... sort of a classical-jazz audio-dada-ist set of flavors to it... I think.It's amazing to me how well what you play fits, yet is so distinctly YOU... such versatility! +p9096 +aV@7PietroNe1 +p9097 +aVThanks Yeadon +p9098 +aVI love your vids, keep em coming! Its really great for guys like me who can't get get the game right now! :) +p9099 +aVEvery track on this CD is a masterpiece. Gould playing of Gibbons and Byrd is the equal of his Bach playing. The Sweelinck is also great. +p9100 +aVI was refering to people like "charlesischuck " who obviously thinks he's a present day Einstein. +p9101 +aVThankyou for doing this :) +p9102 +aVhow much did it cost you guys to build that??? cuz i would buy one 4 sure. +p9103 +aVSubhanallah, Love This So Much +p9104 +aVGreat +p9105 +aVbatgammon black???????? +p9106 +aVI tuned my greenwood and it blew up. Not whilst tuning, I mean when I got back to Ganton, some guy jacked it so I kept shooting him and the car blew up. +p9107 +aVyou are completely right +p9108 +aVThanks , looks easy but effective..... +p9109 +aVFantastic! I love Jack Lemmon!! Thanks so much for uploading this. +p9110 +aV@Nintendomanwill Of course that wasn't an experienced audience, his traditional seminar ended before this lecture, probably it should be for undergraduate students, but even today confusion between public and private are common due to keynes, it is necess +p9111 +aVhey mk pur3...FUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUCK YOU +p9112 +aVExcellent video! It does a great job of promoting the Capital District and all of its assets to high technology. +p9113 +aVCool pack....can it fit on the JUMBO VERSIPACK? +p9114 +aVAston 3 iluu xxx +p9115 +aVUgly Organ is by far their best. +p9116 +aVhere's a site ya all will love video2mp3(dot)net you can convert youtube videos to mp3s for free without downloading any programs and you can get the music that you want all the time +p9117 +aVthat was awesome +p9118 +aVThanks for the helpful video, but do you know how to make them run? +p9119 +aVExcelente el video... me fascina...gracias +p9120 +aVEinstein believed in God, you doubt his existance, its obious that you're being foolish right now. +p9121 +aVi am so turned on right now i'm going to explode. thank you for this video. 8-] +p9122 +aVFREE MY BOI BOOSIE......... +p9123 +aVvery very very very nice video add me on gunbound and gunbound, drift, and if u play luminary +p9124 +aVlove this. great scampering music. (right, Karen??) thanks Barbara its a joy to revisit these with the lovely images +p9125 +aVSalaam +p9126 +aVxD I love them. And the midnight ramblers +p9127 +aV@mbt9000 I really don't know but when it does ill put in a new serial key im sure there be more serials key in the future +p9128 +aVanyone who knos bout lockerz pm me ur email and i'll invite you +p9129 +aVthey're awesome 33333 +p9130 +aVhair grew in a hour !! funny looks cute! +p9131 +aVAww Armaan's so sweet it was so cute how he interacted with Minnie! :D +p9132 +aVThis is an awesome woman of God. I am truly inspired to do what God is requiring of me for such a time as this. +p9133 +aVdr.weaver is just plain mean.. +p9134 +aVlove him his sooo gud +p9135 +aVThis is some boring crap. No wonder the youth in America are uninterested in politics. +p9136 +aVlike this stuff isn't market driven? also, since when has size, thickness of paint, all that "grand" oily urgency, ever been an index of how good a painting is...oy. +p9137 +aVthat is pretty damn kewl,, who woulda thought a huge aluminium bridge tough enough to support a abrams! sweeeet +p9138 +aVbitch is crazy! +p9139 +aVHe was almost stopped, and too slow to take off. +p9140 +aVHell yes. Thank you for uploading this video. +p9141 +aVsaw this last night...AMAZING!! really, they all did such a great job!!! i'd go see it over and over again!!! +p9142 +aVthose pics of izzi murder is very nice i wish i could meet her great video and good coise of song u picked for the video +p9143 +aVCheck out DNA activation synchronicity, that's no maybe. The Universe is NOT a "giant maybe"- read about Unified Field Theory - Youtube search Nassim Haramein's work. The time is always NOW, you are not random and "maybe". +p9144 +aVI've seen this shelter and it's wonderful. So much TLC for all the cats. +p9145 +aVi put bon wen in a table of conlangs in the 'conlang' article on wikipedia but it removed it :( +p9146 +aVmy hardware installer doesnt detect it. +p9147 +aVAgreed everyone!! JUST LOVE IT +p9148 +aVthank god for the BBC +p9149 +aVi love ha so much +p9150 +aVweird.... +p9151 +aVdamn Chris! Just when I thought Cosmo was my favorite song from you, I come across this and now I can't decide. Another great original song! And after a second listen, I realized "six lane highway" was a very clever metaphor haha AWESOME. Can't wait to hear more originals! +p9152 +aVI agree with you +p9153 +aVpedicure chairs looks uncomfortable & no massage.. +p9154 +aVAnd another thing: Where do you find these washers? Lowes and Home Depot DOES NOT CARRY these washers. I spent a half of day and about a half of a tank of gas to find a 25 cents washer. God have mercy on my soul. +p9155 +aVthat glass looks like itd really be painful for a human face X( +p9156 +aVJust absolutely beautiful. +p9157 +aV...Morning Musume ft. Captain Falcon XDMan you are the master of H!P remixes. +p9158 +aVthis is my 1st favorite boondox song my 2nd favorite song is sippin +p9159 +aV4:50 kid gets EMP in care package ) +p9160 +aVyoure work is amazing. actually, at school we are doing a thing for "a person you would like to teach at your school and why" normally, when writing i rush through (about 3 lines at the most), but when writing about mark crilley i go half a page! +p9161 +aVVery nice! +p9162 +aVSuperb on the live set too - a great song. SImone Felice has put together a great band - so good to hear his heart ticking! +p9163 +aVthis song is pretty good this is a good song so ill put it in my ipod.......... +p9164 +aVSTOP SITTING ON THE BILL AND BE A AMERICAN! WE NEED A SENETOR AND SENATE THAT WILL STOP THE HOA IN TEXAS AND MAKE US A PART OF THE UNITED STATES AGAIN, HOA IS UN AMERICAN! +p9165 +aVlol,SHUT UP!!!writer rage +p9166 +aVThis car is fantastic! I drove one last week and absolutely loved it! It looks gorgeous, rides so well and is so nippy for a 1.0-litre you don't need anything else! Go for the 1.0-litre manual and you won't even have to pay road tax! Brilliant! +p9167 +aV@Turnback Good response. +p9168 +aVGreat !! +p9169 +aVto hear this song make me go up and dance to the music.Love tradition Khmer dance(Ramvong). +p9170 +aVimma marry her! +p9171 +aVCapitalism is the final chapter in historic evolution of THE TYRANNY OF PRIVATE PROPERTY RELATIONSHIP? of alienation,exploitation and suffering of humanity, a Market mechanism where minority interest is the NEGATION OF OUR COMMON HUMANITY IN COOPERATION and HARMONY. We shall overcome the structure of minority power and oppression and reclaim our l planet for a world of cooperation for our common needs and well being, expressing our energetic creative potentials in freedom of being. +p9172 +aVPart 2 of 9 - After watching it - reconciliation of Lebanese people is a true democracy. Nadin, best ever film directed for the west and east and of course for the whole world. . Truly a great film. I loved it and liked it. Excellent piece of work. +p9173 +aV@yakamuci and your a fag +p9174 +aVso when mr kraft said his ex wife was behind it he knew she was a witch? +p9175 +aVlove the tune from 4:15 to 5:40 +p9176 +aVI find this very captivating, awe inspiring. A very impressive interpretation of the song and it's meaning, where the hell was my animation class in middle or high school? Damn.. I would have loved to have a chance to take that. +p9177 +aVcool vid!!!!! i guess the guy that cut away had his reserve repact due the next day!!!!!! +p9178 +aVomg thats just ....wow i cant even describe how amazing that was BEAUTIFUL AWSOMNESS!!! +p9179 +aVlol how she gonna have makeup on coming out the water +p9180 +aVyes you get it.welcome to my website rotarycuttertools cOm get more info. +p9181 +aVHuffdaddy72801- you are offering false, misleading teachings on christianity. Your so-called 'bilblical unitarianism' doesn't exist anywhere in the bible as anyone who reads and studies the Bible knows quite clearly +p9182 +aVhow did you put the mountains and continuous sky there +p9183 +aVBest best ;-) +p9184 +aVI cry every time I hear this song so beautiful and it brings back so many memories......Damn you M.C. my one true love at the time. +p9185 +aVThanks i love your comment tooooooooooo sk80nzero +p9186 +aVShe is an idiot!!! +p9187 +aVthat was really cool!! :D +p9188 +aVwhoever sang the chorus killed it +p9189 +aVsomeone kill me if this thing actually comes to life in the real world.. just shoot me +p9190 +aVhes got to be the best pirate i ever seen "so it would seam" +p9191 +aVNot for me this one! +p9192 +aVGlory to God! Thanks so much for uploading this beautiful video. It helps me prepare for church every sunday! +p9193 +aVI used to prefer the other version but this one is a little more laid back and his voice sounds fantastic +p9194 +aVMASSIVE! BIG UP THIS DUB LARGE AND HEAVY +p9195 +aVthis is wonderful it reminds me of gong x +p9196 +aVhas she aged naturally!!!!!!!! +p9197 +aVThis is about WP, or White Plains in New York I live there and my math teacher used to go to bars with him and 2 years ago when he was still known as Matt Miller he came to my 8th Grade math class and beatboxed. It was pretty sick. +p9198 +aVYukimura sings the best!! +p9199 +aVwhoa +p9200 +aVMe and my friend thought our mom's put ecstacy in our drinks when we saw this o.oSo trippy maaaaan +p9201 +aVreally nice! like an impromtu rot hod! +p9202 +aVOMJ!!post soon! +p9203 +aVCan you do one of that toyota tundra you had in the background? I've got one and would love to hear your review of it. Thanks +p9204 +aVehh..he means modd them!like PIMPIN them!u get it? +p9205 +aVGreat Aikido, great music, great energy! Thanks for posting! 5 stars! +p9206 +aVJacq: you were wonderful! and what an honor: congratulations, Molly +p9207 +aVLOL hi there!! XD 0:27 +p9208 +aVIt sounds to me that Hitler has been reincarnated in the form of Lord Ahmed. Let us all rally to get riid of him before he helps the Muslims to take over this country. Although I admit there are some good muslims amongst these evil people who live under the cover of religion so they can get away with Murder. +p9209 +aVI love this music ... This song was pre loaded on my laptop when I purchased it . Every time I play it I get teased...lol, it goes well w/ your slide show +p9210 +aVactually this ad hurts homosexuals because it makes homosexuality seem like a choice. +p9211 +aVWoah, slow your role cuz. I aint makin shit up. Im Ahmose the Liberator. The Corruption Killer. I bring nothin but the truth. My main goal is to stop all lies, lies corruption. You don't know my life, but if you would take my word then you would know my life. Please fall back with that "jockin" shit. It is what it is, jockin or not this shit has to happen. I dont know why you mad at me when im helpin yall niggas out. Im stoppin that mainstream bullshit. +p9212 +aVthanks dudee my first attempt :) +p9213 +aVMahalo! I will keep doing it as long as I can. +p9214 +aV@Questfortruth86 You're not telling us anything we haven't already heard countless times. Sorry to disappoint you. +p9215 +aVSWEET! +p9216 +aVgo clown yourself! +p9217 +aVhe handled the fire not working thing good,"That was it, is that a joke?" +p9218 +aV@DJW1704 The new hat system for counter strike is going to be epic. +p9219 +aVTHANK YOU SOOOO FREAKING MUCH!!! +p9220 +aVHoly Crap!!!! This is the most amazing thing I've heard and read in a long time... +p9221 +aVThat Mac was so shitty. I wish I wouldnt have seen that part +p9222 +aVmad air on that back disaster +p9223 +aVirael you dont know how strong WE...ARABS...ARE!! U HAVE NOT WON YET!!! +p9224 +aVOooooh yea +p9225 +aVVERY good flick ! 1:50 is the best scene . +p9226 +aVthis song is the best :))) 3 i love their voices 3does Jonathon sing? +p9227 +aVthis is why you must learn to manage your own accounts,.. unreal +p9228 +aV@rogeropie - It's a tamil folk song from tamil nadu, Southern India........a typical village song +p9229 +aVPanic!!!!! where's the xanax? +p9230 +aV@SkimGFK ...and they should have edited that out. just like being at the movies and some numb nutt speaks out the dialogue ahead of time. people need to shut up and let the audience enjoy the calculated impact. +p9231 +aVThis is better. I like it! Camera's ROCK!! :P +p9232 +aVthis is the best song on the album. Daughtry is amazing. This album is far better than the first one, which was amazing too..but this one blows it out of the water. Hands down. +p9233 +aVwhooo NO NWO +p9234 +aVWTF 1:00:05 HOW LONG CAN VIDEOS BEEEEEEEEEEEEeeee FUCK GOOGLE +p9235 +aVOh wow that looks delicious.:3 +p9236 +aVI want that song ! +p9237 +aVnce vid u should make some more vids like this and wat is the name of the manga? +p9238 +aVwow nice i love it and lviv the video is so nice good job man god bless you and god bless UKRAINE! +p9239 +aVProbably so. Dwight was on Flaco's "Partners" album around this time, and he took Flaco on the road with him.BTW, if you've never heard that album, it's worth a spin. Dwight does Warren Zevon's "Carmalita" with Flaco. Good stuff! +p9240 +aVdeath to croatia!!! +p9241 +aVi'm getting my first pair from shoedazzle soon! i'm soooo excited! it's sooo pretty! love! the best part is...it's high quality shoes for only forty bucks a month! holy goodness! :D +p9242 +aV@MobianAngel Dreams of an Absolution +p9243 +aVNice show +p9244 +aVLove it! +p9245 +aVTomalak was salty as all hell after the birds of prey de-cloaked. +p9246 +aVOh, damn it! Now this song is stuck in my head. +p9247 +aVCheap Drama... +p9248 +aVLooks pretty decent. How much you asking? +p9249 +aVwow i showed this to all my friends +p9250 +aVThanks esrohtv, I enjoyed this tremendously! +p9251 +aVwhat you posted, makes absolutely no sense what so ever! +p9252 +aVI am so impressed and the hard work shows through. Wonderful girls, keep it up!! +p9253 +aVit is excessive force, no dicipline taken from Sgt. Jesse Garcia to those men who did that.. the cop that did the kicking n punching, send his ass over here id like to whip his ass, along with that other cop punching and tazered him 3 times. friggen rediculas. +p9254 +aVtakes me back, great band great songs +p9255 +aVdrewin looks so good when he go see janay. +p9256 +aVhey is this on your flip camera? +p9257 +aVThats so awesome! i want one! :P x +p9258 +aVdye noun +p9259 +aVgreat video keep up the good work mate +p9260 +aVThats really cool! Never seen anything like it! +p9261 +aVThis is beautiful!!! +p9262 +aVIf you wanna download this mp3 click to easymp3grab doht cohm. +p9263 +aV@uniupload +p9264 +aVThe Roy Orbison image, backing and vocal is very good. Nice job Marty. My type of music ! Regards Brian UK +p9265 +aVWow, you're getting better and better every time! This deserves a 5 star rating even with the wrong words in the second verse, lol! x-D +p9266 +aV@schank111222 hi! no it's just that when i bought the bloggie from tigerdirect, it, sdhc, was on sale and class 6 to boot! it's still on sale for less than 15.00, now. +p9267 +aVaww that looks really pretty ] +p9268 +aVum whats up with this +p9269 +aVadvertisment SHIT +p9270 +aVand now claas came out and beat that record in 6 hours! +p9271 +aVmy Dad and Uncle sang the song in this movie called, "Please Be Mine Tonight." :) ! +p9272 +aVHey Charles, WHere did you get that necklace???!?!?! +p9273 +aVYeah, the three guys that died in this accident were buried in lead caskets due to the radiation they recieved and were thus giving off. And yet the people who enter the facility for the "clean up" scrubbed themselves vigorously ... uh huh, like that did the trick. +p9274 +aVHey. ;) just saying hi. +p9275 +aVrevlon superstay liquid e/l is meant to be good +p9276 +aVmen. they are all the same, arent they? sitting around talking about their conquests among each other, about who is cute, who they felt up, and all that. with that said, this is a mighty rich culture. +p9277 +aVthat was front flip +p9278 +aVBeautiful Ghazal +p9279 +aVwhat does low points have to do with it? +p9280 +aVI'd fuck the shit out of Selena Gomez!! +p9281 +aVlol silly ego whore +p9282 +aVI love this song! +p9283 +aVJack: Don't do anything stupid +p9284 +aV@soeffingwhat I like this theory best-- I am trying to think how that unpredictable factor is best expressed in personality psychology terms. It's some combination of being a bit 'manic' so you take a lot of risks, and having a high 'Openness to New Exper +p9285 +aV@InfiniteWhizBang I dunnow...ask Cole Porter... +p9286 +aVI Love it. +p9287 +aVits not on the crooked side its laying on the crooked side which makes it look like the sub is on the crooked side. you should double check before you comment +p9288 +aVmiller can't get a gig anywhere but fox bullshit! +p9289 +aVHeh. Poo face. +p9290 +aVthis guys not to bad with the old cat and can +p9291 +aVthis is garbage +p9292 +aVi have a question thumbs up if u agree with me. Why do people watch a video just to hit the dislike button and make inquisitive people like me ask questions? It seems like a waste of time to me. +p9293 +aVstupiddddd..... +p9294 +aVWell. This song is rather blatant looking at it one way and rather ambiguously worded looking at it from the other angle.Allude to sex on the internet - Preteens go crazy +p9295 +aVDL Is Really Boring iDK how he a king of comedy n he use da same jokes every stand up jus in diff order +p9296 +aVWell, this company is a scam to a certain degree. The coins being marketed by Numis Network don't need to be in slab cases. This is simply a marketing strategy used by this company to sell silver coins as "Collectibles". There is more money to? be made selling coins as "Collectibles" (i.e. overpriced); but, again the silver coins being marketed by this company are simply hedges against inflation and it doesn't matter if they have been mishandled, or have scratches on them. +p9297 +aVthanks for the video! great job! +p9298 +aVIntrospective is now 22 years old and sounds like they made it yesterday. Brilliant. +p9299 +aVAWESOME!!!! +p9300 +aV@scraper1000 i agree and i norm listen to hip hop, rap, rnb, garage but wen me mate put this track on i was like :O the beat is bangin +p9301 +aVmy youth choir sings this song!! +p9302 +aV@horseycutie thats horrible! not the plot line, the slaughter fest that can cause!!! +p9303 +aVwhat kinda camera did you use??? its great quality +p9304 +aVand and and...uhh uhh uhh... Does he know anything about the game. +p9305 +aVperfection +p9306 +aVTo get this mp3 go to audofier doht cohm. +p9307 +aVRaven is freaking bullshit, why doesn't Serge just leave? If he survived so long unregestered and out of prison, then he can do it again. +p9308 +aVYES! Matt finally got to play an organ live, I think he's been wanting to for agesss! +p9309 +aVCouple of sound level issues, but sweeeet apart from that, we want more! +p9310 +aVWe havent found anythingWhat can I say the nile isn't just a river in Egypt. +p9311 +aVI became devotional after watching this movie .If possible u too watch +p9312 +aVawesome!. but the shipping takes awhile, but i cant wait! +p9313 +aVOh hello Tea Party. How does this feel!? +p9314 +aVok dot def fuck dat jawn up all crazy +p9315 +aVthis band is awesome xD she is so amazingly cute __ +p9316 +aVi just love this song....and gurdas mann's voice is awesome... +p9317 +aVwhere the fuck is part 3 and 6 i wanna see the midget and the donut guy. +p9318 +aVsince 1978 - the CIA just got worse +p9319 +aVits funny that i still remember in your concert in new york in "2001" i think... ya were singing "it happens every time" then you said "i love you" to a fan! you and frankie were the sweet ones! +p9320 +aVThat IS NOT a Piper PA-28. That IS a Cessna Skylane C-182. PA-28's don't have those long skinny landing gears. And the elevator is completely different. A search for the tail number reveals is a C-182. I can't figure out how the media called this one a Piper as for them all small airplanes they call them Cessnas ;) +p9321 +aV@kurtieboy4 You are a rock fan right? Only they are so ignorant.I would peek at your channel and see,but you dont deserve any views. +p9322 +aVkid yamamoto is a fucking thug +p9323 +aVFackin' CLASS! +p9324 +aVa men to that mi brotha u hate it kuz u dont understand it faget +p9325 +aV@humanparody12 dat'll work too :D +p9326 +aVwell cool +p9327 +aV@destroyah1122 np +p9328 +aVthankz 4 the walkthrough man ur funny 2 haha thankz 4 all the walkthroughs u have done +p9329 +aVi thibk he hack that acocunt +p9330 +aVThanks.Yeah that Majini's molotov being thrown in the complete opposite direction was lol :) +p9331 +aVOH HA HAHA HA HOURS N HOURS O' FUN!!!! +p9332 +aVThis is some great music!5Stars! +p9333 +aVThe host is Vicky Beeching. She actually has a cd that came out in 2006. She's really good-worth checking out:) +p9334 +aVVery interesting. You have a unique style, vocally, lyrically, musically - they are all different than I have heard before. +p9335 +aVwooww all these kids are fags talking about how he beats women. do you fags believer everything you hear. and in case you didnt know he was found NOT GUILTY. +p9336 +aVYOU ARE AMAZING! +p9337 +aV@rob3342421 Considering the early comments on this video are up to a year ago, pretty sure VISTA wasn't even out yet... s_s +p9338 +aVonly 322 views wow +p9339 +aVLove this and this song! 3 Muahhhhhhh KSG rocks and is the REAL winner..Love it Nina! Muah! +p9340 +aVthat was Sal and Richard baby +p9341 +aVNita, +p9342 +aVbtw I love the EVA biped +p9343 +aV'Although i look like a joker' - Mashallah Dr sahib, I love your sense of humour as well as all your Dawaa. Keep it up. +p9344 +aV@zammystavez make another portal someplace diffrent and you will spawn somewhere else in the nether +p9345 +aVStein was guy who set up William Hill he had Casino that was closed down for dodgy operations. +p9346 +aVwhy stand on a silent platform, fight the war, fuck the norm!, Censorship my ass, let him say what he wants to say, thats whats wrong with the politicians, they don't vote whats best for america but whats demorcatic or republican. +p9347 +aV@QueenOfBreyers oh coool wow good luck :) he sounds awsomeee +p9348 +aVWe have to try. +p9349 +aVim memorizing that surah right now, this video will be useful ;-) +p9350 +aVshe is a bit of a bitch isnt she? +p9351 +aVYup. It will pass through the audio to your receiver. So you can do 5.1, 6.1, 7.1... whatever.The audio jack is also an optical out. +p9352 +aV@evageline01 oh please do, thanks x +p9353 +aVyou can see the silhouette of Black Jesus smiling down on you from inside the sun +p9354 +aVLOVE THIS!!!! +p9355 +aVOh I love him Robin! Can't wait to see him at the inspection. +p9356 +aVJesus warned of "false Christs" and deceivers who would come to mislead the masses, saying, "... they will kill you and think they do God a service." Do not follow the agents of Antichrist! +p9357 +aVcan you tell me where did he go? +p9358 +aVNRM supporters are just hooligans and are proving their hijack of the nation in mere preliminary elections +p9359 +aVI have personally met with at least two such people. Once was a Polish Jewish woman who went through Nazi concentration camps, and then through Soviet Labor camps. She said it was pretty much the same thing. +p9360 +aVThanks. I'm getting into green juice and spirulina now, and I'm eating fresh vegetables and salad all the time and I feel great for it! A question though, do I need to eat all my food raw? At the moment I eat boiled sweet potatoes and steamed veg. I also drink cucumber juice. I'm vegetarian now, but I need to go completely vegan. ALso, how do you feel about alcohol? +p9361 +aVJames Gregory for President!!! +p9362 +aVLove this Amv !!!!!!!!!!XD!!!!!!! +p9363 +aVWe need to organize! We need to inform! Stop being sheep and open your minds to this blatant architecture of tyranny and oppression!!!!! +p9364 +aVPractice this, and save some lives! +p9365 +aVthis is a bullshitits like staring at ketys vagina and not doing anything else +p9366 +aVno way... seriously? +p9367 +aVJohn Lithgow is stunning in this role. +p9368 +aVSimply Lovely!!!! +p9369 +aVan amazing interview great info thx for sharingnamaste +p9370 +aVNice horn. +p9371 +aV@djhz2001 we get it now stop complaining and watch the dang show +p9372 +aVDamn. This kid can ball...Nebraska would be well served by offering this kid. I think, judging by his film and Brian Carnes', Kain is better in every aspect of the game. +p9373 +aVThe end is very near ! +p9374 +aVi just went to the k i love there jumbo tron +p9375 +aV(clip seems to be from about Dec. 2006, if anyone's wondering) +p9376 +aVyep, go for it +p9377 +aVgood god almighty..I CANNOT BELIEVE i MISSED THIS. Diana is pure electric. How could one living being not be touched by her , her song, look, and truth. +p9378 +aVNiicee,! i FUCKING LOVE YOU! ( if your a gir ) hahahha +p9379 +aVgood job dude. can u please send me the tab. +p9380 +aVILL SHIT +p9381 +aVAt 2:00 I was like "ITS TEH TRIPLETS FROM HELL!" +p9382 +aVYou should put some extra long sliders on you ass +p9383 +aVI LOVED Davey/Romero. Those stiff kicks really made it great. I love that puro style. I remember a point where Davey was gonna kick Romero in the head but Romero moved and Davey SLAMMED his ankle against the ring post. That looked like it hurt A LOT. Btw, you said you gave Davey/Romero ***3/4 but in the description you put **3/4. Just saying since you probably didn't notice.Btw that asian chick's name is Jade Chung.GREAT VIDEO! +p9384 +aVNice one! Land Surveyors all over the world must have fun.Check out my site for some Scottish surveying fun as well as some Scottish scenery. +p9385 +aVhey check out our version of pan in 'A' minor. new dimension (grenada) +p9386 +aV@sitafreak420 No, I don't think there will be a touring m5 this time. I could be wrong, I think I just read it somewhere. Probably the new m-sport 5 series though. +p9387 +aVcool, does this actually air in Russia? I hope there's some Ron Paul Russians out there. +p9388 +aVHalf indians rock! +p9389 +aVMrEbonyman: You put the ignant in indignant. +p9390 +aVWoooooow i'm luvin this!!!! gotta give it 5 stars!!!I'm a rapper born in London now living in the USA.if you want feel free to check out my music and tell me what you think ) +p9391 +aVi love the horse of the year show , hope i can ride in it with my current horse one day ( big dream) but we might get there one day! +p9392 +aVaww! it's so amazing that your doing so many follow-ups!!! and the got MARRIED!! YAY!!!! I''m so happy and sad at the same time!!! If you do the kids and Joe, i seriously cannot wait!!!!!! +p9393 +aV0:01 Skip Ads. +p9394 +aVOne of the things we LOVED about Debbie when she first hit the scene in 1978, is how damn COOL she was!!! Well guess what, she's as cool as ever! Queen of Cool at any age. +p9395 +aVThis song is amazing!!!!! +p9396 +aVEnglish sub please +p9397 +aVThanks mate. Much appreciated :-) +p9398 +aVI love Brokencyde.! I reallyeh like this song, well all of their songs xD +p9399 +aVlaunch before the columbia. btw first comment. +p9400 +aVGreat work building that plane. It looks and flies like a beauty. +p9401 +aV@alekasattic23 The Blendtec carafe currently has a 3 YEAR warranty, (LIFETIME warranty on blade assembly) and if you end up with cracks in it, something terribly freakish is going on, or you have been using it as a target at the shooting range. Blendtec +p9402 +aVlets funk,yeah +p9403 +aV1.50 Center stone, H, Vs1, F, Round Cut (For maximum facet light reflections), 8 diamonds on the sides..3/8 CTW total on the 8 diamonds..got for 11,188 ( 12,000 originally) will keep upgrading carat with time..aim is 50,000..wedding band is 1 CTW..(Proposing next July..wish me luck), and Yes, yours is a very good quality..what ya think of mine? (Errr..hers hahaha). +p9404 +aVYes. XD +p9405 +aVThis is great +p9406 +aV@SploderMaster Over populate ? Yes ,true but the jobs that the Latin american people do are the low profile jobs. Such as hard critical manual labour. Which involves a lot of physical stamina. Dish washing and etc. If they are doing low profile jobs like +p9407 +aV01:05-01:28 +p9408 +aVOkay that all sounds wonderfull. Where can I buy one? +p9409 +aVAs long as the GOP is for tax loop holes that encourage US corps to use Chinese slave labor, and for deregulating the criminal bankers, and holding up SBA lending to small business, and for taxing billionaire hedgefund managers? at 15% when I pay over 20%..as long as the GOP is for this BS..they are not on my side and they don't get my support.True, Obama is late to the game, helping small business but the GOP are just obstructionists. +p9410 +aVVery impressive selection, incredible playback off those 78s! I'm a blues guy, and haven't heard some of these. Tasty! +p9411 +aVone of the greatest songs ever produced. +p9412 +aVThey tried but what you see in most of the 'room' pic is the 'Upgrade' that cost more....some upgrade, from bad to 'As bad'..... +p9413 +aVPlease tell me that that robot bed will be only for the disabiblties that cant move or we will turn all fat!!! +p9414 +aVGreat song by Mike, thanks for posting this. +p9415 +aVThank God we had him for awhile. +p9416 +aVnick and ria are the best dancers !! +p9417 +aV7th damn not first +p9418 +aVyou should add some more tags to get more views. I would add to the ones you already have - detroit diesel 371 oliver 3-71 +p9419 +aVGreat job getting it to play decent Chad and it really sounds good. +p9420 +aVgigantic palaces +p9421 +aVI wasn't directly talking about violent video games.I'm coming from a point of competition. Despite demographics, Nintendo used the event to find ways to one-up a competitor. Afterward, with the adoption of the ESRB, Nintendo allows violence in their games, such as the SNES version of MK 2.This business, like any other that's entertainment-related and has large sums of revenue involved, is cut-throat with contenders doing a lot of backstabbing stuff to each other out of the public eye. +p9422 +aVnorth, north east, north west nothin +p9423 +aVawesomely epic! lol i laughed so hard, i nearly peed myself! 5/5 and fav _ +p9424 +aVYour videos are awesome and understandable, I'm always referencing them +p9425 +aV@DaPepsinator +p9426 +aVhahaa..this was good. great singing voice tol +p9427 +aV@Canaderek Israel have zero credibility. +p9428 +aVNice! +p9429 +aVcan you help? I can't get the files to show up on mine when I connect to the TV +p9430 +aVOh you mean the debuff line, cant remember the precise name. All addons are listed on the main channel page though. +p9431 +aVHow funny, right before I listened to this song I fished eating some Cracker Jacks! Nice music! I hope you post more! +p9432 +aVOh dear. Why oh why?!! +p9433 +aVdead rising 2 is not dead island u fag +p9434 +aV@mhill2559 No he doesn't. +p9435 +aV@deepart15 ok are you scared of a goat? a rat? a bird? a tree, music, people life. all those things kill you. +p9436 +aVi wish i had that elephant head in my room +p9437 +aVI LOVE LOVE LOVE LOVE THIS AND YOUUUUU +p9438 +aVWatch at 1:25 on the left haha +p9439 +aVHis handwriting is amazingly good. It's interesting how much repetition exists in math. A development of a topic involves such a gradual transformation of ideas. It's very gentle. Math pokes at the imagination in a very powerful way. That lecture hall seems like a happy place. I wish I was there. I would play firsbee afterwards. +p9440 +aVLike the Gator! I just made a forum for Gators. Please check it out we could use your knowledge. johndeeregatorforum +p9441 +aVits twin pipes.they sound like crankshop +p9442 +aVApple's in high gear these days! +p9443 +aVCoulrophobia.. fear of clowns.. +p9444 +aVIn a nutshell, cientology is a war on sanity! +p9445 +aVjust smaked that nigga lol +p9446 +aVBetty's Pies is awesome. I tried the bumbleberry pie. Best pie I've ever had! +p9447 +aVlita was pregnant wen she had the lil fight with trish, thts y WWE is so fake if tht was real she would've miss-carried!, dont bother replyin to this comment cos i dont care its my oppinion!!!! +p9448 +aVnp :) +p9449 +aV@dinomand What are you guys so afraid of? The assumption that war must be part of the mix is a product of the fear mongering academicians. Let people control their destinies, it's called freedom. +p9450 +aVgreat video i do the exact same stretches :) lol its funny how u keep getting tongue twisted when sayjng 'stretch ur splits'! xD +p9451 +aVSuch talent. Such passion. What a beautiful, magnificent voice! Wonderful. +p9452 +aVSo why doesn't the Pope or bishops kneel during consecration or to receive communion? Are they more worthy than we are? Why don't they have to show "proper respect and adoration?" I've never received a satisfactory answer +p9453 +aVyo, grav hammer? TOTAL. HALO. STEAL. +p9454 +aVthat scared the crap out of me too. +p9455 +aVman..poor captaincy/team management let MUMBAI down..Nayar at 3 ahead of Rayudu/Tiwary is a disaster..Pollard sent in after duminy and Harbhajan!!!!Spinners win matches at DY Patil ...Dhoni is a smart Guy floored Deccan and MI with three spinners..Zaheer is a choker..he abused dilhara with Maa behen ghalis when he dropped a catch..but he himself dropped even easier catch next over....Zaheer was responsible for WC 2003 loss and now IPL final loss... +p9456 +aV@Erikjust AMEN! +p9457 +aVI watched this filmfor the first time on TV 2 days ago and loved it. Such a heart warming story. +p9458 +aVEPICNESS. +p9459 +aVDamn Retard Ignorance! +p9460 +aVawesome!!! +p9461 +aVNice Clip. I just saw an episode at seevstreaming (.) com +p9462 +aV@Ebeet0FAN it was like an orgasm. +p9463 +aV@hikenc1975 Thank you. If you have any insight that you think will help others, please feel free to share. We are all learning from each other. Take care. Dane +p9464 +aVSporks. Hehe. +p9465 +aVGood shooting,thx +p9466 +aVi wouldent mind knowing the name of that tune that plays in the back ground at the beginning of this part +p9467 +aVGreat video and jump. I've got some to post of First, Pavonly, Hutchinson, Akaidyn and Beck doing the same jump. Cool to see! +p9468 +aVHow does this kind of sewer scum logic get rewarded by positions in academia. Wolfowitz, of Team B, was working at Johns Hopkins Paul H. Nitze School of Advanced International Studies (Nitze, also of Team B).The social sciences are an embarrassment to the word "science". +p9469 +aVthanks for the pinyin! +p9470 +aVExcellent! +p9471 +aVthis song brings back memories even tho it came out when i was in the ninth grade lol +p9472 +aVthe people who made this video are goin to hell +p9473 +aVHe sedated me so he wouldn't have to worry about it.. +p9474 +aVooohhh a gap in ines hoop, pardon me i'm off to play the grand piano +p9475 +aVawesome video SEnses Fail and Hellsing Both are awesome +p9476 +aVAnd helpful too I hope? LOLThanks and hello from England :-) +p9477 +aVFrame rate is higher in real life, it looks low because we had to lower quality to put on youtube. +p9478 +aVIf you check his paige all his comments are to younger looking girls...I'm not familiar with you tube but please someone do somenthing about this POS. Like Mr. Charlie Daniells says, the lowest scum on this earth is a child molester +p9479 +aVKick ass Ry Guy! Seems that I have taught you well. :) +p9480 +aVWhats up wit full episode parodies? I swear the last one was like "Gunslinger Rumble" and this one cold be anytbhing from "Sailer Rumle" to "Cardcapter Tenma" +p9481 +aVExcellent for the lower back, and abs! +p9482 +aVVery nice analysis. +p9483 +aVYep, the temple of Solomon is the key to being able to shift between dimensions. According to Islam King Solomon was the only prophet who had special powers given to him by God. These powers meant King Solomon could travel between dimensions, so to reconstruct the temple is a must for the iniquitous nwo.Peace to all mankind! +p9484 +aV@yunliuContact +p9485 +aVAwesome! These are rare tubes and are worth keeping!! +p9486 +aVLMAO at Mr.T part! +p9487 +aVTo get this mp3 just go to audioripit doht cohm. +p9488 +aV@EssentiallyGiraffe I definitely found that online... and the site usually only sells shirts for 24 hours. I can see if Ebay or Amazon have any. . +p9489 +aVlol +p9490 +aVI am disappointed.I wanted lytton to stop with Carrington,because I was hoping that it had someyhing to do with my condition.I am not a Homosexual. +p9491 +aVHarlemndn1, I'm Black and Ndn and I get your point. I'm also in the AISA group at my school and we're screening vids for our film festival. Be cool to get some independent stuff. If you've got more or a longer film, contact me at this name, plus yahoo. Thank you! L. +p9492 +aVThis is a brilliant way to show the pathetic service that Virgin Media call webmail - you'd be better sending a letter!They are the WORST ISP EVER!BTW - they only support Windows.Service crap,GUI crap, storage crap (50Mb!) support crap, speed crap and you can't contact them without having to pay for itYou have my sympathy. Spread the word - Virgin Media are CRAP!BTW, I don't think they're owned by Branson anymore.If I could take my email addy with me (had it for 10 years!) I'd leave today. +p9493 +aVchiptacular had the most astute observation. Where is the last long board scene filmed? That was awesome! +p9494 +aVOMG! +p9495 +aV@red341111 You haven't even finished (maybe haven't even started) puberty yet. You WILL fill out. +p9496 +aVBeautiful.? +p9497 +aVLa Terekhova is divine. Even her little steps during the introduction of her variation are right on teh music. +p9498 +aVi love the song its from sonic heros for intendo game cube +p9499 +aVI like this song, alot! :) +p9500 +aVOh snap!!!Hahaha,so good! The ending still makes me laugh aloud. In public.I get weird looks. +p9501 +aVVery nice!!! +p9502 +aVoh wow shes a brat +p9503 +aVAwesome yeeaaaaahhhhhh !! +p9504 +aVlove the song and the picturization from Lion King! +p9505 +aVYEAAAAA +p9506 +aV@davisnurse no prob. I can even do the simple stuff. Very impressive for their age +p9507 +aVHey Janet, is it safe to use water that's gone through a reverse osmosis filter? Oh and wonderful video by the way. You are one convincing woman! ) +p9508 +aVLove this show +p9509 +aVThanks, Mike was a good friend and will not beforgotten.Miss you buddyWeedz +p9510 +aVWHY WOOD IRVIN EVER HELP ANY OTHER UP AND COMING FIGHTER AGAIN THE WAY HE HOOKED UP ANGEL AND THE WAY ANGELS FANS TREATED HIM EVEN BEFOR THE FIGHT. IF I EVER GET TO HIT SOME DUDE SO HARD THAT HE DOESNT NO WERE HE IS OR WHAT HAPEND AFTER HE HIT ANGEL IN THE FACE WITH HIS RIGHT HANDED BAT I WOOD NEVER FEL THE NEED TO GIVEM A 2ND CHANCE, ARE U EVEN FOR REAL, WERE U THERE. WHO HAS ANGEL EVEN FOUGHT WITH A REAL RECORD. ANGEL MITE HAV BETR LUCK VS DAVE HUCKABA.. MAYBE +p9511 +aV@TheKeyToBeingAmazing Omg! when is season 2 starting? +p9512 +aVBeautiful spiritual uplifting song. +p9513 +aV1st-i hate people like YOU! +p9514 +aVYou bitch, i'm gonna punch you in the face! +p9515 +aVya, he obviously is a lazy person. and in violation of the NRC (nuclear regulatory commitie) policy on safe radiation practicies. +p9516 +aVAbsolutely fabulous. A former golden no1 from the past. Great stuff and take a bow inmeyard. +p9517 +aVThe Cop responds to the woman "No, He's saying you're tresspassing on city property". Well doesn't the cop have the duty to know the law and uphold it? Shouldn't the cop have told the guy who was protesting the Librarian that she was within her CONSTITUTIONAL rights to be there with a sign??????? +p9518 +aVacorn sucks +p9519 +aVthis is the same guy that did the song from el farah, can someone please tell me where i can find that song i have to listen to it! +p9520 +aVYANKEE TWAT!! +p9521 +aVa fucked up car in that game Interstate 82 makes EXACTLY the same sound. Just like the beat "de de dee " +p9522 +aVWhy does he have a beard +p9523 +aVThe only people allied with McKinney are terrorists and their supporters. +p9524 +aV@lovesmakeupxox Aww thankyouu (: Yeaah, i want it !! :D xx +p9525 +aVthe 19 people who disliked are too fat for the beds. +p9526 +aVhaha LOL mate! +p9527 +aVme me me sheesh god needs to get over himself...i dont need to listen to a guy that thinks he knows what he reads if tehre was a god he can come talk to me..im sure he could do that if he can make the universe... +p9528 +aVMcSame is just another bushbot running another sleazy show run by the same criminals that brought you BushCo 2004. The good thing is that Obama Camp won't take this crap as did the Kerry team ) The respond Fast! +p9529 +aVHit #12 pop, #20 AC in the US (Billboard). Got airplay on WLS. Thanx, WWYW for bringin' it back! How'd it do in the UK? God bless! +p9530 +aVThumbs way up! Looks, sounds, and strobes awesome. +p9531 +aVah sounds good hoply out soon +p9532 +aVdaveeeeeeeee, you crazy fucker. +p9533 +aVdanggg way better than my high school!!! very nice ] +p9534 +aV@picmario Hello. How about zinc ? Zinc efectivelly reduces ferrocyanides. It could also work on iron atoms on the mitocondrial citocromes. +p9535 +aV...like u had the song, the video, the lead singer, the concert mogul Erasure...what? Who was ur marketing pimp?. OMG....pls +p9536 +aVthis song kicks ass!!! +p9537 +aVShown the building of well, nice facilities. +p9538 +aVHow in the world did you get there on such low levels? That is awesome man! I am subscribing to your videos God Bless you and may God Bless you all!! +p9539 +aVgood flilipino music +p9540 +aVsturm has good footwork. watch the way he beat jermain taylor in the amateurs +p9541 +aVthats a loooooooong bridge. its amazing he pulled this off. +p9542 +aVwow!!!!!!!! in 2010 its still sounding goood even though i first heard it in 1979 when i was 9 , what a voice. +p9543 +aVSo true, no other king, president or ruler would humbly give himself as our Lord - I Love you Lord! +p9544 +aV@MsThunderroad Can you explain to a point where I dont want to kill myself after you make a comment? +p9545 +aVThe guitar is so cute... and sounds sweet as well. +p9546 +aV... and if people made a run on banks they would see their money is not actually there and has been partially transferred to the winners of the bet on behalf of the leveraged loser of the bet... regardless if physaical gold is being transferred or being settled in cash, a great deal of wealth is being leveraged off of savers... how do they determine a premium of insurance on hedge against an assett beyond its worth one full time. and especially nonvested parties with no rights to th underlying +p9547 +aVHEY! Josh is my oncology Docctor! I love him! +p9548 +aVThis film is a Masterpiece. +p9549 +aVExactly. +p9550 +aVWOW! BIG LEMONS! +p9551 +aVMad Love! This song is in your top 5 fa sho. +p9552 +aVEpic, and I faved. +p9553 +aVWAHT iT DEW STiCKMAN, woot! yhew rock this sonq. +p9554 +aV...he said she said... +p9555 +aVNot even 10. More like a retarded 4 year old with a retarded family. +p9556 +aVwooo, China also borrowed money to USA to fuel its invasion of Iraq. Should we blame China for the Iraqi invasion? What a joke! +p9557 +aVThis is an awesome song :) +p9558 +aVFANTASTIC mmmmmmmmmmm +p9559 +aVBlack cat is so adorable! +p9560 +aVThank you! +p9561 +aVI'm so confused about this. Why would the US do this to it's own troops? I'm a United States Citizen. Doesn't the US need its troops? Why would the government make its troops sick? ...Please someone clear this up for me. +p9562 +aVepiccccc +p9563 +aVI love this song. I have to listen to this everyday. when ever I am down or up. God is good all the time and I don't know where I would be without him. Thank you Jesus. +p9564 +aVI cannot be prouder of us! +p9565 +aVthats my uncle : ) +p9566 +aVwon't stop unitl i hear your momma scream. Church!!!! +p9567 +aVHey old friend....This is sooo funny! +p9568 +aVAren't they're something! love them. +p9569 +aVGreek 2 year bonds hit 20%, and the ten year is over 11%. The euro and dollar are probably going 1:1 before this mess is over. +p9570 +aVAction comedy! w00t! +p9571 +aVOne of my favorite Wayne Watson songs. Loyd, you have such an amazing voice. +p9572 +aVI went to prom/afterprom and won 100 :D +p9573 +aV@NaomiXTC once every 3-4 weeks, in the in between time i paint them myself. +p9574 +aVSweet. +p9575 +aVnice to see them shake hands +p9576 +aVJust follow this link and discover how you can make a 100% free? living!lovefreestuff.webs +p9577 +aVThis is good ! +p9578 +aVdude this was a great show on PBSi rather want to watch NCIS or star trek or wishbone. +p9579 +aVi got it on video there should be no question that the old man and the woman and the hero from the stands are at fault +p9580 +aVWow...AWESOME. +p9581 +aVHow can a God who demands killing be a god of mercy? +p9582 +aVi wasnt keen on david tennant leaving, but when i saw matt smith in the first episode of series 5 tonight, i have fallen in love with him ha. wierd i know but, i suddenly want to watch everything he's been in so im starting here :L:L:L whos in the same possition:L? +p9583 +aVnice... +p9584 +aVI just got this pedal today and it is KICKASS +p9585 +aVLove that color!!!! +p9586 +aVThat is an excellent suggestion, I will implement that one as soon as I can. +p9587 +aVMan, just watched this, nice work and awesome shots. Love the music too! +p9588 +aVthat guy is nuts goin at it with a wool pad!! +p9589 +aVExcellent! Brooke Smith +p9590 +aVThis is more than cool!!!! Great animation! Brings literature to life! Truly shows how amazing the human body is. +p9591 +aVGreat song! ty for sharing +p9592 +aVWow... whoever edited this did a great job... and that guy on the piano aint too bad either. :) +p9593 +aVpapi jump is hood!! +p9594 +aV@rumblefish1988 too bad they are weak. running is useless if you want to be strong +p9595 +aVi was referring to philo farnsworth, u aching great cock +p9596 +aVthis song is amazing. +p9597 +aVI want to sync cubase SX to a Tascam atr 60 8-Track reel to reel. Cubase sends out a smpte code how do you get the tape machine to act as a slave? Do you know? +p9598 +aVYou're welcome +p9599 +aV...umm i hate tht voice pllllz change itz annoying..and scary +p9600 +aVadam suck my cock..... +p9601 +aVThank you. +p9602 +aVCool song x3 Thanks for the link! +p9603 +aVMy Favorite group and educational at the same I'm doing GCSE History! It's not just the fact that Abba are my favourite group that makes me like it, all the information is easy to understand as well! I think all these History revision Vids are going to be very helpful. Thanks! +p9604 +aVcool very cool +p9605 +aVpicked up just cause 2 and resonance of fate this weekend in the Uk. haven't touched just cause. resonance of fate rocks. :} +p9606 +aVSithLord is correct, treadstone is CIA based, out of Langley VA +p9607 +aV0:02 Was that a soaking wet condom wrapper on the ground? +p9608 +aVSeems like the last few stories like these, like the girl in her dorm getting swastikas on her door, all have turned out to be the person doing it themselves.They set up a camera to catch the anti-semite, and instead found her drawing it, then calling and crying saying someone was going to kill her. +p9609 +aV8:48 omg the girl on the righttt.. +p9610 +aVSING CHRIS! +p9611 +aVWho cares if the Japanese are hunting whiles? I don't know if greenpeace gets government backing at all or not, but I don't want my tax dollars supporting this rogue organization. If so, I'm going to write my senator. +p9612 +aVawesome. +p9613 +aVbeautiful, really "sounds" like absinthe +p9614 +aVlol +p9615 +aVLol i love it .. Go to BestBangz {d 0t] com if you like hotties too +p9616 +aVThank you sooo much I am glad that you loved it!!! Yeah that was actually what i was hoping people would realize by watching this video and i am really glad you did!! Yay thanks! lol!! Jim is definately everything to Mel no matter what!!! +p9617 +aVdude. you can see your buddy's reflection in your sunglasses. don't be a douche and try to BS the world. +p9618 +aVditto +p9619 +aVIts good to know that they are populating the earth, more then what it already is. Screw their religion, screw the duggars, and screw any organization that gives them money for spitting out their hatch lings...I hope all 20 of their kids die in a plane accident, now.....THAT would be a hell of a story LOLOL! +p9620 +aVOh yeah, I can see it when you first spin it. Thx. +p9621 +aVwat a come back +p9622 +aVMy favorite scarf is the cheetah print scarf ! it's soo adorable and you can wear it in so many ways ! (: +p9623 +aVSo thats what it was supposed to sound like at the jam night? Well done for remembering it, shall have to give it another bash sometime. +p9624 +aVmaybe my favourite video ever +p9625 +aVI enjoy this +p9626 +aVAwesome vid... I had forgotten all about this... it's great... +p9627 +aVwow norweigen sounds a lot like english +p9628 +aVSieg Heil From Bristol.Clean Again The Streets of Europe of scum!Heil Third Reich!14/88. Britain!. +p9629 +aVu guys know what i hate u ur using a good stragie than people say "ur a noob" or they say "ur cheating" i just hate that +p9630 +aVthey should do a Morgan Freeman narration LOL +p9631 +aVthanks man +p9632 +aVhey guys! comment like and sub! +p9633 +aVI hope Spielberg directs the Just Cause movie adaption. Every movie he does is a masterpiece! (Yes i was hired by him to say this) +p9634 +aVValid point. +p9635 +aV1:28, my God what an annoying voice. +p9636 +aVI really adore this song. +p9637 +aVBrought back such wonderful memories from the Lahore of mid 60's +p9638 +aVim better +p9639 +aVshoot the cameraman! +p9640 +aVwho is that lol +p9641 +aVThanks! x +p9642 +aVA home with true character! +p9643 +aVI don't know about this video. Do you habe any others that can back it up? +p9644 +aV@wlin2w8 AHAHAHHAHAHAH! ;DDD +p9645 +aVShe is truly stunning! +p9646 +aVvery good +p9647 +aVI love FFF! +p9648 +aVAWSOME SONG why no coments if such a good song +p9649 +aVwow just wow +p9650 +aVI wanted to see that Weakest Link episode..great upload anyway! +p9651 +aVhes good in pes6 though +p9652 +aVthe music brings back memories! +p9653 +aVi now got frances ashman and this song woop woop +p9654 +aVMassive rattings to the person upz dis still, tinie tempah smashes IT but i got Afew Of his VIDEOS LEAKED ON MA PAGE NOW, I THINK MORE LADIES WILL LIKE IT TO TELL THE TRUTH BEHIND THE SCENES. Check it. Click ME NOW!!!. +p9655 +aVI remember my housemates and I crowding around my television to watch this; we loved it, it was such a good spin-off. +p9656 +aVNo shit it altars weather patterns this caused the earthquake in China in 2008 the earthquake sure did grab attention away from the brutality in Tibet. +p9657 +aVthey need to put this on itunes. +p9658 +aV@GregoryD57 Haha your lack of irony is hilarious mate. +p9659 +aVIm Ancraophobia +p9660 +aVshe is wearing a thong...hawt! +p9661 +aVmy favorite track from the new CD...it's awesome +p9662 +aVROFL +p9663 +aVThe chord move from the bridge into the new solo just makes my skin crawl. I love it! +p9664 +aVthat candy apple red and rosewood is growing on me. +p9665 +aVwords can't describe how much I hate this song, and how I nearly kill myself singing it in Lego Rock Band +p9666 +aVwait who sings this.........? XD +p9667 +aVEvery song he ever sings makes you feel like you are really there and can or have lived in that moment. +p9668 +aVhi sunny. i live on the east coasts long island. i have about ten black wallnut trees on my horse farm and i just went out to pick a bout 100 today and now i need to crack them. last year, i had a harvest of about 1,000,000 and my italian grandmother came up with a new way to crack open the wallnut. what she did was put it in a sock and beat them with a hammer. try this idea and tell us what you think. is it easer than the nut cracker +p9669 +aVWhy I love my knight xD +p9670 +aVPurely Adorable!!!! +p9671 +aVVary nice work. Excellent detail, I want one too just a wee bit bigger. I can here myself from DX land cool. +p9672 +aVThey need a higher rating system for this one. Absolutely amazing in every way! Quite possibly the most original concept on youtube. Keep up the good work. +p9673 +aVWhy shouldn't evey wound hit him? +p9674 +aVWTF im trying to make pancakes not a bomb! +p9675 +aVwtf is this... proberly the worst shit i have ever herd... +p9676 +aVsorry but pittiful +p9677 +aVI have no idea what "yes, idiot" is supposed to mean. Ditto goes for your "YOU!" comment.As for "cock" meaning both, then it would be equivalent to our "dick", which is generally not bleeped when used to refer to a person. +p9678 +aVHeavily edited with ads......there is like a half hour missing from this movie WTF? What a rip-off! +p9679 +aV@AttitudeEra9701 hell yea i peep dat 2 +p9680 +aVYou should be able to do this in CompositeLab. We filmed the actor against a greenscreen, then animated him disappearing into the floor. A displacement filter was applied to create the wibbly effect. The full DVD has more info.The easiest way to apply a mask to grading is to use a grade object, which can be found in the 'effects browser'. This can then be masked like any other object. +p9681 +aVeh, blue beam already, china must be a bigger threat than I thought. +p9682 +aVThank you! This helped me on my excel homework !!!!!! -[A thankful college student] +p9683 +aVNice video 5 stars +p9684 +aVIRAN delivers TERRORIST ATTACKS through out the world!!! +p9685 +aVI thought I saw a Pussy Cat! I did, I did... +p9686 +aVI'm just...over the moon. +p9687 +aVThis reminds me of the book "Longitude" by Dava Sobel about the invention of the marine chronometer...great book! +p9688 +aVThe music start at 4:19 Nice Song If You From South Central +p9689 +aVThey used Shawn's real name, Shoot Sketch! +p9690 +aVWHATS THE SONG @ 1:00 @?????????? +p9691 +aVLove eva!!! Does she say parker in an english accent at 2:10? lol +p9692 +aVNice Video. +p9693 +aVcrazy +p9694 +aVYour videos are charming! I'm completely in love with your show! Thanks for taking the time to share :) +p9695 +aVGo online till sunday morning then go too sleep +p9696 +aVBut what if u DO like it? i think this song, or at least the way u sing it is wonderful and beautiful and awesome lol +p9697 +aVgreat song, great video. thank you! +p9698 +aVGood times role! +p9699 +aVI'm not a businessman, I'm a business, man +p9700 +aVXD awesome +p9701 +aV0:24 Birnes: "You guys want evidence? Melanie will show you the evidence." Sounds very convincing but as always, their claims and emotionally-charged language come to nothing. This is is *no way* evidence that aliens are visiting our planet. Is it unusual? Of course. But we've all seen unusual things and they're hardly proof of anything so outlandish as alien/human crossbreeding. Hate these guys. +p9702 +aVGreat just the way I teach +p9703 +aVthen you do it dipshit the album came out yesterday. stopp bitchinnyoo +p9704 +aVThere not actually bakc together are they ? i thought it was just a few one off re-union shows ? +p9705 +aVThanks for the compliment! :D I used Windows Movie Maker +p9706 +aVbaaaaaaaaaaaaaaad +p9707 +aVI agree! +p9708 +aVme too +p9709 +aVhe's kinda cute...not gonna lie +p9710 +aV@TacticalAce89 fraps? yea +p9711 +aVGOD i cant wait 17 days till BCT then i go to Sill for AIT. +p9712 +aVi still dont understand, is there an adhesive or does it slide into a crack to keep it up? +p9713 +aVlove it so does katy and madge +p9714 +aVI didnt know the guy with the crotch gun did the effects! He was awsome in the film hate he turned though! Lost Boys Corey.H and Corey.F cant go wrong! Truth, Justice,and The American Way!! +p9715 +aVThey should of had their home nult like fort Knox due To the type of pej they do assholes hope they burn in hell nice n a slow +p9716 +aVthanks for the upload :) +p9717 +aV@savage44ever +p9718 +aVThanks for posting this fun video. Loved it. The music is Stan Kenton's "Harlem Folk Dance." Ted Herbert, the hilariously prissy, bumbling "professor," is no doubt the look-alike brother of comedian Hugh Herbert, who made dozens of films in the 30's and 40's, and who played a similar simpering, giggling character. +p9719 +aVlove this song +p9720 +aVOne of the reasons this injury takes months to heal is because you use your pec minor constantly. When you raise your hand you are using your pec minor. Go to shake someones hand? Using the minor again. You basically can't avoid using it, but you have to stetch it out well (have a PT do it, don't trust yourself) and strengthen it (also with a PT), +p9721 +aVAppreciate your review. I'm looking into barefoot myself and your rundown of features and explanation of sizes helps. Thanks. +p9722 +aVNice song. Does anyone have a good bass cover fir this song???Post it please. +p9723 +aVThis is a very good film, I found it for free here: viewfilmsfree (.) com +p9724 +aVShes a bad lip singer o.o +p9725 +aVactually he was drunk and i surprised him dumb fuck. i dont even WEIGH 200 pounds so why dont you go get a fucking life instead of talking shit about things you have no fucking clue about. +p9726 +aVlmao i love..."a pair of scissors...with your parents permission!" hahahah so funny! This is a cool video! I love those fortune tellers! +p9727 +aVGodbless Vic +p9728 +aVThe proof is in your misleading video at 7:07.First, you attack other lock companies, then you attack the companies that test them, and now you're attacking the people who you're trying to mislead? Yeah, those business ethics are gonna get you far. +p9729 +aVyou have a great figure! luckky youu +p9730 +aVMaybe if English was your first language you won't have taken my verbal beating so badly. I'm glad you heeded my advice and pissed off, as we both know where this would have ended.May I ask, do you have a job? It's just I'm trying to imagine who has the time to argue at the hours you do, and I just get 2 answers, which is that you're either a student or unemployed, or maybe even work part-time, either way something tells me the anger you show is at yourself for not achieving much at life? +p9731 +aVthaks maha great stuff +p9732 +aVI like the imagery in the background during the interview - really projects the feeling of passion and freedom with your art +p9733 +aVThis is #2 on the list of their best songs number 1 being Almost Lover 33 +p9734 +aVyou had better watch that boy shit... +p9735 +aVBoob sweat at 0:29 /: +p9736 +aVpittsburgh needs to be blown up. they let these mother fuckers do whatever they want. i can NOT stand these pussies. stanley cups or not the penguins are fucking gay. +p9737 +aVlol i love this guy man"THIS ONE RIGHT HERE GOT SERVED TO SOME PLAYERS, THEY WAS PLAYIN BUT THEY ALSO GOT PLAYED""THEY LOVE IT FOR 20 DALLAZ...ALL THE TYM, ALL THE TYM"LMAOOOOOOOO +p9738 +aVfirst comment :D +p9739 +aVmore videos +p9740 +aV1:30 - theirs a Wizard that follows you, +p9741 +aV@MisterQuebec yeah yeah STFU +p9742 +aVDid ketamine make you wear that terrible coat and bandana combination? +p9743 +aVthis is the 4th time ive gone through ur fatal frame series, thnk u snake for bein awesome! +p9744 +aVawesome. I've got to get this someday. +p9745 +aVAaah!!! 3 My two favorite. SNSD Lena Fujii :) +p9746 +aVthanks man yeah I like the way it looks in the dark it kinda trips me out when I stare at it when I am drunk lol +p9747 +aVmoves to much like a walker +p9748 +aVmate thats awesome!!al +p9749 +aVWe have allsorts of tricks up our sleeves her at S-CAT. +p9750 +aVgreat job tom! i liked your lighting work especially. [the blinds were a nice touch too.]-tyler +p9751 +aVCan't decide which is funnier, Fred or Hank... +p9752 +aVWhy is my post repeatedly removed?Five times it is posted then removed.whats up with YT? +p9753 +aVAs a Christian, it is mind-boggling to me that Jews can't enter Joseph's Tomb. Though Israel regularly hurts herself by her concessions & appeasement, I am surprised that she has not protected this site for Christians (since we consider Joseph to be a "type" of Christ). +p9754 +aVman y is this so beeeppiinnng good +p9755 +aVthis hot spiff real talk much luv to everybody in the video +p9756 +aV@marsh1998 Was it a 1973 model? This one is a real hot rod. +p9757 +aVWOW +p9758 +aV@marius10may genius +p9759 +aVAlright Stop!.........Pajama Time! +p9760 +aV...OMG lol its weird I was watching this saw babz then sylv... I was like did I read it wrong lmao. +p9761 +aVwolverine 0:26 +p9762 +aVcoool! should have pup the strings farher out so we can see it better! +p9763 +aVtotally amazing song! soo meaningful, it makes people reflect on things that has happened to them! a nice melody! i love it! +p9764 +aVSo CUTE!!! +p9765 +aVyou have penguin storm,so? I have it too and when u be rockhopper,no one else sees it! +p9766 +aVHillarious!!!! +p9767 +aVYou are a pathetic Loser! If you going to spread crap take some lessons from the decease Nazi Propaganda Minister Joesph Goebbels!! Yep your fat pig Dear Leader Kim allowed 2 million of his own citizens to die from starvation. I hope you are proud of this..... +p9768 +aVGUST GO TO HELL THAT IS NOT A JOKE IS IT ?? +p9769 +aVAngel, thank you so much for taking time to stop by and listen, I really appreciate it, my friend :)Tom +p9770 +aVthe tension in this scene in the flat is unbelievable....they are such good actors to create such an amazing atmosphere because even though what they are doing is wrong, you find yourself seeing their point of view and supporting their relationship, where as in reality, you wouldn't...well I wouldn't. Incredible Streep and Niro!!! +p9771 +aVahhh the starship i was bravo 787th what class was this mine was january - june 09 +p9772 +aVWhat really stinks is this Wheat Thins commercial. +p9773 +aVI have tried and saying "grapefruit" twice also works. +p9774 +aVOk so name me one scientist who does not agree or who has disagreed through "peer review" who you do not consider an idiot. Obviously peer review in this field is worthless. We need more than "it's likely." From what I have seen the whole group of AGW scientist should be thrown out. +p9775 +aVOkay I never comment on this show but Alan Colmes, come on no need to invite this guy to your show, he is the Media equivalent of Tom Daschle, he sucks +p9776 +aVI love you +p9777 +aVJust a fantastic performance. I saw him in the late 80s but missed Belew and got Earl Slick instead. +p9778 +aVThis is such a Great song! love it! +p9779 +aVsickkkkkkkkkkkk +p9780 +aVawesome! +p9781 +aVdude u rock i had to just fly up there +p9782 +aVWow how did this not show up??Very nice job!! I want to see this episode. +p9783 +aV@suensmith ......this is why kenya will never develop +p9784 +aVyou got my vote! +p9785 +aV@IGBJKLHOIGI The real god? Then why does that read "There's no other god than allah"? Shouldn't it read there's no other 'alah' than 'alah'? Hmm?? BTW, 'alah' in paleo hebrew (such as the inscription in the film) means CURSE. Go figure. +p9786 +aVall this needs is yngwie malmsteen. +p9787 +aVthis is...so...bad... +p9788 +aVOh man, this really sucks now. I got jock itch(ring worm-tinea Jacque itchicus) from these scabies. No worries though. I'm treating it with tough actin' tinactin. DAMD THES SCABIES! +p9789 +aVis nich death by house...stranger to..... +p9790 +aVDevelope all the state not just BLOODY ABUJA IF NOT U ARE A JOKE TO THE WORLD. +p9791 +aVcool +p9792 +aV!!!!!! +p9793 +aVIt was a 'Major' political catastrophe, oh the puns that were never meant. +p9794 +aVsharat chandra varma, you are great. thanks for writing beautiful songs. I listen your dad's songs everyday. +p9795 +aVi 3 katy! california gurls... i am 1! +p9796 +aVBrilliant medieval tech support ? totally hysterical...Karnt stopp ghiggling, and have to view it multiple times. +p9797 +aVGreat song, thanks for reminding me +p9798 +aV@governmentuser85 haha. +p9799 +aV@48jarmell the illuminati is dead. +p9800 +aVYet Obama panders to these people.....oh the irony +p9801 +aVReally Good Song :) +p9802 +aVjamming to this song ryte now!!! love from colorado!! +p9803 +aVwat a load of wank..world turned upside down is an old workers song about the diggers...twats +p9804 +aVhard to tell who publishs the book. You should let us know those things when you review so we can chase down those issues more easily. +p9805 +aVIs that idiot one of TJ's burger-munching chums? I hate these publicity stunts! What an obnoxious turd! And he has that lying bearded moron at the beginning! +p9806 +aVuno mas and I am complete :D +p9807 +aVThank you so much for posting this! +p9808 +aVIreland at it's best !!! +p9809 +aVIt won't let me comment a link, so i'll PM you. :;sorry. +p9810 +aVI am not a Bangladeshi but I love her songs. Not only her voice but also the videos.... +p9811 +aVCool Video...What's the name of the song playing? +p9812 +aVReady to night party and meet naughty women **mworld5.info** +p9813 +aVamazing! +p9814 +aVHmmm more like a movie trailer +p9815 +aVyes yes yes yes THANK UUUUUUUUU now ill get my 360 i play my fatass online with my frined THNK UU SSSSOOOOO MUCH DAME TEACHER DIDNT TOLD US HOW TO DO IT +p9816 +aVVERY WELL SAID!! Pero sana TAGALOG yung usapan para siguradong maintindihan ng masa. :D +p9817 +aVwow are you shiting i want my 4 sec back +p9818 +aVsuch a simple song...but so mesmerizing. :) +p9819 +aVthis song is so cute 3 ) +p9820 +aVyou make very lovely babies :) bless them +p9821 +aVIs this a sound stage dressed as a bar ? WTF ? +p9822 +aVshes holding her hand but awesome 5 stars from me +p9823 +aVthe snow is so beautiful +p9824 +aVbullshit +p9825 +aVAH, I see you've already seen the Moo-norail. It turned out well. Though the best are yet to come! +p9826 +aVVery nice! +p9827 +aVone of the best actors ever!!!!!!!!!!! +p9828 +aVEverytime I look Madhubala is more beautiful than ever, the beauty takes ones breath away! this is God given, they dont make them like this anymore +p9829 +aVDoc, +p9830 +aVThank you so much for posting this. +p9831 +aVits designed after a benneli m3 +p9832 +aVQuestion, is it all right to use beef stock instead of water? +p9833 +aVWow. Amazing video. I'm starting nursing school soon and hope to be a flight nurse one day. +p9834 +aVP!NK... Amazing... You are Fuckin Perfect.. I have listened to this song all night Thank you for all you do. Never stop :) +p9835 +aVFUCK!That Was Epic! +p9836 +aVThey totally had the iPad 10,000.2 back in those days, p(psst, this is Anwyn btw, D) +p9837 +aVThose trails look like fun +p9838 +aV@BoX098 lol mine too! +p9839 +aVim doing this in september. how many press ups are you suppose to do, im rubbish at them :( +p9840 +aVgreat video u should join my program and checkout my channel +p9841 +aVresults of demerit1. a mark against a person for misconduct or deficiency: If you receive four demerits during a term, you will be expelled from school. 2. the quality of being censurable or punishable; fault; culpability. +p9842 +aVIf We dont do something about these freeks than we are stupid!!!!!!!!!! +p9843 +aVGibbs smirks as though he's seen it all before. cute I love TIVA! +p9844 +aVah man you saw the tour!?!?!?! lucky duck i wish i could have seen it +p9845 +aVawesome . i hope sony listen to u +p9846 +aVthis song is cool +p9847 +aVniiiiiiiiiiiiiiiiiiice +p9848 +aVLOL!!! Bing! +p9849 +aVAwww... I went to Australia back in 2005 with a program.. A group of probably between 30 and forty high school age kids... and over the course of the trip, this was deemed as our group song! Nostalgic memories! What a wonderful song and group. +p9850 +aVWonderful!! +p9851 +aVKane lost his mask in the late 90's and early 00's, definetely not in 07 so something is messed up there. Really poor quailty. +p9852 +aVSave the Constitution - Ron Paul for President 08 +p9853 +aV@Mr305aka BINGO! +p9854 +aVi love the sound of whiskey sloshing in a glass container in the beginning +p9855 +aVcalled sarcasm look it up +p9856 +aVdoes any one know where i can find season 2 episode naked babes. thanks +p9857 +aVWhat a life story! +p9858 +aVQiu Yike has some nasty blocks +p9859 +aVScotty is an annoying putz. +p9860 +aVThere not fkin sniper lobbies u no people can snipe fkin hell so u disliked it +p9861 +aVDoes anyone know? the name? of the piece of music used in the intro? +p9862 +aVvery cool! +p9863 +aVwooohhhh come on the 80,s :) +p9864 +aV@OctalLord Means he's testing things +p9865 +aVThis speaker really wants to sound like Obama. "Ah, Ah, Ah, Ah, Ah. fucking retard cant talk. +p9866 +aV@xRabiedRoosteRx lol...me too :P +p9867 +aV@meshowcauseme3 +p9868 +aVi'm literally crying right now. +p9869 +aVteam garcia!!! +p9870 +aVIs his brain like a one track mind on repeat?He keeps saying "Oh! I'm leaving bye!"*six months pass*"I'm leaving again people are sick!"Seriously....../Facepalm +p9871 +aVI love this song:)Play all the time on my Ipod +p9872 +aVOH MY GOD ! That , If you don't mind me say ...was actually beautiful :') +p9873 +aVI have my first lesson today. This is very helpful! +p9874 +aVi hope shes doing okaii --- cutest thing ever! +p9875 +aVarmy prints on a girl lesbain +p9876 +aVNeil is awesome, very talented! He has his bad ideas, but mostly rocks!!! +p9877 +aVThe high notes are off and the harmonies are all over the place! :s +p9878 +aVnudity on youtube lol +p9879 +aVi love this! those 2 r amazing! this was my first "yaoi" viewing! i was 9 when i saw this! +p9880 +aV@youngbuck189 Wait, say what? +p9881 +aVSome people are just cold hearted. +p9882 +aVwhy the hell doesnt rockstar make updates anymore... +p9883 +aVYour the best Dr. Duke thank's so much, God Bless you. +p9884 +aVlol thsi video is so great!!! love the couple and great song!!!kinda lightens the resident evil mood!! hahaha +p9885 +aVwhats up with fire cape and rune kite? +p9886 +aVI AM KING +p9887 +aVwas it ham with pineapple? That's my favoriteAlso first place on this song is very impressive. +p9888 +aV:DD yaay! it rocks! awesome job, i just heard of this band, theyre not bad. +p9889 +aVi agree too +p9890 +aV@Wahofann yea but black ops is going to be better :) +p9891 +aVWhat a powerful video with powerful points. I can't wait to check out Walid Shoebat's new book!Ted +p9892 +aVCOOL mask! See the new movable masks that move with the movement of your own face! Click on the Brow Raisers link (left) to see more :-) +p9893 +aV@iliketodothat rofl. XD +p9894 +aVI love your videos, they are so informative thank you for sharing your beauty tips. Can you do a tutorial on how you do your eyebrows? +p9895 +aVI like The Tempest and Different on In Silico and Set Me On Fire and The Fountain on Immersion... thats it... HYC is and will always be their best. +p9896 +aVdude i think thats the best one yet jk lmao +p9897 +aV@rafikcc Revelation 8:9 " and a third of the creatures that are in the sea which have souls died, and a third of the boats were wrecked". +p9898 +aV@da324 Use cedar on the bottom too. Cedar on cedar works great especially western red cedar. +p9899 +aVjojojolan-please post more info. do you need contents of specific cell? Do you need to pass that to a separate form? +p9900 +aVhey charles and alli, ive been on youtube a lot recently and ive been looking for things like ur show and when i finally started whatching i cant stop, anyways i have a question for Alli. Ur going to spain soon and i think u should do what u guys did in the south of the border trip and find a wall with a bunch of other stuff and write something like CTFxC FTW or whatever and see how many people would send u pics(besides im going to spain next year and i think it would be awesome to see that) +p9901 +aVwhy are pervs so ugly? +p9902 +aV@123wedo321 me 2 lol +p9903 +aVWonderful! +p9904 +aVWho are the members of the band? Anyone know? Anyone? Please post info if you know. Great stuff, Hoagy was the best! +p9905 +aVI've never played a Megaman game in my life, yet I *still* love this. Excellent! +p9906 +aVturn tape lol i love technology +p9907 +aVsht i aint heard this s0ng ina hella l0ng ass tyme d0e! +p9908 +aVThis is ridiculous. Just turn off the game for half an hour. +p9909 +aVomg!! that man talks sooo slow, i understand he may have difficulty with the language perhaps but he is discussing English literature so i doubt it. its like spit it out man!! +p9910 +aVshout out cc.. +p9911 +aVwhere is the engsub +p9912 +aV25 years later and I still crack up! +p9913 +aVbest movie ever made! the Godfather of Bollywood. All star cast, Raza Murad, Amjad Khan. Incredible!!!! +p9914 +aV1% of teens would cry if they saw Soulja Boy at the top of a skyscraper about to jump. Copy and paste this EVERYWHERE if you are in the 99% that would bring popcorn and shout "Jump nigger!" +p9915 +aVSome awesome shots there dude. Bravo. +p9916 +aVmy school is doing this tonight! +p9917 +aVI have to say, that was actually quite good. I liked it. +p9918 +aVi love ur hair :) +p9919 +aVda ast song iz frm dj hero ilyk dat fix up ahaha letz go +p9920 +aVBP wants everyone to think they care about the ocean and the wildlife and US...but we all know what they REALLY care about Greedy assholes. Dont listen to these fake commercials with their sappy music. DONT BELIEVE IT!! +p9921 +aVdo you guys live in pennsylvania cuz i know a kid who looks completely identical(not exagerating at all) to the kid on the red chair with the yellow chat and his brother looks a little like the red head kid, also, i know ive seen the black hair dude (with the blue chat) somewhere. I think they yellow chat dudes friend live across from my friends house and i got to the same karate school as theyellow chat and red head dude (if they are the same thing) +p9922 +aVThis is Kate's favorite outfit. +p9923 +aV435 are set for life while the rest of America won't get diddly from Social Security and may never be able to retire! +p9924 +aVMaybe Uncle Scrooge gave it to him? +p9925 +aVLOL, I saw a thread that I started. +p9926 +aVkudos , om mani peme ho , free tibet and long live his holiness dalai lama , +p9927 +aVplease download end part of this fight +p9928 +aVthe acting in this scene is brilliant and its just so emotional it makes me cry everytime,fantastic ! +p9929 +aV@batfly Where did this JFK quote come from. This is an important quote! +p9930 +aVhaha, what a funny dog ! +p9931 +aVawesome job! love mickbeth. thanks so much for posting! +p9932 +aVi love this song. +p9933 +aVyaaay miley! :D +p9934 +aVmicrowave obama +p9935 +aVWomen wrestlers in a cage, wouldn't happen in WWE. +p9936 +aVCongrats Manuel!!!! Keep it up! +p9937 +aVLiking this being played in a slightly different key to the original. I play this on my alto sax, it's one of my fave tunes ;) +p9938 +aVNot bad lol +p9939 +aVLove this tune. It was the first single I ever bought with my pocket money. I was 11 at the time and had just moved up to senior school. It cost me 42.5p (8s 6d in old money). I played it to death on the radigram at home : ) +p9940 +aVking is back! +p9941 +aVand Thanks for all the comic con vids!!!!! +p9942 +aVthe725 dislikes were from just plain old twilight faggots +p9943 +aVI love this song +p9944 +aVi hate to say this, but is Zizek whacked out on coke? +p9945 +aVThese girls really are messing this movie they are not acting well too much trying hard +p9946 +aVLove this song (its funny cause its true) and Wally's save when the mic falls is a thing of beauty :) +p9947 +aVwell im 13 but when i was like 11 or 12 i was hit on by like a ooo what was a FUCKING 80 YEAR OLD DUDE!! +p9948 +aV@NTRLflvr Mariah Carey Man! +p9949 +aV10 years ago but they sound like the future +p9950 +aVwow!!!! this grate +p9951 +aVcool video!!!! He is an great jumper!!!! +p9952 +aV@cptrelentless and your evidence for this is??? +p9953 +aVi want that game +p9954 +aVWow I love that 'soprano' ending! +p9955 +aVnice +p9956 +aVO my god! I watched the first 22 seconds and could not go further. I have heard stories about dogs sacrificing their lives for their owners. I feel so angry at this man who is doing this. I hope he goes to hell! this is just cruel. The face of the dog at 22. is heart breaking. +p9957 +aVThis was awesome on Chuck. +p9958 +aVholy shit! hes married? +p9959 +aVyayyyyy!!! ]] lol +p9960 +aV2:29 "Well it's not bad my dear." LOL John's funny. +p9961 +aVWho is the composer of LuoShui? Is it Tong Dik Sung? +p9962 +aVYeah this was at a rubbish time as well other times when ive server crossed or used japan ISO theres usauly 1000 people +p9963 +aVThere's no telling how good you are. I covet the kit. +p9964 +aVthanks for sharing.....he is so cute....... +p9965 +aVMan That Red daytona gets busy ! +p9966 +aVI would go to Robalo Boats website and do a dealer search. +p9967 +aVEpic fail +p9968 +aVwhat is the song in the intro +p9969 +aVSUPER interesting! +p9970 +aVwasn't 10 seconds +p9971 +aVErnie Sanders is a shyster and a religious fanatic. Don't trust this man. He's the one who should be locked up. +p9972 +aVFucking yank cock suckers!! thats not scaffolding!!! +p9973 +aVg.love sweetness +p9974 +aVAll i know is sunderland are gonna win +p9975 +aVThomas Lockyer is absolutely gorgeous. +p9976 +aVthe dudes name is trevor mcnevan and the drummer is steve and probably are the most awesome band ever (besides skillet) rawk on thousandfootkrutch +p9977 +aVhey abielle your filipino!?kewl!nice video ) +p9978 +aVyup, I'll be attending Ithaca college as a music education major in the fall. though, i do want to go into music management after a couple years of teaching. +p9979 +aVyep is right lad +p9980 +aVDamn! Ur hot Carla. +p9981 +aVThis song is nice +p9982 +aVno a possum pin +p9983 +aVbarack just went uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuhhh alot. +p9984 +aVI just love when I big tough looking guy gets all sappy over a bird! Adorable! +p9985 +aVrelease it! +p9986 +aV...nooo that's the dyke, the fags making women's clothing. Hilarious. +p9987 +aVI can see November from my house and all you young turks will be crying! +p9988 +aVthey are really far away, not much of a atmosphere +p9989 +aVT.I.'s a great rapper, rite there alongside Pac & Biggie...... +p9990 +aVwtf is this??? i thought this is Liverpool's Switzerland training camp +p9991 +aVGODDAMMIT I WANT J.R. VS HEYMAN +p9992 +aV@Birdieupon He's obviously just going to Haiti for the attention (and thus, all the money it brings to pad his hefty bank account). If the filthy scourge of religion must exist on this planet, it would best be done behind closed doors, in private. +p9993 +aVI agree with this man! Thank you for standing up for the truth! +p9994 +aVI know this has nothing to do with the faith itself, but I had to comment: At 7:04, that is a BEAUTIFUL family. Not only are they physically beautiful, but they seem so happy and united! And that little girl and her mother are just gorgeous! +p9995 +aVi wonder if it's coincidence that this came out the same time that Watership Down was written. +p9996 +aVMegga!!! +p9997 +aVwtf r u tlking bout his lyrics r da shit now go listen to his newest mixtapes bro this is not 2007 where he did that crank that his lyrics have goten strong now and luda just sucks past is the past nobody cares no more bout wat he was 5 years ago +p9998 +aVlol +p9999 +aVthe aunts and uncles are hilarious and so frisky! Mark and fun are so cute! +p10000 +aVWise words! Inspiring! +p10001 +aV@CarringtonVilla I think the real question is, what exactly do you have to contribute? +p10002 +aVI say install Ubuntu! :D +p10003 +aVwow, big boobs much? LOL +p10004 +aVGreat job! Really enjoyed your video! +p10005 +aVHe is so fine. +p10006 +aVI have to agree, it sounds like the same B.S just a different time. Will we ever learn? +p10007 +aVthat was very usefull adam +p10008 +aVim sorry but this extremely boring. Im from port, and i was excited to see that someone made a documentary. but come on. +p10009 +aVThen why did we let you be free again???? Why let you???? Why have a revolution over something planned?? I'm not a racist but that gap is left out. +p10010 +aVI was wondering this, it's because in some of the songs he prefers to mess around with toys and stuff during certain songs, so he leaves it ot the other guitarist. But then last year when he had the car crash he got a permentant guitarist cause he couldnt play [ +p10011 +aVThe entire series of video clips, hosted btw by a free internet hobbyist service, amounts to nothing more than people opposed to the Lisbon Treaty, but not having the intelligence to state WHY they are so opposed. +p10012 +aVYou guys are SO good. :) +p10013 +aVThe music may not be of good quality. The Police Band is playing the tune 'General Salute'. You can also hear the Buglers playing their version of 'General Salute' (which they play when the Guards change at the Quarter Guard).Tvm. Special Armed Police (SAP) was formed when the Travancore Nair Infantry regiments were phased out, or moved into existing Infantry regiment (Madras Regt.). Travancore Nair Infantry in earlier days of the king provided bandobust duties for the 'Aarattu' festival. +p10014 +aVEveryone Democrat in Congress and in his administration made the same claim, including Hillary. Did you believe Clinton when he said Sadam possessed WMD? +p10015 +aV@ModalTrains4884 Her boiler was in an overhaul in 1992. But then in 1994 the overhaul was haulted and a patch up job was done so 1218 could be towed back to Roanoke. All of her parts are stuffed in the firebox, and yes some key parts are missing. She is b +p10016 +aVInteresting +p10017 +aVI have been searching for this song for over 40 years. When I was in Libya in the 60's, my friend used to bring this little 45 lp to all dance parties. I finally found it today, what a relief!! +p10018 +aVyou guys are gay +p10019 +aVWhat is the explanation behind them curving and changing directions. Other than intelligent control? +p10020 +aVCan cysts on the bone develop independent of osteoarthritis, and if so, are they an indication of early arthritis? +p10021 +aVi put originalfw.ipsw in the ipsw folder, and ran ipsw.bat, but when it finishes, ther is no jb.ipsw wat do i do? +p10022 +aVI do not want to sound like a downer, but that was kinda boring +p10023 +aVthanks kripp, another good guide +p10024 +aVHEAVY! I love the theremin. +p10025 +aVamazing! +p10026 +aVWillVill28Yes, but facts are irrelevant when dealing with attention whores, religious zealots and bigots.It does not seem to matter that the State Department validated his birth record, nor that the State of Hawaii has posted a sworn statement vouching for its authenticity.There are people for whom facts are incidental annoyances when compared to the dire importance of skin color and politics. +p10027 +aV@MapleDork ugh you're a mind reader. i wonder what the champions of charity would've been like had those five crews won instead... +p10028 +aVgoddamn were you under a rock for Dec/Jan? +p10029 +aVGaaaah, you fiend. the one person....I dont rightly know. I suppose id have to. Id sit her down and tell her how to do a british accent properly, for starters. Then id lecture her on morals and decency whilst occasionally stopping to sip from my cup but maintaining a stern glare. then we'd get in to an argument and id call her something too ghastly to type, throw my (now empty) cup on the floor and inform her ive had better tea dates in my foulest nightmares. +p10030 +aV@RettoT wtf +p10031 +aV@sonoe09 you from madtown???? +p10032 +aVGO FUCK YOUR SELF +p10033 +aVwait no -navy seals. +p10034 +aVfuck fuck fuck!!!!!! i didnt send the power to archmedies is there any way to change that +p10035 +aVI always thought thomas more was an asshole. he basically ruined his family's life with his execution just so that he could have a perfectly clear conscience. back in his time, a family couldn't survive without the man of the family (as you see later in the film). He needed to get his priorities straight and succumb to Henry +p10036 +aVThat is where comprehension comes in. The dumbing down of America. Lets say you sit a child down to explain something to them. Regardless of all the plethora of info you give them, if the child has low comprehension skills, the child will continuously ask why. why? why? why? +p10037 +aVBadass...Can't wait to see the whole film. Awesome trailer guys :D- Tom Bucag +p10038 +aVIt's been a long time since I listened to "Sound Affects" and unfortunately forgot about this amazing song. Stumbled onto it last night (watching the Rockpalast show they did 30 years ago). +p10039 +aVThat cop was a d bag +p10040 +aVhey check my newestvideo out please thank you +p10041 +aVWhere can i buy CHEM-DIP? I could really use it.What year is your Cub? +p10042 +aVgreat piece :D +p10043 +aVvery cool, I really enjoyed that +p10044 +aVsooo good +p10045 +aVThis is funny as hell! I love it! +p10046 +aVImpressive +p10047 +aVhaha its funny verry funny XD +p10048 +aVhaters +p10049 +aVThere going back which is quite awesome :D +p10050 +aVthis is awesome how but how +p10051 +aVGive em hell Barack...!!! +p10052 +aVlove Andy's voice... +p10053 +aVHe used to be married to Glady Knight. +p10054 +aV@KingDingaLing090 prove that dingbat. he sees way more of whats going on than you. stop pullin bs out your anus +p10055 +aVthank you very much ) +p10056 +aVCRACKER TRYING TO JACK MY ROLL-X +p10057 +aVFake and gay +p10058 +aVmotley crue is the fuckin best +p10059 +aVWait, what? +p10060 +aVChris, I'm sick of seeing naked men and such and by that I mean guys with their shirt off. Can't you find something funnier and slightly more appropriate? +p10061 +aVErin..Thanks for your tips..Its very helpful +p10062 +aVAsalaamu alaikum wa rahmatullah wa barakatoh +p10063 +aVi so lvo et hsi video tios cute and sweet +p10064 +aV@buzzhonky Although I'm sure you're all for flattery of those more intelligent than you, your request is unreasonable. +p10065 +aVfor my money he was the best to ever lace em up !!! +p10066 +aV@Skelevision Thank you Skelevision, please share this video with everyone you can +p10067 +aVIraq was booted out of Kuwait by the US. It fought an 8 year war with Iran. All of it's weapons were purchased from the west. The US knew exactly what Saddam had. I don't understand how anyone could believe our intelligence would be this inept. This is why so many quit after the invasion. Bush lied when he said the info was provided by our Intelligence. This is why so many angry books by former intelligence agents. +p10068 +aVthis performance is on limewire if you lot wanna download it +p10069 +aVhe's all hyped up...no one knows what he had in that hand...1,100 phil's a funny dude +p10070 +aVhey you should go out with jimmy xD seriously +p10071 +aVCause alot of people think any form of touch even innocent touch like tickling is between guys is a sign of being gay and wanting more and def the furthest from the truth! Those people are not comfortable with themselves thats all! +p10072 +aVhahaha emma dat lachje :p +p10073 +aVthis is very good. +p10074 +aVOctober 29th. Venus Inferior Conjunction. Weird things happen on or within a couple days of these events. +p10075 +aVawesome!!!!!!!! +p10076 +aVIt was a good game. Most Canucks fans are cool with me and the ones that made it to the Honda Center were pretty classy. I sat close to this group of Canucks fans and one them had a poster that read, "you wish you had swedish twins" lol +p10077 +aVGreat fuckin video bro killed it man nicee. +p10078 +aVYou got good grades in music? I hope you're kidding and not really trying to say that taking a guitar and piano class means you've studied music. I have a bachelor's in music and even after years of analyzing compositions by many of the greats, I don't feel I've even scratched the surface. That's the difference between you and I; you've settled and are easy, like the rest of the simples that buy into what they're force fed. I'm discerning and actually pay attention. Creed is terrible. +p10079 +aVThank you so much! For the first time I managed to do a stitch after watching the video less than a hundred times :) +p10080 +aVwas it necessary to use the word "shitty?"and hunny , if you dont to hear their voices , might as well search up another video and stop trying to be a badass with all these comebacks :) +p10081 +aVI love San Fransisco, spots everywere +p10082 +aVCool video guys! Bodybuilding Warehouse is top! Bought all my stuff from you lot recently, cant thank you guys enough! +p10083 +aVvery cool and i dont smoke +p10084 +aVHahahaha Mallory talking to that chicken XD she makes me laugh +p10085 +aVuhh why does youtube allow this big of a video? no way this is 15minutes XD +p10086 +aVASIAN! I'm going to start buying some MAC makeup because of this video! And also since I just started out in makeup you better help me when I have questions ;). lol! Love you from other ASian. (and if your confused PGS. lol) +p10087 +aVWow...that's impressive! +p10088 +aV@FaithNoMore1977 What does that even mean? If you're going to get short with your keyboard, you might as well make sure everyone know's what your talking about. +p10089 +aVfuture looks bright +p10090 +aVhey she was in tank girl +p10091 +aVblaga bla bla bigidy bigidy i sOund nothin like john travolta +p10092 +aVLobo-Awesome XD +p10093 +aVThanks. +p10094 +aVHere we go. Censorship. So long first amendment! +p10095 +aVthank you. like the first thirty seconds helped me with my problem lol. do u think u can make one on how to make npcs' move one or two steps at a time? that would really help me. +p10096 +aVAnd didn't Capp rather crudely put the moves on her? +p10097 +aVEhhhh... I think you're misusing corpus delicti. The corpus delicti is a test to determine if the crime being charged has actually occurred. For example, if we want to charge someone with murder, we have to show there has been a murder first. To do this we use the corpus delicti. You're trying to use it as a means of defining which actions are crimes. That's really outside the scope of what the corpus delicti is meant to do. I don't think any court has actually applied it this way. +p10098 +aV@daymyth tell me you are joking. Oh no, u are serious.OMG, you actually believe what you are saying. well. Good luck to you. +p10099 +aVWRYYYYYY!!! +p10100 +aVwhat a fucking pusssssssyyyyyy +p10101 +aVI love this video. +p10102 +aVshes old nw. +p10103 +aVI love ouiser...."A bunch of my friends would dress up as Nuns and go bar hoppin'" ROTFLMFAO +p10104 +aVYep, pretty much, lol! It adds to the overall appeal of the game IMO! :D +p10105 +aVYeah this one has a lot better video quality than the other one. +p10106 +aV@gaiusscholasticus; I don't assume any rights, my friend, because I wasn't there. +p10107 +aVno madaras brother is definately dead, madara took both of his brothers eyes and danzo only has the sharingan because when itachi killed shisui it was under danzos orders because danzo wanted a sharingan himself. +p10108 +aVI have listened to many subliminal tapes, but this is certainly beyond anything I have ever experienced in this kind of genre. and, the art is incredible! +p10109 +aVGREAT VID WALT! As Always! Walt i'm so sorry i havent made your show in a while. I have been working on new tricks and my show but im hoping to make your show asap. I think im meeting up with ustream on someday next week and i think they said it might be on monday. Walt i am truely sorry i cant make your show but your the man walt! Keep the music going!-Cameron +p10110 +aVWow, lots of cool things about UNT that I didn't know, and I went there! :) +p10111 +aVThere is no better Punk Rock band than the Ramones! And thats my opinion. +p10112 +aVit's not really fair. everyone except Terra, Ven, and Aqua, the three HEROES of the story, got a happy ending. +p10113 +aVPolice Academy was his last movie, He should have left it at that.Horrible movie,,, +p10114 +aVi love the flow of this song and its just a couple of words but thats what makes it catchy.i really like this song. +p10115 +aVAmazing. Cela m'a beaucoup plu. Top stuff. +p10116 +aV@Cheatman97 you ever heard a GOD rapping? +p10117 +aVthat wasn't blue meanie you jerk. +p10118 +aVWhat the heck? Why is this flagged? Err... now i see that others are also wondering what idiot reported it... Sheesh. Just coz you hate j-pop from the 80s... +p10119 +aVVery cool view of the inside of MMA, love Shields and his crew, looks like the real deal. +p10120 +aVlooks fun, i might go there next year. what dorms are those? and how nice are they compared to like brandt( if that isn't brandt)? +p10121 +aVI saw the theatrical version in the theater and the opening credits were very erotic. I know...for those who don't recall it had Buck and various women mackin on the Buck Rogers logo. If I recall correctly. +p10122 +aVI saw Pepsi without High Fructose Corn Syrup, I was really surprised. +p10123 +aVfuck u i ment the video dumbass +p10124 +aVwait, so, remind me again what he would know about anything? he fucked up countless albums(surfer rosa, in utero), and has his head way up his own ass. +p10125 +aVThis is such a powerful video. It is amazing to see what you guys are doing for these beautiful women and children. Dave +p10126 +aVthats shocking! +p10127 +aVlol, imagine being the drummer :D +p10128 +aVI love it +p10129 +aVdope as usual! rare finds... +p10130 +aVLoved this video :) +p10131 +aVBig Meaty and Bouncy! And that organ ROCKS. Maybe a little Wolfmother would be a good choice for the band.This is my idea of what a rock band sounds like. +p10132 +aVethier of those would be acceptable too +p10133 +aVi love u more 2 +p10134 +aV@Rodzhila its not as funny as MXC cuz they lack lil Asians and the funny characters +p10135 +aVthankyou! this helped me soo much! +p10136 +aVHey, this is a really awesome quote mix! And, of course, we all know Sarge is an amazing singer after the third part of the Reach special with the Forge song... +p10137 +aVPI MU....the Polo Madness KHAPTER BABY +p10138 +aVhahah mayo u wild cuzzo +p10139 +aVdemasiado preciosa i will love to know you +p10140 +aVWho is to say that they have not invaded....subversely creating a race of ingnoant, consuming slaves! Remember perception is reality....our collective eyes are being opened to things that are not from this world....and so we must ask the question... Are "we" from this world? We have step by step been leaving the earth the day we put shoes on. Think about it....deeply. +p10141 +aVomg that is awesome. +p10142 +aVPlease look & listen to this spiritually stimulating Youtube video*September 19Th*Mark Lakeman of City Repair is coming to LA & will be teaching a very groovy hands on workshop @ HM157* +p10143 +aVif you pause then clicj past themit only works sometimes +p10144 +aVno your not! +p10145 +aVYes, but in reality (especially at that time) he certainly would have incurred the displeasure of the tennis club members by turning up on court wearing casual trousers, shoes and long sleeve shirt! +p10146 +aVHow very beautiful, CC. I would certainly love to walk there among such lovely landscapes. +p10147 +aVI aggree, that kinda police brutality is detremental to the confidence the public has. Thoes arse wipes should be fired and arrested however much like politicians, they will 'get away with it'. +p10148 +aV@MultiUncensored You're the one who's pissed because a crtic gave thumbs down to some movie you like. Faggot. +p10149 +aVthe big dick rail. LOL. +p10150 +aVsports game suck aSS +p10151 +aVoh, and i got to see her live outdoors this summer at Fraze Pavillion in dayton ohio +p10152 +aVThe Maghreb Union Countries "place of sunset" or "the west"The Maghreb Union Countries "place of sunset" or "the west"The Maghreb Union Countries "place of sunset" or "the west"The Maghreb Union Countries "place of sunset" or "the west"The Maghreb Union Countries "place of sunset" or "the west"Wiki put Conrad Black in Jail +p10153 +aVone of my faves :P +p10154 +aVmy favorite NOIR DESIR song. SEXY!!!! +p10155 +aVexelent explanation +p10156 +aVA great video. *****:-) +p10157 +aVThey totally copied Metallica. Listen to the beginning of Creeping Death after watching the beginning of this. +p10158 +aVI can never understand how an anime eyeball can be round..... isn't it supposed to be huge, and possibly SQUARE? I mean, the whites in anime eyes are huge and not round at all! +p10159 +aVlooks like fun +p10160 +aVankward to watch +p10161 +aVmy youth showed this sermon video to us today at church and i just LOVED this song! most christian songs aren't harsh enough (in a positive way) and really send out the message, but this one did and i think God REALLY spoke to Kendall bout this one!!! thanx for this AWESOME powerful song! +p10162 +aVwhere you at alaska??? this has to be old footage. +p10163 +aVThis is the best cover of anything I've ever heard +p10164 +aV... Having Sora In Brawl Would Be +p10165 +aVCan anyone tell me which fugue it is at the beginning??? +p10166 +aVHow can you type with a PENIS in your mouth?? That's a skill...make a video of that. +p10167 +aVIlove your video rollin!!! and ballin!!! +p10168 +aVBrilliant song, and who better to deliver it than Jesse Dixon. AWESOME! +p10169 +aVlove pete +p10170 +aVki lo gba instruction lowo daddy..iwaju yin ni ma...daddy..Mr Latin funny yo..lmao +p10171 +aVSit In My Lap...Hold On!! Stop Moving!! It Pose To Hurt!! +p10172 +aVGet a grip! I have already given you my views.NOW just accept them! +p10173 +aVyeah your gonna look a bit weird arnt you, you one day randomly turn up at a neighbour's door and ask to check all their rooms +p10174 +aVsmartest talk ever +p10175 +aV@lunabianca22 That was well said point taken. +p10176 +aVThank you so much for posting!! I taped this in 1990!! I was 14yrs old and watched it every day!! I let someone borrow the tape about 6 years later, and I never saw it again.. But thanks to your posting, I can hear/see it again!! Thanks again!! +p10177 +aVI feel that if this video were entered in the Grammys, it would win for best music video. +p10178 +aV@McAngelo24 +p10179 +aVi love this song +p10180 +aVThanks Jamenjoe, I've found the song! Nye Nindu by Agricantus +p10181 +aVGod dammit Chu, I thought that you were above wobbling :( +p10182 +aVyep real film +p10183 +aVGlen Beck is prime example of republican greed. It?s always me, me, me, I, I, I. Caring for no one but himself. +p10184 +aVNice! I was hoping you would upload this show. It's one of my favorites. +p10185 +aVi like dark crusade alot next time pls play as imperial gaurd +p10186 +aVso madd i voted for her in 2005glad shes gone! +p10187 +aVthis is sum mad talent take time to look for a track called im sorry ,reaching for me ,you are my everything on my channel im from the uk so wud sound like different rap to u but plz comment rate n send out to friends ty +p10188 +aVfucking posh cunts, alright for them to pollute the air with there V8 tractors........suck my ol' bill you toffy nosed cunts +p10189 +aV2 people missed the "Like" button. Awesome song! +p10190 +aVAwesome Video. +p10191 +aVYou really are an idiot aren't you? It is hyper saline, and part of the ecosystem of the area. Go look at a global map... you can clearly see that Salton Sea was once the top end of the Sea of Cortez... and through years of sedimentary deposits, became a land-locked inland sea.The summers make the edges more saline, and have less oxygen available... the stronger healthier fish travel to the deeper sections of the lake and are fine. You really are an idiot.... +p10192 +aVIs it necessary to own a large white tunic to be a cult leader? If so I have been going about this all wrong with my jogging suit! +p10193 +aVNever give In! +p10194 +aVVery nice video. And such a beautiful song. Thank God we have people like Nichole Nordeman to help put words to the praise that our hearts feel toward our Lord. What a blessing her music has been to me and my walk with the Lord. +p10195 +aVfags :} +p10196 +aV@iMartger he is a nazi. Get your mind out of the gutter and start thinking. +p10197 +aVlol its ok +p10198 +aVwhat the fuck is the name of the song +p10199 +aVEuropeans thought they could import muzzies to use as cheap labor, and that decision was the beginning of your collective cultural suicide. You did not understand the nature? of those you brought into your midst. And whenever one of your own stands up for your culture and heritage, you denounce them and call them racist. Your only hope for survival as a people is mass deportation. +p10200 +aVbrilliant free runing +p10201 +aVthanks for posting +p10202 +aVNice +p10203 +aVI swallow it every tuesdayNow that is funny. +p10204 +aVI only see two modes in Darkmount...kinda sick of the lame third modes...i would rather have them focus just on two modes and keep them solid...but i do have to wonder what is so hard in designing a tank that can also turn into convincing looking turret +p10205 +aV@ZeroTechSkilz Thank you and thank you! +p10206 +aV'I got number 6 7/8!''6 7/8 is my HAT SIZE!'Genius! +p10207 +aVme luv go even of om, just a neginner +p10208 +aVwhen this game comes out,its gonna be packed with people. I SOOOO WANT THIS. +p10209 +aV@Tobsy1981 not much a sense of humor eh? +p10210 +aVi absolutley love this song. +p10211 +aVThis spared us many tears this morning. Thank you so much for making and posting this. +p10212 +aVI hadn't heard this for over 50 years. Simply marvelous! Thank you. +p10213 +aVTreyarch wins +p10214 +aVYour videos are really great. Enjoyable to watch and listen to when vibin. +p10215 +aVI have to ask you...have you ever been bitten....and are you always barefoot in the swamp??....by the way..this video is amazing......very good..I have some vids on here of a black snake and some other things along the susquehanna river where I live in Pa... +p10216 +aV@somersetforever you just dont appreciate motorsports, dont be mad because you dont have what it takes to build one of these trucks capable of doing so much. just get back in your eco friendly fag mobile and ride. +p10217 +aVmartin lawerence is the best +p10218 +aVLove how Worf patches his fucking spacesuit with a dead borgs hand. What a badass... +p10219 +aVhahahaaaaaaaaaaaaaa myyyyyyy spaghettttttttttttttttttiiiiii!!!!!!!!!!!!!!! +p10220 +aVTwo words: Bad Ass!!! +p10221 +aVmust be on e ;) +p10222 +aVWhat a few great goals so many memories there. Stuart greay's barmy army he is a quality manager !!!! come on town!! +p10223 +aVWe have got to get ya'll down to South MS this spring for a blowout ride! +p10224 +aVOh I'd love a plushie of Adam, so kiwaii! +p10225 +aVlennox Lewis... in my opinion 1 of the best boxers of all time... such a great personality such dedicationamazing boxer :) +p10226 +aVgotta love those neck veins in the last one +p10227 +aVlmfao fucking retard you cant drop trade more than like 60k so shut the fuck up cock knocking bitch +p10228 +aVMighty nice! Bravo +p10229 +aVWell as long as you set Emerl's fight pose to Gamma's, you'll be able to explode when you die. +p10230 +aVDamn - that's one young Stevie Goodman - when was this recorded? +p10231 +aVMy friend and I also were on this cruise. Your video captures what a beautiful sight Hubbard was. +p10232 +aVthank you:) to the beautiful wise women and to you who posts. these words will carry on through the universe, releasing more love. im watching all these videos im addicted.-Dez +p10233 +aVno music +p10234 +aVcool +p10235 +aVVariation is key to muscle growth - you need to make your body "guess" on what the next exercise in the workout will be.When comparing incline dumbbell to barbell press - the barbell press is more isolated and even though it makes your stabilising muscles work - the amount that those smaller muscle groups get is much lower. Also incline dumbbell press can involve a tiny amount of shoulder work.Personally I like the dumbbell press :) +p10236 +aVplease check out my first animation .... :D +p10237 +aVI love this video. So important to remember the bodies needs and compliment our vibrations of being. +p10238 +aVWow you guys make me smile... Speedy can you speed talk while making love? +p10239 +aVWicked mix and a sexy DJ!!!! +p10240 +aVGod made them to understand He is always in control and He tells how He want His people to worship Him. He changed their usual meeting router and made himself strong... God is great. +p10241 +aVThis is an amazing song. My mother is dedicating this to my Dad at his suprise 60th birthday party for their 1st dance. They've been married for 37 years. So fitting +p10242 +aVomg this video is so cool! +p10243 +aVAWEOMSE I was hoping you were gonna make a video of this BEAUTIFUL machine! +p10244 +aVthanks fro posting, all of my trevino faves, and some i'm just now being introdued to. +p10245 +aVThank you Madukwu. You're a genius in your own, so I really appreciate that coming from you. I love this song. I can relate to the lyrics. :) +p10246 +aVYou got to love Bo at the 3:26 mark. "Lets Go Blue" +p10247 +aVawsome song and I love this movie...I have the DVD at home hehe +p10248 +aVat 03:00 "love is a donut" LOL +p10249 +aVAwesome +p10250 +aV@CincyCNote513 hahah good look i got u on that hat. +p10251 +aV@prankstertwins It's not going to be "fun, happy go lucky". Graphic style does not a happy go lucky game make. TWW wasn't like that, was it? Would you say the entire destruction of Hyrule is "happy go lucky"? +p10252 +aV@vampire112098 i know the whole dance too i love this song!!! +p10253 +aVBeautiful - like you! Your talent is never ending.. I LOVE your home.. B.T.W. My home is calling for you, "Maryam, please help me.. I need a make over.." ha ha ha.. But, if you ever need another project, please be my guest :).. Love you lots! Keep me posted on the fabulous home updates... xoxo MM +p10254 +aVGo to? BeyondPhenom. com... It? is Soon to be the Best place to watch Personal Sports Highlights. Hurry and Create an account and upload a video to? show? your talent to the world!! +p10255 +aVAmanda Tapping is one helluva sexy lady. +p10256 +aV7:45 - "You can't win. You just can't win!" +p10257 +aVfuck you. you fucking bastard +p10258 +aVLes Carlson is awsome. Love the raspy voice. And the prancing? When you have Love for GOD..I'd be prancing too. Ahh..the joy in your heart..what a feeling. So dance all you want Les cause I'm right there with you buddy. Rock on!! +p10259 +aVthis is just sssoooooo epicly awesome!! just lloovvee it! X3 +p10260 +aVPossibly my favorite album. +p10261 +aVWHERE ARE THE OTHER PARTS +p10262 +aVlol awesome +p10263 +aVO_O +p10264 +aVAugustana- Twenty years, Love this song, makes me cry all the time. +p10265 +aV@supermant11 Thanks, glad it helped! +p10266 +aV@darkalemanbr nice!!! +p10267 +aVdang that woman can sing! +p10268 +aVi love the song at the very end +p10269 +aV@xxxilsexxx yes it is :) +p10270 +aV@jamesjr934 yeah I think it's lame german house / rave music. +p10271 +aVlol its almost chrismas right now...december 12 +p10272 +aV@8LiGhTs8 Very true, but mankind has grown power hungry. This "hunger" has caused massive destruction, and it has caused many people to suffer in this world. Quite frankly, none of us are happy, unless someone else is suffering. It doesn't have to involve +p10273 +aVwho flagged this shit? +p10274 +aVthis is my song I 3 you minica +p10275 +aVNice. +p10276 +aVBeastly rambo.. my money is on you. +p10277 +aVLove It :D +p10278 +aVshe just had flu not swine flu +p10279 +aVo.o +p10280 +aV@semperjoshua and you do realize LenDale is on the Broncos now, right? I guess "stud" RB's in your book? go through 3 teams total in an offseason as well. Moving on, Thomas Jones may be an ok back, but he's far from what you're expecting and his old age w +p10281 +aVInvestigators determine Air-France disaster caused by plane crash +p10282 +aV@Angiegirl2112 you rock +p10283 +aVthey are playing with people's lives for their amusement. Hubris? +p10284 +aVi love him one of my favorit +p10285 +aVthank you +p10286 +aVHelp Legalize Marijuana! Go to norml(.)org and contact your representatives +p10287 +aVif there was a 2008 version of Rescue 911 the scene of the policecar heading to the scene would be a perfect animated image. +p10288 +aV373 likes and 309 views +p10289 +aVYou deliver amazing videos every time. Thank you! +p10290 +aVObama...lets use his real name finally. Are u really gonna vote fir...ILLIGAL MAN?! Really? +p10291 +aVHappy Birthday Ian. Thank you for the gifts you left us. +p10292 +aVThank You For Returning :) +p10293 +aVI saw when you originally did this on Brunch with Bridget and I laugh hysterically every time I hear it. +p10294 +aVNice Man. Good shit. +p10295 +aVthats my staes song +p10296 +aVShe stayed a long time. Good girl Una! +p10297 +aVI absolutely love your vids!!!! I was a 100% expensive brush buyer until I saw this video. I don't even want to think about all the money I have spent on Trish McEvoy, Stila and MAC brushes. Don't get me wrong they are great and I love them but does not always equal quality, I think it's great you are showing people that might not be able to afford the expensive things that there are other options and not pushing the expensive ones because you know what they say...it's all about the tool. V +p10298 +aVonly 6psi too....smaller pulley made yet? +p10299 +aV@crogeek A Social Engineer do not get you in the newspapers unless that is needed. Consider what is reported in newsmedia, if it says something and people get afraid and start looking, they may find sites which some would consider to be adversarial, and w +p10300 +aVwhy is that zombie naked? +p10301 +aVLOL R U is racism! +p10302 +aVnice video and they all look beautiful together it is so cute and amazing, i cant wait for season 4 where all the girls are together now that would be awesome!rock on! +p10303 +aVwhat a bag of shit +p10304 +aVyea! i looked everywhere for like a year for the commercial with that whistle! i whistled it all over and nobody knew what it was from! lol :) now i finally found it! woohoo! +p10305 +aVwhy are you playing those notes staccatto??? Its supposed to sound like fog, hence the name +p10306 +aVi love his jealousy! +p10307 +aV@PARANOIDnickANDmatt A lot of the Japanese artists I'm into [mainly rock] sound exactly as they do when they're on stage and on their CDs - it's amazing to hear them. It's one of the reasons why I love this band. +p10308 +aVThat's because it was eventually deleted from the game (along with the scene with Max driving a car alongside the train.)The two scenes appear in the game's intro anyway, regardless of them never happening. +p10309 +aVlmaoo, +p10310 +aVhaha sounds like something i would probably do +p10311 +aVThanks! I have fun doing them, so they're gonna keep on coming. I don't even have an estimate for how many videos this series will have; there's just so much more stuff to switch on and off in the 3GS vs. the iPod touch I tested last year. +p10312 +aVWOW He taught! +p10313 +aVhey martha..who is next 50 cent? +p10314 +aVi have a paralyzing "case" of bufonophobia. i'd jump in front of a bus before every getting near a toad :'( +p10315 +aV@hansonkewl06 I'll take the girl +p10316 +aV@ETanner Thanks for the tip! I'm going to start trying your routine. I was just wondering what would be the best order to do these in when I saw your comment. +p10317 +aVGreat Song! +p10318 +aVLike I said...those stupid programs caused me more trouble than was needed.I think the only think I'm really disappointed with is her hair. 3 +p10319 +aVshits fuckin illim glad theres someone who knows hip hop +p10320 +aVAny God whose attention is not hooked by this and "Rex Tremendae" (Tremendous King of Great Majesty)...should be fired. +p10321 +aVKarthik you are a very good teacher. Anyone new to IT, this is a very good place to take training. He can walk you through very slowly and steadily. +p10322 +aVWhy are you getting into street fights anyway? Seriously, when did the point of a martial ART become stopping pickpockets? +p10323 +aVBeautiful. Thanks for posting. +p10324 +aVlmaaaooo, sala kuthria...i love that part....it never gets old!!!!!!!!!!!! +p10325 +aV@gypsiegirlsdarkprinc Ohh man you would have loved them, Saw them 4 times live .. 91/92.. Slane Castle Ireland 92,,, Alpine Valley 91,, Noblesville 91,, Wembley 91,,, They were fucking BIBLICAL,, EPIC i still remember every fucking night i saw them live.. +p10326 +aVnope i trust you has more depth to it and more emotion behind it +p10327 +aV@RobotCow01 Why Are You Watching It Then? +p10328 +aVPinlines were made using Liquitex paint. Any acrylic paint will do. Just have to tape it up good and put it on thick. +p10329 +aVlove Graciela and Adrian so much!so in LOVE... 1:59-2:49 +p10330 +aVYou need to know that anti-scabies meds don't work on some mites. And they are very toxic. plus they come back if they are not exterminated from the furniture and clothing.. not an easy task and it is hard to find something that won't kill you too. +p10331 +aVI love Philly. It was the greatest city to live in. I miss it. +p10332 +aVThere's the dark side of Tenesha that I like to see. Wonderful, wonderful video. The effects where you got the faces to perfectly overlap, WOW!! +p10333 +aVMy Team is finally going to compete 82 games a year. Stat City with Felton running the point Gallo with the 3's Randolph showing off his potential Turiaf and Mozgov protecting the paint. 2010 knicks year +p10334 +aVlove the pic on the roof at 1:39! +p10335 +aVI'm with you Darrell, A BIG NO to this mosque. +p10336 +aVthis has got to be my favourite song +p10337 +aV@CesarRamirezOcampo there is a theory for all things in life :) +p10338 +aVis it me or is it weird that good shows get canceled a lot while the crappy shows are too stubborn 2 leave.4 example:hannah montana +p10339 +aVMan, I love how the characters always have a final talk before they begin battle. Always makes the scene more dramatic...like a calmness before the storm. +p10340 +aVYeah, but it's just that Nazrin is so much easier to get lol. +p10341 +aVelsworth isnt black... +p10342 +aValso try puppet wars FPS its a funny game offline +p10343 +aVI love it when he says "no more drum, no more guitar," but yah went the old time way, hand clapping, tambarine, and foot stomping. It remians me of when we went to methdosit comvention and the young people took over, then the elders join in a helped. Praise Him +p10344 +aVThis is AWESOME +p10345 +aVlove this track thanks +p10346 +aVShort and sweet: Mindboggling call today Oscar. Called the high Friday.. OMNI said 928. High hit 927.75.. Just unbelievable...you can't get better than that! +p10347 +aVYAY Alison! You Rock!love, sarah! +p10348 +aVYeah, it's brilliant. It was a massive leap up from my old 15", really immersive. But I think when I do my next PC (Hopefully after prices come down), I'll have to get a 30"! D +p10349 +aVDarren once again proves to us he is the best... +p10350 +aVthank you ;)))) +p10351 +aVI'm Going to visit Auburn on Talon's Day soon, I cannot wait to see the campus +p10352 +aVomg to EVERYONE +p10353 +aVthat was not a tutorial! +p10354 +aVNext years conference final? +p10355 +aVis there something better than magnificent? +p10356 +aVu are like me have alot of things and havent used many thats y i started the give aways lol i dont know about doing a collection vid we will be here allllllll day ) ill have to get into stila i only have a few products im more on the mac side well makeup side in generald lol be blessed on to the last part see u there +p10357 +aV@Coruscant98 It sounds nicer, the more i listen to it. :) +p10358 +aVthe reason he isnt going to blow up is because all he talks about every single line is weed. 34/7 weed out his mouth. like holy fuck i get the point. you smoke weed. i aint heard shit bout him being hood tho just smoking weed. if i opening his head all i would find is a bunch of fucking weed ashes +p10359 +aVGood job by a brave man. +p10360 +aVDamn..... +p10361 +aVamazing x +p10362 +aVYou make some good videos. Thanks for the effort. +p10363 +aVhaha bullshit you dont have a gf +p10364 +aVshe has a glow to her +p10365 +aVwhat IS this...? +p10366 +aVYet another soothing, tranquil, peaceful, serene, and beautiful video to soothe out TORTURED, BATTERED souls by.... +p10367 +aVthat is a set up !!! +p10368 +aVI will believe that the economy is turned around when our debt is paid off, and when Obama is not borrowing 41 cents of every dollar he spends from China. I will believe that this is not a false recovery when we start producing our own goods. Look at the trade deficit guys... Our money is going overseas, then coming back in the form of debt. The only reason the dollar is where it is now is because the countries holding our debt are waiting to bail out, with minimal losses. We are in for it... +p10369 +aVadd "watch?v F-5nBFMXyX4" to the end of the main youtube URL +p10370 +aVi LOVE win 7. +p10371 +aVyea, she didnt measure an entire cup. it shud hav been thickr +p10372 +aVJust looks like a large, fancy office building to me. Kinda small for an arcology. If it IS an arcology, it doesnt look self sustaining. +p10373 +aVexcellent ...thank you!!!!!!! +p10374 +aVchiga has the main charactor touch!! +p10375 +aViKungfu comes from climber in 27 in 1 Gamebox +p10376 +aVLionels devil he just uses surveys and studies as examples not proof +p10377 +aVid rather not +p10378 +aV@Horsymad2 thankyou!! +p10379 +aVno ive never eaten a bug +p10380 +aVthey did that on purpose i suppose its just an easter eggy thing that emphasises what youve made of sheppard +p10381 +aVSure now he sounds like Ron Paul. They all do now. +p10382 +aV:] heeeeeeeeeeeeeeeeeeeeeeeeeeeey +p10383 +aVit's RWD +p10384 +aVthis movie was exlent. (from aly) I could watch it all day!soooo funny. LOL +p10385 +aVBeautiful +p10386 +aV@piscesrising2006: Not only do you lack knowledge of Minnesota law, you also lack any sense of class. +p10387 +aV@Tristyn2957 ehh now i have to disagree with u on tht one;( +p10388 +aVawesome video! go skip beat! btw i luv the mustache part :) +p10389 +aV@notdahoneyHonestly, I don't get why people think socialism is bad. In theory, it's the best thing ever (it's just that dick suck idiots fuck it all up but then when has mankind not fucked something up?). Actually, I think people get confused. I can under +p10390 +aVplease learn yoga from a knowledgable teacher - not these videos !! +p10391 +aV@village1diot I like to be a little bizarre because the AE people provide the same routine, mundane, primitive answers without the slightest bit of open-mindedness beyond their "absolute truth." Their followers are simply looking for verification and vali +p10392 +aVHow pretty. I love tulips too. +p10393 +aV@BigBenClockTower Brah you're dumb. They even say it. On their first LP, it says "this album is dedicated to carcass, without, this genre would not exist. You know stoked they would be if you called them a carcass rip-off band? +p10394 +aVI used to work at BBW and layering definitely is the best way to make the fragrances last longer. +p10395 +aVPraise God in all things and thank you. +p10396 +aVWallace....The heart and soul of Scotland.Over 700 years and his name is synonomous with his native land. +p10397 +aVphat remix sun well dun !!! +p10398 +aVI am not a Pentecostal believer, but +p10399 +aVThanks Maam, I'm sure this video with help me out alot!!! +p10400 +aVThis Shadowkill65 64 w.e the hell his username is. He needs to get his fingers and face of his butthole and quit bitchin +p10401 +aV@Hail2TheVictorsBaby Greg Jones is going to rip Denards head off. +p10402 +aVListen to Geitner's tone. He knows he is shovelling bullshit. He isn't even making an attempt at making the scary stuff sound scarry. +p10403 +aVAdrian! I coulda been a contender! +p10404 +aVdo you guys think you know more than this guy?the scientist? +p10405 +aVI personally do not know Vikasbhai, but one of our family members is learning from him for many years. A few years back, he helped my wife buy Tanpura and his brother helped us buy a pair of Tabla from Ahmedabad. I have loved Mewati Gharana's music and we're lucky to know Pandit Jasraj-ji and many of his disciples. +p10406 +aV@Martegon Soul Swap, new warlock talent, removes all DoTs from a target at will and replaces them on another target upon re-activation. +p10407 +aVr.i.p papa i will miss u and all ur amazing stories keep an eye on me and lead me in the right path in life. save me a spot in heaven ur favorite great grandson +p10408 +aV@jijiooze tat is xtinct it pwoven bye shyence (speak english please) +p10409 +aV@Razzfazz87 thnx man, :) +p10410 +aVLet me at him, I'll make his ass change colour!WITH MY SHOE! +p10411 +aVYES! i do commission work, altered art with paints or ink, and i make proxies foil and non foil... contact me if your looking for anything +p10412 +aVnice vid +p10413 +aVJessie Never Fails me :D +p10414 +aVWhats the intro/theme song in the begining? Its 0:45 through 0:55 +p10415 +aVI've noticed obama stutters just before the tells a lie...and he stutters a whole bunch. +p10416 +aVNO, I DON'T WANT A NEW BLACKBERRY PHONE!0:03 +p10417 +aVi love how some of the comfortabley numb solo is at the end of this song +p10418 +aVJust to clarify a point. Stannard asks whether he is meaningless if he is not being observed. This a a non-sequitur of what has gone before. It was stated that QUESTIONS relating to objectivity are meaningless, not reality itself. Stannard is a subject/object. not a question therefor he is not meaningless +p10419 +aVi hope you meant gokey and not this freak. +p10420 +aVExcellent!Straight to my blog. +p10421 +aVWow you guys rocked. Good job L.A. Anon +p10422 +aVGreat work Anna. All you need is a Best Boy, Key Grip, Gaffer and Winnebago Supervisor and you'll be away, Love from Chris +p10423 +aVThis act is so cool! They just look like they're having so much fun just jumping on the beds and doing everything their motehrs told them not to! haha! +p10424 +aVNice work. Is there one for the Wolves game also? +p10425 +aVThat was interesting, thanks +p10426 +aVa good couple of videos Dave, Ray Mears says the more you know the less you carry how true.keep up the good work ........... +p10427 +aVFUUUUUUUUUUUUUUUUUUUCK YEAH +p10428 +aV#1 Modded lobby look at the bullets it instantly reloaded +p10429 +aVAYEE haha +p10430 +aVbarns and nobles has them. +p10431 +aVA bastard like martyrindia needs the boot!!! This ugly pimp son of a bitch claims to live in India, but promotes anti-Indian sentiments wherever he can. His job is to spread lies and hatred against India. What an evil doer!!! +p10432 +aVA Singapore Cane long before ECW. Awesome! +p10433 +aV@MYNameispie1 Wow, that's deep! I've never thought about the lyrics in that way before...thanks for the new perspective! +p10434 +aVOh! Nicely done! +p10435 +aVANNA amazing...this is actually reaaaaally good. enjoyed it soo much. watched it about 8 times in a row now whilst anna tried to rip the headphones off my head. +p10436 +aVlolz, showing a video of u running???? sad P +p10437 +aVTake another look, I made a change to point him out for you. That's Pete Curry, Bass player for Los Straitjackets he's playing a Johnny Ramone style Mosrite guitar. Fucking awesome!! +p10438 +aVI seem to be repeating myself - doh!! +p10439 +aVI love this song especially this treatment. Slow and accoustic without grand gospel back up. Michael, your voice is so soft and sexy in this one. Had a good night's sleep, eh? Peace big man and say hi to Carl cuz I love HIM!!!!!!!!! +p10440 +aVhey mocosos is time for your bed times +p10441 +aVTo: vivrin07 Dude, you've been brainwashed. Look at the early BBC and The Guardian reports from the region. They clearly say and show that the Georgians started this mess by breaking the ceasefire and shelling the Ossetian civilian centers. +p10442 +aVYou guys ROCK!!!! XD +p10443 +aVthere i am!!!!!! +p10444 +aVHallelujah!!!! Glory, Glory Glory +p10445 +aVspooky +p10446 +aVShow Biz religious clown. defends ignorance and cultism +p10447 +aVI'm directly descended from her on my father's side :) +p10448 +aVhe waz a retard!!! LOL +p10449 +aVgenius +p10450 +aVUse common sense. Does it smell ok? If it does then taste it. Does it taste ok? Then it is ok. +p10451 +aVPeople...simply make sure you have your arms and ammo, WELL STOCKED and hide them...somewhere away from your home, but in a place they are safe and no one is likely to find them...That way, when IT GOES DOWN you will NOT be disarmed...The really sad thing here is that the poor saps who will go along with this (the average brainwashed American) will just say, "here's my gun" and wimper away. You should stash your arms, and then BS the bastards. Run your OWN psi-op on them!God Bless America! +p10452 +aVIf you actually use these kinds of bulbs you better turn em off for good and get rid of em! +p10453 +aVI have no idea, but if you find out please let me know. +p10454 +aVVery cool parents. Throbbing Gristle and Michael Jackson +p10455 +aVomg the cape stand is genius lol wtf how come no one else in the world has ever thought of this concept lol +p10456 +aVRofl... +p10457 +aVthats y i subscribe, your good +p10458 +aV@beauttty07 cuz Bob's half black half white, and Damian's mom is white...so basically his hair is white, so it can grow reeeeal long +p10459 +aVITHINK BY HEARING THIS SONG JUX NOW ...I'VE BECAME THE BIGGEST FAN ALIVE. :)) +p10460 +aVwhos that hot blonde chick steph? shes a total skank. like seriously :P +p10461 +aVHAHAHAHA TREE COWER AND DANCE FTW +p10462 +aV@mrlagxSure, I hear you and agree fully. But it just goes back to the joy thing for me.I look at it this way: I am going to serve my God as best as I can, in the best way I know how, studying the scriptures and devoting my life to prayer. If I go down in +p10463 +aVthis was impressive. I have tried to play this and it has never coem out very well. Kudos to this guy, major kudos to him :-) +p10464 +aVThey (we) were called Dr Strangelove. +p10465 +aVgreat filming & music. thanks +p10466 +aVFor C you could have used that video of kevin droping the cake! That video is SO funny! +p10467 +aVmake sure to pull up PBS.. NOVA episodes with the title.WHAT DARWIN NEVER KNEW".. this ones called." What Darwin didn't know".... which is no where near the same & no where as good in information.... AND MAKES YOU THINK WHY DID THEY DO THAT MAKING A SPINOFF PBS... VERSION... AND USING A SIMILAR TITLE... SO THEY COULD CONFUFUSE PEOPLE... ASSHOLES* +p10468 +aVi met them both and i go to their gym! +p10469 +aVHgnr!! +p10470 +aVplease read my last reply... OBSERVATION NOT A PROBLEM do you have a chip on your shoulders ? +p10471 +aVAww Nice Ending :)LOL Demi and Ashley XD +p10472 +aVmy friends just got this game for nothing and i loveee it! so fun! if ya'll want the game too, the link is in my profile. +p10473 +aVI went into FYE to buy something, and this album was on in the store. I knew i needed it as soon as i heard it. +p10474 +aVawesome thanks!! +p10475 +aVI am SO glad somebody sent me this song. It reminds me of old school good music. If anybody knows anymore bands like this PLEASE inform me. +p10476 +aVI'm not wasting any more of my time researching well outside my expertise for you. I've given you what you asked, and you ignored it. You have not given me anything I asked for. If you want to attempt to argue the case for abiogenic oil, find a geologist who supports biogenic oil and go wild. +p10477 +aVWhatever they play this band hits the spot!It pulsates with an irresistible rhythm.I find listening to them balm to my ears and mind.This piece is wonderfully performed.Thank YOU mr Bloggs. +p10478 +aVIsraeli bitch got owned +p10479 +aVhmmm that game must be pretty short +p10480 +aVNo bad at all!!!!!!!!! +p10481 +aVyes, lets sit around idle praying to someone that doesnt exist. instead of standing up and doing something, we should just pray, of course our god that doesnt exist will help us! +p10482 +aV@leahcim165 look who talking you're the bringing up homo shit. you must be gay. DICK SUCKING FAG!!!!!!! +p10483 +aVFr. Crosby has done a beautiful job! The cribs are a labor of love for him! I contributed a crib from Costa Rica to his collection last year. I hope I can see it in person someday! +p10484 +aVGreat video ,nice place to stay,well edited and good voice over. +p10485 +aVYou didnt address why Oregon went into Michigan in 2007 and punked the wolves 39-7 nor why did what is turning out to be a very weak SC team go into Columbus and punched the big10 champs. +p10486 +aVThis was truly beautiful; only one problem -- it was too short! +p10487 +aVholy crap!!! i love starcraft being a korean....omg i am just speechless!!!!! xD +p10488 +aVFantastic video MashaAllaah, I am learning so much. I hope to be able to get a good grasp of classical Arabic by the end of the course. +p10489 +aVMost excellent Be Naughty lady benaughtyman.info +p10490 +aVHey Booski!!!!!!!!!!!! Just coming thru to say that I featured your vid on our Bubble Babez YT. Love Love Love ya! :) +p10491 +aV@BionicDance LOL. Sure you can claim certain religious claims are false. That's not what I said though. If you claim that god or gods do not exist, and that I am full of shit for believing it, you're purely speculating.Proof of God:Not going to happen.Rea +p10492 +aVidk how long gomez signed the contract with montreal but they will get rid of him when they can, after that he'll go to a shitty team like atlanta and he might stay there for some time and that will be the end of him +p10493 +aVI am not sure what Bill Kristol has on Fox. Otherwise, just based off of the wacky and totally inaccurate analysis and predictions he gave for how well the War in Iraq was going in 2003-05, he lost any sense of credibility with me. Now whenever I see him offer an opinion on anything I know the opposite must be true. +p10494 +aVThe tunes came off an album called "Rambler '64 Going Great!...With That Rambler Spirit!" The LP was used "By Rambler Dealers and Salesmen in Showrooms During Public Announcement of the '64 Ramblers" (it says all this on the album cover). There are 9 songs on the album that glorify the various 1964 models. I've seen the album turn up on Ebay. I bet if you set up an Ebay search, it will show up again sooner or later. +p10495 +aVWish you the very best of luck and I hope you tons of fun! Don't forget to take some pics for us here in the West Coast. Have a blast! +p10496 +aVwow this is a great video. is that sarah silverman at 4:42? +p10497 +aVI lovee Airports 3 +p10498 +aVSo true, you must be detached from the outcome. I have recently understood this concept and it has helped me alot, thanks +p10499 +aVShe's such a beautiful woman.... She's so elegant, so classy such an inspiration!She's gone through so many things in her life and she continues to stand and she stands with such GRACE!Incredible voice, she sings like an angel! She's touched my life in so many ways. I love her! +p10500 +aVGreat Video +p10501 +aV0:42Look, it's my old buddy DOS!Oh DOS, how are the save games of Duke Nukem 3D I left on you treating ya? +p10502 +aVit dosent look as good as i thought +p10503 +aVLovely song, but what the %#!#& is up with the audio ads at the end of the freaking videos lately? Irritating in the extreme. +p10504 +aVgood story and fav +p10505 +aVShe and Brittany Pozz-Phar are my two favorite barrel racers!!!!! +p10506 +aVThey are all unconious because there is no air being pumped into the plane,Engineers did a seal test earlier on in the day and turned the Air switch that puts air into the plane from automatic to manual.But when the engineers finished they forgot to put the swiitch back on to automatic and neither the pilot or co pilot relised the switch was on manual so as they got pass a certian altitude the air thins and they sleep into unconsinous..... +p10507 +aVGreat explanation Pete! I am looking forward to trying Adwords correctly. +p10508 +aVSo glad to see Paul Sculfor, Wil Chalker and Andres Valencoso back on the runway!!! Where are Marios Lekkas and Tyson Ballou... hopefully Donatella can take Enrique Palacios out of retirement and back on the runway for next season! +p10509 +aVfor kel xo xo xo +p10510 +aVignorant prick. +p10511 +aVDelayed to Q1 2010. It's depressing. :( +p10512 +aVoh my god! Pretty awesome. +p10513 +aV2.27 secs always give me goosebumps.....that's when they kiss!! :)) +p10514 +aVi wana go there +p10515 +aVgreat video!!! good explanation +p10516 +aVJust saw their show over the weekend, and it brought one thing to mind. These guys still rock out and preform better than nearly any other metal band out there. The fact their hair has changed and they have aged hasn't slowed them down, they can put on an amazing show. I feel like they could go on another 20 years after seeing them +p10517 +aVAnti-Snake.. hahahahah +p10518 +aVCant wait to hear Jeezys new mixtape :D +p10519 +aVGreat job with this song and video Dustin!! +p10520 +aV@saywatThafuckiwant this isnt nu metal its metalcore asshole. +p10521 +aVthe bird ruins it. i hate birds their voices are annoying +p10522 +aVThis is one of my favorite videos too! +p10523 +aVWow hickory got upgraded nice. +p10524 +aVHey Juliana We miss you here in New York. This is AWESOME and AMAZING just like you!!! Mrs. Brice-Hyde's period 10 Government class!!! +p10525 +aV@MrJuanmireles your so stupid! +p10526 +aVI absolutely LOVE this song +p10527 +aVhahaha!!! I would love to have that job! I'd get crazy to get the exclusive, muahaha!! +p10528 +aVHe should be with Selena Gomez .They were cute together. +p10529 +aV@jpizzy9689 i agree, most these people that fight on here i doubt they even grew up in the country, cause if they did those boys and girls would learn some damn respect and stop treating each other like crap +p10530 +aVHey u forgot 2 mention how the Nexus might interfere in the cage match +p10531 +aVI like how Hill was able to integrate himself into a new setting with Magic. +p10532 +aVI will never get tired of this movie.MY FAVOURITE MOVIE EVER. 3 +p10533 +aVThis song is dopeness, I cosign the desire ti hear a mixture of the Foxes styles. +p10534 +aV@TheUltraNinja You noobs can easily remove it. just look at the URL you are one. and delete the parts after "%" and press enter. +p10535 +aVNotice H2 / Lindlar catalyst yeilds a cis (zusammen) configuration,A good memory aid I developed: My cis lindlar (Get it?) +p10536 +aVTogara you must get into the voice-over industry ... you have incredible vocal dynamics! +p10537 +aVLove the old school music. Thanks for the very entertaining information! +p10538 +aVyou gotta search ONE TOOTH PIMP, really funny , ONE TOOTH PIMP. ONE TOOTH PIMP, LEAVE COMMENT IF U THINK IT IS FUNNY, I think it is creative and hyst +p10539 +aVThis looks really good!! I want to see it! +p10540 +aVmy favorite unforgiven song :]the video is incredible too +p10541 +aVhahah wtf was that lil mfer in the grey hoodie doing lol lil pussy +p10542 +aVYeah! Kevin Durand! +p10543 +aVAnd ofcourse the Cracker Azz Pig wasted another of my Tax !!! +p10544 +aVDAMN DARNELL IZ 2 FINEEEEEEE!!!! +p10545 +aVIm somali and i think this song is sick too. +p10546 +aVYes, they do help, love the videos. They translate into many different hobbies, especially the how-to stuff. +p10547 +aVFirst off he has juggernaut and second off rpg are under powerd and third you are stupid -_- +p10548 +aVthis song rips.....awesome tune! +p10549 +aVThats amazing he was totally bald before. Can you do African hair? +p10550 +aV@MissYessie11 Thanks! +p10551 +aVWhy would they not focus on a classic Tuvok episode if they were interviewing 'Tuvok'...? +p10552 +aVtim day came to my school once +p10553 +aVHugh,This video, I think is one of your best, the look and message are right on for a "Prosperity Cast Network" video message.Devin Hunter +p10554 +aVSo you've got to leave your vehicle running for 8 hours whilst on site where someone can steel it!!! +p10555 +aVDearest Sam, you 'speak the undesirable truth' in such a way that you make us see that it is all we can desire. I think that you will 'dare to go where He leads' because you know (and make us all see)that elsewhere is into nothingness. God bless you beloved friend. +p10556 +aVJulie is a true heroine. She is a ray of sunshine in the darkness. +p10557 +aVDon,t send trashy comments to this site! If you don't have something good to say, don't speak, it just makes you look bad! +p10558 +aVwhipping it around on the screen lol +p10559 +aVSo is the point of this game to be an out of shape loser? Why would you pay fifty dollars to do that? +p10560 +aV@facesofdiabetes I see that you have censorship. Why? +p10561 +aVwhy can only lanky turn into enguarde? +p10562 +aVi love this song +p10563 +aVDIS SHIT GO HARD!!! LOVE IT!! +p10564 +aVOMG GOTTA DO THAT!!! +p10565 +aV1 degree of seperation! You are so fortunate to have been so close with such an artistic treasure. Thanks for sharing your comments. +p10566 +aVhe kill every thing +p10567 +aVa lovely reading of a lovely poem. +p10568 +aVIn a month Bama fans will have a lot in common with USC fans. Well except that USC fans don't use outhouses or screw their sisters. +p10569 +aVBACON!!!! WHOOOTTTT!!!!! +p10570 +aVso cool!!! Gotta love that foggy hawaii!! +p10571 +aVAnd a beautiful comment, sweetheart! Thank you for the wonderful feedback - we both deeply appreciate it! +p10572 +aVfucking you tube fucking up agian! +p10573 +aVtheyre amazing guns360 fps! +p10574 +aVomg her voice is so pure and full... thank God that there are still people out there willing to use the gifts He's given them.... and i also love her glasses. +p10575 +aVlove the video post...thanks! +p10576 +aVScrew Unni..that witch! +p10577 +aVwhy is there morse code transitions still on todays modern radio? i dont get it d: +p10578 +aVlolz +p10579 +aVThank you so much for all the videos! I laughed so hard my stomach hurts. I really REALLY miss this show. Great job and thanks again!!! +p10580 +aVAm I the only one here who feels reminiscent about their childhood when they see this game? lol, good times. +p10581 +aVnice song. CARL +p10582 +aVThat's awesome! What does it look like? +p10583 +aV2:45 awsome +p10584 +aVawesomeness....thanks for sharing +p10585 +aVyea i know but that package only comes with on LE model and only XLE and limited nav +p10586 +aVMagni... I'm a libertarian and you're just inventing shit as you go. You ignore facts and instead of making rational discussion simply edit reality so that you can keep believing what you need... there's no meds to fix what's wrong with you... may I suggest you kill yourself at once. +p10587 +aVwel wil win in any conditions +p10588 +aVdamn near went deaf at this show +p10589 +aVit looks so goodd! +p10590 +aVthis is amazing. you've really inspired me to become a pastor and help people. +p10591 +aVPresente!!!! +p10592 +aVgood for you.. And riding without a helmet really shows your intelligence level.. +p10593 +aVOh my God, sitting at that talent is more talent than you can shake a stick at!! I love many of these people!!! +p10594 +aVNicki Goo Hard ! +p10595 +aV@MiiEnChiiCk c'mon gang! +p10596 +aVawesome!!!!! +p10597 +aVId love it if they were together in one post.Is there another way to have pictures uploaded to a blog, page or story content page with another image module that will upload from your computer.the one that comes with TinyMCE is ok if you have a URL but some people dont and it would be great to have the option to upload from thier computer.Im searching anyone have any input? +p10598 +aVThank you. I'll give you my acceptance speech later!! LOL +p10599 +aVThanks for the video. Having just undergone my third surgery for a detached retina, it is great to see what the surgeon did to my eye. I am glad I saw it after the surgery and not before. L. Newton, Ph.D. +p10600 +aVI wonder if he also raped while on the run... if any women/girls will come forward in Europe? +p10601 +aVHA! Didn't know Rattle played timps. And rather well he plays them too! :D +p10602 +aV@asbcondotel Thanks. You might like my latest video about gold. +p10603 +aVhahahahahahahahhahahhahhahahahhahah lololololool that would be a sight!!! +p10604 +aV6th cool! :) +p10605 +aVi love the riddlers laugh HIFF HIFF HIFF HIFF HIFF HIFF +p10606 +aVOh and Good Luck I so hope you win!!! +p10607 +aVI know this is my second comment BUT WOWWWWWW the way u did the remix on this and the drums and music ... THIS IS JUST AWSOMEEEEEE....... cant stop watching and listing to this +p10608 +aVFinest Kind!!!!!!! +p10609 +aVlol then I was second :P +p10610 +aVterrible music. +p10611 +aVhey FFF love ur music what hardware were using that night looks sick +p10612 +aVNice, I'm half Japanese but I've never been. But I'm planing on moving there to teach english communication after I get my degree. +p10613 +aVVERY nicely done! +p10614 +aV@JASONNHENCHMENN "guess the book 1984 has come true...the thought police are here" +p10615 +aVDISTRICT 9?!!!!!!!!!!!!!!!!!!! omg that is one of the most HORRIBLE movies i have ever seen in my life the cinematography was horrible i felt like it didnt even feel like i was watching a movie the acting was bad and the plot was almost non existant +p10616 +aVjake you are the nuts. lov ya rob +p10617 +aVthank you for this video it has helped my with a research paper +p10618 +aVWhat the hell was that about? +p10619 +aV3:42 - 3:50 rockaby and keep still cause your driving me crazy. so funny +p10620 +aV@xxBlackpspxx that makes no sense +p10621 +aVNice fly. Nice choice for your ring tone also! +p10622 +aVThis is one of the best trainings of Mr. Dean that I have ever seen. I really got some useful information out of this training. +p10623 +aVJust came across this when looking up the entrants to encounters 2008, this is an absolutely brilliant animation! +p10624 +aVhaha PEEWEE - +p10625 +aVMarlon's voice sure did change a lot. Michael's voice is just uber cuteness. +p10626 +aVnice would you do a tutorial too? where you learn that BTW +p10627 +aVomg P7'S i cant wait till barga like +p10628 +aVthanks for this i had no idea you were a local +p10629 +aVThis is the song that made me take a second look @ Diana Krall. She has a classic voice. Awesome, thanks for sharing this video ;) +p10630 +aV@TheUniquelyfreaky what you say is true too!:D. She can do the simplest of dance moves and still is able to captivate everyone. she is an amazing performer:D. But my favorite is Ji Hyun :]lol +p10631 +aVyou suck, ted. +p10632 +aVSo much chemistry between Nat & Liv even when they dont like each other. This shows how incredible a person Nat is to care for someone she doesnt like. I need to follow in her footsteps. +p10633 +aVthe malah rules +p10634 +aVWow his voice made me hungry! +p10635 +aVfuck i want to go to one of there shows soon +p10636 +aVKenya is a big shithole! +p10637 +aVThank you for posting this, one of the most beautiful hymns. Can you combine both parts into one video and upload? Sorry for asking this, but thanks. +p10638 +aVYou do realize courts don't recognize sovereign citizenship, right? So when that creditor sues a sovereign, the court looks at that sovereign as a citizen of the United States, and accountable to its courts. So enjoy ignorance while it lasts. +p10639 +aVJavascript is actually an advanced object-oriented language that has a great deal of power. With libraries like YUI, Dojo or GWT, a developer can build rich applications that run in your browser. The goal is not to have flashier web pages, but to start developing applications in Javascript. For that reason, we can use all the speed we can get. +p10640 +aVhahaha it was really funny and good!!!!!! :D +p10641 +aVJustin Gaberial was the first to beat a Pro +p10642 +aVi dis like you alot!!!!!!!!!!!!!!! +p10643 +aVRottweilers and Pit Bulls excel at tearing limbs. This is when they are in their glory. This dog (being stupid, like any dog) on an instinctive level feels he is tearing limbs; hence, he is happy. +p10644 +aVI have some good information on how to get abs on my blog check it out +p10645 +aV@Blackwingggys you dont even know your own trade gwad you suck +p10646 +aVThis song is for someone special in my life. I love you JP. Thank you for loving me, for making me feel like i am the most beautiful woman in the world. Remember, it all started at moonlight beach:-) +p10647 +aVnot so good +p10648 +aVNice! +p10649 +aVthese guys are really great , a very clever song +p10650 +aVCongratulations guys on your 1 year anniversary!Anyone one that enjoys Indian cuisine has to experience the culinary delights that await them at Zeera By The Bay.What the mayor said is absolutely true, they make you feel like family, oh and try the fish! +p10651 +aVthx +p10652 +aVI like this film already(: thanks! +p10653 +aVIf you were raised without the ability to question and challenge intelligently what you see on TV, then this video will feel like home. The most dangerous and highly addictive drug on this planet is right there in our sitting rooms. We tune in, open a can of stella and phase out.. The Orwellian nightmare is real and the media play a major role. like this video it uses sentimental music, platitudes and solgans to whip up emotions.. and it works. Truth is out there if you take the time to look. +p10654 +aVI love you +p10655 +aVThe majority of people are going to need and go out and practice how to orienteer from one point to another and practice getting to places tehy cannot see using a compass. +p10656 +aVHAHAHAHAHA.omfg.that was amazing.nice job, sukka. :D +p10657 +aVgracias DD +p10658 +aV@pobody69 its all about religion. satan is king and ruler of this earth. and while satan is here on earth, he wants to gather his army. and he will do this by influencing people to stray away from god as far as possible. THIS is where the illuminati come +p10659 +aVIs this based off one of her books? This is probably one of the most fascinating things I have heard in awhile and one of the most fascinating things that she has talked about on here. I'd like to read about it more in depth. +p10660 +aVThis song combines several goodness together. Better than some other peoples videos. +p10661 +aVHey - Best HA tribute ever! +p10662 +aVYou must be a male-hating feminist, or a self-hating man. +p10663 +aVwhat if Kratos and Chuck Norris had a baby? D: bye bye existence :( +p10664 +aVMauldin is an idiot. If he knew his head from his a** he would have written a b ook BEFORE the collapse and predicted it instead of writing some stupid boo that wont tell you jack. Maudlin is a snake oil sellsman like many others in the media. +p10665 +aVGood! +p10666 +aVBut after all: A Krupnik is a Krupnik! Is it a Krupnik.... (1:58)I have no clue what Morticia means, but it's hilarious how she says it ) +p10667 +aVwonderful! if you love sets of earrings and bracelets check out the donnaliza collection - it's affordable and looks real! Just search donnaliza on google and youll find it. +p10668 +aVwhen will there be a sequel? are there any other films by this director? +p10669 +aVThank You!!! That is so nice of you. Good luck and keep feeding those kids (and you too) excellent foods! It might make the teen years a little easier....teehee. +p10670 +aVthe shoes are to die for! +p10671 +aV@brianbmf Are you fucking stupid delivering a fucking baby is a dangerous thing.Thats why it takes a person 8 years to be trained to deliver a baby. You really don't know what the fuck you are talking about. Please don't procreate kill yourself because yo +p10672 +aVteehee bunnies :D +p10673 +aV@WarHammerHD gaayy boy +p10674 +aVemulating kartel's flow, so obvious +p10675 +aVyou two remind me of my gf and i...lol +p10676 +aVi baught the lone gunmen complete series on dvd i got it on amazon +p10677 +aVnice +p10678 +aVReally excellent - it is beautifully put together in a matter of fact, demonstration of the simple steps towards creating a simple sculpture. You have a marvellous talent Ricardo - you deserve even greater success. +p10679 +aVhey lee welcome "back" great to see the dynamic duo back together hope u are better... +p10680 +aVWOW! Maravilloso! +p10681 +aVWhat is it with you snogging alpaco's & licking goats, lol +p10682 +aVMerry Christmas +p10683 +aVthis song reminds me of my cuzin :( +p10684 +aVWait! Haji knows how to sing and dance!? o__O +p10685 +aVBravo!!! +p10686 +aVUpdate one the afore mentioned goodies? +p10687 +aV@EdS2yd +p10688 +aVBest feel good live band on the planet!! Ive seen em all, but these leave me with cheesy grin fever.. See em! +p10689 +aVawesome!!! +p10690 +aVVery nice product!! You probably have a movie theater at your desk lol and great review!! Keep it up +p10691 +aVThe economy was doing quite well when G.W. Bush took over and the economy tanked just as he was leaving office, but it happened because of "liberals over regulation of the markets"??? +p10692 +aV@MsEllz21 stale +p10693 +aVlol. +p10694 +aVfucker +p10695 +aVbrilliant! +p10696 +aVoh yall are sexy +p10697 +aV18 people missed the like button..... +p10698 +aVI came to see you guys last year and i was so overwhelmed with the beauty of the sound you created! Your music is inspiring whether it be heard on the southbank on a sunny saturday or in a concert hall. Good Luck guys xxxx +p10699 +aVhot damn +p10700 +aVWhat? +p10701 +aVI agree. This is my fav episode of Nuke's. +p10702 +aVI think we all need to join together and crank up the volume at the same time while that song is being played to spread the word to the world to be quiet.Great clip... very clever! +p10703 +aVvery patient and clear explanation with just the right amount of hand-waving :) +p10704 +aVi wanna go on a date with ryuu too hahahahah he so cute +p10705 +aV@cathyrawrbear It totally does! +p10706 +aVamazing youve really made that your own love it! x +p10707 +aVMan, that was awesome! +p10708 +aVAhhh yes - The Vobes Show - Very entertaining. +p10709 +aVThe mariachis would serenade,And they would not shut up till they were paid [....]In that moment of truth I suddenly knewThat someone had stolen my wallet.very funny!! :) +p10710 +aVI grew up in Boulmer and know Main and John really well. Remember watching this on TV and it still brings back great memories of being a kid and going down to greet the fishermen as they came home. +p10711 +aVthanks for the support! +p10712 +aVi hate the X factor, the people who go on it have no talent or orininality, they don't right their own songs, and the only reason that one of them wins is because they have some sob story to try and win the voters over. i bet that he will be working in B&Q by about 2013. simon cowell is not a music fan as all of the people he has helped to create have no talent and last for about a week and a half. simon cowell is killing music and creativity and turning us into zombies by force feeding us shit. +p10713 +aVlove your description! +p10714 +aV@RaiceaAndrei11 They are doing what we would call Kendo, based on kenjutsu. It is called "way of the sword" and its used to practice swordsmanship and form. They however are most likely using "kenjutsu" as this films era predates kendos creation +p10715 +aVBest pizzas haha +p10716 +aVI watched this while playing Aasim god wit the flow at the same timethat shit went hard +p10717 +aVLol, FIRE IS HOT. +p10718 +aVGreat video I love this song I heard it on OTH in an LP scene 3 +p10719 +aVRickie, you are so inspiring! This video never fails to help me find one more ounce of energy and joy after a long day of work. +p10720 +aVThank you Herve, your work has made my day! Bravo! +p10721 +aVgood job on the editing :D, also looks like a fun server i might check it out when im not busy adding new models to mine (just finished up spirit shields :D) +p10722 +asS'val_ind' +p10723 +(lp10724 +I1846 +aI1942 +aI670 +aI594 +aI2048 +aI296 +aI1084 +aI1180 +aI1687 +aI1484 +aI1820 +aI1191 +aI2068 +aI1206 +aI1229 +aI1411 +aI1256 +aI921 +aI1780 +aI1399 +aI422 +aI1832 +aI881 +aI1809 +aI109 +aI1593 +aI1152 +aI1120 +aI957 +aI464 +aI604 +aI496 +aI1812 +aI1745 +aI1626 +aI2138 +aI807 +aI1997 +aI502 +aI886 +aI1155 +aI191 +aI981 +aI1613 +aI1944 +aI1473 +aI1653 +aI101 +aI313 +aI93 +aI2033 +aI748 +aI532 +aI184 +aI945 +aI344 +aI1480 +aI357 +aI2055 +aI665 +aI1971 +aI1776 +aI2034 +aI222 +aI1552 +aI452 +aI1915 +aI2041 +aI1297 +aI984 +aI40 +aI2043 +aI1369 +aI1274 +aI1320 +aI1801 +aI914 +aI1960 +aI1904 +aI954 +aI515 +aI1567 +aI1988 +aI25 +aI500 +aI124 +aI1016 +aI456 +aI887 +aI2059 +aI1499 +aI1058 +aI836 +aI89 +aI1404 +aI320 +aI1432 +aI1485 +aI117 +aI385 +asS'test_ind' +p10725 +(lp10726 +I863 +aI1158 +aI995 +aI1609 +aI1657 +aI388 +aI1922 +aI340 +aI129 +aI1367 +aI690 +aI1402 +aI651 +aI1142 +aI355 +aI694 +aI896 +aI229 +aI1260 +aI19 +aI420 +aI97 +aI834 +aI412 +aI380 +aI1829 +aI1500 +aI564 +aI1663 +aI1424 +aI486 +aI102 +aI1799 +aI1884 +aI397 +aI180 +aI1068 +aI577 +aI833 +aI1299 +aI1329 +aI1733 +aI797 +aI869 +aI658 +aI586 +aI1388 +aI1278 +aI1771 +aI1619 +aI488 +aI553 +aI1690 +aI1128 +aI2126 +aI483 +aI643 +aI155 +aI1556 +aI1383 +aI2120 +aI2134 +aI1696 +aI283 +aI232 +aI801 +aI1651 +aI70 +aI1390 +aI494 +aI708 +aI2002 +aI543 +aI423 +aI2017 +aI256 +aI1353 +aI1094 +aI755 +aI1296 +aI2061 +aI151 +aI1091 +aI1089 +aI1438 +aI1025 +aI1318 +aI6 +aI295 +aI817 +aI701 +aI1514 +aI776 +aI235 +aI1536 +aI1956 +aI1401 +aI20 +aI325 +aI820 +aI1207 +aI187 +aI1269 +aI501 +aI684 +aI198 +aI2080 +aI108 +aI1821 +aI1384 +aI383 +aI1243 +aI1871 +aI1309 +aI951 +aI1991 +aI14 +aI908 +aI1673 +aI845 +aI1777 +aI68 +aI1937 +aI479 +aI1720 +aI130 +aI506 +aI1535 +aI77 +aI2102 +aI73 +aI1439 +aI716 +aI81 +aI915 +aI1859 +aI4 +aI1658 +aI1062 +aI1081 +aI561 +aI663 +aI1581 +aI30 +aI934 +aI2032 +aI680 +aI2114 +aI1858 +aI525 +aI780 +aI607 +aI1656 +aI1638 +aI92 +aI1614 +aI1643 +aI1767 +aI261 +aI2091 +aI251 +aI1055 +aI1554 +aI1455 +aI1249 +aI1677 +aI1579 +aI956 +aI241 +aI2018 +aI600 +aI1674 +aI1711 +aI74 +aI763 +aI1798 +aI1372 +aI765 +aI44 +aI1250 +aI1394 +aI668 +aI1097 +aI1150 +aI1894 +aI614 +aI1977 +aI1463 +aI698 +aI1810 +aI424 +aI1323 +aI1641 +aI1636 +aI1560 +aI106 +aI1774 +aI879 +aI711 +aI374 +aI1705 +aI250 +aI1660 +aI522 +aI321 +aI2092 +aI1532 +aI310 +aI1358 +aI1761 +aI750 +aI507 +aI1539 +aI348 +aI1927 +aI195 +aI491 +aI1629 +aI1040 +aI1862 +aI1183 +aI1027 +aI1913 +aI1398 +aI1304 +aI894 +aI975 +aI1185 +aI931 +aI963 +aI1569 +aI738 +aI686 +aI853 +aI363 +aI262 +aI2104 +aI548 +aI1331 +aI1270 +aI636 +aI1815 +aI631 +aI2060 +aI970 +aI200 +aI687 +aI2110 +aI138 +aI818 +aI1544 +aI1170 +aI1238 +aI426 +aI1624 +aI1655 +aI1953 +aI1842 +aI1754 +aI1220 +aI1491 +aI45 +aI169 +aI104 +aI1865 +aI1562 +aI1464 +aI1267 +aI1419 +aI884 +aI2052 +aI1841 +aI143 +aI1946 +aI593 +aI284 +aI2036 +aI1163 +aI734 +aI17 +aI766 +aI181 +aI741 +aI105 +aI286 +aI940 +aI1924 +aI460 +aI2109 +aI1400 +aI728 +aI660 +aI317 +aI944 +aI1929 +aI2106 +aI890 +aI275 +aI590 +aI373 +aI1517 +aI107 +aI160 +aI1281 +aI446 +aI132 +aI1744 +aI414 +aI234 +aI54 +aI297 +aI103 +aI874 +aI1302 +aI459 +aI2028 +aI1670 +aI2000 +aI201 +aI1921 +aI805 +aI168 +aI1662 +aI1550 +aI616 +aI932 +aI409 +aI1730 +aI1033 +aI1035 +aI1363 +aI768 +aI1186 +aI1856 +aI203 +aI571 +aI444 +aI1869 +aI1888 +aI267 +aI843 +aI1137 +aI1434 +aI510 +aI1387 +aI252 +aI2053 +aI1117 +aI1688 +aI1441 +aI1115 +aI1616 +aI1272 +aI897 +aI1617 +aI547 +aI1161 +aI1131 +aI960 +aI312 +aI2097 +aI1585 +aI2039 +aI2042 +aI1479 +aI758 +aI1530 +aI1965 +aI146 +aI1362 +aI1364 +aI1551 +aI933 +aI1312 +aI343 +aI1952 +aI1565 +aI809 +aI645 +aI1981 +aI1018 +aI985 +aI135 +aI885 +aI370 +aI889 +aI1707 +aI847 +aI1678 +aI268 +aI1998 +aI779 +aI2135 +aI307 +aI389 +aI2045 +aI1389 +aI1816 +aI565 +aI1558 +aI1233 +aI2100 +aI1187 +aI762 +aI2007 +aI1080 +aI29 +aI294 +aI1883 +aI451 +aI2119 +aI906 +aI165 +aI875 +aI5 +aI1923 +aI1682 +aI1241 +aI2107 +aI778 +aI1011 +aI24 +aI1133 +aI145 +aI541 +aI123 +aI1735 +aI1082 +aI1908 +aI192 +aI1589 +aI544 +aI2121 +aI1692 +aI257 +aI281 +aI1886 +aI1620 +aI924 +aI2094 +aI1993 +aI2140 +aI1415 +aI1994 +aI650 +aI1349 +aI1957 +aI1492 +aI1936 +aI575 +aI1781 +aI1392 +aI1214 +aI1366 +aI243 +aI905 +aI190 +aI1911 +aI613 +aI144 +aI1632 +aI1866 +aI42 +aI364 +aI1110 +aI1218 +aI1466 +aI626 +aI549 +aI1838 +aI1380 +aI796 +aI326 +aI115 +aI861 +aI699 +aI258 +aI653 +aI1474 +aI1443 +aI1196 +aI269 +aI1469 +aI78 +aI672 +aI1026 +aI771 +aI1287 +aI745 +aI1823 +aI1169 +aI96 +aI1611 +aI756 +aI2069 +aI864 +aI1835 +aI1261 +aI1052 +aI121 +aI440 +aI1729 +aI1308 +aI1314 +aI1594 +aI292 +aI166 +aI1612 +aI1004 +aI601 +aI1683 +aI147 +aI1742 +aI1212 +aI1959 +aI682 +aI514 +aI1225 +aI1029 +aI1910 +aI592 +aI550 +aI1885 +aI1339 +aI1251 +aI1684 +aI1545 +aI1973 +aI1738 +aI1860 +aI57 +aI157 +aI753 +aI1105 +aI342 +aI1017 +aI1963 +aI910 +aI1784 +aI2113 +aI733 +aI2050 +aI1520 +aI1990 +aI99 +aI1870 +aI827 +aI999 +aI113 +aI700 +aI1731 +aI795 +aI416 +aI1762 +aI667 +aI206 +aI305 +aI131 +aI1079 +aI263 +aI12 +aI285 +aI655 +aI318 +aI1905 +aI815 +aI1361 +aI442 +aI1533 +aI987 +aI2075 +aI1868 +aI291 +aI371 +aI1925 +aI1381 +aI185 +aI1501 +aI1513 +aI842 +aI1412 +aI441 +aI1763 +aI973 +aI562 +aI531 +aI1092 +aI359 +aI1236 +aI161 +aI413 +aI1061 +aI214 +aI883 +aI1223 +aI1351 +aI849 +aI1987 +aI706 +aI1313 +aI579 +aI2103 +aI126 +aI0 +aI276 +aI418 +aI955 +aI244 +aI882 +aI2077 +aI1053 +aI972 +aI1732 +aI838 +aI473 +aI1603 +aI619 +aI727 +aI1425 +aI1782 +aI2 +aI618 +aI1468 +aI1996 +aI2038 +aI1020 +aI1751 +aI69 +aI1845 +aI1471 +aI1948 +aI732 +aI1817 +aI1515 +aI1034 +aI1772 +aI1122 +aI428 +aI1446 +aI1418 +aI1875 +aI63 +aI1350 +aI1365 +aI583 +aI1204 +aI639 +aI367 +aI16 +aI581 +aI489 +aI64 +aI524 +aI1559 +aI1540 +aI1444 +aI1106 +aI1254 +aI443 +aI110 +aI1465 +aI1717 +aI1319 +aI369 +aI2013 +aI1857 +aI623 +aI867 +aI434 +aI1023 +aI1887 +aI518 +aI186 +aI1109 +aI1431 +aI1482 +aI2105 +aI189 +aI1457 +aI497 +aI430 +aI1775 +aI947 +aI570 +aI899 +aI840 +aI1834 +aI60 +aI1497 +aI1435 +aI495 +aI939 +aI1811 +aI2030 +aI1508 +aI1597 +aI82 +aI1679 +aI1359 +aI1421 +aI1 +aI901 +aI717 +aI481 +aI1000 +aI314 +aI678 +aI1324 +aI2004 +aI1126 +aI1490 +aI351 +aI628 +aI752 +aI1844 +aI1752 +aI823 +aI3 +aI1065 +aI989 +aI2098 +aI554 +aI122 +aI707 +aI528 +aI911 +aI1734 +aI1786 +aI1693 +aI1101 +aI1036 +aI746 +aI1895 +aI94 +aI662 +aI1215 +aI183 +aI688 +aI1244 +aI560 +aI202 +aI398 +aI9 +aI1202 +aI1165 +aI1385 +aI969 +aI1146 +aI865 +aI1175 +aI1135 +aI322 +aI133 +aI1527 +aI1955 +aI1012 +aI617 +aI52 +aI338 +aI1518 +aI1898 +aI572 +aI1423 +aI1044 +aI574 +aI46 +aI1193 +aI1661 +aI1627 +aI1459 +aI59 +aI713 +aI821 +aI2065 +aI697 +aI1199 +aI301 +aI1564 +aI387 +aI693 +aI1969 +aI358 +aI1890 +aI526 +aI1456 +aI1668 +aI803 +aI907 +aI439 +aI1851 +aI523 +aI366 +aI1917 +aI1252 +aI1606 +aI1756 +aI606 +aI1618 +aI659 +aI1338 +aI37 +aI1985 +aI1897 +aI2073 +aI1221 +aI194 +aI1634 +aI1086 +aI1938 +aI1445 +aI912 +aI1879 +aI1504 +aI1154 +aI1039 +aI470 +aI375 +aI1849 +aI90 +aI1483 +aI964 +aI309 +aI182 +aI1149 +aI1422 +aI731 +aI2040 +aI1704 +aI1436 +aI772 +aI1698 +aI1022 +aI1659 +aI1592 +aI802 +aI1179 +aI927 +aI1828 +aI1671 +aI478 +aI2010 +aI91 +aI982 +aI226 +aI2078 +aI22 +aI1984 +aI2024 +aI1601 +aI1999 +aI271 +aI1315 +aI220 +aI1371 +aI1770 +aI2049 +aI392 +aI1647 +aI1114 +aI647 +aI1008 +aI1054 +aI38 +aI1769 +aI2067 +aI178 +aI1939 +aI469 +aI671 +aI1746 +aI465 +aI1379 +aI10 +aI1840 +aI720 +aI893 +aI530 +aI1123 +aI902 +aI1440 +aI28 +aI812 +aI558 +aI278 +aI764 +aI1789 +aI1912 +aI1461 +aI1982 +aI1373 +aI1694 +aI916 +aI669 +aI407 +aI1043 +aI798 +aI1330 +aI1096 +aI1968 +aI1528 +aI666 +aI1986 +aI76 +aI1740 +aI1449 +aI1231 +aI75 +aI512 +aI1935 +aI1602 +aI1839 +aI998 +aI719 +aI1665 +aI2001 +aI1596 +aI114 +aI406 +aI2095 +aI952 +aI743 +aI1523 +aI290 +aI1566 +aI1639 +aI1496 +aI1743 +aI980 +aI1298 +aI152 +aI810 +aI411 +aI735 +aI1195 +aI1237 +aI1926 +aI2011 +aI333 +aI757 +aI327 +aI390 +aI1427 +aI1143 +aI1587 +aI2139 +aI1276 +aI1273 +aI1477 +aI1914 +aI1510 +aI1360 +aI1876 +aI432 +aI1737 +aI1830 +aI1521 +aI148 +aI437 +aI1607 +aI630 +aI1529 +aI331 +aI1766 +aI1125 +aI1796 +aI527 +aI675 +aI287 +aI1848 +aI2021 +aI1113 +aI67 +aI676 +aI304 +aI826 +aI1426 +aI142 +aI1826 +aI1333 +aI1940 +aI1239 +aI685 +aI438 +aI516 +aI573 +aI661 +aI472 +aI391 +aI80 +aI1248 +aI1057 +aI681 +aI61 +aI773 +aI1697 +aI1706 +aI966 +aI1059 +aI1073 +aI1625 +aI431 +aI831 +aI466 +aI1972 +aI324 +aI1779 +aI58 +aI87 +aI1669 +aI811 +aI754 +aI179 +aI1582 +aI1230 +aI1590 +aI1950 +aI615 +aI349 +aI1190 +aI1563 +aI784 +aI868 +aI855 +aI1326 +aI1294 +aI1005 +aI429 +aI233 +aI1546 +aI176 +aI1918 +aI1144 +aI1995 +aI1103 +aI365 +aI289 +aI505 +aI15 +aI396 +aI247 +aI1271 +aI209 +aI783 +aI2051 +aI584 +aI1803 +aI1306 +aI862 +aI552 +aI1630 +aI1831 +aI1714 +aI1370 +aI253 +aI1524 +aI1750 +aI979 +aI2081 +aI2016 +aI1654 +aI215 +aI408 +aI498 +aI1854 +aI1787 +aI2035 +aI116 +aI1867 +aI1736 +aI1245 +aI62 +aI1375 +aI721 +aI119 +aI311 +aI236 +aI1962 +aI468 +aI199 +aI1198 +aI2022 +aI1259 +aI1741 +aI51 +aI1825 +aI1900 +aI1099 +aI2063 +aI2029 +aI674 +aI1749 +aI352 +aI1291 +aI1989 +aI1980 +aI1498 +aI2089 +aI49 +aI1228 +aI1896 +aI800 +aI1024 +aI965 +aI32 +aI272 +aI1797 +aI928 +aI556 +aI1357 +aI1071 +aI360 +aI1792 +aI580 +aI1487 +aI2088 +aI458 +aI177 +aI974 +aI1949 +aI1119 +aI1189 +aI1723 +aI1934 +aI242 +aI2108 +aI923 +aI288 +aI1234 +aI1719 +aI642 +aI1909 +aI1931 +aI1007 +aI1493 +aI2012 +aI1476 +aI919 +aI207 +aI1311 +aI1892 +aI1072 +aI1916 +aI529 +aI217 +aI926 +aI2111 +aI1344 +aI1354 +aI1171 +aI1726 +aI1201 +aI1450 +aI1208 +aI386 +aI2123 +aI1748 +aI1409 +aI1258 +aI18 +aI1322 +aI382 +aI1240 +aI559 +aI1974 +aI1391 +aI237 +aI493 +aI1178 +aI1591 +aI844 +aI79 +aI1505 +aI1728 +aI1598 +aI154 +aI1621 +aI1167 +aI204 +aI1045 +aI1727 +aI723 +aI1893 +aI467 +aI787 +aI1543 +aI1600 +aI641 +aI1332 +aI65 +aI1247 +aI1818 +aI353 +aI1633 +aI1242 +aI1197 +aI1790 +aI210 +aI695 +aI221 +aI692 +aI791 +aI282 +aI860 +aI33 +aI705 +aI539 +aI1268 +aI384 +aI715 +aI246 +aI775 +aI1531 +aI280 +aI1511 +aI1280 +aI1824 +aI43 +aI1118 +aI841 +aI224 +aI1547 +aI1628 +aI211 +aI95 +aI1919 +aI435 +aI1542 +aI1757 +aI1827 +aI1448 +aI1932 +aI696 +aI813 +aI1961 +aI260 +aI1881 +aI270 +aI2141 +aI1837 +aI683 +aI1580 +aI213 +asS'train_ind' +p10727 +(lp10728 +I808 +aI1941 +aI943 +aI1235 +aI1134 +aI878 +aI1277 +aI977 +aI379 +aI1802 +aI949 +aI2093 +aI339 +aI2058 +aI1680 +aI824 +aI1301 +aI578 +aI1608 +aI991 +aI1930 +aI88 +aI1112 +aI591 +aI555 +aI2003 +aI319 +aI1032 +aI128 +aI1368 +aI1976 +aI1644 +aI537 +aI1001 +aI2046 +aI425 +aI608 +aI173 +aI1578 +aI2137 +aI487 +aI1833 +aI625 +aI85 +aI1077 +aI174 +aI595 +aI1874 +aI1164 +aI1377 +aI1194 +aI415 +aI485 +aI1182 +aI596 +aI1978 +aI1147 +aI1075 +aI920 +aI1615 +aI709 +aI958 +aI1121 +aI872 +aI761 +aI520 +aI1286 +aI1899 +aI585 +aI1873 +aI1549 +aI156 +aI1219 +aI1224 +aI1516 +aI1700 +aI2005 +aI1488 +aI463 +aI816 +aI1139 +aI197 +aI781 +aI1246 +aI1157 +aI492 +aI2128 +aI1739 +aI1819 +aI1943 +aI900 +aI1116 +aI1325 +aI736 +aI993 +aI2066 +aI1442 +aI1090 +aI799 +aI1414 +aI1013 +aI376 +aI1382 +aI120 +aI1502 +aI1642 +aI1640 +aI1901 +aI1343 +aI519 +aI2070 +aI455 +aI1177 +aI1346 +aI517 +aI153 +aI1279 +aI1430 +aI427 +aI1572 +aI508 +aI299 +aI1637 +aI212 +aI938 +aI1755 +aI1067 +aI1586 +aI2056 +aI870 +aI1127 +aI1861 +aI1928 +aI1675 +aI171 +aI854 +aI2079 +aI597 +aI480 +aI1064 +aI627 +aI1378 +aI1853 +aI1805 +aI1878 +aI162 +aI1983 +aI1174 +aI1452 +aI403 +aI1321 +aI1181 +aI83 +aI298 +aI266 +aI323 +aI1342 +aI164 +aI624 +aI1650 +aI922 +aI1153 +aI988 +aI1336 +aI785 +aI1850 +aI1148 +aI1575 +aI1003 +aI1664 +aI2076 +aI372 +aI2044 +aI56 +aI657 +aI1709 +aI402 +aI1217 +aI1785 +aI136 +aI1066 +aI804 +aI759 +aI50 +aI1021 +aI1708 +aI1010 +aI1649 +aI729 +aI1188 +aI2133 +aI1494 +aI1049 +aI898 +aI1645 +aI770 +aI1019 +aI2090 +aI1108 +aI633 +aI1102 +aI654 +aI509 +aI1699 +aI1561 +aI689 +aI2118 +aI1337 +aI702 +aI703 +aI98 +aI1806 +aI1292 +aI1454 +aI1038 +aI1481 +aI740 +aI835 +aI1200 +aI1216 +aI961 +aI1872 +aI245 +aI1316 +aI53 +aI134 +aI1686 +aI1470 +aI536 +aI542 +aI1156 +aI837 +aI48 +aI1958 +aI1702 +aI2124 +aI41 +aI1486 +aI2023 +aI170 +aI1951 +aI400 +aI1507 +aI7 +aI1970 +aI141 +aI533 +aI793 +aI832 +aI1192 +aI871 +aI100 +aI125 +aI925 +aI1509 +aI1472 +aI946 +aI1568 +aI23 +aI1341 +aI1778 +aI381 +aI545 +aI786 +aI274 +aI718 +aI941 +aI751 +aI1622 +aI1420 +aI891 +aI566 +aI710 +aI1290 +aI1760 +aI2112 +aI1030 +aI259 +aI1063 +aI1069 +aI587 +aI1715 +aI302 +aI1413 +aI1136 +aI35 +aI2116 +aI2019 +aI895 +aI726 +aI2025 +aI1356 +aI521 +aI401 +aI2054 +aI1172 +aI1265 +aI1408 +aI1979 +aI476 +aI345 +aI903 +aI11 +aI1475 +aI1310 +aI482 +aI393 +aI449 +aI1051 +aI714 +aI1526 +aI621 +aI568 +aI2115 +aI205 +aI918 +aI1226 +aI158 +aI1300 +aI1975 +aI2085 +aI640 +aI1410 +aI1877 +aI55 +aI936 +aI2082 +aI1804 +aI335 +aI330 +aI1555 +aI84 +aI1416 +aI1788 +aI249 +aI976 +aI196 +aI2132 +aI1015 +aI1534 +aI1822 +aI433 +aI293 +aI648 +aI513 +aI1210 +aI1992 +aI1478 +aI2136 +aI2122 +aI2129 +aI1843 +aI378 +aI475 +aI394 +aI829 +aI1635 +aI1667 +aI2047 +aI216 +aI86 +aI159 +aI929 +aI962 +aI749 +aI589 +aI1623 +aI737 +aI2087 +aI1285 +aI1264 +aI1783 +aI1793 +aI346 +aI1132 +aI1863 +aI2125 +aI248 +aI877 +aI1447 +aI1541 +aI1284 +aI1428 +aI1429 +aI1525 +aI265 +aI1889 +aI1042 +aI850 +aI1773 +aI127 +aI1355 +aI453 +aI948 +aI172 +aI504 +aI1376 +aI150 +aI1907 +aI1631 +aI2074 +aI576 +aI419 +aI1433 +aI1460 +aI1227 +aI361 +aI26 +aI71 +aI1006 +aI599 +aI1405 +aI1880 +aI806 +aI1847 +aI328 +aI1713 +aI228 +aI1088 +aI848 +aI8 +aI1451 +aI1791 +aI2020 +aI605 +aI1538 +aI1583 +aI2101 +aI656 +aI306 +aI332 +aI1031 +aI1920 +aI1764 +aI1403 +aI1348 +aI1327 +aI789 +aI477 +aI354 +aI612 +aI341 +aI822 +aI1050 +aI2130 +aI632 +aI264 +aI1141 +aI1722 +aI819 +aI1203 +aI362 +aI1111 +aI1151 +aI1098 +aI1275 +aI1689 +aI724 +aI1573 +aI1695 +aI588 +aI790 +aI1159 +aI649 +aI34 +aI1703 +aI2014 +aI971 +aI1396 +aI1317 +aI1800 +aI563 +aI404 +aI1807 +aI1307 +aI1710 +aI1352 +aI255 +aI1808 +aI167 +aI603 +aI1070 +aI118 +aI888 +aI1397 +aI859 +aI1676 +aI1407 +aI454 +aI1184 +aI1522 +aI1393 +aI1048 +aI27 +aI1574 +aI1691 +aI39 +aI825 +aI1648 +aI652 +aI334 +aI1716 +aI1130 +aI1467 +aI788 +aI1747 +aI598 +aI1576 +aI725 +aI2026 +aI744 +aI930 +aI535 +aI534 +aI1458 +aI1652 +aI1437 +aI629 +aI1282 +aI1386 +aI1288 +aI2008 +aI1078 +aI66 +aI1328 +aI950 +aI230 +aI1253 +aI1519 +aI149 +aI188 +aI2131 +aI996 +aI1813 +aI1289 +aI2086 +aI1211 +aI1584 +aI1047 +aI873 +aI1205 +aI227 +aI2084 +aI937 +aI1462 +aI1009 +aI277 +aI739 +aI983 +aI484 +aI994 +aI1028 +aI1335 +aI499 +aI356 +aI447 +aI474 +aI2009 +aI1303 +aI935 +aI828 +aI1222 +aI1964 +aI644 +aI997 +aI1672 +aI1002 +aI445 +aI769 +aI992 +aI239 +aI350 +aI1758 +aI792 +aI1967 +aI691 +aI1255 +aI13 +aI193 +aI830 +aI913 +aI1891 +aI569 +aI1209 +aI611 +aI2006 +aI1104 +aI1176 +aI1882 +aI1721 +aI254 +aI112 +aI646 +aI2027 +aI814 +aI609 +aI634 +aI959 +aI557 +aI461 +aI399 +aI866 +aI635 +aI942 +aI2031 +aI503 +aI986 +aI1712 +aI72 +aI1085 +aI1293 +aI538 +aI1588 +aI1173 +aI880 +aI490 +aI450 +aI978 +aI1345 +aI1753 +aI2083 +aI219 +aI1060 +aI337 +aI279 +aI677 +aI1138 +aI1548 +aI1903 +aI846 +aI760 +aI1945 +aI240 +aI2057 +aI1037 +aI1902 +aI1160 +aI1041 +aI968 +aI1263 +aI1768 +aI1836 +aI225 +aI2062 +aI1453 +aI1947 +aI679 +aI876 +aI892 +aI2117 +aI1553 +aI1340 +aI664 +aI1906 +aI1417 +aI546 +aI1794 +aI540 +aI1334 +aI395 +aI777 +aI1262 +aI410 +aI782 +aI511 +aI1966 +aI953 +aI1725 +aI308 +aI2015 +aI2071 +aI336 +aI175 +aI2037 +aI722 +aI1140 +aI1570 +aI767 +aI1014 +aI329 +aI1666 +aI208 +aI1537 +aI1046 +aI421 +aI139 +aI417 +aI990 +aI1257 +aI1759 +aI1512 +aI622 +aI1495 +aI967 +aI2099 +aI21 +aI303 +aI368 +aI1162 +aI856 +aI1347 +aI1864 +aI909 +aI1406 +aI1954 +aI1852 +aI1374 +aI1681 +aI1295 +aI1814 +aI1701 +aI300 +aI163 +aI852 +aI1100 +aI704 +aI36 +aI405 +aI1395 +aI551 +aI1855 +aI1503 +aI2096 +aI858 +aI794 +aI620 +aI218 +aI31 +aI1577 +aI1213 +aI1604 +aI377 +aI839 +aI2127 +aI273 +aI1083 +aI1646 +aI316 +aI1795 +aI140 +aI1145 +aI582 +aI1168 +aI1093 +aI857 +aI1718 +aI111 +aI602 +aI1087 +aI137 +aI436 +aI1599 +aI347 +aI730 +aI1095 +aI774 +aI1765 +aI231 +aI47 +aI238 +aI448 +aI223 +aI1571 +aI1933 +aI1074 +aI1166 +aI637 +aI851 +aI1610 +aI1595 +aI1685 +aI1557 +aI1124 +aI742 +aI747 +aI1283 +aI712 +aI1724 +aI1266 +aI1489 +aI1232 +aI315 +aI567 +aI1107 +aI638 +aI673 +aI457 +aI1305 +aI471 +aI462 +aI2072 +aI1056 +aI2064 +aI1605 +aI917 +aI1506 +aI1129 +aI1076 +aI610 +aI904 +as. \ No newline at end of file diff --git a/data/filtering/wanted_emojis.csv b/data/filtering/wanted_emojis.csv new file mode 100644 index 0000000..cb8c8e6 --- /dev/null +++ b/data/filtering/wanted_emojis.csv @@ -0,0 +1,64 @@ +\U0001f602 +\U0001f612 +\U0001f629 +\U0001f62d +\U0001f60d +\U0001f614 +\U0001f44c +\U0001f60a +\u2764 +\U0001f60f +\U0001f601 +\U0001f3b6 +\U0001f633 +\U0001f4af +\U0001f634 +\U0001f60c +\u263a +\U0001f64c +\U0001f495 +\U0001f611 +\U0001f605 +\U0001f64f +\U0001f615 +\U0001f618 +\u2665 +\U0001f610 +\U0001f481 +\U0001f61e +\U0001f648 +\U0001f62b +\u270c +\U0001f60e +\U0001f621 +\U0001f44d +\U0001f622 +\U0001f62a +\U0001f60b +\U0001f624 +\u270b +\U0001f637 +\U0001f44f +\U0001f440 +\U0001f52b +\U0001f623 +\U0001f608 +\U0001f613 +\U0001f494 +\u2661 +\U0001f3a7 +\U0001f64a +\U0001f609 +\U0001f480 +\U0001f616 +\U0001f604 +\U0001f61c +\U0001f620 +\U0001f645 +\U0001f4aa +\U0001f44a +\U0001f49c +\U0001f496 +\U0001f499 +\U0001f62c +\u2728 diff --git a/data/kaggle-insults/raw.pickle b/data/kaggle-insults/raw.pickle new file mode 100644 index 0000000..3927d9b --- /dev/null +++ b/data/kaggle-insults/raw.pickle @@ -0,0 +1,37109 @@ +(dp0 +S'info' +p1 +(lp2 +(dp3 +S'label' +p4 +I1 +sa(dp5 +g4 +I0 +sa(dp6 +g4 +I0 +sa(dp7 +g4 +I0 +sa(dp8 +g4 +I0 +sa(dp9 +g4 +I0 +sa(dp10 +g4 +I0 +sa(dp11 +g4 +I1 +sa(dp12 +g4 +I1 +sa(dp13 +g4 +I1 +sa(dp14 +g4 +I0 +sa(dp15 +g4 +I0 +sa(dp16 +g4 +I0 +sa(dp17 +g4 +I0 +sa(dp18 +g4 +I0 +sa(dp19 +g4 +I1 +sa(dp20 +g4 +I1 +sa(dp21 +g4 +I0 +sa(dp22 +g4 +I1 +sa(dp23 +g4 +I1 +sa(dp24 +g4 +I0 +sa(dp25 +g4 +I0 +sa(dp26 +g4 +I0 +sa(dp27 +g4 +I0 +sa(dp28 +g4 +I0 +sa(dp29 +g4 +I0 +sa(dp30 +g4 +I0 +sa(dp31 +g4 +I0 +sa(dp32 +g4 +I0 +sa(dp33 +g4 +I0 +sa(dp34 +g4 +I0 +sa(dp35 +g4 +I0 +sa(dp36 +g4 +I0 +sa(dp37 +g4 +I0 +sa(dp38 +g4 +I1 +sa(dp39 +g4 +I0 +sa(dp40 +g4 +I0 +sa(dp41 +g4 +I1 +sa(dp42 +g4 +I1 +sa(dp43 +g4 +I0 +sa(dp44 +g4 +I0 +sa(dp45 +g4 +I1 +sa(dp46 +g4 +I0 +sa(dp47 +g4 +I0 +sa(dp48 +g4 +I0 +sa(dp49 +g4 +I1 +sa(dp50 +g4 +I0 +sa(dp51 +g4 +I1 +sa(dp52 +g4 +I0 +sa(dp53 +g4 +I0 +sa(dp54 +g4 +I0 +sa(dp55 +g4 +I1 +sa(dp56 +g4 +I0 +sa(dp57 +g4 +I0 +sa(dp58 +g4 +I0 +sa(dp59 +g4 +I1 +sa(dp60 +g4 +I0 +sa(dp61 +g4 +I0 +sa(dp62 +g4 +I0 +sa(dp63 +g4 +I1 +sa(dp64 +g4 +I0 +sa(dp65 +g4 +I1 +sa(dp66 +g4 +I0 +sa(dp67 +g4 +I0 +sa(dp68 +g4 +I0 +sa(dp69 +g4 +I0 +sa(dp70 +g4 +I0 +sa(dp71 +g4 +I0 +sa(dp72 +g4 +I0 +sa(dp73 +g4 +I0 +sa(dp74 +g4 +I0 +sa(dp75 +g4 +I0 +sa(dp76 +g4 +I0 +sa(dp77 +g4 +I0 +sa(dp78 +g4 +I0 +sa(dp79 +g4 +I0 +sa(dp80 +g4 +I0 +sa(dp81 +g4 +I0 +sa(dp82 +g4 +I0 +sa(dp83 +g4 +I1 +sa(dp84 +g4 +I1 +sa(dp85 +g4 +I0 +sa(dp86 +g4 +I1 +sa(dp87 +g4 +I0 +sa(dp88 +g4 +I0 +sa(dp89 +g4 +I0 +sa(dp90 +g4 +I0 +sa(dp91 +g4 +I0 +sa(dp92 +g4 +I1 +sa(dp93 +g4 +I0 +sa(dp94 +g4 +I0 +sa(dp95 +g4 +I0 +sa(dp96 +g4 +I0 +sa(dp97 +g4 +I1 +sa(dp98 +g4 +I0 +sa(dp99 +g4 +I1 +sa(dp100 +g4 +I1 +sa(dp101 +g4 +I1 +sa(dp102 +g4 +I0 +sa(dp103 +g4 +I0 +sa(dp104 +g4 +I1 +sa(dp105 +g4 +I0 +sa(dp106 +g4 +I0 +sa(dp107 +g4 +I1 +sa(dp108 +g4 +I0 +sa(dp109 +g4 +I0 +sa(dp110 +g4 +I1 +sa(dp111 +g4 +I0 +sa(dp112 +g4 +I1 +sa(dp113 +g4 +I0 +sa(dp114 +g4 +I0 +sa(dp115 +g4 +I0 +sa(dp116 +g4 +I0 +sa(dp117 +g4 +I0 +sa(dp118 +g4 +I1 +sa(dp119 +g4 +I1 +sa(dp120 +g4 +I0 +sa(dp121 +g4 +I0 +sa(dp122 +g4 +I0 +sa(dp123 +g4 +I0 +sa(dp124 +g4 +I1 +sa(dp125 +g4 +I0 +sa(dp126 +g4 +I0 +sa(dp127 +g4 +I0 +sa(dp128 +g4 +I0 +sa(dp129 +g4 +I0 +sa(dp130 +g4 +I0 +sa(dp131 +g4 +I1 +sa(dp132 +g4 +I1 +sa(dp133 +g4 +I0 +sa(dp134 +g4 +I0 +sa(dp135 +g4 +I0 +sa(dp136 +g4 +I0 +sa(dp137 +g4 +I1 +sa(dp138 +g4 +I1 +sa(dp139 +g4 +I0 +sa(dp140 +g4 +I1 +sa(dp141 +g4 +I0 +sa(dp142 +g4 +I0 +sa(dp143 +g4 +I0 +sa(dp144 +g4 +I0 +sa(dp145 +g4 +I1 +sa(dp146 +g4 +I0 +sa(dp147 +g4 +I0 +sa(dp148 +g4 +I1 +sa(dp149 +g4 +I0 +sa(dp150 +g4 +I0 +sa(dp151 +g4 +I0 +sa(dp152 +g4 +I0 +sa(dp153 +g4 +I1 +sa(dp154 +g4 +I0 +sa(dp155 +g4 +I0 +sa(dp156 +g4 +I0 +sa(dp157 +g4 +I0 +sa(dp158 +g4 +I0 +sa(dp159 +g4 +I0 +sa(dp160 +g4 +I0 +sa(dp161 +g4 +I0 +sa(dp162 +g4 +I0 +sa(dp163 +g4 +I0 +sa(dp164 +g4 +I1 +sa(dp165 +g4 +I0 +sa(dp166 +g4 +I1 +sa(dp167 +g4 +I0 +sa(dp168 +g4 +I0 +sa(dp169 +g4 +I0 +sa(dp170 +g4 +I1 +sa(dp171 +g4 +I1 +sa(dp172 +g4 +I0 +sa(dp173 +g4 +I1 +sa(dp174 +g4 +I1 +sa(dp175 +g4 +I0 +sa(dp176 +g4 +I0 +sa(dp177 +g4 +I0 +sa(dp178 +g4 +I0 +sa(dp179 +g4 +I0 +sa(dp180 +g4 +I0 +sa(dp181 +g4 +I0 +sa(dp182 +g4 +I0 +sa(dp183 +g4 +I0 +sa(dp184 +g4 +I0 +sa(dp185 +g4 +I0 +sa(dp186 +g4 +I0 +sa(dp187 +g4 +I0 +sa(dp188 +g4 +I0 +sa(dp189 +g4 +I0 +sa(dp190 +g4 +I0 +sa(dp191 +g4 +I0 +sa(dp192 +g4 +I0 +sa(dp193 +g4 +I0 +sa(dp194 +g4 +I0 +sa(dp195 +g4 +I0 +sa(dp196 +g4 +I1 +sa(dp197 +g4 +I0 +sa(dp198 +g4 +I0 +sa(dp199 +g4 +I1 +sa(dp200 +g4 +I0 +sa(dp201 +g4 +I0 +sa(dp202 +g4 +I0 +sa(dp203 +g4 +I0 +sa(dp204 +g4 +I1 +sa(dp205 +g4 +I0 +sa(dp206 +g4 +I1 +sa(dp207 +g4 +I0 +sa(dp208 +g4 +I1 +sa(dp209 +g4 +I0 +sa(dp210 +g4 +I0 +sa(dp211 +g4 +I0 +sa(dp212 +g4 +I1 +sa(dp213 +g4 +I0 +sa(dp214 +g4 +I1 +sa(dp215 +g4 +I0 +sa(dp216 +g4 +I1 +sa(dp217 +g4 +I0 +sa(dp218 +g4 +I1 +sa(dp219 +g4 +I1 +sa(dp220 +g4 +I0 +sa(dp221 +g4 +I1 +sa(dp222 +g4 +I1 +sa(dp223 +g4 +I0 +sa(dp224 +g4 +I0 +sa(dp225 +g4 +I0 +sa(dp226 +g4 +I0 +sa(dp227 +g4 +I0 +sa(dp228 +g4 +I0 +sa(dp229 +g4 +I0 +sa(dp230 +g4 +I1 +sa(dp231 +g4 +I0 +sa(dp232 +g4 +I0 +sa(dp233 +g4 +I0 +sa(dp234 +g4 +I1 +sa(dp235 +g4 +I0 +sa(dp236 +g4 +I0 +sa(dp237 +g4 +I0 +sa(dp238 +g4 +I1 +sa(dp239 +g4 +I0 +sa(dp240 +g4 +I0 +sa(dp241 +g4 +I0 +sa(dp242 +g4 +I0 +sa(dp243 +g4 +I0 +sa(dp244 +g4 +I0 +sa(dp245 +g4 +I1 +sa(dp246 +g4 +I0 +sa(dp247 +g4 +I0 +sa(dp248 +g4 +I0 +sa(dp249 +g4 +I0 +sa(dp250 +g4 +I0 +sa(dp251 +g4 +I0 +sa(dp252 +g4 +I1 +sa(dp253 +g4 +I0 +sa(dp254 +g4 +I0 +sa(dp255 +g4 +I1 +sa(dp256 +g4 +I0 +sa(dp257 +g4 +I0 +sa(dp258 +g4 +I0 +sa(dp259 +g4 +I0 +sa(dp260 +g4 +I0 +sa(dp261 +g4 +I0 +sa(dp262 +g4 +I0 +sa(dp263 +g4 +I0 +sa(dp264 +g4 +I0 +sa(dp265 +g4 +I0 +sa(dp266 +g4 +I0 +sa(dp267 +g4 +I0 +sa(dp268 +g4 +I0 +sa(dp269 +g4 +I0 +sa(dp270 +g4 +I0 +sa(dp271 +g4 +I0 +sa(dp272 +g4 +I0 +sa(dp273 +g4 +I0 +sa(dp274 +g4 +I0 +sa(dp275 +g4 +I0 +sa(dp276 +g4 +I0 +sa(dp277 +g4 +I1 +sa(dp278 +g4 +I0 +sa(dp279 +g4 +I0 +sa(dp280 +g4 +I0 +sa(dp281 +g4 +I1 +sa(dp282 +g4 +I0 +sa(dp283 +g4 +I0 +sa(dp284 +g4 +I0 +sa(dp285 +g4 +I0 +sa(dp286 +g4 +I0 +sa(dp287 +g4 +I0 +sa(dp288 +g4 +I1 +sa(dp289 +g4 +I1 +sa(dp290 +g4 +I0 +sa(dp291 +g4 +I0 +sa(dp292 +g4 +I0 +sa(dp293 +g4 +I1 +sa(dp294 +g4 +I0 +sa(dp295 +g4 +I0 +sa(dp296 +g4 +I0 +sa(dp297 +g4 +I1 +sa(dp298 +g4 +I1 +sa(dp299 +g4 +I0 +sa(dp300 +g4 +I0 +sa(dp301 +g4 +I0 +sa(dp302 +g4 +I0 +sa(dp303 +g4 +I0 +sa(dp304 +g4 +I0 +sa(dp305 +g4 +I1 +sa(dp306 +g4 +I0 +sa(dp307 +g4 +I1 +sa(dp308 +g4 +I0 +sa(dp309 +g4 +I1 +sa(dp310 +g4 +I0 +sa(dp311 +g4 +I1 +sa(dp312 +g4 +I0 +sa(dp313 +g4 +I0 +sa(dp314 +g4 +I0 +sa(dp315 +g4 +I0 +sa(dp316 +g4 +I0 +sa(dp317 +g4 +I0 +sa(dp318 +g4 +I0 +sa(dp319 +g4 +I1 +sa(dp320 +g4 +I0 +sa(dp321 +g4 +I1 +sa(dp322 +g4 +I0 +sa(dp323 +g4 +I0 +sa(dp324 +g4 +I1 +sa(dp325 +g4 +I0 +sa(dp326 +g4 +I1 +sa(dp327 +g4 +I1 +sa(dp328 +g4 +I0 +sa(dp329 +g4 +I0 +sa(dp330 +g4 +I0 +sa(dp331 +g4 +I1 +sa(dp332 +g4 +I0 +sa(dp333 +g4 +I1 +sa(dp334 +g4 +I1 +sa(dp335 +g4 +I0 +sa(dp336 +g4 +I0 +sa(dp337 +g4 +I0 +sa(dp338 +g4 +I1 +sa(dp339 +g4 +I1 +sa(dp340 +g4 +I0 +sa(dp341 +g4 +I0 +sa(dp342 +g4 +I0 +sa(dp343 +g4 +I0 +sa(dp344 +g4 +I0 +sa(dp345 +g4 +I0 +sa(dp346 +g4 +I0 +sa(dp347 +g4 +I0 +sa(dp348 +g4 +I0 +sa(dp349 +g4 +I0 +sa(dp350 +g4 +I0 +sa(dp351 +g4 +I1 +sa(dp352 +g4 +I0 +sa(dp353 +g4 +I0 +sa(dp354 +g4 +I1 +sa(dp355 +g4 +I0 +sa(dp356 +g4 +I1 +sa(dp357 +g4 +I1 +sa(dp358 +g4 +I1 +sa(dp359 +g4 +I0 +sa(dp360 +g4 +I0 +sa(dp361 +g4 +I0 +sa(dp362 +g4 +I1 +sa(dp363 +g4 +I0 +sa(dp364 +g4 +I1 +sa(dp365 +g4 +I0 +sa(dp366 +g4 +I0 +sa(dp367 +g4 +I0 +sa(dp368 +g4 +I0 +sa(dp369 +g4 +I0 +sa(dp370 +g4 +I1 +sa(dp371 +g4 +I0 +sa(dp372 +g4 +I0 +sa(dp373 +g4 +I1 +sa(dp374 +g4 +I0 +sa(dp375 +g4 +I0 +sa(dp376 +g4 +I0 +sa(dp377 +g4 +I1 +sa(dp378 +g4 +I1 +sa(dp379 +g4 +I1 +sa(dp380 +g4 +I0 +sa(dp381 +g4 +I0 +sa(dp382 +g4 +I1 +sa(dp383 +g4 +I0 +sa(dp384 +g4 +I0 +sa(dp385 +g4 +I1 +sa(dp386 +g4 +I0 +sa(dp387 +g4 +I0 +sa(dp388 +g4 +I0 +sa(dp389 +g4 +I0 +sa(dp390 +g4 +I0 +sa(dp391 +g4 +I0 +sa(dp392 +g4 +I0 +sa(dp393 +g4 +I1 +sa(dp394 +g4 +I0 +sa(dp395 +g4 +I0 +sa(dp396 +g4 +I1 +sa(dp397 +g4 +I1 +sa(dp398 +g4 +I1 +sa(dp399 +g4 +I0 +sa(dp400 +g4 +I0 +sa(dp401 +g4 +I1 +sa(dp402 +g4 +I0 +sa(dp403 +g4 +I0 +sa(dp404 +g4 +I0 +sa(dp405 +g4 +I0 +sa(dp406 +g4 +I0 +sa(dp407 +g4 +I1 +sa(dp408 +g4 +I1 +sa(dp409 +g4 +I0 +sa(dp410 +g4 +I1 +sa(dp411 +g4 +I0 +sa(dp412 +g4 +I1 +sa(dp413 +g4 +I0 +sa(dp414 +g4 +I1 +sa(dp415 +g4 +I0 +sa(dp416 +g4 +I0 +sa(dp417 +g4 +I0 +sa(dp418 +g4 +I0 +sa(dp419 +g4 +I1 +sa(dp420 +g4 +I0 +sa(dp421 +g4 +I0 +sa(dp422 +g4 +I1 +sa(dp423 +g4 +I0 +sa(dp424 +g4 +I0 +sa(dp425 +g4 +I0 +sa(dp426 +g4 +I0 +sa(dp427 +g4 +I0 +sa(dp428 +g4 +I0 +sa(dp429 +g4 +I0 +sa(dp430 +g4 +I1 +sa(dp431 +g4 +I0 +sa(dp432 +g4 +I1 +sa(dp433 +g4 +I0 +sa(dp434 +g4 +I0 +sa(dp435 +g4 +I0 +sa(dp436 +g4 +I0 +sa(dp437 +g4 +I0 +sa(dp438 +g4 +I0 +sa(dp439 +g4 +I1 +sa(dp440 +g4 +I1 +sa(dp441 +g4 +I0 +sa(dp442 +g4 +I0 +sa(dp443 +g4 +I0 +sa(dp444 +g4 +I0 +sa(dp445 +g4 +I0 +sa(dp446 +g4 +I1 +sa(dp447 +g4 +I1 +sa(dp448 +g4 +I0 +sa(dp449 +g4 +I1 +sa(dp450 +g4 +I0 +sa(dp451 +g4 +I0 +sa(dp452 +g4 +I0 +sa(dp453 +g4 +I0 +sa(dp454 +g4 +I1 +sa(dp455 +g4 +I1 +sa(dp456 +g4 +I0 +sa(dp457 +g4 +I0 +sa(dp458 +g4 +I1 +sa(dp459 +g4 +I0 +sa(dp460 +g4 +I0 +sa(dp461 +g4 +I1 +sa(dp462 +g4 +I1 +sa(dp463 +g4 +I1 +sa(dp464 +g4 +I0 +sa(dp465 +g4 +I0 +sa(dp466 +g4 +I1 +sa(dp467 +g4 +I0 +sa(dp468 +g4 +I1 +sa(dp469 +g4 +I0 +sa(dp470 +g4 +I0 +sa(dp471 +g4 +I0 +sa(dp472 +g4 +I0 +sa(dp473 +g4 +I0 +sa(dp474 +g4 +I1 +sa(dp475 +g4 +I0 +sa(dp476 +g4 +I0 +sa(dp477 +g4 +I0 +sa(dp478 +g4 +I1 +sa(dp479 +g4 +I0 +sa(dp480 +g4 +I0 +sa(dp481 +g4 +I1 +sa(dp482 +g4 +I1 +sa(dp483 +g4 +I0 +sa(dp484 +g4 +I0 +sa(dp485 +g4 +I0 +sa(dp486 +g4 +I0 +sa(dp487 +g4 +I0 +sa(dp488 +g4 +I0 +sa(dp489 +g4 +I0 +sa(dp490 +g4 +I0 +sa(dp491 +g4 +I0 +sa(dp492 +g4 +I0 +sa(dp493 +g4 +I0 +sa(dp494 +g4 +I0 +sa(dp495 +g4 +I0 +sa(dp496 +g4 +I0 +sa(dp497 +g4 +I0 +sa(dp498 +g4 +I0 +sa(dp499 +g4 +I1 +sa(dp500 +g4 +I0 +sa(dp501 +g4 +I0 +sa(dp502 +g4 +I0 +sa(dp503 +g4 +I0 +sa(dp504 +g4 +I0 +sa(dp505 +g4 +I0 +sa(dp506 +g4 +I0 +sa(dp507 +g4 +I0 +sa(dp508 +g4 +I0 +sa(dp509 +g4 +I0 +sa(dp510 +g4 +I0 +sa(dp511 +g4 +I0 +sa(dp512 +g4 +I0 +sa(dp513 +g4 +I0 +sa(dp514 +g4 +I0 +sa(dp515 +g4 +I0 +sa(dp516 +g4 +I0 +sa(dp517 +g4 +I1 +sa(dp518 +g4 +I0 +sa(dp519 +g4 +I1 +sa(dp520 +g4 +I1 +sa(dp521 +g4 +I0 +sa(dp522 +g4 +I0 +sa(dp523 +g4 +I0 +sa(dp524 +g4 +I0 +sa(dp525 +g4 +I0 +sa(dp526 +g4 +I0 +sa(dp527 +g4 +I0 +sa(dp528 +g4 +I1 +sa(dp529 +g4 +I0 +sa(dp530 +g4 +I0 +sa(dp531 +g4 +I0 +sa(dp532 +g4 +I0 +sa(dp533 +g4 +I0 +sa(dp534 +g4 +I0 +sa(dp535 +g4 +I0 +sa(dp536 +g4 +I0 +sa(dp537 +g4 +I0 +sa(dp538 +g4 +I0 +sa(dp539 +g4 +I0 +sa(dp540 +g4 +I1 +sa(dp541 +g4 +I1 +sa(dp542 +g4 +I0 +sa(dp543 +g4 +I1 +sa(dp544 +g4 +I1 +sa(dp545 +g4 +I0 +sa(dp546 +g4 +I1 +sa(dp547 +g4 +I0 +sa(dp548 +g4 +I0 +sa(dp549 +g4 +I0 +sa(dp550 +g4 +I0 +sa(dp551 +g4 +I0 +sa(dp552 +g4 +I1 +sa(dp553 +g4 +I0 +sa(dp554 +g4 +I0 +sa(dp555 +g4 +I0 +sa(dp556 +g4 +I0 +sa(dp557 +g4 +I0 +sa(dp558 +g4 +I1 +sa(dp559 +g4 +I0 +sa(dp560 +g4 +I1 +sa(dp561 +g4 +I0 +sa(dp562 +g4 +I0 +sa(dp563 +g4 +I0 +sa(dp564 +g4 +I0 +sa(dp565 +g4 +I0 +sa(dp566 +g4 +I0 +sa(dp567 +g4 +I0 +sa(dp568 +g4 +I1 +sa(dp569 +g4 +I0 +sa(dp570 +g4 +I0 +sa(dp571 +g4 +I0 +sa(dp572 +g4 +I1 +sa(dp573 +g4 +I0 +sa(dp574 +g4 +I1 +sa(dp575 +g4 +I1 +sa(dp576 +g4 +I0 +sa(dp577 +g4 +I0 +sa(dp578 +g4 +I0 +sa(dp579 +g4 +I0 +sa(dp580 +g4 +I0 +sa(dp581 +g4 +I0 +sa(dp582 +g4 +I0 +sa(dp583 +g4 +I0 +sa(dp584 +g4 +I0 +sa(dp585 +g4 +I1 +sa(dp586 +g4 +I0 +sa(dp587 +g4 +I0 +sa(dp588 +g4 +I0 +sa(dp589 +g4 +I0 +sa(dp590 +g4 +I0 +sa(dp591 +g4 +I0 +sa(dp592 +g4 +I1 +sa(dp593 +g4 +I0 +sa(dp594 +g4 +I0 +sa(dp595 +g4 +I0 +sa(dp596 +g4 +I0 +sa(dp597 +g4 +I0 +sa(dp598 +g4 +I0 +sa(dp599 +g4 +I0 +sa(dp600 +g4 +I0 +sa(dp601 +g4 +I0 +sa(dp602 +g4 +I0 +sa(dp603 +g4 +I0 +sa(dp604 +g4 +I0 +sa(dp605 +g4 +I0 +sa(dp606 +g4 +I0 +sa(dp607 +g4 +I0 +sa(dp608 +g4 +I0 +sa(dp609 +g4 +I0 +sa(dp610 +g4 +I1 +sa(dp611 +g4 +I0 +sa(dp612 +g4 +I0 +sa(dp613 +g4 +I0 +sa(dp614 +g4 +I0 +sa(dp615 +g4 +I0 +sa(dp616 +g4 +I0 +sa(dp617 +g4 +I0 +sa(dp618 +g4 +I0 +sa(dp619 +g4 +I0 +sa(dp620 +g4 +I1 +sa(dp621 +g4 +I1 +sa(dp622 +g4 +I1 +sa(dp623 +g4 +I1 +sa(dp624 +g4 +I0 +sa(dp625 +g4 +I0 +sa(dp626 +g4 +I0 +sa(dp627 +g4 +I0 +sa(dp628 +g4 +I0 +sa(dp629 +g4 +I0 +sa(dp630 +g4 +I0 +sa(dp631 +g4 +I1 +sa(dp632 +g4 +I0 +sa(dp633 +g4 +I0 +sa(dp634 +g4 +I0 +sa(dp635 +g4 +I1 +sa(dp636 +g4 +I0 +sa(dp637 +g4 +I0 +sa(dp638 +g4 +I1 +sa(dp639 +g4 +I1 +sa(dp640 +g4 +I1 +sa(dp641 +g4 +I0 +sa(dp642 +g4 +I0 +sa(dp643 +g4 +I0 +sa(dp644 +g4 +I0 +sa(dp645 +g4 +I0 +sa(dp646 +g4 +I1 +sa(dp647 +g4 +I0 +sa(dp648 +g4 +I0 +sa(dp649 +g4 +I1 +sa(dp650 +g4 +I0 +sa(dp651 +g4 +I0 +sa(dp652 +g4 +I0 +sa(dp653 +g4 +I0 +sa(dp654 +g4 +I0 +sa(dp655 +g4 +I1 +sa(dp656 +g4 +I0 +sa(dp657 +g4 +I1 +sa(dp658 +g4 +I1 +sa(dp659 +g4 +I0 +sa(dp660 +g4 +I1 +sa(dp661 +g4 +I0 +sa(dp662 +g4 +I0 +sa(dp663 +g4 +I0 +sa(dp664 +g4 +I0 +sa(dp665 +g4 +I1 +sa(dp666 +g4 +I0 +sa(dp667 +g4 +I0 +sa(dp668 +g4 +I0 +sa(dp669 +g4 +I0 +sa(dp670 +g4 +I0 +sa(dp671 +g4 +I0 +sa(dp672 +g4 +I0 +sa(dp673 +g4 +I0 +sa(dp674 +g4 +I0 +sa(dp675 +g4 +I0 +sa(dp676 +g4 +I0 +sa(dp677 +g4 +I0 +sa(dp678 +g4 +I0 +sa(dp679 +g4 +I0 +sa(dp680 +g4 +I0 +sa(dp681 +g4 +I0 +sa(dp682 +g4 +I0 +sa(dp683 +g4 +I0 +sa(dp684 +g4 +I0 +sa(dp685 +g4 +I0 +sa(dp686 +g4 +I0 +sa(dp687 +g4 +I0 +sa(dp688 +g4 +I0 +sa(dp689 +g4 +I0 +sa(dp690 +g4 +I1 +sa(dp691 +g4 +I0 +sa(dp692 +g4 +I0 +sa(dp693 +g4 +I0 +sa(dp694 +g4 +I0 +sa(dp695 +g4 +I0 +sa(dp696 +g4 +I1 +sa(dp697 +g4 +I0 +sa(dp698 +g4 +I0 +sa(dp699 +g4 +I0 +sa(dp700 +g4 +I0 +sa(dp701 +g4 +I0 +sa(dp702 +g4 +I1 +sa(dp703 +g4 +I0 +sa(dp704 +g4 +I0 +sa(dp705 +g4 +I0 +sa(dp706 +g4 +I0 +sa(dp707 +g4 +I0 +sa(dp708 +g4 +I0 +sa(dp709 +g4 +I0 +sa(dp710 +g4 +I1 +sa(dp711 +g4 +I0 +sa(dp712 +g4 +I0 +sa(dp713 +g4 +I0 +sa(dp714 +g4 +I0 +sa(dp715 +g4 +I0 +sa(dp716 +g4 +I0 +sa(dp717 +g4 +I0 +sa(dp718 +g4 +I0 +sa(dp719 +g4 +I0 +sa(dp720 +g4 +I0 +sa(dp721 +g4 +I1 +sa(dp722 +g4 +I0 +sa(dp723 +g4 +I1 +sa(dp724 +g4 +I1 +sa(dp725 +g4 +I0 +sa(dp726 +g4 +I0 +sa(dp727 +g4 +I0 +sa(dp728 +g4 +I0 +sa(dp729 +g4 +I0 +sa(dp730 +g4 +I0 +sa(dp731 +g4 +I0 +sa(dp732 +g4 +I1 +sa(dp733 +g4 +I0 +sa(dp734 +g4 +I0 +sa(dp735 +g4 +I0 +sa(dp736 +g4 +I0 +sa(dp737 +g4 +I1 +sa(dp738 +g4 +I0 +sa(dp739 +g4 +I0 +sa(dp740 +g4 +I0 +sa(dp741 +g4 +I0 +sa(dp742 +g4 +I0 +sa(dp743 +g4 +I1 +sa(dp744 +g4 +I0 +sa(dp745 +g4 +I0 +sa(dp746 +g4 +I0 +sa(dp747 +g4 +I1 +sa(dp748 +g4 +I1 +sa(dp749 +g4 +I0 +sa(dp750 +g4 +I0 +sa(dp751 +g4 +I1 +sa(dp752 +g4 +I1 +sa(dp753 +g4 +I0 +sa(dp754 +g4 +I0 +sa(dp755 +g4 +I1 +sa(dp756 +g4 +I0 +sa(dp757 +g4 +I0 +sa(dp758 +g4 +I0 +sa(dp759 +g4 +I1 +sa(dp760 +g4 +I0 +sa(dp761 +g4 +I0 +sa(dp762 +g4 +I0 +sa(dp763 +g4 +I0 +sa(dp764 +g4 +I1 +sa(dp765 +g4 +I1 +sa(dp766 +g4 +I1 +sa(dp767 +g4 +I0 +sa(dp768 +g4 +I1 +sa(dp769 +g4 +I1 +sa(dp770 +g4 +I0 +sa(dp771 +g4 +I0 +sa(dp772 +g4 +I0 +sa(dp773 +g4 +I0 +sa(dp774 +g4 +I0 +sa(dp775 +g4 +I0 +sa(dp776 +g4 +I1 +sa(dp777 +g4 +I0 +sa(dp778 +g4 +I0 +sa(dp779 +g4 +I1 +sa(dp780 +g4 +I0 +sa(dp781 +g4 +I1 +sa(dp782 +g4 +I0 +sa(dp783 +g4 +I0 +sa(dp784 +g4 +I1 +sa(dp785 +g4 +I1 +sa(dp786 +g4 +I1 +sa(dp787 +g4 +I1 +sa(dp788 +g4 +I0 +sa(dp789 +g4 +I0 +sa(dp790 +g4 +I0 +sa(dp791 +g4 +I0 +sa(dp792 +g4 +I0 +sa(dp793 +g4 +I0 +sa(dp794 +g4 +I0 +sa(dp795 +g4 +I0 +sa(dp796 +g4 +I0 +sa(dp797 +g4 +I1 +sa(dp798 +g4 +I0 +sa(dp799 +g4 +I0 +sa(dp800 +g4 +I0 +sa(dp801 +g4 +I1 +sa(dp802 +g4 +I0 +sa(dp803 +g4 +I1 +sa(dp804 +g4 +I0 +sa(dp805 +g4 +I0 +sa(dp806 +g4 +I0 +sa(dp807 +g4 +I0 +sa(dp808 +g4 +I0 +sa(dp809 +g4 +I1 +sa(dp810 +g4 +I0 +sa(dp811 +g4 +I0 +sa(dp812 +g4 +I0 +sa(dp813 +g4 +I0 +sa(dp814 +g4 +I0 +sa(dp815 +g4 +I1 +sa(dp816 +g4 +I1 +sa(dp817 +g4 +I0 +sa(dp818 +g4 +I0 +sa(dp819 +g4 +I0 +sa(dp820 +g4 +I0 +sa(dp821 +g4 +I1 +sa(dp822 +g4 +I1 +sa(dp823 +g4 +I0 +sa(dp824 +g4 +I1 +sa(dp825 +g4 +I0 +sa(dp826 +g4 +I0 +sa(dp827 +g4 +I0 +sa(dp828 +g4 +I1 +sa(dp829 +g4 +I0 +sa(dp830 +g4 +I0 +sa(dp831 +g4 +I0 +sa(dp832 +g4 +I0 +sa(dp833 +g4 +I1 +sa(dp834 +g4 +I0 +sa(dp835 +g4 +I0 +sa(dp836 +g4 +I0 +sa(dp837 +g4 +I1 +sa(dp838 +g4 +I1 +sa(dp839 +g4 +I1 +sa(dp840 +g4 +I0 +sa(dp841 +g4 +I0 +sa(dp842 +g4 +I1 +sa(dp843 +g4 +I0 +sa(dp844 +g4 +I0 +sa(dp845 +g4 +I0 +sa(dp846 +g4 +I0 +sa(dp847 +g4 +I1 +sa(dp848 +g4 +I0 +sa(dp849 +g4 +I1 +sa(dp850 +g4 +I0 +sa(dp851 +g4 +I1 +sa(dp852 +g4 +I0 +sa(dp853 +g4 +I1 +sa(dp854 +g4 +I0 +sa(dp855 +g4 +I0 +sa(dp856 +g4 +I0 +sa(dp857 +g4 +I0 +sa(dp858 +g4 +I0 +sa(dp859 +g4 +I0 +sa(dp860 +g4 +I1 +sa(dp861 +g4 +I1 +sa(dp862 +g4 +I0 +sa(dp863 +g4 +I0 +sa(dp864 +g4 +I1 +sa(dp865 +g4 +I0 +sa(dp866 +g4 +I1 +sa(dp867 +g4 +I0 +sa(dp868 +g4 +I0 +sa(dp869 +g4 +I1 +sa(dp870 +g4 +I0 +sa(dp871 +g4 +I1 +sa(dp872 +g4 +I0 +sa(dp873 +g4 +I1 +sa(dp874 +g4 +I0 +sa(dp875 +g4 +I1 +sa(dp876 +g4 +I0 +sa(dp877 +g4 +I0 +sa(dp878 +g4 +I0 +sa(dp879 +g4 +I0 +sa(dp880 +g4 +I1 +sa(dp881 +g4 +I0 +sa(dp882 +g4 +I1 +sa(dp883 +g4 +I1 +sa(dp884 +g4 +I0 +sa(dp885 +g4 +I1 +sa(dp886 +g4 +I0 +sa(dp887 +g4 +I0 +sa(dp888 +g4 +I0 +sa(dp889 +g4 +I0 +sa(dp890 +g4 +I0 +sa(dp891 +g4 +I0 +sa(dp892 +g4 +I0 +sa(dp893 +g4 +I0 +sa(dp894 +g4 +I1 +sa(dp895 +g4 +I1 +sa(dp896 +g4 +I0 +sa(dp897 +g4 +I1 +sa(dp898 +g4 +I0 +sa(dp899 +g4 +I0 +sa(dp900 +g4 +I1 +sa(dp901 +g4 +I0 +sa(dp902 +g4 +I0 +sa(dp903 +g4 +I1 +sa(dp904 +g4 +I0 +sa(dp905 +g4 +I1 +sa(dp906 +g4 +I0 +sa(dp907 +g4 +I0 +sa(dp908 +g4 +I0 +sa(dp909 +g4 +I0 +sa(dp910 +g4 +I0 +sa(dp911 +g4 +I0 +sa(dp912 +g4 +I1 +sa(dp913 +g4 +I0 +sa(dp914 +g4 +I1 +sa(dp915 +g4 +I0 +sa(dp916 +g4 +I0 +sa(dp917 +g4 +I1 +sa(dp918 +g4 +I0 +sa(dp919 +g4 +I0 +sa(dp920 +g4 +I0 +sa(dp921 +g4 +I0 +sa(dp922 +g4 +I0 +sa(dp923 +g4 +I0 +sa(dp924 +g4 +I0 +sa(dp925 +g4 +I0 +sa(dp926 +g4 +I0 +sa(dp927 +g4 +I0 +sa(dp928 +g4 +I1 +sa(dp929 +g4 +I0 +sa(dp930 +g4 +I0 +sa(dp931 +g4 +I0 +sa(dp932 +g4 +I0 +sa(dp933 +g4 +I1 +sa(dp934 +g4 +I1 +sa(dp935 +g4 +I1 +sa(dp936 +g4 +I0 +sa(dp937 +g4 +I0 +sa(dp938 +g4 +I0 +sa(dp939 +g4 +I0 +sa(dp940 +g4 +I1 +sa(dp941 +g4 +I0 +sa(dp942 +g4 +I0 +sa(dp943 +g4 +I0 +sa(dp944 +g4 +I0 +sa(dp945 +g4 +I0 +sa(dp946 +g4 +I0 +sa(dp947 +g4 +I0 +sa(dp948 +g4 +I0 +sa(dp949 +g4 +I0 +sa(dp950 +g4 +I0 +sa(dp951 +g4 +I0 +sa(dp952 +g4 +I0 +sa(dp953 +g4 +I0 +sa(dp954 +g4 +I0 +sa(dp955 +g4 +I0 +sa(dp956 +g4 +I0 +sa(dp957 +g4 +I1 +sa(dp958 +g4 +I1 +sa(dp959 +g4 +I0 +sa(dp960 +g4 +I1 +sa(dp961 +g4 +I1 +sa(dp962 +g4 +I1 +sa(dp963 +g4 +I1 +sa(dp964 +g4 +I0 +sa(dp965 +g4 +I0 +sa(dp966 +g4 +I0 +sa(dp967 +g4 +I0 +sa(dp968 +g4 +I1 +sa(dp969 +g4 +I0 +sa(dp970 +g4 +I0 +sa(dp971 +g4 +I1 +sa(dp972 +g4 +I0 +sa(dp973 +g4 +I0 +sa(dp974 +g4 +I1 +sa(dp975 +g4 +I0 +sa(dp976 +g4 +I1 +sa(dp977 +g4 +I0 +sa(dp978 +g4 +I0 +sa(dp979 +g4 +I1 +sa(dp980 +g4 +I0 +sa(dp981 +g4 +I0 +sa(dp982 +g4 +I1 +sa(dp983 +g4 +I0 +sa(dp984 +g4 +I0 +sa(dp985 +g4 +I0 +sa(dp986 +g4 +I1 +sa(dp987 +g4 +I1 +sa(dp988 +g4 +I0 +sa(dp989 +g4 +I1 +sa(dp990 +g4 +I0 +sa(dp991 +g4 +I0 +sa(dp992 +g4 +I0 +sa(dp993 +g4 +I0 +sa(dp994 +g4 +I0 +sa(dp995 +g4 +I1 +sa(dp996 +g4 +I1 +sa(dp997 +g4 +I1 +sa(dp998 +g4 +I0 +sa(dp999 +g4 +I0 +sa(dp1000 +g4 +I1 +sa(dp1001 +g4 +I0 +sa(dp1002 +g4 +I0 +sa(dp1003 +g4 +I0 +sa(dp1004 +g4 +I0 +sa(dp1005 +g4 +I0 +sa(dp1006 +g4 +I0 +sa(dp1007 +g4 +I1 +sa(dp1008 +g4 +I0 +sa(dp1009 +g4 +I1 +sa(dp1010 +g4 +I1 +sa(dp1011 +g4 +I0 +sa(dp1012 +g4 +I0 +sa(dp1013 +g4 +I1 +sa(dp1014 +g4 +I0 +sa(dp1015 +g4 +I0 +sa(dp1016 +g4 +I1 +sa(dp1017 +g4 +I0 +sa(dp1018 +g4 +I0 +sa(dp1019 +g4 +I0 +sa(dp1020 +g4 +I0 +sa(dp1021 +g4 +I0 +sa(dp1022 +g4 +I1 +sa(dp1023 +g4 +I0 +sa(dp1024 +g4 +I0 +sa(dp1025 +g4 +I0 +sa(dp1026 +g4 +I0 +sa(dp1027 +g4 +I1 +sa(dp1028 +g4 +I1 +sa(dp1029 +g4 +I1 +sa(dp1030 +g4 +I0 +sa(dp1031 +g4 +I0 +sa(dp1032 +g4 +I0 +sa(dp1033 +g4 +I0 +sa(dp1034 +g4 +I0 +sa(dp1035 +g4 +I1 +sa(dp1036 +g4 +I0 +sa(dp1037 +g4 +I0 +sa(dp1038 +g4 +I0 +sa(dp1039 +g4 +I0 +sa(dp1040 +g4 +I0 +sa(dp1041 +g4 +I0 +sa(dp1042 +g4 +I0 +sa(dp1043 +g4 +I0 +sa(dp1044 +g4 +I1 +sa(dp1045 +g4 +I0 +sa(dp1046 +g4 +I0 +sa(dp1047 +g4 +I0 +sa(dp1048 +g4 +I0 +sa(dp1049 +g4 +I0 +sa(dp1050 +g4 +I0 +sa(dp1051 +g4 +I1 +sa(dp1052 +g4 +I0 +sa(dp1053 +g4 +I0 +sa(dp1054 +g4 +I0 +sa(dp1055 +g4 +I0 +sa(dp1056 +g4 +I0 +sa(dp1057 +g4 +I0 +sa(dp1058 +g4 +I0 +sa(dp1059 +g4 +I0 +sa(dp1060 +g4 +I1 +sa(dp1061 +g4 +I0 +sa(dp1062 +g4 +I0 +sa(dp1063 +g4 +I0 +sa(dp1064 +g4 +I1 +sa(dp1065 +g4 +I0 +sa(dp1066 +g4 +I0 +sa(dp1067 +g4 +I0 +sa(dp1068 +g4 +I0 +sa(dp1069 +g4 +I0 +sa(dp1070 +g4 +I0 +sa(dp1071 +g4 +I0 +sa(dp1072 +g4 +I1 +sa(dp1073 +g4 +I0 +sa(dp1074 +g4 +I0 +sa(dp1075 +g4 +I0 +sa(dp1076 +g4 +I0 +sa(dp1077 +g4 +I0 +sa(dp1078 +g4 +I1 +sa(dp1079 +g4 +I0 +sa(dp1080 +g4 +I0 +sa(dp1081 +g4 +I0 +sa(dp1082 +g4 +I1 +sa(dp1083 +g4 +I0 +sa(dp1084 +g4 +I1 +sa(dp1085 +g4 +I0 +sa(dp1086 +g4 +I1 +sa(dp1087 +g4 +I0 +sa(dp1088 +g4 +I1 +sa(dp1089 +g4 +I0 +sa(dp1090 +g4 +I0 +sa(dp1091 +g4 +I0 +sa(dp1092 +g4 +I1 +sa(dp1093 +g4 +I0 +sa(dp1094 +g4 +I0 +sa(dp1095 +g4 +I0 +sa(dp1096 +g4 +I1 +sa(dp1097 +g4 +I1 +sa(dp1098 +g4 +I0 +sa(dp1099 +g4 +I0 +sa(dp1100 +g4 +I0 +sa(dp1101 +g4 +I1 +sa(dp1102 +g4 +I0 +sa(dp1103 +g4 +I0 +sa(dp1104 +g4 +I1 +sa(dp1105 +g4 +I1 +sa(dp1106 +g4 +I0 +sa(dp1107 +g4 +I0 +sa(dp1108 +g4 +I0 +sa(dp1109 +g4 +I1 +sa(dp1110 +g4 +I1 +sa(dp1111 +g4 +I0 +sa(dp1112 +g4 +I0 +sa(dp1113 +g4 +I0 +sa(dp1114 +g4 +I0 +sa(dp1115 +g4 +I0 +sa(dp1116 +g4 +I0 +sa(dp1117 +g4 +I1 +sa(dp1118 +g4 +I1 +sa(dp1119 +g4 +I0 +sa(dp1120 +g4 +I0 +sa(dp1121 +g4 +I1 +sa(dp1122 +g4 +I1 +sa(dp1123 +g4 +I1 +sa(dp1124 +g4 +I0 +sa(dp1125 +g4 +I0 +sa(dp1126 +g4 +I1 +sa(dp1127 +g4 +I0 +sa(dp1128 +g4 +I0 +sa(dp1129 +g4 +I0 +sa(dp1130 +g4 +I0 +sa(dp1131 +g4 +I1 +sa(dp1132 +g4 +I0 +sa(dp1133 +g4 +I0 +sa(dp1134 +g4 +I0 +sa(dp1135 +g4 +I0 +sa(dp1136 +g4 +I0 +sa(dp1137 +g4 +I0 +sa(dp1138 +g4 +I0 +sa(dp1139 +g4 +I0 +sa(dp1140 +g4 +I1 +sa(dp1141 +g4 +I1 +sa(dp1142 +g4 +I0 +sa(dp1143 +g4 +I1 +sa(dp1144 +g4 +I0 +sa(dp1145 +g4 +I0 +sa(dp1146 +g4 +I1 +sa(dp1147 +g4 +I0 +sa(dp1148 +g4 +I1 +sa(dp1149 +g4 +I1 +sa(dp1150 +g4 +I0 +sa(dp1151 +g4 +I1 +sa(dp1152 +g4 +I0 +sa(dp1153 +g4 +I0 +sa(dp1154 +g4 +I0 +sa(dp1155 +g4 +I0 +sa(dp1156 +g4 +I0 +sa(dp1157 +g4 +I0 +sa(dp1158 +g4 +I0 +sa(dp1159 +g4 +I0 +sa(dp1160 +g4 +I0 +sa(dp1161 +g4 +I0 +sa(dp1162 +g4 +I0 +sa(dp1163 +g4 +I0 +sa(dp1164 +g4 +I1 +sa(dp1165 +g4 +I0 +sa(dp1166 +g4 +I0 +sa(dp1167 +g4 +I0 +sa(dp1168 +g4 +I0 +sa(dp1169 +g4 +I0 +sa(dp1170 +g4 +I0 +sa(dp1171 +g4 +I1 +sa(dp1172 +g4 +I0 +sa(dp1173 +g4 +I0 +sa(dp1174 +g4 +I1 +sa(dp1175 +g4 +I1 +sa(dp1176 +g4 +I0 +sa(dp1177 +g4 +I0 +sa(dp1178 +g4 +I0 +sa(dp1179 +g4 +I0 +sa(dp1180 +g4 +I0 +sa(dp1181 +g4 +I0 +sa(dp1182 +g4 +I0 +sa(dp1183 +g4 +I0 +sa(dp1184 +g4 +I1 +sa(dp1185 +g4 +I1 +sa(dp1186 +g4 +I0 +sa(dp1187 +g4 +I0 +sa(dp1188 +g4 +I1 +sa(dp1189 +g4 +I0 +sa(dp1190 +g4 +I1 +sa(dp1191 +g4 +I0 +sa(dp1192 +g4 +I0 +sa(dp1193 +g4 +I0 +sa(dp1194 +g4 +I1 +sa(dp1195 +g4 +I0 +sa(dp1196 +g4 +I0 +sa(dp1197 +g4 +I0 +sa(dp1198 +g4 +I0 +sa(dp1199 +g4 +I0 +sa(dp1200 +g4 +I0 +sa(dp1201 +g4 +I0 +sa(dp1202 +g4 +I0 +sa(dp1203 +g4 +I0 +sa(dp1204 +g4 +I0 +sa(dp1205 +g4 +I0 +sa(dp1206 +g4 +I0 +sa(dp1207 +g4 +I0 +sa(dp1208 +g4 +I1 +sa(dp1209 +g4 +I0 +sa(dp1210 +g4 +I0 +sa(dp1211 +g4 +I1 +sa(dp1212 +g4 +I1 +sa(dp1213 +g4 +I0 +sa(dp1214 +g4 +I1 +sa(dp1215 +g4 +I0 +sa(dp1216 +g4 +I0 +sa(dp1217 +g4 +I0 +sa(dp1218 +g4 +I1 +sa(dp1219 +g4 +I0 +sa(dp1220 +g4 +I0 +sa(dp1221 +g4 +I0 +sa(dp1222 +g4 +I0 +sa(dp1223 +g4 +I1 +sa(dp1224 +g4 +I0 +sa(dp1225 +g4 +I0 +sa(dp1226 +g4 +I0 +sa(dp1227 +g4 +I0 +sa(dp1228 +g4 +I0 +sa(dp1229 +g4 +I1 +sa(dp1230 +g4 +I0 +sa(dp1231 +g4 +I0 +sa(dp1232 +g4 +I0 +sa(dp1233 +g4 +I0 +sa(dp1234 +g4 +I0 +sa(dp1235 +g4 +I0 +sa(dp1236 +g4 +I1 +sa(dp1237 +g4 +I0 +sa(dp1238 +g4 +I1 +sa(dp1239 +g4 +I0 +sa(dp1240 +g4 +I1 +sa(dp1241 +g4 +I1 +sa(dp1242 +g4 +I0 +sa(dp1243 +g4 +I1 +sa(dp1244 +g4 +I1 +sa(dp1245 +g4 +I0 +sa(dp1246 +g4 +I0 +sa(dp1247 +g4 +I0 +sa(dp1248 +g4 +I0 +sa(dp1249 +g4 +I0 +sa(dp1250 +g4 +I0 +sa(dp1251 +g4 +I0 +sa(dp1252 +g4 +I0 +sa(dp1253 +g4 +I0 +sa(dp1254 +g4 +I1 +sa(dp1255 +g4 +I0 +sa(dp1256 +g4 +I0 +sa(dp1257 +g4 +I0 +sa(dp1258 +g4 +I1 +sa(dp1259 +g4 +I1 +sa(dp1260 +g4 +I0 +sa(dp1261 +g4 +I1 +sa(dp1262 +g4 +I0 +sa(dp1263 +g4 +I0 +sa(dp1264 +g4 +I0 +sa(dp1265 +g4 +I0 +sa(dp1266 +g4 +I0 +sa(dp1267 +g4 +I1 +sa(dp1268 +g4 +I0 +sa(dp1269 +g4 +I0 +sa(dp1270 +g4 +I0 +sa(dp1271 +g4 +I0 +sa(dp1272 +g4 +I1 +sa(dp1273 +g4 +I1 +sa(dp1274 +g4 +I1 +sa(dp1275 +g4 +I0 +sa(dp1276 +g4 +I0 +sa(dp1277 +g4 +I0 +sa(dp1278 +g4 +I0 +sa(dp1279 +g4 +I1 +sa(dp1280 +g4 +I0 +sa(dp1281 +g4 +I0 +sa(dp1282 +g4 +I0 +sa(dp1283 +g4 +I0 +sa(dp1284 +g4 +I0 +sa(dp1285 +g4 +I1 +sa(dp1286 +g4 +I0 +sa(dp1287 +g4 +I0 +sa(dp1288 +g4 +I1 +sa(dp1289 +g4 +I0 +sa(dp1290 +g4 +I0 +sa(dp1291 +g4 +I0 +sa(dp1292 +g4 +I0 +sa(dp1293 +g4 +I0 +sa(dp1294 +g4 +I0 +sa(dp1295 +g4 +I0 +sa(dp1296 +g4 +I0 +sa(dp1297 +g4 +I1 +sa(dp1298 +g4 +I0 +sa(dp1299 +g4 +I1 +sa(dp1300 +g4 +I0 +sa(dp1301 +g4 +I0 +sa(dp1302 +g4 +I0 +sa(dp1303 +g4 +I1 +sa(dp1304 +g4 +I1 +sa(dp1305 +g4 +I0 +sa(dp1306 +g4 +I0 +sa(dp1307 +g4 +I0 +sa(dp1308 +g4 +I1 +sa(dp1309 +g4 +I0 +sa(dp1310 +g4 +I1 +sa(dp1311 +g4 +I0 +sa(dp1312 +g4 +I0 +sa(dp1313 +g4 +I0 +sa(dp1314 +g4 +I0 +sa(dp1315 +g4 +I1 +sa(dp1316 +g4 +I0 +sa(dp1317 +g4 +I0 +sa(dp1318 +g4 +I0 +sa(dp1319 +g4 +I0 +sa(dp1320 +g4 +I1 +sa(dp1321 +g4 +I0 +sa(dp1322 +g4 +I0 +sa(dp1323 +g4 +I0 +sa(dp1324 +g4 +I0 +sa(dp1325 +g4 +I1 +sa(dp1326 +g4 +I1 +sa(dp1327 +g4 +I0 +sa(dp1328 +g4 +I0 +sa(dp1329 +g4 +I0 +sa(dp1330 +g4 +I0 +sa(dp1331 +g4 +I0 +sa(dp1332 +g4 +I0 +sa(dp1333 +g4 +I0 +sa(dp1334 +g4 +I0 +sa(dp1335 +g4 +I0 +sa(dp1336 +g4 +I1 +sa(dp1337 +g4 +I0 +sa(dp1338 +g4 +I1 +sa(dp1339 +g4 +I0 +sa(dp1340 +g4 +I0 +sa(dp1341 +g4 +I0 +sa(dp1342 +g4 +I0 +sa(dp1343 +g4 +I1 +sa(dp1344 +g4 +I0 +sa(dp1345 +g4 +I0 +sa(dp1346 +g4 +I0 +sa(dp1347 +g4 +I0 +sa(dp1348 +g4 +I0 +sa(dp1349 +g4 +I1 +sa(dp1350 +g4 +I0 +sa(dp1351 +g4 +I0 +sa(dp1352 +g4 +I1 +sa(dp1353 +g4 +I1 +sa(dp1354 +g4 +I0 +sa(dp1355 +g4 +I1 +sa(dp1356 +g4 +I0 +sa(dp1357 +g4 +I0 +sa(dp1358 +g4 +I1 +sa(dp1359 +g4 +I0 +sa(dp1360 +g4 +I0 +sa(dp1361 +g4 +I0 +sa(dp1362 +g4 +I0 +sa(dp1363 +g4 +I0 +sa(dp1364 +g4 +I1 +sa(dp1365 +g4 +I0 +sa(dp1366 +g4 +I0 +sa(dp1367 +g4 +I0 +sa(dp1368 +g4 +I1 +sa(dp1369 +g4 +I0 +sa(dp1370 +g4 +I0 +sa(dp1371 +g4 +I0 +sa(dp1372 +g4 +I0 +sa(dp1373 +g4 +I0 +sa(dp1374 +g4 +I1 +sa(dp1375 +g4 +I0 +sa(dp1376 +g4 +I0 +sa(dp1377 +g4 +I0 +sa(dp1378 +g4 +I0 +sa(dp1379 +g4 +I1 +sa(dp1380 +g4 +I0 +sa(dp1381 +g4 +I0 +sa(dp1382 +g4 +I0 +sa(dp1383 +g4 +I0 +sa(dp1384 +g4 +I0 +sa(dp1385 +g4 +I1 +sa(dp1386 +g4 +I0 +sa(dp1387 +g4 +I1 +sa(dp1388 +g4 +I0 +sa(dp1389 +g4 +I0 +sa(dp1390 +g4 +I0 +sa(dp1391 +g4 +I0 +sa(dp1392 +g4 +I0 +sa(dp1393 +g4 +I0 +sa(dp1394 +g4 +I0 +sa(dp1395 +g4 +I0 +sa(dp1396 +g4 +I1 +sa(dp1397 +g4 +I0 +sa(dp1398 +g4 +I0 +sa(dp1399 +g4 +I1 +sa(dp1400 +g4 +I0 +sa(dp1401 +g4 +I1 +sa(dp1402 +g4 +I0 +sa(dp1403 +g4 +I0 +sa(dp1404 +g4 +I1 +sa(dp1405 +g4 +I1 +sa(dp1406 +g4 +I0 +sa(dp1407 +g4 +I0 +sa(dp1408 +g4 +I0 +sa(dp1409 +g4 +I1 +sa(dp1410 +g4 +I0 +sa(dp1411 +g4 +I0 +sa(dp1412 +g4 +I1 +sa(dp1413 +g4 +I0 +sa(dp1414 +g4 +I1 +sa(dp1415 +g4 +I1 +sa(dp1416 +g4 +I0 +sa(dp1417 +g4 +I1 +sa(dp1418 +g4 +I0 +sa(dp1419 +g4 +I0 +sa(dp1420 +g4 +I0 +sa(dp1421 +g4 +I0 +sa(dp1422 +g4 +I0 +sa(dp1423 +g4 +I1 +sa(dp1424 +g4 +I0 +sa(dp1425 +g4 +I0 +sa(dp1426 +g4 +I0 +sa(dp1427 +g4 +I0 +sa(dp1428 +g4 +I0 +sa(dp1429 +g4 +I1 +sa(dp1430 +g4 +I0 +sa(dp1431 +g4 +I0 +sa(dp1432 +g4 +I1 +sa(dp1433 +g4 +I1 +sa(dp1434 +g4 +I0 +sa(dp1435 +g4 +I0 +sa(dp1436 +g4 +I0 +sa(dp1437 +g4 +I1 +sa(dp1438 +g4 +I0 +sa(dp1439 +g4 +I0 +sa(dp1440 +g4 +I0 +sa(dp1441 +g4 +I0 +sa(dp1442 +g4 +I1 +sa(dp1443 +g4 +I0 +sa(dp1444 +g4 +I0 +sa(dp1445 +g4 +I1 +sa(dp1446 +g4 +I0 +sa(dp1447 +g4 +I0 +sa(dp1448 +g4 +I0 +sa(dp1449 +g4 +I1 +sa(dp1450 +g4 +I1 +sa(dp1451 +g4 +I0 +sa(dp1452 +g4 +I0 +sa(dp1453 +g4 +I0 +sa(dp1454 +g4 +I0 +sa(dp1455 +g4 +I0 +sa(dp1456 +g4 +I0 +sa(dp1457 +g4 +I0 +sa(dp1458 +g4 +I0 +sa(dp1459 +g4 +I0 +sa(dp1460 +g4 +I0 +sa(dp1461 +g4 +I0 +sa(dp1462 +g4 +I0 +sa(dp1463 +g4 +I0 +sa(dp1464 +g4 +I0 +sa(dp1465 +g4 +I0 +sa(dp1466 +g4 +I0 +sa(dp1467 +g4 +I0 +sa(dp1468 +g4 +I0 +sa(dp1469 +g4 +I0 +sa(dp1470 +g4 +I1 +sa(dp1471 +g4 +I0 +sa(dp1472 +g4 +I0 +sa(dp1473 +g4 +I0 +sa(dp1474 +g4 +I1 +sa(dp1475 +g4 +I0 +sa(dp1476 +g4 +I0 +sa(dp1477 +g4 +I0 +sa(dp1478 +g4 +I0 +sa(dp1479 +g4 +I1 +sa(dp1480 +g4 +I0 +sa(dp1481 +g4 +I1 +sa(dp1482 +g4 +I0 +sa(dp1483 +g4 +I0 +sa(dp1484 +g4 +I0 +sa(dp1485 +g4 +I0 +sa(dp1486 +g4 +I0 +sa(dp1487 +g4 +I0 +sa(dp1488 +g4 +I0 +sa(dp1489 +g4 +I0 +sa(dp1490 +g4 +I0 +sa(dp1491 +g4 +I0 +sa(dp1492 +g4 +I0 +sa(dp1493 +g4 +I1 +sa(dp1494 +g4 +I0 +sa(dp1495 +g4 +I0 +sa(dp1496 +g4 +I1 +sa(dp1497 +g4 +I1 +sa(dp1498 +g4 +I0 +sa(dp1499 +g4 +I0 +sa(dp1500 +g4 +I1 +sa(dp1501 +g4 +I0 +sa(dp1502 +g4 +I0 +sa(dp1503 +g4 +I0 +sa(dp1504 +g4 +I0 +sa(dp1505 +g4 +I0 +sa(dp1506 +g4 +I0 +sa(dp1507 +g4 +I0 +sa(dp1508 +g4 +I0 +sa(dp1509 +g4 +I0 +sa(dp1510 +g4 +I0 +sa(dp1511 +g4 +I0 +sa(dp1512 +g4 +I0 +sa(dp1513 +g4 +I0 +sa(dp1514 +g4 +I0 +sa(dp1515 +g4 +I1 +sa(dp1516 +g4 +I0 +sa(dp1517 +g4 +I0 +sa(dp1518 +g4 +I0 +sa(dp1519 +g4 +I0 +sa(dp1520 +g4 +I0 +sa(dp1521 +g4 +I0 +sa(dp1522 +g4 +I0 +sa(dp1523 +g4 +I0 +sa(dp1524 +g4 +I1 +sa(dp1525 +g4 +I0 +sa(dp1526 +g4 +I0 +sa(dp1527 +g4 +I1 +sa(dp1528 +g4 +I0 +sa(dp1529 +g4 +I0 +sa(dp1530 +g4 +I0 +sa(dp1531 +g4 +I1 +sa(dp1532 +g4 +I0 +sa(dp1533 +g4 +I0 +sa(dp1534 +g4 +I1 +sa(dp1535 +g4 +I0 +sa(dp1536 +g4 +I0 +sa(dp1537 +g4 +I1 +sa(dp1538 +g4 +I0 +sa(dp1539 +g4 +I0 +sa(dp1540 +g4 +I0 +sa(dp1541 +g4 +I0 +sa(dp1542 +g4 +I0 +sa(dp1543 +g4 +I0 +sa(dp1544 +g4 +I0 +sa(dp1545 +g4 +I0 +sa(dp1546 +g4 +I0 +sa(dp1547 +g4 +I0 +sa(dp1548 +g4 +I1 +sa(dp1549 +g4 +I1 +sa(dp1550 +g4 +I0 +sa(dp1551 +g4 +I0 +sa(dp1552 +g4 +I1 +sa(dp1553 +g4 +I0 +sa(dp1554 +g4 +I0 +sa(dp1555 +g4 +I1 +sa(dp1556 +g4 +I0 +sa(dp1557 +g4 +I0 +sa(dp1558 +g4 +I1 +sa(dp1559 +g4 +I0 +sa(dp1560 +g4 +I1 +sa(dp1561 +g4 +I0 +sa(dp1562 +g4 +I0 +sa(dp1563 +g4 +I0 +sa(dp1564 +g4 +I1 +sa(dp1565 +g4 +I0 +sa(dp1566 +g4 +I0 +sa(dp1567 +g4 +I0 +sa(dp1568 +g4 +I0 +sa(dp1569 +g4 +I0 +sa(dp1570 +g4 +I0 +sa(dp1571 +g4 +I0 +sa(dp1572 +g4 +I0 +sa(dp1573 +g4 +I0 +sa(dp1574 +g4 +I0 +sa(dp1575 +g4 +I0 +sa(dp1576 +g4 +I0 +sa(dp1577 +g4 +I0 +sa(dp1578 +g4 +I1 +sa(dp1579 +g4 +I0 +sa(dp1580 +g4 +I0 +sa(dp1581 +g4 +I0 +sa(dp1582 +g4 +I0 +sa(dp1583 +g4 +I0 +sa(dp1584 +g4 +I0 +sa(dp1585 +g4 +I1 +sa(dp1586 +g4 +I0 +sa(dp1587 +g4 +I1 +sa(dp1588 +g4 +I0 +sa(dp1589 +g4 +I1 +sa(dp1590 +g4 +I0 +sa(dp1591 +g4 +I0 +sa(dp1592 +g4 +I1 +sa(dp1593 +g4 +I0 +sa(dp1594 +g4 +I0 +sa(dp1595 +g4 +I0 +sa(dp1596 +g4 +I1 +sa(dp1597 +g4 +I0 +sa(dp1598 +g4 +I0 +sa(dp1599 +g4 +I0 +sa(dp1600 +g4 +I1 +sa(dp1601 +g4 +I0 +sa(dp1602 +g4 +I0 +sa(dp1603 +g4 +I0 +sa(dp1604 +g4 +I1 +sa(dp1605 +g4 +I0 +sa(dp1606 +g4 +I0 +sa(dp1607 +g4 +I1 +sa(dp1608 +g4 +I0 +sa(dp1609 +g4 +I0 +sa(dp1610 +g4 +I0 +sa(dp1611 +g4 +I0 +sa(dp1612 +g4 +I0 +sa(dp1613 +g4 +I0 +sa(dp1614 +g4 +I0 +sa(dp1615 +g4 +I0 +sa(dp1616 +g4 +I1 +sa(dp1617 +g4 +I0 +sa(dp1618 +g4 +I1 +sa(dp1619 +g4 +I0 +sa(dp1620 +g4 +I0 +sa(dp1621 +g4 +I0 +sa(dp1622 +g4 +I0 +sa(dp1623 +g4 +I0 +sa(dp1624 +g4 +I1 +sa(dp1625 +g4 +I0 +sa(dp1626 +g4 +I1 +sa(dp1627 +g4 +I0 +sa(dp1628 +g4 +I1 +sa(dp1629 +g4 +I1 +sa(dp1630 +g4 +I0 +sa(dp1631 +g4 +I1 +sa(dp1632 +g4 +I1 +sa(dp1633 +g4 +I0 +sa(dp1634 +g4 +I0 +sa(dp1635 +g4 +I0 +sa(dp1636 +g4 +I0 +sa(dp1637 +g4 +I0 +sa(dp1638 +g4 +I0 +sa(dp1639 +g4 +I1 +sa(dp1640 +g4 +I1 +sa(dp1641 +g4 +I1 +sa(dp1642 +g4 +I0 +sa(dp1643 +g4 +I0 +sa(dp1644 +g4 +I1 +sa(dp1645 +g4 +I0 +sa(dp1646 +g4 +I0 +sa(dp1647 +g4 +I1 +sa(dp1648 +g4 +I1 +sa(dp1649 +g4 +I0 +sa(dp1650 +g4 +I0 +sa(dp1651 +g4 +I1 +sa(dp1652 +g4 +I1 +sa(dp1653 +g4 +I1 +sa(dp1654 +g4 +I0 +sa(dp1655 +g4 +I0 +sa(dp1656 +g4 +I1 +sa(dp1657 +g4 +I1 +sa(dp1658 +g4 +I0 +sa(dp1659 +g4 +I0 +sa(dp1660 +g4 +I0 +sa(dp1661 +g4 +I0 +sa(dp1662 +g4 +I0 +sa(dp1663 +g4 +I1 +sa(dp1664 +g4 +I0 +sa(dp1665 +g4 +I0 +sa(dp1666 +g4 +I0 +sa(dp1667 +g4 +I1 +sa(dp1668 +g4 +I0 +sa(dp1669 +g4 +I1 +sa(dp1670 +g4 +I1 +sa(dp1671 +g4 +I0 +sa(dp1672 +g4 +I1 +sa(dp1673 +g4 +I0 +sa(dp1674 +g4 +I1 +sa(dp1675 +g4 +I0 +sa(dp1676 +g4 +I0 +sa(dp1677 +g4 +I1 +sa(dp1678 +g4 +I0 +sa(dp1679 +g4 +I0 +sa(dp1680 +g4 +I0 +sa(dp1681 +g4 +I0 +sa(dp1682 +g4 +I0 +sa(dp1683 +g4 +I0 +sa(dp1684 +g4 +I1 +sa(dp1685 +g4 +I1 +sa(dp1686 +g4 +I0 +sa(dp1687 +g4 +I0 +sa(dp1688 +g4 +I1 +sa(dp1689 +g4 +I0 +sa(dp1690 +g4 +I1 +sa(dp1691 +g4 +I0 +sa(dp1692 +g4 +I0 +sa(dp1693 +g4 +I0 +sa(dp1694 +g4 +I0 +sa(dp1695 +g4 +I0 +sa(dp1696 +g4 +I0 +sa(dp1697 +g4 +I0 +sa(dp1698 +g4 +I0 +sa(dp1699 +g4 +I0 +sa(dp1700 +g4 +I0 +sa(dp1701 +g4 +I1 +sa(dp1702 +g4 +I0 +sa(dp1703 +g4 +I0 +sa(dp1704 +g4 +I0 +sa(dp1705 +g4 +I0 +sa(dp1706 +g4 +I0 +sa(dp1707 +g4 +I0 +sa(dp1708 +g4 +I0 +sa(dp1709 +g4 +I0 +sa(dp1710 +g4 +I1 +sa(dp1711 +g4 +I1 +sa(dp1712 +g4 +I0 +sa(dp1713 +g4 +I0 +sa(dp1714 +g4 +I0 +sa(dp1715 +g4 +I0 +sa(dp1716 +g4 +I0 +sa(dp1717 +g4 +I0 +sa(dp1718 +g4 +I0 +sa(dp1719 +g4 +I1 +sa(dp1720 +g4 +I1 +sa(dp1721 +g4 +I0 +sa(dp1722 +g4 +I1 +sa(dp1723 +g4 +I0 +sa(dp1724 +g4 +I0 +sa(dp1725 +g4 +I0 +sa(dp1726 +g4 +I0 +sa(dp1727 +g4 +I0 +sa(dp1728 +g4 +I0 +sa(dp1729 +g4 +I1 +sa(dp1730 +g4 +I0 +sa(dp1731 +g4 +I1 +sa(dp1732 +g4 +I1 +sa(dp1733 +g4 +I0 +sa(dp1734 +g4 +I1 +sa(dp1735 +g4 +I0 +sa(dp1736 +g4 +I0 +sa(dp1737 +g4 +I1 +sa(dp1738 +g4 +I0 +sa(dp1739 +g4 +I1 +sa(dp1740 +g4 +I0 +sa(dp1741 +g4 +I0 +sa(dp1742 +g4 +I0 +sa(dp1743 +g4 +I1 +sa(dp1744 +g4 +I1 +sa(dp1745 +g4 +I0 +sa(dp1746 +g4 +I0 +sa(dp1747 +g4 +I1 +sa(dp1748 +g4 +I0 +sa(dp1749 +g4 +I0 +sa(dp1750 +g4 +I0 +sa(dp1751 +g4 +I0 +sa(dp1752 +g4 +I0 +sa(dp1753 +g4 +I0 +sa(dp1754 +g4 +I1 +sa(dp1755 +g4 +I0 +sa(dp1756 +g4 +I1 +sa(dp1757 +g4 +I0 +sa(dp1758 +g4 +I1 +sa(dp1759 +g4 +I0 +sa(dp1760 +g4 +I1 +sa(dp1761 +g4 +I0 +sa(dp1762 +g4 +I0 +sa(dp1763 +g4 +I0 +sa(dp1764 +g4 +I0 +sa(dp1765 +g4 +I0 +sa(dp1766 +g4 +I1 +sa(dp1767 +g4 +I1 +sa(dp1768 +g4 +I0 +sa(dp1769 +g4 +I1 +sa(dp1770 +g4 +I0 +sa(dp1771 +g4 +I0 +sa(dp1772 +g4 +I0 +sa(dp1773 +g4 +I0 +sa(dp1774 +g4 +I0 +sa(dp1775 +g4 +I0 +sa(dp1776 +g4 +I0 +sa(dp1777 +g4 +I0 +sa(dp1778 +g4 +I0 +sa(dp1779 +g4 +I0 +sa(dp1780 +g4 +I0 +sa(dp1781 +g4 +I0 +sa(dp1782 +g4 +I0 +sa(dp1783 +g4 +I0 +sa(dp1784 +g4 +I0 +sa(dp1785 +g4 +I0 +sa(dp1786 +g4 +I0 +sa(dp1787 +g4 +I0 +sa(dp1788 +g4 +I0 +sa(dp1789 +g4 +I0 +sa(dp1790 +g4 +I0 +sa(dp1791 +g4 +I0 +sa(dp1792 +g4 +I0 +sa(dp1793 +g4 +I0 +sa(dp1794 +g4 +I0 +sa(dp1795 +g4 +I0 +sa(dp1796 +g4 +I0 +sa(dp1797 +g4 +I0 +sa(dp1798 +g4 +I0 +sa(dp1799 +g4 +I0 +sa(dp1800 +g4 +I1 +sa(dp1801 +g4 +I0 +sa(dp1802 +g4 +I1 +sa(dp1803 +g4 +I0 +sa(dp1804 +g4 +I0 +sa(dp1805 +g4 +I0 +sa(dp1806 +g4 +I0 +sa(dp1807 +g4 +I1 +sa(dp1808 +g4 +I1 +sa(dp1809 +g4 +I0 +sa(dp1810 +g4 +I0 +sa(dp1811 +g4 +I0 +sa(dp1812 +g4 +I0 +sa(dp1813 +g4 +I0 +sa(dp1814 +g4 +I0 +sa(dp1815 +g4 +I0 +sa(dp1816 +g4 +I0 +sa(dp1817 +g4 +I0 +sa(dp1818 +g4 +I1 +sa(dp1819 +g4 +I0 +sa(dp1820 +g4 +I0 +sa(dp1821 +g4 +I0 +sa(dp1822 +g4 +I1 +sa(dp1823 +g4 +I0 +sa(dp1824 +g4 +I0 +sa(dp1825 +g4 +I0 +sa(dp1826 +g4 +I0 +sa(dp1827 +g4 +I0 +sa(dp1828 +g4 +I1 +sa(dp1829 +g4 +I0 +sa(dp1830 +g4 +I0 +sa(dp1831 +g4 +I0 +sa(dp1832 +g4 +I0 +sa(dp1833 +g4 +I0 +sa(dp1834 +g4 +I1 +sa(dp1835 +g4 +I0 +sa(dp1836 +g4 +I1 +sa(dp1837 +g4 +I0 +sa(dp1838 +g4 +I0 +sa(dp1839 +g4 +I0 +sa(dp1840 +g4 +I0 +sa(dp1841 +g4 +I1 +sa(dp1842 +g4 +I0 +sa(dp1843 +g4 +I0 +sa(dp1844 +g4 +I1 +sa(dp1845 +g4 +I0 +sa(dp1846 +g4 +I1 +sa(dp1847 +g4 +I0 +sa(dp1848 +g4 +I0 +sa(dp1849 +g4 +I1 +sa(dp1850 +g4 +I1 +sa(dp1851 +g4 +I0 +sa(dp1852 +g4 +I0 +sa(dp1853 +g4 +I0 +sa(dp1854 +g4 +I0 +sa(dp1855 +g4 +I0 +sa(dp1856 +g4 +I0 +sa(dp1857 +g4 +I0 +sa(dp1858 +g4 +I0 +sa(dp1859 +g4 +I1 +sa(dp1860 +g4 +I1 +sa(dp1861 +g4 +I1 +sa(dp1862 +g4 +I0 +sa(dp1863 +g4 +I1 +sa(dp1864 +g4 +I1 +sa(dp1865 +g4 +I0 +sa(dp1866 +g4 +I0 +sa(dp1867 +g4 +I0 +sa(dp1868 +g4 +I0 +sa(dp1869 +g4 +I0 +sa(dp1870 +g4 +I0 +sa(dp1871 +g4 +I1 +sa(dp1872 +g4 +I0 +sa(dp1873 +g4 +I0 +sa(dp1874 +g4 +I0 +sa(dp1875 +g4 +I1 +sa(dp1876 +g4 +I1 +sa(dp1877 +g4 +I0 +sa(dp1878 +g4 +I1 +sa(dp1879 +g4 +I0 +sa(dp1880 +g4 +I0 +sa(dp1881 +g4 +I0 +sa(dp1882 +g4 +I1 +sa(dp1883 +g4 +I1 +sa(dp1884 +g4 +I0 +sa(dp1885 +g4 +I0 +sa(dp1886 +g4 +I0 +sa(dp1887 +g4 +I1 +sa(dp1888 +g4 +I0 +sa(dp1889 +g4 +I1 +sa(dp1890 +g4 +I0 +sa(dp1891 +g4 +I0 +sa(dp1892 +g4 +I0 +sa(dp1893 +g4 +I0 +sa(dp1894 +g4 +I0 +sa(dp1895 +g4 +I1 +sa(dp1896 +g4 +I1 +sa(dp1897 +g4 +I0 +sa(dp1898 +g4 +I0 +sa(dp1899 +g4 +I0 +sa(dp1900 +g4 +I0 +sa(dp1901 +g4 +I0 +sa(dp1902 +g4 +I0 +sa(dp1903 +g4 +I0 +sa(dp1904 +g4 +I0 +sa(dp1905 +g4 +I1 +sa(dp1906 +g4 +I0 +sa(dp1907 +g4 +I0 +sa(dp1908 +g4 +I0 +sa(dp1909 +g4 +I0 +sa(dp1910 +g4 +I0 +sa(dp1911 +g4 +I1 +sa(dp1912 +g4 +I0 +sa(dp1913 +g4 +I0 +sa(dp1914 +g4 +I0 +sa(dp1915 +g4 +I1 +sa(dp1916 +g4 +I0 +sa(dp1917 +g4 +I0 +sa(dp1918 +g4 +I0 +sa(dp1919 +g4 +I0 +sa(dp1920 +g4 +I1 +sa(dp1921 +g4 +I1 +sa(dp1922 +g4 +I0 +sa(dp1923 +g4 +I1 +sa(dp1924 +g4 +I0 +sa(dp1925 +g4 +I0 +sa(dp1926 +g4 +I1 +sa(dp1927 +g4 +I0 +sa(dp1928 +g4 +I0 +sa(dp1929 +g4 +I0 +sa(dp1930 +g4 +I0 +sa(dp1931 +g4 +I0 +sa(dp1932 +g4 +I0 +sa(dp1933 +g4 +I0 +sa(dp1934 +g4 +I1 +sa(dp1935 +g4 +I0 +sa(dp1936 +g4 +I0 +sa(dp1937 +g4 +I0 +sa(dp1938 +g4 +I0 +sa(dp1939 +g4 +I1 +sa(dp1940 +g4 +I0 +sa(dp1941 +g4 +I0 +sa(dp1942 +g4 +I0 +sa(dp1943 +g4 +I0 +sa(dp1944 +g4 +I0 +sa(dp1945 +g4 +I0 +sa(dp1946 +g4 +I0 +sa(dp1947 +g4 +I0 +sa(dp1948 +g4 +I0 +sa(dp1949 +g4 +I1 +sa(dp1950 +g4 +I1 +sa(dp1951 +g4 +I0 +sa(dp1952 +g4 +I0 +sa(dp1953 +g4 +I0 +sa(dp1954 +g4 +I0 +sa(dp1955 +g4 +I1 +sa(dp1956 +g4 +I0 +sa(dp1957 +g4 +I1 +sa(dp1958 +g4 +I0 +sa(dp1959 +g4 +I0 +sa(dp1960 +g4 +I1 +sa(dp1961 +g4 +I0 +sa(dp1962 +g4 +I0 +sa(dp1963 +g4 +I1 +sa(dp1964 +g4 +I0 +sa(dp1965 +g4 +I0 +sa(dp1966 +g4 +I1 +sa(dp1967 +g4 +I0 +sa(dp1968 +g4 +I0 +sa(dp1969 +g4 +I0 +sa(dp1970 +g4 +I0 +sa(dp1971 +g4 +I1 +sa(dp1972 +g4 +I0 +sa(dp1973 +g4 +I0 +sa(dp1974 +g4 +I0 +sa(dp1975 +g4 +I1 +sa(dp1976 +g4 +I0 +sa(dp1977 +g4 +I0 +sa(dp1978 +g4 +I1 +sa(dp1979 +g4 +I0 +sa(dp1980 +g4 +I0 +sa(dp1981 +g4 +I0 +sa(dp1982 +g4 +I0 +sa(dp1983 +g4 +I1 +sa(dp1984 +g4 +I0 +sa(dp1985 +g4 +I0 +sa(dp1986 +g4 +I1 +sa(dp1987 +g4 +I0 +sa(dp1988 +g4 +I0 +sa(dp1989 +g4 +I0 +sa(dp1990 +g4 +I0 +sa(dp1991 +g4 +I0 +sa(dp1992 +g4 +I0 +sa(dp1993 +g4 +I0 +sa(dp1994 +g4 +I1 +sa(dp1995 +g4 +I0 +sa(dp1996 +g4 +I1 +sa(dp1997 +g4 +I1 +sa(dp1998 +g4 +I0 +sa(dp1999 +g4 +I0 +sa(dp2000 +g4 +I0 +sa(dp2001 +g4 +I0 +sa(dp2002 +g4 +I0 +sa(dp2003 +g4 +I1 +sa(dp2004 +g4 +I0 +sa(dp2005 +g4 +I0 +sa(dp2006 +g4 +I0 +sa(dp2007 +g4 +I0 +sa(dp2008 +g4 +I0 +sa(dp2009 +g4 +I0 +sa(dp2010 +g4 +I0 +sa(dp2011 +g4 +I0 +sa(dp2012 +g4 +I0 +sa(dp2013 +g4 +I0 +sa(dp2014 +g4 +I0 +sa(dp2015 +g4 +I1 +sa(dp2016 +g4 +I0 +sa(dp2017 +g4 +I0 +sa(dp2018 +g4 +I0 +sa(dp2019 +g4 +I1 +sa(dp2020 +g4 +I0 +sa(dp2021 +g4 +I1 +sa(dp2022 +g4 +I0 +sa(dp2023 +g4 +I0 +sa(dp2024 +g4 +I0 +sa(dp2025 +g4 +I1 +sa(dp2026 +g4 +I1 +sa(dp2027 +g4 +I0 +sa(dp2028 +g4 +I0 +sa(dp2029 +g4 +I0 +sa(dp2030 +g4 +I0 +sa(dp2031 +g4 +I0 +sa(dp2032 +g4 +I0 +sa(dp2033 +g4 +I1 +sa(dp2034 +g4 +I0 +sa(dp2035 +g4 +I0 +sa(dp2036 +g4 +I0 +sa(dp2037 +g4 +I0 +sa(dp2038 +g4 +I0 +sa(dp2039 +g4 +I0 +sa(dp2040 +g4 +I0 +sa(dp2041 +g4 +I0 +sa(dp2042 +g4 +I1 +sa(dp2043 +g4 +I0 +sa(dp2044 +g4 +I1 +sa(dp2045 +g4 +I1 +sa(dp2046 +g4 +I0 +sa(dp2047 +g4 +I0 +sa(dp2048 +g4 +I1 +sa(dp2049 +g4 +I0 +sa(dp2050 +g4 +I0 +sa(dp2051 +g4 +I0 +sa(dp2052 +g4 +I0 +sa(dp2053 +g4 +I1 +sa(dp2054 +g4 +I0 +sa(dp2055 +g4 +I0 +sa(dp2056 +g4 +I0 +sa(dp2057 +g4 +I0 +sa(dp2058 +g4 +I0 +sa(dp2059 +g4 +I1 +sa(dp2060 +g4 +I1 +sa(dp2061 +g4 +I0 +sa(dp2062 +g4 +I0 +sa(dp2063 +g4 +I0 +sa(dp2064 +g4 +I0 +sa(dp2065 +g4 +I0 +sa(dp2066 +g4 +I0 +sa(dp2067 +g4 +I0 +sa(dp2068 +g4 +I1 +sa(dp2069 +g4 +I0 +sa(dp2070 +g4 +I0 +sa(dp2071 +g4 +I0 +sa(dp2072 +g4 +I0 +sa(dp2073 +g4 +I0 +sa(dp2074 +g4 +I0 +sa(dp2075 +g4 +I0 +sa(dp2076 +g4 +I0 +sa(dp2077 +g4 +I0 +sa(dp2078 +g4 +I0 +sa(dp2079 +g4 +I0 +sa(dp2080 +g4 +I1 +sa(dp2081 +g4 +I0 +sa(dp2082 +g4 +I0 +sa(dp2083 +g4 +I0 +sa(dp2084 +g4 +I0 +sa(dp2085 +g4 +I0 +sa(dp2086 +g4 +I0 +sa(dp2087 +g4 +I1 +sa(dp2088 +g4 +I0 +sa(dp2089 +g4 +I1 +sa(dp2090 +g4 +I1 +sa(dp2091 +g4 +I0 +sa(dp2092 +g4 +I0 +sa(dp2093 +g4 +I1 +sa(dp2094 +g4 +I0 +sa(dp2095 +g4 +I1 +sa(dp2096 +g4 +I0 +sa(dp2097 +g4 +I0 +sa(dp2098 +g4 +I0 +sa(dp2099 +g4 +I0 +sa(dp2100 +g4 +I0 +sa(dp2101 +g4 +I1 +sa(dp2102 +g4 +I1 +sa(dp2103 +g4 +I0 +sa(dp2104 +g4 +I0 +sa(dp2105 +g4 +I1 +sa(dp2106 +g4 +I1 +sa(dp2107 +g4 +I0 +sa(dp2108 +g4 +I0 +sa(dp2109 +g4 +I1 +sa(dp2110 +g4 +I1 +sa(dp2111 +g4 +I0 +sa(dp2112 +g4 +I0 +sa(dp2113 +g4 +I0 +sa(dp2114 +g4 +I0 +sa(dp2115 +g4 +I1 +sa(dp2116 +g4 +I0 +sa(dp2117 +g4 +I0 +sa(dp2118 +g4 +I0 +sa(dp2119 +g4 +I0 +sa(dp2120 +g4 +I1 +sa(dp2121 +g4 +I0 +sa(dp2122 +g4 +I0 +sa(dp2123 +g4 +I1 +sa(dp2124 +g4 +I0 +sa(dp2125 +g4 +I1 +sa(dp2126 +g4 +I1 +sa(dp2127 +g4 +I0 +sa(dp2128 +g4 +I1 +sa(dp2129 +g4 +I0 +sa(dp2130 +g4 +I0 +sa(dp2131 +g4 +I0 +sa(dp2132 +g4 +I1 +sa(dp2133 +g4 +I0 +sa(dp2134 +g4 +I0 +sa(dp2135 +g4 +I1 +sa(dp2136 +g4 +I1 +sa(dp2137 +g4 +I0 +sa(dp2138 +g4 +I0 +sa(dp2139 +g4 +I1 +sa(dp2140 +g4 +I0 +sa(dp2141 +g4 +I0 +sa(dp2142 +g4 +I0 +sa(dp2143 +g4 +I1 +sa(dp2144 +g4 +I0 +sa(dp2145 +g4 +I1 +sa(dp2146 +g4 +I1 +sa(dp2147 +g4 +I0 +sa(dp2148 +g4 +I1 +sa(dp2149 +g4 +I1 +sa(dp2150 +g4 +I1 +sa(dp2151 +g4 +I0 +sa(dp2152 +g4 +I0 +sa(dp2153 +g4 +I0 +sa(dp2154 +g4 +I0 +sa(dp2155 +g4 +I0 +sa(dp2156 +g4 +I0 +sa(dp2157 +g4 +I1 +sa(dp2158 +g4 +I0 +sa(dp2159 +g4 +I0 +sa(dp2160 +g4 +I1 +sa(dp2161 +g4 +I1 +sa(dp2162 +g4 +I0 +sa(dp2163 +g4 +I0 +sa(dp2164 +g4 +I0 +sa(dp2165 +g4 +I0 +sa(dp2166 +g4 +I0 +sa(dp2167 +g4 +I0 +sa(dp2168 +g4 +I0 +sa(dp2169 +g4 +I0 +sa(dp2170 +g4 +I1 +sa(dp2171 +g4 +I0 +sa(dp2172 +g4 +I1 +sa(dp2173 +g4 +I0 +sa(dp2174 +g4 +I1 +sa(dp2175 +g4 +I0 +sa(dp2176 +g4 +I0 +sa(dp2177 +g4 +I0 +sa(dp2178 +g4 +I1 +sa(dp2179 +g4 +I0 +sa(dp2180 +g4 +I1 +sa(dp2181 +g4 +I1 +sa(dp2182 +g4 +I0 +sa(dp2183 +g4 +I0 +sa(dp2184 +g4 +I1 +sa(dp2185 +g4 +I0 +sa(dp2186 +g4 +I0 +sa(dp2187 +g4 +I0 +sa(dp2188 +g4 +I1 +sa(dp2189 +g4 +I0 +sa(dp2190 +g4 +I0 +sa(dp2191 +g4 +I0 +sa(dp2192 +g4 +I1 +sa(dp2193 +g4 +I1 +sa(dp2194 +g4 +I0 +sa(dp2195 +g4 +I0 +sa(dp2196 +g4 +I0 +sa(dp2197 +g4 +I0 +sa(dp2198 +g4 +I0 +sa(dp2199 +g4 +I1 +sa(dp2200 +g4 +I0 +sa(dp2201 +g4 +I1 +sa(dp2202 +g4 +I0 +sa(dp2203 +g4 +I0 +sa(dp2204 +g4 +I0 +sa(dp2205 +g4 +I0 +sa(dp2206 +g4 +I1 +sa(dp2207 +g4 +I0 +sa(dp2208 +g4 +I1 +sa(dp2209 +g4 +I0 +sa(dp2210 +g4 +I0 +sa(dp2211 +g4 +I0 +sa(dp2212 +g4 +I1 +sa(dp2213 +g4 +I1 +sa(dp2214 +g4 +I0 +sa(dp2215 +g4 +I0 +sa(dp2216 +g4 +I0 +sa(dp2217 +g4 +I0 +sa(dp2218 +g4 +I1 +sa(dp2219 +g4 +I0 +sa(dp2220 +g4 +I0 +sa(dp2221 +g4 +I0 +sa(dp2222 +g4 +I0 +sa(dp2223 +g4 +I0 +sa(dp2224 +g4 +I0 +sa(dp2225 +g4 +I0 +sa(dp2226 +g4 +I1 +sa(dp2227 +g4 +I0 +sa(dp2228 +g4 +I0 +sa(dp2229 +g4 +I1 +sa(dp2230 +g4 +I0 +sa(dp2231 +g4 +I1 +sa(dp2232 +g4 +I0 +sa(dp2233 +g4 +I1 +sa(dp2234 +g4 +I1 +sa(dp2235 +g4 +I0 +sa(dp2236 +g4 +I0 +sa(dp2237 +g4 +I0 +sa(dp2238 +g4 +I0 +sa(dp2239 +g4 +I0 +sa(dp2240 +g4 +I1 +sa(dp2241 +g4 +I1 +sa(dp2242 +g4 +I1 +sa(dp2243 +g4 +I0 +sa(dp2244 +g4 +I0 +sa(dp2245 +g4 +I1 +sa(dp2246 +g4 +I0 +sa(dp2247 +g4 +I0 +sa(dp2248 +g4 +I0 +sa(dp2249 +g4 +I1 +sa(dp2250 +g4 +I1 +sa(dp2251 +g4 +I0 +sa(dp2252 +g4 +I0 +sa(dp2253 +g4 +I0 +sa(dp2254 +g4 +I0 +sa(dp2255 +g4 +I0 +sa(dp2256 +g4 +I0 +sa(dp2257 +g4 +I0 +sa(dp2258 +g4 +I0 +sa(dp2259 +g4 +I1 +sa(dp2260 +g4 +I0 +sa(dp2261 +g4 +I0 +sa(dp2262 +g4 +I0 +sa(dp2263 +g4 +I0 +sa(dp2264 +g4 +I1 +sa(dp2265 +g4 +I0 +sa(dp2266 +g4 +I0 +sa(dp2267 +g4 +I0 +sa(dp2268 +g4 +I0 +sa(dp2269 +g4 +I0 +sa(dp2270 +g4 +I0 +sa(dp2271 +g4 +I1 +sa(dp2272 +g4 +I1 +sa(dp2273 +g4 +I0 +sa(dp2274 +g4 +I1 +sa(dp2275 +g4 +I0 +sa(dp2276 +g4 +I0 +sa(dp2277 +g4 +I0 +sa(dp2278 +g4 +I0 +sa(dp2279 +g4 +I0 +sa(dp2280 +g4 +I0 +sa(dp2281 +g4 +I0 +sa(dp2282 +g4 +I0 +sa(dp2283 +g4 +I1 +sa(dp2284 +g4 +I0 +sa(dp2285 +g4 +I0 +sa(dp2286 +g4 +I0 +sa(dp2287 +g4 +I0 +sa(dp2288 +g4 +I0 +sa(dp2289 +g4 +I0 +sa(dp2290 +g4 +I1 +sa(dp2291 +g4 +I0 +sa(dp2292 +g4 +I0 +sa(dp2293 +g4 +I1 +sa(dp2294 +g4 +I0 +sa(dp2295 +g4 +I0 +sa(dp2296 +g4 +I0 +sa(dp2297 +g4 +I1 +sa(dp2298 +g4 +I1 +sa(dp2299 +g4 +I0 +sa(dp2300 +g4 +I1 +sa(dp2301 +g4 +I0 +sa(dp2302 +g4 +I0 +sa(dp2303 +g4 +I1 +sa(dp2304 +g4 +I0 +sa(dp2305 +g4 +I1 +sa(dp2306 +g4 +I0 +sa(dp2307 +g4 +I0 +sa(dp2308 +g4 +I0 +sa(dp2309 +g4 +I0 +sa(dp2310 +g4 +I0 +sa(dp2311 +g4 +I0 +sa(dp2312 +g4 +I1 +sa(dp2313 +g4 +I0 +sa(dp2314 +g4 +I1 +sa(dp2315 +g4 +I0 +sa(dp2316 +g4 +I0 +sa(dp2317 +g4 +I1 +sa(dp2318 +g4 +I0 +sa(dp2319 +g4 +I0 +sa(dp2320 +g4 +I1 +sa(dp2321 +g4 +I0 +sa(dp2322 +g4 +I0 +sa(dp2323 +g4 +I1 +sa(dp2324 +g4 +I0 +sa(dp2325 +g4 +I0 +sa(dp2326 +g4 +I0 +sa(dp2327 +g4 +I0 +sa(dp2328 +g4 +I0 +sa(dp2329 +g4 +I0 +sa(dp2330 +g4 +I1 +sa(dp2331 +g4 +I0 +sa(dp2332 +g4 +I0 +sa(dp2333 +g4 +I0 +sa(dp2334 +g4 +I0 +sa(dp2335 +g4 +I0 +sa(dp2336 +g4 +I0 +sa(dp2337 +g4 +I0 +sa(dp2338 +g4 +I0 +sa(dp2339 +g4 +I0 +sa(dp2340 +g4 +I1 +sa(dp2341 +g4 +I1 +sa(dp2342 +g4 +I0 +sa(dp2343 +g4 +I0 +sa(dp2344 +g4 +I0 +sa(dp2345 +g4 +I1 +sa(dp2346 +g4 +I0 +sa(dp2347 +g4 +I0 +sa(dp2348 +g4 +I0 +sa(dp2349 +g4 +I0 +sa(dp2350 +g4 +I1 +sa(dp2351 +g4 +I0 +sa(dp2352 +g4 +I0 +sa(dp2353 +g4 +I0 +sa(dp2354 +g4 +I1 +sa(dp2355 +g4 +I0 +sa(dp2356 +g4 +I0 +sa(dp2357 +g4 +I0 +sa(dp2358 +g4 +I1 +sa(dp2359 +g4 +I0 +sa(dp2360 +g4 +I0 +sa(dp2361 +g4 +I0 +sa(dp2362 +g4 +I0 +sa(dp2363 +g4 +I0 +sa(dp2364 +g4 +I1 +sa(dp2365 +g4 +I1 +sa(dp2366 +g4 +I0 +sa(dp2367 +g4 +I0 +sa(dp2368 +g4 +I0 +sa(dp2369 +g4 +I0 +sa(dp2370 +g4 +I0 +sa(dp2371 +g4 +I0 +sa(dp2372 +g4 +I1 +sa(dp2373 +g4 +I0 +sa(dp2374 +g4 +I1 +sa(dp2375 +g4 +I1 +sa(dp2376 +g4 +I0 +sa(dp2377 +g4 +I1 +sa(dp2378 +g4 +I0 +sa(dp2379 +g4 +I0 +sa(dp2380 +g4 +I0 +sa(dp2381 +g4 +I1 +sa(dp2382 +g4 +I0 +sa(dp2383 +g4 +I0 +sa(dp2384 +g4 +I0 +sa(dp2385 +g4 +I1 +sa(dp2386 +g4 +I0 +sa(dp2387 +g4 +I0 +sa(dp2388 +g4 +I1 +sa(dp2389 +g4 +I0 +sa(dp2390 +g4 +I1 +sa(dp2391 +g4 +I0 +sa(dp2392 +g4 +I0 +sa(dp2393 +g4 +I1 +sa(dp2394 +g4 +I0 +sa(dp2395 +g4 +I1 +sa(dp2396 +g4 +I0 +sa(dp2397 +g4 +I0 +sa(dp2398 +g4 +I1 +sa(dp2399 +g4 +I0 +sa(dp2400 +g4 +I0 +sa(dp2401 +g4 +I1 +sa(dp2402 +g4 +I0 +sa(dp2403 +g4 +I1 +sa(dp2404 +g4 +I0 +sa(dp2405 +g4 +I1 +sa(dp2406 +g4 +I1 +sa(dp2407 +g4 +I0 +sa(dp2408 +g4 +I0 +sa(dp2409 +g4 +I0 +sa(dp2410 +g4 +I1 +sa(dp2411 +g4 +I0 +sa(dp2412 +g4 +I0 +sa(dp2413 +g4 +I0 +sa(dp2414 +g4 +I0 +sa(dp2415 +g4 +I1 +sa(dp2416 +g4 +I1 +sa(dp2417 +g4 +I0 +sa(dp2418 +g4 +I1 +sa(dp2419 +g4 +I0 +sa(dp2420 +g4 +I1 +sa(dp2421 +g4 +I1 +sa(dp2422 +g4 +I0 +sa(dp2423 +g4 +I1 +sa(dp2424 +g4 +I0 +sa(dp2425 +g4 +I0 +sa(dp2426 +g4 +I0 +sa(dp2427 +g4 +I1 +sa(dp2428 +g4 +I1 +sa(dp2429 +g4 +I1 +sa(dp2430 +g4 +I0 +sa(dp2431 +g4 +I0 +sa(dp2432 +g4 +I0 +sa(dp2433 +g4 +I0 +sa(dp2434 +g4 +I0 +sa(dp2435 +g4 +I0 +sa(dp2436 +g4 +I0 +sa(dp2437 +g4 +I0 +sa(dp2438 +g4 +I0 +sa(dp2439 +g4 +I0 +sa(dp2440 +g4 +I1 +sa(dp2441 +g4 +I0 +sa(dp2442 +g4 +I0 +sa(dp2443 +g4 +I0 +sa(dp2444 +g4 +I1 +sa(dp2445 +g4 +I0 +sa(dp2446 +g4 +I0 +sa(dp2447 +g4 +I0 +sa(dp2448 +g4 +I1 +sa(dp2449 +g4 +I0 +sa(dp2450 +g4 +I0 +sa(dp2451 +g4 +I0 +sa(dp2452 +g4 +I0 +sa(dp2453 +g4 +I0 +sa(dp2454 +g4 +I0 +sa(dp2455 +g4 +I0 +sa(dp2456 +g4 +I0 +sa(dp2457 +g4 +I1 +sa(dp2458 +g4 +I0 +sa(dp2459 +g4 +I0 +sa(dp2460 +g4 +I1 +sa(dp2461 +g4 +I0 +sa(dp2462 +g4 +I0 +sa(dp2463 +g4 +I0 +sa(dp2464 +g4 +I0 +sa(dp2465 +g4 +I0 +sa(dp2466 +g4 +I0 +sa(dp2467 +g4 +I1 +sa(dp2468 +g4 +I0 +sa(dp2469 +g4 +I0 +sa(dp2470 +g4 +I0 +sa(dp2471 +g4 +I0 +sa(dp2472 +g4 +I1 +sa(dp2473 +g4 +I0 +sa(dp2474 +g4 +I0 +sa(dp2475 +g4 +I0 +sa(dp2476 +g4 +I0 +sa(dp2477 +g4 +I0 +sa(dp2478 +g4 +I0 +sa(dp2479 +g4 +I0 +sa(dp2480 +g4 +I0 +sa(dp2481 +g4 +I0 +sa(dp2482 +g4 +I1 +sa(dp2483 +g4 +I1 +sa(dp2484 +g4 +I0 +sa(dp2485 +g4 +I1 +sa(dp2486 +g4 +I0 +sa(dp2487 +g4 +I1 +sa(dp2488 +g4 +I1 +sa(dp2489 +g4 +I0 +sa(dp2490 +g4 +I0 +sa(dp2491 +g4 +I1 +sa(dp2492 +g4 +I1 +sa(dp2493 +g4 +I0 +sa(dp2494 +g4 +I1 +sa(dp2495 +g4 +I0 +sa(dp2496 +g4 +I0 +sa(dp2497 +g4 +I0 +sa(dp2498 +g4 +I0 +sa(dp2499 +g4 +I0 +sa(dp2500 +g4 +I0 +sa(dp2501 +g4 +I1 +sa(dp2502 +g4 +I1 +sa(dp2503 +g4 +I0 +sa(dp2504 +g4 +I0 +sa(dp2505 +g4 +I0 +sa(dp2506 +g4 +I1 +sa(dp2507 +g4 +I0 +sa(dp2508 +g4 +I0 +sa(dp2509 +g4 +I1 +sa(dp2510 +g4 +I0 +sa(dp2511 +g4 +I0 +sa(dp2512 +g4 +I0 +sa(dp2513 +g4 +I1 +sa(dp2514 +g4 +I0 +sa(dp2515 +g4 +I1 +sa(dp2516 +g4 +I0 +sa(dp2517 +g4 +I0 +sa(dp2518 +g4 +I0 +sa(dp2519 +g4 +I0 +sa(dp2520 +g4 +I0 +sa(dp2521 +g4 +I0 +sa(dp2522 +g4 +I0 +sa(dp2523 +g4 +I0 +sa(dp2524 +g4 +I0 +sa(dp2525 +g4 +I1 +sa(dp2526 +g4 +I1 +sa(dp2527 +g4 +I0 +sa(dp2528 +g4 +I0 +sa(dp2529 +g4 +I0 +sa(dp2530 +g4 +I0 +sa(dp2531 +g4 +I0 +sa(dp2532 +g4 +I0 +sa(dp2533 +g4 +I0 +sa(dp2534 +g4 +I0 +sa(dp2535 +g4 +I0 +sa(dp2536 +g4 +I0 +sa(dp2537 +g4 +I1 +sa(dp2538 +g4 +I0 +sa(dp2539 +g4 +I0 +sa(dp2540 +g4 +I0 +sa(dp2541 +g4 +I0 +sa(dp2542 +g4 +I0 +sa(dp2543 +g4 +I0 +sa(dp2544 +g4 +I0 +sa(dp2545 +g4 +I0 +sa(dp2546 +g4 +I0 +sa(dp2547 +g4 +I0 +sa(dp2548 +g4 +I1 +sa(dp2549 +g4 +I1 +sa(dp2550 +g4 +I0 +sa(dp2551 +g4 +I0 +sa(dp2552 +g4 +I0 +sa(dp2553 +g4 +I0 +sa(dp2554 +g4 +I0 +sa(dp2555 +g4 +I0 +sa(dp2556 +g4 +I0 +sa(dp2557 +g4 +I0 +sa(dp2558 +g4 +I1 +sa(dp2559 +g4 +I0 +sa(dp2560 +g4 +I0 +sa(dp2561 +g4 +I0 +sa(dp2562 +g4 +I0 +sa(dp2563 +g4 +I0 +sa(dp2564 +g4 +I0 +sa(dp2565 +g4 +I1 +sa(dp2566 +g4 +I0 +sa(dp2567 +g4 +I0 +sa(dp2568 +g4 +I0 +sa(dp2569 +g4 +I0 +sa(dp2570 +g4 +I0 +sa(dp2571 +g4 +I1 +sa(dp2572 +g4 +I0 +sa(dp2573 +g4 +I0 +sa(dp2574 +g4 +I0 +sa(dp2575 +g4 +I0 +sa(dp2576 +g4 +I0 +sa(dp2577 +g4 +I0 +sa(dp2578 +g4 +I0 +sa(dp2579 +g4 +I1 +sa(dp2580 +g4 +I0 +sa(dp2581 +g4 +I1 +sa(dp2582 +g4 +I0 +sa(dp2583 +g4 +I0 +sa(dp2584 +g4 +I0 +sa(dp2585 +g4 +I0 +sa(dp2586 +g4 +I1 +sa(dp2587 +g4 +I0 +sa(dp2588 +g4 +I0 +sa(dp2589 +g4 +I1 +sa(dp2590 +g4 +I1 +sa(dp2591 +g4 +I0 +sa(dp2592 +g4 +I0 +sa(dp2593 +g4 +I1 +sa(dp2594 +g4 +I1 +sa(dp2595 +g4 +I0 +sa(dp2596 +g4 +I0 +sa(dp2597 +g4 +I0 +sa(dp2598 +g4 +I0 +sa(dp2599 +g4 +I0 +sa(dp2600 +g4 +I0 +sa(dp2601 +g4 +I0 +sa(dp2602 +g4 +I0 +sa(dp2603 +g4 +I0 +sa(dp2604 +g4 +I1 +sa(dp2605 +g4 +I0 +sa(dp2606 +g4 +I0 +sa(dp2607 +g4 +I1 +sa(dp2608 +g4 +I0 +sa(dp2609 +g4 +I0 +sa(dp2610 +g4 +I0 +sa(dp2611 +g4 +I1 +sa(dp2612 +g4 +I0 +sa(dp2613 +g4 +I0 +sa(dp2614 +g4 +I0 +sa(dp2615 +g4 +I0 +sa(dp2616 +g4 +I1 +sa(dp2617 +g4 +I0 +sa(dp2618 +g4 +I0 +sa(dp2619 +g4 +I0 +sa(dp2620 +g4 +I1 +sa(dp2621 +g4 +I1 +sa(dp2622 +g4 +I0 +sa(dp2623 +g4 +I0 +sa(dp2624 +g4 +I0 +sa(dp2625 +g4 +I0 +sa(dp2626 +g4 +I0 +sa(dp2627 +g4 +I1 +sa(dp2628 +g4 +I1 +sa(dp2629 +g4 +I0 +sa(dp2630 +g4 +I0 +sa(dp2631 +g4 +I0 +sa(dp2632 +g4 +I1 +sa(dp2633 +g4 +I1 +sa(dp2634 +g4 +I0 +sa(dp2635 +g4 +I0 +sa(dp2636 +g4 +I0 +sa(dp2637 +g4 +I0 +sa(dp2638 +g4 +I1 +sa(dp2639 +g4 +I0 +sa(dp2640 +g4 +I1 +sa(dp2641 +g4 +I0 +sa(dp2642 +g4 +I0 +sa(dp2643 +g4 +I0 +sa(dp2644 +g4 +I0 +sa(dp2645 +g4 +I0 +sa(dp2646 +g4 +I0 +sa(dp2647 +g4 +I0 +sa(dp2648 +g4 +I1 +sa(dp2649 +g4 +I1 +sa(dp2650 +g4 +I0 +sa(dp2651 +g4 +I0 +sa(dp2652 +g4 +I1 +sa(dp2653 +g4 +I1 +sa(dp2654 +g4 +I0 +sa(dp2655 +g4 +I0 +sa(dp2656 +g4 +I1 +sa(dp2657 +g4 +I0 +sa(dp2658 +g4 +I0 +sa(dp2659 +g4 +I0 +sa(dp2660 +g4 +I0 +sa(dp2661 +g4 +I0 +sa(dp2662 +g4 +I0 +sa(dp2663 +g4 +I0 +sa(dp2664 +g4 +I0 +sa(dp2665 +g4 +I0 +sa(dp2666 +g4 +I0 +sa(dp2667 +g4 +I0 +sa(dp2668 +g4 +I1 +sa(dp2669 +g4 +I1 +sa(dp2670 +g4 +I0 +sa(dp2671 +g4 +I0 +sa(dp2672 +g4 +I0 +sa(dp2673 +g4 +I0 +sa(dp2674 +g4 +I0 +sa(dp2675 +g4 +I1 +sa(dp2676 +g4 +I0 +sa(dp2677 +g4 +I1 +sa(dp2678 +g4 +I1 +sa(dp2679 +g4 +I1 +sa(dp2680 +g4 +I0 +sa(dp2681 +g4 +I0 +sa(dp2682 +g4 +I1 +sa(dp2683 +g4 +I0 +sa(dp2684 +g4 +I0 +sa(dp2685 +g4 +I0 +sa(dp2686 +g4 +I0 +sa(dp2687 +g4 +I0 +sa(dp2688 +g4 +I0 +sa(dp2689 +g4 +I1 +sa(dp2690 +g4 +I0 +sa(dp2691 +g4 +I0 +sa(dp2692 +g4 +I1 +sa(dp2693 +g4 +I1 +sa(dp2694 +g4 +I0 +sa(dp2695 +g4 +I0 +sa(dp2696 +g4 +I0 +sa(dp2697 +g4 +I0 +sa(dp2698 +g4 +I0 +sa(dp2699 +g4 +I0 +sa(dp2700 +g4 +I0 +sa(dp2701 +g4 +I0 +sa(dp2702 +g4 +I0 +sa(dp2703 +g4 +I0 +sa(dp2704 +g4 +I1 +sa(dp2705 +g4 +I0 +sa(dp2706 +g4 +I0 +sa(dp2707 +g4 +I0 +sa(dp2708 +g4 +I0 +sa(dp2709 +g4 +I1 +sa(dp2710 +g4 +I0 +sa(dp2711 +g4 +I1 +sa(dp2712 +g4 +I1 +sa(dp2713 +g4 +I0 +sa(dp2714 +g4 +I0 +sa(dp2715 +g4 +I0 +sa(dp2716 +g4 +I0 +sa(dp2717 +g4 +I0 +sa(dp2718 +g4 +I0 +sa(dp2719 +g4 +I0 +sa(dp2720 +g4 +I1 +sa(dp2721 +g4 +I0 +sa(dp2722 +g4 +I0 +sa(dp2723 +g4 +I1 +sa(dp2724 +g4 +I0 +sa(dp2725 +g4 +I0 +sa(dp2726 +g4 +I0 +sa(dp2727 +g4 +I0 +sa(dp2728 +g4 +I0 +sa(dp2729 +g4 +I1 +sa(dp2730 +g4 +I0 +sa(dp2731 +g4 +I0 +sa(dp2732 +g4 +I0 +sa(dp2733 +g4 +I0 +sa(dp2734 +g4 +I1 +sa(dp2735 +g4 +I1 +sa(dp2736 +g4 +I1 +sa(dp2737 +g4 +I1 +sa(dp2738 +g4 +I0 +sa(dp2739 +g4 +I0 +sa(dp2740 +g4 +I0 +sa(dp2741 +g4 +I0 +sa(dp2742 +g4 +I0 +sa(dp2743 +g4 +I0 +sa(dp2744 +g4 +I0 +sa(dp2745 +g4 +I0 +sa(dp2746 +g4 +I0 +sa(dp2747 +g4 +I0 +sa(dp2748 +g4 +I0 +sa(dp2749 +g4 +I1 +sa(dp2750 +g4 +I1 +sa(dp2751 +g4 +I0 +sa(dp2752 +g4 +I0 +sa(dp2753 +g4 +I1 +sa(dp2754 +g4 +I1 +sa(dp2755 +g4 +I0 +sa(dp2756 +g4 +I0 +sa(dp2757 +g4 +I0 +sa(dp2758 +g4 +I0 +sa(dp2759 +g4 +I0 +sa(dp2760 +g4 +I0 +sa(dp2761 +g4 +I0 +sa(dp2762 +g4 +I0 +sa(dp2763 +g4 +I1 +sa(dp2764 +g4 +I1 +sa(dp2765 +g4 +I0 +sa(dp2766 +g4 +I0 +sa(dp2767 +g4 +I0 +sa(dp2768 +g4 +I0 +sa(dp2769 +g4 +I0 +sa(dp2770 +g4 +I1 +sa(dp2771 +g4 +I1 +sa(dp2772 +g4 +I0 +sa(dp2773 +g4 +I1 +sa(dp2774 +g4 +I0 +sa(dp2775 +g4 +I0 +sa(dp2776 +g4 +I0 +sa(dp2777 +g4 +I1 +sa(dp2778 +g4 +I0 +sa(dp2779 +g4 +I0 +sa(dp2780 +g4 +I0 +sa(dp2781 +g4 +I0 +sa(dp2782 +g4 +I0 +sa(dp2783 +g4 +I1 +sa(dp2784 +g4 +I1 +sa(dp2785 +g4 +I1 +sa(dp2786 +g4 +I0 +sa(dp2787 +g4 +I1 +sa(dp2788 +g4 +I0 +sa(dp2789 +g4 +I0 +sa(dp2790 +g4 +I0 +sa(dp2791 +g4 +I1 +sa(dp2792 +g4 +I1 +sa(dp2793 +g4 +I0 +sa(dp2794 +g4 +I0 +sa(dp2795 +g4 +I0 +sa(dp2796 +g4 +I0 +sa(dp2797 +g4 +I1 +sa(dp2798 +g4 +I1 +sa(dp2799 +g4 +I0 +sa(dp2800 +g4 +I0 +sa(dp2801 +g4 +I1 +sa(dp2802 +g4 +I0 +sa(dp2803 +g4 +I0 +sa(dp2804 +g4 +I0 +sa(dp2805 +g4 +I0 +sa(dp2806 +g4 +I1 +sa(dp2807 +g4 +I0 +sa(dp2808 +g4 +I0 +sa(dp2809 +g4 +I0 +sa(dp2810 +g4 +I0 +sa(dp2811 +g4 +I0 +sa(dp2812 +g4 +I1 +sa(dp2813 +g4 +I1 +sa(dp2814 +g4 +I1 +sa(dp2815 +g4 +I0 +sa(dp2816 +g4 +I0 +sa(dp2817 +g4 +I0 +sa(dp2818 +g4 +I0 +sa(dp2819 +g4 +I0 +sa(dp2820 +g4 +I1 +sa(dp2821 +g4 +I0 +sa(dp2822 +g4 +I0 +sa(dp2823 +g4 +I0 +sa(dp2824 +g4 +I0 +sa(dp2825 +g4 +I0 +sa(dp2826 +g4 +I1 +sa(dp2827 +g4 +I0 +sa(dp2828 +g4 +I0 +sa(dp2829 +g4 +I0 +sa(dp2830 +g4 +I1 +sa(dp2831 +g4 +I1 +sa(dp2832 +g4 +I0 +sa(dp2833 +g4 +I0 +sa(dp2834 +g4 +I1 +sa(dp2835 +g4 +I1 +sa(dp2836 +g4 +I0 +sa(dp2837 +g4 +I0 +sa(dp2838 +g4 +I0 +sa(dp2839 +g4 +I0 +sa(dp2840 +g4 +I0 +sa(dp2841 +g4 +I0 +sa(dp2842 +g4 +I1 +sa(dp2843 +g4 +I0 +sa(dp2844 +g4 +I1 +sa(dp2845 +g4 +I1 +sa(dp2846 +g4 +I0 +sa(dp2847 +g4 +I0 +sa(dp2848 +g4 +I0 +sa(dp2849 +g4 +I0 +sa(dp2850 +g4 +I0 +sa(dp2851 +g4 +I0 +sa(dp2852 +g4 +I0 +sa(dp2853 +g4 +I0 +sa(dp2854 +g4 +I0 +sa(dp2855 +g4 +I0 +sa(dp2856 +g4 +I1 +sa(dp2857 +g4 +I0 +sa(dp2858 +g4 +I0 +sa(dp2859 +g4 +I0 +sa(dp2860 +g4 +I0 +sa(dp2861 +g4 +I0 +sa(dp2862 +g4 +I0 +sa(dp2863 +g4 +I0 +sa(dp2864 +g4 +I0 +sa(dp2865 +g4 +I0 +sa(dp2866 +g4 +I1 +sa(dp2867 +g4 +I0 +sa(dp2868 +g4 +I0 +sa(dp2869 +g4 +I0 +sa(dp2870 +g4 +I0 +sa(dp2871 +g4 +I0 +sa(dp2872 +g4 +I0 +sa(dp2873 +g4 +I0 +sa(dp2874 +g4 +I0 +sa(dp2875 +g4 +I0 +sa(dp2876 +g4 +I0 +sa(dp2877 +g4 +I1 +sa(dp2878 +g4 +I1 +sa(dp2879 +g4 +I0 +sa(dp2880 +g4 +I0 +sa(dp2881 +g4 +I1 +sa(dp2882 +g4 +I0 +sa(dp2883 +g4 +I1 +sa(dp2884 +g4 +I0 +sa(dp2885 +g4 +I0 +sa(dp2886 +g4 +I0 +sa(dp2887 +g4 +I0 +sa(dp2888 +g4 +I0 +sa(dp2889 +g4 +I0 +sa(dp2890 +g4 +I0 +sa(dp2891 +g4 +I0 +sa(dp2892 +g4 +I0 +sa(dp2893 +g4 +I0 +sa(dp2894 +g4 +I1 +sa(dp2895 +g4 +I1 +sa(dp2896 +g4 +I0 +sa(dp2897 +g4 +I1 +sa(dp2898 +g4 +I0 +sa(dp2899 +g4 +I1 +sa(dp2900 +g4 +I0 +sa(dp2901 +g4 +I0 +sa(dp2902 +g4 +I0 +sa(dp2903 +g4 +I1 +sa(dp2904 +g4 +I0 +sa(dp2905 +g4 +I1 +sa(dp2906 +g4 +I0 +sa(dp2907 +g4 +I1 +sa(dp2908 +g4 +I0 +sa(dp2909 +g4 +I0 +sa(dp2910 +g4 +I0 +sa(dp2911 +g4 +I0 +sa(dp2912 +g4 +I0 +sa(dp2913 +g4 +I1 +sa(dp2914 +g4 +I0 +sa(dp2915 +g4 +I1 +sa(dp2916 +g4 +I0 +sa(dp2917 +g4 +I0 +sa(dp2918 +g4 +I0 +sa(dp2919 +g4 +I0 +sa(dp2920 +g4 +I0 +sa(dp2921 +g4 +I1 +sa(dp2922 +g4 +I0 +sa(dp2923 +g4 +I0 +sa(dp2924 +g4 +I1 +sa(dp2925 +g4 +I0 +sa(dp2926 +g4 +I0 +sa(dp2927 +g4 +I0 +sa(dp2928 +g4 +I0 +sa(dp2929 +g4 +I0 +sa(dp2930 +g4 +I0 +sa(dp2931 +g4 +I0 +sa(dp2932 +g4 +I0 +sa(dp2933 +g4 +I0 +sa(dp2934 +g4 +I0 +sa(dp2935 +g4 +I1 +sa(dp2936 +g4 +I1 +sa(dp2937 +g4 +I0 +sa(dp2938 +g4 +I1 +sa(dp2939 +g4 +I0 +sa(dp2940 +g4 +I0 +sa(dp2941 +g4 +I0 +sa(dp2942 +g4 +I0 +sa(dp2943 +g4 +I1 +sa(dp2944 +g4 +I1 +sa(dp2945 +g4 +I0 +sa(dp2946 +g4 +I0 +sa(dp2947 +g4 +I0 +sa(dp2948 +g4 +I0 +sa(dp2949 +g4 +I0 +sa(dp2950 +g4 +I0 +sa(dp2951 +g4 +I0 +sa(dp2952 +g4 +I0 +sa(dp2953 +g4 +I0 +sa(dp2954 +g4 +I0 +sa(dp2955 +g4 +I1 +sa(dp2956 +g4 +I1 +sa(dp2957 +g4 +I0 +sa(dp2958 +g4 +I1 +sa(dp2959 +g4 +I0 +sa(dp2960 +g4 +I0 +sa(dp2961 +g4 +I1 +sa(dp2962 +g4 +I0 +sa(dp2963 +g4 +I0 +sa(dp2964 +g4 +I0 +sa(dp2965 +g4 +I0 +sa(dp2966 +g4 +I0 +sa(dp2967 +g4 +I0 +sa(dp2968 +g4 +I0 +sa(dp2969 +g4 +I1 +sa(dp2970 +g4 +I1 +sa(dp2971 +g4 +I0 +sa(dp2972 +g4 +I1 +sa(dp2973 +g4 +I0 +sa(dp2974 +g4 +I0 +sa(dp2975 +g4 +I0 +sa(dp2976 +g4 +I1 +sa(dp2977 +g4 +I0 +sa(dp2978 +g4 +I0 +sa(dp2979 +g4 +I0 +sa(dp2980 +g4 +I0 +sa(dp2981 +g4 +I0 +sa(dp2982 +g4 +I0 +sa(dp2983 +g4 +I0 +sa(dp2984 +g4 +I1 +sa(dp2985 +g4 +I0 +sa(dp2986 +g4 +I1 +sa(dp2987 +g4 +I0 +sa(dp2988 +g4 +I0 +sa(dp2989 +g4 +I0 +sa(dp2990 +g4 +I0 +sa(dp2991 +g4 +I0 +sa(dp2992 +g4 +I0 +sa(dp2993 +g4 +I0 +sa(dp2994 +g4 +I1 +sa(dp2995 +g4 +I0 +sa(dp2996 +g4 +I0 +sa(dp2997 +g4 +I0 +sa(dp2998 +g4 +I0 +sa(dp2999 +g4 +I0 +sa(dp3000 +g4 +I1 +sa(dp3001 +g4 +I0 +sa(dp3002 +g4 +I1 +sa(dp3003 +g4 +I1 +sa(dp3004 +g4 +I0 +sa(dp3005 +g4 +I0 +sa(dp3006 +g4 +I1 +sa(dp3007 +g4 +I0 +sa(dp3008 +g4 +I0 +sa(dp3009 +g4 +I0 +sa(dp3010 +g4 +I0 +sa(dp3011 +g4 +I0 +sa(dp3012 +g4 +I0 +sa(dp3013 +g4 +I0 +sa(dp3014 +g4 +I0 +sa(dp3015 +g4 +I0 +sa(dp3016 +g4 +I0 +sa(dp3017 +g4 +I1 +sa(dp3018 +g4 +I1 +sa(dp3019 +g4 +I1 +sa(dp3020 +g4 +I0 +sa(dp3021 +g4 +I1 +sa(dp3022 +g4 +I1 +sa(dp3023 +g4 +I1 +sa(dp3024 +g4 +I0 +sa(dp3025 +g4 +I0 +sa(dp3026 +g4 +I0 +sa(dp3027 +g4 +I1 +sa(dp3028 +g4 +I0 +sa(dp3029 +g4 +I1 +sa(dp3030 +g4 +I1 +sa(dp3031 +g4 +I1 +sa(dp3032 +g4 +I1 +sa(dp3033 +g4 +I1 +sa(dp3034 +g4 +I0 +sa(dp3035 +g4 +I0 +sa(dp3036 +g4 +I0 +sa(dp3037 +g4 +I0 +sa(dp3038 +g4 +I0 +sa(dp3039 +g4 +I0 +sa(dp3040 +g4 +I1 +sa(dp3041 +g4 +I0 +sa(dp3042 +g4 +I0 +sa(dp3043 +g4 +I0 +sa(dp3044 +g4 +I0 +sa(dp3045 +g4 +I0 +sa(dp3046 +g4 +I1 +sa(dp3047 +g4 +I1 +sa(dp3048 +g4 +I0 +sa(dp3049 +g4 +I0 +sa(dp3050 +g4 +I1 +sa(dp3051 +g4 +I0 +sa(dp3052 +g4 +I0 +sa(dp3053 +g4 +I0 +sa(dp3054 +g4 +I0 +sa(dp3055 +g4 +I0 +sa(dp3056 +g4 +I0 +sa(dp3057 +g4 +I0 +sa(dp3058 +g4 +I1 +sa(dp3059 +g4 +I0 +sa(dp3060 +g4 +I0 +sa(dp3061 +g4 +I0 +sa(dp3062 +g4 +I0 +sa(dp3063 +g4 +I0 +sa(dp3064 +g4 +I0 +sa(dp3065 +g4 +I1 +sa(dp3066 +g4 +I0 +sa(dp3067 +g4 +I0 +sa(dp3068 +g4 +I0 +sa(dp3069 +g4 +I1 +sa(dp3070 +g4 +I0 +sa(dp3071 +g4 +I0 +sa(dp3072 +g4 +I0 +sa(dp3073 +g4 +I0 +sa(dp3074 +g4 +I0 +sa(dp3075 +g4 +I0 +sa(dp3076 +g4 +I0 +sa(dp3077 +g4 +I1 +sa(dp3078 +g4 +I0 +sa(dp3079 +g4 +I0 +sa(dp3080 +g4 +I0 +sa(dp3081 +g4 +I0 +sa(dp3082 +g4 +I1 +sa(dp3083 +g4 +I1 +sa(dp3084 +g4 +I1 +sa(dp3085 +g4 +I1 +sa(dp3086 +g4 +I1 +sa(dp3087 +g4 +I1 +sa(dp3088 +g4 +I0 +sa(dp3089 +g4 +I1 +sa(dp3090 +g4 +I1 +sa(dp3091 +g4 +I0 +sa(dp3092 +g4 +I0 +sa(dp3093 +g4 +I0 +sa(dp3094 +g4 +I0 +sa(dp3095 +g4 +I0 +sa(dp3096 +g4 +I0 +sa(dp3097 +g4 +I1 +sa(dp3098 +g4 +I0 +sa(dp3099 +g4 +I0 +sa(dp3100 +g4 +I0 +sa(dp3101 +g4 +I1 +sa(dp3102 +g4 +I0 +sa(dp3103 +g4 +I0 +sa(dp3104 +g4 +I1 +sa(dp3105 +g4 +I0 +sa(dp3106 +g4 +I0 +sa(dp3107 +g4 +I1 +sa(dp3108 +g4 +I0 +sa(dp3109 +g4 +I1 +sa(dp3110 +g4 +I1 +sa(dp3111 +g4 +I1 +sa(dp3112 +g4 +I0 +sa(dp3113 +g4 +I1 +sa(dp3114 +g4 +I1 +sa(dp3115 +g4 +I0 +sa(dp3116 +g4 +I0 +sa(dp3117 +g4 +I0 +sa(dp3118 +g4 +I0 +sa(dp3119 +g4 +I1 +sa(dp3120 +g4 +I0 +sa(dp3121 +g4 +I0 +sa(dp3122 +g4 +I0 +sa(dp3123 +g4 +I0 +sa(dp3124 +g4 +I1 +sa(dp3125 +g4 +I1 +sa(dp3126 +g4 +I1 +sa(dp3127 +g4 +I1 +sa(dp3128 +g4 +I0 +sa(dp3129 +g4 +I0 +sa(dp3130 +g4 +I0 +sa(dp3131 +g4 +I0 +sa(dp3132 +g4 +I0 +sa(dp3133 +g4 +I1 +sa(dp3134 +g4 +I0 +sa(dp3135 +g4 +I0 +sa(dp3136 +g4 +I0 +sa(dp3137 +g4 +I0 +sa(dp3138 +g4 +I1 +sa(dp3139 +g4 +I1 +sa(dp3140 +g4 +I1 +sa(dp3141 +g4 +I0 +sa(dp3142 +g4 +I1 +sa(dp3143 +g4 +I1 +sa(dp3144 +g4 +I1 +sa(dp3145 +g4 +I1 +sa(dp3146 +g4 +I1 +sa(dp3147 +g4 +I1 +sa(dp3148 +g4 +I0 +sa(dp3149 +g4 +I0 +sa(dp3150 +g4 +I0 +sa(dp3151 +g4 +I1 +sa(dp3152 +g4 +I0 +sa(dp3153 +g4 +I1 +sa(dp3154 +g4 +I0 +sa(dp3155 +g4 +I0 +sa(dp3156 +g4 +I0 +sa(dp3157 +g4 +I1 +sa(dp3158 +g4 +I1 +sa(dp3159 +g4 +I1 +sa(dp3160 +g4 +I0 +sa(dp3161 +g4 +I0 +sa(dp3162 +g4 +I0 +sa(dp3163 +g4 +I0 +sa(dp3164 +g4 +I0 +sa(dp3165 +g4 +I1 +sa(dp3166 +g4 +I0 +sa(dp3167 +g4 +I1 +sa(dp3168 +g4 +I0 +sa(dp3169 +g4 +I0 +sa(dp3170 +g4 +I0 +sa(dp3171 +g4 +I1 +sa(dp3172 +g4 +I0 +sa(dp3173 +g4 +I0 +sa(dp3174 +g4 +I1 +sa(dp3175 +g4 +I0 +sa(dp3176 +g4 +I0 +sa(dp3177 +g4 +I0 +sa(dp3178 +g4 +I1 +sa(dp3179 +g4 +I0 +sa(dp3180 +g4 +I0 +sa(dp3181 +g4 +I0 +sa(dp3182 +g4 +I1 +sa(dp3183 +g4 +I0 +sa(dp3184 +g4 +I0 +sa(dp3185 +g4 +I0 +sa(dp3186 +g4 +I1 +sa(dp3187 +g4 +I0 +sa(dp3188 +g4 +I0 +sa(dp3189 +g4 +I1 +sa(dp3190 +g4 +I0 +sa(dp3191 +g4 +I0 +sa(dp3192 +g4 +I0 +sa(dp3193 +g4 +I1 +sa(dp3194 +g4 +I1 +sa(dp3195 +g4 +I0 +sa(dp3196 +g4 +I0 +sa(dp3197 +g4 +I0 +sa(dp3198 +g4 +I0 +sa(dp3199 +g4 +I1 +sa(dp3200 +g4 +I0 +sa(dp3201 +g4 +I0 +sa(dp3202 +g4 +I0 +sa(dp3203 +g4 +I0 +sa(dp3204 +g4 +I0 +sa(dp3205 +g4 +I1 +sa(dp3206 +g4 +I0 +sa(dp3207 +g4 +I0 +sa(dp3208 +g4 +I0 +sa(dp3209 +g4 +I0 +sa(dp3210 +g4 +I0 +sa(dp3211 +g4 +I0 +sa(dp3212 +g4 +I1 +sa(dp3213 +g4 +I0 +sa(dp3214 +g4 +I0 +sa(dp3215 +g4 +I0 +sa(dp3216 +g4 +I0 +sa(dp3217 +g4 +I1 +sa(dp3218 +g4 +I0 +sa(dp3219 +g4 +I0 +sa(dp3220 +g4 +I0 +sa(dp3221 +g4 +I0 +sa(dp3222 +g4 +I0 +sa(dp3223 +g4 +I1 +sa(dp3224 +g4 +I1 +sa(dp3225 +g4 +I1 +sa(dp3226 +g4 +I0 +sa(dp3227 +g4 +I0 +sa(dp3228 +g4 +I0 +sa(dp3229 +g4 +I1 +sa(dp3230 +g4 +I0 +sa(dp3231 +g4 +I0 +sa(dp3232 +g4 +I0 +sa(dp3233 +g4 +I0 +sa(dp3234 +g4 +I0 +sa(dp3235 +g4 +I1 +sa(dp3236 +g4 +I0 +sa(dp3237 +g4 +I0 +sa(dp3238 +g4 +I0 +sa(dp3239 +g4 +I0 +sa(dp3240 +g4 +I1 +sa(dp3241 +g4 +I0 +sa(dp3242 +g4 +I0 +sa(dp3243 +g4 +I0 +sa(dp3244 +g4 +I0 +sa(dp3245 +g4 +I0 +sa(dp3246 +g4 +I1 +sa(dp3247 +g4 +I0 +sa(dp3248 +g4 +I1 +sa(dp3249 +g4 +I0 +sa(dp3250 +g4 +I1 +sa(dp3251 +g4 +I0 +sa(dp3252 +g4 +I0 +sa(dp3253 +g4 +I0 +sa(dp3254 +g4 +I1 +sa(dp3255 +g4 +I0 +sa(dp3256 +g4 +I0 +sa(dp3257 +g4 +I1 +sa(dp3258 +g4 +I0 +sa(dp3259 +g4 +I0 +sa(dp3260 +g4 +I1 +sa(dp3261 +g4 +I0 +sa(dp3262 +g4 +I0 +sa(dp3263 +g4 +I0 +sa(dp3264 +g4 +I1 +sa(dp3265 +g4 +I0 +sa(dp3266 +g4 +I0 +sa(dp3267 +g4 +I0 +sa(dp3268 +g4 +I0 +sa(dp3269 +g4 +I0 +sa(dp3270 +g4 +I0 +sa(dp3271 +g4 +I1 +sa(dp3272 +g4 +I1 +sa(dp3273 +g4 +I0 +sa(dp3274 +g4 +I0 +sa(dp3275 +g4 +I1 +sa(dp3276 +g4 +I0 +sa(dp3277 +g4 +I0 +sa(dp3278 +g4 +I0 +sa(dp3279 +g4 +I0 +sa(dp3280 +g4 +I1 +sa(dp3281 +g4 +I0 +sa(dp3282 +g4 +I1 +sa(dp3283 +g4 +I1 +sa(dp3284 +g4 +I0 +sa(dp3285 +g4 +I1 +sa(dp3286 +g4 +I1 +sa(dp3287 +g4 +I0 +sa(dp3288 +g4 +I1 +sa(dp3289 +g4 +I0 +sa(dp3290 +g4 +I0 +sa(dp3291 +g4 +I0 +sa(dp3292 +g4 +I0 +sa(dp3293 +g4 +I0 +sa(dp3294 +g4 +I0 +sa(dp3295 +g4 +I0 +sa(dp3296 +g4 +I0 +sa(dp3297 +g4 +I0 +sa(dp3298 +g4 +I0 +sa(dp3299 +g4 +I1 +sa(dp3300 +g4 +I0 +sa(dp3301 +g4 +I0 +sa(dp3302 +g4 +I1 +sa(dp3303 +g4 +I0 +sa(dp3304 +g4 +I0 +sa(dp3305 +g4 +I0 +sa(dp3306 +g4 +I0 +sa(dp3307 +g4 +I0 +sa(dp3308 +g4 +I0 +sa(dp3309 +g4 +I0 +sa(dp3310 +g4 +I1 +sa(dp3311 +g4 +I0 +sa(dp3312 +g4 +I0 +sa(dp3313 +g4 +I1 +sa(dp3314 +g4 +I0 +sa(dp3315 +g4 +I1 +sa(dp3316 +g4 +I1 +sa(dp3317 +g4 +I0 +sa(dp3318 +g4 +I0 +sa(dp3319 +g4 +I0 +sa(dp3320 +g4 +I0 +sa(dp3321 +g4 +I0 +sa(dp3322 +g4 +I0 +sa(dp3323 +g4 +I0 +sa(dp3324 +g4 +I0 +sa(dp3325 +g4 +I0 +sa(dp3326 +g4 +I0 +sa(dp3327 +g4 +I0 +sa(dp3328 +g4 +I0 +sa(dp3329 +g4 +I0 +sa(dp3330 +g4 +I1 +sa(dp3331 +g4 +I1 +sa(dp3332 +g4 +I1 +sa(dp3333 +g4 +I0 +sa(dp3334 +g4 +I0 +sa(dp3335 +g4 +I0 +sa(dp3336 +g4 +I0 +sa(dp3337 +g4 +I1 +sa(dp3338 +g4 +I0 +sa(dp3339 +g4 +I0 +sa(dp3340 +g4 +I0 +sa(dp3341 +g4 +I0 +sa(dp3342 +g4 +I0 +sa(dp3343 +g4 +I0 +sa(dp3344 +g4 +I0 +sa(dp3345 +g4 +I1 +sa(dp3346 +g4 +I0 +sa(dp3347 +g4 +I0 +sa(dp3348 +g4 +I0 +sa(dp3349 +g4 +I0 +sa(dp3350 +g4 +I1 +sa(dp3351 +g4 +I0 +sa(dp3352 +g4 +I0 +sa(dp3353 +g4 +I1 +sa(dp3354 +g4 +I0 +sa(dp3355 +g4 +I0 +sa(dp3356 +g4 +I0 +sa(dp3357 +g4 +I0 +sa(dp3358 +g4 +I1 +sa(dp3359 +g4 +I1 +sa(dp3360 +g4 +I0 +sa(dp3361 +g4 +I0 +sa(dp3362 +g4 +I0 +sa(dp3363 +g4 +I1 +sa(dp3364 +g4 +I1 +sa(dp3365 +g4 +I0 +sa(dp3366 +g4 +I1 +sa(dp3367 +g4 +I0 +sa(dp3368 +g4 +I1 +sa(dp3369 +g4 +I1 +sa(dp3370 +g4 +I0 +sa(dp3371 +g4 +I0 +sa(dp3372 +g4 +I0 +sa(dp3373 +g4 +I0 +sa(dp3374 +g4 +I0 +sa(dp3375 +g4 +I0 +sa(dp3376 +g4 +I0 +sa(dp3377 +g4 +I0 +sa(dp3378 +g4 +I1 +sa(dp3379 +g4 +I0 +sa(dp3380 +g4 +I0 +sa(dp3381 +g4 +I1 +sa(dp3382 +g4 +I0 +sa(dp3383 +g4 +I0 +sa(dp3384 +g4 +I0 +sa(dp3385 +g4 +I0 +sa(dp3386 +g4 +I1 +sa(dp3387 +g4 +I1 +sa(dp3388 +g4 +I0 +sa(dp3389 +g4 +I1 +sa(dp3390 +g4 +I1 +sa(dp3391 +g4 +I0 +sa(dp3392 +g4 +I0 +sa(dp3393 +g4 +I0 +sa(dp3394 +g4 +I0 +sa(dp3395 +g4 +I1 +sa(dp3396 +g4 +I0 +sa(dp3397 +g4 +I0 +sa(dp3398 +g4 +I0 +sa(dp3399 +g4 +I1 +sa(dp3400 +g4 +I1 +sa(dp3401 +g4 +I0 +sa(dp3402 +g4 +I0 +sa(dp3403 +g4 +I0 +sa(dp3404 +g4 +I1 +sa(dp3405 +g4 +I0 +sa(dp3406 +g4 +I1 +sa(dp3407 +g4 +I0 +sa(dp3408 +g4 +I1 +sa(dp3409 +g4 +I0 +sa(dp3410 +g4 +I0 +sa(dp3411 +g4 +I1 +sa(dp3412 +g4 +I1 +sa(dp3413 +g4 +I1 +sa(dp3414 +g4 +I0 +sa(dp3415 +g4 +I0 +sa(dp3416 +g4 +I0 +sa(dp3417 +g4 +I0 +sa(dp3418 +g4 +I1 +sa(dp3419 +g4 +I0 +sa(dp3420 +g4 +I0 +sa(dp3421 +g4 +I0 +sa(dp3422 +g4 +I1 +sa(dp3423 +g4 +I0 +sa(dp3424 +g4 +I0 +sa(dp3425 +g4 +I1 +sa(dp3426 +g4 +I0 +sa(dp3427 +g4 +I1 +sa(dp3428 +g4 +I1 +sa(dp3429 +g4 +I1 +sa(dp3430 +g4 +I0 +sa(dp3431 +g4 +I0 +sa(dp3432 +g4 +I0 +sa(dp3433 +g4 +I0 +sa(dp3434 +g4 +I0 +sa(dp3435 +g4 +I0 +sa(dp3436 +g4 +I0 +sa(dp3437 +g4 +I0 +sa(dp3438 +g4 +I1 +sa(dp3439 +g4 +I0 +sa(dp3440 +g4 +I0 +sa(dp3441 +g4 +I1 +sa(dp3442 +g4 +I1 +sa(dp3443 +g4 +I1 +sa(dp3444 +g4 +I0 +sa(dp3445 +g4 +I0 +sa(dp3446 +g4 +I0 +sa(dp3447 +g4 +I0 +sa(dp3448 +g4 +I0 +sa(dp3449 +g4 +I0 +sa(dp3450 +g4 +I0 +sa(dp3451 +g4 +I0 +sa(dp3452 +g4 +I0 +sa(dp3453 +g4 +I0 +sa(dp3454 +g4 +I0 +sa(dp3455 +g4 +I0 +sa(dp3456 +g4 +I0 +sa(dp3457 +g4 +I0 +sa(dp3458 +g4 +I0 +sa(dp3459 +g4 +I0 +sa(dp3460 +g4 +I1 +sa(dp3461 +g4 +I1 +sa(dp3462 +g4 +I1 +sa(dp3463 +g4 +I0 +sa(dp3464 +g4 +I0 +sa(dp3465 +g4 +I1 +sa(dp3466 +g4 +I0 +sa(dp3467 +g4 +I0 +sa(dp3468 +g4 +I1 +sa(dp3469 +g4 +I0 +sa(dp3470 +g4 +I1 +sa(dp3471 +g4 +I0 +sa(dp3472 +g4 +I0 +sa(dp3473 +g4 +I0 +sa(dp3474 +g4 +I0 +sa(dp3475 +g4 +I0 +sa(dp3476 +g4 +I0 +sa(dp3477 +g4 +I0 +sa(dp3478 +g4 +I0 +sa(dp3479 +g4 +I0 +sa(dp3480 +g4 +I0 +sa(dp3481 +g4 +I0 +sa(dp3482 +g4 +I0 +sa(dp3483 +g4 +I0 +sa(dp3484 +g4 +I1 +sa(dp3485 +g4 +I0 +sa(dp3486 +g4 +I1 +sa(dp3487 +g4 +I1 +sa(dp3488 +g4 +I1 +sa(dp3489 +g4 +I1 +sa(dp3490 +g4 +I1 +sa(dp3491 +g4 +I0 +sa(dp3492 +g4 +I0 +sa(dp3493 +g4 +I1 +sa(dp3494 +g4 +I0 +sa(dp3495 +g4 +I0 +sa(dp3496 +g4 +I0 +sa(dp3497 +g4 +I1 +sa(dp3498 +g4 +I0 +sa(dp3499 +g4 +I0 +sa(dp3500 +g4 +I0 +sa(dp3501 +g4 +I0 +sa(dp3502 +g4 +I1 +sa(dp3503 +g4 +I0 +sa(dp3504 +g4 +I0 +sa(dp3505 +g4 +I0 +sa(dp3506 +g4 +I0 +sa(dp3507 +g4 +I0 +sa(dp3508 +g4 +I1 +sa(dp3509 +g4 +I0 +sa(dp3510 +g4 +I0 +sa(dp3511 +g4 +I1 +sa(dp3512 +g4 +I1 +sa(dp3513 +g4 +I0 +sa(dp3514 +g4 +I0 +sa(dp3515 +g4 +I0 +sa(dp3516 +g4 +I0 +sa(dp3517 +g4 +I0 +sa(dp3518 +g4 +I1 +sa(dp3519 +g4 +I0 +sa(dp3520 +g4 +I1 +sa(dp3521 +g4 +I0 +sa(dp3522 +g4 +I1 +sa(dp3523 +g4 +I0 +sa(dp3524 +g4 +I0 +sa(dp3525 +g4 +I0 +sa(dp3526 +g4 +I1 +sa(dp3527 +g4 +I0 +sa(dp3528 +g4 +I0 +sa(dp3529 +g4 +I1 +sa(dp3530 +g4 +I1 +sa(dp3531 +g4 +I0 +sa(dp3532 +g4 +I0 +sa(dp3533 +g4 +I0 +sa(dp3534 +g4 +I0 +sa(dp3535 +g4 +I1 +sa(dp3536 +g4 +I0 +sa(dp3537 +g4 +I1 +sa(dp3538 +g4 +I1 +sa(dp3539 +g4 +I0 +sa(dp3540 +g4 +I0 +sa(dp3541 +g4 +I0 +sa(dp3542 +g4 +I0 +sa(dp3543 +g4 +I1 +sa(dp3544 +g4 +I1 +sa(dp3545 +g4 +I0 +sa(dp3546 +g4 +I0 +sa(dp3547 +g4 +I0 +sa(dp3548 +g4 +I0 +sa(dp3549 +g4 +I1 +sa(dp3550 +g4 +I0 +sa(dp3551 +g4 +I0 +sa(dp3552 +g4 +I1 +sa(dp3553 +g4 +I0 +sa(dp3554 +g4 +I0 +sa(dp3555 +g4 +I0 +sa(dp3556 +g4 +I1 +sa(dp3557 +g4 +I0 +sa(dp3558 +g4 +I1 +sa(dp3559 +g4 +I0 +sa(dp3560 +g4 +I0 +sa(dp3561 +g4 +I0 +sa(dp3562 +g4 +I0 +sa(dp3563 +g4 +I1 +sa(dp3564 +g4 +I0 +sa(dp3565 +g4 +I1 +sa(dp3566 +g4 +I1 +sa(dp3567 +g4 +I0 +sa(dp3568 +g4 +I0 +sa(dp3569 +g4 +I0 +sa(dp3570 +g4 +I1 +sa(dp3571 +g4 +I1 +sa(dp3572 +g4 +I0 +sa(dp3573 +g4 +I0 +sa(dp3574 +g4 +I0 +sa(dp3575 +g4 +I1 +sa(dp3576 +g4 +I0 +sa(dp3577 +g4 +I0 +sa(dp3578 +g4 +I0 +sa(dp3579 +g4 +I0 +sa(dp3580 +g4 +I0 +sa(dp3581 +g4 +I0 +sa(dp3582 +g4 +I0 +sa(dp3583 +g4 +I1 +sa(dp3584 +g4 +I0 +sa(dp3585 +g4 +I0 +sa(dp3586 +g4 +I0 +sa(dp3587 +g4 +I0 +sa(dp3588 +g4 +I0 +sa(dp3589 +g4 +I0 +sa(dp3590 +g4 +I0 +sa(dp3591 +g4 +I0 +sa(dp3592 +g4 +I0 +sa(dp3593 +g4 +I0 +sa(dp3594 +g4 +I0 +sa(dp3595 +g4 +I0 +sa(dp3596 +g4 +I1 +sa(dp3597 +g4 +I0 +sa(dp3598 +g4 +I0 +sa(dp3599 +g4 +I1 +sa(dp3600 +g4 +I0 +sa(dp3601 +g4 +I1 +sa(dp3602 +g4 +I1 +sa(dp3603 +g4 +I0 +sa(dp3604 +g4 +I0 +sa(dp3605 +g4 +I0 +sa(dp3606 +g4 +I0 +sa(dp3607 +g4 +I0 +sa(dp3608 +g4 +I0 +sa(dp3609 +g4 +I0 +sa(dp3610 +g4 +I1 +sa(dp3611 +g4 +I1 +sa(dp3612 +g4 +I0 +sa(dp3613 +g4 +I0 +sa(dp3614 +g4 +I0 +sa(dp3615 +g4 +I0 +sa(dp3616 +g4 +I0 +sa(dp3617 +g4 +I1 +sa(dp3618 +g4 +I1 +sa(dp3619 +g4 +I0 +sa(dp3620 +g4 +I1 +sa(dp3621 +g4 +I0 +sa(dp3622 +g4 +I1 +sa(dp3623 +g4 +I0 +sa(dp3624 +g4 +I0 +sa(dp3625 +g4 +I0 +sa(dp3626 +g4 +I0 +sa(dp3627 +g4 +I0 +sa(dp3628 +g4 +I1 +sa(dp3629 +g4 +I0 +sa(dp3630 +g4 +I0 +sa(dp3631 +g4 +I1 +sa(dp3632 +g4 +I1 +sa(dp3633 +g4 +I0 +sa(dp3634 +g4 +I0 +sa(dp3635 +g4 +I0 +sa(dp3636 +g4 +I0 +sa(dp3637 +g4 +I0 +sa(dp3638 +g4 +I0 +sa(dp3639 +g4 +I0 +sa(dp3640 +g4 +I0 +sa(dp3641 +g4 +I0 +sa(dp3642 +g4 +I1 +sa(dp3643 +g4 +I0 +sa(dp3644 +g4 +I0 +sa(dp3645 +g4 +I1 +sa(dp3646 +g4 +I0 +sa(dp3647 +g4 +I0 +sa(dp3648 +g4 +I0 +sa(dp3649 +g4 +I0 +sa(dp3650 +g4 +I0 +sa(dp3651 +g4 +I0 +sa(dp3652 +g4 +I0 +sa(dp3653 +g4 +I0 +sa(dp3654 +g4 +I0 +sa(dp3655 +g4 +I0 +sa(dp3656 +g4 +I0 +sa(dp3657 +g4 +I1 +sa(dp3658 +g4 +I0 +sa(dp3659 +g4 +I1 +sa(dp3660 +g4 +I0 +sa(dp3661 +g4 +I0 +sa(dp3662 +g4 +I0 +sa(dp3663 +g4 +I0 +sa(dp3664 +g4 +I0 +sa(dp3665 +g4 +I0 +sa(dp3666 +g4 +I0 +sa(dp3667 +g4 +I0 +sa(dp3668 +g4 +I0 +sa(dp3669 +g4 +I0 +sa(dp3670 +g4 +I0 +sa(dp3671 +g4 +I0 +sa(dp3672 +g4 +I0 +sa(dp3673 +g4 +I0 +sa(dp3674 +g4 +I0 +sa(dp3675 +g4 +I1 +sa(dp3676 +g4 +I0 +sa(dp3677 +g4 +I0 +sa(dp3678 +g4 +I0 +sa(dp3679 +g4 +I1 +sa(dp3680 +g4 +I0 +sa(dp3681 +g4 +I1 +sa(dp3682 +g4 +I1 +sa(dp3683 +g4 +I0 +sa(dp3684 +g4 +I0 +sa(dp3685 +g4 +I0 +sa(dp3686 +g4 +I0 +sa(dp3687 +g4 +I0 +sa(dp3688 +g4 +I1 +sa(dp3689 +g4 +I0 +sa(dp3690 +g4 +I0 +sa(dp3691 +g4 +I1 +sa(dp3692 +g4 +I0 +sa(dp3693 +g4 +I0 +sa(dp3694 +g4 +I1 +sa(dp3695 +g4 +I1 +sa(dp3696 +g4 +I0 +sa(dp3697 +g4 +I0 +sa(dp3698 +g4 +I0 +sa(dp3699 +g4 +I1 +sa(dp3700 +g4 +I0 +sa(dp3701 +g4 +I0 +sa(dp3702 +g4 +I1 +sa(dp3703 +g4 +I0 +sa(dp3704 +g4 +I0 +sa(dp3705 +g4 +I0 +sa(dp3706 +g4 +I0 +sa(dp3707 +g4 +I1 +sa(dp3708 +g4 +I1 +sa(dp3709 +g4 +I0 +sa(dp3710 +g4 +I0 +sa(dp3711 +g4 +I0 +sa(dp3712 +g4 +I1 +sa(dp3713 +g4 +I1 +sa(dp3714 +g4 +I0 +sa(dp3715 +g4 +I1 +sa(dp3716 +g4 +I0 +sa(dp3717 +g4 +I0 +sa(dp3718 +g4 +I0 +sa(dp3719 +g4 +I1 +sa(dp3720 +g4 +I0 +sa(dp3721 +g4 +I0 +sa(dp3722 +g4 +I0 +sa(dp3723 +g4 +I1 +sa(dp3724 +g4 +I0 +sa(dp3725 +g4 +I0 +sa(dp3726 +g4 +I0 +sa(dp3727 +g4 +I0 +sa(dp3728 +g4 +I0 +sa(dp3729 +g4 +I0 +sa(dp3730 +g4 +I1 +sa(dp3731 +g4 +I0 +sa(dp3732 +g4 +I1 +sa(dp3733 +g4 +I0 +sa(dp3734 +g4 +I0 +sa(dp3735 +g4 +I1 +sa(dp3736 +g4 +I1 +sa(dp3737 +g4 +I0 +sa(dp3738 +g4 +I0 +sa(dp3739 +g4 +I0 +sa(dp3740 +g4 +I1 +sa(dp3741 +g4 +I0 +sa(dp3742 +g4 +I0 +sa(dp3743 +g4 +I0 +sa(dp3744 +g4 +I0 +sa(dp3745 +g4 +I1 +sa(dp3746 +g4 +I0 +sa(dp3747 +g4 +I0 +sa(dp3748 +g4 +I0 +sa(dp3749 +g4 +I0 +sa(dp3750 +g4 +I0 +sa(dp3751 +g4 +I0 +sa(dp3752 +g4 +I0 +sa(dp3753 +g4 +I1 +sa(dp3754 +g4 +I0 +sa(dp3755 +g4 +I1 +sa(dp3756 +g4 +I0 +sa(dp3757 +g4 +I1 +sa(dp3758 +g4 +I0 +sa(dp3759 +g4 +I0 +sa(dp3760 +g4 +I0 +sa(dp3761 +g4 +I0 +sa(dp3762 +g4 +I0 +sa(dp3763 +g4 +I0 +sa(dp3764 +g4 +I0 +sa(dp3765 +g4 +I0 +sa(dp3766 +g4 +I0 +sa(dp3767 +g4 +I0 +sa(dp3768 +g4 +I1 +sa(dp3769 +g4 +I1 +sa(dp3770 +g4 +I1 +sa(dp3771 +g4 +I0 +sa(dp3772 +g4 +I0 +sa(dp3773 +g4 +I0 +sa(dp3774 +g4 +I0 +sa(dp3775 +g4 +I0 +sa(dp3776 +g4 +I0 +sa(dp3777 +g4 +I1 +sa(dp3778 +g4 +I0 +sa(dp3779 +g4 +I1 +sa(dp3780 +g4 +I0 +sa(dp3781 +g4 +I0 +sa(dp3782 +g4 +I0 +sa(dp3783 +g4 +I0 +sa(dp3784 +g4 +I0 +sa(dp3785 +g4 +I0 +sa(dp3786 +g4 +I0 +sa(dp3787 +g4 +I0 +sa(dp3788 +g4 +I1 +sa(dp3789 +g4 +I0 +sa(dp3790 +g4 +I0 +sa(dp3791 +g4 +I1 +sa(dp3792 +g4 +I0 +sa(dp3793 +g4 +I0 +sa(dp3794 +g4 +I0 +sa(dp3795 +g4 +I1 +sa(dp3796 +g4 +I0 +sa(dp3797 +g4 +I0 +sa(dp3798 +g4 +I0 +sa(dp3799 +g4 +I0 +sa(dp3800 +g4 +I0 +sa(dp3801 +g4 +I0 +sa(dp3802 +g4 +I0 +sa(dp3803 +g4 +I0 +sa(dp3804 +g4 +I0 +sa(dp3805 +g4 +I1 +sa(dp3806 +g4 +I0 +sa(dp3807 +g4 +I0 +sa(dp3808 +g4 +I0 +sa(dp3809 +g4 +I1 +sa(dp3810 +g4 +I0 +sa(dp3811 +g4 +I0 +sa(dp3812 +g4 +I1 +sa(dp3813 +g4 +I0 +sa(dp3814 +g4 +I0 +sa(dp3815 +g4 +I0 +sa(dp3816 +g4 +I1 +sa(dp3817 +g4 +I0 +sa(dp3818 +g4 +I0 +sa(dp3819 +g4 +I0 +sa(dp3820 +g4 +I0 +sa(dp3821 +g4 +I1 +sa(dp3822 +g4 +I0 +sa(dp3823 +g4 +I0 +sa(dp3824 +g4 +I0 +sa(dp3825 +g4 +I1 +sa(dp3826 +g4 +I1 +sa(dp3827 +g4 +I0 +sa(dp3828 +g4 +I0 +sa(dp3829 +g4 +I0 +sa(dp3830 +g4 +I0 +sa(dp3831 +g4 +I1 +sa(dp3832 +g4 +I0 +sa(dp3833 +g4 +I0 +sa(dp3834 +g4 +I0 +sa(dp3835 +g4 +I0 +sa(dp3836 +g4 +I0 +sa(dp3837 +g4 +I0 +sa(dp3838 +g4 +I0 +sa(dp3839 +g4 +I0 +sa(dp3840 +g4 +I0 +sa(dp3841 +g4 +I0 +sa(dp3842 +g4 +I0 +sa(dp3843 +g4 +I0 +sa(dp3844 +g4 +I1 +sa(dp3845 +g4 +I0 +sa(dp3846 +g4 +I0 +sa(dp3847 +g4 +I0 +sa(dp3848 +g4 +I0 +sa(dp3849 +g4 +I0 +sa(dp3850 +g4 +I0 +sa(dp3851 +g4 +I0 +sa(dp3852 +g4 +I1 +sa(dp3853 +g4 +I0 +sa(dp3854 +g4 +I0 +sa(dp3855 +g4 +I1 +sa(dp3856 +g4 +I0 +sa(dp3857 +g4 +I0 +sa(dp3858 +g4 +I1 +sa(dp3859 +g4 +I0 +sa(dp3860 +g4 +I0 +sa(dp3861 +g4 +I1 +sa(dp3862 +g4 +I1 +sa(dp3863 +g4 +I0 +sa(dp3864 +g4 +I0 +sa(dp3865 +g4 +I0 +sa(dp3866 +g4 +I0 +sa(dp3867 +g4 +I1 +sa(dp3868 +g4 +I0 +sa(dp3869 +g4 +I1 +sa(dp3870 +g4 +I0 +sa(dp3871 +g4 +I0 +sa(dp3872 +g4 +I0 +sa(dp3873 +g4 +I0 +sa(dp3874 +g4 +I0 +sa(dp3875 +g4 +I0 +sa(dp3876 +g4 +I0 +sa(dp3877 +g4 +I0 +sa(dp3878 +g4 +I0 +sa(dp3879 +g4 +I0 +sa(dp3880 +g4 +I1 +sa(dp3881 +g4 +I0 +sa(dp3882 +g4 +I1 +sa(dp3883 +g4 +I0 +sa(dp3884 +g4 +I1 +sa(dp3885 +g4 +I0 +sa(dp3886 +g4 +I0 +sa(dp3887 +g4 +I0 +sa(dp3888 +g4 +I0 +sa(dp3889 +g4 +I1 +sa(dp3890 +g4 +I0 +sa(dp3891 +g4 +I0 +sa(dp3892 +g4 +I0 +sa(dp3893 +g4 +I0 +sa(dp3894 +g4 +I0 +sa(dp3895 +g4 +I0 +sa(dp3896 +g4 +I0 +sa(dp3897 +g4 +I0 +sa(dp3898 +g4 +I1 +sa(dp3899 +g4 +I0 +sa(dp3900 +g4 +I0 +sa(dp3901 +g4 +I0 +sa(dp3902 +g4 +I1 +sa(dp3903 +g4 +I0 +sa(dp3904 +g4 +I0 +sa(dp3905 +g4 +I0 +sa(dp3906 +g4 +I0 +sa(dp3907 +g4 +I0 +sa(dp3908 +g4 +I1 +sa(dp3909 +g4 +I1 +sa(dp3910 +g4 +I1 +sa(dp3911 +g4 +I0 +sa(dp3912 +g4 +I1 +sa(dp3913 +g4 +I1 +sa(dp3914 +g4 +I0 +sa(dp3915 +g4 +I0 +sa(dp3916 +g4 +I0 +sa(dp3917 +g4 +I0 +sa(dp3918 +g4 +I0 +sa(dp3919 +g4 +I1 +sa(dp3920 +g4 +I1 +sa(dp3921 +g4 +I0 +sa(dp3922 +g4 +I0 +sa(dp3923 +g4 +I1 +sa(dp3924 +g4 +I1 +sa(dp3925 +g4 +I0 +sa(dp3926 +g4 +I0 +sa(dp3927 +g4 +I0 +sa(dp3928 +g4 +I1 +sa(dp3929 +g4 +I0 +sa(dp3930 +g4 +I0 +sa(dp3931 +g4 +I1 +sa(dp3932 +g4 +I1 +sa(dp3933 +g4 +I1 +sa(dp3934 +g4 +I0 +sa(dp3935 +g4 +I1 +sa(dp3936 +g4 +I0 +sa(dp3937 +g4 +I0 +sa(dp3938 +g4 +I1 +sa(dp3939 +g4 +I1 +sa(dp3940 +g4 +I0 +sa(dp3941 +g4 +I0 +sa(dp3942 +g4 +I0 +sa(dp3943 +g4 +I0 +sa(dp3944 +g4 +I0 +sa(dp3945 +g4 +I0 +sa(dp3946 +g4 +I1 +sa(dp3947 +g4 +I0 +sa(dp3948 +g4 +I0 +sa(dp3949 +g4 +I0 +sa(dp3950 +g4 +I0 +sa(dp3951 +g4 +I0 +sa(dp3952 +g4 +I1 +sa(dp3953 +g4 +I1 +sa(dp3954 +g4 +I1 +sa(dp3955 +g4 +I1 +sa(dp3956 +g4 +I0 +sa(dp3957 +g4 +I1 +sa(dp3958 +g4 +I0 +sa(dp3959 +g4 +I0 +sa(dp3960 +g4 +I1 +sa(dp3961 +g4 +I1 +sa(dp3962 +g4 +I1 +sa(dp3963 +g4 +I0 +sa(dp3964 +g4 +I1 +sa(dp3965 +g4 +I1 +sa(dp3966 +g4 +I1 +sa(dp3967 +g4 +I0 +sa(dp3968 +g4 +I0 +sa(dp3969 +g4 +I1 +sa(dp3970 +g4 +I0 +sa(dp3971 +g4 +I0 +sa(dp3972 +g4 +I0 +sa(dp3973 +g4 +I1 +sa(dp3974 +g4 +I0 +sa(dp3975 +g4 +I1 +sa(dp3976 +g4 +I1 +sa(dp3977 +g4 +I0 +sa(dp3978 +g4 +I0 +sa(dp3979 +g4 +I0 +sa(dp3980 +g4 +I0 +sa(dp3981 +g4 +I0 +sa(dp3982 +g4 +I0 +sa(dp3983 +g4 +I1 +sa(dp3984 +g4 +I0 +sa(dp3985 +g4 +I1 +sa(dp3986 +g4 +I0 +sa(dp3987 +g4 +I1 +sa(dp3988 +g4 +I1 +sa(dp3989 +g4 +I0 +sa(dp3990 +g4 +I1 +sa(dp3991 +g4 +I1 +sa(dp3992 +g4 +I0 +sa(dp3993 +g4 +I0 +sa(dp3994 +g4 +I0 +sa(dp3995 +g4 +I1 +sa(dp3996 +g4 +I0 +sa(dp3997 +g4 +I1 +sa(dp3998 +g4 +I0 +sa(dp3999 +g4 +I0 +sa(dp4000 +g4 +I1 +sa(dp4001 +g4 +I1 +sa(dp4002 +g4 +I0 +sa(dp4003 +g4 +I0 +sa(dp4004 +g4 +I0 +sa(dp4005 +g4 +I1 +sa(dp4006 +g4 +I1 +sa(dp4007 +g4 +I1 +sa(dp4008 +g4 +I0 +sa(dp4009 +g4 +I0 +sa(dp4010 +g4 +I0 +sa(dp4011 +g4 +I0 +sa(dp4012 +g4 +I0 +sa(dp4013 +g4 +I0 +sa(dp4014 +g4 +I1 +sa(dp4015 +g4 +I0 +sa(dp4016 +g4 +I1 +sa(dp4017 +g4 +I0 +sa(dp4018 +g4 +I0 +sa(dp4019 +g4 +I0 +sa(dp4020 +g4 +I0 +sa(dp4021 +g4 +I1 +sa(dp4022 +g4 +I0 +sa(dp4023 +g4 +I0 +sa(dp4024 +g4 +I1 +sa(dp4025 +g4 +I1 +sa(dp4026 +g4 +I1 +sa(dp4027 +g4 +I0 +sa(dp4028 +g4 +I1 +sa(dp4029 +g4 +I1 +sa(dp4030 +g4 +I1 +sa(dp4031 +g4 +I1 +sa(dp4032 +g4 +I1 +sa(dp4033 +g4 +I0 +sa(dp4034 +g4 +I0 +sa(dp4035 +g4 +I0 +sa(dp4036 +g4 +I1 +sa(dp4037 +g4 +I1 +sa(dp4038 +g4 +I0 +sa(dp4039 +g4 +I0 +sa(dp4040 +g4 +I0 +sa(dp4041 +g4 +I0 +sa(dp4042 +g4 +I0 +sa(dp4043 +g4 +I0 +sa(dp4044 +g4 +I1 +sa(dp4045 +g4 +I1 +sa(dp4046 +g4 +I0 +sa(dp4047 +g4 +I1 +sa(dp4048 +g4 +I0 +sa(dp4049 +g4 +I0 +sa(dp4050 +g4 +I0 +sa(dp4051 +g4 +I0 +sa(dp4052 +g4 +I1 +sa(dp4053 +g4 +I0 +sa(dp4054 +g4 +I1 +sa(dp4055 +g4 +I1 +sa(dp4056 +g4 +I1 +sa(dp4057 +g4 +I0 +sa(dp4058 +g4 +I1 +sa(dp4059 +g4 +I1 +sa(dp4060 +g4 +I1 +sa(dp4061 +g4 +I0 +sa(dp4062 +g4 +I0 +sa(dp4063 +g4 +I1 +sa(dp4064 +g4 +I1 +sa(dp4065 +g4 +I0 +sa(dp4066 +g4 +I1 +sa(dp4067 +g4 +I0 +sa(dp4068 +g4 +I0 +sa(dp4069 +g4 +I1 +sa(dp4070 +g4 +I1 +sa(dp4071 +g4 +I1 +sa(dp4072 +g4 +I1 +sa(dp4073 +g4 +I0 +sa(dp4074 +g4 +I1 +sa(dp4075 +g4 +I0 +sa(dp4076 +g4 +I1 +sa(dp4077 +g4 +I1 +sa(dp4078 +g4 +I1 +sa(dp4079 +g4 +I1 +sa(dp4080 +g4 +I0 +sa(dp4081 +g4 +I0 +sa(dp4082 +g4 +I1 +sa(dp4083 +g4 +I0 +sa(dp4084 +g4 +I1 +sa(dp4085 +g4 +I1 +sa(dp4086 +g4 +I0 +sa(dp4087 +g4 +I1 +sa(dp4088 +g4 +I1 +sa(dp4089 +g4 +I0 +sa(dp4090 +g4 +I1 +sa(dp4091 +g4 +I0 +sa(dp4092 +g4 +I1 +sa(dp4093 +g4 +I0 +sa(dp4094 +g4 +I0 +sa(dp4095 +g4 +I1 +sa(dp4096 +g4 +I0 +sa(dp4097 +g4 +I1 +sa(dp4098 +g4 +I1 +sa(dp4099 +g4 +I0 +sa(dp4100 +g4 +I0 +sa(dp4101 +g4 +I0 +sa(dp4102 +g4 +I0 +sa(dp4103 +g4 +I1 +sa(dp4104 +g4 +I1 +sa(dp4105 +g4 +I0 +sa(dp4106 +g4 +I0 +sa(dp4107 +g4 +I1 +sa(dp4108 +g4 +I1 +sa(dp4109 +g4 +I0 +sa(dp4110 +g4 +I1 +sa(dp4111 +g4 +I0 +sa(dp4112 +g4 +I0 +sa(dp4113 +g4 +I1 +sa(dp4114 +g4 +I0 +sa(dp4115 +g4 +I1 +sa(dp4116 +g4 +I1 +sa(dp4117 +g4 +I0 +sa(dp4118 +g4 +I1 +sa(dp4119 +g4 +I1 +sa(dp4120 +g4 +I0 +sa(dp4121 +g4 +I0 +sa(dp4122 +g4 +I0 +sa(dp4123 +g4 +I0 +sa(dp4124 +g4 +I0 +sa(dp4125 +g4 +I1 +sa(dp4126 +g4 +I1 +sa(dp4127 +g4 +I0 +sa(dp4128 +g4 +I0 +sa(dp4129 +g4 +I0 +sa(dp4130 +g4 +I1 +sa(dp4131 +g4 +I0 +sa(dp4132 +g4 +I1 +sa(dp4133 +g4 +I0 +sa(dp4134 +g4 +I0 +sa(dp4135 +g4 +I1 +sa(dp4136 +g4 +I1 +sa(dp4137 +g4 +I0 +sa(dp4138 +g4 +I0 +sa(dp4139 +g4 +I1 +sa(dp4140 +g4 +I1 +sa(dp4141 +g4 +I0 +sa(dp4142 +g4 +I1 +sa(dp4143 +g4 +I0 +sa(dp4144 +g4 +I0 +sa(dp4145 +g4 +I0 +sa(dp4146 +g4 +I1 +sa(dp4147 +g4 +I0 +sa(dp4148 +g4 +I1 +sa(dp4149 +g4 +I1 +sa(dp4150 +g4 +I0 +sa(dp4151 +g4 +I1 +sa(dp4152 +g4 +I1 +sa(dp4153 +g4 +I1 +sa(dp4154 +g4 +I0 +sa(dp4155 +g4 +I1 +sa(dp4156 +g4 +I1 +sa(dp4157 +g4 +I0 +sa(dp4158 +g4 +I1 +sa(dp4159 +g4 +I0 +sa(dp4160 +g4 +I0 +sa(dp4161 +g4 +I0 +sa(dp4162 +g4 +I1 +sa(dp4163 +g4 +I0 +sa(dp4164 +g4 +I1 +sa(dp4165 +g4 +I1 +sa(dp4166 +g4 +I0 +sa(dp4167 +g4 +I1 +sa(dp4168 +g4 +I0 +sa(dp4169 +g4 +I1 +sa(dp4170 +g4 +I1 +sa(dp4171 +g4 +I1 +sa(dp4172 +g4 +I1 +sa(dp4173 +g4 +I1 +sa(dp4174 +g4 +I1 +sa(dp4175 +g4 +I1 +sa(dp4176 +g4 +I0 +sa(dp4177 +g4 +I1 +sa(dp4178 +g4 +I0 +sa(dp4179 +g4 +I0 +sa(dp4180 +g4 +I0 +sa(dp4181 +g4 +I1 +sa(dp4182 +g4 +I0 +sa(dp4183 +g4 +I1 +sa(dp4184 +g4 +I0 +sa(dp4185 +g4 +I1 +sa(dp4186 +g4 +I0 +sa(dp4187 +g4 +I1 +sa(dp4188 +g4 +I1 +sa(dp4189 +g4 +I0 +sa(dp4190 +g4 +I1 +sa(dp4191 +g4 +I0 +sa(dp4192 +g4 +I1 +sa(dp4193 +g4 +I1 +sa(dp4194 +g4 +I1 +sa(dp4195 +g4 +I0 +sa(dp4196 +g4 +I1 +sa(dp4197 +g4 +I0 +sa(dp4198 +g4 +I0 +sa(dp4199 +g4 +I1 +sa(dp4200 +g4 +I0 +sa(dp4201 +g4 +I1 +sa(dp4202 +g4 +I1 +sa(dp4203 +g4 +I0 +sa(dp4204 +g4 +I1 +sa(dp4205 +g4 +I1 +sa(dp4206 +g4 +I0 +sa(dp4207 +g4 +I0 +sa(dp4208 +g4 +I0 +sa(dp4209 +g4 +I1 +sa(dp4210 +g4 +I0 +sa(dp4211 +g4 +I0 +sa(dp4212 +g4 +I1 +sa(dp4213 +g4 +I0 +sa(dp4214 +g4 +I0 +sa(dp4215 +g4 +I1 +sa(dp4216 +g4 +I0 +sa(dp4217 +g4 +I1 +sa(dp4218 +g4 +I1 +sa(dp4219 +g4 +I1 +sa(dp4220 +g4 +I1 +sa(dp4221 +g4 +I0 +sa(dp4222 +g4 +I0 +sa(dp4223 +g4 +I1 +sa(dp4224 +g4 +I0 +sa(dp4225 +g4 +I0 +sa(dp4226 +g4 +I1 +sa(dp4227 +g4 +I0 +sa(dp4228 +g4 +I0 +sa(dp4229 +g4 +I1 +sa(dp4230 +g4 +I1 +sa(dp4231 +g4 +I0 +sa(dp4232 +g4 +I0 +sa(dp4233 +g4 +I0 +sa(dp4234 +g4 +I0 +sa(dp4235 +g4 +I0 +sa(dp4236 +g4 +I1 +sa(dp4237 +g4 +I1 +sa(dp4238 +g4 +I1 +sa(dp4239 +g4 +I1 +sa(dp4240 +g4 +I0 +sa(dp4241 +g4 +I0 +sa(dp4242 +g4 +I1 +sa(dp4243 +g4 +I1 +sa(dp4244 +g4 +I0 +sa(dp4245 +g4 +I1 +sa(dp4246 +g4 +I1 +sa(dp4247 +g4 +I0 +sa(dp4248 +g4 +I1 +sa(dp4249 +g4 +I0 +sa(dp4250 +g4 +I1 +sa(dp4251 +g4 +I0 +sa(dp4252 +g4 +I0 +sa(dp4253 +g4 +I0 +sa(dp4254 +g4 +I1 +sa(dp4255 +g4 +I1 +sa(dp4256 +g4 +I0 +sa(dp4257 +g4 +I1 +sa(dp4258 +g4 +I1 +sa(dp4259 +g4 +I1 +sa(dp4260 +g4 +I1 +sa(dp4261 +g4 +I0 +sa(dp4262 +g4 +I0 +sa(dp4263 +g4 +I0 +sa(dp4264 +g4 +I1 +sa(dp4265 +g4 +I1 +sa(dp4266 +g4 +I1 +sa(dp4267 +g4 +I1 +sa(dp4268 +g4 +I0 +sa(dp4269 +g4 +I1 +sa(dp4270 +g4 +I1 +sa(dp4271 +g4 +I1 +sa(dp4272 +g4 +I1 +sa(dp4273 +g4 +I0 +sa(dp4274 +g4 +I0 +sa(dp4275 +g4 +I1 +sa(dp4276 +g4 +I1 +sa(dp4277 +g4 +I1 +sa(dp4278 +g4 +I0 +sa(dp4279 +g4 +I1 +sa(dp4280 +g4 +I1 +sa(dp4281 +g4 +I0 +sa(dp4282 +g4 +I0 +sa(dp4283 +g4 +I1 +sa(dp4284 +g4 +I1 +sa(dp4285 +g4 +I0 +sa(dp4286 +g4 +I1 +sa(dp4287 +g4 +I1 +sa(dp4288 +g4 +I1 +sa(dp4289 +g4 +I0 +sa(dp4290 +g4 +I1 +sa(dp4291 +g4 +I1 +sa(dp4292 +g4 +I0 +sa(dp4293 +g4 +I0 +sa(dp4294 +g4 +I1 +sa(dp4295 +g4 +I1 +sa(dp4296 +g4 +I1 +sa(dp4297 +g4 +I1 +sa(dp4298 +g4 +I0 +sa(dp4299 +g4 +I0 +sa(dp4300 +g4 +I1 +sa(dp4301 +g4 +I0 +sa(dp4302 +g4 +I1 +sa(dp4303 +g4 +I0 +sa(dp4304 +g4 +I1 +sa(dp4305 +g4 +I0 +sa(dp4306 +g4 +I0 +sa(dp4307 +g4 +I1 +sa(dp4308 +g4 +I0 +sa(dp4309 +g4 +I0 +sa(dp4310 +g4 +I1 +sa(dp4311 +g4 +I0 +sa(dp4312 +g4 +I0 +sa(dp4313 +g4 +I0 +sa(dp4314 +g4 +I0 +sa(dp4315 +g4 +I0 +sa(dp4316 +g4 +I1 +sa(dp4317 +g4 +I0 +sa(dp4318 +g4 +I0 +sa(dp4319 +g4 +I0 +sa(dp4320 +g4 +I0 +sa(dp4321 +g4 +I0 +sa(dp4322 +g4 +I0 +sa(dp4323 +g4 +I0 +sa(dp4324 +g4 +I1 +sa(dp4325 +g4 +I0 +sa(dp4326 +g4 +I0 +sa(dp4327 +g4 +I0 +sa(dp4328 +g4 +I1 +sa(dp4329 +g4 +I1 +sa(dp4330 +g4 +I0 +sa(dp4331 +g4 +I1 +sa(dp4332 +g4 +I0 +sa(dp4333 +g4 +I1 +sa(dp4334 +g4 +I0 +sa(dp4335 +g4 +I0 +sa(dp4336 +g4 +I1 +sa(dp4337 +g4 +I1 +sa(dp4338 +g4 +I1 +sa(dp4339 +g4 +I0 +sa(dp4340 +g4 +I0 +sa(dp4341 +g4 +I0 +sa(dp4342 +g4 +I1 +sa(dp4343 +g4 +I0 +sa(dp4344 +g4 +I0 +sa(dp4345 +g4 +I1 +sa(dp4346 +g4 +I1 +sa(dp4347 +g4 +I1 +sa(dp4348 +g4 +I0 +sa(dp4349 +g4 +I0 +sa(dp4350 +g4 +I1 +sa(dp4351 +g4 +I0 +sa(dp4352 +g4 +I0 +sa(dp4353 +g4 +I1 +sa(dp4354 +g4 +I0 +sa(dp4355 +g4 +I1 +sa(dp4356 +g4 +I1 +sa(dp4357 +g4 +I1 +sa(dp4358 +g4 +I0 +sa(dp4359 +g4 +I0 +sa(dp4360 +g4 +I1 +sa(dp4361 +g4 +I0 +sa(dp4362 +g4 +I0 +sa(dp4363 +g4 +I1 +sa(dp4364 +g4 +I0 +sa(dp4365 +g4 +I1 +sa(dp4366 +g4 +I0 +sa(dp4367 +g4 +I1 +sa(dp4368 +g4 +I1 +sa(dp4369 +g4 +I1 +sa(dp4370 +g4 +I0 +sa(dp4371 +g4 +I1 +sa(dp4372 +g4 +I1 +sa(dp4373 +g4 +I1 +sa(dp4374 +g4 +I1 +sa(dp4375 +g4 +I0 +sa(dp4376 +g4 +I0 +sa(dp4377 +g4 +I0 +sa(dp4378 +g4 +I1 +sa(dp4379 +g4 +I0 +sa(dp4380 +g4 +I1 +sa(dp4381 +g4 +I1 +sa(dp4382 +g4 +I1 +sa(dp4383 +g4 +I1 +sa(dp4384 +g4 +I0 +sa(dp4385 +g4 +I0 +sa(dp4386 +g4 +I0 +sa(dp4387 +g4 +I0 +sa(dp4388 +g4 +I1 +sa(dp4389 +g4 +I1 +sa(dp4390 +g4 +I0 +sa(dp4391 +g4 +I0 +sa(dp4392 +g4 +I1 +sa(dp4393 +g4 +I0 +sa(dp4394 +g4 +I1 +sa(dp4395 +g4 +I1 +sa(dp4396 +g4 +I1 +sa(dp4397 +g4 +I1 +sa(dp4398 +g4 +I1 +sa(dp4399 +g4 +I0 +sa(dp4400 +g4 +I0 +sa(dp4401 +g4 +I0 +sa(dp4402 +g4 +I0 +sa(dp4403 +g4 +I0 +sa(dp4404 +g4 +I0 +sa(dp4405 +g4 +I0 +sa(dp4406 +g4 +I1 +sa(dp4407 +g4 +I1 +sa(dp4408 +g4 +I0 +sa(dp4409 +g4 +I1 +sa(dp4410 +g4 +I0 +sa(dp4411 +g4 +I0 +sa(dp4412 +g4 +I0 +sa(dp4413 +g4 +I0 +sa(dp4414 +g4 +I1 +sa(dp4415 +g4 +I0 +sa(dp4416 +g4 +I1 +sa(dp4417 +g4 +I0 +sa(dp4418 +g4 +I0 +sa(dp4419 +g4 +I1 +sa(dp4420 +g4 +I1 +sa(dp4421 +g4 +I1 +sa(dp4422 +g4 +I1 +sa(dp4423 +g4 +I1 +sa(dp4424 +g4 +I1 +sa(dp4425 +g4 +I1 +sa(dp4426 +g4 +I1 +sa(dp4427 +g4 +I1 +sa(dp4428 +g4 +I0 +sa(dp4429 +g4 +I0 +sa(dp4430 +g4 +I1 +sa(dp4431 +g4 +I0 +sa(dp4432 +g4 +I1 +sa(dp4433 +g4 +I0 +sa(dp4434 +g4 +I0 +sa(dp4435 +g4 +I1 +sa(dp4436 +g4 +I0 +sa(dp4437 +g4 +I1 +sa(dp4438 +g4 +I1 +sa(dp4439 +g4 +I1 +sa(dp4440 +g4 +I0 +sa(dp4441 +g4 +I0 +sa(dp4442 +g4 +I0 +sa(dp4443 +g4 +I1 +sa(dp4444 +g4 +I1 +sa(dp4445 +g4 +I1 +sa(dp4446 +g4 +I1 +sa(dp4447 +g4 +I0 +sa(dp4448 +g4 +I1 +sa(dp4449 +g4 +I0 +sa(dp4450 +g4 +I0 +sa(dp4451 +g4 +I0 +sa(dp4452 +g4 +I0 +sa(dp4453 +g4 +I0 +sa(dp4454 +g4 +I0 +sa(dp4455 +g4 +I0 +sa(dp4456 +g4 +I0 +sa(dp4457 +g4 +I0 +sa(dp4458 +g4 +I0 +sa(dp4459 +g4 +I0 +sa(dp4460 +g4 +I1 +sa(dp4461 +g4 +I0 +sa(dp4462 +g4 +I0 +sa(dp4463 +g4 +I0 +sa(dp4464 +g4 +I1 +sa(dp4465 +g4 +I1 +sa(dp4466 +g4 +I1 +sa(dp4467 +g4 +I1 +sa(dp4468 +g4 +I0 +sa(dp4469 +g4 +I1 +sa(dp4470 +g4 +I0 +sa(dp4471 +g4 +I1 +sa(dp4472 +g4 +I0 +sa(dp4473 +g4 +I0 +sa(dp4474 +g4 +I0 +sa(dp4475 +g4 +I1 +sa(dp4476 +g4 +I0 +sa(dp4477 +g4 +I1 +sa(dp4478 +g4 +I1 +sa(dp4479 +g4 +I0 +sa(dp4480 +g4 +I1 +sa(dp4481 +g4 +I1 +sa(dp4482 +g4 +I1 +sa(dp4483 +g4 +I0 +sa(dp4484 +g4 +I0 +sa(dp4485 +g4 +I1 +sa(dp4486 +g4 +I0 +sa(dp4487 +g4 +I1 +sa(dp4488 +g4 +I1 +sa(dp4489 +g4 +I1 +sa(dp4490 +g4 +I0 +sa(dp4491 +g4 +I0 +sa(dp4492 +g4 +I0 +sa(dp4493 +g4 +I0 +sa(dp4494 +g4 +I1 +sa(dp4495 +g4 +I1 +sa(dp4496 +g4 +I1 +sa(dp4497 +g4 +I1 +sa(dp4498 +g4 +I1 +sa(dp4499 +g4 +I0 +sa(dp4500 +g4 +I1 +sa(dp4501 +g4 +I1 +sa(dp4502 +g4 +I1 +sa(dp4503 +g4 +I0 +sa(dp4504 +g4 +I0 +sa(dp4505 +g4 +I1 +sa(dp4506 +g4 +I1 +sa(dp4507 +g4 +I1 +sa(dp4508 +g4 +I0 +sa(dp4509 +g4 +I0 +sa(dp4510 +g4 +I0 +sa(dp4511 +g4 +I1 +sa(dp4512 +g4 +I1 +sa(dp4513 +g4 +I0 +sa(dp4514 +g4 +I1 +sa(dp4515 +g4 +I1 +sa(dp4516 +g4 +I0 +sa(dp4517 +g4 +I1 +sa(dp4518 +g4 +I1 +sa(dp4519 +g4 +I1 +sa(dp4520 +g4 +I0 +sa(dp4521 +g4 +I1 +sa(dp4522 +g4 +I0 +sa(dp4523 +g4 +I0 +sa(dp4524 +g4 +I0 +sa(dp4525 +g4 +I0 +sa(dp4526 +g4 +I1 +sa(dp4527 +g4 +I0 +sa(dp4528 +g4 +I0 +sa(dp4529 +g4 +I1 +sa(dp4530 +g4 +I0 +sa(dp4531 +g4 +I0 +sa(dp4532 +g4 +I1 +sa(dp4533 +g4 +I1 +sa(dp4534 +g4 +I1 +sa(dp4535 +g4 +I1 +sa(dp4536 +g4 +I0 +sa(dp4537 +g4 +I1 +sa(dp4538 +g4 +I1 +sa(dp4539 +g4 +I0 +sa(dp4540 +g4 +I1 +sa(dp4541 +g4 +I1 +sa(dp4542 +g4 +I1 +sa(dp4543 +g4 +I1 +sa(dp4544 +g4 +I1 +sa(dp4545 +g4 +I0 +sa(dp4546 +g4 +I0 +sa(dp4547 +g4 +I1 +sa(dp4548 +g4 +I1 +sa(dp4549 +g4 +I0 +sa(dp4550 +g4 +I0 +sa(dp4551 +g4 +I1 +sa(dp4552 +g4 +I0 +sa(dp4553 +g4 +I1 +sa(dp4554 +g4 +I1 +sa(dp4555 +g4 +I1 +sa(dp4556 +g4 +I1 +sa(dp4557 +g4 +I1 +sa(dp4558 +g4 +I0 +sa(dp4559 +g4 +I0 +sa(dp4560 +g4 +I0 +sa(dp4561 +g4 +I0 +sa(dp4562 +g4 +I1 +sa(dp4563 +g4 +I1 +sa(dp4564 +g4 +I0 +sa(dp4565 +g4 +I0 +sa(dp4566 +g4 +I0 +sa(dp4567 +g4 +I0 +sa(dp4568 +g4 +I1 +sa(dp4569 +g4 +I0 +sa(dp4570 +g4 +I0 +sa(dp4571 +g4 +I0 +sa(dp4572 +g4 +I1 +sa(dp4573 +g4 +I1 +sa(dp4574 +g4 +I0 +sa(dp4575 +g4 +I0 +sa(dp4576 +g4 +I0 +sa(dp4577 +g4 +I0 +sa(dp4578 +g4 +I1 +sa(dp4579 +g4 +I0 +sa(dp4580 +g4 +I1 +sa(dp4581 +g4 +I0 +sa(dp4582 +g4 +I1 +sa(dp4583 +g4 +I0 +sa(dp4584 +g4 +I0 +sa(dp4585 +g4 +I1 +sa(dp4586 +g4 +I1 +sa(dp4587 +g4 +I1 +sa(dp4588 +g4 +I0 +sa(dp4589 +g4 +I0 +sa(dp4590 +g4 +I0 +sa(dp4591 +g4 +I0 +sa(dp4592 +g4 +I1 +sa(dp4593 +g4 +I1 +sa(dp4594 +g4 +I0 +sa(dp4595 +g4 +I0 +sa(dp4596 +g4 +I0 +sa(dp4597 +g4 +I1 +sa(dp4598 +g4 +I0 +sa(dp4599 +g4 +I1 +sa(dp4600 +g4 +I0 +sa(dp4601 +g4 +I1 +sa(dp4602 +g4 +I0 +sa(dp4603 +g4 +I0 +sa(dp4604 +g4 +I0 +sa(dp4605 +g4 +I1 +sa(dp4606 +g4 +I0 +sa(dp4607 +g4 +I1 +sa(dp4608 +g4 +I0 +sa(dp4609 +g4 +I1 +sa(dp4610 +g4 +I1 +sa(dp4611 +g4 +I0 +sa(dp4612 +g4 +I1 +sa(dp4613 +g4 +I0 +sa(dp4614 +g4 +I1 +sa(dp4615 +g4 +I1 +sa(dp4616 +g4 +I0 +sa(dp4617 +g4 +I1 +sa(dp4618 +g4 +I0 +sa(dp4619 +g4 +I1 +sa(dp4620 +g4 +I0 +sa(dp4621 +g4 +I0 +sa(dp4622 +g4 +I1 +sa(dp4623 +g4 +I1 +sa(dp4624 +g4 +I0 +sa(dp4625 +g4 +I1 +sa(dp4626 +g4 +I0 +sa(dp4627 +g4 +I1 +sa(dp4628 +g4 +I1 +sa(dp4629 +g4 +I1 +sa(dp4630 +g4 +I1 +sa(dp4631 +g4 +I0 +sa(dp4632 +g4 +I0 +sa(dp4633 +g4 +I1 +sa(dp4634 +g4 +I0 +sa(dp4635 +g4 +I1 +sa(dp4636 +g4 +I1 +sa(dp4637 +g4 +I0 +sa(dp4638 +g4 +I1 +sa(dp4639 +g4 +I1 +sa(dp4640 +g4 +I1 +sa(dp4641 +g4 +I1 +sa(dp4642 +g4 +I0 +sa(dp4643 +g4 +I0 +sa(dp4644 +g4 +I1 +sa(dp4645 +g4 +I0 +sa(dp4646 +g4 +I0 +sa(dp4647 +g4 +I0 +sa(dp4648 +g4 +I0 +sa(dp4649 +g4 +I0 +sa(dp4650 +g4 +I1 +sa(dp4651 +g4 +I0 +sa(dp4652 +g4 +I1 +sa(dp4653 +g4 +I1 +sa(dp4654 +g4 +I1 +sa(dp4655 +g4 +I0 +sa(dp4656 +g4 +I1 +sa(dp4657 +g4 +I0 +sa(dp4658 +g4 +I1 +sa(dp4659 +g4 +I1 +sa(dp4660 +g4 +I1 +sa(dp4661 +g4 +I1 +sa(dp4662 +g4 +I1 +sa(dp4663 +g4 +I0 +sa(dp4664 +g4 +I1 +sa(dp4665 +g4 +I1 +sa(dp4666 +g4 +I1 +sa(dp4667 +g4 +I0 +sa(dp4668 +g4 +I0 +sa(dp4669 +g4 +I1 +sa(dp4670 +g4 +I0 +sa(dp4671 +g4 +I1 +sa(dp4672 +g4 +I1 +sa(dp4673 +g4 +I1 +sa(dp4674 +g4 +I1 +sa(dp4675 +g4 +I1 +sa(dp4676 +g4 +I0 +sa(dp4677 +g4 +I0 +sa(dp4678 +g4 +I1 +sa(dp4679 +g4 +I1 +sa(dp4680 +g4 +I1 +sa(dp4681 +g4 +I0 +sa(dp4682 +g4 +I1 +sa(dp4683 +g4 +I1 +sa(dp4684 +g4 +I0 +sa(dp4685 +g4 +I0 +sa(dp4686 +g4 +I1 +sa(dp4687 +g4 +I1 +sa(dp4688 +g4 +I0 +sa(dp4689 +g4 +I0 +sa(dp4690 +g4 +I1 +sa(dp4691 +g4 +I1 +sa(dp4692 +g4 +I0 +sa(dp4693 +g4 +I1 +sa(dp4694 +g4 +I0 +sa(dp4695 +g4 +I1 +sa(dp4696 +g4 +I1 +sa(dp4697 +g4 +I1 +sa(dp4698 +g4 +I0 +sa(dp4699 +g4 +I1 +sa(dp4700 +g4 +I1 +sa(dp4701 +g4 +I1 +sa(dp4702 +g4 +I1 +sa(dp4703 +g4 +I1 +sa(dp4704 +g4 +I0 +sa(dp4705 +g4 +I1 +sa(dp4706 +g4 +I0 +sa(dp4707 +g4 +I0 +sa(dp4708 +g4 +I0 +sa(dp4709 +g4 +I1 +sa(dp4710 +g4 +I0 +sa(dp4711 +g4 +I0 +sa(dp4712 +g4 +I0 +sa(dp4713 +g4 +I0 +sa(dp4714 +g4 +I0 +sa(dp4715 +g4 +I0 +sa(dp4716 +g4 +I0 +sa(dp4717 +g4 +I0 +sa(dp4718 +g4 +I0 +sa(dp4719 +g4 +I0 +sa(dp4720 +g4 +I1 +sa(dp4721 +g4 +I1 +sa(dp4722 +g4 +I1 +sa(dp4723 +g4 +I1 +sa(dp4724 +g4 +I0 +sa(dp4725 +g4 +I1 +sa(dp4726 +g4 +I1 +sa(dp4727 +g4 +I1 +sa(dp4728 +g4 +I1 +sa(dp4729 +g4 +I1 +sa(dp4730 +g4 +I1 +sa(dp4731 +g4 +I0 +sa(dp4732 +g4 +I0 +sa(dp4733 +g4 +I0 +sa(dp4734 +g4 +I1 +sa(dp4735 +g4 +I0 +sa(dp4736 +g4 +I1 +sa(dp4737 +g4 +I0 +sa(dp4738 +g4 +I1 +sa(dp4739 +g4 +I1 +sa(dp4740 +g4 +I1 +sa(dp4741 +g4 +I1 +sa(dp4742 +g4 +I0 +sa(dp4743 +g4 +I1 +sa(dp4744 +g4 +I0 +sa(dp4745 +g4 +I0 +sa(dp4746 +g4 +I0 +sa(dp4747 +g4 +I0 +sa(dp4748 +g4 +I1 +sa(dp4749 +g4 +I0 +sa(dp4750 +g4 +I1 +sa(dp4751 +g4 +I0 +sa(dp4752 +g4 +I1 +sa(dp4753 +g4 +I0 +sa(dp4754 +g4 +I1 +sa(dp4755 +g4 +I1 +sa(dp4756 +g4 +I1 +sa(dp4757 +g4 +I1 +sa(dp4758 +g4 +I1 +sa(dp4759 +g4 +I1 +sa(dp4760 +g4 +I0 +sa(dp4761 +g4 +I1 +sa(dp4762 +g4 +I0 +sa(dp4763 +g4 +I1 +sa(dp4764 +g4 +I0 +sa(dp4765 +g4 +I0 +sa(dp4766 +g4 +I0 +sa(dp4767 +g4 +I0 +sa(dp4768 +g4 +I1 +sa(dp4769 +g4 +I1 +sa(dp4770 +g4 +I0 +sa(dp4771 +g4 +I0 +sa(dp4772 +g4 +I0 +sa(dp4773 +g4 +I0 +sa(dp4774 +g4 +I0 +sa(dp4775 +g4 +I0 +sa(dp4776 +g4 +I0 +sa(dp4777 +g4 +I1 +sa(dp4778 +g4 +I0 +sa(dp4779 +g4 +I1 +sa(dp4780 +g4 +I0 +sa(dp4781 +g4 +I1 +sa(dp4782 +g4 +I1 +sa(dp4783 +g4 +I1 +sa(dp4784 +g4 +I0 +sa(dp4785 +g4 +I1 +sa(dp4786 +g4 +I0 +sa(dp4787 +g4 +I0 +sa(dp4788 +g4 +I1 +sa(dp4789 +g4 +I0 +sa(dp4790 +g4 +I0 +sa(dp4791 +g4 +I0 +sa(dp4792 +g4 +I1 +sa(dp4793 +g4 +I1 +sa(dp4794 +g4 +I0 +sa(dp4795 +g4 +I0 +sa(dp4796 +g4 +I1 +sa(dp4797 +g4 +I1 +sa(dp4798 +g4 +I1 +sa(dp4799 +g4 +I0 +sa(dp4800 +g4 +I1 +sa(dp4801 +g4 +I0 +sa(dp4802 +g4 +I1 +sa(dp4803 +g4 +I0 +sa(dp4804 +g4 +I0 +sa(dp4805 +g4 +I1 +sa(dp4806 +g4 +I0 +sa(dp4807 +g4 +I1 +sa(dp4808 +g4 +I1 +sa(dp4809 +g4 +I1 +sa(dp4810 +g4 +I1 +sa(dp4811 +g4 +I1 +sa(dp4812 +g4 +I0 +sa(dp4813 +g4 +I0 +sa(dp4814 +g4 +I0 +sa(dp4815 +g4 +I1 +sa(dp4816 +g4 +I1 +sa(dp4817 +g4 +I0 +sa(dp4818 +g4 +I1 +sa(dp4819 +g4 +I1 +sa(dp4820 +g4 +I1 +sa(dp4821 +g4 +I1 +sa(dp4822 +g4 +I0 +sa(dp4823 +g4 +I1 +sa(dp4824 +g4 +I1 +sa(dp4825 +g4 +I1 +sa(dp4826 +g4 +I0 +sa(dp4827 +g4 +I1 +sa(dp4828 +g4 +I0 +sa(dp4829 +g4 +I0 +sa(dp4830 +g4 +I1 +sa(dp4831 +g4 +I1 +sa(dp4832 +g4 +I0 +sa(dp4833 +g4 +I0 +sa(dp4834 +g4 +I0 +sa(dp4835 +g4 +I1 +sa(dp4836 +g4 +I1 +sa(dp4837 +g4 +I0 +sa(dp4838 +g4 +I0 +sa(dp4839 +g4 +I0 +sa(dp4840 +g4 +I0 +sa(dp4841 +g4 +I0 +sa(dp4842 +g4 +I1 +sa(dp4843 +g4 +I1 +sa(dp4844 +g4 +I1 +sa(dp4845 +g4 +I0 +sa(dp4846 +g4 +I0 +sa(dp4847 +g4 +I0 +sa(dp4848 +g4 +I0 +sa(dp4849 +g4 +I0 +sa(dp4850 +g4 +I0 +sa(dp4851 +g4 +I1 +sa(dp4852 +g4 +I0 +sa(dp4853 +g4 +I0 +sa(dp4854 +g4 +I1 +sa(dp4855 +g4 +I0 +sa(dp4856 +g4 +I0 +sa(dp4857 +g4 +I0 +sa(dp4858 +g4 +I1 +sa(dp4859 +g4 +I0 +sa(dp4860 +g4 +I0 +sa(dp4861 +g4 +I1 +sa(dp4862 +g4 +I1 +sa(dp4863 +g4 +I0 +sa(dp4864 +g4 +I1 +sa(dp4865 +g4 +I0 +sa(dp4866 +g4 +I0 +sa(dp4867 +g4 +I1 +sa(dp4868 +g4 +I1 +sa(dp4869 +g4 +I0 +sa(dp4870 +g4 +I0 +sa(dp4871 +g4 +I0 +sa(dp4872 +g4 +I0 +sa(dp4873 +g4 +I1 +sa(dp4874 +g4 +I0 +sa(dp4875 +g4 +I1 +sa(dp4876 +g4 +I0 +sa(dp4877 +g4 +I0 +sa(dp4878 +g4 +I1 +sa(dp4879 +g4 +I1 +sa(dp4880 +g4 +I1 +sa(dp4881 +g4 +I1 +sa(dp4882 +g4 +I1 +sa(dp4883 +g4 +I0 +sa(dp4884 +g4 +I1 +sa(dp4885 +g4 +I0 +sa(dp4886 +g4 +I0 +sa(dp4887 +g4 +I0 +sa(dp4888 +g4 +I0 +sa(dp4889 +g4 +I1 +sa(dp4890 +g4 +I1 +sa(dp4891 +g4 +I1 +sa(dp4892 +g4 +I0 +sa(dp4893 +g4 +I1 +sa(dp4894 +g4 +I0 +sa(dp4895 +g4 +I0 +sa(dp4896 +g4 +I0 +sa(dp4897 +g4 +I0 +sa(dp4898 +g4 +I0 +sa(dp4899 +g4 +I1 +sa(dp4900 +g4 +I1 +sa(dp4901 +g4 +I1 +sa(dp4902 +g4 +I0 +sa(dp4903 +g4 +I1 +sa(dp4904 +g4 +I1 +sa(dp4905 +g4 +I0 +sa(dp4906 +g4 +I0 +sa(dp4907 +g4 +I1 +sa(dp4908 +g4 +I1 +sa(dp4909 +g4 +I0 +sa(dp4910 +g4 +I1 +sa(dp4911 +g4 +I0 +sa(dp4912 +g4 +I0 +sa(dp4913 +g4 +I1 +sa(dp4914 +g4 +I1 +sa(dp4915 +g4 +I1 +sa(dp4916 +g4 +I0 +sa(dp4917 +g4 +I1 +sa(dp4918 +g4 +I0 +sa(dp4919 +g4 +I1 +sa(dp4920 +g4 +I1 +sa(dp4921 +g4 +I0 +sa(dp4922 +g4 +I1 +sa(dp4923 +g4 +I0 +sa(dp4924 +g4 +I0 +sa(dp4925 +g4 +I0 +sa(dp4926 +g4 +I1 +sa(dp4927 +g4 +I0 +sa(dp4928 +g4 +I1 +sa(dp4929 +g4 +I1 +sa(dp4930 +g4 +I1 +sa(dp4931 +g4 +I0 +sa(dp4932 +g4 +I0 +sa(dp4933 +g4 +I1 +sa(dp4934 +g4 +I1 +sa(dp4935 +g4 +I1 +sa(dp4936 +g4 +I0 +sa(dp4937 +g4 +I1 +sa(dp4938 +g4 +I1 +sa(dp4939 +g4 +I0 +sa(dp4940 +g4 +I0 +sa(dp4941 +g4 +I1 +sa(dp4942 +g4 +I1 +sa(dp4943 +g4 +I0 +sa(dp4944 +g4 +I0 +sa(dp4945 +g4 +I1 +sa(dp4946 +g4 +I0 +sa(dp4947 +g4 +I0 +sa(dp4948 +g4 +I0 +sa(dp4949 +g4 +I0 +sa(dp4950 +g4 +I1 +sa(dp4951 +g4 +I0 +sa(dp4952 +g4 +I0 +sa(dp4953 +g4 +I0 +sa(dp4954 +g4 +I1 +sa(dp4955 +g4 +I0 +sa(dp4956 +g4 +I0 +sa(dp4957 +g4 +I1 +sa(dp4958 +g4 +I1 +sa(dp4959 +g4 +I1 +sa(dp4960 +g4 +I0 +sa(dp4961 +g4 +I0 +sa(dp4962 +g4 +I1 +sa(dp4963 +g4 +I0 +sa(dp4964 +g4 +I0 +sa(dp4965 +g4 +I1 +sa(dp4966 +g4 +I0 +sa(dp4967 +g4 +I0 +sa(dp4968 +g4 +I0 +sa(dp4969 +g4 +I0 +sa(dp4970 +g4 +I0 +sa(dp4971 +g4 +I0 +sa(dp4972 +g4 +I1 +sa(dp4973 +g4 +I1 +sa(dp4974 +g4 +I1 +sa(dp4975 +g4 +I0 +sa(dp4976 +g4 +I0 +sa(dp4977 +g4 +I0 +sa(dp4978 +g4 +I0 +sa(dp4979 +g4 +I0 +sa(dp4980 +g4 +I0 +sa(dp4981 +g4 +I1 +sa(dp4982 +g4 +I1 +sa(dp4983 +g4 +I1 +sa(dp4984 +g4 +I1 +sa(dp4985 +g4 +I0 +sa(dp4986 +g4 +I1 +sa(dp4987 +g4 +I1 +sa(dp4988 +g4 +I0 +sa(dp4989 +g4 +I0 +sa(dp4990 +g4 +I1 +sa(dp4991 +g4 +I0 +sa(dp4992 +g4 +I1 +sa(dp4993 +g4 +I1 +sa(dp4994 +g4 +I0 +sa(dp4995 +g4 +I0 +sa(dp4996 +g4 +I1 +sa(dp4997 +g4 +I0 +sa(dp4998 +g4 +I0 +sa(dp4999 +g4 +I0 +sa(dp5000 +g4 +I1 +sa(dp5001 +g4 +I1 +sa(dp5002 +g4 +I0 +sa(dp5003 +g4 +I0 +sa(dp5004 +g4 +I0 +sa(dp5005 +g4 +I0 +sa(dp5006 +g4 +I0 +sa(dp5007 +g4 +I0 +sa(dp5008 +g4 +I1 +sa(dp5009 +g4 +I0 +sa(dp5010 +g4 +I0 +sa(dp5011 +g4 +I1 +sa(dp5012 +g4 +I1 +sa(dp5013 +g4 +I0 +sa(dp5014 +g4 +I1 +sa(dp5015 +g4 +I1 +sa(dp5016 +g4 +I1 +sa(dp5017 +g4 +I0 +sa(dp5018 +g4 +I1 +sa(dp5019 +g4 +I0 +sa(dp5020 +g4 +I0 +sa(dp5021 +g4 +I0 +sa(dp5022 +g4 +I1 +sa(dp5023 +g4 +I1 +sa(dp5024 +g4 +I0 +sa(dp5025 +g4 +I0 +sa(dp5026 +g4 +I1 +sa(dp5027 +g4 +I1 +sa(dp5028 +g4 +I1 +sa(dp5029 +g4 +I0 +sa(dp5030 +g4 +I1 +sa(dp5031 +g4 +I0 +sa(dp5032 +g4 +I0 +sa(dp5033 +g4 +I0 +sa(dp5034 +g4 +I0 +sa(dp5035 +g4 +I0 +sa(dp5036 +g4 +I1 +sa(dp5037 +g4 +I0 +sa(dp5038 +g4 +I0 +sa(dp5039 +g4 +I0 +sa(dp5040 +g4 +I0 +sa(dp5041 +g4 +I0 +sa(dp5042 +g4 +I1 +sa(dp5043 +g4 +I1 +sa(dp5044 +g4 +I0 +sa(dp5045 +g4 +I1 +sa(dp5046 +g4 +I0 +sa(dp5047 +g4 +I1 +sa(dp5048 +g4 +I0 +sa(dp5049 +g4 +I1 +sa(dp5050 +g4 +I1 +sa(dp5051 +g4 +I1 +sa(dp5052 +g4 +I1 +sa(dp5053 +g4 +I0 +sa(dp5054 +g4 +I0 +sa(dp5055 +g4 +I0 +sa(dp5056 +g4 +I0 +sa(dp5057 +g4 +I0 +sa(dp5058 +g4 +I1 +sa(dp5059 +g4 +I0 +sa(dp5060 +g4 +I1 +sa(dp5061 +g4 +I0 +sa(dp5062 +g4 +I1 +sa(dp5063 +g4 +I1 +sa(dp5064 +g4 +I1 +sa(dp5065 +g4 +I1 +sa(dp5066 +g4 +I1 +sa(dp5067 +g4 +I1 +sa(dp5068 +g4 +I1 +sa(dp5069 +g4 +I0 +sa(dp5070 +g4 +I1 +sa(dp5071 +g4 +I1 +sa(dp5072 +g4 +I0 +sa(dp5073 +g4 +I0 +sa(dp5074 +g4 +I0 +sa(dp5075 +g4 +I0 +sa(dp5076 +g4 +I0 +sa(dp5077 +g4 +I0 +sa(dp5078 +g4 +I0 +sa(dp5079 +g4 +I1 +sa(dp5080 +g4 +I0 +sa(dp5081 +g4 +I0 +sa(dp5082 +g4 +I1 +sa(dp5083 +g4 +I0 +sa(dp5084 +g4 +I1 +sa(dp5085 +g4 +I0 +sa(dp5086 +g4 +I1 +sa(dp5087 +g4 +I0 +sa(dp5088 +g4 +I0 +sa(dp5089 +g4 +I0 +sa(dp5090 +g4 +I1 +sa(dp5091 +g4 +I0 +sa(dp5092 +g4 +I1 +sa(dp5093 +g4 +I0 +sa(dp5094 +g4 +I0 +sa(dp5095 +g4 +I0 +sa(dp5096 +g4 +I0 +sa(dp5097 +g4 +I0 +sa(dp5098 +g4 +I0 +sa(dp5099 +g4 +I0 +sa(dp5100 +g4 +I0 +sa(dp5101 +g4 +I1 +sa(dp5102 +g4 +I1 +sa(dp5103 +g4 +I1 +sa(dp5104 +g4 +I1 +sa(dp5105 +g4 +I0 +sa(dp5106 +g4 +I0 +sa(dp5107 +g4 +I0 +sa(dp5108 +g4 +I0 +sa(dp5109 +g4 +I0 +sa(dp5110 +g4 +I1 +sa(dp5111 +g4 +I0 +sa(dp5112 +g4 +I1 +sa(dp5113 +g4 +I1 +sa(dp5114 +g4 +I1 +sa(dp5115 +g4 +I0 +sa(dp5116 +g4 +I0 +sa(dp5117 +g4 +I0 +sa(dp5118 +g4 +I0 +sa(dp5119 +g4 +I0 +sa(dp5120 +g4 +I1 +sa(dp5121 +g4 +I0 +sa(dp5122 +g4 +I1 +sa(dp5123 +g4 +I0 +sa(dp5124 +g4 +I1 +sa(dp5125 +g4 +I0 +sa(dp5126 +g4 +I1 +sa(dp5127 +g4 +I1 +sa(dp5128 +g4 +I1 +sa(dp5129 +g4 +I0 +sa(dp5130 +g4 +I1 +sa(dp5131 +g4 +I1 +sa(dp5132 +g4 +I0 +sa(dp5133 +g4 +I0 +sa(dp5134 +g4 +I0 +sa(dp5135 +g4 +I0 +sa(dp5136 +g4 +I1 +sa(dp5137 +g4 +I0 +sa(dp5138 +g4 +I0 +sa(dp5139 +g4 +I1 +sa(dp5140 +g4 +I1 +sa(dp5141 +g4 +I0 +sa(dp5142 +g4 +I1 +sa(dp5143 +g4 +I0 +sa(dp5144 +g4 +I0 +sa(dp5145 +g4 +I1 +sa(dp5146 +g4 +I1 +sa(dp5147 +g4 +I1 +sa(dp5148 +g4 +I1 +sa(dp5149 +g4 +I0 +sa(dp5150 +g4 +I0 +sa(dp5151 +g4 +I1 +sa(dp5152 +g4 +I0 +sa(dp5153 +g4 +I1 +sa(dp5154 +g4 +I1 +sa(dp5155 +g4 +I0 +sa(dp5156 +g4 +I1 +sa(dp5157 +g4 +I1 +sa(dp5158 +g4 +I0 +sa(dp5159 +g4 +I1 +sa(dp5160 +g4 +I1 +sa(dp5161 +g4 +I0 +sa(dp5162 +g4 +I1 +sa(dp5163 +g4 +I0 +sa(dp5164 +g4 +I1 +sa(dp5165 +g4 +I0 +sa(dp5166 +g4 +I0 +sa(dp5167 +g4 +I0 +sa(dp5168 +g4 +I1 +sa(dp5169 +g4 +I1 +sa(dp5170 +g4 +I0 +sa(dp5171 +g4 +I1 +sa(dp5172 +g4 +I0 +sa(dp5173 +g4 +I1 +sa(dp5174 +g4 +I0 +sa(dp5175 +g4 +I0 +sa(dp5176 +g4 +I1 +sa(dp5177 +g4 +I1 +sa(dp5178 +g4 +I0 +sa(dp5179 +g4 +I0 +sa(dp5180 +g4 +I1 +sa(dp5181 +g4 +I0 +sa(dp5182 +g4 +I1 +sa(dp5183 +g4 +I1 +sa(dp5184 +g4 +I0 +sa(dp5185 +g4 +I1 +sa(dp5186 +g4 +I0 +sa(dp5187 +g4 +I1 +sa(dp5188 +g4 +I1 +sa(dp5189 +g4 +I0 +sa(dp5190 +g4 +I1 +sa(dp5191 +g4 +I0 +sa(dp5192 +g4 +I1 +sa(dp5193 +g4 +I0 +sa(dp5194 +g4 +I0 +sa(dp5195 +g4 +I1 +sa(dp5196 +g4 +I1 +sa(dp5197 +g4 +I0 +sa(dp5198 +g4 +I1 +sa(dp5199 +g4 +I1 +sa(dp5200 +g4 +I1 +sa(dp5201 +g4 +I0 +sa(dp5202 +g4 +I1 +sa(dp5203 +g4 +I0 +sa(dp5204 +g4 +I1 +sa(dp5205 +g4 +I1 +sa(dp5206 +g4 +I1 +sa(dp5207 +g4 +I1 +sa(dp5208 +g4 +I0 +sa(dp5209 +g4 +I1 +sa(dp5210 +g4 +I0 +sa(dp5211 +g4 +I0 +sa(dp5212 +g4 +I0 +sa(dp5213 +g4 +I0 +sa(dp5214 +g4 +I1 +sa(dp5215 +g4 +I1 +sa(dp5216 +g4 +I1 +sa(dp5217 +g4 +I0 +sa(dp5218 +g4 +I0 +sa(dp5219 +g4 +I0 +sa(dp5220 +g4 +I0 +sa(dp5221 +g4 +I1 +sa(dp5222 +g4 +I0 +sa(dp5223 +g4 +I1 +sa(dp5224 +g4 +I0 +sa(dp5225 +g4 +I1 +sa(dp5226 +g4 +I0 +sa(dp5227 +g4 +I0 +sa(dp5228 +g4 +I0 +sa(dp5229 +g4 +I1 +sa(dp5230 +g4 +I1 +sa(dp5231 +g4 +I1 +sa(dp5232 +g4 +I0 +sa(dp5233 +g4 +I0 +sa(dp5234 +g4 +I1 +sa(dp5235 +g4 +I1 +sa(dp5236 +g4 +I0 +sa(dp5237 +g4 +I1 +sa(dp5238 +g4 +I1 +sa(dp5239 +g4 +I1 +sa(dp5240 +g4 +I0 +sa(dp5241 +g4 +I0 +sa(dp5242 +g4 +I1 +sa(dp5243 +g4 +I0 +sa(dp5244 +g4 +I1 +sa(dp5245 +g4 +I0 +sa(dp5246 +g4 +I1 +sa(dp5247 +g4 +I1 +sa(dp5248 +g4 +I0 +sa(dp5249 +g4 +I0 +sa(dp5250 +g4 +I1 +sa(dp5251 +g4 +I0 +sa(dp5252 +g4 +I0 +sa(dp5253 +g4 +I0 +sa(dp5254 +g4 +I0 +sa(dp5255 +g4 +I0 +sa(dp5256 +g4 +I0 +sa(dp5257 +g4 +I0 +sa(dp5258 +g4 +I0 +sa(dp5259 +g4 +I0 +sa(dp5260 +g4 +I0 +sa(dp5261 +g4 +I0 +sa(dp5262 +g4 +I0 +sa(dp5263 +g4 +I0 +sa(dp5264 +g4 +I1 +sa(dp5265 +g4 +I1 +sa(dp5266 +g4 +I1 +sa(dp5267 +g4 +I1 +sa(dp5268 +g4 +I0 +sa(dp5269 +g4 +I1 +sa(dp5270 +g4 +I1 +sa(dp5271 +g4 +I1 +sa(dp5272 +g4 +I0 +sa(dp5273 +g4 +I0 +sa(dp5274 +g4 +I0 +sa(dp5275 +g4 +I0 +sa(dp5276 +g4 +I1 +sa(dp5277 +g4 +I0 +sa(dp5278 +g4 +I1 +sa(dp5279 +g4 +I0 +sa(dp5280 +g4 +I0 +sa(dp5281 +g4 +I0 +sa(dp5282 +g4 +I1 +sa(dp5283 +g4 +I0 +sa(dp5284 +g4 +I1 +sa(dp5285 +g4 +I1 +sa(dp5286 +g4 +I0 +sa(dp5287 +g4 +I0 +sa(dp5288 +g4 +I0 +sa(dp5289 +g4 +I0 +sa(dp5290 +g4 +I0 +sa(dp5291 +g4 +I0 +sa(dp5292 +g4 +I0 +sa(dp5293 +g4 +I0 +sa(dp5294 +g4 +I0 +sa(dp5295 +g4 +I1 +sa(dp5296 +g4 +I0 +sa(dp5297 +g4 +I0 +sa(dp5298 +g4 +I0 +sa(dp5299 +g4 +I0 +sa(dp5300 +g4 +I0 +sa(dp5301 +g4 +I0 +sa(dp5302 +g4 +I0 +sa(dp5303 +g4 +I0 +sa(dp5304 +g4 +I1 +sa(dp5305 +g4 +I1 +sa(dp5306 +g4 +I0 +sa(dp5307 +g4 +I1 +sa(dp5308 +g4 +I0 +sa(dp5309 +g4 +I1 +sa(dp5310 +g4 +I0 +sa(dp5311 +g4 +I0 +sa(dp5312 +g4 +I1 +sa(dp5313 +g4 +I1 +sa(dp5314 +g4 +I1 +sa(dp5315 +g4 +I0 +sa(dp5316 +g4 +I0 +sa(dp5317 +g4 +I1 +sa(dp5318 +g4 +I0 +sa(dp5319 +g4 +I1 +sa(dp5320 +g4 +I1 +sa(dp5321 +g4 +I1 +sa(dp5322 +g4 +I1 +sa(dp5323 +g4 +I0 +sa(dp5324 +g4 +I0 +sa(dp5325 +g4 +I0 +sa(dp5326 +g4 +I0 +sa(dp5327 +g4 +I1 +sa(dp5328 +g4 +I1 +sa(dp5329 +g4 +I1 +sa(dp5330 +g4 +I0 +sa(dp5331 +g4 +I0 +sa(dp5332 +g4 +I1 +sa(dp5333 +g4 +I0 +sa(dp5334 +g4 +I0 +sa(dp5335 +g4 +I0 +sa(dp5336 +g4 +I0 +sa(dp5337 +g4 +I0 +sa(dp5338 +g4 +I0 +sa(dp5339 +g4 +I1 +sa(dp5340 +g4 +I1 +sa(dp5341 +g4 +I1 +sa(dp5342 +g4 +I1 +sa(dp5343 +g4 +I1 +sa(dp5344 +g4 +I0 +sa(dp5345 +g4 +I1 +sa(dp5346 +g4 +I0 +sa(dp5347 +g4 +I1 +sa(dp5348 +g4 +I1 +sa(dp5349 +g4 +I1 +sa(dp5350 +g4 +I0 +sa(dp5351 +g4 +I1 +sa(dp5352 +g4 +I0 +sa(dp5353 +g4 +I1 +sa(dp5354 +g4 +I1 +sa(dp5355 +g4 +I1 +sa(dp5356 +g4 +I1 +sa(dp5357 +g4 +I0 +sa(dp5358 +g4 +I1 +sa(dp5359 +g4 +I1 +sa(dp5360 +g4 +I0 +sa(dp5361 +g4 +I0 +sa(dp5362 +g4 +I1 +sa(dp5363 +g4 +I0 +sa(dp5364 +g4 +I0 +sa(dp5365 +g4 +I1 +sa(dp5366 +g4 +I1 +sa(dp5367 +g4 +I1 +sa(dp5368 +g4 +I1 +sa(dp5369 +g4 +I1 +sa(dp5370 +g4 +I1 +sa(dp5371 +g4 +I0 +sa(dp5372 +g4 +I0 +sa(dp5373 +g4 +I1 +sa(dp5374 +g4 +I0 +sa(dp5375 +g4 +I1 +sa(dp5376 +g4 +I0 +sa(dp5377 +g4 +I0 +sa(dp5378 +g4 +I0 +sa(dp5379 +g4 +I0 +sa(dp5380 +g4 +I1 +sa(dp5381 +g4 +I0 +sa(dp5382 +g4 +I1 +sa(dp5383 +g4 +I0 +sa(dp5384 +g4 +I1 +sa(dp5385 +g4 +I1 +sa(dp5386 +g4 +I0 +sa(dp5387 +g4 +I1 +sa(dp5388 +g4 +I0 +sa(dp5389 +g4 +I1 +sa(dp5390 +g4 +I1 +sa(dp5391 +g4 +I1 +sa(dp5392 +g4 +I0 +sa(dp5393 +g4 +I0 +sa(dp5394 +g4 +I1 +sa(dp5395 +g4 +I0 +sa(dp5396 +g4 +I0 +sa(dp5397 +g4 +I1 +sa(dp5398 +g4 +I0 +sa(dp5399 +g4 +I1 +sa(dp5400 +g4 +I0 +sa(dp5401 +g4 +I0 +sa(dp5402 +g4 +I0 +sa(dp5403 +g4 +I0 +sa(dp5404 +g4 +I0 +sa(dp5405 +g4 +I1 +sa(dp5406 +g4 +I0 +sa(dp5407 +g4 +I1 +sa(dp5408 +g4 +I1 +sa(dp5409 +g4 +I1 +sa(dp5410 +g4 +I0 +sa(dp5411 +g4 +I1 +sa(dp5412 +g4 +I0 +sa(dp5413 +g4 +I1 +sa(dp5414 +g4 +I1 +sa(dp5415 +g4 +I0 +sa(dp5416 +g4 +I1 +sa(dp5417 +g4 +I0 +sa(dp5418 +g4 +I1 +sa(dp5419 +g4 +I1 +sa(dp5420 +g4 +I0 +sa(dp5421 +g4 +I0 +sa(dp5422 +g4 +I1 +sa(dp5423 +g4 +I1 +sa(dp5424 +g4 +I1 +sa(dp5425 +g4 +I1 +sa(dp5426 +g4 +I1 +sa(dp5427 +g4 +I1 +sa(dp5428 +g4 +I1 +sa(dp5429 +g4 +I0 +sa(dp5430 +g4 +I0 +sa(dp5431 +g4 +I0 +sa(dp5432 +g4 +I0 +sa(dp5433 +g4 +I0 +sa(dp5434 +g4 +I1 +sa(dp5435 +g4 +I1 +sa(dp5436 +g4 +I0 +sa(dp5437 +g4 +I0 +sa(dp5438 +g4 +I0 +sa(dp5439 +g4 +I0 +sa(dp5440 +g4 +I1 +sa(dp5441 +g4 +I1 +sa(dp5442 +g4 +I0 +sa(dp5443 +g4 +I0 +sa(dp5444 +g4 +I0 +sa(dp5445 +g4 +I0 +sa(dp5446 +g4 +I0 +sa(dp5447 +g4 +I1 +sa(dp5448 +g4 +I0 +sa(dp5449 +g4 +I1 +sa(dp5450 +g4 +I0 +sa(dp5451 +g4 +I1 +sa(dp5452 +g4 +I0 +sa(dp5453 +g4 +I1 +sa(dp5454 +g4 +I0 +sa(dp5455 +g4 +I0 +sa(dp5456 +g4 +I1 +sa(dp5457 +g4 +I1 +sa(dp5458 +g4 +I0 +sa(dp5459 +g4 +I0 +sa(dp5460 +g4 +I0 +sa(dp5461 +g4 +I0 +sa(dp5462 +g4 +I1 +sa(dp5463 +g4 +I1 +sa(dp5464 +g4 +I0 +sa(dp5465 +g4 +I0 +sa(dp5466 +g4 +I0 +sa(dp5467 +g4 +I0 +sa(dp5468 +g4 +I1 +sa(dp5469 +g4 +I0 +sa(dp5470 +g4 +I0 +sa(dp5471 +g4 +I1 +sa(dp5472 +g4 +I0 +sa(dp5473 +g4 +I0 +sa(dp5474 +g4 +I0 +sa(dp5475 +g4 +I0 +sa(dp5476 +g4 +I0 +sa(dp5477 +g4 +I0 +sa(dp5478 +g4 +I1 +sa(dp5479 +g4 +I0 +sa(dp5480 +g4 +I0 +sa(dp5481 +g4 +I0 +sa(dp5482 +g4 +I0 +sa(dp5483 +g4 +I0 +sa(dp5484 +g4 +I1 +sa(dp5485 +g4 +I1 +sa(dp5486 +g4 +I0 +sa(dp5487 +g4 +I1 +sa(dp5488 +g4 +I0 +sa(dp5489 +g4 +I1 +sa(dp5490 +g4 +I0 +sa(dp5491 +g4 +I0 +sa(dp5492 +g4 +I1 +sa(dp5493 +g4 +I0 +sa(dp5494 +g4 +I1 +sa(dp5495 +g4 +I1 +sa(dp5496 +g4 +I1 +sa(dp5497 +g4 +I0 +sa(dp5498 +g4 +I0 +sa(dp5499 +g4 +I0 +sa(dp5500 +g4 +I0 +sa(dp5501 +g4 +I0 +sa(dp5502 +g4 +I0 +sa(dp5503 +g4 +I1 +sa(dp5504 +g4 +I1 +sa(dp5505 +g4 +I0 +sa(dp5506 +g4 +I0 +sa(dp5507 +g4 +I1 +sa(dp5508 +g4 +I0 +sa(dp5509 +g4 +I0 +sa(dp5510 +g4 +I0 +sa(dp5511 +g4 +I0 +sa(dp5512 +g4 +I0 +sa(dp5513 +g4 +I1 +sa(dp5514 +g4 +I1 +sa(dp5515 +g4 +I1 +sa(dp5516 +g4 +I0 +sa(dp5517 +g4 +I0 +sa(dp5518 +g4 +I1 +sa(dp5519 +g4 +I0 +sa(dp5520 +g4 +I1 +sa(dp5521 +g4 +I0 +sa(dp5522 +g4 +I0 +sa(dp5523 +g4 +I0 +sa(dp5524 +g4 +I0 +sa(dp5525 +g4 +I1 +sa(dp5526 +g4 +I1 +sa(dp5527 +g4 +I1 +sa(dp5528 +g4 +I0 +sa(dp5529 +g4 +I0 +sa(dp5530 +g4 +I0 +sa(dp5531 +g4 +I0 +sa(dp5532 +g4 +I1 +sa(dp5533 +g4 +I0 +sa(dp5534 +g4 +I1 +sa(dp5535 +g4 +I0 +sa(dp5536 +g4 +I0 +sa(dp5537 +g4 +I0 +sa(dp5538 +g4 +I0 +sa(dp5539 +g4 +I1 +sa(dp5540 +g4 +I1 +sa(dp5541 +g4 +I1 +sa(dp5542 +g4 +I1 +sa(dp5543 +g4 +I1 +sa(dp5544 +g4 +I0 +sa(dp5545 +g4 +I1 +sa(dp5546 +g4 +I1 +sa(dp5547 +g4 +I0 +sa(dp5548 +g4 +I1 +sa(dp5549 +g4 +I1 +sa(dp5550 +g4 +I0 +sa(dp5551 +g4 +I1 +sa(dp5552 +g4 +I0 +sa(dp5553 +g4 +I0 +sa(dp5554 +g4 +I1 +sa(dp5555 +g4 +I1 +sa(dp5556 +g4 +I1 +sa(dp5557 +g4 +I1 +sa(dp5558 +g4 +I0 +sa(dp5559 +g4 +I1 +sa(dp5560 +g4 +I1 +sa(dp5561 +g4 +I1 +sa(dp5562 +g4 +I0 +sa(dp5563 +g4 +I1 +sa(dp5564 +g4 +I1 +sa(dp5565 +g4 +I0 +sa(dp5566 +g4 +I1 +sa(dp5567 +g4 +I1 +sa(dp5568 +g4 +I0 +sa(dp5569 +g4 +I1 +sa(dp5570 +g4 +I0 +sa(dp5571 +g4 +I0 +sa(dp5572 +g4 +I1 +sa(dp5573 +g4 +I0 +sa(dp5574 +g4 +I0 +sa(dp5575 +g4 +I0 +sa(dp5576 +g4 +I1 +sa(dp5577 +g4 +I1 +sa(dp5578 +g4 +I0 +sa(dp5579 +g4 +I1 +sa(dp5580 +g4 +I1 +sa(dp5581 +g4 +I1 +sa(dp5582 +g4 +I1 +sa(dp5583 +g4 +I1 +sa(dp5584 +g4 +I1 +sa(dp5585 +g4 +I0 +sa(dp5586 +g4 +I0 +sa(dp5587 +g4 +I0 +sa(dp5588 +g4 +I0 +sa(dp5589 +g4 +I1 +sa(dp5590 +g4 +I0 +sa(dp5591 +g4 +I0 +sa(dp5592 +g4 +I0 +sa(dp5593 +g4 +I1 +sa(dp5594 +g4 +I1 +sa(dp5595 +g4 +I1 +sa(dp5596 +g4 +I0 +sa(dp5597 +g4 +I1 +sa(dp5598 +g4 +I0 +sa(dp5599 +g4 +I1 +sa(dp5600 +g4 +I0 +sa(dp5601 +g4 +I0 +sa(dp5602 +g4 +I1 +sa(dp5603 +g4 +I0 +sa(dp5604 +g4 +I0 +sa(dp5605 +g4 +I1 +sa(dp5606 +g4 +I1 +sa(dp5607 +g4 +I1 +sa(dp5608 +g4 +I0 +sa(dp5609 +g4 +I0 +sa(dp5610 +g4 +I1 +sa(dp5611 +g4 +I1 +sa(dp5612 +g4 +I0 +sa(dp5613 +g4 +I1 +sa(dp5614 +g4 +I0 +sa(dp5615 +g4 +I0 +sa(dp5616 +g4 +I1 +sa(dp5617 +g4 +I0 +sa(dp5618 +g4 +I1 +sa(dp5619 +g4 +I1 +sa(dp5620 +g4 +I0 +sa(dp5621 +g4 +I1 +sa(dp5622 +g4 +I1 +sa(dp5623 +g4 +I1 +sa(dp5624 +g4 +I0 +sa(dp5625 +g4 +I1 +sa(dp5626 +g4 +I1 +sa(dp5627 +g4 +I1 +sa(dp5628 +g4 +I1 +sa(dp5629 +g4 +I1 +sa(dp5630 +g4 +I0 +sa(dp5631 +g4 +I1 +sa(dp5632 +g4 +I0 +sa(dp5633 +g4 +I0 +sa(dp5634 +g4 +I0 +sa(dp5635 +g4 +I0 +sa(dp5636 +g4 +I0 +sa(dp5637 +g4 +I0 +sa(dp5638 +g4 +I1 +sa(dp5639 +g4 +I0 +sa(dp5640 +g4 +I0 +sa(dp5641 +g4 +I0 +sa(dp5642 +g4 +I1 +sa(dp5643 +g4 +I0 +sa(dp5644 +g4 +I0 +sa(dp5645 +g4 +I1 +sa(dp5646 +g4 +I0 +sa(dp5647 +g4 +I0 +sa(dp5648 +g4 +I0 +sa(dp5649 +g4 +I1 +sa(dp5650 +g4 +I0 +sa(dp5651 +g4 +I0 +sa(dp5652 +g4 +I0 +sa(dp5653 +g4 +I0 +sa(dp5654 +g4 +I1 +sa(dp5655 +g4 +I0 +sa(dp5656 +g4 +I1 +sa(dp5657 +g4 +I1 +sa(dp5658 +g4 +I1 +sa(dp5659 +g4 +I1 +sa(dp5660 +g4 +I0 +sa(dp5661 +g4 +I1 +sa(dp5662 +g4 +I1 +sa(dp5663 +g4 +I0 +sa(dp5664 +g4 +I0 +sa(dp5665 +g4 +I0 +sa(dp5666 +g4 +I1 +sa(dp5667 +g4 +I0 +sa(dp5668 +g4 +I0 +sa(dp5669 +g4 +I0 +sa(dp5670 +g4 +I0 +sa(dp5671 +g4 +I1 +sa(dp5672 +g4 +I0 +sa(dp5673 +g4 +I0 +sa(dp5674 +g4 +I1 +sa(dp5675 +g4 +I0 +sa(dp5676 +g4 +I1 +sa(dp5677 +g4 +I1 +sa(dp5678 +g4 +I0 +sa(dp5679 +g4 +I1 +sa(dp5680 +g4 +I1 +sa(dp5681 +g4 +I0 +sa(dp5682 +g4 +I1 +sa(dp5683 +g4 +I0 +sa(dp5684 +g4 +I1 +sa(dp5685 +g4 +I1 +sa(dp5686 +g4 +I1 +sa(dp5687 +g4 +I1 +sa(dp5688 +g4 +I1 +sa(dp5689 +g4 +I1 +sa(dp5690 +g4 +I1 +sa(dp5691 +g4 +I0 +sa(dp5692 +g4 +I0 +sa(dp5693 +g4 +I0 +sa(dp5694 +g4 +I0 +sa(dp5695 +g4 +I0 +sa(dp5696 +g4 +I1 +sa(dp5697 +g4 +I0 +sa(dp5698 +g4 +I1 +sa(dp5699 +g4 +I1 +sa(dp5700 +g4 +I1 +sa(dp5701 +g4 +I0 +sa(dp5702 +g4 +I0 +sa(dp5703 +g4 +I0 +sa(dp5704 +g4 +I1 +sa(dp5705 +g4 +I0 +sa(dp5706 +g4 +I1 +sa(dp5707 +g4 +I1 +sa(dp5708 +g4 +I1 +sa(dp5709 +g4 +I1 +sa(dp5710 +g4 +I0 +sa(dp5711 +g4 +I0 +sa(dp5712 +g4 +I1 +sa(dp5713 +g4 +I1 +sa(dp5714 +g4 +I1 +sa(dp5715 +g4 +I1 +sa(dp5716 +g4 +I1 +sa(dp5717 +g4 +I0 +sa(dp5718 +g4 +I1 +sa(dp5719 +g4 +I0 +sa(dp5720 +g4 +I1 +sa(dp5721 +g4 +I0 +sa(dp5722 +g4 +I0 +sa(dp5723 +g4 +I0 +sa(dp5724 +g4 +I1 +sa(dp5725 +g4 +I1 +sa(dp5726 +g4 +I1 +sa(dp5727 +g4 +I0 +sa(dp5728 +g4 +I1 +sa(dp5729 +g4 +I0 +sa(dp5730 +g4 +I1 +sa(dp5731 +g4 +I1 +sa(dp5732 +g4 +I0 +sa(dp5733 +g4 +I1 +sa(dp5734 +g4 +I1 +sa(dp5735 +g4 +I1 +sa(dp5736 +g4 +I1 +sa(dp5737 +g4 +I0 +sa(dp5738 +g4 +I1 +sa(dp5739 +g4 +I1 +sa(dp5740 +g4 +I0 +sa(dp5741 +g4 +I1 +sa(dp5742 +g4 +I0 +sa(dp5743 +g4 +I0 +sa(dp5744 +g4 +I0 +sa(dp5745 +g4 +I1 +sa(dp5746 +g4 +I1 +sa(dp5747 +g4 +I0 +sa(dp5748 +g4 +I0 +sa(dp5749 +g4 +I0 +sa(dp5750 +g4 +I1 +sa(dp5751 +g4 +I0 +sa(dp5752 +g4 +I0 +sa(dp5753 +g4 +I0 +sa(dp5754 +g4 +I0 +sa(dp5755 +g4 +I0 +sa(dp5756 +g4 +I0 +sa(dp5757 +g4 +I0 +sa(dp5758 +g4 +I0 +sa(dp5759 +g4 +I0 +sa(dp5760 +g4 +I0 +sa(dp5761 +g4 +I1 +sa(dp5762 +g4 +I1 +sa(dp5763 +g4 +I0 +sa(dp5764 +g4 +I1 +sa(dp5765 +g4 +I1 +sa(dp5766 +g4 +I0 +sa(dp5767 +g4 +I0 +sa(dp5768 +g4 +I1 +sa(dp5769 +g4 +I0 +sa(dp5770 +g4 +I0 +sa(dp5771 +g4 +I1 +sa(dp5772 +g4 +I1 +sa(dp5773 +g4 +I0 +sa(dp5774 +g4 +I1 +sa(dp5775 +g4 +I0 +sa(dp5776 +g4 +I1 +sa(dp5777 +g4 +I0 +sa(dp5778 +g4 +I0 +sa(dp5779 +g4 +I0 +sa(dp5780 +g4 +I1 +sa(dp5781 +g4 +I0 +sa(dp5782 +g4 +I1 +sa(dp5783 +g4 +I0 +sa(dp5784 +g4 +I1 +sa(dp5785 +g4 +I0 +sa(dp5786 +g4 +I0 +sa(dp5787 +g4 +I0 +sa(dp5788 +g4 +I1 +sa(dp5789 +g4 +I1 +sa(dp5790 +g4 +I0 +sa(dp5791 +g4 +I0 +sa(dp5792 +g4 +I0 +sa(dp5793 +g4 +I1 +sa(dp5794 +g4 +I1 +sa(dp5795 +g4 +I0 +sa(dp5796 +g4 +I0 +sa(dp5797 +g4 +I0 +sa(dp5798 +g4 +I0 +sa(dp5799 +g4 +I0 +sa(dp5800 +g4 +I0 +sa(dp5801 +g4 +I1 +sa(dp5802 +g4 +I1 +sa(dp5803 +g4 +I0 +sa(dp5804 +g4 +I0 +sa(dp5805 +g4 +I0 +sa(dp5806 +g4 +I1 +sa(dp5807 +g4 +I1 +sa(dp5808 +g4 +I0 +sa(dp5809 +g4 +I1 +sa(dp5810 +g4 +I0 +sa(dp5811 +g4 +I1 +sa(dp5812 +g4 +I1 +sa(dp5813 +g4 +I1 +sa(dp5814 +g4 +I1 +sa(dp5815 +g4 +I1 +sa(dp5816 +g4 +I0 +sa(dp5817 +g4 +I0 +sa(dp5818 +g4 +I1 +sa(dp5819 +g4 +I1 +sa(dp5820 +g4 +I1 +sa(dp5821 +g4 +I1 +sa(dp5822 +g4 +I0 +sa(dp5823 +g4 +I1 +sa(dp5824 +g4 +I0 +sa(dp5825 +g4 +I0 +sa(dp5826 +g4 +I1 +sa(dp5827 +g4 +I0 +sa(dp5828 +g4 +I0 +sa(dp5829 +g4 +I0 +sa(dp5830 +g4 +I0 +sa(dp5831 +g4 +I0 +sa(dp5832 +g4 +I0 +sa(dp5833 +g4 +I1 +sa(dp5834 +g4 +I0 +sa(dp5835 +g4 +I1 +sa(dp5836 +g4 +I1 +sa(dp5837 +g4 +I0 +sa(dp5838 +g4 +I0 +sa(dp5839 +g4 +I1 +sa(dp5840 +g4 +I0 +sa(dp5841 +g4 +I1 +sa(dp5842 +g4 +I0 +sa(dp5843 +g4 +I1 +sa(dp5844 +g4 +I0 +sa(dp5845 +g4 +I0 +sa(dp5846 +g4 +I0 +sa(dp5847 +g4 +I1 +sa(dp5848 +g4 +I0 +sa(dp5849 +g4 +I1 +sa(dp5850 +g4 +I1 +sa(dp5851 +g4 +I0 +sa(dp5852 +g4 +I1 +sa(dp5853 +g4 +I0 +sa(dp5854 +g4 +I0 +sa(dp5855 +g4 +I0 +sa(dp5856 +g4 +I1 +sa(dp5857 +g4 +I1 +sa(dp5858 +g4 +I1 +sa(dp5859 +g4 +I1 +sa(dp5860 +g4 +I1 +sa(dp5861 +g4 +I1 +sa(dp5862 +g4 +I1 +sa(dp5863 +g4 +I1 +sa(dp5864 +g4 +I0 +sa(dp5865 +g4 +I0 +sa(dp5866 +g4 +I1 +sa(dp5867 +g4 +I1 +sa(dp5868 +g4 +I0 +sa(dp5869 +g4 +I0 +sa(dp5870 +g4 +I0 +sa(dp5871 +g4 +I1 +sa(dp5872 +g4 +I0 +sa(dp5873 +g4 +I0 +sa(dp5874 +g4 +I0 +sa(dp5875 +g4 +I0 +sa(dp5876 +g4 +I0 +sa(dp5877 +g4 +I1 +sa(dp5878 +g4 +I1 +sa(dp5879 +g4 +I0 +sa(dp5880 +g4 +I1 +sa(dp5881 +g4 +I0 +sa(dp5882 +g4 +I0 +sa(dp5883 +g4 +I0 +sa(dp5884 +g4 +I0 +sa(dp5885 +g4 +I1 +sa(dp5886 +g4 +I0 +sa(dp5887 +g4 +I0 +sa(dp5888 +g4 +I0 +sa(dp5889 +g4 +I1 +sa(dp5890 +g4 +I1 +sa(dp5891 +g4 +I1 +sa(dp5892 +g4 +I0 +sa(dp5893 +g4 +I1 +sa(dp5894 +g4 +I1 +sa(dp5895 +g4 +I0 +sa(dp5896 +g4 +I1 +sa(dp5897 +g4 +I0 +sa(dp5898 +g4 +I1 +sa(dp5899 +g4 +I0 +sa(dp5900 +g4 +I0 +sa(dp5901 +g4 +I0 +sa(dp5902 +g4 +I1 +sa(dp5903 +g4 +I1 +sa(dp5904 +g4 +I0 +sa(dp5905 +g4 +I0 +sa(dp5906 +g4 +I1 +sa(dp5907 +g4 +I1 +sa(dp5908 +g4 +I1 +sa(dp5909 +g4 +I1 +sa(dp5910 +g4 +I0 +sa(dp5911 +g4 +I1 +sa(dp5912 +g4 +I1 +sa(dp5913 +g4 +I0 +sa(dp5914 +g4 +I0 +sa(dp5915 +g4 +I0 +sa(dp5916 +g4 +I1 +sa(dp5917 +g4 +I0 +sa(dp5918 +g4 +I0 +sa(dp5919 +g4 +I0 +sa(dp5920 +g4 +I1 +sa(dp5921 +g4 +I1 +sa(dp5922 +g4 +I0 +sa(dp5923 +g4 +I1 +sa(dp5924 +g4 +I1 +sa(dp5925 +g4 +I1 +sa(dp5926 +g4 +I0 +sa(dp5927 +g4 +I0 +sa(dp5928 +g4 +I1 +sa(dp5929 +g4 +I1 +sa(dp5930 +g4 +I1 +sa(dp5931 +g4 +I0 +sa(dp5932 +g4 +I1 +sa(dp5933 +g4 +I1 +sa(dp5934 +g4 +I0 +sa(dp5935 +g4 +I1 +sa(dp5936 +g4 +I0 +sa(dp5937 +g4 +I1 +sa(dp5938 +g4 +I1 +sa(dp5939 +g4 +I1 +sa(dp5940 +g4 +I0 +sa(dp5941 +g4 +I1 +sa(dp5942 +g4 +I1 +sa(dp5943 +g4 +I0 +sa(dp5944 +g4 +I1 +sa(dp5945 +g4 +I0 +sa(dp5946 +g4 +I1 +sa(dp5947 +g4 +I0 +sa(dp5948 +g4 +I0 +sa(dp5949 +g4 +I1 +sa(dp5950 +g4 +I1 +sa(dp5951 +g4 +I0 +sa(dp5952 +g4 +I0 +sa(dp5953 +g4 +I0 +sa(dp5954 +g4 +I0 +sa(dp5955 +g4 +I1 +sa(dp5956 +g4 +I0 +sa(dp5957 +g4 +I1 +sa(dp5958 +g4 +I1 +sa(dp5959 +g4 +I0 +sa(dp5960 +g4 +I0 +sa(dp5961 +g4 +I1 +sa(dp5962 +g4 +I0 +sa(dp5963 +g4 +I1 +sa(dp5964 +g4 +I0 +sa(dp5965 +g4 +I0 +sa(dp5966 +g4 +I1 +sa(dp5967 +g4 +I1 +sa(dp5968 +g4 +I0 +sa(dp5969 +g4 +I0 +sa(dp5970 +g4 +I0 +sa(dp5971 +g4 +I1 +sa(dp5972 +g4 +I0 +sa(dp5973 +g4 +I1 +sa(dp5974 +g4 +I1 +sa(dp5975 +g4 +I1 +sa(dp5976 +g4 +I1 +sa(dp5977 +g4 +I0 +sa(dp5978 +g4 +I1 +sa(dp5979 +g4 +I0 +sa(dp5980 +g4 +I0 +sa(dp5981 +g4 +I1 +sa(dp5982 +g4 +I0 +sa(dp5983 +g4 +I1 +sa(dp5984 +g4 +I0 +sa(dp5985 +g4 +I1 +sa(dp5986 +g4 +I1 +sa(dp5987 +g4 +I1 +sa(dp5988 +g4 +I0 +sa(dp5989 +g4 +I1 +sa(dp5990 +g4 +I1 +sa(dp5991 +g4 +I0 +sa(dp5992 +g4 +I1 +sa(dp5993 +g4 +I0 +sa(dp5994 +g4 +I0 +sa(dp5995 +g4 +I1 +sa(dp5996 +g4 +I0 +sa(dp5997 +g4 +I0 +sa(dp5998 +g4 +I1 +sa(dp5999 +g4 +I0 +sa(dp6000 +g4 +I1 +sa(dp6001 +g4 +I1 +sa(dp6002 +g4 +I0 +sa(dp6003 +g4 +I0 +sa(dp6004 +g4 +I0 +sa(dp6005 +g4 +I1 +sa(dp6006 +g4 +I1 +sa(dp6007 +g4 +I0 +sa(dp6008 +g4 +I0 +sa(dp6009 +g4 +I0 +sa(dp6010 +g4 +I0 +sa(dp6011 +g4 +I0 +sa(dp6012 +g4 +I1 +sa(dp6013 +g4 +I0 +sa(dp6014 +g4 +I1 +sa(dp6015 +g4 +I0 +sa(dp6016 +g4 +I1 +sa(dp6017 +g4 +I1 +sa(dp6018 +g4 +I0 +sa(dp6019 +g4 +I0 +sa(dp6020 +g4 +I1 +sa(dp6021 +g4 +I0 +sa(dp6022 +g4 +I0 +sa(dp6023 +g4 +I1 +sa(dp6024 +g4 +I1 +sa(dp6025 +g4 +I1 +sa(dp6026 +g4 +I1 +sa(dp6027 +g4 +I0 +sa(dp6028 +g4 +I1 +sa(dp6029 +g4 +I1 +sa(dp6030 +g4 +I0 +sa(dp6031 +g4 +I1 +sa(dp6032 +g4 +I1 +sa(dp6033 +g4 +I0 +sa(dp6034 +g4 +I1 +sa(dp6035 +g4 +I0 +sa(dp6036 +g4 +I1 +sa(dp6037 +g4 +I1 +sa(dp6038 +g4 +I1 +sa(dp6039 +g4 +I0 +sa(dp6040 +g4 +I0 +sa(dp6041 +g4 +I0 +sa(dp6042 +g4 +I0 +sa(dp6043 +g4 +I0 +sa(dp6044 +g4 +I1 +sa(dp6045 +g4 +I0 +sa(dp6046 +g4 +I0 +sa(dp6047 +g4 +I1 +sa(dp6048 +g4 +I1 +sa(dp6049 +g4 +I1 +sa(dp6050 +g4 +I0 +sa(dp6051 +g4 +I1 +sa(dp6052 +g4 +I1 +sa(dp6053 +g4 +I0 +sa(dp6054 +g4 +I1 +sa(dp6055 +g4 +I1 +sa(dp6056 +g4 +I1 +sa(dp6057 +g4 +I1 +sa(dp6058 +g4 +I1 +sa(dp6059 +g4 +I0 +sa(dp6060 +g4 +I0 +sa(dp6061 +g4 +I0 +sa(dp6062 +g4 +I0 +sa(dp6063 +g4 +I1 +sa(dp6064 +g4 +I1 +sa(dp6065 +g4 +I0 +sa(dp6066 +g4 +I0 +sa(dp6067 +g4 +I1 +sa(dp6068 +g4 +I1 +sa(dp6069 +g4 +I0 +sa(dp6070 +g4 +I0 +sa(dp6071 +g4 +I1 +sa(dp6072 +g4 +I0 +sa(dp6073 +g4 +I0 +sa(dp6074 +g4 +I0 +sa(dp6075 +g4 +I0 +sa(dp6076 +g4 +I1 +sa(dp6077 +g4 +I1 +sa(dp6078 +g4 +I0 +sa(dp6079 +g4 +I1 +sa(dp6080 +g4 +I1 +sa(dp6081 +g4 +I0 +sa(dp6082 +g4 +I0 +sa(dp6083 +g4 +I0 +sa(dp6084 +g4 +I0 +sa(dp6085 +g4 +I1 +sa(dp6086 +g4 +I0 +sa(dp6087 +g4 +I0 +sa(dp6088 +g4 +I0 +sa(dp6089 +g4 +I0 +sa(dp6090 +g4 +I0 +sa(dp6091 +g4 +I1 +sa(dp6092 +g4 +I0 +sa(dp6093 +g4 +I0 +sa(dp6094 +g4 +I0 +sa(dp6095 +g4 +I0 +sa(dp6096 +g4 +I1 +sa(dp6097 +g4 +I1 +sa(dp6098 +g4 +I0 +sa(dp6099 +g4 +I0 +sa(dp6100 +g4 +I0 +sa(dp6101 +g4 +I1 +sa(dp6102 +g4 +I1 +sa(dp6103 +g4 +I0 +sa(dp6104 +g4 +I1 +sa(dp6105 +g4 +I1 +sa(dp6106 +g4 +I0 +sa(dp6107 +g4 +I1 +sa(dp6108 +g4 +I1 +sa(dp6109 +g4 +I0 +sa(dp6110 +g4 +I1 +sa(dp6111 +g4 +I0 +sa(dp6112 +g4 +I0 +sa(dp6113 +g4 +I0 +sa(dp6114 +g4 +I1 +sa(dp6115 +g4 +I0 +sa(dp6116 +g4 +I1 +sa(dp6117 +g4 +I0 +sa(dp6118 +g4 +I0 +sa(dp6119 +g4 +I1 +sa(dp6120 +g4 +I1 +sa(dp6121 +g4 +I0 +sa(dp6122 +g4 +I1 +sa(dp6123 +g4 +I1 +sa(dp6124 +g4 +I1 +sa(dp6125 +g4 +I0 +sa(dp6126 +g4 +I0 +sa(dp6127 +g4 +I0 +sa(dp6128 +g4 +I1 +sa(dp6129 +g4 +I1 +sa(dp6130 +g4 +I1 +sa(dp6131 +g4 +I0 +sa(dp6132 +g4 +I0 +sa(dp6133 +g4 +I1 +sa(dp6134 +g4 +I0 +sa(dp6135 +g4 +I1 +sa(dp6136 +g4 +I1 +sa(dp6137 +g4 +I1 +sa(dp6138 +g4 +I0 +sa(dp6139 +g4 +I1 +sa(dp6140 +g4 +I1 +sa(dp6141 +g4 +I1 +sa(dp6142 +g4 +I0 +sa(dp6143 +g4 +I1 +sa(dp6144 +g4 +I0 +sa(dp6145 +g4 +I1 +sa(dp6146 +g4 +I0 +sa(dp6147 +g4 +I0 +sa(dp6148 +g4 +I0 +sa(dp6149 +g4 +I1 +sa(dp6150 +g4 +I1 +sa(dp6151 +g4 +I0 +sa(dp6152 +g4 +I0 +sa(dp6153 +g4 +I1 +sa(dp6154 +g4 +I1 +sa(dp6155 +g4 +I1 +sa(dp6156 +g4 +I0 +sa(dp6157 +g4 +I1 +sa(dp6158 +g4 +I1 +sa(dp6159 +g4 +I0 +sa(dp6160 +g4 +I0 +sa(dp6161 +g4 +I0 +sa(dp6162 +g4 +I1 +sa(dp6163 +g4 +I0 +sa(dp6164 +g4 +I0 +sa(dp6165 +g4 +I1 +sa(dp6166 +g4 +I0 +sa(dp6167 +g4 +I0 +sa(dp6168 +g4 +I1 +sa(dp6169 +g4 +I0 +sa(dp6170 +g4 +I1 +sa(dp6171 +g4 +I0 +sa(dp6172 +g4 +I1 +sa(dp6173 +g4 +I1 +sa(dp6174 +g4 +I0 +sa(dp6175 +g4 +I0 +sa(dp6176 +g4 +I1 +sa(dp6177 +g4 +I1 +sa(dp6178 +g4 +I1 +sa(dp6179 +g4 +I1 +sa(dp6180 +g4 +I1 +sa(dp6181 +g4 +I0 +sa(dp6182 +g4 +I1 +sa(dp6183 +g4 +I0 +sa(dp6184 +g4 +I1 +sa(dp6185 +g4 +I0 +sasS'texts' +p6186 +(lp6187 +Vyou fuck your dad . +p6188 +aVi really don't understand your point . it seems that you are mixing apples and oranges . +p6189 +aVa majority of canadians can and has been wrong before now and will be again . custom_break custom_break unless you're supportive of the idea that nothing is full proof or perfect so you take your chances and if we should inadvertently kill your son or daughter then them's the breaks and we can always regard you as collateral damage like in wartime - and sorry , but the cheques in the mail . +p6190 +aVlisten if you dont wanna get married to a man or a women dont do it . what would it bother you if gay people got married stay in your lane do you let them do them . and your god is so nice but quick to judg if your not like him , thought you wasnt suppose to judge people . +p6191 +aVc \u005c xe CUSTOM_NUMBER c b \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n xu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddng bi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER u t \u005c xecnh CUSTOM_NUMBER c \u005c xf CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER n ho \u005c xe CUSTOM_NUMBER kh \u005c xf CUSTOM_NUMBER ng ? custom_break c \u005c xe CUSTOM_NUMBER c ng \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER d \u005c xe CUSTOM_NUMBER n ng \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i cu \u005c xed \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER u chi \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER nh \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c c \u005c xf CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER n ho \u005c xe CUSTOM_NUMBER kh \u005c xf CUSTOM_NUMBER ng ? custom_break c \u005c xe CUSTOM_NUMBER c n \u005c xf CUSTOM_NUMBER ng d \u005c xe CUSTOM_NUMBER n gi \u005c u CUSTOM_NUMBER eef \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER t \u005c u CUSTOM_NUMBER edf v \u005c u CUSTOM_NUMBER n giang , c \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n th \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER c \u005c xf CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER n ho \u005c xe CUSTOM_NUMBER kh \u005c xf CUSTOM_NUMBER ng ? custom_break .. custom_break r \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t cu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c g \u005c xec th \u005c xec ch \u005c xfang ta \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER bi \u005c u CUSTOM_NUMBER ebft ! custom_break ai c \u005c u CUSTOM_NUMBER ng y \u005c xeau chu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ng ho \u005c xe CUSTOM_NUMBER b \u005c xecnh , nh \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER i khi ho \u005c xe CUSTOM_NUMBER b \u005c xecnh ch \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER th \u005c u CUSTOM_NUMBER eadt s \u005c u CUSTOM_NUMBER ef CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ebfn sau chi \u005c u CUSTOM_NUMBER ebfn tranh m \u005c xe CUSTOM_NUMBER th \u005c xf CUSTOM_NUMBER i . custom_break kh \u005c xf CUSTOM_NUMBER ng c \u005c xf CUSTOM_NUMBER n con \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddng n \u005c xe CUSTOM_NUMBER o ch \u005c u CUSTOM_NUMBER ecdn kh \u005c xe CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER u , \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eebng m \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER th \u005c xeam n \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER . +p6192 +aVCUSTOM_AT ok , but i would hope they'd sign him to a one-year contract to start with . give him the chance to be reliable and productive , but give themselves the out if all his time off has hurt his playing skills or if he falls back into old habits . +p6193 +aVyeah and where are you now ? +p6194 +aVshut the fuck up . you and the rest of your faggot friends should be burned at the stake +p6195 +aVeither you are fake or extremely stupid .. maybe both .. +p6196 +aVthat you are an idiot who understands neither taxation nor women's health . +p6197 +aVCUSTOM_AT dont wish him injury but it happened on its own and i doubt he's injured , he looked embarrassed to me +p6198 +aVbe careful , jimbo . og has a fork with your name on it . +p6199 +aVCUSTOM_AT or they just don't pay attention +p6200 +aVhmm . perhaps some who are too pig-faced to get laid and therefore have zero chance of getting pregnant from such activity hold something against women who can ?? idk . stream of consciousnees thought after looking at her . +p6201 +aVCUSTOM_AT huh ? her income was $ CUSTOM_NUMBER , CUSTOM_NUMBER . her spending was $ CUSTOM_NUMBER , CUSTOM_NUMBER . my math puts that at CUSTOM_NUMBER . CUSTOM_NUMBER % . +p6202 +aVfor some reason u sound retarded . lol . damn . where u been negro +p6203 +aVyou with the ' racist ' screen name custom_break custom_break you are a pieceofshit .. +p6204 +aVoh ! & cheating as well .. CUSTOM_NUMBER cup was a cheat fest , & you still dare to post that comment .. shame on you lol +p6205 +aVyour such a dickhead .. +p6206 +aVyour a retard go post your head up your # % & * +p6207 +aVCUSTOM_AT makes you want to say " mike macwhogal ? +p6208 +aS'CUSTOM_URL' +p6209 +aVand you know they've burned holes in all the carpeting . +p6210 +aVyou are a land creature . you would drown .. +p6211 +aVto all those doom-and - gloomers , the chicken-littles who claim the sky is falling and that society is collapsing .. canada has had gay marriage nationwide for years . where is the disaster ? where is the collapse and the persecution you're shouting about ? where is it ? please , show us some examples because it's starting to look like your threats and fears and warnings are nothing but hot air . +p6212 +aVcraig , we have been saying from the start that this is a very entertaining show . it awakens the horny little goth in me . i met my boyfriend during the first season and one of the first thing we did was watch ahs at my house . i know he likes me and all but to this day he is sure i am far creepier and kinkier than he could ever be . thanks , american horror story . sweet clam loves you . +p6213 +aVstrange you are talking about that when there were chelsea fans in here belittling the community shield +p6214 +aVbut how would you actually get the key out ? +p6215 +aVoh cool , some more internet points for your collection ! +p6216 +aVeven though i think there are better coaches out there , i am glad del negro is keeping his job . i never thought he got enough credit those years when he took those average chicago bulls teams he coached to the playoffs CUSTOM_NUMBER years in a row +p6217 +aVrussellpiano custom_break hmm .. how can we spin obama honoring vietnam troops as something negative . answer : doesn't matter ! look at our followers . they'll take anything . custom_break custom_break __ custom_break obama team : " hmm , how can we make the liberal messiah look better in light of the revelations of his leaking classified information to the new york times ? i know , lets have a bogus photo shoot at the viet nam memorial . that will make obama look like he cares about vets ( but first we'll have to clear all the vets out of the immediate area because they can't be trusted ) . +p6218 +aVa good article , which , for all the good it will do , could have been delivered to a brick wall . +p6219 +aVhead's up warning .. another source of funding for media matters is peter lewis of the progessive insurance company . you know , those auto insurance commercials that run every CUSTOM_NUMBER minutes on cable television featuring the gal who looks like a blow-up doll with red lips and a perfectly round mouth .. if you know what i mean . custom_break if you have progressive auto insurance , just know that part of your premium is going to fund a progressive liberal organization hell bent on destroying our country and our free speech . their mission is to bring down hannity , beck , dobbs , lavin , limbaugh , boortz , etc . we must not let them win . +p6220 +aVCUSTOM_AT lol as if capcom listens . watch them fuck this up too . i hope i am wrong . i love okami . +p6221 +aVallinit CUSTOM_NUMBER , your hypocrisy is sickening , you ignorant loser . +p6222 +aVfast & furious didn't work out like they planned did it ? .. lololololololol +p6223 +aVmitt isn't the best candidate for president .. but , going against the worst candidate ever should help him tremendously . lol custom_break custom_break obama is one and done .. it could happen no other way . +p6224 +aVi can't believe the stupid people on this site that have no idea what is going on . you fools . you are all useful idiots . they are hiding the truth because you fools who protect him would look like the useful idiots you are . +p6225 +aVfucking behave then you prick ! +p6226 +aVthe only " other " relevant fact is that he is destroying america ! +p6227 +aVyou are a liar . +p6228 +aVis that it ?? your sum total to any conversation is first abuse and then calling them a troll .. you are a typical socialist idiot . keep up your non existent class warfare , it is as pointless as you . +p6229 +aVCUSTOM_AT CUSTOM_AT welp then nbw right ? +p6230 +aVgood job , fellas . i didn't quite read the rules about a signature piece , but i guess that was as good as any . i found some great blogs to follow , and to share over at g + . if i'm not commenting on your blogs , it's because i always throw my two cents in when i post my share . add me on there if you are a googler . custom_break CUSTOM_URL again , congratulations to the winners , and i hope we get the chance to submit something else . this was fucking fun . +p6231 +aVi say hang is ass in the center of the town to let it be known that this type of behavior gets this type of punishment .. the lady had a kid CUSTOM_NUMBER week ago . women aren't safe to have sex after child birth for at least CUSTOM_NUMBER weeks . so even if this was consensual , it would have been wayy too soon and hurt the lady . i am so glad the the baby is so young and will not remember this event happening in it's house and i hope the mother recovers quickly . +p6232 +aVfaggot +p6233 +aVyou right if you are relaxe then you can give better result or perform and your identity should be from your work . +p6234 +aVaimless abe you are a delusion weirdo that should be locked up inside and kept away from computers . anyone who doubts the lunacy of abe the moronic prog frog from nyc please read this thread and you will see abe completely come apart from the seams and go off the deep end . +p6235 +aVthat , i do not doubt .. custom_break custom_break .. as a blackberry clone . custom_break custom_break but , your original argument was not that android would have existed , just that android somehow predates ios development . +p6236 +aVokc should work out a deal to get a pg who plays more like parker or cp CUSTOM_NUMBER . i think nash at the point , and move westbrook to sg that team would be unstoppable . imagine the shots nash would create for durant . then westbrook would be at his natural position too , the guy doesn't create shots or distribute . +p6237 +aVmaher's show goes on and on .. custom_break palin's alakda show gets canceled . custom_break custom_break isn't the " free market " wonderful ? +p6238 +aVeven as a troll you are a pathetic failure . +p6239 +aVgrazie mille sabrina ! sei cos \u005c xec dolce . custom_break custom_break baci . +p6240 +aVyeah well , it would still be better than letting them sit there for CUSTOM_NUMBER - CUSTOM_NUMBER years on my dime before sticking a needle in their veins . i say give them all a noose . if they choose to kill themselves , so be it . +p6241 +aVum custom_break custom_break holy fuck i need a cigarette +p6242 +aVyou're a moron , truth is beyond your reach +p6243 +aVyou seem wistful . +p6244 +aVdamn , speedy recovery , paul .. raining prayers down on you ! +p6245 +aVthe laughs you two heard were triggered by memories of his own high-flying exits off moving beasts +p6246 +aVyour anti-semitic rants are not welcomed here . you are a racist moron . custom_break fu ! +p6247 +aVCUSTOM_AT was fredex on this team ? +p6248 +aVgod , you're tiresome . get a life , you loser . +p6249 +aVstop pretending ur not bradley's side . you're the bs .. are u blind don't give us that stupid long explainations of yours , you sounds like that CUSTOM_NUMBER idiot judges exactly carbon copy !! .. arum we need our moneyy bacckk !! +p6250 +aVfucking weird game man +p6251 +aVi told you i would give it if you did . you started acting likje a tough guy behind your moms computer then i asked you CUSTOM_NUMBER times for an address and you still won't give it . +p6252 +aVi don't know if lewis is a little boy or little girl . either way it becomes the third on my list of petulant idiots . you will understand when you grow up . ask an old bastard member of your family to explain . such actions cannot be tolerated . how come you blame the line judge ? weird . +p6253 +aVthats a pathetic flop fuck you jvg +p6254 +aVwhy should they bother improving ios if they sell more phones than they care to produce . these advice are better served to the also-runs .. wp first and foremost +p6255 +aVspursruss : i live in argentina and its not all argentinians . the problem being those who are loud on the issue are ill educated and you can be sure they wouldn't be rushing to fight anyone , they would be cowering in the background . my wife is argentinean and she is the first one to recognize the stupidity of the claims . some of muppet think they fought their independence against the uk , morons the lot of them . the answer is simple , if we were the leading colonial force , you would be an english speaking country , you aren't , because werent it was spain , portugal , france , our interests were commercial . also the worst part is they themselves exterminated the natives , the spanish started it but actually it was the newly formed argies which did most of the killing of the native , lovely eh ? clueless stuff , you wonder why the government gets away with corruption , so many ignorant people thats why .. you shouldnt judge all by the standard , these a huge amount of argies who see the cristina drum beating for what it is , the same as all presidents of argentina do , using it to cover their failing . +p6256 +aVyou better hope because the marlins have a history of giving up their superstars +p6257 +aVwell , you guys have gone and done it now . you put the words ' china ' and ' chinese ' up the required number of times for the dating asians ad to come up . evidently , ms. zhang , CUSTOM_NUMBER kg and CUSTOM_NUMBER cm [ for a bmi of CUSTOM_NUMBER . CUSTOM_NUMBER ] from ' hunan china ' wants to meet me . she has her little mouth open like she's speaking . what's that you ask , zhang ? well , yes , as a matter of fact i am a physician . why are you clapping your hands together and jumping up and down ? stop that squealing , young lady and ' exprain ' yourself ! +p6258 +aVyou mean like your off topic obama rant bellow ? +p6259 +aVi hope they do it inconjunction with july CUSTOM_NUMBER .. +p6260 +aVsurely will be a crushing blow , when he doesn't get the next four years , would you consider leaving the country ?? +p6261 +aVi haven't watched fox news in years , true . +p6262 +aVare you in france ? +p6263 +aVi'll take that temp .. i really hate the heat +p6264 +aValexis bledel can act . wait . can she ? i have this blind spot when it comes to impossibly beautiful women . shit , maybe she can't act . fuck , what the hell do i do now ? custom_break custom_break what the hell do i do now ! ? +p6265 +aVi like your comments . custom_break however i would go one step further . it's not time to " let " the people of il fight back . custom_break rather the citizens of il just need to fight back period . custom_break i will carry next time i travel into " little beirut " . i.e. chicago +p6266 +aVfact : georgia passed a strict immigration policy and most of the latino farm workers left the area . vidalia georgia now has over CUSTOM_NUMBER agriculture job openings and they have been able to fill about CUSTOM_NUMBER of them in past year . all you white real americans who are looking for work that the latinos stole from you .. where are you ? the jobs are i vadalia just waiting for you .. or maybe its the fact that you would rather collect unemployment like the rest of the tea klaners .. you scream .. you complain .. and you sit at home in your wife beaters and drink beer .. typical real white tea klan .. +p6267 +aVof course you would bottom feeder .. +p6268 +aVm \u005c xe CUSTOM_NUMBER tenlos !! custom_break CUSTOM_URL +p6269 +aVyou are a fukin moron . you are just butthurt that you got rejected on wikipedia . custom_break custom_break call yoursilf scolar or whatever . i am better than you , just CUSTOM_NUMBER and already a wikipedia administrator . you are just a stupid ashole . +p6270 +aVhe is doing what any president doe's on this day . custom_break i do not recall if other presidents appeared at the wall . custom_break custom_break election year .. yea , but then again you would never say anything custom_break if he did not appear . you can not have it both ways . +p6271 +aV.. yeah , and you're a f'ing expert .. go back to picking through trash barrels you tool +p6272 +aVthose trails will definitely get plowed regardless of the investigation . they'll just see it as easier to plow the area than deal with it . and once they got plowed i would never return or risk getting stopped and heavily questioned by the po-po ' s . custom_break custom_break p.s. - all the stupid comments are unnecessary . it's really easy to be cold and heartless and act like you don't give a fuck . but i'd like to see these anonymous commentators talk shit like that in front of this person's family or even their own mother's . grow up children and learn some respect . +p6273 +aVsuh had a sack the last time they played . +p6274 +aVand you are support argument a-hole .. custom_break custom_break not everyone games on their pc's either . spec whores miss the point entirely .. custom_break custom_break i prefer the mac to my daily work . that beings said , i'm also a big believer in the best tool for the job and there are certain things that pc's do better , ( database and servers for instance ) custom_break custom_break the thing is that you havent proved anything other than an anti apple bias and name calling ( guilty myself to get your attention ) id just juvenile +p6275 +aVyou are a fucking dumb ass ! . go back to you xbox dickhead . grow up you little fanboy . +p6276 +aVyou know what would be fun ? if you guys talked crap back to us . more entertaining +p6277 +aVCUSTOM_AT CUSTOM_AT .. i'm assuming you are in school in the states . +p6278 +aVthey should put all the gay and lesbians on an island \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER oh wait there is manhattan . +p6279 +aVyolo . this is hilarious . canyon students are so racist ! even though most of us are mexican ! fuck gabby ! +p6280 +aVlets see your papers arealconservati . custom_break custom_break till then shut the fuuk up sticky-chin . +p6281 +aVan interesting angle of organized religion is that religious persecution is never ok unless your defending your own religion . you all aren't victims of religious oppression . you are the oppressors . btw , i'm not gay . i just love how you people try to defend your persecution of others while claiming your are being persecuted . +p6282 +aVcorrection bitch ! you don't think it's superb because your hating ass doesn't know talent .. and again i am still waiting on you to submit a video of you singing .. where is the youtube link ? i am sure you will get all kinds of rave reviews lol +p6283 +aVi think the only trickle that effected you was the trickle of sperm your dad gave your mom and most of that trickled down her leg . go back to sleep , we will wake you when you are needed again . +p6284 +aVand you keep on your knees and keep telling yourself that is a sausage in your mouth . and that is cream cheese you are swallowing . +p6285 +aVwhat was that , like CUSTOM_NUMBER words about nothing ? you're going after andrea mitchell ? what , was fox infomercial not broadcasting yesterday ? how about the apologies issued for the " epa drones " ? and yet here you are attacking andrea mitchell about some stupid gas station gimmick . custom_break custom_break here's another newsflash for you , mr. romney ( r CUSTOM_NUMBER % ) is out of touch . we all already know it . mr. romney's amazement wasn't just about some gadget at a " petrol filling post " but that people could actually buy food products there and that they actually eat it . custom_break custom_break this very second mr. romney isn't even carrying a wallet . and it is very likely that he doesn't even know where it is . i'm still waiting for someone to ask him the tough campaign trail question of " how much does a gallon of milk cost ? " . custom_break custom_break andrea mitchell and gas station food .. unbelievable . +p6286 +aVCUSTOM_AT needs to give me a fucking like CUSTOM_AT hows everyone doin ? +p6287 +aVfuck you both +p6288 +aVpowers , custom_break custom_break msnbc is far far more biased and hostile in it's comments than fox . at least at fox there are usually opposing views . msnbc is just a shill for the president . and they keep having to fire their hosts for all the outrageous remarks they make . custom_break custom_break now , cnn is getting almost as bad as msnbc . +p6289 +aVwhat horrible trades are you talking about ? +p6290 +aVand retards like you back to the institutions . +p6291 +aVweapons lol hes an idiot an waste of human space had it made and ruined it all +p6292 +aVnot a big fan of rondo , but the dude can ball .. i wouldn't classify him as a big talker , just trying to psyche himself up .. +p6293 +aVpig maher , you forgot your meds again . you know you are one sick sob so don't forget . +p6294 +aVit's not just the rich screaming about taxes . it's the average middle class american who pays his / her taxes and doesn't see the benefit of those taxes ( but instead sees waste ) . i pay federal taxes , but i don't use public schools , i'm not collecting any govt welfare or benefits , i pay for my own healthcare etc . i use the roads and sewers , so i don't mind paying the city taxes for that . my trash pick up is private , so i pay that directly to the trash company . everyone should pay for what they ' use ' , not based on what they make . if one wants to be a part of society , one should contribute and pay their fair share . that includes the rich or poor . +p6295 +aVmr. king isn't it about time you either grow a pair of balls or join the democrats who will love a pussy cat like you . +p6296 +aVi'm amused by the fact that weblog cons drop any issue once it turns into a loser . custom_break custom_break this is an expression of that amusement . +p6297 +aVgabriel . getting time to blow that horn ? +p6298 +aVexactly . like , i don't really give a shit how fat a person may or may not feel , but it really is shitty when your clothes don't fit . and not in a " i'm so gross " way but in a " i can't very well leave the house naked !! " way . +p6299 +aVwelfare queen into a whore , not a crack whore . i think a whore is a more productive worker than a welfare queen . +p6300 +aVpolitical correctness : custom_break custom_break political correctness is a doctrine , fostered by a delusional , illogical minority , and rapidly promoted by an unscrupulous lamestream media , which holds forth the proposition that it is entirely possible to pick up a piece of ch * t by the clean end . +p6301 +aVwhat an ass you are .. funny i see a lot more of you " nuts " in cars then i ever have of pilots in panes .. +p6302 +aVyou can take international law and shove it . you are such a schmuck , i don t know why i even comment on your idiotic posts . the " peace activists " on the ship started hitting the soldiers with weapons in order to kill the . +p6303 +aVblown is a little pissy after he applied for a union job and was turned down . he is just another good republican minion spreading today's message . +p6304 +aVif you dont have a teleport and air-mix ups " you are nothing to me +p6305 +aVstop trying to sound like a victim bitches dont understand men dont have the same temper and not the same thoughts go through ur mind than ours .. u put a nigga on da spot get up in his face and start throwing yo stank breath on us believe me u got it coming yal go no right period +p6306 +aVrobert moroni you fuckin dimwit , do you know what a parody is ? it's a fuckin parody of fox news and it sounds accurate to me ! +p6307 +aVthe most evil , callous , vile , creature in all of mythology is your made up god . stop killing and eating babies , you dirty christard ! +p6308 +aVoops ! how embarrassing ( for me ) .. you are right people CUSTOM_NUMBER st .. i bow to the superior movie intellect of your son :) +p6309 +aVif you throw trash out your window , you get a yellow star bumper sticker . +p6310 +aVonce more we see where the soft immigration policy has let the citizens down .. i bet they come from a family who have less education than a retarded hampster yet were given a nice new life in britain .. reap what you sow .. +p6311 +aVnope . not working for me either . CUSTOM_NUMBER - CUSTOM_NUMBER - CUSTOM_NUMBER ww.facebook.com/annagillmodel custom_break custom_break custom_break custom_break you have my email ! :) +p6312 +aVthat jump shooting bit gets old . when you don't get calls on contact and get your shot thrown off you look for separation and you jump shoot . especially if you ain't big , which is most teams because bigs and longs are rare / expensive at pro level . +p6313 +aVthis was a tough loss for us , right now there are guys blowing each other in the locker room . " custom_break custom_break - scott brooks +p6314 +aVyou're a complete and utter moron . +p6315 +aVyour still a loser , man we must have really gotten under your skin lol +p6316 +aVthe ignorance here is astounding . clearly it says in the video that cleveland was already convicted of rape and is serving jail time for it . he \u005c\u005c ' s guilty . she was raped !! ( for all of the morons who \u005c\u005c ' ve said ugly statements about her or attacked the veracity of her story ) the only determination that this court is trying to make is whether cash money should be held liable . i think it \u005c\u005c ' s reasonable that when you invite someone to make a professional presentation at your company that you provide necessary protections for that individual . i don \u005c\u005c ' t care whether cleveland was employed or just " a hanger-on " a professional guest should not have been left unattended in the hands of someone dangerous that was there admittedly with baby and slim \u005c\u005c ' s knowledge and permission . if you went to a store and were attacked by an employee or a " friend of the boss " ( who was permitted to hang around premises ) , would you not hold the company responsible ? +p6317 +aVfuck hard , then fuck slow , then fuck hard , and then start again . +p6318 +aVCUSTOM_AT were you here for the wide receiver drama ? +p6319 +aVare you fucking kidding me no mirrors fuck you freesteam +p6320 +aVnothing was confirmed in the CUSTOM_NUMBER th century you moron . there was no modern medical science to prove anything . dont try to quote from the same period of time that brought us the spanish inquisition . you are the lowest of the low , i feel sorry for you . +p6321 +aVmy best friend who is allergic to wheat , corn , soy , red dye , yellow dye , pistachios , tree nuts , kiwis , cherries , oranges , bananas , and seafood . if she gets anywhere near the smell of seafood her lungs constrict and she can no longer breath . last week she got cut by a dog leash that had pistachios on it and almost went into anaphylactic . i know a little about food allergies . custom_break custom_break i asked my friend if she thought it was rude and selfish of someone to want food allergies so they could die . she said you are a bitch . so i do not really think it is insulting that she wants food allergies so she can die . i think we're back to you're a bitch . +p6322 +aVso not focusing on boston vs miami for a minute .. who's the scarier opponent , sanan or okc ? +p6323 +aVfloyd has a better knock out percentage than pacman you dumb fuuck +p6324 +aVso wat have u bn doing all along if u want to train them nw . we thot yo presence must strengthen the strike force bt proving otherws . shame !! +p6325 +aVthe dean of mean is a typical tory who believes there's one law for him and another one for everyone else . custom_break big steve better get around to firing everyone at elections canada and replacing them with tory hacks before they really get into what the tories did in the CUSTOM_NUMBER campaign . +p6326 +aVoh fab - we have a tennis player who has a sense of humour and who can smile . mr murray please note . mind you he has left it too late to cheer up . misery guts +p6327 +aVyou are repeating yourself , mate . +p6328 +aVyou are one sick puppy . +p6329 +aVvery true , indeed ! i've tried to sit down and study for hours straight without any breaks and i'm not nearly as effective as when i take a few breaks . +p6330 +aVso da fuck wat if he prasie the devil look where he at keep doin ya thing my nigga +p6331 +aVcan i say dick on here ? custom_break your a dick . +p6332 +aVCUSTOM_AT right . never said it was fool proof tho . +p6333 +aVthe wonders of plastic surgery <3 +p6334 +aVron paul / cynthia mckinney CUSTOM_NUMBER custom_break the all wacko ticket ! custom_break calling all paul sheep to the barn for your daily feeding . don't forget your wallet ! +p6335 +aVgo on move to hollywood , join russell brand and take dan lobe with you +p6336 +aVthe way this fucking hoodrat is standing in that picture is boiling my blood . i'd like to meet this cunt in an alley for a few minutes . selfish fucking twat . +p6337 +aVhahaha today a group of argentine veterans from the falklands war beat the crap out of a senator of the peronist party , the party in power right now , for using them for political purposes . the people in argentina are getting tired of this " show " the politicians are doing to distract the argentine population from other far more important problems . +p6338 +aVwe afford what we have to afford , marco . +p6339 +aVhey moron " buttons CUSTOM_NUMBER " , kerry won't be able to bully obama like romney bullied a gay boy when he was in prep school by physically assaulting him . custom_break custom_break but the clown romney won't be able to bully obama in a debate either , so it's a wash . +p6340 +aVand like it matters , you are waiting for next year .. i am still living in the playoffs .. suck on it loser +p6341 +aVshould have hung for what he did , this country is all for the monsters that lurk among us !! +p6342 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT CUSTOM_AT CUSTOM_AT CUSTOM_AT custom_break custom_break right on . as long as we are both open and honest about how we come to our own conclusions , i couldn't give a shit if we disagree . +p6343 +aVthey are pecking him to death he gives up ugly runs +p6344 +aVCUSTOM_AT jungwirth definitely thought that only deserved a CUSTOM_NUMBER , but hey , i takes what i gets ! +p6345 +aVi can't trend i'm on my ipod touch +p6346 +aVthis was the joint back in the day ! custom_break custom_break and am i the only one who thought gregory looked like he could be philip michael thomas ' brother ? lol +p6347 +aVhow old are u CUSTOM_NUMBER ? custom_break custom_break knicks fan beeyatch !! custom_break custom_break not a melo ball licker !! +p6348 +aVanything better than the grover norquist , tea party , wall street , corporatist gop . +p6349 +aVbitch nigga you need an eye exam , and eye glasses ! cassie one of the finest women on earth ! +p6350 +aVare you attempting to be kinky here ? you have some kind of fetish ? +p6351 +aVyou get the gold star ! the best post i've seen on here in months !! hilarious .. great job , canadian ! ps i think we need you to come down here . i'll sponsor you !! +p6352 +aVhow old are you ? +p6353 +aVnothing worse then a idi CUSTOM_NUMBER t who smugs because of who he is , gay +p6354 +aVyou're a child rapist in ny . you have admitted it many times you sick fuck ! you have no room to talk . +p6355 +aVCUSTOM_AT . o . the man was a genius . +p6356 +aVanti american piece of-shit you are +p6357 +aVhave you be sipping at th e sacramental wine again ? custom_break custom_break you really are a dense little dude . +p6358 +aVyes but remember - the government is listening to the views of the owner of wonga . custom_break custom_break wonga will loan your business money ( at astonomical rates ) +p6359 +aVthe tirade isn't what people caused people to dislike her . read her comments . like this one , " i know of her story and her husband . we all have stories . i mean , i almost died , and venus is struggling herself . so , you know , it's life . " custom_break custom_break she comes across as uncaring and selfish . on top of that she never gives an opponent any credit -- it's always about what she did . custom_break custom_break i absolutely like venus -- consistently root for her and have for years -- but serena is an absolutely awful person that needs to grow up +p6360 +aVstacy c . is right - dumbama and his fat-ass wife and their cronies have created this atmosphere of govt . interference and what they feel govt entities should be doing . schools and others take their cues from the top down , and when they see this admin . forcing restaurants to publish calories on menus , then they feel they should be doing " their part " for their messiah and become food police . i cannot believe that a school puts out an approved food list . i would be suing . +p6361 +aVgallup daily custom_break may CUSTOM_NUMBER - CUSTOM_NUMBER , CUSTOM_NUMBER \u005c u CUSTOM_NUMBER updates daily at CUSTOM_NUMBER p.m. et ; reflects one-day change custom_break no updates monday , may CUSTOM_NUMBER ; next update will be tuesday , may CUSTOM_NUMBER . custom_break obama approval CUSTOM_NUMBER % - custom_break obama disapproval CUSTOM_NUMBER % - CUSTOM_NUMBER custom_break presidential election custom_break obama CUSTOM_NUMBER % - custom_break romney CUSTOM_NUMBER % - custom_break CUSTOM_NUMBER - day rolling average custom_break custom_break it seems the bump romney got is over and the president is on his game . +p6362 +aVthis is someone whose self-importance got the best of him . if anyone should be fired it would be tate . this kind of behavior is inexcusable and unbecoming of a man who holds the futures of many employees in his hand . +p6363 +aVdon't stand on your porch . +p6364 +aVcamp has got to come in here and get this guy . this is where you earn your money . +p6365 +aVyou could not be more wrong . the american tea party stands for limited government . fiscal responsibility , and a return to our constitution . the tea party when it rallies or protests does it legally with brains . we pay the permits , arrange the events , say our piece , and then clean up and go home . the occupukes on the other hand . are not only different , they are opposite . they trespass , they steal , they show up without permission . they damage private property , they collect urine and feces to throw on people . they set fires , they smash store windows . they rape young girls . i can go on and on . oh and the heat , ac and warm beds were all paid for by those people . don't kid yourself that we are not committed to our cause because we are not stupid like you or ows . there is a right way and a wrong way to do things . you and the occupunks have choosen the later . +p6366 +aVbecause that is how they get their rocks off . our government is run by pedophiles who sexually torture children . +p6367 +aVhe actually said " what a spoiled bitch i am " . i never hated colton the way most of the posters did , because i felt for him . being gay in a republican family , can only mean that you have been villified . he was dismayed that it was men vs women , as that took away any comfort zone he may have had . the men didn't welcome him , and when he got power , it went to his " spoiled bitch " head . +p6368 +aVwith inbreeds being the longest running malcontents . +p6369 +aVquote from teresa may " that is why we have been trying to deport him to jordan , his home country . " trying - since when does a sovereign have problems trying to deport diseased minded scum like him . stuff the eu laws and if the uk is \u005c\u005c ' fined \u005c\u005c ' by the eussr for doing this then don \u005c\u005c ' t pay it .. and then stop all financial payments to this corrupt experiment . it doesn \u005c\u005c ' t work , its broke so listen to the people camoron and have an in or out referendum .. now ! +p6370 +aVCUSTOM_AT custom_break custom_break you are right concerning campbell . my bad . the qb carosel has me mixed up . anyways , i still don't like knapp and think we went that road with him once before and do not need to revisit it again . cable obviously did not think too high of him if he stripped his playcalling duties and decided to call the plays himself . if knapp was truely great at what he does , he would have had some positive influence on this team with his quarterbacks , and in my opinion , he didn't .. carson palmer needs a guy like saunders whose offensive connection to him is undeniable .. +p6371 +aVi'll like your comment too if it makes you feel better . +p6372 +aVwhy didn't obama go to wisconsin and urge the republicans to abandon their own america form of austerity ? +p6373 +aVif they deleted his post , i wold surely be banned for my flaming all over joe . :) +p6374 +aVwhat the hell are you talking about ? +p6375 +aVpeople dancing , drinking , having fun at the clubs in miami custom_break custom_break " life is good in miami , heat won !! lets get drunk " custom_break custom_break -- heat fans +p6376 +aVthis is so american . load of utter ' positive people makes positive lives ' fake christian bullshit . custom_break custom_break put it this way , take CUSTOM_NUMBER for example : give up complaining . this to me just reads like ' become a walk over ' . if we all gave up complaining , nothing great would get done or crap would be accepted . go into a hairdressers , get a shit haircut for $ CUSTOM_NUMBER . don't complain because you are a happy , pissed-off with your shit haircut , person who's just been taken for a ride . give up the luxury of criticism . for a start it's not a luxury . you can be critical if you want . i believe it is a trait that i enjoy . why ? many people are idiots . it's the truth . if you are in a job and you don't criticise people who do crap work then you'll have an office / workplace full of people who can't do their job . these are basic personality traits of intelligent people . but i guess retards are happier than all of us . +p6377 +aVyou're one of my favorite commenters . +p6378 +aVdude , it looks nothing like the " fag-box . " it looks more towards playstation-meets - alienware console . it has already been proven that modern consoles continually progress towards a pc . so please take your idiotically painful comments elsewhere . +p6379 +aVhowe does it feel to be a freedom leech parasite ? +p6380 +aV.. and all the arseanal fans silently weep into their hankies !! custom_break custom_break there's nothing to see here , fellas - he's a free man and still the spurs manager ! custom_break custom_break custom_break custom_break unlucky ! +p6381 +aVyes you have to have comedy in your life +p6382 +aVmoron , the latinos are becoming a large voting block you can't just dismissed them like you did with blacks , gay , women and other minorities . custom_break you need a majority to win and all whites don't buy your crap +p6383 +aVwhen is bush going to be asked to campaign for romney . when he does i'll buy you a dinner . i wonder why bush is not wanted . " custom_break custom_break the better question is why a sitting president like obama is not wanted ! custom_break custom_break notice he did CUSTOM_NUMBER fundraisers the weekend before the vote all around wisc . never stopped in wisc . custom_break custom_break notice no one wants his help campaigning ? +p6384 +aVwait till a raptor grabs it in mid air . bad days man . +p6385 +aVhave you ever given him props or at least not dissed him out on any thread ? i'm not a fan of his movies either but that don't mean i start talking shit on every fucking post .. +p6386 +aVCUSTOM_AT that dynamic has been clear since the teabaggers threw their first tantrum in january of CUSTOM_NUMBER and rush declared that he wanted the president to fail . \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break they want the economy to suck . they need the economy to suck . this explains their otherwise puzzling legislative choices over the past three years . +p6387 +aVyou are stuck on stupid obviously .. give me a break and don't vote . custom_break moron +p6388 +aVthis man's drunk as fuck , he's on drugs , he's a male prostitute . +p6389 +aVwho told you that .. stupid ask yourself who kick his daughter out of the house at the age CUSTOM_NUMBER .. when it's comes protecting weaman you guys the last ppl on earth who can open their mounths .. +p6390 +aVCUSTOM_AT try big CUSTOM_NUMBER custom_break they are dope +p6391 +aVight ima get in on you mr. army man or w.e. the fuck you are . i have family fighting on battle field right now atleast CUSTOM_NUMBER members are all juggalos . just like me you little ick sucking divk whipped bitch . if you have the time to sit here and talk shit about family then you obviously aren't doing your job fighting for our country your busy trying to start another world war with the juggalo family so shut the fuck up and grow a pair you pussy . +p6392 +aVyou are so correct .. the red sox are the worst team . +p6393 +aVheadlines going to be in a few months , mark wright reject back home +p6394 +aVi didn't watch game so this morning watched sky see what fuss was about , i have to say at times football fans have to put there loyalty to respective clubs aside , what ballotelli did was a disgrace he won ; t admit it but that was deliberate and has no place in football i will be amazed if he isn't banned +p6395 +aVare you retarded ? you think iraq & afghan were avenging deaths ? lol .. get yourself checked buddy .. even bush would laugh at you .. custom_break custom_break there is a reason why we are proud of india .. cuz we are not like us or israel who will or can go to war at the drop of a hat .. on the long run even that is proving costly to them .. custom_break custom_break so wake up .. we are talking about music here not war .. you dumb moron +p6396 +aVno matter how great your body looks , there's something pathetic , desperate and trashy about a woman that old acting like that !! +p6397 +aVpiisii .. apparently knows nothing about cold facts custom_break custom_break republican trolls make us all sick with their non factual crap custom_break custom_break you can cry until CUSTOM_NUMBER .. your lies mean nothing to intelligent people +p6398 +aVthe bad part of the story is the dumb redneck republicans , like yourself . custom_break custom_break not sure if these folks are sociopaths like you , though , so you're probably a downgrade from them .. +p6399 +aVyou as stupid as you were yesterday . +p6400 +aVi may never see the light of day again " .. he should never see the light of day again ! twisted beyond belief . you couldn \u005c\u005c ' t do what he did to a dog , let alone another human being . +p6401 +aVthere are a lot of morons posting on this site but you are in a class all by yourself . +p6402 +aVyou are a moron . +p6403 +aVhow the fuck do you have orange beef but not orange chicken ? +p6404 +aVsuck my dick yeaah babby pussy +p6405 +aVautumn .. you are , and idiot . custom_break custom_break red flag #102 - girls with no sense of humor . +p6406 +aVeli manning , brett favre , john elway +p6407 +aVif she won't sleep with you , you could probably just force yourself on her and any reasonable judge would take that tattoo as a permission to date rape stamp +p6408 +aVholder and obama will be hit back from all directions and CUSTOM_NUMBER times as hard . dozens inside the doj and the wh who have dignity and patriotism will turn on them both like rabid dogs . this administration is goind down and right into federal prison . nothing can stop it now . nothing at all . the people are pissed off and out for heads . custom_break custom_break holder = peice of shit custom_break custom_break obama = fucked up sociopath +p6409 +aVso is a skunk half black and half white and they both stink . why do b l a c k people stink , so blind people can h a t e custom_break them too . lol +p6410 +aVi wonder if that'd stand up in court . " he might have killed someone , but fuck me he can play cricket ! " he was a prick . +p6411 +aVthey're not . the pg proposal is a list of people who have committed crimes with a gun . not a way to register guns . ( is no one else disturbed by the idea of the government maintaining lists of people they don't like . cue ' " you know who else had lists of people they don't like " jokes in CUSTOM_NUMBER .. CUSTOM_NUMBER .. ) +p6412 +aVCUSTOM_AT CUSTOM_AT you know , if you stick a screw driver in your mouth and bang on your fillings , you might be able to pick up an easy listening channel . +p6413 +aVthat's because you're a nobody . +p6414 +aVthe korem foundation will never see another dollar from me . +p6415 +aVi just did it , but for some reason it's not registering , maybe needs some time . +p6416 +aVi could be as effective ( ineffective ) as huff . +p6417 +aVyo this my nigga right here ! my n my boi lil b fuck bitches on the regular , we fucking everyone bitches . tell yo boys that yo bitches aint safe when mel gibson n lil b rollin out on a bitch hunt +p6418 +aVoh hey , i have yousaid . it if you like . +p6419 +aV" it means the world isn \u005c\u005c ' t changing , it means the world has already custom_break changed , " steven goldstein , chairman of the gay rights group garden custom_break state equality . but , right is right and wrong is still wrong ! +p6420 +aVomg ! are you a vs girl also ?? !! custom_break custom_break did you hit up the semi annual sale ? i went fucking crazy !! +p6421 +aVyou are incredibly stupid .. +p6422 +aVCUSTOM_AT in a few years , they'll make a damn movie about it ? custom_break custom_break uncle daddy rides again ? +p6423 +aVi like you aggie . +p6424 +aVobamawon due to the media not doing their jobs , we still know nothing about obama and its almost CUSTOM_NUMBER years later why ? +p6425 +aVgod bless you , and may you live a long and fruitful life and spread your wisdom . +p6426 +aVha . i'm glad you are pena's girl , you know he really wants to play for the red sox . he's from boston and went to northeastern but got cut by the sox and he's terrible . haha . you have zero valid points . +p6427 +aVi am a moderate . i am fiscally conservative but am moderate on the social issues . the republican party is no longer the party of goldwater , teddy roosevelt nor even reagan . the gop is the party of jerry falwell , tony perkins and people like michelle bachmann . custom_break because i am gay and can not find a place in the gop , i voted for obama in ' CUSTOM_NUMBER . custom_break however , this year i am considering voting for romney this year . custom_break republicans better hope romney gets the nomination because santorum would be handing the election to obama . santorum is scary conservative . he wants the government to be all up in peoples ' business and i wouldn't be surprised if a president santorum created a morality police . custom_break i believe the majority of americans are moderate and what this country needs is a moderate . i am so tired of us swinging from extreme left to extreme right and back again . +p6428 +aVwhy did you do that ? " " because you smell like dog poo . you're so stupid , just like dog poo . you're made outta poo ! +p6429 +aVthe democrats would sell out our young job seekers for a handful of illegal votes and a CUSTOM_NUMBER cent tomato . +p6430 +aVpass on grass and pass on rainbows and wings +p6431 +aVyou wouldn't know a failed policy if it sent you and all your neighbors to the poorhouse . +p6432 +aVbut jack from raleigh wasn't done . he came back with this bit of furious grammatical genius : " custom_break " holy hell , jack . calm down . " custom_break custom_break god d CUSTOM_AT hilarious ! custom_break custom_break who writes your material grazid ? custom_break custom_break mm never even acknowledged we were here ( well accept when uber ticked him off ) grazid not only interacts with us , he calls you dumb when you're being dumb .. right beeaner ? +p6433 +aVmaybe republicans can't use filibusters in union votes to grind all decisions to a halt . custom_break custom_break CUSTOM_NUMBER % is probably enough to win elections there . +p6434 +aVCUSTOM_AT CUSTOM_AT a funny thing happened on the way to that forum , but all the optimists were too happy to notice . +p6435 +aVyeah i'm pathetic but your the idiot going around trolling other teams pages . why don't you get f # $ CUSTOM_AT life you little sh CUSTOM_NUMBER thead . +p6436 +aVron paul could start his own third party tomorrow and suck a large percentage of democrats , republicans , libertarians and independents with him . you think ross perot was bad ? ron paul might even challenge to win running as a CUSTOM_NUMBER rd party candidate ! +p6437 +aVwe can tell by their mugshots who is pinky and who is brain .. lol +p6438 +aVugly bitch go prostitute yourself so dat you can buy a big enough pant bottom to cover your gigantic ass +p6439 +aVif you want to lick jewish ass , go do it in jerusalem . but stop using this country you israel-first traitor . +p6440 +aVagreed .. you come on here to proclaim a useless point to who ? the cnn community ? parasites that have nothing else better to do then trying to make a valid point to .. who ?? +p6441 +aVCUSTOM_AT unless that happened by chance .. +p6442 +aVare you edge-triggered or level-triggered ? +p6443 +aVnice smelling .. er , spelling sphincter +p6444 +aVhow do you know ? custom_break custom_break besides who says everyone has to have moral standards based on my gardener ? +p6445 +aVtoo bad that wouldn't do anything about the gay american citizens found in all CUSTOM_NUMBER other states . +p6446 +aVmr cagape , the things you \u005c\u005c ' ve listed are true but only the tip of an iceberg . custom_break i \u005c\u005c ' ve been in hong kong for two years now , and the longer i stay here , the more i hate this place . it \u005c\u005c ' s horribly crowded , which leads to plenty of rude people and deathly polluted air . it \u005c\u005c ' s ridiculously expensive , and even so , the nicer ( and expensive ) restaurants are always booked out and the services are shit . it \u005c\u005c ' s superficial ; if you are or want to be a nice person , you will always get taken advantage of , unless you dress in such a way that says " i \u005c\u005c ' m rich " on your forehead . even if you are rich , like some of the chinese mainlanders that rush into the city for a weekend shopping spree , you will still get treated like shit . i don \u005c\u005c ' t get why people love hong kong so much . it may look civil on the outside , but on the inside , it \u005c\u005c ' s rotten to the core . it \u005c\u005c ' s just capitalism , you may say , but i don \u005c\u005c ' t see it in the us , and i don \u005c\u005c ' t even see it in china mainland ( which contrary to what they argue , is very much capitalist ) . living here doesn \u005c\u005c ' t make me rich , it makes me pull ot everyday , put up with selfish rude people everywhere , and pay ridiculously high rent for a tiny apartment every month . if i live here for another two years , i will become so bitter that i might just fit in . +p6447 +aVyeah i know , i am being a troll on purpose . i still and will always be known as jskop . i do not have to change my account every few days because i'm awesome like that . i can troll one day and the next be taken seriously by everyone . +p6448 +aVyou all , including your son , deserve a slow , painful , and miserable death . "" custom_break custom_break that's how zimmerman stands his ground . +p6449 +aVif you wrap your computer in foil you can stop them from taking your posts down . +p6450 +aVshe is ugly so she would complain +p6451 +aVoperation dics : custom_break custom_break ' distract investors from crashing stock ' +p6452 +aVactually the packer still have the rights to jolly . +p6453 +aVfrom your computer through their website . +p6454 +aVthis is what i wore to the most recent wedding i attended , which was a daytime , black tie optional affair : CUSTOM_URL i think i looked glamorous as fuck . +p6455 +aVpig noesed / no talent jack .. this guy should get the worst actor award every year . +p6456 +aVand the last day is upon us . will i be the lucky one ? doubt it , but it's still a sexy piece of hardware ! +p6457 +aVuh , if the autopsy plus the exam of the girl prove that he was raping the daughter , then he was caught red-handed , which doesn't fall under the category " innocent until proven guilty . " if you wouldn't do the same thing in that father's shoes , then you don't have children . +p6458 +aVcome on sweeney show us again man +p6459 +aVits going to be difficult to lose weight in CUSTOM_NUMBER days . honestly , most of the weight that you'll lose is going to be water and maybe a little bit of muscle and fat if you are very careful with your calories . you can also be certain that you'll gain it back again once you get of the diet . i'd recommend that to take it slow and easy so you can see the long-term benefits . custom_break custom_break custom_break custom_break i've personally lost CUSTOM_NUMBER lbs since dec CUSTOM_NUMBER . my blood pressure was CUSTOM_NUMBER / CUSTOM_NUMBER , now its CUSTOM_NUMBER / CUSTOM_NUMBER . my cholesterol was CUSTOM_NUMBER mg / dl , now its CUSTOM_NUMBER mg / dl . i'm no longer pre-diabetic and i'm in the best shape of my life . it wasn't easy but i can say that everyone can do it if they have the right program . custom_break custom_break custom_break custom_break if you're interested in my story please head over to zdiets . net custom_break custom_break custom_break custom_break cheers . custom_break custom_break custom_break custom_break ryan e . parker +p6460 +aVyou're a pussy ass punk . +p6461 +aVapparently hickson has said he will take the min to play with lebron again .. good bench player for the heat . +p6462 +aVsimply terrible . cop should be fired . +p6463 +aVvery sorry about robin , however i can guarantee that if this was a story about just your average person it wouldn't be getting this much attention . sorry if its offensive but tough shit its the truth and you all know it . +p6464 +aVhaha .. atleast get your insults straight you idiot !! .. +p6465 +aVo ' neil -- custom_break custom_break hold your ground !! don't admit to custom_break something you did not do to satisfy an outward agenda by those who custom_break want to conform to international racing for their own profit ! yes , custom_break you have violations , as many other trainers do , but , you are the custom_break center of attention right now -- no better person to attack !! you custom_break live in a faulty generation caught up in personal transference of custom_break wrongdoing by the general public focused on lack of commitment to custom_break themselves , family , and country ! custom_break custom_break doug , just look around you and see what custom_break the present day ideology has done to our country , now , they want you custom_break to become part of that same agenda in the sports world -- don't do custom_break it !! the people around you know you for who you really are -- custom_break forget about the deadbeats , and the press , who themselves should be custom_break ashamed of their lack of responsibility to the people of this custom_break country ! focus on winning the triple crown -- your way !! you've custom_break come this far on your own , stay that way !! good luck -- the \u005c u CUSTOM_NUMBER ctrue \u005c u CUSTOM_NUMBER d custom_break fans will support you for who you are , not what others want to make custom_break of you . +p6466 +aVhey cameren , i just met you , and this is crazy , but here's my number , so call me maybe +p6467 +aVi stand corrected that was the memphis series but they beat the heat in CUSTOM_NUMBER , then this yr okc swept mavs due to player improvement +p6468 +aVthe guy is an idiot if he sticks his dick around without protection . +p6469 +aVoh please , spare us your fantasies . +p6470 +aVwell , no . generally if i consider someone a tramp i have no desire to look at their sex pictures . custom_break custom_break what's your excuse ? +p6471 +aVi still dont see why half of you niggas click on every video that he post on wshh just to hate . if he so wack why the fuck you even click the video . #based +p6472 +aVi bet you are a white devil or cracker +p6473 +aVa combination , he is a drunk we all welcome but has a crazy streak +p6474 +aVyep , and that means that you would have to find another cash cow to suck the teats of .. nothing but a leach so give it up .. +p6475 +aVsounds like a medical condition . +p6476 +aVyou are human garbage . +p6477 +aVi dont know about a high chance , but definitely a chance . +p6478 +aVyour little girl will probably look just like her :) lol +p6479 +aVCUSTOM_AT he is so wrecked physically right now . there's definitely something wrong with him . you can't really use the " lazy " excuse anymore because he was pretty great for most of the playoffs +p6480 +aVwe'll leave the fanaticism to morons like you , criminal . +p6481 +aVcan we have your address so that when you die we can all come and pay our respects , and then urinate into your urn before they flush it ? +p6482 +aVif only it could be your rectum , right ? +p6483 +aVlol .. and he told them to go suck your man child messiah's big toe .. custom_break custom_break custom_break lol .. +p6484 +aVfinally ? where have you been the past few years ? phils played hurt in CUSTOM_NUMBER and CUSTOM_NUMBER . +p6485 +aVthat takes more strength than the father in the story would ever know . much respect to you . +p6486 +aV.. he should be punished in some way obiously , just because he's in the sas shouldn't make him untouchable !! unquote custom_break custom_break custom_break custom_break custom_break custom_break he has been punished plus he will get done by the army .. in the forces you get done twice .. once by the civil courts then by military justice ( if i may use those terms together as you are guilty until proven even more guilty ! ) +p6487 +aVdcjohn : have you heard some of the white folks down in good " ole " louisiana speak ? if you turn your backs you can not tell one from the other . it has to do with location and where you are born mostly . come to my state also , some of sound like our friends from the " hills " . there is no such thing about being ignorant or uneducated just because you have an unusual accent . blacks speak in all languages depending on where they are from ; from the queen's english to french , or gullah , or islander or spanish . blacks are very adaptible where as other groups are a " closed knit bunch " . +p6488 +aVmore people on here than you , you cunt . +p6489 +aVtabby custom_break jhay custom_break cutch custom_break el toro custom_break pgh kid custom_break gfj custom_break hit collector custom_break cb custom_break ground chuck +p6490 +aVi think it clearly displays your lack of rational thought if you truly believe that . +p6491 +aVno we have no concept of sitting on your butt and waiting for a hand out +p6492 +aVfact .. you are a moron +p6493 +aVjust like the media has ventured to compare manu to kobe , but where were you then ? +p6494 +aVu dad already ashamed of u cuz he dnt know if u really his son cuz your mom was sucking and fuc . king the crew back in da days .. lmao .. now u grew up to hate black men wit money cuz u know dsts what your mom is looking for .. lol .. tell her i'll pass up on dat a . ss cuz it got to many miles on it howeva she can give me some slow head .. lol .. lol .. lol .. +p6495 +aVthey have historically been completed unable to get the real threat off the road so they're going to pick some very low hanging fruit here . inept lawmakers . inept politicians . and sheeple for police who are going to love " enforcing " this new law . they can't enforce the laws we have now that matter , so i guess they need some new ones . +p6496 +aVmy little brother and his friend are running around , making fart noises , and quoting the lorax . i have no fucking clue what is going on . +p6497 +aVbe careful picking it up . for that price it could easily be an admiral ackbar . +p6498 +aVi guess their coverage was idiotic to you , especially when they were all but anointing your boy as the champion after day one of the open . tht is what i dearly love about the sycophants , they have to have it both ways .. all the time . crawl back under your rock crapi . +p6499 +aVthe guys cutting down our tree said they would cut another tree down for a carton of beer . haha typical tradesmen . +p6500 +aVare you funny tonight ? !! +p6501 +aVits black goo fucked into space jockeys that causes xenomorphs . thats why they have similar giger bodies . doesnt need to be two crazy coincidences to set up prometheus xenomorphs and alien xenomorphs . +p6502 +aVcortez u callin niggas soft but u look soft as hell too my nigga +p6503 +aVman i see why you celtics claim to be classy . +p6504 +aVhow does trolling for obama pay ? pretty well ? what ? no pay ? you're an idiot , don't breed . +p6505 +aVand you , dee , are a typical leftist idio t . +p6506 +aVjolie is my qurl . excited as hell to see this movie . too bad its CUSTOM_NUMBER years away .. fuck +p6507 +aVyou are a child . +p6508 +aVlibero ha per vicedirettore un signore che ha pubblicato l'audio di una telefonata privata con un parlamentare , crosetto . libero fa campagne contro le intercettazioni e poi pubblica telefonate private ( " quel testa di c \u005c xe CUSTOM_NUMBER andato a milano " diceva crosetto del suo boss ) . il direttore di libero si \u005c xe CUSTOM_NUMBER fatto un attentato da solo , o forse \u005c xe CUSTOM_NUMBER stata la guardia del corpo recidiva . pansa , il megagiornalista , su libero ha scritto ( e mai smentito ) che enrico berlinguer ha telefonato a curzi per raccomandare la figlia , nel CUSTOM_NUMBER . da morto ! questo \u005c xe CUSTOM_NUMBER libero . che si prendano freda . +p6509 +aVhang on , eduardo , what's your home address ? i'll come forcefully kick custom_break your door down , take over your house , if you try and kick me out , i'll custom_break seriously physically harm you , because as you pointed out , right to self custom_break defence !! i hope you realise how retarded your argument is , truely ! +p6510 +aV< blockquote > little girl , you , you of all people make that statement . how dare you after all your feminist / misogynist bullshit . custom_break custom_break custom_break oh , and toots , anytime you want to try anf follow me up a CUSTOM_NUMBER , CUSTOM_NUMBER foot custom_break mountain at CUSTOM_NUMBER degrees north latitude and not whine , bitch , complain or custom_break get cramps , you just go ahead and sign up . custom_break custom_break custom_break you are a nypocrtical piece of shit . and anytime sweetheart . anyplace custom_break on the planet . you think you have a bteer pain threshold or the ability custom_break to follow along in my footsteps , you just raise your delicate little custom_break hand . the first whine oir moan out of youy when in the field , and i will custom_break have a dozen cameras on you and make sure the world knows what a whimpy custom_break little hypocrite you are . custom_break custom_break custom_break pussy . < / blockquote > custom_break custom_break fuck you . custom_break custom_break don't call me " toots " . custom_break custom_break i'm disabled , and can't follow you up a mountain of any size . custom_break custom_break i also deal with chronic fucking pain , day in , day out . custom_break custom_break meow meow , fuckstain . +p6511 +aVi don't watch the brain numbing eastenders , but have always had a thing for nicola stapleton .. i would ! +p6512 +aVha ha , ford will blow it away . +p6513 +aVCUSTOM_AT i remember first seeing mike in board james and finding out he plaed the joker in the batman reviews and bugs bunny and all that awesome stuff , i was actually saying , i'd like to see more from him . while i do miss seeing james more then we are , he's making the movie so its understandable . just think how boring it would be around here without mike right now , i'm glad he's stepped up to help out more . +p6514 +aVwhat part of go back too school and learn how to string a proper legable sentance together did you not understand do you need a fucking diagram custom_break custom_break it is obviouse your a women as you havent learnt anything go baack to the bottom were you came from until you make sense custom_break custom_break just a waste of server space same as all women . i doubt even huge black cock in your filthy hole would shut you up moron . +p6515 +aVok i am sorry but why are these idiots still around . i am white and can't stand the racsit pigs . if you can't stand being around other races and cultres then get lost . if you beat people because of their color they should be shot . now they want a stretch of road . yeah just what someone of color needs . to go down that road and be beaten or shot because they are of a different color . i wish i can do the stuff they do and get away with it .. +p6516 +aVthe comments on twitter shows that it was to embarrass tyler . if there was not intent of that then why would you do such a stupid idiot move as this ? we are all legally adults by the time we go to college ( unless you are a major genious ) , so it's time to start thinking like one . +p6517 +aVwhat the fuck sun !! why are you not posting my comments !! ill tell you what i wont fucking bother writing my opinions then !! ill just fucking say nice things about all these system abusing scum bags shall i .. decent +p6518 +aVmine too . so i just assume all the time over what it was . custom_break custom_break most of the time , they are correct assumptions . +p6519 +aVjoyce should be in rf .. zobrist should be at CUSTOM_NUMBER b .. rhymes shouldn't be playing . +p6520 +aVi actually think this is CUSTOM_NUMBER of the most ' sophisticated ' outfits i have seen her in lol .. i used to like her years ago but she has went downhill in my opinion and will go as low as possible to get that frozen face in the papers .. i would like to know who these ' katie price ' fans are that she makes her millions from because certainly no CUSTOM_NUMBER i know admits to liking her .. +p6521 +aVflagged , you're a real dick . +p6522 +aVi made a joke .. a joke you did not get .. a pun on color if you will . custom_break you need to relax . look at my pic . i'm a white guy calling white coaches dumb .. if you cant get that , then you must be CUSTOM_NUMBER y / o . +p6523 +aVhere he is explaining how they tried to have him killed for propaganda purposes . custom_break custom_break CUSTOM_URL +p6524 +aVbrown dog : custom_break custom_break remember that you thought that .. while the crowds gather on the streets .. greece , spain , france , quebec canada etc etc etc .. it is not only a dynamic that will occur in the us but is already occurring , where people want their rights and the real culprits of the financial disasters held accountable ! +p6525 +aVdude , calm the fuck down and stop yelling at anyone who disagrees with you . +p6526 +aVsounds like venezuela .. ah , the road to being a banana republic with the emperor with no clothes that his minions the media insanely keeps insisting he isn \u005c\u005c ' t naked .. custom_break and what is up is down and what is right is wrong . custom_break custom_break " the prince of this world " ( john CUSTOM_NUMBER : CUSTOM_NUMBER ) is a master of false systems . he crafts entire schools of thought that can suck us in and destroy us .. he \u005c\u005c ' s behind false religions , false philosophies , false doctrine , false morality , and every system of that that cannot lead anyone to god . he has infiltrated governments , economies , educational institutions , and anything that has influence in this world . the conclusion john came to is sobering . " the whole world lies in the power of the evil one " ( john CUSTOM_NUMBER : CUSTOM_NUMBER ) . custom_break custom_break \u005c\u005c ' the invisible war \u005c\u005c ' , chip ingram +p6527 +aVsorry , i hate to be one of * those * people ( if they exist here . haha ) but , i posted this juts a few minutes ago in the old thread and i wanted to move it over here because it \u005c\u005c ' s a bit mind-blowing . custom_break custom_break from her letter to tiger woods : custom_break " the world seems to be all up in your business , and i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m sorry about that . i really am . what happens in your life , in your car and in your marriage should not be a public issue . unfortunately , because you are a public figure , sometimes your private life does become public . i guess it comes with the territory and maybe you \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER re used to it by now . it still must bite , though .. of course i long for you to own your mistakes , tiger . if you aren \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t already , and i hope you are , man up to the pain you caused your wife and family . let the hot searing anger she has for what you did change you , not harden you . it must be a hard road to walk , both for her dealing with what you have done , and for you , making sense of where to go from here when you are in the public eye the way you are . stand behind your actions by way of fully admitting and acknowledging them to yourself . don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t lie to yourself or pretend they aren \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t as bad as others think or that somehow you were justified . you weren \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t . you are reaping what you sowed , tiger . own it . but see , whether you acknowledge all that publicly to your fans is entirely up to you . it makes no difference to me if your public apologies are detailed or not . for it is not us you need to be apologizing to . because you are well known does not make you accountable to the public . share only what you want , and keep the rest private . keep it all private , if you can . but , and i speak from painful experience here , coming entirely clean does feel good . really good .. custom_break custom_break tonight , i am praying for restoration for your marriage . having almost lost mine , because of my own sin and pride as well as that of my husband , i now hold redemption in marriage in such high regard .. but my advice , as someone who has been there ? don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t hide it . own it . embrace it . learn from it . change your ways . feel repentance . apologize to your wife . seek counseling , lots of it if you can . let the searing pain and guilt and remorse you hopefully feel inspire in you to see yourself for what you are : a wretched sinner in need of forgiveness . custom_break custom_break you , your heart , and that of your wife and children are what matter . focus on them , on saving your marriage , if that is what you want to do . and truly , my husband and i pray that it is what you want to do . " custom_break custom_break +p6528 +aVcant wait , this guy is amazing . +p6529 +aVCUSTOM_AT custom_break cool . how the fuck are you and how do you grade the vikes ' draft ? +p6530 +aVgeorge stephanopoulos custom_break custom_break is the son of a a greek orthodox priest in cleveland custom_break custom_break im sure his father is not very proud of his son becoming a lacky supporting the obama administration custom_break custom_break george has been licking the boots of democrats for years custom_break custom_break i guess the gene pool comes from that great economic power greece custom_break they are truly economic geniuses custom_break custom_break jail is to good for him custom_break +p6531 +aVit looks these teabaggers are going to pull out all the stops for CUSTOM_NUMBER , doesn't it ? +p6532 +aVi want this . but it's not out yet . been a while since i said that about an iphone app . +p6533 +aVCUSTOM_NUMBER post del thiago custom_break CUSTOM_URL +p6534 +aVyou're female , gay , or both . +p6535 +aVkeep the money away from kenny . over \u005c\u005c xa CUSTOM_NUMBER million spent and CUSTOM_NUMBER th in the league . rofl +p6536 +aVmama manzo is evil and she must be stopped ! =) +p6537 +aVbefore calling others stupid you gay piece of shit you should check the spelling of your own username because it seems that you forgot to complete its spelling . dild .. o ? dildo ? * ur extremely gay +p6538 +aVCUSTOM_AT jessup CUSTOM_NUMBER . CUSTOM_NUMBER " little bastard shot me in the ass ! " -- the waco kid +p6539 +aVsuck a dick pussy ass nigga bitch !! +p6540 +aVhey rynthih CUSTOM_NUMBER who the hell r u speaking on sachin . custom_break shut up u fucking ass [[ midfing ]] +p6541 +aVsoo , what you \u005c\u005c ' re saying is that you were a bully then , and you sound like one now . custom_break custom_break with a name like " klanman " , you must be a member of the kk . custom_break custom_break after looking at your profile and reading some of your posts , you seem to be a vile , pathetic loser full of hate . your mother must be real proud . +p6542 +aVit was never going to last with ashton . custom_break i really hope she makes a full recovery , as she's beautiful , fiesty , confident & seems really likeable . you just know bruce will be there for her every step of the way . it's sad to see her like this just because he got bored of the marriage . he married a woman who was approaching CUSTOM_NUMBER , so he knew how different it would be . he shouldn't have done it if he knew it wasn't to last . +p6543 +aVcelebrity big brother is a mistake . +p6544 +aVim a man u fan . i think de gea is a flop CUSTOM_NUMBER what was paid CUSTOM_NUMBER him . he has made a couple good saves . custom_break other than that he lacks confidence and doesn't look ready CUSTOM_NUMBER the prem . custom_break i think man u will need another goalie in next couple of years as se gea will get worse . +p6545 +aVhey jurbinsky your mom's a pile of garbage why don't you shut up . +p6546 +aVaside from that , they tend to run to the doctor all the time . my wife sees a doctor at least CUSTOM_NUMBER or CUSTOM_NUMBER times a year . last time i saw a doctor was when i broke my hand CUSTOM_NUMBER years ago . +p6547 +aVyou really are a fool . +p6548 +aVi have one too ! and i snagged a black and white maxi skirt from target last week ! it's so comfy !! :) where did you get your dress ? +p6549 +aVwe should hold holder at gitmo until he comes clean . +p6550 +aVyea , damn those shriners and their little cars ! +p6551 +aVCUSTOM_AT CUSTOM_AT what are you protesting ? same thing as me ? +p6552 +aVi just want to tell every parents that plz . let your daughter or son to marry their love , specially parents of a girl child must think that forcefully marry your daughter to someone stranger to her is like giving your daughter to a rapist because definition of rape is making sex with some one without her mental and physical permission . plz . stop forcefully marring your daughter , otherwise you are doing a sin . +p6553 +aVgo back to sucking your neighbors dogs dick +p6554 +aVCUSTOM_AT nobody likes the messenger . +p6555 +aVsheeps balls ? ! are you rebranding ? " sheep's bollocks to poverty " is quite a mouthfull .. did you see what i did there !! +p6556 +aVshut the fuck up +p6557 +aVyou take the money , represent the child molester and hold your nose . you don't try to look like you're enjoying it . +p6558 +aVgreat pin bea . this photo just tells a story . +p6559 +aVislam vs . judaism : custom_break in CUSTOM_NUMBER islam and judaism's holiest holidays overlapped for CUSTOM_NUMBER days . custom_break muslims racked up CUSTOM_NUMBER dead bodies in CUSTOM_NUMBER terror attacks across CUSTOM_NUMBER custom_break countries during this time .. while jews worked on their CUSTOM_NUMBER th nobel prize . +p6560 +aVreally ? you'd better be prepared for the whole law to be trashed , and pack your bags , your leaving the white house come jan , and good the heii ridence , you commy marxist bastard ! +p6561 +aVhey right winger " just CUSTOM_NUMBER thefax " , immigration isn't a " wedge " issue , it's a policy issue . custom_break custom_break get a clue , moron . +p6562 +aVthat's a brilliant comeback blowhard even though we both know she died from a brain aneurysm custom_break custom_break would you like me to show you the link again to the story and you can act like you didn't know you racist inbred trash custom_break custom_break slaver to your face +p6563 +aVin the liar's own words : custom_break custom_break custom_break custom_break custom_break flashback CUSTOM_NUMBER : obama attacked trying \u005c u CUSTOM_NUMBER to hide behind custom_break executive privilege \u005c u CUSTOM_NUMBER custom_break custom_break cnn \u005c u CUSTOM_NUMBER s larry king : \u005c u CUSTOM_NUMBER cdo you favor executive privilege or should karl rove and custom_break others in that like position be forced to testify before the house or senate ? custom_break custom_break custom_break custom_break obama : custom_break \u005c u CUSTOM_NUMBER cwell , you know , i think we \u005c u CUSTOM_NUMBER ll \u005c u CUSTOM_NUMBER we \u005c u CUSTOM_NUMBER ll determine over the next several weeks custom_break how this administration responds to the very appropriate call by patrick leahy , custom_break the chairman of the judiciary committee , to have these individuals come in and custom_break testify . you know , there \u005c u CUSTOM_NUMBER s been a tendency on the part of this administration custom_break to \u005c u CUSTOM_NUMBER to try to hide behind executive privilege every time there \u005c u CUSTOM_NUMBER s something custom_break a little shaky that \u005c u CUSTOM_NUMBER s taking place . and i think , you know , the administration custom_break would be best served by coming clean on this . there doesn \u005c u CUSTOM_NUMBER t seem to be any custom_break national security issues involved with the u.s. attorney question . there custom_break doesn \u005c u CUSTOM_NUMBER t seem to be any justification for not offering up some clear , plausible custom_break rationale for why these \u005c u CUSTOM_NUMBER these u.s. attorneys were targeted when , by all custom_break assessments , they were doing an outstanding job . i think the american people custom_break deserve to know what was going on there . \u005c u CUSTOM_NUMBER d +p6564 +aVCUSTOM_AT gangs of connecticut . custom_break custom_break solid movie . +p6565 +aVthat's a dumb opinion and you are dumb for holding it . +p6566 +aVok , that is fine . he still likes to suck on pinky toes . +p6567 +aVthis is the same obama who slandered ghw for an custom_break executive privilege custom_break claim . +p6568 +aVwhy dony you fuck off +p6569 +aVCUSTOM_AT the catch-phrase refers to the size of the force , easy to understand unless you are not an idiot . +p6570 +aVtoo bad , they're usually pretty relevant . +p6571 +aVso they send a guy to blow up a tree and his own leg ? geniuses . +p6572 +aVCUSTOM_AT @ ' micah carter which sock am i supposed to reply to ? +p6573 +aVthe cleverest comment that i have seen for a long time , i think that it was in the mail custom_break custom_break custom_break custom_break \u005c\u005c ' arshavin is the worst russian sub since the kursk +p6574 +aVlooks like ed malloy is calling a foul on ray playing d in the picture .. classic +p6575 +aVlooks like while you guys have extended b-p with mariners we've got barn-duty for you .. ? custom_break say we do and we do our job , y'all remember that won't ya kindly ? custom_break custom_break as i always say ( and feel :) good luck texas , have at it ! +p6576 +aVand you mother was a fucker . of dogs , to prove it , bark like the dog you are +p6577 +aVthis article is porn for women . seriously , i think this is one of the main things that woman find disappointing in a marriage / relationship with a man . you are a good person with a lucky wife ! +p6578 +aVdemocrats believe the government should take care of them .. republicans feel you should get off you lazy ass and make something of yourself .. +p6579 +aVyou are offensive and stupid . +p6580 +aVyou're an egoistic dimwitted cunt . that's why you fail in your life . don't drag others ' down . +p6581 +aVi'm sure dumb-asses , like yourself , will be trolling full force under our next president .. romney . what does " boyhollow " mean .. or do we want to know ? +p6582 +aVyou so funny . direct financing or shady indirect loan . both cost the taxpayer money . don't say it was just a guarantee because we ended up paying off on that guarantee . name the part of the constitution where it says the federal government can take our money and give it to businesses . of course , we know you would blow a gasket if we took that money and did something useful with it by spending it with lockheed or haliburton . +p6583 +aVwhat the fuck ? ! kane loses again ? ! has he won a match since going back to wearing a mask ? ! +p6584 +aVyou fail at being a mother and a marine .. someone should grab your empty head and give you a killer bone crushing skull fucking in front of your father . +p6585 +aVtook my girlfriend to see it . custom_break custom_break she told me to stop jumping like a bitch :/ +p6586 +aVfirst off , you're not a non-drinker . i am a non-drinker and i am CUSTOM_NUMBER % against this law . there are idiots in this city who should have their licenses cut in half even if they don't drink at all . i have friends who are very careful drivers with clean records and no-claim insurance histories whos civil liberties are being stripped away and people like you are letting it happen . good for you . but redford isn't stopping here . when your rights are being stripped away , you'll be changing your tune pretty much instantly . +p6587 +aVanother hot button election smoke screan . the realalty is who cares . the gay comminity should be allowed to have the same difficultries the rest of us go throught . i agree with christie put it on a ballot for the public to vote on . this way repubs can do what dems do take no ownership of this . really who cares +p6588 +aVthe comments about this sad story only proves how " smart " some people are in this once great nation . kenya is an us ally and have been for years , including during w . bush's administration . if this " crash " was an act of terror , this would not be the first time kenyans faced acts of terror due to their alliance with the us . remember the us embassy terror bombings in the late CUSTOM_NUMBER ' s ? by the way kenya is CUSTOM_NUMBER % christian and the people are not starving to death , for those who somehow believe kenyans are all terrorist trying to destroy america because obama's father was kenyan . get an education before posting " smart " comments about a nation you " smart " posters obviously know nothing about . my heart goes out to the good people of kenya during this tragic event . +p6589 +aVfuck the judges .. better stop the boxing events ! +p6590 +aVyou're a bleeping idiot !! +p6591 +aVyou're a bum +p6592 +aVCUSTOM_NUMBER st century : england - not qualified ! +p6593 +aVyou're a tard +p6594 +aVi'm not even mad . i expect this kind of drivel from him , so it's easier to just ripholes in his CUSTOM_NUMBER / CUSTOM_NUMBER thought out theorem than to take it seriously . +p6595 +aVyeah , like i'd let you have the last say , loser . ;) custom_break custom_break and btw , you're a bad stalker . i don't give a phuck about pitbulls . ;d +p6596 +aVi think he forgot that we just scored CUSTOM_NUMBER runs yesterday . +p6597 +aVbudweiserb CUSTOM_NUMBER custom_break shut up ignorant fool poland ruled over half of russia in the real times of history when guns and weapons weren't even heard of . im sick of you ignorant idiots trying to take a shot at history ** ing loser . custom_break -- custom_break custom_break who are you responding to ? and i know what you're talking about . byli \u005c u CUSTOM_NUMBER bmy pot \u005c u CUSTOM_NUMBER g \u005c u CUSTOM_NUMBER z husari \u005c u CUSTOM_NUMBER . +p6598 +aVsling the term liberal around a little more because people might actually begin to believe you aren't a pro-life democrat . +p6599 +aVyes he does my dick is hard right now i jacked off to him and pretended that it was someone else i knew +p6600 +aVwhere are you getting your information from ? +p6601 +aVbe careful what you say . your comment has to be approved now by unelected hypocrites in washington . +p6602 +aVyou are stupid +p6603 +aVi liked the cersei arc in book CUSTOM_NUMBER , the rest of it was fairly forgettable . +p6604 +aVfor whatever reason , i'm not nervous , i have confidence we'll play well , win or lose .. go okc !! +p6605 +aVyou are a fucking retard .. before doing shit like that won't you consider the other person and how they got violated in to their privacy .. go to fucking hell +p6606 +aVconservatives are social leeches and the scum of the earth . +p6607 +aViran has already done it by proxy . you have no idea what a brutal regime this is . +p6608 +aVjoe paterno let an accused pedophile roam the campuses free .. when sandusky was charged in CUSTOM_NUMBER .. paterno simply let him " retire " -- and why did no other college in the nation try to recruit sandusky ? because they knew he was dirty filthy pedophile .. yet paterno continue to befriend him .. even letting him use the locker rooms .. so that .. another boy could be anal raped in the locker rooms of penn state .. ask yourself .. why would paterno even consider letting a man ( friend or not ) -- back on campus after accused of being a pedophile ? ! ? ! unless paterno didn \u005c\u005c ' t care ? paterno is just as much to blame .. was his stupid decision to let the man back on campus after a d.a. was investigating and continuing to investigate sandusky up until CUSTOM_NUMBER when the d.a. went missing and is presumed dead ( oh and his laptop and hard drive were destroyed too .. can you say cover up ? !! +p6609 +aVi like dbz better , but your opinion counts too . +p6610 +aVwhat hinckley was doing is called fudging . he knew all right but he knew how it would look to admit to it . +p6611 +aVyou'll be not waiting foerever . +p6612 +aVthere's a book out which tracks art rooney's path from bootlegging and gamling to the nfl .. i only point this out to illustrate how money and time can make perceived deficiencies evaporate . +p6613 +aVbut bellinski you are a jewish feigle yourself ! +p6614 +aVstopped caring about my penis size once it became apparent to me the only person that i have to please is myself . custom_break custom_break if my dick gets wet why does it matter if she has a good time or not ? yes my small penis has turned me into an inconsiderate dick , but it's either that or crying about it like a school girl all day . +p6615 +aVdon't you wish you weren't so fat and could dance too ? +p6616 +aVi still think fabian solutions is an in-house creation to provoke more posts - i can't believe any human being , even a fifth form leftist , could be such a mollusc +p6617 +aVattention women . if you are being followed / stalked late at night and your stalker starts a confrontation . don't fight back because if you do and start to beat the heii out of your stalker they can pull a gun a shoo t you . then claim self defense . +p6618 +aVare you stebbers ? +p6619 +aVCUSTOM_AT CUSTOM_AT yea well when you do make sure you punch him with your right hand otherwise it might not be authentic enough for him +p6620 +aVi didn't , these replies didn't end up together with the original comments ! +p6621 +aVwe are creating another whole segment of society that will never work again by extending unemployment . who even would hire someone who had not worked in CUSTOM_NUMBER - CUSTOM_NUMBER years . after CUSTOM_NUMBER - CUSTOM_NUMBER years most people are unfit to work mentally . the real hustlers went out and got a job , even if it was less than what they were used to . custom_break custom_break do you people hear the roar ! ? ! ? our country is rushing towards the waterfall ! look at what is happening is greece ! what makes me mad is obuma may not be able to stop us from going over the falls but he could cushion the blow yet all he thinks about is getting re-elected ! custom_break custom_break not much time left for us ! +p6622 +aVno people like you are the problem we are having in this world . +p6623 +aVmust really suck to be black . what a toxic , vile culture . +p6624 +aVyou put your left foot out .. +p6625 +aVhey my team is CUSTOM_NUMBER games under . CUSTOM_NUMBER and my fans think were the best team , what team am i ? +p6626 +aVyeah , because the other nations in the world that have legalized gay marriage have had so many cases of people wanting to marry sheep oh wait they haven't . you fail at life . +p6627 +aVhmm .. custom_break custom_break you claim that " iranians .. have not started a war in CUSTOM_NUMBER years . " custom_break custom_break yet i clearly recall a series of seemingly never-ending wars between iran and iraq in the latter part of the last century , so who started those wars ? custom_break custom_break just curious . +p6628 +aVlast i checked the constitution still said " all men are created equal " , even the gay ones . how would straight folks feel if their right to marry was taken away ? come on . fair is fair and equality is equally . everyone should have the same opportunities as the rest of us . just because you don \u005c\u005c ' t agree with the lifestyle doesn \u005c\u005c ' t give anyone in a fee country the right to force that opinion on others . we spout freedom as our most treasured of ideas yet we want to limit the freedom of some individuals . that is what doesn \u005c\u005c ' t make sense . if you don \u005c\u005c ' t agree with gay marriage , don \u005c\u005c ' t be in one . but don \u005c\u005c ' t restrict someone else from conducting their lives as they wish . that kind of control is communism . +p6629 +aVbig deal libturd .. go crawl back under your rock .. +p6630 +aVstill waiting for you to put your money where your mouth is , coward . +p6631 +aVbecause of biblical prophecy , which speaks of two distinct camps emerging within the middle east in our day , we know a divorce is coming between the two . one camp is prophesied to be led by iran , the other to include syria . these two are destined to play very different roles in the sequence of end-time events that lead up to jesus christ \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s second coming . syria is the keystone of the pro-iran axis . weakening the assad regime , to say nothing of its collapse , would be a blow to iran , hamas and hezbollah . syrian opposition chief has already pledged to cut military ties with iran should he come to power . it is god , the god of abraham , issiac and jacob who is lining up all these chess pieces , not our feckless government or the un . custom_break +p6632 +aVif it has to be explained , then you are too stupid to understand . leftist fool . +p6633 +aVhe had a democratic congress at first and still got nothing done . even his hollywood friends are jumping ship . +p6634 +aVit won \u005c\u005c ' t matter what the " official " count is , if paul gets enough votes to go ahead of mitt romney that \u005c\u005c ' s enormous . that could blow romney \u005c\u005c ' s campaign completely out of the water . and that could happen , with the people in washington county now aware the whole world is watching . +p6635 +aVyes you need to understand how your guy sucked off taxpayers all his life and will till the day he dies . +p6636 +aVCUSTOM_AT : wel , you negro's are a target in america you know . you're just a bullseye for the white people to target you . +p6637 +aVoh no ! somebody deleted my comment . you all know the rule : CUSTOM_NUMBER delete = CUSTOM_NUMBER reposts . here we go : custom_break #38 bill o is furious that obama isn't getting the us more involved in the fuckedup places in the world . you know internationalist rubish murdouchebag signs his paycheck funded by internationalist saudi royal aldickweed . yeah bill get the tea-tards stirred up the us is not playing murdouchebag-aldickweeds agenda like the bushies . ron paul was right about you foxtarrds . +p6638 +aVwhat is the point of switching between accounts ? custom_break just so you know , you are being software tracked . custom_break its useless you stupid imbecile . +p6639 +aVmake room for your CUSTOM_NUMBER rd roommate in dot .. +p6640 +aVwait , a republican senator had an affair , with a woman ?? i thought those guys just hit on other men in public toilets .. ? yeesh - go figure . +p6641 +aVdo you feel less sorry now that you made us realize how stupid you are ? +p6642 +aVCUSTOM_AT the dude sneed CUSTOM_AT big CUSTOM_NUMBER fans were angry . +p6643 +aVsorry , you are wrong again and as usual . +p6644 +aVquit yelling , you tedious old hack . & nbsp ; why do you care anyway ? you made up your mind ages ago , things like " facts " and " new information " and " nuance " don't matter to you , you effing link whore . +p6645 +aVforreal black - you are an a-hole +p6646 +aVlet basegod fuck your bith man .. let him purge you of that hate . +p6647 +aVCUSTOM_AT new twitter brand pages : CUSTOM_URL ii interesting to see merchants - thought leaders or just sales people ? +p6648 +aVtwo words .. who cares .. needs to sort his prepubescent face out bless him .. has she been made to sign the sex offenders register ? silly girl +p6649 +aVbitch fuck a e-thug , mother fucker im a cold hearted shaolin monk , and believe me when i tell you this , i will hunt you down !! +p6650 +aVlmfao hahaha good one with russias out dated military and china's half as stolen technology i dont even think they can kick taiwans ass combines go watch more of your chinese propaganda videos and stop killing tibetans +p6651 +aVyou're a fucking joke . +p6652 +aVno problem . give them all the money they demand and put up fares to cover it , making plain to all passengers what the fare rises are for . custom_break custom_break the results should be interesting . +p6653 +aVhardly . we can export all the arms we want legally . custom_break custom_break how ridiculous of you to compare the two . +p6654 +aVfucking idiots +p6655 +aVprobably one of the few good things this year is humphries production . he has stayed at a consistent level from last year and that helps , but i don't see him as a starter in a good team . a rotation player yes , but we should still look to resign him because he wants to be here and that is what we need in a player . +p6656 +aVCUSTOM_URL moar green day . +p6657 +aVhenri ? your a gutter moron and the lies you sprew mean nothing . you're an inept lil ' piece of garbage that no one takes seriously . you're just in here to get the attention you lack in real life scooter . you're quite pathetic +p6658 +aVyou are amazzing ! give up your full time job and start painting again CUSTOM_NUMBER these are remarkable ! +p6659 +aVjust like huff bochy thinks theriot a player coming from a ws is an asset +p6660 +aVoh no , not bimbo t . baggins on the tv again . and evil gandalf the red-nosed snotzi . it is very difficult for me to watch their sneering faces . look at the picture - they are sneering at immigrants . there is not a doubt in my mind that sarah moose-muffins would carpet-bomb mexico if she were president . good thing we have a rule you can't be born in hell and need an iq of past CUSTOM_NUMBER to be president . kkalamity jane for president ? no way ! who wants a white house that stinks of moose droppings and offal ? plus there's the sneering . +p6661 +aVfaggot are nothing but filth . the only thing i agree with the mud-slimes on . stone the f i lthy fags to the death , . nuff saidd +p6662 +aVCUSTOM_AT custom_break custom_break that \u005c\u005c ' s about how long it took me .. it all works fine like the install but i \u005c\u005c ' m having trouble with having siri work after i say " hi siri " custom_break custom_break +p6663 +aVjasamoah CUSTOM_NUMBER custom_break custom_break and what message does it give to other ' terror ' suspects if the uk are this soft to let him stay ? oh yes , we become a terrorist haven . good one . +p6664 +aVracist trash . you are the lowest level of humanity . +p6665 +aVvery sorry i mentioned it . just keep bitching here where you are sure it will amount to nothing . +p6666 +aVif the motherfucking communist murderers in media , education and unions hush up the fact that soetero-dunham is a foriegn saboteur , they will certainly not be helpful now - jackasses ! +p6667 +aVyour ws custom_break a fluke +p6668 +aVno , but you can't just treat someone like a piece-of - shit just because you think your shit don't stink . no one is above the law , so by law you have the right to ask a person to leave your property if they are disturbing the peace or damaging property , or stealling . +p6669 +aVwhat ever make's you sleep better at night . +p6670 +aVjust finished reading the breaker and they truly killed the ending .. custom_break that was disappointing . the famous CUSTOM_NUMBER - dragon got his ass whooped . custom_break i don't know if i want to start reading new waves based on all the reviews . +p6671 +aVjesus just told me you're probably gay and love come more than this priest . +p6672 +aVso are you a letterman fan , or not ? +p6673 +aVi have long been a tuck fan and i weas most disturbed during those times that he was asigned to the two's . shane you are a gun in this team and you deseerve all the accolades that you recieve this year . you have your old man's pedigree so i hope to see you playing for many more years to come . +p6674 +aVyou must be talking about obama and holder . +p6675 +aVsorry only got white ghetto in me . +p6676 +aVthey will have to move him or risk letting him walk for nothing . +p6677 +aV.. except the people's republic of california . +p6678 +aVi would like to see everything in japan . yes everything because i am dying to go japan soon . but im afraid that i dont know japanese . can you tell us your itinerary ?? any hotel reccomend ? shop that couldnt miss .. and japanese culture =) hehee custom_break custom_break twitter is CUSTOM_AT +p6679 +aVhe didn't say he was freestyling , wshh fucked up . give that young man his due credit . +p6680 +aVwhat ? ! you no need kpop friends when you go to kpop concerts .. you'll eventually meet some in the arena or just fucking have the greatest night a kpop fan would have .. no one will care if you scream all by ur self .. haha ! dream concert vs why the fuck i would care if im alone . haha ! +p6681 +aVgod bless you , sir ! +p6682 +aVwtf kim kwang soo thats mostly t-ara money u fucking leech +p6683 +aVyeah you're right , no one should ever try to resist being sent to an unjust war by corrupt leaders . eventually they will learn that it's wrong to do that , and until then we should all just shut our mouths and " support the troops " usa ! usa ! usa ! usa ! usa ! +p6684 +aVor a dead blow ! +p6685 +aVi fucking love peanuts +p6686 +aVyou have a really strange way of demonstrating your intelligence and your supposed education . +p6687 +aVwhen does an accident become an accident , such a question is best answered by the victim of such a misfortune . i bet if the victim happened to be your most loved one your perception of an accident would be totally different especially when you know there is arrogance on the part of these motorcade free riders . would you in such a situation call yourself an idiot +p6688 +aVhere he is out of character where he mentions why he won't let his kids watch colbert report . custom_break CUSTOM_URL +p6689 +aVlol i usually don't care for their announcers but that was good . +p6690 +aVamazing how romney's wealth is such a problem for you , yet you do not care that john kerry's yacht is still parked across the boarder to avoid his taxes . +p6691 +aVwell guys , it has been fun . i enjoyed the friendship ( really needed it ) even if the royals proved once again a disappointment . +p6692 +aVgeez you two sound like a gossip circle . +p6693 +aVthe muslim brotherhood has been in the usa for a hundred years . i liken them to say .. the masons .. the knights of columbus .. +p6694 +aVkan shi - custom_break i am working with wayne travis - my email address CUSTOM_AT - would like to contact you regarding this discussion , thanks dave +p6695 +aVi like him . i don't think we can blame him for everything from bird droppings to flat tires . +p6696 +aVthe kk have gotten good at cleaning up roadsides because they get so many dwi's . +p6697 +aVlmao i love how kakashi keeps stopping yamato from comfronting naruto . i realize something shippuden is all about sasuke . +p6698 +aVil ponte sullo stretto , la maddalena , la new town di l'aquila , l'expo CUSTOM_NUMBER , le olimpiadi , gli europei e via dicendo .. +p6699 +aVwell , he did say " not one " . that's still true , so he wasn't actually lying .. +p6700 +aVyou should change your name to just dumb guy , since you know nothing . +p6701 +aVCUSTOM_AT custom_break i just signed up for some new cent-ipad program they're starting . +p6702 +aVit's a commentary piece , douche-bag . read before you open your stink-hole . +p6703 +aVso basically you are an id iot who just repeats what maddow and rev al have to say . +p6704 +aVin pittsburgh pussy ass cops woulda started shooting and killed a innocent by stander .. north philly niggas dgaf n der cops is soft . . . round here nigga put a glock to your head and not think for a second before blasting your face in nl CUSTOM_NUMBER @ ! +p6705 +aVthe karma and lies are ketching up to him . +p6706 +aVCUSTOM_NUMBER so promptly stated that he was going to release his album in the first week of july with or without the assistance of his label . regardless of all the promotions and marketing and what not , he was going to release his final lp at interscope . and he was adamant about it . that's about CUSTOM_NUMBER weeks from now . in CUSTOM_NUMBER weeks , artists almost always have out at least the first two singles of an album and the tracklisting with features and production . this mother fucker still doesn't even have a fucking title ! an album allegedly due in CUSTOM_NUMBER weeks , without a single , tracklisting , producers , album art , and a goddamn title . fuck these videos , CUSTOM_NUMBER . if you really care about hip hop and your fans like you claim you do , you'd focus on your fucking album .. +p6707 +aVget a brain transplant .. see sense .. granny +p6708 +aVCUSTOM_AT p CUSTOM_AT i do agree on herrera . i love the way he plays ball . you realize next year we may have jenkins , jhc , foster and herrera as our starting CUSTOM_NUMBER . +p6709 +aVCUSTOM_AT don't ever say amazaballs ever again +p6710 +aVwhy are you yelling ? you made bro ? +p6711 +aVweak ass nigga doe . you can hit a weak bitch , and not even defend yoself against another strong bitch ( although it was an awefully big ass strong ass bitch ) but so what ! +p6712 +aVmiamis first excuse on the airplane home . custom_break we were without bosh . +p6713 +aVyou left off the bro +p6714 +aV< p > according to members of the australian community , he is not the only molester to end up in the united states after australian community leaders failed to report them to legal authorities . other molesters fled the country more recently as suspicion of abuse fell on them , community members say . it is said that they frequent the same american internet site as nanabozoh . custom_break custom_break < p > the forward has learned that at least two suspected molesters from the australian jewish community are living in the united states while they are under investigation in australia . custom_break custom_break < span style = "" > custom_break custom_break custom_break custom_break read more : < span > & nbsp ; < / span > < a href = " CUSTOM_URL #ixzz1yic3whxv " > CUSTOM_URL #ixzz1yic3whxv < / a > < / span > +p6715 +aVthe rogue make an empty face , doesn't understand what a dog want . free is not giving up , he try harder pulling jetro's sleeve and point his nose at vlad . +p6716 +aVCUSTOM_AT si la gente paga CUSTOM_NUMBER euros para probar un juego pues a ti que mierda te importa custom_break custom_break custom_break custom_break asi cuando salga el juego pues los que compramos esa beta opinaremos del juego custom_break custom_break custom_break custom_break ya sabes comprar , probar , dar opinion eso que suele hacer la gente , no como tu que defendias al swtor ni tenias beta , ni tenias juego y ni tenias nada , que eres como los politicos te sueltan una charla de CUSTOM_NUMBER hora y no dice basicamente nada asi eras tu con el swtor custom_break custom_break custom_break custom_break CUSTOM_URL custom_break custom_break custom_break custom_break miro y ni reviews , ni opiniones , ni nada , eres un troll penoso +p6717 +aVmanu was cleared by doctors for minor basketball work with his hand . +p6718 +aVnot to mention all the lame brother in-laws she'll be getting +p6719 +aVi'll stick a tea bag up your azz . +p6720 +aVdisgraceful mother , why did you bother have a baby ? it is like having a new accessories not a baby . +p6721 +aVi'm a strong woman , not a ' strong black woman ' i won't be doing everything all alone .. why do you think men are here ? .. to get things from the top shelf and open jars . i'm cautious of everything i do , because their are some things that can be prevented . +p6722 +aVthey did describe the color of the gun +p6723 +aVfuck your god . +p6724 +aVare you retarded ? the family are suing hustler because they didn't want those pictures published . try reading the story properly before accusing a family of ' cashing in ' on their dead relative . +p6725 +aVno \u005c u CUSTOM_NUMBER i hay th \u005c xe CUSTOM_NUMBER \u005c u CUSTOM_NUMBER t , k-pop ko \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c xea \u005c u CUSTOM_NUMBER h \u005c xe CUSTOM_NUMBER m m \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER nh \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER mj ?? co \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER n co \u005c u CUSTOM_NUMBER ho \u005c u CUSTOM_NUMBER c n \u005c xean fa \u005c u CUSTOM_NUMBER t bi \u005c xea \u005c u CUSTOM_NUMBER u cho co \u005c u CUSTOM_NUMBER mu \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i ti \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i a \u005c u CUSTOM_NUMBER , nhi \u005c u CUSTOM_NUMBER n la \u005c u CUSTOM_NUMBER i ba \u005c u CUSTOM_NUMBER n th \u005c xe CUSTOM_NUMBER n tr \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER \u005c u CUSTOM_NUMBER c khi no \u005c u CUSTOM_NUMBER i ra , \u005c xf CUSTOM_NUMBER nhu \u005c u CUSTOM_NUMBER c , c u chuy \u005c xca \u005c u CUSTOM_NUMBER n v \u005c u CUSTOM_NUMBER n ho \u005c u CUSTOM_NUMBER a sao ?? = ]] ~ chi \u005c u CUSTOM_NUMBER bik nhi \u005c u CUSTOM_NUMBER n m \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER t ti \u005c xeau c \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER c va \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER em ra xi \u005c u CUSTOM_NUMBER xo \u005c u CUSTOM_NUMBER , ti \u005c u CUSTOM_NUMBER ch c \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER c ko co \u005c u CUSTOM_NUMBER sao ?? c \u005c xf CUSTOM_NUMBER ng b \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER em \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER u h \u005c xea \u005c u CUSTOM_NUMBER t r \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i ?? chi \u005c u CUSTOM_NUMBER bik \u005c u CUSTOM_NUMBER em ct \u005c xf CUSTOM_NUMBER i ra xi \u005c u CUSTOM_NUMBER xo \u005c u CUSTOM_NUMBER fan of n ~ nho \u005c u CUSTOM_NUMBER m kha \u005c u CUSTOM_NUMBER c thi \u005c u CUSTOM_NUMBER sao ?? vip , sone , nhi \u005c u CUSTOM_NUMBER u nho \u005c u CUSTOM_NUMBER m kha \u005c u CUSTOM_NUMBER c n \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a .. ho \u005c u CUSTOM_NUMBER ko cu \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER g idol of ho \u005c u CUSTOM_NUMBER sao ?? m \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER y co \u005c u CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER i nha \u005c u CUSTOM_NUMBER c h \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i vi \u005c xea \u005c u CUSTOM_NUMBER t - ha \u005c u CUSTOM_NUMBER n gi \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER \u005c u CUSTOM_NUMBER la \u005c u CUSTOM_NUMBER i \u005c u CUSTOM_NUMBER em ra soi mo \u005c u CUSTOM_NUMBER i ? na \u005c u CUSTOM_NUMBER o ho \u005c u CUSTOM_NUMBER co \u005c u CUSTOM_NUMBER ch \u005c xe CUSTOM_NUMBER \u005c u CUSTOM_NUMBER t xa \u005c u CUSTOM_NUMBER m ko v \u005c xe CUSTOM_NUMBER \u005c u CUSTOM_NUMBER y ?? ma \u005c u CUSTOM_NUMBER th \u005c xf CUSTOM_NUMBER i cu \u005c u CUSTOM_NUMBER ng chi \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ng vi \u005c u CUSTOM_NUMBER " con s u la \u005c u CUSTOM_NUMBER m r \u005c u CUSTOM_NUMBER u n \u005c xd CUSTOM_NUMBER \u005c u CUSTOM_NUMBER i canh " ma \u005c u CUSTOM_NUMBER suy nghi \u005c u CUSTOM_NUMBER wa \u005c u CUSTOM_NUMBER nhi \u005c u CUSTOM_NUMBER u , m \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER c k \u005c xea \u005c u CUSTOM_NUMBER va \u005c u CUSTOM_NUMBER p \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER nhau \u005c u CUSTOM_NUMBER i a \u005c u CUSTOM_NUMBER = ]] ~ +p6726 +aVshe would do anything for her little girl u bastered u dont kno shit . +p6727 +aVfuck you luther abel +p6728 +aVlife , motherfucker . lmfao gets me every time . +p6729 +aVomg now i feel sorry for you that was just pitful . custom_break enough trying to converse with trailer park formaldehyde damaged brains . custom_break step outside once and a while people +p6730 +aVyup obama , change is hard huh ? you nbever thought that this many americans cared for their country the way they do . true americans will never convert to communism punk . +p6731 +aVles . grossman . custom_break packer fans are butt hurt , that's why . custom_break CUSTOM_NUMBER minutes ago +p6732 +aVyou certainly are as ' right wing ' as they come , aren't you ? way to blow your own cover . do you know what romney's best quality is ? he's not obama . for someone who lectures on gender tolerance , you sure like to bash others ' religions . i thought i smelled a hypocrite in our midst . +p6733 +aVuncoololga nigga please i'm a girl you're a dog jaden is mine +p6734 +aVnotice the crickets chirping in response to my question , tidelander . the more i chase these two the more they run away . perhaps because they have no idea what they are talking about . +p6735 +aVlol you morons think im black ? nope im same like you boeti only think is i hate you racist batards :) +p6736 +aVdon't give up billy - you were so close . +p6737 +aVhahahahahahahaha !! hahahahahaha !! good one porno . i used to think somewhat like him when i was young . pretty insane , huh ? +p6738 +aVkennedys where sure man whores . +p6739 +aVyou're wonderful just the way you are ! +p6740 +aVtrust me - she is a bitch - and awesome - and cool - and opinionated - and strong - and not afraid of being judged - and beautiful . she's for real . what you see is what you get . not some cardboard , superficial bullshit , hope you like this type of blog entertainment . who puts ' my blog will melt your face off ' but still gets laughs and votes ? custom_break custom_break it's entertainment and what you expect from " typical design blogging " ( aka : edu-tainment ) . custom_break custom_break custom_break custom_break i think it's good . i love it . ( and i don't know shit about design ) +p6741 +aVjust go away because you get dumber by the day . you probably even foegt where the subject began dumb dumb +p6742 +aVactually , i read through your comments in disqus , sonny . if y'all are a " moderate " then barack is a conservative . and there is far more evidence of obama's kenyan birth than that fake crap from hawaii . from his own lyin ' mouth as well as his fat sow of a wife pie hole as well . moderate , mt ass .. +p6743 +aVwow your just as dumb as look +p6744 +aVCUSTOM_AT needs to give me a fucking like CUSTOM_AT custom_break custom_break admittedly it was a pretty shitty picture . he was really small in it . had a packers jersey on though . +p6745 +aVyea right , im sure they are all gonna meet up on the m CUSTOM_NUMBER for tea and scones , then have a frriendly game of foota in stanley park and be taking pics of each other before heading to their respective ends . +p6746 +aVso drinking at CUSTOM_NUMBER is considered " normal " now .. custom_break custom_break i bet you think you're just such a cool kid eh ? custom_break custom_break < s > your generation is so fucked < / s > +p6747 +aVlol why would you even bother with this low rent white trash , mama ? you remember what forest said . " stupid is as stupid does . " even " daddy " can't save that little girl from this one . +p6748 +aVbest mmo that will be out in CUSTOM_NUMBER . it will be niche however , because CUSTOM_NUMBER % of mmo gamers are clickers and lazy gamers and this game does not support clickers and the lazy crowd . +p6749 +aVCUSTOM_AT CUSTOM_AT glass CUSTOM_NUMBER - ex pen CUSTOM_NUMBER +p6750 +aVhey ec , did you get that email i sent you yesterday ? +p6751 +aVhe guilty you ignorant azz ! he doesn't have to worry about it anyway because he'll never be in the hall of fame +p6752 +aVelectr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock custom_break electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock custom_break electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock custom_break electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock custom_break electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock electr \u005c u CUSTOM_NUMBER dfc shock +p6753 +aVdon't forget mccann was the reason national league broke the losing streak . ;) +p6754 +aVhow dreadful to besmirch the reputation of a beautiful young lady by claiming such a outrageous thing . and anyway it cannot possibly be true , as you have no doubt already decided .. because she was in bed with me at the time ! +p6755 +aVin which part of the song was there autotune ? custom_break just becuase a song is upbeat does not mean its autotuned . custom_break get fucking ears ! custom_break custom_break custom_break seriously dude , i am the best did not , in any way , have autotune in it . custom_break it had affects , but no autotune . custom_break if you " beg to differ " you clearly an idiot . +p6756 +aVof course aybbar is the one that gets the out custom_break he sucks +p6757 +aVobama can't stand up to being vetted . that's why the pos sealed his records . you don't evenko who that loser in the white house really is . +p6758 +aVwell you just lost all credibility when you said you were a student of limbaugh university ! now you are just a troll ! nobody cares what you think or say , you are being flagged every time you post one of your degrading comments ! enjoy while it lasts ! +p6759 +aVman da chocolate nigga cannot suck dick if i was on true's dick he would be shakin i promise dat bruh dam true is soo phyne !! +p6760 +aVdoesn't seem that secret to the rest of us . +p6761 +aVwashington's state legislature is about to approve same-sex marriage . supporters here anticipate a referendum vote this fall that will attempt to repeal this law . despite being the only state where a referendum to repeal ( same rights as marriage ) domestic partnership , the outcome of this vote is uncertain . as one of the few states that already have all marriage rights granted to domestic partners , yesterday's decision could add to the basis for overturning such a referendum in federal court . +p6762 +aVto duxburian : well , eisenhower and the man behind him is john foster dullus , i do not know who the asian man is . so what ?? do you have any point to make ? do you like to play picture i . d . ? in all due respect to you duxburian a lot of your posts are puzzling as to what point you are trying make . +p6763 +aVplease site that source , considering over half of americans think gay marraige should be legal +p6764 +aVlawrence o'douche ? rachel bulldyke ? is that you ? soo exciting !! +p6765 +aVoh my , they blow up so fast . +p6766 +aV@ .. petrsmailbox CUSTOM_AT boom +p6767 +aVyou are bang on the money . fox news is just as bad as media matters if not worse but both sides see themselves as the saints and the other as the devil . fox news running this story amuses me very much . custom_break +p6768 +aV< cite > custom_break exactly how often did your daddy r \u005c xe CUSTOM_NUMBER pe you ? weekly hourly ? custom_break custom_break you're easily the most depressingly buttf ++ ked piece of shite ever to vomit their halfassed moronic excuses for the english language on this site . you think you're being clever , but your grasp of colloquialisms and sarcasm are hilariously pathetic . you're a fool . your posts are puerile and you personally have no value . nobody here likes you . h \u005c xe CUSTOM_NUMBER ll , nobody here even < i > tolerates you < / i > . if these people could recognize you on the street they would spit on you . my best guess is you're the result of unprotected buttsex between your mother and the family dog . an abomination with no justifiable reason to exist . custom_break custom_break now do us all a huge favor and < b > go fuckyourself with a chainsaw < / b > , " sparky " . slowly and painfully . custom_break custom_break everyone ! blow this pathetic obamatroll < i > a big sticky sphincter kiss !! < / i > custom_break custom_break mmwwaa !! custom_break < / b > custom_break custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . / \u005c xb CUSTOM_NUMBER \u005c xaf / ) custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. , / \u005c xaf .. / custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . / \u005c u CUSTOM_NUMBER . / custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . / \u005c xb CUSTOM_NUMBER \u005c xaf / ' \u005c u CUSTOM_NUMBER ' / \u005c xb CUSTOM_NUMBER \u005c xaf \u005c xaf ` \u005c xb CUSTOM_NUMBER \u005c xb CUSTOM_NUMBER custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . / ' / \u005c u CUSTOM_NUMBER / \u005c u CUSTOM_NUMBER . / \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . / \u005c xa CUSTOM_NUMBER \u005c xaf \u005c custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. ( ' ( \u005c u CUSTOM_NUMBER \u005c xb CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c xb CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . \u005c xaf ~ / ' \u005c u CUSTOM_NUMBER ' ) custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c\u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. ' \u005c u CUSTOM_NUMBER .. / custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. \u005c u CUSTOM_NUMBER \u005c\u005c u CUSTOM_NUMBER .. \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . _ . \u005c xb CUSTOM_NUMBER \u005c xb CUSTOM_NUMBER custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c\u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. ( custom_break \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER .. \u005c\u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER . \u005c custom_break custom_break < / cite > +p6769 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT ones and i still have zero .. i started a like fest last weekend that got me up tow CUSTOM_NUMBER , but that has since disappeared ! i feel shamed . +p6770 +aVnah , then i'll just end up back where i started . +p6771 +aVclosed courts are going on up and down the country .. more widely used in family courts to hide state kidnapping of children .. custom_break please look in to state kidnapping you will be surprised by the large number of allegations and widespread cases . +p6772 +aVi suggest trout from a pond that you keep yourself . +p6773 +aVhow many times have i heard watch out ipad or ipod and shit never happens . its cuz you dont know it but apple stays CUSTOM_NUMBER steps ahead at all times !! +p6774 +aVi guess because it's taking the lord's name in vain , which is offensive to christians ? whatever . fuck the internet ! it's getting too pc d : < +p6775 +aVyou are just an idiot blabbermouth that is gonna get stopped hard one day ! you will not be saved . +p6776 +aVwe always balance the budget on the backs of the military . the problem is that it is not the military that is the largest expense . it is the other government workers who produce nothing . they only suck up taxpayer money . they make nothing and contribute only more regulations on how those of us who work shoud be taxed etc . custom_break custom_break the military defends the country while the government worker defends his right to a parking slot at the federal building so he can get a bigger check . +p6777 +aVhow did this country elect so many crazies ? what is going on in america ? we used to be proud of this country because we had something to be proud of , but now !! all we have are a few good people and a bunch of crazies ! is there something in our water ? what is happening to the people in this country that makes them act like scott , brewer , walker etc ? +p6778 +aVbosh is ready they just dont need him to play +p6779 +aVfuck , i wanted to hate this so bad . +p6780 +aVif she had an expired visa , she should have gotten a mastercard . +p6781 +aVyou obviously have no clue who ronald reagan was -- you pathetic ignorant puke +p6782 +aVsorry you are right +p6783 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT twss +p6784 +aVbreakfast with the monks at CUSTOM_NUMBER . CUSTOM_NUMBER .. that is different +p6785 +aVmo CUSTOM_NUMBER rtlib , you are a dumbkopf . what kind of dessert ( sic ) is it in ? prickly pear pie ? tell humans to move ? you arrogant elitist moron . +p6786 +aVno need to prove you don't have a reasoned response by replying . +p6787 +aVhave any of yours stopped ogling each other long enough to evolve past monosyllables and cute attempts to use vocabulary you don't understand ? +p6788 +aVCUSTOM_AT : thats right negro , run off the site because you are no match for me anyway . only " pu " to the " c " like you is no match for me . +p6789 +aVi like the cover that is a keyboard . good idea . hopefully it will be better than the nokia windows CUSTOM_NUMBER phone . okay , but not great . +p6790 +aVwhite people fuck like this ; black people fuck like this +p6791 +aVplants also have a right to life ! custom_break don't kill or eat the vegetables ! custom_break they are living beings ! custom_break custom_break animals have souls ! ? custom_break prove that scientifically beyond any doubt ! custom_break custom_break humans have souls ? ! custom_break custom_break prove that scientifically beyond any doubt ! custom_break custom_break custom_break lmao ! +p6792 +aVCUSTOM_AT CUSTOM_AT in fairness they both have a fair point lkp has shown an inability to be objectionable when it comes to the lions , and drivel can get a bit preachy at times , but at the same time all the people that write these articles at least deserve the respect that you read the article before making a snap judgement +p6793 +aVlike you know fck face . +p6794 +aVposted at CUSTOM_NUMBER : CUSTOM_NUMBER am et , CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER custom_break obama is killing the democratic party custom_break by jennifer rubin custom_break custom_break president obama , i have frequently argued , has been fabulous for the conservative movement . he spurred the creation of the tea party . he helped the gop win the house majority in CUSTOM_NUMBER and make big gains in the senate . his obamacare has helped revive the commerce clause and given a boost to conservative jurisprudence . his refusal to support human rights has caused a bipartisan revulsion and reminded us that foreign policy must be girded by american values . he \u005c u CUSTOM_NUMBER s sent independents running into the gop \u005c u CUSTOM_NUMBER s arms . he \u005c u CUSTOM_NUMBER s forced conservatives to think hard and express eloquently principles of religious liberty , limited government , free markets and constitutional democracy . custom_break custom_break obama also has wreaked havoc in the the democratic party . he \u005c u CUSTOM_NUMBER s firmly affixed the \u005c u CUSTOM_NUMBER ctax and spend \u005c u CUSTOM_NUMBER d label to it after bill clinton declared that the era of big government was over . he \u005c u CUSTOM_NUMBER s made clinton into a pitch man for mitt romney . his rejection of the keystone xl pipeline has split the party . his refusal to adopt the simpson-bowles commission \u005c u CUSTOM_NUMBER s recommendations has turned democrats into reactionaries , defending the status quo on entitlements . he \u005c u CUSTOM_NUMBER s alienated jewish voters . he \u005c u CUSTOM_NUMBER s re-mcgovernized the party , which now stands for appeasing despotic powers , turning on allies and slashing defense spending . custom_break custom_break ( pack it up dude , your eviction notice will be delivered in november ) +p6795 +aVyeah , rising prices and cut food stamps before you tax the rich . now that's fucking rich . what they give a family now doesn't feed them for a month and the families need to use the food banks to supplement . +p6796 +aVwho is the real idiot , dogtwon or me ? you have to pick one you know . everybody can't be the stupidest person you talk to unless you talk to yourself . you asked for this with your lovely comments on how stupid everyone is that didn't vote for ron paul . what did he wind u with ? last place and about CUSTOM_NUMBER percent of the vote ? so CUSTOM_NUMBER % of the other primary voters are all stupid morons and you are enlightened ? +p6797 +aVwho gives a rat's rump what geithner says or thinks ? really ! he has proven to be an incompetent obama puppet and his failures are stacking up faster than pancakes when rosie o'donnell raids her local waffle house . custom_break custom_break this guy is going down faster than janet napolitano when elena kagan comes to visit . ( sorry for the visual . it made me puke too ) . +p6798 +aVgod is not a republican , nor an american , nor a conservative +p6799 +aVwe remain happy with our choices - have been quite sure that you are not settled . +p6800 +aVthere is nothing equal about a hetrosexual marriage and a gay marriage . you can't compare apples to oranges . one was created by god the other by man . so enjoy your new freedom for it means nothing . +p6801 +aVif < i > both < / i > of you are dirt poor . +p6802 +aVshe is a lawyer . nurses don't tend to turn around and go to law school , you stupid ass custom_break custom_break +p6803 +aVu buy shoes so people say they look bad ? nigga please dont think u so special u dont want ppl giving you compliments on your fresh gear , fuck outta here dumb nigga +p6804 +aVholyshit your an idiot . coming from a boston fan . you need to get a life and give respect where it's due . something like " good job miami , great series , you guys are better , that's why you won . +p6805 +aVfake as hell . its illegal to even put a cam in a bathroom . dumb fucks +p6806 +aVtruthfully your logic with the " CUSTOM_NUMBER / CUSTOM_NUMBER " and the " political statement " just made everyone a little bit more dumb on this article comment section . in fact you are probably in the " CUSTOM_NUMBER and CUSTOM_NUMBER " ( the bullshit irrelevant statistical fact you made up ) group . put the remote down and read a book , retard . +p6807 +aVbuenas , como afiliados que somos te dejo el enlace a la traducci \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c xb CUSTOM_NUMBER n en guild wars CUSTOM_NUMBER spain : custom_break custom_break custom_break custom_break CUSTOM_URL +p6808 +aVfuck you newsday . +p6809 +aVi would have been hard pressed not to empty the full mag . into the little black angel . +p6810 +aVCUSTOM_AT this is part of what the ncaa was talking about making a requirement . right now , scholarships are one year renewable scholarships , making it easier for scumbags like saban to release a kid . some school are going ahead nd offering these four year schollys . i think the big CUSTOM_NUMBER was pushing their schools to do this . +p6811 +aVput them on the line .. ( i smell a rat ) . +p6812 +aVanother way to say that is that you live in a nation where you are as free to believe ridiculous and silly things . andf to try to force them on other people unless they stop you . +p6813 +aVi have a transformer prime and hate it , almost everything positive you read about this tablet is untrue . custom_break not fast or responsive ( at all ) custom_break terrible build quality , i had to send it back to asus because of dead pixels and defective screen custom_break horrible wifi signal quality , cant get a decent lock on the other side of my tiny house custom_break and i love android and ics , but every app on the prime has lockup and crash issues constanly custom_break custom_break fucking terrible device from a terrible manufacturer , go for samsung , fuck assus +p6814 +aVyour notion that you are sexually abused because you are hitting on newcomers and want to be justified in that sounds exactly like the pathology of a predator . better check yourself . +p6815 +aVoh dear , the poor deludec spuds fans are mouthing off . custom_break custom_break come back in CUSTOM_NUMBER weeks spuds fans , after your team has dropped like a stone back to where it belongs . custom_break custom_break custom_break custom_break spurs - the little club in a flat-pack mfi stadium - lol +p6816 +aVmandingo just stop . now you are claiming cotto has no balls . go learn the sport . +p6817 +aVnana i got my first pair of nb shoes a few months ago and and they have really worked out well for me . +p6818 +aVfuck alla yall ymcb takeover weezy just tired of the beef das why he said that CUSTOM_URL +p6819 +aVi don't see nobody beating the heat four times .. +p6820 +aVwhoever checked " libertarian " has been hitting the bath salts . +p6821 +aVlike i said , i liked the video ! not the song .. obviously your mama is a dumb old bitch ! she didn't teach you the first amendment ? custom_break custom_break roman darling .. soft ass nigga .. hahah !! +p6822 +aVthats what you call there a fucking mexican CUSTOM_NUMBER % there for you niggers & crackers +p6823 +aVyou are a fool . +p6824 +aVno viene presionado .. ?? custom_break decir esos despues que la prensa lo hizo pedazos por el juego contra guyana . custom_break hmm +p6825 +aVthis article isn't only talking about the rape . it's talking about what happens to the victim of a rape among her own family . custom_break custom_break " you had some nerve to allow yourself to be brutally raped and tortured by those five grown men . you have brought shame to this family and we will do everything in our power to have you ostracized and even killed . +p6826 +aVit's amazing to me that there are so many dupes out there that buy into the lies the gop puts out .. especially the proposition that the " rabble " consistently manage to vote against their own , best interests so that , when they eventually become " billionaires " ( a foregone conclusion in their fevered minds ) , they will thank the gop for \u005c u CUSTOM_NUMBER csaving \u005c u CUSTOM_NUMBER d them the \u005c u CUSTOM_NUMBER chorrible responsibilities \u005c u CUSTOM_NUMBER d that paying their fair share of taxes would mandate . custom_break custom_break custom_break custom_break one less mansion .. custom_break custom_break custom_break custom_break one less yacht .. custom_break custom_break custom_break custom_break one less limousine .. custom_break custom_break custom_break custom_break that somehow , by empowering the rich and the corporate interests to hoard more of their wealth , that they might " get in " on that wealth themselves .. custom_break custom_break custom_break custom_break that voting for those whose putrid policies had sent their own jobs overseas , they somehow will " win in the end " . custom_break custom_break custom_break custom_break delusional . custom_break custom_break custom_break custom_break pathetic . +p6827 +aVyou missed some bran in your diet . :-) +p6828 +aVCUSTOM_AT CUSTOM_AT ( david ) there's enough rhino for the both of you . +p6829 +aVshe can act like she thinks she's perfect and be a naive bitch ;) +p6830 +aVnever said anything derogatory about having tattoos , only posting the one on your ass on facebook . and quit trying to pretty up what you say , you wanna say whore .. say whore .. i've never been a gardening implement . +p6831 +aVare you insane ? +p6832 +aV.. and you're no human , your worthless pieceofch * t . +p6833 +aVagain why are you talking about heat fans instead of the actual team ? +p6834 +aVyes you are right .. CUSTOM_NUMBER % .. cbi : congress bachao institution .. +p6835 +aVscreaming , yelling , broken plays and winning steelers frist half of the seasons +p6836 +aVwhy don't you order a copy of " hooked on phonics " , " tell your blacks peoples " , black don't need an " s " , and people is plural , you know what that mean don't you ? you've spent so much time learning so much crap to pump yourself up , like thinking your better , and know so much , that you forgot to learn correct diction . you called my people pitiful , you're the pitiful one , you should go back up into the caves of the caucasus mts . where your kind originated , living like the animal that is still in you , you're not ready to live around civilized people . +p6837 +aVbut they don't want any of them living in their community . +p6838 +aVlaffin ? you don't laugh at anything you jihadist puke . +p6839 +aVyou are a day late and a dollar short . +p6840 +aVhahahahahahahahathe fucking dyke deserved it !! a bit of karmic payback forall the degeneracy & misandry that lesbo feminists have inflictedupon the western world . that degenerate dyke bitch that's still alive should not subject the rest of us to her { ? } disgusting emotional diarrhea over her { ? } fat dead land whale . our world would be far better off were it not polluted by degenerate lesbo feminist pieces of shit !! +p6841 +aVsome of the comments i read here are so-so lame . white people just want the world to be so fair now . but over the course of their hundreds and hundreds of years of opression , death and fear it was ok . american white people hung people cut off their private parts and took pictures with their kids and family around these dead bodies singing in the wind ( a truly sick mind state ; your kids ) . they created tricks and illegal laws and rules to get ahead in america for hundreds of years ; they raped and killed destorying families and now because a person makes a choice to go to all black school where a teacher ca see a black student for themselves , or gets a interview when a white doesn't its reverse racism . white people until you lived another's history stop crying and get off your high horse ! +p6842 +aVhow people bring a story about a sandwich into a conversation about religion , abortion , and rape is beyond me , but that being said .. custom_break custom_break hey government !! stay out of my kid's lunch box . if i want my kid to eat paste and looseleaf paper for lunch , that is my business . custom_break custom_break the most hilarious part is , i bet the people making the decisions of what children can and cannot eat have more rolls on their belly than the local deli has at lunchtime . custom_break custom_break if the lawmaker who proposed this , and all the people who enforce it ( including school officials ) can show me CUSTOM_NUMBER pack abs and their marathon finishing time ( under CUSTOM_NUMBER CUSTOM_NUMBER / CUSTOM_NUMBER hrs only please ) , then maybe i'll listen to their stupid a $$ es about what my child should eat . custom_break custom_break i only wish they try doing this to an attorney who loves to litigate because he / she will break that school district in attorneys fees alone .. hell , maybe i'll go pro-bono and do it myself +p6843 +aVfact : radical comic creator is written with real basic . custom_break custom_break you have argued against this fact . please go to the project page on github and see for yourself . custom_break custom_break fact : lunduke has now consumed $ CUSTOM_NUMBER worth of time , has begged for additional money for hardware , and has not delivered on his promise as of yet . custom_break custom_break fact : you think that i am an ignorant hillbilly though you frequently insert symbols into your responses and use improper numerology when describing a number . you habitually forfeit grammar and partially form words . in addition to that , your stream of consciousness is a collection of poorly constructed sentence fragments . in short , your english sucks dick . custom_break custom_break fact : you think that the internet is the only place where you have freedom of speech ? i'm on the internet and i'm in america and i just said whatever the fuck i wanted to . custom_break custom_break i implore you to argue these facts directly . +p6844 +aVanother white dude murdering his wife .. at least he did not molest the little boys as well . +p6845 +aVtell em why you mad ! lool ! i have my opinion and you have yours . and now sports .. +p6846 +aVthe microphone button wont work - . - +p6847 +aVskimpy lingerie " ?? hardly .. the reporter needs glasses . ive seen more flesh on show in a nunary .. +p6848 +aVawe .. poor wittle troll on patrol is too $ tupid to speak onlyenglish , so i'm the bad guy . seriously ? lmfao ! +p6849 +aVdoes anyone think the lib / dems will ever " own " the tax cut for the richest CUSTOM_NUMBER % or the " granny tax " ? custom_break those " political party destroyers " have george osborne stamped all over them . +p6850 +aVCUSTOM_AT CUSTOM_AT always love my mt peeps and anyone else who crosses my path virtual / real , but tech never trumps us meeting in person ! +p6851 +aVyep , croatians coming to a house , shop , hospital , school and dss office near you soon . +p6852 +aVyour email address is not visible to other commenters . +p6853 +aVyou seem to have a theng for crystal balls . +p6854 +aVCUSTOM_AT haha +p6855 +aVdon't let silly things like facts about other manufacturers get in the way of blind apple hate . please , it just upsets these people who have absolutely no interest in the product what-so - ever but feel the relentless need to spam the comment sections of news posts . +p6856 +aVwho are you to judge him an inadequate ? +p6857 +aVbut , vicky < CUSTOM_NUMBER , you lie all the time .. +p6858 +aVdid you really use the word " evoking " ? +p6859 +aVhow so ? straight couples keep having gay babies . +p6860 +aVgrizzlies will have the best team they have ever had next year +p6861 +aVwhy send ? when you can set their own off as it sits in pre launch . now thats a bang for buck the taxpayers can't complain about . +p6862 +aVregan was ticked off also . that's plain CUSTOM_NUMBER c . if munroe doesnt like being scolded like a child , he shouldnt act like CUSTOM_NUMBER . they have the right CUSTOM_NUMBER ask questions . that's not the point . any reporter should be respectful & allow any president CUSTOM_NUMBER finish his statement then ask questions . presidents not answering questions at the end is nothing new either . they have all done it . in the regan clip , as they are hollering out , u can clearly see regan is annoyed & he tells them he will not be answering questions . when the a hole bret brier interviewed mr o , he could not answer a question because that idiot kept talking over him & interrupting him . that situation was worst . mr o handled that pretty dam good . its about respect whether u like the man or not . bill clinton joins in the negative talk about mr o but if u havent heard him u would never know when u c them together . custom_break custom_break how about u watch the full clip of the incident . sam donaldson knows its wrong , bill o'reilly said so , & even hannity . mr o did answer his question . tucker knows better & if immigrant munroe has a problem , go back from whence u came & free up a job CUSTOM_NUMBER a real american ! grow up ! act like adults ! stop embarrassing yourself & your country ! +p6863 +aVmichelle , did you have a macro lens or is this just off something like a CUSTOM_NUMBER - CUSTOM_NUMBER mm ? +p6864 +aVnikestorw be fuckin up man ! +p6865 +aVpoint is both are living-dead weight . custom_break and us can find more capable , younger leaders ; because the young have more vision ! +p6866 +aVafvet CUSTOM_NUMBER , custom_break custom_break i'm not gay , you sad little freak ! not everyone who support gay marriage are . we have empathy and compassion for others unlike you religious bigots who can't wait to judge others . +p6867 +aVso are you , custom_break now go to bed boy +p6868 +aVyou are a theif are you ?? +p6869 +aVi watched some david's video clips on youtube . to my surprise , i found him here too . it's great that somebody decided to speak about polish language as well . it clears some superstitions and stereotypes about my language . it turned out that it's not that bad :-) +p6870 +aVhow can you put creation in philosophy ? it has no fucking logic ! creation doesnt belong in philosophy ! +p6871 +aVthey're saying it could be an acl tear +p6872 +aVbill maher is a dumb faggot . custom_break custom_break show more show less custom_break edit custom_break reply custom_break CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER :3 CUSTOM_NUMBER pm custom_break in reply to responding to troll custom_break CUSTOM_NUMBER likes custom_break custom_break custom_break custom_break read more : CUSTOM_URL #ixzz1yhvyeuh8 +p6873 +aVyou seem racist you dumb ho . why not start crying about slavery , even though you were never there . i'm irish my ancestors were slaves too . do you hear irish-whitey crying for a handout ? i am not afraid of black people . in fact i never met a nigg * r that i couldn't beat up . and stop being afraid of whitey's sexu * l prowess , you black girls love white men and you know it . maybe because we raise our own children , something nigg * s been dodging since the day he was born . or maybe you are afraid of our intelligence and education . afraid of black people .. lololololololololololololololololo . anyway back to the slavery issue . we bought you and your nig * ets from other black peeps . which means that you were sold to us by black people . so get mad at them , not us . they sold out they own race , bit * h . now bl * w me you stupid , nig * a , ho , since that's all your mouth is good for . b +p6874 +aVwhat happened to all the talk about that industry hurting because obama wouldn't let them drill all over the place . " custom_break custom_break that , is what you call a straw man arguement . no one is saying the " industry is hurting " , because it's not . custom_break custom_break what people are saying is that it's moronic to send almost a billion dollars a day to countries that hate us when we could be developing our own natural resources . +p6875 +aVi wouldn't sleep on the d-backs either . hudson's return should really help that rotation out .. +p6876 +aVwhen he pulled out , it looked like only CUSTOM_NUMBER / CUSTOM_NUMBER of his dick was wet .. dayum ! no wonder she was moaning ! +p6877 +aVaside from calling the police you should contact the bdn and tell them what you saw so they fix this false article . +p6878 +aVa pic from queen nicki concert last night . custom_break CUSTOM_URL now you tell me .. who the fuck is winning ! +p6879 +aVno idiot , tell it to the surpreme court and you're not even funny .. morning asshole go back to bed . +p6880 +aVsure , the people who actually diagnose and treat disease are the problem , not the hordes of parasites around them . +p6881 +aVi think you'll find its her money now . +p6882 +aVi have CUSTOM_NUMBER absolutely great reasons not to vote obama . custom_break custom_break my children .. he cannot be allowed to destroy their futures . +p6883 +aVotra historia estaria contanto el senador escalona si en CUSTOM_NUMBER el binominal no ubiese estado y la udi y rn con un CUSTOM_NUMBER % de los votos de la epoca obtuviera CUSTOM_NUMBER % de los esca \u005c xf CUSTOM_NUMBER os de diputados y en el senado no ubiesen estado los CUSTOM_NUMBER senadores designados . custom_break quienes han protgido entonces la mal llamada obra de la inequidad en chile entonces \u005c xbf ?? \u005c xbf ? \u005c xbf ? \u005c xbf .. los mismo que hoy nos gobiernas , pues los cuorum para cambiar leyes economicas y debito fiscal tenian que pasar por cierto por rn y la udi .. custom_break que mala memoria de los que bomitan odio y balas en este foro +p6884 +aVmore spin from the tea party bleachers ! +p6885 +aVyou're a freaking idiot ! there isn't a word in the dictionary to describe you , you're just beyond a dumbass it's not even funny anymore ! +p6886 +aVcitizens united didn't have squat to do with the wi recall . custom_break custom_break CUSTOM_URL +p6887 +aVwoot , i detect the usual liberal vibe of race injected into your post . let me make it easy on you , without knowing your skin color being it doesn't matter a wit to me . custom_break custom_break blow it out your ass . custom_break was that straight enough to the point for you sir ? +p6888 +aVjay -- my condolences to you and your family . it's a terrible way to get a wake-up call , but i'm glad you've found a way to channel this terrible loss into something positive for you and yours . enjoy life in the ( slightly ) slower lane . +p6889 +aVdatabase systems are what i do for a living .. +p6890 +aVthats all rondo can do .. hold on to his man +p6891 +aVwho the fuks knows wats going on in space when we dont know wats going on in area CUSTOM_NUMBER +p6892 +aVthe " wedge issue " isn \u005c\u005c ' t whether women use birth control . the issue is obama \u005c\u005c ' s continued and frequent and deliberate abuse of the constitution . it is one more example of his utter willingness to destroy the principles in our founding document so that he can dictate to the populace as he sees fit . he has shown all too often that he cares not for the first amendment , especially if anyone uses it to speak against his policies - they are attacked , branded racist , labeled as unintelligent . he does not respect the second amendment ( one of the best protections against both criminals and overweening government power ) . he cares not for the CUSTOM_NUMBER th amendment , because he excoriates the states for exercising powers delegated to them by the constitution - that of arizona to protect its own borders and its budget ; that of texas to draw its electoral districts ; the right of states to control their own budgets on a wide range of issues . he does not respect the CUSTOM_NUMBER th amendment if it means enforcing statutes against blacks who violate them , such as the infamous chicago voting rights case ; or the directive by his dept . of education to colleges and universities to reduce the legal standards of proof for finding of rape and sexual assault when brought against a male , so that a man \u005c\u005c ' s career can be ruined on sayso even when a police investigation shows the accuser to be lying ; or his dept . of just-us " guidance memorandum " that allows colleges and universities to ( wink , wink ) substitute the term " critical mass " for " quotas " and throw clear law into the trashcan while pursuing racial preferences . he does not believe in the right to contract guaranteed by article i of the constitution - note his " giving " labor unions position ahead of stockholders and bondholders in the grants to chrysler and gm . note his efforts to curtail what companies pay their executives - a matter for stockholders who own those companies , not the government . custom_break custom_break another issue is his apparent belief that the public is incredibly stupid . his " compromise " on the birth control requirement for catholic institutions simply means that the overall rates for health insurance will be raised for those institutions to pay for both the administrative costs of " outreach " as well as for the birth control devices - including abortifacients such as the " morning after " pill . nothing is free , but one would never know it by looking at his " budgets . +p6893 +aVwow way to tell us how rich you are .. stupid yuppie . +p6894 +aVyou do realize you just called your mom a whore .. real smart +p6895 +aVlook like you had a great weekend :) custom_break custom_break - lauren +p6896 +aVand there's not a single decent white person who'd come within a mile of you . ironic , isn't it ? +p6897 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT i'm fairly certain this blog has the most dany heatley references per capita than the rest of the internet combined . custom_break custom_break and we're not even a wild blog +p6898 +aVlike our first ever credit rating downgrade . +p6899 +aVdo you really think your continuous rantings that someone might just believe you here ? .. you do understand everyone gets a good chuckle when you post .. xxoo canada +p6900 +aVsandie sandy custom_break of course with someone who would post the eurocentric nonsense about " bore children out of wedlock " , it makes sense that you would relish the gossip about the private affairs of individuals who seemed quite comfortable with their mating arrangements . custom_break custom_break tell us , gossip sandy , has the former husband been complaining to you and promise you his organ if you share his loss ? custom_break the deceased wife of magnanimous mugabe complained ? custom_break custom_break we have never heard anything from these people about their private lives . you ever thought that the all had a pact ? custom_break comrades sharing their female ( s ) . custom_break wives not minding husbanding having a ' small house ' ? custom_break these are all fine traditional practices . custom_break custom_break those who are gossipy and sex-obsessed are going to have a hard time with the more conservative and wise african practices , which have sustained coherent african societies for thousands of generations . custom_break custom_break go do the gossip in europe ; they are much into minding other people's business . custom_break dignified african females are to busy to waste time with such gossipy garbage +p6901 +aVmine came from chihuahua , allegedly . +p6902 +aVif you mean uk is your god , then you are right . +p6903 +aVi think you are confusing the way things are with the ways things should be . operations is everyone's responsibility , but it should not be that way . see CUSTOM_URL for more detail . custom_break custom_break custom_break custom_break also , i did not coin the term noops , it was coined by forrester in april CUSTOM_NUMBER ( CUSTOM_URL custom_break custom_break custom_break custom_break +p6904 +aVyou're starting to sound like a nazi . +p6905 +aVhow a csm works . custom_break after a hand is over the cards just used are placed back into the shuffler to be mixed with the other cards in the shoe . shuffle master \u005c u CUSTOM_NUMBER s king uses an elevator system to randomize the cards . as the elevator is moved up and down , cards are randomly inserted into one of the CUSTOM_NUMBER shelves in the elevator . the shuffler randomly selects a shelf of cards to deliver into the shoe . because of the non-linear process , every discard re-inserted following a hand has a chance of appearing in the next round . although shuffle master says the king differs from their competitors continuous shufflers because the others use a linear design most csms so the same thing . they put the discards back into play and does away with the dealers having to stop to physically shuffle the cards at the end of a shoe . custom_break the house edge the continuous shufflers have no benefits for the player and has been dubbed the " uncomfortable shoes " . it eliminates card counting for the skilled player and will also have a major disadvantage for the basic strategy player . it speeds up the game ! custom_break when the csm was first introduced many players felt it would probably increase the house edge . as it turns out this is not entirely true . michael shackleford , the wizard of odds did a mathematical analysis of the continuous shuffling machines and found that there was a very slight reduction in the house edge . custom_break in a four deck game the edge is CUSTOM_NUMBER . CUSTOM_NUMBER percent and in an eight deck game is tis CUSTOM_NUMBER . CUSTOM_NUMBER percent . before you get excited about a slight reduction in the house edge you have to realize that when the casino uses a csm the speed of the games is increased by about CUSTOM_NUMBER percent . the basic strategy player stands to lose more in the long run because they are exposing more money to the house edge . custom_break as a player i feel it \u005c u CUSTOM_NUMBER s a treat to visit a casino that offers double and single deck games . i would hate to see these games eliminated altogether . even a multi deck shoe game is preferable to the continuous shuffling machines . the best way you can let the casinos know this is by refusing to play blackjack at the casinos that use a csm for their blackjack games +p6906 +aVembrace the probability of your iminant death , you idiot . +p6907 +aVgood riddance you drug abusing loser . +p6908 +aVshe was kind of a main character . +p6909 +aVi allways flag anything it says on the spot . it has proven itself to be a troll of the worst sort a spamming one . +p6910 +aVno , even if he has the best season next year he won't get it because the media get bored . that's why jordan didn't win more . too bad we don't have any good reporters voting like there were back in the bill russell days . +p6911 +aVeh , billy joel's not a bad guy . music's fucking awful , of course . +p6912 +aVi know , sitting in front of fire , cozied up .. how often does that happen .. but at least we don't have to shave our legs as often ;) x +p6913 +aVCUSTOM_AT i think that is the whole point , i would appear that one of these politicians may have been directly affected by the drain on england known as immigration . too little too late if you ask me . as another mentioned on here , if someone was qualified to make that kind of money they would use their trade elsewhere !! +p6914 +aVwomen that are prostituted are victims ! +p6915 +aVhating for jealousy is just so absurd , though . it makes you look like an idiot with no knowledge of baseball at all . +p6916 +aVyep , i still despise this show too . fucking frat boy humor . +p6917 +aVdo you realize how many people get dui's and retain their job ? +p6918 +aVlook at the bright side , the libs / dems have this david crock / brock character supporting their side , a strong wind will blow him from la to boston . +p6919 +aVhey ! teacher deserve every penny they can get . it is a thankless job and very important . +p6920 +aVi see you dreamt about me all weekend . i am not into men like you are , and also cowards aren't very attractive . now get to work you little cowardly stable boy . +p6921 +aVare you newcomer to this world ? +p6922 +aVmichelle s . ng custom_break CUSTOM_AT custom_break regional actress , host & model CUSTOM_NUMBER st runner-up ; the amazing race asia CUSTOM_NUMBER , team singapore , fhm model custom_break custom_break custom_break nikita conwi custom_break graduated from john robert powers custom_break monster rdio rx CUSTOM_NUMBER . CUSTOM_NUMBER custom_break custom_break custom_break deniece milinette cornejo custom_break model custom_break custom_break krish enriquez custom_break one of the CUSTOM_NUMBER k in abs cbn's deal or no deal custom_break custom_break anya pena custom_break model custom_break custom_break goldamier gamir custom_break model custom_break tanduay custom_break custom_break custom_break how can you swallow all these things ? you know how to read , custom_break but you dont know how to understand ? custom_break and you want to be an ambassador ? custom_break and meg is letting you do all these things . how sad . +p6923 +aVarsenal are glory hunters ? we don't park the bus and we don't spend CUSTOM_NUMBER mil just because we love a pony tail player who can only wait for corners . +p6924 +aVwhat is your problem CUSTOM_NUMBER ? why can't you just have normal and civil conversations . come on - please grow up so others can enjoy commenting . +p6925 +aVwell braves were bound to break out the losing streak .. nobody better to do it against than sorry a ss westbrook +p6926 +aVfucking savages +p6927 +aVthe number of invasions your ancestors were subjected to , the invaders having their ways with your grandmothers , is obvious by your complexion . custom_break custom_break good point . +p6928 +aVthe u.s. govermet spends billions of dollars every year guarding against al qaeda . +p6929 +aVi agree . it would have been better than doing nothing . trouble is , baa didn't get the political backing it needed . the CUSTOM_NUMBER white paper should have said that in CUSTOM_NUMBER heathrow closes , we're building CUSTOM_NUMBER new runways at stansted , you are moving . custom_break custom_break gus +p6930 +aVyou pathetic , pimple-faced little adolescent moron . have you not studied sarcasm yet ? custom_break custom_break let me guess .. you are a product of home schooling , right ? +p6931 +aVits comedy u fuckin hater . nigga prolly is smashin her off camera +p6932 +aVi told you to suck on the marriage penalty you numbskull ! custom_break besides , every fiscal year ending sept . clinton added to the federal debt . treasury . gov pal look it up ! +p6933 +aV< i > " we got no class , no taste , no shirt , and shit faced " < / i > custom_break more nickelback lyrics for your listening pleasure . +p6934 +aVyou know what pathetic . your mom asked me to remind you that it is bed time .. oh and she just asked me to have you send your sister to her bedroom +p6935 +aVand you are retarded . +p6936 +aVare you color-blind ? +p6937 +aVit's also nice when saban can sign CUSTOM_NUMBER kids every CUSTOM_NUMBER years compared to a normal non sec teams CUSTOM_NUMBER +p6938 +aVlol , your full of chit , just another stupid liberal +p6939 +aVi am so wanting a repub politician to blow it .. lose his or her temper about the incompetence and the arrogance of the white house .. of the short term fixes for campaign reasons and no solutions to our long term solvency and security ! come on guys .. be human !! get mad !! +p6940 +aVi really like " when you combine tactics such as these , you have an integrated marketing and communication program that drives results . real results such as improved margins , shortened sales cycles , and increased revenues . " custom_break custom_break custom_break custom_break i \u005c\u005c ' ve read a few friends recently trying to defend the idea of accepting pr as a $ CUSTOM_NUMBER k / month crap shoot that eventually the media would magically convert you into a success . custom_break custom_break custom_break custom_break as far as i can see , a few months in i \u005c\u005c ' m going to see results that paid for thet monthly spend , or i \u005c\u005c ' m going to find something else to spend it on . custom_break custom_break custom_break custom_break magical thinking is what has jacked up huge segments of our society today . +p6941 +aVha ha i love reading about your picks - seriously i was going to do it this time but couldn't get my picks in on time - i was out of town all weekend at my daughter's college graduation but i'll try to get in on the pool action at wimbledon , good luck everyone and remember nole rules ! +p6942 +aVretard +p6943 +aVwhat " modified by editor " feature are you talking about ? +p6944 +aVre : luke babbitt -- the funniest tweet i've read all year was the luke babbitt original chalupa CUSTOM_NUMBER written as an espn CUSTOM_NUMBER for CUSTOM_NUMBER promo .. +p6945 +aVif you think the people on this site give a shit about prison guards ' safety you're nuts . +p6946 +aVsholaameobi ' what planet do you live on you need to get down to specsavers are you blind or stupid ? +p6947 +aVxshogunx's eye are spread far as fuck . he looks like he has down's . +p6948 +aVCUSTOM_AT , custom_break custom_break you showed your true colors . in addition to comment misdirection , you are now using name calling and innuendo . custom_break custom_break name calling , innuendo , comment misdirection , the last refuge of someone who has no viable , logical , or well reasoned comment . +p6949 +aVryan .. go back to sucking your mothers teat .. boywonder +p6950 +aVCUSTOM_NUMBER , CUSTOM_NUMBER ? why are you on here then ? +p6951 +aVand you're not a racist , are you . what a joke you are . +p6952 +aVat this point , it is safe to say your ignorance can be now classified as stupid . +p6953 +aVthat's the quote from konstantin eduardovich tsiolkovsky , the father of russian space science . custom_break custom_break custom_break you are profoundly learned . +p6954 +aVyes , that was bullshit when you said that .. which is probably why a mod deleted it . but i'll be around to remind you of what you said , not to worry . +p6955 +aVyou are correct , they should be forcefully ejected out of israel . +p6956 +aVit's because of perez and because of the custom_break custom_break \u005c u CUSTOM_NUMBER ananana nana custom_break custom_break nanananana \u005c u CUSTOM_NUMBER b +p6957 +aVhow could he not ? i had to drive to chicago to see < i > the girlfriend experience < / i > in a theater . i doubt i'll have to go that far for < i > magic mike < / i > , but i'm fully prepared to . +p6958 +aVand who protects us from you when you decide you don't like our political views or our religion or the color of our skin ? and how is asking for some reasonable safety precautions taking away your rights ? +p6959 +aVyou dudes really need a fucking life .. plenty people with jobs dont have cars so for you to sitting here judging someone elses life really says alot .. shut da fuck up n just watch the video +p6960 +aVif criuticism is based on the facts .. then lets call it what it is .. lets take stevenglens bile for instance .. custom_break custom_break copy post : obama has spent that in only CUSTOM_NUMBER years , and gotten nothing for it , except CUSTOM_NUMBER dead mexican citizens , and several failed green energy plants . >> . ok first off thats a boldfaced lie .. secondly show non partisan facts that verify that verbal vomit you just posted and i will start here on obamas achievements .. but ask bin laden somali pirates al queda and quddafi if they think obama is all talk and no actio over these last few years .. but for obamas domestic accomplishments i willrefer you herer to politifact . org .. obamas promises .. read that and keep it moving .. turn off fix news and el rushbo for an hour a day custom_break custom_break custom_break custom_break he has also created the most vitriolic and partisan atmosphere i \u005c\u005c ' ve ever seen , with his divisive class warfare and demonization of several groups of americans . >> no actually bush did that with the " youre either with us or against us " cowboy bravado .. voters rejected that in CUSTOM_NUMBER and by partisan you mean racist ?? or do you mean the republicans that would rather see america fall into the sea that see obama fix this country .. mr mitch we wont work with obama . " turkey neck mcconnell .. so stop bs \u005c\u005c ' n here who is the real partisans here ?? yea obama tries to work with redumblicans and hes the one whos partisan .. dont make me laugh custom_break he mocks our process of democracy , praises and supports our enemies and alienates our friends . he claims to want to create jobs , then has his socialist minions squash any efforts at expansion or business starts with excessive regulations , fines , fees and lawsuits . custom_break >> supports our enemies like he did bin laden who bush gave a pass too for what CUSTOM_NUMBER yrs .. this whole post here is laughable on its idiotic face .. again .. im not gonna entertain this notion of bile you just posted cause its too comical to address .. stop watching fix news .. in case you didnt know they dont tell the truth .. they just propagnadize .. btw > .. who are obamas socialist minions .. you mean saul alinsky or bill ayers .. what about josef stalin .. while youre at it .. a truth socialist would laugh in your face listening to you squawk custom_break i could write pages , but the effort would be wasted . >> dont waste the informed voters time and effort custom_break i see from your profile you \u005c\u005c ' re something of an amateur at this , it would be helpful to your case if you could post some links verifying your claims . >> is that the best you can do is insult people based on their avi ?? / you sound like a child thrashing around in the sandbox at schoolhave you considered a career selling fertilizer ? >> maybe you should try it first and show us hows its done custom_break custom_break and honestly anyone that cosigns on that partisan parrot bile is just as big an idiot .. i didnt see one fact in that while diabtribe +p6961 +aVwho are any of us to say who is or is not trustworthy to hold nuclear weapons ? especially israel , or more precisely , apologists for it like yourself ? +p6962 +aVgod , you really are stupid . +p6963 +aVyou talk crap . nothing shooting does " endangers many species of birds and animals " but you are welcome to now give us examples of this . custom_break custom_break so go on , name some animals and birds endangered by shooting . +p6964 +aVyou're so fucking dumb ! +p6965 +aV* replying here to save space * custom_break i think i understand what you're feeling . put it this way , as someone who is actively involved in the systematic elimination of other human beings , i totally understand how all this movie shit really aint that important in the grand scheme of things . however , i and others in a similar situation use them to decompress from that real shit , and more often than not movies help express stuff in ways only film can . it does have value . custom_break and to your hypothetical situation about the victim using faith to survive , i would recount the < i > very real < / i > examples of young afghan girls getting their faces mutilated by their own family over irrational outdated customs / religious beliefs . is it better to have faith that produces these atrocites . i don't know , i dont have an answer . alls i know is although i thoroughly disagree with the absolute abolition of religion , its very obvious that we have to find a way to evolve our thought processes . custom_break oh , and as far as movie related articles are concerned , scientology is famously a very big force in the entertainment industry , as many of the big name a-list actors follow that faith . i think it warrants discussion . and don't forget , theres a movie coming out later this year about the hubbard , the trailer for which was covered recently here . worth checking out . +p6966 +aVman , you've got your music knickers in a twist . i play two three - chord riffs in e flat . i don't know where parity comes into it . strum on , guy . +p6967 +aVmany sri lankans talking shit as usual . we must build sri lanka we must work together . when will you understand that ?? +p6968 +aVdoubt it .. again showing your awesome reading comprehension skills .. i said you're acting like a b ! tch not you are a b ! tch big difference there genius +p6969 +aVbuddha is a fat ass slob .. nuff said . he is the fake . you moron . +p6970 +aVyou called someone stupid ? wow , you must smoke spice and meth combined because you sound brain dead . before putting your CUSTOM_NUMBER sense into something that you have no education on , just what you hear from the media , think about what you say . you sound like a fucking pawn just like the rest of society , believe everything you see on the news , you brainwashed grunt . +p6971 +aVCUSTOM_NUMBER - CUSTOM_NUMBER cnn poll " please tell me whether you agree or disagree that each of the following candidates has the personality and leadership qualities a president should have . " custom_break custom_break result : obama CUSTOM_NUMBER % , romney CUSTOM_NUMBER % . custom_break custom_break CUSTOM_URL +p6972 +aVCUSTOM_AT p CUSTOM_AT - track-dawg CUSTOM_NUMBER s CUSTOM_AT mason looks to rs so it's either lemay and bauta as the backup . +p6973 +aVhey ! jamie .. allkpop is not being biased .. they're just writing the fucking truth out of all those idols out there +p6974 +aVCUSTOM_AT CUSTOM_AT lol , i am in no ways upset b / c you've called me a moron . i've been called much worse . and i never picked a side . i just don't understand what legitimate proof you have , besides your bullshit guilt by association , that makes trayvon was a gang banger . might i point out that you've yet to provide a reason behind your statement on that topic . btw , i read the story and all the post . it's kind of hard to stay on topic when i debate you and you completely change the topic and start attacking me ! right ! +p6975 +aVmaybe you should go back and read the second comment +p6976 +aVmoney & bitches but not before your niggaz . get the money > fuck the bitches > & ball wit yo niggaz .. preach my nigga jones lol +p6977 +aVi think you're still tired , either that or you just didn't proof read and wrote it out too fast . " shelby was beside herself when she got to drive her intoxicated brothers home " ?? custom_break custom_break of course we all know you meant uncles custom_break custom_break i am so glad yall had fun . i think everyone of you needed that even the girls ! especially bobby . +p6978 +aVwho gives a fyck this is his second year +p6979 +aVplease do not talk shit about other artist in CUSTOM_NUMBER pm's article . we , hottest , always respect other artists by not pushing them down to make our artist look better . we are a proud fandom . +p6980 +aVshe continues to be obama's whore . +p6981 +aVhow do the towers connect to the bottom pentagon ? since it's not flat .. +p6982 +aVmerci beacoup , tous \u005c xeates vraiment mignon chlo \u005c xe CUSTOM_NUMBER ! . la soir \u005c xe CUSTOM_NUMBER e a \u005c xe CUSTOM_NUMBER t \u005c xe CUSTOM_NUMBER tout custom_break simplement la plus beau de ma vie .. +p6983 +aVstupid cuz kara girls always have shorts under skirts or dresses .. it's ok i can't see shit anyways ! still luv her ! +p6984 +aVyou have a dream too i heard , your sister gave you handjob as a symbol of pity +p6985 +aVm \u005c xecnh c \u005c xf CUSTOM_NUMBER kinh nghi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER m sau \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER y . b \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n th \u005c u CUSTOM_NUMBER eed l \u005c xe CUSTOM_NUMBER m theo c \u005c xe CUSTOM_NUMBER c b \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edbc sau \u005c u CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER y xem sao : custom_break CUSTOM_NUMBER ) d \u005c xf CUSTOM_NUMBER ng fire fox ho \u005c u CUSTOM_NUMBER eb CUSTOM_NUMBER c google chrome \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER v \u005c xe CUSTOM_NUMBER o google ( kh \u005c xf CUSTOM_NUMBER ng d \u005c xf CUSTOM_NUMBER ng internet explorer ) . custom_break CUSTOM_NUMBER ) g \u005c xf CUSTOM_NUMBER " anonymouse . org " -- > enter -- > click v \u005c xe CUSTOM_NUMBER o " anonymouse . org " \u005c u CUSTOM_NUMBER edf d \u005c xf CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER u ti \u005c xean . custom_break CUSTOM_NUMBER ) c \u005c u CUSTOM_NUMBER eeda s \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER m \u005c u CUSTOM_NUMBER edbi hi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER n ra c \u005c xf CUSTOM_NUMBER CUSTOM_NUMBER l \u005c xe CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER edd c \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER a n \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edbc anh v \u005c xe CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edbc \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c . click tr \u005c xe CUSTOM_NUMBER i v \u005c xe CUSTOM_NUMBER o l \u005c xe CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER edd anh \u005c u CUSTOM_NUMBER edf b \u005c xean tr \u005c xe CUSTOM_NUMBER i . custom_break CUSTOM_NUMBER ) c \u005c u CUSTOM_NUMBER eeda s \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER m \u005c u CUSTOM_NUMBER edbi hi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER n ra . b \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n th \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER y ph \u005c xeda d \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edbi h \u005c xe CUSTOM_NUMBER ng ch \u005c u CUSTOM_NUMBER eef " enter website address " c \u005c xf CUSTOM_NUMBER CUSTOM_NUMBER khung ch \u005c u CUSTOM_NUMBER eef nh \u005c u CUSTOM_NUMBER eadt . \u005c u CUSTOM_NUMBER ede khung b \u005c xean tr \u005c xe CUSTOM_NUMBER i , b \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n g \u005c xf CUSTOM_NUMBER " danlambaovn . blogspot . com " ( n \u005c u CUSTOM_NUMBER ebfu mu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ecdc trang bbc vi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER t ng \u005c u CUSTOM_NUMBER eef th \u005c xec g \u005c xf CUSTOM_NUMBER " bbc . co . uk / vietnamese " ) . sau c \u005c xf CUSTOM_NUMBER ng b \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER a con tr \u005c u CUSTOM_NUMBER ecf v \u005c xe CUSTOM_NUMBER o khung ch \u005c u CUSTOM_NUMBER eef nh \u005c u CUSTOM_NUMBER eadt b \u005c xean ph \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i , click tr \u005c xe CUSTOM_NUMBER i CUSTOM_NUMBER l \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n v \u005c xe CUSTOM_NUMBER o h \u005c xe CUSTOM_NUMBER ng ch \u005c u CUSTOM_NUMBER eef " surf anonymously " s \u005c u CUSTOM_NUMBER ebd \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ecdc \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c . +p6986 +aVand i call you a brain dead jew retard because it's true . perhaps if you got the muslim nazi's dick out of your ass you'd have more friends . +p6987 +aVwould someone please send this guy a blow up doll of obama with a CUSTOM_NUMBER gallon drum of ky and be done with it . . . +p6988 +aVas a browns fan , i softly weep . +p6989 +aVyou troll so hard +p6990 +aVthats just a clich \u005c xe CUSTOM_NUMBER .. and typical , baseless and silly accusation that homosexual advocates throw out there to try to scare off your adversaries . whats next " im a homophobe ? i'm a closet homosexual ? i'm a bigot ? lol . come on .. you can do better than that can't you ? that stuff is all worn out . find something new to say about me . lets see you be really imaginative . +p6991 +aVit's sad how utterly uncool the proglodytes have become in four short years +p6992 +aVyou are the one who brought up the topic kalifornia ken-doll custom_break custom_break and then you whine like a beech when somebody calls you on it ? custom_break custom_break whatever .. custom_break custom_break keep trolling for a teabagger ken-doll .. you may get lucky kalifornia phaggot +p6993 +aVbear with me for a sec . george stephanopoulos is greek right . greece is rioting . quit riot . cum on feel the noise . bring in da noise , bring in the funk . bring the pain . method man . barack obama's method to take over the usa is to hire george soros and media matters to make dick morris suck on toes on hannity's show to totally make fox news look like a bunch of pinky toe licking con artists , discrediting awesome guys like glen back and oliver north . go ahead call me crazy . +p6994 +aVmagic number , magic underpants = no big deal +p6995 +aVyou are really talented channel . multi faceted and shit ! +p6996 +aVmay he eat shit and < i > live < / i > . +p6997 +aVthere was no ethnic cleansing . flag the spam . +p6998 +aVyou need some serious psycho ; logical help . +p6999 +aVlook who is talking .. the payaso who sucks at both english and spanish ! +p7000 +aV.. you were right all along . not ! +p7001 +aVone day you'll let your child eat lights naked ? you are one sick puppy +p7002 +aVif rcae is your premise - help us . if fear of religion is your premise - god helps us all ! +p7003 +aVoh shit .. the one with the tattoos id suck him dry !! +p7004 +aVyou filthy ignorant -- cock-sucker stankin ass whore u should leave while you still ahead before someone stick a dick in your mouth to make u shut up +p7005 +aVsarcasm ? learn how to spell you moron +p7006 +aVwhy are you willing to share a cell ? +p7007 +aVif u didnt give a fuck what i was saying why is ur dumbass replying ? clearly u are ignorant and unsophisticated . +p7008 +aVobama does what he thinks is best for the country , gop does what they think is best for the republican party .. it should be an easy choice come november . +p7009 +aVwell then is it true that you like anal ? +p7010 +aVi still don't get how this is a big deal , shit . +p7011 +aVyour ignorant as fuck .. black people been skateboarding for a long ass time .. stop looking for lil wayne to set your trends +p7012 +aVnot really what it says a lot about is your lack of understanding on this subject . +p7013 +aVhahaha nigga we cp in that atl on yo ass bring those pussy ass niggas more blood on your pussy hands can handle your own fights . CUSTOM_NUMBER temple ave college park , ga CUSTOM_NUMBER .. you aint bout that life and i bet tonite tomorrow to next year ill still sleep like a baby +p7014 +aVpolls across the country show time after time .. that voters vote against homosexual faux marriages . +p7015 +aVwin win win honey badger carry us to the promised land +p7016 +aVyou're a turd . +p7017 +aVwith their imminent defeat in iraq and now afghanistan . the head of snake of imperislism be cut off in syria by the brave people of the region with support of russia , china and nations standing for justice and equality . +p7018 +aVwake up and smell the coffee , who is the current premier of the wc ? +p7019 +aVi understand what you are saying . custom_break custom_break out with the black , in with the white . +p7020 +aVyou have CUSTOM_NUMBER years worth of history wrong , and i'm the " idiot ! ? ! ? " custom_break custom_break benny_hill , why do you hide your comment history . i just caught you posting under your old name , but you delete the profile before anyone can see your campaign of character assassination , smear and distortion . custom_break custom_break cowardly much ? +p7021 +aValenlemone - anyone intelligent reading your comment could only come to the conclusion that you have mental issues , to say the least . either that or you're simply a biased russian . +p7022 +aVbitch , you replied to my comment , you stupid ass nigga . shut your trolling ass up and log out and go breathe some air for once . and lmao @ how fast you replied back to me . i see you live on this site smh . go get your dick wet , seriously and stop sucking uncle ronnie's dick . +p7023 +aVi guess this is obama's version of " i like firing people .. +p7024 +aVfoxtard logic : custom_break custom_break " no matter how many proven facts you present to me , whether it is back up by science , math , or just plain logic , if it does not support my narrow right wing view and justify my fear and hatred , then it must be part of a vast left wing conspiracy to make me a gay mvslim mexican " . +p7025 +aVbuzz off you twat +p7026 +aVi thought that makeup was suppose to make any bitch look better , in her case that's the total opposite . custom_break +p7027 +aVhave your country found puneet puneet yet . your burn our flag . your country is corrupt and the indian people are do gs . pay peanuts and get stupid fken indians +p7028 +aVwhat a great way to run a business . +p7029 +aVwhy are you here ? why do hate so much ? maybe someday you will figure it out . +p7030 +aVgo change your depends , crybaby . +p7031 +aVyes you are !! +p7032 +aVthat was so CUSTOM_NUMBER minutes ago troll . get with the times . +p7033 +aVoh .. so some unions are ok .. ?? who would decide which ones go .. ?? +p7034 +aVstop whining you moron democrats you backed afucking no brain marxist loser in CUSTOM_NUMBER . now pay the price +p7035 +aVthis is actually a dumb idea . so you switch one union for another and then what ? what about all other state unions ? what about ccpoa or cahp and all others ? apparently you do not have a clue that it is the bargaining system , not specific unions that skrew the employees . all it takes is for one or two of any of these unions make a deal that will be enforced on all employees . are you going to decertify all of them ? you are very naive and want someone else to collect the dues . +p7036 +aVi already have insurance you jack azz . but if i didn't i will show up where i want to for medical care and you dumb azz will be paying for it just like you will be for all of those that can't and or won't afford to get insurance . see , this is why i don't like talking to people like you , you have to use nasty language on you opposition because that's the way you deal with people that do not agree with you . +p7037 +aVand of course we have the added benefit of the poor CUSTOM_NUMBER yo who will now forever drive like an old lady for fear of hitting somebody else . on behalf of all drivers who will get stuck behind the slowpoke in future i would like to say to the girls - fuck you very much . +p7038 +aVfirst of all its the scotus moron , and secondly the ruling by the CUSTOM_NUMBER th is custom_break written for kennedy bro , have you read it ? it mirrors romer v . evans , i custom_break wouldn't be so sure about your slap down , we only need one vote from the custom_break supremes and judging by their rulings on gay rights and equal custom_break protection in the past , perry v . brown is a slam dunk for our side . +p7039 +aVwhyte brings to mind a sleezy , greasy second hand car saleman in the act of conning some poor old dear out of her money . where are all the " in whyte we trust " comments now , slowly but surely the followers of rangers are awakening to the destinct demise of their team .. r . i . p . +p7040 +aVyeah the fault doesn't lie with you for being a bigot , it lies with me for calling you on it . +p7041 +aVdemoralized is the only word i can think of if a current soldier is reading these comments . +p7042 +aVangel " was hot , wasn't she ? i can't remember . yes , that was a piece of shit movie . +p7043 +aVleidiot is a disgusting leader " less " , moronic , self serving , egotistical , selfish , bullying , idiotic , clown like , deceitful and hateful scumbag . +p7044 +aVyour teabilly slutchild is just as ignorant as her mother . custom_break custom_break you people are the trailer trash of america . +p7045 +aVoh and leigh .. don't you normally pick a front runner by now .. +p7046 +aVand now parents are afraid afraid to let their kids play outside . i used to ride my bike all over stockton ( before it came the stockton it is today ) and climb tress and play cowboys and indians ( where someone dramatically died every six seconds ) . custom_break custom_break of course , more people went to church then and there was spanking in schools and there was just a lot more respect for the institutions that made this country great . custom_break custom_break so sure , let's sue hollywood , but then let's sue the liberals that made the democratic party the moral wasteland it is today . +p7047 +aVno fucking way ?? !! you can't leave us ! can't you knock over an old lady or something ? turn tricks ? blackmail someone ? custom_break custom_break fuck ! noo !! +p7048 +aVso everyone is on board for that mosque to be built near the twin towers ? +p7049 +aVshut up you pawb . lebron lsoing is not going to ad years to your life . +p7050 +aVyeah ! and nixon have gotten away with it too if it weren't for those meddling kids ! +p7051 +aVschmeichel had some horror shows of his own in his first season , and went on to become one of the best ( if not the best ) ever , plenty of time for de gea to shine ! +p7052 +aVand sodomize you against your will ? you are a sick ticket annabelle . +p7053 +aVyay , ign ! ( not sarcastic ) you've echoed the complaints of many forum users , including myself : that inferno is too hard for normal people and blandly straightforward for ah junkies . custom_break custom_break but blizzard has indicated they plan to patch this , so i'm not too worried . +p7054 +aVfuck off whore +p7055 +aVCUSTOM_AT like i said : fuck you . custom_break custom_break people like you erode press freedom , and i am going to hope for otherwise . +p7056 +aVdamn , you are truly stupid +p7057 +aVCUSTOM_NUMBER - CUSTOM_NUMBER ?? custom_break custom_break what game are you watching ? +p7058 +aVlol ur dumb / retarded +p7059 +aVgarfield .. is that near dixie manor queeny ? or is that key west for homosexuals of your kind homie ? +p7060 +aVgo texas they have great american dads that arent affraid to stand up for what is right and what is right is the fact that the little bastar _ isnt going to commit this crime again . hell i will send some money to him for bail if they pick him up !! +p7061 +aVno - you are . +p7062 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > i'm compiling a list of my threads since sandals returned . & nbsp ; someone is going to be very disappointed in himself . < / div > < / div > +p7063 +aVhey moron , CUSTOM_NUMBER ) you're a disgusting human CUSTOM_NUMBER ) seau wasnt on those pats teams . you're a fool . +p7064 +aVmcfloyd , your simple assertions don't hold up to scrutiny . did bush live within his means ? did he fully reveal the costs of two simultaneous wars , energy policy made behind closed doors and led by dick cheyney , or the costs of the big pharma drug benefit giveaway ? did president obama inherit a budget surplus or budget deficit ? how many jobs were we losing before the president took office ? when you come back with those answers , perhaps i'll give your inane little quips some consideration . +p7065 +aVbs . lowe you are an arrogant prick . beyond criticism ? you deserve nothing but criticism you idiot . +p7066 +aVcan you post a statement without using the word idiot ? try being a little more eloquent with your retorts or just start pulling the wings off of flies to while the hours away .. +p7067 +aVoh ! oh ! i got an idea ! how ' bout we do a song that's not whiny bull crap ? \u005c u CUSTOM_NUMBER d - peter griffin talking to coldplay in family guy season CUSTOM_NUMBER , ep . CUSTOM_NUMBER custom_break custom_break ' par ' ( i think i'm starting to like this word , not entirely sure i'm getting the usage correct ) +p7068 +aVsays the child who does not understand what relevancy means . it's ok schimidt , we get the fact that you are a closed book . thankfully , your impact on society is meaningless . i accomplish more in the first hour of my day then you have your entire life +p7069 +aVCUSTOM_AT well , if you are going to interview someone about lack of realism in a game you should .. i dont know .. actually play the game before making a fool out of yourself in an interview ? +p7070 +aVpossibly , but you are not that ' anyone ' +p7071 +aVa thousand us troops died in the sudan ? i don't think so . +p7072 +aVi double-taked ( took ? ) at that . malaise ? malaise ? " hating shit because puberty " is not malaise , goddammit . teen malaise , give me a fucking break . custom_break custom_break on the other hand , i can at least be drinking at work right now , i understand school-bound teenagers are not as lucky . +p7073 +aVnoo !! not milton bradley !! +p7074 +aVno doubt the poor woman will be offered a good deal on a car when she turns up at the garage . +p7075 +aVgaggedinusa : what what killed kids are you talking about ? are you talking about russians or about some syrian rebels or your allies in pakistan , saudi ' arabia and qatar ? i do not follow you , whatever you are trying to say . +p7076 +aVmuslims want to blow themselves up , let ' em . custom_break i couldn't care less . +p7077 +aVand you're a big phat , brown , stoopid libturd .. +p7078 +aVi wish the same to you uglyandpoor . you have nothing to say of your own , so you post things i have said - out of context . you are a horrible little person . flag yet again . +p7079 +aVCUSTOM_AT definitely , it is trumped the burt reynolds episode .. and i thought that one was quite hilarious . since this one had the ocelot , ergo , latin , it was better . +p7080 +aVstorobin - you stole the damned election . you are not wanted in my neighborhood . get the hell out of here and go back to wherever it is you came from . +p7081 +aVif you expand to more than CUSTOM_NUMBER then go to CUSTOM_NUMBER and have CUSTOM_NUMBER team pods . i would add georgia tech and virginia tech for the se pod . isu , wvu , louisville and nd for the ne pod . +p7082 +aVi'm an election official and was running the polls here in southern california last tuesday . custom_break custom_break one libertarian voted . +p7083 +aVyou two are fucking trolls . what a sickening thought . last time i checked oaxaca is relatively safe , but ya'll wouldn't know that cause both of you have your heads up your ass . btw , most of the violence is on the borderstates of mexico . or did you forget that , too ? +p7084 +aVwell worded . " was not proud at the time " meaning they are now because they feel the world owes them a thank you for killing civilians and " saving " more ? shouldnt we thank those who lost their lives to help " save " more people ? you make me sick . custom_break custom_break and this is for the bird giving you words of wisdom . it \u005c\u005c ' s great that you understand the logic and ironically point out " will bend facts and contort causality " when it comes to debates . you forgot to point out using facts out of context . now please go educate the rest of your friends and find a giant mirror to stare into . +p7085 +aVoh great , they're gonna devote time to santino and dbl r . ffuu - +p7086 +aVi am sick of seeing this fuck asshole bitch made chain latters o.o ? gonna kill the person on " inside " who the asshole sick son of bitch made this crap things look at me i am grace wow i am to cool ghost \u005c\u005c custom_break me : * claps * now suck my dick mother fucking asshole i will fuck you lol +p7087 +aV< b > ;-) < / b > lol . .. just bustin ' your chops .. he's already been on base today - you must be doing good ! +p7088 +aVcoolest president ever ? your a complete waste of oxygen and resources . phucking idiot +p7089 +aVi don't think she interrupted him while he was in the middle of a speech . +p7090 +aVdodger radio playing tunes of " fuck you " at end of commercial break . they must be reading our comments . +p7091 +aVohh , so you're a w . bengal commie then , are you ? no wonder you talk like such a sick nut . you people are at war with reality , and even lefty mamta is a sanghi to you . pathetic . haha , no wonder you fear a pro-development guy like modi . +p7092 +aVwhich second did you buy ? i might want half of it . +p7093 +aVand it being summer and you're wasting it away inside is so wrong . +p7094 +aVi would have gotten out the car and fucked him up +p7095 +aVshows what you know dipshit , remington and winchester aren't made in china . i swear , elitist assclowns like you are an utter embarrassment . +p7096 +aVand who are you , the proud lord said , that i must bow so low ? only a cat of a different \u005c ufeff coat , that \u005c u CUSTOM_NUMBER s all the truth i know . in a coat of gold or a coat of red , a lion still has claws , and mine are long and sharp , my lord , as long and sharp as yours . and so he spoke , and so he spoke , that lord of castamere , but now the rains weep o \u005c u CUSTOM_NUMBER er his hall , with no one there to hear . yes now the rains weep o \u005c u CUSTOM_NUMBER er his hall , and not a soul to hear . custom_break custom_break edit custom_break reply +p7097 +aVwell then the op would learn that she cannot diagnose herself with aspergers , and that self-diagnosis is a bad thing leading to people whom act stupidly because they think they have some disorder / disease that in actuality , they don't . +p7098 +aVyou just went full retard . never go full retard . +p7099 +aVsomehow , i feel that pakistan is right in the middle of all of this garbage . yet , the united states keeps supplying them with arms and money . no sense to this at all . +p7100 +aVyou act like you faced a good team . you played like crap against another crappy team . +p7101 +aVhe still played . he didn't say that much . and obviously the heat reserves are going to lose that either way . it is when lebron and wade are playing this post season that the celtics need to worry . +p7102 +aVthat sounds familiar . mom picking subscriptions with no veto power to stop her . +p7103 +aVCUSTOM_AT lancaster pa mah friend . wez ghetto +p7104 +aVhe did the right thing . too bad someone didn't do the same thing to sandusky . +p7105 +aVeish wenger did a stupid mistake but he will never admit it anyway .. it was good for us that the ox was taken off and we were going to lose that match but wenger did a brilliant sub .. good luck guys for your CUSTOM_NUMBER th spot . +p7106 +aVwe were thinking back in time when a young ghwb was goaded by his ambitious young wife to eliminate jfk . , it would go something like this , babs , i can't stand that jfk , get rid of that white trash . then a little while later babs said i can't stand that mm she's gonna run her mouth and then , rk is finished . now that would be a much better hbo movie .. the white-washed bush legacy is getting tough to swallow . +p7107 +aVare you talking about the conservatives that cheered the idea of letting a man d ie if he didnt have insurance ? custom_break custom_break or the conservatives that booed a gay soldier currently deployed . +p7108 +aVim sorry but dont nobody just pick somebody out randomly and start attacking .. like she went ham for a reason . kimora seem like one of those low-key stank bitches . it might not be all true but kimora played a role . aint no black chick just just gon go off like that . +p7109 +aVpeople have been born gay since the beginning of time . today , with social media and the web and the constitution of the united states , they're just not going to be shut-up anymore . despite the vile attacks from the right . +p7110 +aVoh god , that is one hilarious video . it is the one with the professor layton rapist dude , right ? xd i didn't click it , but i've seen it before . so funny . ^_^ ( no matter how odd that sounds . ) +p7111 +aVwait you said though that your country was the nice one in the world - how bout you take that food from your dog and help feed the population of the world because i thought america was great right , they always try to use theor ethics - apparently not because losers like you are selfish andignorant +p7112 +aVgosh , peggy hill .. don't make me laugh . in addition to money .. romney won because newt is bombastic and is a serious liability in the general .. all the polls show it and intelligent conservatives feel it .. this is about style not substance . both will do the same thing in office just with entirely different styles . newt ruffles feathers all day long drawing stark contrasts even when it means lying or exagerrating .. like calling mitt anti-immigrant on national tv .. unbelievable . and since peggy hill knows far less about national politics than i do since i have studied it for CUSTOM_NUMBER years , i'm not inclined to be persuaded by her . she describes the political scene like i used to CUSTOM_NUMBER years ago .. with little to no expertise , so i don't pay her a lot of attention when we disagree . custom_break custom_break peggy hill is a great american and i love her and newt dearly but this is not the time to vote with my heart .. way too much at stake ! newt is the world's best field general but his temper and tone are wearing me out and i'm conservative .. i can only imagine how offended independents are beginning to feel . custom_break custom_break sure it helped that mitt raised more money .. that is essential in beating dingle barry .. peggy hill sounds like an ows'er ranting that mitt had more money .. thank god he did .. that's what it's all about ! so you newt zombies really ought to do the hokey pokey and turn yourselves around , lol . custom_break custom_break if newt will fold under lies and carpet bombing .. as he said he would .. then he's got zero chance of beating owebamao .. think about it .. that's all barry does . custom_break custom_break i don't care too much that mitt is uninspiring .. i know he can beat owebamao and i know he will attract independents and latinos in CUSTOM_NUMBER .. particularly with a romney / rubio ticket . my first choice for potus is a christy / rubio ticket .. neither are running but both back romney . custom_break custom_break by the time super tuesday rolls around , mitt will prolly already be the clear front runner but i never count newt out . custom_break custom_break but for peggy hill to be upset mitt raised and outspent newt is laughable .. that's what you're supposed to do ! custom_break custom_break custom_break btw - remember the sirens ?? custom_break custom_break beautiful half-woman , half-bird - like newt creatures who sang such sweet songs that listeners forgot everything including their own safety . the sirens are newtish sisters who lure sailors to their death . the sonsg of the sirens are irresistible but they reside beyond unsurpassable reefs which destroy the sailors ' boat when they try to reach the sirens . among those tempted were jason on the argo and odysseus . odysseus escaped from them by filling his crew's ears with wax while he tied himself to the ship's mast .. just sayin ' . +p7113 +aVsome fukin sketchers thats sad omg lol fuckin shitty ass sketchers why the fuck are they even named sketchers sketcherz fuckin suck ass +p7114 +aVbut they will care that you were here mikey . hey look he likes it . hey mikey likes it . +p7115 +aVme too ! i hope they can fix this sooner .. +p7116 +aVyou married the turd , and bred with him .. +p7117 +aVhey krystal : you stupid idiot who can't understand normal thinking .. fhuck off you howre +p7118 +aVhuck huck huck , no .. but giant pictures of them beating the_crap out of idiots like you are ok !! +p7119 +aVit's not you , it's me " custom_break custom_break words i'm sure most zoobs have heard before in their life . +p7120 +aVdude red on my ipod it says it will be CUSTOM_NUMBER * out today +p7121 +aVyes , but very few structures have actually burned in this fire . the issue is the forest itself . we're talking millions of acres of dry forest in an area so mountainous that a very high percentage of the land is not accessible to vehicles . this is part of what would be a normal natrual cycle , if it weren't for beetle-kill trees and below average ( and the average is minimal ) precipitation . in the meantime , we've got smoke over a major city with flames approaching . plus , this is watershed of the south platte , the most heavily worked river in the state , and fire-damaged areas wreak havic on water quality and precipitate flash floods . +p7122 +aVi'm an introvert . you are a wonderful person and i like you . but now please shush . " hee . yeah , i've been there . +p7123 +aVhe won michigan in the primaries . holy shit , your dumb . +p7124 +aVwhat a $ t u p CUSTOM_NUMBER d p h u c k k i n g k u u n n t t ! +p7125 +aVand israel will die " custom_break custom_break i knew he would bring israel in to this at some point . +p7126 +aVremember all the haters screaming to get rid of blanton before the season ?? where are they now ?? custom_break not so fat joe is pitching his pudgy lil heart out .. oh .. and guess what .. this team is starting to hit .. another thing the haters like to dwell on .. where are they now ?? all you chollie bashers ain't showing your butts now are you ?? whatsamatter ? seeing the faithful's faith in this team is well deserved by them ?? gotta luv the " paper " fans .. gotta luv them .. get the hell off of our bandwagon you wannabe so calle fans .. +p7127 +aVhe regretted killing him so quickly . +p7128 +aVi notice you haven't responded . you only care when you are telling other people how dumb they are . again who is your team uj ?? +p7129 +aVuhh i hate the dodgers , but they are the best team right now , and i agree al > nl but they are the best team at the moment +p7130 +aVi keep it fresher than the next bitch custom_break no need .. for you to ever sweat the next bitch custom_break .. with speed , i make the best bitch see the exit .. indeed , custom_break you gotta know your thoroughly respected by me , custom_break you get the keys to the lexus , with no driver custom_break you gotcha own ' CUSTOM_NUMBER suh-in .. the ride custom_break and keep your ass tighter than versace thats why custom_break you gotta watch your friends you got to watch me custom_break they conniving shit custom_break the first chance to crack the bank custom_break they try me , all they get is CUSTOM_NUMBER cent franks custom_break and papayas , from the village to the tele custom_break time to kill it on your belly no question custom_break i got more black chicks between my sheets than essence custom_break they say sex is a weapon , so when i shoot custom_break mmet your death in less than CUSTOM_NUMBER seconds custom_break still poundin in my after life .. custom_break laugin my shit is tight custom_break you who askin right .. custom_break custom_break [ chorus : ] custom_break aint no nigga like the one i got custom_break no one can fuck you betta custom_break sleeps around but he gives me alot custom_break keeps you in diamonds and +p7131 +aVnope .. your maths ! .. its CUSTOM_NUMBER played with CUSTOM_NUMBER draws . , and glenwood can be thankfull for the draw . maritzburg college where the better team on the field on the day . +p7132 +aVCUSTOM_AT to be honest the translation of ender's game isn't great .. much like the first book in the hp series , which is why i have been avoiding the challenge in chinese for so long . but i agree about finding something fun to read . the key is being able to provide yourself with the ability to have comprehensible input while you are reading . going to the dictionary for every other word and still not understanding what you are reading is one of the most painful things to deal with as a language learner . +p7133 +aVyeah well director interpretation isn't always the best insight for things like this , especially with something with such a rabid fan base . on top of that i think they are condensing more than i would have liked .. even if the golden age was kinda meh in comparison to the drama going on now , i would have at least liked for them to show them doing their thing on the battle field . +p7134 +aVyou know the rules - one delete equal CUSTOM_NUMBER reposts custom_break #37 what is his example of totalitarianism in the usa ? here it is .. last august , obama's dhs announced it would no longer deport the noncitizen spouses of gay americans custom_break lol , get yer musket myrtle and follow me into the bunker ! they'll not take us alive !! +p7135 +aVfrom what i can see , most men like women who are physically fit . you don't have to look like a runway model , but you do need to look like you take care of yourself , eat reasonably well , and exercise . studies have shown ( though i'm referencing information i read years ago ) that wm actually prefer a larger body type than ww , but not as large as bm or hm . ww seem to want to be a size zero , while wm seem to like the athletic swedish model body . anyway , i think both of the ladies above look very attractive . however , i don't understand this fixation on having butts and thighs that are way out of proportion with the rest of one's figure . that isn't attractive to me , personally . i just don't get it . and , seeing a huge rear on a small girl just doesn't make any sense . i don't know how it's physically possible to have skinny arms , legs , waist , and still have a humongous derriere and / or thighs . many men like a nice-sized butt , including wm and am ( i know from experience ) , so a bw's full , round bottom isn't necessarily a problem for men in general . but , most men ( including bm ) don't want a bottom that's so obese it looks like it's own planet . get and stay in shape for your own health and opportunities , bw . +p7136 +aVyou're better than that , pola . +p7137 +aVoh didn't you know they are irreplacable ! ( just ask them ) +p7138 +aVCUSTOM_AT custom_break custom_break we shall see only a fool predicts the future , you qualify . +p7139 +aVwhat's his story ? sporadic starts ? never over CUSTOM_NUMBER innings ? +p7140 +aVms jenkums could you please look up at the right hand corner up top and click the red x , and to never return again pls .. you are to dumb to know your dumb .. click it now .. and don't come back now you hear .. +p7141 +aVlisten you fucking wanker -- we approve all comments , so long as they are not inflammatory against a type of people . we censor blatant bigotry . but little dickwrinkles like you calling me a pussy ? i'd never censor that . look at other posts .. people have wished aids on me dude , so .. i've heard worse fuckhead . that said , if you have to sleep with a woman in her CUSTOM_NUMBER s , then that's pretty sad , dude . try dating girls your own age . it's kind of weird you're into way older chicks . you might wanna rethink hugging your own mom when you have a boner going forward . plus , i have had more ass than every male in your entire family line -- with their fucked up teeth and small dicks -- has ever seen . just a point of clarification , you bucket of cunt slop . +p7142 +aVhey CUSTOM_AT - b CUSTOM_NUMBER de CUSTOM_NUMBER b CUSTOM_NUMBER a CUSTOM_NUMBER e CUSTOM_NUMBER ba CUSTOM_NUMBER e :d isqus , you are awesome ! +p7143 +aVima fuck me CUSTOM_NUMBER white bitches . you got a sister ? ima fuck her in the ass . ima fuck ya ball headed sister everybody go to youtube look up the vid and look at the info section and it has all these fags address facebook and parents name and phone numbers real talk take a look .. i aint no snitch but when i see shit like these goin on it gets to me .. i live around there so when i see em ima fuck them upp good prolly gonna have to cut a bitch too +p7144 +aVretard , everyone wasnt bad . everyone had fallen angel blood in them . god didnt want that . god wanted humans to be human and angels to be angelic . not no damn hybrid . read the bible before you fuck up your interpretation . +p7145 +aVall racists like you are morons , dude ! custom_break custom_break it just happens most pit bull owners are morons too & this has even more convinced me of that . +p7146 +aVit's hard to read your post and not immediately think that you're xenophobic +p7147 +aVthanks kosh i am very happy being normal +p7148 +aVyou are such a talented photographer ! +p7149 +aVwowee !! those are both high-energy , smart dogs . and you're a few weeks away from delivery . your life is about to get even more interesting than it already is ! :) +p7150 +aVCUSTOM_AT he can be as stubborn as anyone else with his opinions . but the name calling went too far , i agree . +p7151 +aVfuck you fred +p7152 +aVthey do seem to run away and hide whenever you question their fox news talking points . +p7153 +aVmichelle obama can suck it !! i am sick and tired of the screwed up government telling us what we can and cannot do .. especially when it comes to our kids !! stay the hell out of our lives !! save the republic revolt against socialism !! +p7154 +aVgo suckle on your mom's teet little child +p7155 +aVCUSTOM_AT i know they work in lots of countries , all of europe , brazil , isreal , those are just a few that i know . i'm sure it will work in new zealand . depending on the time of day ( if they are not at school ) you will receive the server information with in minutes . +p7156 +aVfan jag som trodde det var fi . att neka de som vill r \u005c xf CUSTOM_NUMBER sta att r \u005c xf CUSTOM_NUMBER sta \u005c xe CUSTOM_NUMBER r allt annat \u005c xe CUSTOM_NUMBER r civiliserat . att ta ut sv \u005c xe CUSTOM_NUMBER ngarna \u005c xe CUSTOM_NUMBER r v \u005c xe CUSTOM_NUMBER lbeh \u005c xf CUSTOM_NUMBER vt annars sker inga f \u005c xf CUSTOM_NUMBER r \u005c xe CUSTOM_NUMBER ndringar . +p7157 +aVyou are a fucking idiot . +p7158 +aVthat is kind of a sexy photo though . who took it ? +p7159 +aVflag this loser's posts . enough flags and he loses his nic automatically . +p7160 +aVi think the drugs these days are all laced with a little something extra ! the crime these days are unbelievable and unthinkable . +p7161 +aVu thurley may be a consenting adult , but it worries me what a bigot like him / her consents to . +p7162 +aVif you claim you don't have the power to forgive but only " allah " , why then do you arrogate yourself the power to avenge ? are you not double-speaking ? why not leave both powers to the owner , " allah " and allow him to fight for himself ? or is he not capable ? we are not afraid of you ; we are not afraid of death . everyone will eventually die , both the killer and the killed ; our lord jesus long time ago warned us about sects like yours and encouraged us not to be afraid for you can only kill the body but can do no further harm after that : you can't kill our souls which ultimately goes back to our god ; so kill all you can , jesus will forever remain lord ! +p7163 +aVdamien sandow . . . the " leaping " lanny poffo of this era . +p7164 +aVhaha look at the face on her +p7165 +aVi told you before you poor excuse for a human being not to respond to my post but you don't listen . you are ignorant , you pathetic piece of feces . i hope you custom_break get what you deserve in a fatal accident soon .. +p7166 +aVyou are soo beautiful +p7167 +aVso what happened when you wandered off into the woods during your brothers swim meet ? sounds like deliverance . +p7168 +aVi imagine he lives in virginia , he's wouldn't live with the riffraff in dc . +p7169 +aVapparently , bad officiating never gets old to you morons . +p7170 +aVthanks for confirming that conservative men only see their women as a pair of tits and an azz . +p7171 +aVCUSTOM_AT CUSTOM_AT some of the opponents scoring were touchdowns that murray threw to their defensive backs or we gave the opponents really short fields . custom_break custom_break custom_break custom_break i am not saying uga doesn't have great talent on both sides of the ball . however , the consistency on offense is missing . the short dump-off passes are missing . and , obviously our running game and o-line play were missing . however , the boneheaded ct runs up the middle , the flat footed draw plays , and the fumbles at critical times by murray and the pick CUSTOM_NUMBER ' s had to demoralize our young defense . custom_break custom_break custom_break custom_break personally , i would like to see us never get behind in a game and to win every game by CUSTOM_NUMBER touchdowns . please forgive me if i am asking too much . +p7172 +aVwhat's your deal bro ? you aren't concerned , and you damn sure are not a liberal . why don't you just be yourself instead of coming on posing as a screwed up exaggeration of people you don't like or understand ? did your mommy not love you enough or something ? +p7173 +aVobviously clean " , you are in denial +p7174 +aVi bet the songs on the upcoming cd were written for this twit . the message was she is a progressive . she knows where her bread is buttered . custom_break custom_break i have never even heard of her . custom_break custom_break i bet if she had to write her own material . ms hoe would be a major disappointment to her idiotic fans . custom_break custom_break what was her message with the exorcism ? cbs management look like total knuckleheads . no wonder their ratings suck . custom_break custom_break bring back garage bands . they play instruments , write their own material & perform to their fans . custom_break custom_break most of the music truly sucks today . record executives don't even try to find pure raw talent .. it seems they try to clone their stars . visual imagery for shock value over solid rock-n - roll . custom_break custom_break +p7175 +aVjust a thought . about those unwinnable , illegal wars . if they were illegal wouldn't you think bush and cheney would have charges brought up on them by now ? fact is they were on the level its just another example of the liberal media getting all you liberals wound up tighter than dick's hatband . just like little wind up toys , get you started and away you go ! custom_break custom_break it's time to start thinking about impeachment of the dope head in chief . +p7176 +aVdefine abortion in objective terms . explain the whole process of abortions too me . explain what you see in a sonogram of a baby with fingers , toes , fingerprints , eyes , a heartbeat and brainwaves . explain late term abortions for me . where they pull a baby's head out and inject it with saline and then vacuum their brains out . pro choicers are cowards at the core . how brave of you to lay down your responsibilities for what you did at a nightclub getting drunk and having unprotected sex and then kill your living mistake . +p7177 +aVn \u005c xe CUSTOM_NUMBER gonstans missar sigfrid principfr \u005c xe CUSTOM_NUMBER gan det g \u005c xe CUSTOM_NUMBER ller n \u005c xe CUSTOM_NUMBER r han drar paralleller till bilk \u005c xf CUSTOM_NUMBER rning och droger som inte alls \u005c xe CUSTOM_NUMBER r relevant till fr \u005c xe CUSTOM_NUMBER gan om r \u005c xf CUSTOM_NUMBER str \u005c xe CUSTOM_NUMBER tt s \u005c xe CUSTOM_NUMBER tillvida att han inte anser att barn / unga ska ha m \u005c xf CUSTOM_NUMBER jlighet att kandidera till riksdagen . eller \u005c xe CUSTOM_NUMBER r han m \u005c xe CUSTOM_NUMBER h \u005c xe CUSTOM_NUMBER nda r \u005c xe CUSTOM_NUMBER dd f \u005c xf CUSTOM_NUMBER r att bli utmanad av n \u005c xe CUSTOM_NUMBER gon politiskt insatt sju \u005c xe CUSTOM_NUMBER rig aspergare ? custom_break custom_break custom_break jag f \u005c xf CUSTOM_NUMBER rst \u005c xe CUSTOM_NUMBER r sigfrid ( med r \u005c xe CUSTOM_NUMBER tta ) har en ogrundad r \u005c xe CUSTOM_NUMBER dsla f \u005c xf CUSTOM_NUMBER r att minoritetspartier ( s \u005c xe CUSTOM_NUMBER som pp ) f \u005c xe CUSTOM_NUMBER r m \u005c xf CUSTOM_NUMBER jlighet att p \u005c xe CUSTOM_NUMBER verka i st \u005c xf CUSTOM_NUMBER rre utstr \u005c xe CUSTOM_NUMBER ckning om unga ges r \u005c xf CUSTOM_NUMBER str \u005c xe CUSTOM_NUMBER tt . men det finns fr \u005c xe CUSTOM_NUMBER gor som ber \u005c xf CUSTOM_NUMBER r alla medborgare oavsett \u005c xe CUSTOM_NUMBER lder t . ex fildelning , skolpolitik och studiebidrag . man b \u005c xf CUSTOM_NUMBER r dessutom inte dumf \u005c xf CUSTOM_NUMBER rklara det allm \u005c xe CUSTOM_NUMBER nna och f \u005c xf CUSTOM_NUMBER ruts \u005c xe CUSTOM_NUMBER tta att det besitter tillr \u005c xe CUSTOM_NUMBER ckligt med r \u005c xe CUSTOM_NUMBER ttspatos f \u005c xf CUSTOM_NUMBER r att inte r \u005c xf CUSTOM_NUMBER sta igenom n \u005c xe CUSTOM_NUMBER got s \u005c xe CUSTOM_NUMBER absurt som s \u005c xe CUSTOM_NUMBER nkt \u005c xe CUSTOM_NUMBER ldersgr \u005c xe CUSTOM_NUMBER ns f \u005c xf CUSTOM_NUMBER r att k \u005c xf CUSTOM_NUMBER pa alkohol ( \u005c xe CUSTOM_NUMBER ven om det nu faktiskt inte \u005c xe CUSTOM_NUMBER r ett problem att f \u005c xe CUSTOM_NUMBER tag i s \u005c xe CUSTOM_NUMBER dant eller k \u005c xf CUSTOM_NUMBER ra bil oavsett myndighets \u005c xe CUSTOM_NUMBER lder och k \u005c xf CUSTOM_NUMBER rkort ) . varf \u005c xf CUSTOM_NUMBER r det dras till in absurdum ? custom_break att unga eller barn inte ges r \u005c xe CUSTOM_NUMBER tt att v \u005c xe CUSTOM_NUMBER cka opinion n \u005c xe CUSTOM_NUMBER r en relevant fr \u005c xe CUSTOM_NUMBER ga ( f \u005c xf CUSTOM_NUMBER r dessa ) lyftes \u005c xe CUSTOM_NUMBER r bedr \u005c xf CUSTOM_NUMBER vligt ur demokratisynpunkt . men sigfrid menar kanske inte att barn klassas som medborgare ? det \u005c xe CUSTOM_NUMBER r synnerligen skr \u005c xe CUSTOM_NUMBER mmande med en s \u005c xe CUSTOM_NUMBER dan snevriden syn p \u005c xe CUSTOM_NUMBER demokrati ( allra minst fr \u005c xe CUSTOM_NUMBER n en av v \u005c xe CUSTOM_NUMBER ra folkvalda ) d \u005c xe CUSTOM_NUMBER dessa otvivelaktigt har ett svenskt medborgarskap vilket per definition b \u005c xf CUSTOM_NUMBER r ge dom r \u005c xe CUSTOM_NUMBER tt att p \u005c xe CUSTOM_NUMBER verka . barn \u005c xe CUSTOM_NUMBER r folkets framtid och ska med r \u005c xe CUSTOM_NUMBER tta ges m \u005c xf CUSTOM_NUMBER jlighet att p \u005c xe CUSTOM_NUMBER verka om dessa s \u005c xe CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER nskar . det p \u005c xe CUSTOM_NUMBER st \u005c xe CUSTOM_NUMBER s att debatten ska f \u005c xf CUSTOM_NUMBER ras p \u005c xe CUSTOM_NUMBER en n \u005c xe CUSTOM_NUMBER gorlunda h \u005c xf CUSTOM_NUMBER g intellektuell niv \u005c xe CUSTOM_NUMBER . men det \u005c xe CUSTOM_NUMBER r ju precis tv \u005c xe CUSTOM_NUMBER rtom , det g \u005c xf CUSTOM_NUMBER rs inte eftersom inte ens vuxna klarar av att v \u005c xe CUSTOM_NUMBER lja vettiga politiska f \u005c xf CUSTOM_NUMBER retr \u005c xe CUSTOM_NUMBER dare eller s \u005c xe CUSTOM_NUMBER tta sig in i vad exakt en r \u005c xf CUSTOM_NUMBER st ( p \u005c xe CUSTOM_NUMBER t . ex moderaterna ) inneb \u005c xe CUSTOM_NUMBER r . custom_break custom_break vi b \u005c xf CUSTOM_NUMBER r str \u005c xe CUSTOM_NUMBER va efter ett samh \u005c xe CUSTOM_NUMBER lle d \u005c xe CUSTOM_NUMBER r vi v \u005c xe CUSTOM_NUMBER gar f \u005c xf CUSTOM_NUMBER r \u005c xe CUSTOM_NUMBER ndra saker och ta ut sv \u005c xe CUSTOM_NUMBER ngarna en bit i taget . i v \u005c xe CUSTOM_NUMBER rsta fall \u005c xe CUSTOM_NUMBER r f \u005c xf CUSTOM_NUMBER r \u005c xe CUSTOM_NUMBER ndringarna reversibla . custom_break custom_break i korthet . ja till att ge yngre medborgare r \u005c xf CUSTOM_NUMBER str \u005c xe CUSTOM_NUMBER tt om dom vill utnyttja denna . d \u005c xe CUSTOM_NUMBER remot kan man beh \u005c xf CUSTOM_NUMBER va besluta om att partier inte f \u005c xe CUSTOM_NUMBER r nyttja fulknep f \u005c xf CUSTOM_NUMBER r att vilseleda v \u005c xe CUSTOM_NUMBER ljare innan detta beslutas , vilket \u005c xe CUSTOM_NUMBER r en fr \u005c xe CUSTOM_NUMBER ga som beh \u005c xf CUSTOM_NUMBER ver arbetas igenom innan ett eventuellt beslut tas , allt f \u005c xf CUSTOM_NUMBER r att s \u005c xe CUSTOM_NUMBER kerst \u005c xe CUSTOM_NUMBER lla att politiken blir mer transparent . +p7178 +aVklein , you are a coward . did you really interview these guys , just to mock them . custom_break custom_break best part is that you stop short of belittling scheartz . even you know that would probably be the last straw in your downward career . +p7179 +aVoh all of a sudden u changed ur picture to a white guy with penny loafers .. mufucker u lame +p7180 +aVyou're naive and don't have a basic grasp on biology . +p7181 +aVnope , mets will be fine , they have held it together so far and played admirably +p7182 +aVyou forgot to mention that there has been little , if any , proof that the allegations of a fake birth certificate are credible . just saying it a million times doesn't make it true . +p7183 +aVnobody gives a shit what you say +p7184 +aVyou are unemployed and on welfare . +p7185 +aVi'm not saying i agree with that nonsense . like i said , i don't understand it , nor would i want to live in a city like san francisco for that very reason . but that doesn't mean they don't have a right to live their life the way they want to . who am i , or anyone else , to tell them how to live their lives ? i know one gay person , a relative . and he's the kindest , most giving , sincere person i've ever known . when i hear comments from bigots like CUSTOM_NUMBER skeeter , it makes my blood boil . +p7186 +aVi think if you want all the trophies , you should have to play all the game . people work hard on that game & if you can't be bothered to play it all , then you shouldn't care so much about not getting a trophy for it . +p7187 +aVlooks like there's fixin to be a shootout +p7188 +aVwhy the hate man ? done nothing to you .. ever .. +p7189 +aVthat's a management issue . not rank and file employee issue . quit crying like a cry baby just because people vote for other political parties than republican . +p7190 +aVbitch please .. you are the biggest troll . :p +p7191 +aVyou'll have to delete comments because i make your posts look like crap . " custom_break custom_break you mean make all your comments look like crap . custom_break custom_break you're only embarrassing y o u r s e l f , mate . +p7192 +aVyou do not exist as a human being . please go back into your hole you rotten scumbag . +p7193 +aVthe article was about bush you asshole . +p7194 +aVthey look like morons +p7195 +aVfucking bullshit ! custom_break how do you have a seizure , hit a car , then get out and speak to the other party and drive off , also hitting the same car , just to have another accident ? +p7196 +aVyo CUSTOM_AT :d isqus you must be too dumb to know what " grand jury " means . plus who is going to testify against him ? the dead mexican ? go shove your idiotic comments up your you know what . +p7197 +aVwe don't blow up our wives and children in the name a allah , nor did we murder CUSTOM_NUMBER , CUSTOM_NUMBER in darfur . custom_break custom_break lets not compare apples and oranges . +p7198 +aVwarren buffet owes corporate taxes back to CUSTOM_NUMBER .. he doesn't want to pay his fair share .. +p7199 +aVhush little negro don't say a word , custom_break mama gonna buy yawz some thunderbird . +p7200 +aVmoved right ? lol custom_break custom_break straight jacket , stat ! +p7201 +aVsantorum is the only real conservative running . custom_break custom_break as to the occupiers .. what a bunch of selfish , spoiled brats who are morons . what have these occupiers accomplished / anything of real value .. let's see , murder , rape , robbery , vandalism , created a huge financial burden for the local taxpayers ( clean up their messes ) even child neglect / endangerment as been reported .. great accomplishment ! mom must be so very proud . lost all credibility . +p7202 +aVlike obamas daddy , huh ? obamas pig daddy had CUSTOM_NUMBER wives at one time , +p7203 +aVi can not believe americans are so stupid , fat and lazy . you sit around in your lay-z - boys watching football and listenening to your ipods that you don't even care that the country your grandparents and great parents died to protect is eroding away because of evil liberals . i never would have even called a representative in this case . a ' school health inspector ' would have had their ass handed to them and then the school principle , too . for even having such a useless position in the first place . who has time to inspect kids ' lunches and who has $$ to pay a person to do that at any school ?? it's time for you idiots to vote out these libs and elect hardcore conservatives across the board . who cares who is president if you don't have a conservative house and senate ?? +p7204 +aVhow hard is it for the bimbo to use a towel or baby blanket for a coverup ? toss one in the diaper bag and use it ! +p7205 +aVno you are a corny dumb ass . +p7206 +aVthey just want a portion of the road so they can carry out their hangings in familiar territory . +p7207 +aVoliver stone \u005c\u005c ' s kid or babies daddies uncles \u005c\u005c ' brother \u005c\u005c ' s cousin .. is not news . who cares what religion he is ( i would like to be him when is " new brothers " hears the comment he had not abandoned christianity or when the change his mind about his jewish blood . ( not talking about muslims in general just the ones that blow stuff up ) +p7208 +aVin chicago , we say gas station . +p7209 +aVno . i know people who re-watch it habitually . i am , in fact , related to one of them . +p7210 +aVso you call her a w h o r e making you what .. ? pure ? you're a fool and an idiot . +p7211 +aVthe same with write people . every one do some drug in there life ok not all black people is drug addict so i would like you to stop hating on blacks ok you prick . have some respect for him god know y he do what he did ok have a bless night u prick +p7212 +aVwhen you say bama , you are referring to the school , like in your posts below .. stop being an idiot . +p7213 +aVchill no need to call them an idiot . +p7214 +aVlet's wait to see what the contract and numbers are before getting too upset . custom_break custom_break could be a one-year deal that won't have any impact on dealing for a fa +p7215 +aVwhaat ? excuse me while i puke .. +p7216 +aVwhoever takes out the heat in the playoffs will be america's team . +p7217 +aVsure they will .. CUSTOM_NUMBER pitcher does not make or break a rotation especially when you have the depth the reds have .. he wasn't expected to come over and be the number CUSTOM_NUMBER he was brought over cause he has the potential to be a #1 that whole deal was basically based on potential and the reds got the better of the deal .. calm down no need to point out what he has done so far we all know lets talk about how to get him back to where he was so we are getting out of him what we all expected .. this team is going to the playoffs regardless of his performance it would just be nice if he contributed like he should be and i fully expect that he will pay dividends sooner rather than later +p7218 +aVno actually , you've shown me no source , all recent data has been shipments , idiot . your other comments would hurt if you were actually relevant , moron of the year . explain how that's still not dominant , kid . +p7219 +aVyeah so what's the big deal letting iran and it's friends know they can not trust their software , nor trust in the safety or integrity of everything from their hardware to their people as they play with nuclear materials ? +p7220 +aVoh please , she only has one face , the pout , and she really doesn't need any more practise at that . +p7221 +aVeveryone has something to deal with . some are ugly , some are dumb , some have crooked teeth , some voted for obama . +p7222 +aVlauren are you mad at me ? +p7223 +aVif not for panetta ( of all people ) urging obama to give a green light on the operation , bin laden is still walking around making video tapes and lopping the heads off americans . custom_break custom_break if you want to kiss someone's - ass over osama , start with leon , then move on to the seals who got him . +p7224 +aVall non-eus move to london to earn that .. not wanted eslewhere +p7225 +aVi agree , i'm just being sarcastic . +p7226 +aVwhy the_fuck didn't you tell her ? +p7227 +aVstop acting like a bitch . he was a kid for goodness sake . +p7228 +aVcitizen CUSTOM_NUMBER , custom_break custom_break you can't keep liberal style lying your way thru life . custom_break custom_break the truth will prevail . i know thats anathema to you . custom_break custom_break you need help . +p7229 +aVyou're da best , matt fowler +p7230 +aVromney is a business who has solid ideas about bringing jobs back . custom_break custom_break romney wants a strong military only as a deterrent to attacks by other countries all over the world . custom_break custom_break btw , you liberals use the term " tax cut " which is false . a true " tax cut " is when our taxes get lowered . custom_break custom_break the liberal version of a " tax cut " is when tax payers are allowed to keep some more of their hard earned money . news flash to liberals : it's not your money . +p7231 +aVdude - it was a satire english newspaper , called the daily squib that made that up . custom_break custom_break satire means joke . +p7232 +aVyou don't . +p7233 +aVare you sure he's even a real person ? +p7234 +aVwell we know you are to dumb .. you only chose that screen name to satisfy your overgrown ego .. +p7235 +aVhe used to be like , CUSTOM_NUMBER st himself .. +p7236 +aVmos po lyp me ja kthy virgjinitetin edhe motres apo nones tonde , po e kan hup virgjinitetin ose e kan shit me pare , e i njejti rast osht edhe me mitrovicen , se baba jot hashim thadici e ka shit mitrovicen o kungull +p7237 +aVthunder fans are praying they toss duncan +p7238 +aVvotto was in our farm before krusty ever came here . so was bruce and cueto . phillips was here too but not from our farm you idiot . +p7239 +aVso you think there is no reason that a government needs to keep a secret ? spreading classified info with you was wrong when it was scooter libby , right ? +p7240 +aVyou know a couple of young apes took her to abuse her . only hope she comes back in one piece . +p7241 +aVyou are right +p7242 +aVevidently your not smart enough to do the same thing or you wouldnt be sitting on your lazy ass dropping spam on this website .. +p7243 +aVgot a reference for that idiotic comment ? +p7244 +aVonly if ronald mcdonald gives him time off from his regular job as a mcslave at mcdoonald's . +p7245 +aVhow can a porn-star compare herself to the vi CUSTOM_NUMBER in mary . +p7246 +aVi shall give you one reason . one reason . and you'll want to kill for that robocop remake . custom_break jose fucking padhila . +p7247 +aVto the idiots posting on here who think racism is alright .. custom_break well it is nor and if you were a victim of racism then you would know .. custom_break i feel like balli too and i would kick off as well even if meant i got arrested .. custom_break did you seem them dumb fkin poles and ukranians racist bigots .. custom_break racists have a place ; sure they do .. in the fkin gutter .. custom_break and you know what would stop racism immediately or bring it to the forefront .. if the racists were to throw swastikas at all the jewish players ; i bet the football bodies would take note immediately .. +p7248 +aV\u005c xc CUSTOM_NUMBER no , v \u005c u CUSTOM_NUMBER etci \u005c u CUSTOM_NUMBER do ho pozn \u005c xe CUSTOM_NUMBER me vieme , \u005c u CUSTOM_NUMBER ee hr \u005c xe CUSTOM_NUMBER len do vlastn \u005c xe CUSTOM_NUMBER ho vrecka !! +p7249 +aVlavendar is my favorite color but you can get it in any color to match your room +p7250 +aVyou would hope so . unfortunately , when people are desperate and seeking a solution when there does not seem to be one , they want to believe in anything that will help their child . i can't fault them for loving their child that much . custom_break custom_break on the other hand , there are some people that will just believe anything a celebrity says , just because that person is a celebrity . +p7251 +aVspurs CUSTOM_NUMBER - okc CUSTOM_NUMBER CUSTOM_NUMBER rd q CUSTOM_NUMBER min left +p7252 +aVCUSTOM_AT oh my god they're best friend cheating on each other +p7253 +aVhenry hawk custom_break custom_break the cases that you have cited are not applicable in this instance . custom_break custom_break also , there is no known conflict statute within any us state with granting obama's lfbc full faith and credit custom_break custom_break nor is there a credible record of a statement by obama that he was not born in hawaii as you have suggested . +p7254 +aVgood job , eric . you defended yourself against your unarmed little custom_break brother , who you claimed to love . you took that gun with you on custom_break purpose , and you darn sure got to use it , as you intended . " custom_break custom_break a little harsh , aren't you . nothing like piling on when the guy on the bottom , who admittedly made a huge mistake , is already feeling terrible about it . you are in no position to judge him .. perhaps you should try walking in his shoes . his life has been changed forever . and i doubt he premeditated to kill his brother . that's not how accidents happen . was he careless ? yes . but i doubt he's a murderer . +p7255 +aVoh you sit down and shut the fucck uup you mental retard ! what the fuck do you know retard ?? i hate people like you !! why dont you go get violently killed in a car accident you fucking retarded dick headed bitch mother fuckin ass hole ? !! +p7256 +aVhi ally . glad you liked gambler gal . she would be my alter-ego if i had a bunch of moolah to spend . alas .. this is not the case . i like the penny slots , too , but you can sure cram a heck of a lot of money into those machines if you're not careful . sheesh . custom_break hugs ! +p7257 +aVguess what op ? i'm a < i > real girl < / i > that < i > likes < / i > wearing make up , < i > likes < / i > wearing my hair down , < i > likes < / i > being dressed nice , and sucks at call of duty . < s > my strategy is to spin in a circle and shoot everywhere . shoot those motherfuckers . < / s > custom_break custom_break custom_break what now ? +p7258 +aVsupposedly , a very rare pattern in the " c " position , or sometimes referred to as the " bullish doggy-style manuever " , take your pick ! lol ! CUSTOM_URL suspect , though ! ( * if someone has posted this , my apologies , i \u005c\u005c ' ve not seen it ) +p7259 +aVmaybe he is canadian , would explain why he is gutted not to be going . +p7260 +aVoh , fuck . yeah , he's not kidding , guys . it's images from the attack , and holy shit they are in a whole new world of graphic . +p7261 +aVevel dick gets my vote james r is a very creepy looking " man " mr rogers look alike plus he whined like a little bitch when janelle destroyed " him " in the otev pov comp +p7262 +aVCUSTOM_AT hey a CUSTOM_NUMBER . was thinking about you today ' cause i was listening to some old blues . how is it going ? +p7263 +aVi have watched the video over and over again , and with all the evidence ballotelli did not delibratly stamp on parkers head , for a start parker was behind mario when he fell , and in doing so knocked ballotelli off balance and tripped over hitting parker in the head , that's what the ref saw , the rest is history . +p7264 +aVyeah , they'd pick up the trash then go thow it in the yard aroud their trailers . +p7265 +aVCUSTOM_AT go ahead and try , dude . go - fucking - ahead . +p7266 +aVso a single parent is better ? get off your fucking high horse and shut the fuck up . can you even imagine the trauma the two girls will feel ? and , the loss of the other female partner won't change the other mother from being gay , i hope you realize . +p7267 +aVrob , you have proven your point already . we understood - you are an antisemit . you can relax now . +p7268 +aVfaux is a better source of animus . +p7269 +aVit is a great honor to be a zionist . you are garbage , a retarded idiot . +p7270 +aVsorry , but that's just a dumb statement . you're comparing some CUSTOM_NUMBER rd party promo to apple's own functionality . for example , if this were a reference to a carrier removing google navigation and forcing customers to use telenav , you'd have a valid argument . but not in this case . custom_break custom_break if you want to make odd comparisons let's talk about how the iphone fucked everyone on sprint who enjoyed CUSTOM_NUMBER yr contracts , longer return periods and other perks that got taken away all because of the iphone . see , that's why i like android , because they don't make the carrier take one up the ass and screw their users out of perks they've enjoyed for years . +p7271 +aVsgboy , get back to your cot , i hear your parents calling for you . +p7272 +aVCUSTOM_AT um , good question . please email CUSTOM_AT +p7273 +aVlooks like you have a stormer problem ! .. the same team that beat the bulls twice .. habs and jean were great .. morne , spies and hougaard was below par .. crusty the clown dont belong in this company . +p7274 +aVjoey barton only has a twitter account because he wants people to massage his ego . +p7275 +aVyou are a pig . +p7276 +aVgot your back , here , r_dale . good post . typical of the gun nuts in utah . +p7277 +aVhis wrist might be bothering him . he's got a chip floating around in there . +p7278 +aVbased on the architecture , stucco building and foliage .. oh , and the dancing gay black kid , i'm betting this is from florida . +p7279 +aVfly away gay_pussy .. fly away . +p7280 +aVwe're not the losers but you and this country are . +p7281 +aVyou have a beautiful body . what's wrong with a man looking at a woman with a beautiful body especially nice hips ? if i'm stalker for that then every dude i know is a stalker as well . +p7282 +aVlooks like a case of " cat on keyboard disease " . +p7283 +aVgo get them egyptians . kill them all ! we will be right behind you . hahahahehehe custom_break custom_break ( genesis CUSTOM_NUMBER : CUSTOM_NUMBER ) he will be a wild ass [ uncivilized ] of a man ( yismael and his descendants ) . his hand [ will be ] against everyone ( meaning a robber per rashi ) and everyone's hand will be against him ( meaning everyone will hate him and will attack him per rashi ); and in the presence of all his brothers he will dwell ( meaning : his descendants will be many per rashi ) . +p7284 +aVcommenter ? your very childish . grow up and be a man . stupid remarks like yours just proves that you are a little boy and have yet to understand what it means to be an adult . +p7285 +aVawesome font and color on your card :) +p7286 +aVnot tonight tv CUSTOM_NUMBER .. chill with that . custom_break the brewer and dodger fans are just enjoying the game custom_break wherever they are hoping that their team wins . custom_break simple ain't it ? +p7287 +aVprovide proof faggot . +p7288 +aVyour mother is the clubhouse whore .. +p7289 +aVyour mother's . +p7290 +aVthat's because you posted all lies and bullshyt !! +p7291 +aVhis poor mom .. she seemed pretty cool . how the fuck did a person so nice end up raising such a cunt ? +p7292 +aVtake your " testament " and shove it . +p7293 +aVsuck ya dads dick ya stupid slut , he's waiting CUSTOM_NUMBER u . u probably ugly as fuck , damn i know it sucks to be you , trollin on a joke i made . fall back b CUSTOM_NUMBER ihurt yo feelins ho +p7294 +aVyes , god gave us free will . no matter what the sin is , sin is a choice . people weren't born gay . somewhere in their environment or upbringing , they chose that lifestyle . there are people who enter it and leave it every day . +p7295 +aVi don't go to the woods this time of year , to hot , too custom_break many chiggers . i stick to shore until it cools off ! +p7296 +aVgloves on the baby please +p7297 +aVwhy don't you think he'll be worth it ? +p7298 +aVthere's far worse things happening in africa , and where's your humanity towards africa . more than half of mali has been taken over by fsa best mates al quaida , mauritania still has a slavery system going on , chad , niger , darfur , south sudan are on the brink of famine , somalia once again fsa best mates al quaida ruining the country , north eastern congo there's deaths and mass rapes , don't you reckon some of the issues in africa are far worse than syrian regime battling terrorists . +p7299 +aVyou are CUSTOM_NUMBER % spot on in regards to that little brat . +p7300 +aVseems like you are on tik you moron ! are all people of your colour rapists of mothers and children ? i don't think so . stop making idiot comments ! +p7301 +aVyou certainly come off as an arrogant s.o.b. your right ends when the safety of others begins . i don't give a rat's arse that you hunt , but keep your bullets along with your second hand smoke away from me . sheffield village is a sprawling area and you are living in the past . you , sir , may have to find a new piece of hunting paradise to fulfill your desires . as far as history goes , tyhe indians hunted all over . places change . get with it or get out ! +p7302 +aVthe existence of the interstate highway system hardly outweighs the vast amount of other problems with the federal government . custom_break custom_break i hear a lot of " you can thank bush and cheney " from you but what has your precious obama done to reverse any of that ? oh , do i hear the letters ' ndaa ' ? i think i do . obama is as much a globalist stooge as those two are . custom_break custom_break the borders are indeed open and if the federal government could accomplish it politically ( and they will not stop trying ) they indeed would not be illegal aliens . custom_break custom_break you think you are being funny about the violent savages comment but what good will come of importing masses of somalians , mexicans , muslims , and haitians do us ? these people as a general rule are violent and backwards . i see no need for the existence of ms - CUSTOM_NUMBER in our nation . custom_break custom_break you seem to think that i support bush , cheney , or romney . nothing could be further from the truth . these " people " are all globalist zionist scum like your much favored obama . why is it that it is so hard to see what is right in front of your face ? obama is a sellout to the transnational elites just like bush is . custom_break custom_break their intention is to destroy us and you seem to have your head in the sand . +p7303 +aVthats what i thought about herge , but turned out he was just opinionated as fuck . custom_break custom_break custom_break turn the other cheek . +p7304 +aVwhatisbannedisneversuppressed , custom_break custom_break you're just a sorry ass commie aren't you ? too lazy to get out of bed to better yourself . custom_break custom_break much easier to sit back and let others do the hard graft and hand over money to you to live your commie dream . custom_break custom_break never mind thinking big , try working big . that's what benefits all . custom_break custom_break your type make me sick to my core . +p7305 +aVhow stupid are you ? do you realize that many women take birth control pills for many reasons besides preventing pregnancy ? educate yourself , fool . +p7306 +aVfucking idiots +p7307 +aVdurant needs to do something fine a way to get him free . +p7308 +aVlaird ans avila ( and santos ) may be among the tigers ' most marketable players - at least as far as trading for a starting pitcher or a starting CUSTOM_NUMBER b is concerned . +p7309 +aVyou're a fighter not a lover , and your family needs to die too . +p7310 +aVCUSTOM_AT but tna is full of ' retired wrestlers ' ? so shouldn't that be ' has been wrestling ' too ? +p7311 +aVwhere do you find time to record an album when you're on trial for murder ? +p7312 +aV\u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cit puts politics between women and their healthcare . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d what do they think they are doing ? both sides are putting politics between americans and their liberty . custom_break as an aside , the only reson the left wants people to have all the abortions they want is because they want to control who can and can \u005c\u005c ' t have children . they want to create the " master race " themselves . women \u005c\u005c ' s rights ? sure , like they actually care . if they did , we \u005c\u005c ' d have occupied the middle east a long time ago in the name of saving women from rape , mutilation , and murder ! +p7313 +aVi love a coach that can talk naughty . +p7314 +aVok . you are a complete retard . re-read what you just said about a " bullpen " . you know nothing about baseball ! +p7315 +aVtampa is loosing also . they may give us yet another break ! +p7316 +aVto be honest , dont you think that some fool made this fake twittwer account up ? +p7317 +aVthere is no way roger maywheather said these things . his account was definetely hacked into . no man of his position will say these kind of things . i mean , he wouldn't talk about another man's wife in that way . +p7318 +aVis this a defensive stand for theo or an offensive jab at paolo ? they really aren't the same thing . if you've been reading him that long and dislike him that much then ignore his comments . the irony is , many of paolo's views and opinions bring the good cub fan out of many of us . ( rahrah ) the guy was a military drill instructor devoted to creating fearless fighters . he just does it on a different scale now creating fearless fans out of fair weather fans . just sayin man . +p7319 +aVno , they choose to be gay for the same reason jerry sandusky chooses to f boys in the rear .. it's deviance , and i agree , once they are caught up in it , it's nearly impossible to stop . but it is a choice . +p7320 +aVlast summer is CUSTOM_NUMBER ne CUSTOM_NUMBER vs . suju right ?? and now this summer again CUSTOM_NUMBER ne CUSTOM_NUMBER vs . suju fuck they forgot b CUSTOM_NUMBER st ahahahahah +p7321 +aVhey , when you are in public or on the internet , you cover your private areas with clothing . we don't want to see porn , and that includes your butt . +p7322 +aVit gets more and more like butlins as the weeks go on .. +p7323 +aVstfu u dirty ugly wet musty hair havin rican ! dirty ass wetback ! i swear i cant stand u dirty ugly pale face wannabe white spics postin racist bs on wshh when u the least disliked group of ppl in america !! ima spit in the next lil wetback kids face when i see em because of u +p7324 +aVthat is a moronic response . they should not repeat the crimes they commited ? please don t post your trash here . +p7325 +aVplease use your search engine before you look any dumber . or just go straight to the police information so far . . . +p7326 +aVby " your kind " i mean angry little yankee know-it - alls , who are complete white trash in the states they came from and move here and think they know everything , because " southerners are slow and backwards " . you were trash up there and you are trash down here . go home and take all of your friends with you . you are ruining our culture and quality of life . although , you sir wouldn't understand anything about quality of life , you are a pathetic internet troll who's entire life is sadly based around your pathetic rants on message boards . go home dude . +p7327 +aVthe fucking website said it worked for a CUSTOM_NUMBER devices only ; now i'm in custom_break CUSTOM_NUMBER . CUSTOM_NUMBER . CUSTOM_NUMBER , don't have CUSTOM_NUMBER . CUSTOM_NUMBER shsh blobs ( just learned about those ) , ifaith custom_break doesn't recognize my ios , and i have two different redsn CUSTOM_NUMBER w versions that custom_break now don't mean shit . it's great that you guys work so hard , but custom_break please .. check your posts ! +p7328 +aVha ha wait until you have your own kids :) +p7329 +aVnow you went and .. fucked .. up this whole page . +p7330 +aVthere are many great jews .. i have no issue with the faith +p7331 +aVyou know , it is so easy to talk shit about this , you know nothing about what he was going thorough in his life , so fuck off ! +p7332 +aVCUSTOM_AT custom_break custom_break you look like brian scalabrine's brother .. thoughts ? +p7333 +aVproviding oil companies with $ CUSTOM_NUMBER billion to offset their costs for exploration is socialism , is it not ? that little gift did not come from obama , it came from bush . +p7334 +aVand you need to know classified information because .. when it passes into history , there is little anyone can do about it . and in the meantime , you really don't need that information . i'm guessing you just want to feel smug about getting it . +p7335 +aVcrap , your chick as got a run . +p7336 +aVyeah but we love a good smack down +p7337 +aVclintons shirt should read way to go barry i screwed a intern you screwed the whole country +p7338 +aVi think i'm in love with you .. +p7339 +aVthey fucking slayed !! custom_break custom_break they just slayed everyone and my life with that sexy , flawless , epic performance . +p7340 +aVi love serendipity CUSTOM_NUMBER ' s frrozen haute chocolate . +p7341 +aVyou shit me not . what's that all about ? +p7342 +aVit's the title that matters in this case :) +p7343 +aVyes , they are , and ireland is the richest . +p7344 +aVdear lord , i believe you are guiding me to find my destiny . there may be lost , there may be obstacles , there may be faliures , there may be disappointments . yet , i never give up my fight for a wiser way of life . may you be always with us , and guide us away from getting lost . +p7345 +aVobama is working as fast as he can . +p7346 +aVeasy to tell when it's the off-season . custom_break custom_break ubbs should put a crossword puzzle on the blog . +p7347 +aVyou are an idiot .. why do you even bother .. ?? . wasted words . +p7348 +aVand rape and incest ? that's self control too ? +p7349 +aVmy big homo lil wayne fucks this nigga in his ass when it comes to music +p7350 +aVirony ? this has nothing to do with ! you just can't take off your rosecolored glasses long enough to see that there is a real problem a dodger stadium ! they need to tear that dump down and relocate +p7351 +aVis that why your head smells like obamas-ass ? +p7352 +aVexactly . mccain is not sexist . he is also responsible for that complete fucking imbecile joe the plumber . +p7353 +aVthat's the difference . they can't just make a run and think they can win against the spur's . they have to be able to make stops when it counts . young team , bright future . +p7354 +aVlol !! do you even realize you are making a fool of yourself ? i bet next you will post something like " i forwarded your post to the fbi " or maybe " i told my mommy " speaking of growing up get busy . +p7355 +aVthis is getting very silly .. headline my race hell .. a tad dramatic .. +p7356 +aVaww you go back checking your posts for likes . how sad . +p7357 +aVyou stupid f uu c k . i hope you die the same way she did . +p7358 +aVbut , you couldn't show any proof of that , even if it was true . custom_break go away . you are an embarassment to your klan brothers , your family , your neighbors , your teachers and america as a whole . custom_break find something to say that is not directly quoting nazi or stalinist propaganda . custom_break the most pathetic poster on the web . you are below oberbite , a soros trool or the ignorant little heap that wwrote " waiting to exhale " . +p7359 +aVmany ppl report seeing an officer pounding away at his chest while screaming breathe you mofo . +p7360 +aViv installed but siri just says unable to help please try later ? +p7361 +aVyes , they are-hope you are feeling better . time heals everything-no matter how many folks say this to you and no matter how much you think your life is over .. it's not and it will . hugs +p7362 +aVfor those of you who do not know this , check out the dep . of ag . the food stamp program comes out of the dep . of ag . budget . for those of us who are farmers , we would like that explained to all and we would also like the us government to get out of our business with their " cheap food policy " . the regulations and demands made on farmers by the usda , epa , irs , nsc , etc . would blow your minds . and don \u005c\u005c ' t forget peta ! enjoy every bite of food that you take , unless of course it is not grown in this country - farmers in other parts of the world do not have to abide by the same rules we do . i have no problem cutting the budget - any business that wants to stay in operation has to be lean to prosper . +p7363 +aVCUSTOM_AT CUSTOM_AT il have to pack my things and go , dont my me i have been working on my ray charles chops +p7364 +aVbeing a " natural born citizen " is not based on the nationality of your parents . +p7365 +aVi've come to discover that actually know the name of an official can mean nothing good . +p7366 +aVmichael jordan won his first title after seven years . lebron is in his ninth season . +p7367 +aVall these news are planted and for getting some extra media attention - that's all .. bloody fucker .. ranbir fucker kapoor . +p7368 +aVare you fucking dumb ? " making it clear that the group was delaying their comeback due to album production and not to avoid competition with other groups . " you should be thankful that CUSTOM_NUMBER ne CUSTOM_NUMBER didn't cameback this june , if CUSTOM_NUMBER ne CUSTOM_NUMBER did , those awards will be owned by CUSTOM_NUMBER ne CUSTOM_NUMBER . fuckin insicured fx fan . +p7369 +aVwtff is this shit ?? he shot the fuck out for this shit .. diz won and i only seen this clip of the battle . smh .. +p7370 +aVobama's econimic plan bs !! +p7371 +aVyou are an idiot !! +p7372 +aVhow is it reasonable , anon , when harper has done none of the things you attribute to fascism ? all-powerful leader ? has to stand for re-election in three years . strict social order ? you're joking , right ? glorification of militarism ? the troops have been recalled and their budget trimmed . opposition parties ? hale and hearty and full of piss and vinegar . elimination of organized labour ? no , they did that to themselves by pricing themselves out of the market . advancement of business over individuals ? elaborate . ethno-centrism ? try qu \u005c xe CUSTOM_NUMBER bec , thomas mulcair's home ground . disparagement of the constitution ? that's the scc's specialty . belittling the courts ? who doesn't , these days , and for good reason . dissolution of mp power ? do you see the house of commons burning ( along with those crosses in prince george ) ? spying on ordinary citizens ? child pornographers are not ordinary citizens . custom_break custom_break judging by the raving of harper's enemies on these blogs , if he wins another majority , there's going to be a worldwide tinfoil shortage . +p7373 +aVwell , i was born and raised in africa and proud of it ! wth do you think africans are lesser than you or something ?? take your ignorant ass somewhere else cuz i'm not the one . +p7374 +aVsee , i was actually reading your comment , until i got to the comment , " but i completely backed herman cain before he backed out because of the scandal . " then i realized , you know nothing about politics . do some research . then come back and make an educated comment . +p7375 +aVso you think cigar willie clinton will help obongo win ? balack obongo custom_break has learned his lesson too late . you cant trust a fuckingliberal . just custom_break like you cant trust a liberal troll commenter . +p7376 +aVi never liked interleague play but they didn't ask me , lol . +p7377 +aVand odumbo is an old lying , inept , loser , communist , ni CUSTOM_NUMBER er , what's your point ? +p7378 +aVmom looks like an ol ' ho from way back herself . screw her and her pervert a $$ son . +p7379 +aVwhen you could not reveal the names given of foreign a / c holders , you are nothing but an another piece of crap like pm , chidu , deshmukh , salman etc ; you all lost the confidence of public because of lies after lies . history will never forgive you guys . +p7380 +aVwhen that nigga tighten his belt i knew he couldnt fucked up .. he look like wanda +p7381 +aVviva mi odpisa \u005c u CUSTOM_NUMBER a , \u005c u CUSTOM_NUMBER ce klip b \u005c u CUSTOM_NUMBER dzie emitowany jak tylko otrzymaj \u005c u CUSTOM_NUMBER emisyjny teledysk . +p7382 +aVthat's what the " full comment " banner at the top is for .. but you are right , the front page links to opinion pieces without indicating them as such . +p7383 +aVare you rooting for nole now ? +p7384 +aVCUSTOM_AT CUSTOM_URL " CUSTOM_NUMBER bama CUSTOM_URL CUSTOM_URL in CUSTOM_URL CUSTOM_NUMBER o CUSTOM_NUMBER " CUSTOM_URL CUSTOM_URL " inherit CUSTOM_URL CUSTOM_URL the CUSTOM_URL CUSTOM_URL wind " CUSTOM_URL CUSTOM_URL " CUSTOM_NUMBER bama CUSTOM_URL CUSTOM_URL in CUSTOM_URL CUSTOM_NUMBER o CUSTOM_NUMBER " CUSTOM_URL CUSTOM_URL CUSTOM_URL .. they d CUSTOM_NUMBER abs CUSTOM_NUMBER lutely n CUSTOM_NUMBER thing CUSTOM_URL CUSTOM_URL delusi CUSTOM_NUMBER nal CUSTOM_URL CUSTOM_URL CUSTOM_URL angry CUSTOM_URL CUSTOM_URL selfish CUSTOM_URL CUSTOM_URL CUSTOM_URL lying CUSTOM_URL CUSTOM_URL CUSTOM_URL stingy CUSTOM_URL CUSTOM_URL c CUSTOM_NUMBER rrupt CUSTOM_URL CUSTOM_URL greedy CUSTOM_URL CUSTOM_URL CUSTOM_URL crooked CUSTOM_URL CUSTOM_URL CUSTOM_URL c CUSTOM_NUMBER mmunist CUSTOM_URL CUSTOM_URL CUSTOM_URL republicans \u005c ufeff \u005c ufeffhttp :// bit . ly / mrzlgv CUSTOM_URL CUSTOM_URL all have committed \u005c ufeff p CUSTOM_NUMBER litical suicide \u005c ufeff CUSTOM_NUMBER CUSTOM_NUMBER o CUSTOM_NUMBER CUSTOM_URL .. the unre-electable bigtime \u005c ufeff lazy whiningass crybaby pathetic CUSTOM_URL loser CUSTOM_URL demon j CUSTOM_NUMBER hnhttp :// bit . ly / mrzlgv " the CUSTOM_URL pacifier sucka " b CUSTOM_NUMBER ehner CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next .. the unm CUSTOM_NUMBER tivated unre-electable \u005c ufeff well kn CUSTOM_NUMBER wn super dastardly weakminded CUSTOM_URL s CUSTOM_NUMBER rryass quitter & loser CUSTOM_URL demon eric CUSTOM_URL \u005c ufeff " the cowardly CUSTOM_URL CUSTOM_URL weasel " cant CUSTOM_NUMBER r CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next CUSTOM_URL .. the CUSTOM_NUMBER ld \u005c ufeffhttp :// t . co / CUSTOM_NUMBER xgn CUSTOM_NUMBER fpb dumbass & loser CUSTOM_URL demon its definitely \u005c ufeff time CUSTOM_NUMBER retire CUSTOM_URL mitch CUSTOM_URL " the bigg CUSTOM_URL time evil snitch " CUSTOM_URL mcc CUSTOM_NUMBER nnell CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next " inherit CUSTOM_URL the CUSTOM_URL wind " \u005c ufeff you are \u005c ufeff most definitely \u005c ufeff g CUSTOM_NUMBER ing CUSTOM_URL CUSTOM_NUMBER b CUSTOM_NUMBER w d CUSTOM_NUMBER wn CUSTOM_URL .. believe .. CUSTOM_URL y CUSTOM_NUMBER ur CUSTOM_NUMBER bstructionism & CUSTOM_URL d CUSTOM_NUMBER abs CUSTOM_NUMBER lutely n CUSTOM_NUMBER thing CUSTOM_URL final days ar \u005c ufeffe most definitely numbered CUSTOM_URL it is permanently engraved in st CUSTOM_NUMBER ne CUSTOM_URL damn rite CUSTOM_URL president obama CUSTOM_URL a man CUSTOM_NUMBER f all the pe CUSTOM_NUMBER ple in CUSTOM_NUMBER o CUSTOM_NUMBER CUSTOM_URL .. forward .. give moe powwa CUSTOM_NUMBER da peeps +p7385 +aVthe great problem with trying to make yourself stupider than you are is that you often succeed . " -- from the magician's nephew ( if memory serves .. ) +p7386 +aVi guess you are those who have a fetish for huge silicon boobs . +p7387 +aVpretty much the same thing happens to most of the animals in factory farms . this keychain business is horrible , but remember so are battery chicken farms , dairy farms and so on . know how food and clothes and everything you use is produced . often there are animals that suffer to produce those things . utilize the internet , know the truths ! it will change your diet and the way you live :-) +p7388 +aVyou would know a thing or two about having trains ran on yourself sending messages from theo lacy .. +p7389 +aVi'm assuming he has a mustache as well as the headphones and ipod case ? it probably would have been more relevent to mention that . +p7390 +aVhe was almost hit in the head by the previous pitch . he was a little out of place after that pitch . imagine getting a curveball towards the head ( missing you ) and then on the next pitch is a CUSTOM_NUMBER mph fastball down the middle . no way your reaction will be to swing . +p7391 +aVtry speaking in correct english as well . what dummies are on here today . +p7392 +aVnothing has been proven at all . just like all those birther lawsuits . there is no proof . just because a bunch of gullible people believe it doesn't make it true . +p7393 +aVyou clearly don't know him . +p7394 +aVwho the hell do you think you are saying anything ! sounds like you are the uneducated ignorant pieces of shit to me !! +p7395 +aVanswer : yes . no . yes . are you retarded ? meh . nope . +p7396 +aVwhat kills me is if you disagree with me that you are a racist . +p7397 +aVyou don't wear your brain bucket .. you only hurt you and your family . you become impaired you have the ability to hurt everyone . +p7398 +aVhe's not an isolationist . he just does not want a foreign policy that ends in america stomping all over the world like babylonians . custom_break custom_break only ron paul will defend israel when they blow up iran's nuclear sites custom_break just like only ron paul defended israel when they blew up iraq's nuclear sites . custom_break custom_break ron paul is hardly an isolationist , he just recognizes a lot of tough truths about america's foreign policy that the self-righteous warmongers just can't seem to swallow . +p7399 +aVoh pops you must really really be enamoured with bill you naughty boy you +p7400 +aVwe could start a media blitz like they did with the drug campaign . you know , the one . . . " this is your brain , this is . . . " . we could show pictures of pelosi and say . . . this is your bomb vest . . . here \u005c\u005c ' s your reward when you blow yourself up . +p7401 +aVnice use of vulgarity attached to a teen ; you have real internet muscles . nice racist screen name too , if a male you fit the bill as a female nick-name . disgusting ; no way that you are a patriotic conservative . +p7402 +aVchild fails to pull plug out of the wall as its glued in ! custom_break child fails to push chair to counter as there is an adult in the room ! ( no children in the kitchen without an adult present and a locked gate ) custom_break see above for the oven custom_break middle child runs off , can't get into the kitchen , can't get to any cupboards with bleach in , can't unplug anything , only has access to family rooms . custom_break there are also no hanging leads , blind pulls etc in any of the family rooms custom_break custom_break that way i don't have to beat my children ( and yes i do count a smack ) custom_break custom_break using your logic i should come and beat you until you learn how to take simple safety precautions and remember that life is about managing risk not removing it as thats impossible . +p7403 +aVpeople think the yankees are scary , but nothing's as scary as the iraq lobster . custom_break custom_break CUSTOM_URL com / watch ? v = aidr CUSTOM_NUMBER zvzso CUSTOM_NUMBER +p7404 +aVyeah well done wenger , now van persie will leave for sure , the ox will want to go and no one will want to join our club because your such a muppett ! the ox was running like a mad man we didnt see any sign of an injury ? your talking out of your ars again ! custom_break custom_break pack your bags your sacked !! +p7405 +aVCUSTOM_AT CUSTOM_URL custom_break custom_break +p7406 +aVhow was that not a strike you buffoon ? +p7407 +aVmoral of the story : custom_break custom_break when defending your family , property , and self against a prowler , shoot to kill so they can't come back and sue you . +p7408 +aVallan evans .. some who actually pay to see you .. custom_break custom_break more fool them if they disagree with his tax status . +p7409 +aVroflmao ! surely you jest ! CUSTOM_NUMBER == d custom_break custom_break okay i am out of here .. +p7410 +aVwhere are your two pussy friends , lez and dogballs ? +p7411 +aVnobodyknows , custom_break custom_break from your mouth to god's ear . custom_break custom_break yours , satx +p7412 +aVshut up you dumba < m > ss b < m > itch you are dirty brown water trash +p7413 +aVcourtt CUSTOM_NUMBER i'm a cat no shit your dog doesn't like me +p7414 +aVme ? .. i'm innocent .. ask sthrnchckxs . +p7415 +aVoch vad \u005c xe CUSTOM_NUMBER r den reella skillnaden mot p \u005c xf CUSTOM_NUMBER beln d \u005c xe CUSTOM_NUMBER r mer precist ? +p7416 +aVhe's never looked into mckenna's spending spree . such as the shiny new storefront offices the ag rents at exorbitant rates from buddy putnam in tacoma . this has nothing to do with republican / democrat . it's all about buddies having each other's back and making well for themselves - the definition of corruption and collusion . +p7417 +aVwell he was the greatest yankees manager ever +p7418 +aVkelly made idol . they owe her as much as she owes them . she is an international superstar because of her voice and hard work not because of idol . kelly would have been famous with or without idol because she lives for music and has a gift from god . +p7419 +aVwell aren't you phucking special . it's easy to have all those things when your still living in your mother's basement . loser +p7420 +aVis it april CUSTOM_NUMBER st ?? +p7421 +aVf uck off loser colon cowboy . go back to your boyfriend's filthy , dirty , hair , bacteria infested ass hole and hope that when you pull your c ock out it's not too brown . or does someone else's s hit on your cock turn you on . you and your type are sick , disgusting perverts . +p7422 +aVi like your style +p7423 +aVand it's idiots like you wanting soviet bloc laws as long as they don't affect you . your both retarded , and you need to go back and read the bill of rights and the constitution again . +p7424 +aVclearly you're a fucktard . not saying your right ( or wrong ) , just saying who the fuck just randomly compares a rap group or any other mc on a post about a specific video and song about the dude's mama . wtf does sh or any other mc or hammerdance have to do with this song ? +p7425 +aVso you don't actually care about making women feel welcome as part of your professional community , which is generally impossible for a woman living in a sexist society to do ( this one ) when attention is being drawn to how her colleagues see her as a sexual object . why don't you just admit it and be honest ? i would feel really refreshed if someone like you said , for once , " we don't want women in our field . " it would look stupid and ridiculous -- since why would you throw away half the available talent just because you want to sexualize everything ? -- but then we could actually discuss the real point instead of derailing , dismissive , prevaricating , and dissembling discourse of which this one is an excellent example . +p7426 +aVyou're certainly what lenin called a " useful idiot " . if you like islam so much , go where it is practiced " just the way you like it " . get to beat your wife and will , kill your kids for whatever reason turns you on , lie to anyone about anything just because " it furthers the cause of islam " and others around you actually believe your lies . +p7427 +aVit's not being a liberal that makes you like an idiot , it's when you try to defend this pos potus that makes you look like an idiot ! +p7428 +aVwhy do you white people keep coming here trying to act like they are one of us . go burn in the sun . i hope they kick all of you pale devils out of africa . you fools are going to bring pain on to yourselves . you watch we watch . in a world of the lost the battle of open minds is becoming a reality . +p7429 +aVCUSTOM_AT man game CUSTOM_AT CUSTOM_AT ones he has " shit " in his name . they should have known . +p7430 +aVgood evening sydneyjane . i hope you have been enjoying yours too . +p7431 +aVif your iq was equal to the room temperature , you'd be living in a refrigerator +p7432 +aVall that plastic was a waste of time .. u CUSTOM_NUMBER got CUSTOM_NUMBER have a brain transplant .. +p7433 +aVbattier sucks again !! CUSTOM_NUMBER +p7434 +aVis costa fortune anywhere near the costa brava because the spanish are gonna pay bigtime for their self indulgence . +p7435 +aVbeen there , done that , got the shirt . custom_break custom_break posting here is part of the counseling for my parole . custom_break custom_break thanks for caring though . +p7436 +aVceo top is not happy of what you are doing youngbae , your nipple distracts me lol +p7437 +aVyou are a loser . +p7438 +aVCUSTOM_AT yeah , they came out with an album last week . custom_break custom_break first one in CUSTOM_NUMBER years . custom_break custom_break it's pretty fucking awesome . solid rock album . +p7439 +aVso , you don \u005c\u005c ' t want to bring people out of poverty , mitt ? what exactly is this " safety net " ? welfare programs ? i thought you and your ilk wanted to cut those . custom_break custom_break you \u005c\u005c ' re not concerned about some honest americans who , sadly , sometimes have to eat stone cold cans of chef boyardee ravioli to live since it is " economical " ? custom_break custom_break you \u005c\u005c ' re not concerned about those who want a job ? or those who want a better standard of living ? custom_break custom_break you were born into a < i > millionaire < / i > aristocracy . you won god \u005c\u005c ' s " genetic lottery " powerball before you were even born . you should consider yourself very lucky and try and help the less fortunate with your wealth rather than hoard it in a little tropical island . custom_break custom_break you , sir , are an complete asshole . what a selfish , callous , and bigoted remark to make . custom_break custom_break nobody lives in poverty because they want to , mitt . +p7440 +aVbut you're not at the game ? +p7441 +aVgo-away go-away go-away you dirty slut +p7442 +aVhow do you accidentally molest someone ? custom_break are you retarded , or did it happen to you ? +p7443 +aVypu do realize you just called your mom a whore .. +p7444 +aVquite sure your mama did too . your dad should have went fishing the day he knocked up your mom . can't stand you and i don't even know you . kids have died and all you have are these ridiculous comments . go fix yourself a nice plate of neckbones and rice . all i want is one little bone to get caught in that cesspool smelling throat of yours and kill you over . you know what ? you probably banged a black chick and she told you that you didn't measure up and laughed you right out of the bed . is that your problem ? +p7445 +aVlaptop retina displays are not for cheap people +p7446 +aVrally against nazis , george soros while you're at it joyce . +p7447 +aVwhhyy ?? custom_break custom_break also - yes david was a secret arsehole . +p7448 +aVhey there less , good to see you ! +p7449 +aV< div class = " forum-item forum-topic " > < div class = " forum-item - title " > whats with those american women ? < / div > < div class = " forum-item - description " > hope lepchenko wins .. that will make CUSTOM_NUMBER for CUSTOM_NUMBER , i think ! < / div > < / div > +p7450 +aVyou are a hater .. plian and simple .. +p7451 +aVdisappointed by the casting of the role of maleficent ! i had hoped that it would go to someone better other than this homewrecker ! custom_break custom_break i certainly don't like it when the bad guy is deeper than we thought ! custom_break custom_break just because you show a story as to how a person became evil ( such as in this case maleficent or wicked ) doesn't make them any less evil ! idiots ! +p7452 +aVwhat do you care ? you & your ' ilk ' lie every time your lips move . +p7453 +aVread my post - i said " almost all money " . of course some tomatoes etc . might come from mexico or someplace else but the major mark up comes at the supermarkets not to mention the suppliers who buy that foreign produce dirt cheap . just consider that all those on foreign bases go out and blow their paychecks in other countries too . even the raw materials and energy used for our military come mainly from abroad . custom_break facts are facts and defense spending creates the least jobs and stimulus per $ spent for the simple reason that more funds go abroad than any other program . +p7454 +aVi will go back to my lenses now and try to spice it up a little . +p7455 +aVlol i diot we used your money lol what a waist of dna you are . +p7456 +aVeww i like bb but saying the rest of kpop isn't real music just makes you sound dumb as fuck . go back to your wonderfully lame articles and leave f ( x ) alone . also thanks for increasing our views count muahahaha . +p7457 +aVthat second year of fifth grad was a big fat waste of time . you are one sad , ignorant , liberal troll . +p7458 +aVall that hatred inside of you must have eaten away what little capacity for clear thought you may have had . you lack the basic intelligence and knowledge to have real discussions or debates , so you come here insulting people into having arguments . your insults are childish . you're proving all the negatives about your party every time you type . how about posting your picture .. what are you ashamed of ? you wouldn't have the balls to push all ' teh stupid ' under your real name . +p7459 +aVthere is a lot of assad slave ( shabihah ) here fuuck them +p7460 +aVshe can still come back .. brianti is not that good , vika is just terrible today !! +p7461 +aVnot cured yet .. i just uploaded a picture about six hours ago and posted a video .. i'm just a little confused as you are posting on a page full of my progress for the past CUSTOM_NUMBER weeks .. but to answer your question , no i am not cured as of today . +p7462 +aVyerpathetic CUSTOM_NUMBER minutes ago in reply to design CUSTOM_NUMBER u CUSTOM_NUMBER custom_break custom_break custom_break lol !! custom_break custom_break you are an idiot . custom_break custom_break but don't worry . custom_break custom_break america allows you to be an idiot !! custom_break custom_break custom_break == custom_break custom_break you canadians never answer this question why ? +p7463 +aVholy fuck , not on no cocky shit but come on son you know i look good +p7464 +aVchavez is CUSTOM_NUMBER for his last CUSTOM_NUMBER , dumbass . if you think that's " hitting better as of late , " then i totally expect it , because you're too stupid to bring anything to the table . just go out and play in traffic , will ya ? you're a disgrace to o's fans everywhere . +p7465 +aVyou , sir ( juan williams ) , are doing " irreparable harm to the court's reputation , " by calling into question its integrity before a decision has been made . moreover , it is shameful that the two obama justices are not standing up against criticism's like yours . shameful ? political arguments and congressional vote counts should almost entirely no bearing on the court's decision-making . i would expect more from you , juan . +p7466 +aVdeuteronomy CUSTOM_NUMBER : CUSTOM_NUMBER - CUSTOM_NUMBER : " if a man has a stubborn and rebellious son who does not obey his father and mother and will not listen to them when they discipline him , CUSTOM_NUMBER his father and mother shall take hold of him and bring him to the elders at the gate of his town . CUSTOM_NUMBER they shall say to the elders , " this son of ours is stubborn and rebellious . he will not obey us . he is a profligate and a drunkard . " CUSTOM_NUMBER then all the men of his town shall stone him to death . " custom_break custom_break matthew CUSTOM_NUMBER : CUSTOM_NUMBER : custom_break " i tell you the truth , until heaven and earth disappear , not the smallest letter , not the least stroke of a pen , will by any means disappear from the law until everything is accomplished . " custom_break custom_break you believers are dangerous . +p7467 +aVjeffreed custom_break what makes you think that undocumented humans don't pay taxes ? +p7468 +aVoh i think i do . let's put it this way , it's not like watching united . custom_break custom_break only muppets like yourself can see that's good football . listen good on them for qualifying , but the football is dross and a CUSTOM_NUMBER odd idiots posting here isn't going to change that . custom_break custom_break so think again about who the thickos are and add your name to the list . +p7469 +aVwell , i don \u005c\u005c ' t like to use the word , unless it is special circumstances . but i was testing the limits of the free speech here , because your moderators claim that they don \u005c\u005c ' t censor anything . i actually find it sexist to allow the term " faggot " but not c * nt . +p7470 +aVdanco , don't be upset about not knowing about wawa . they are regional according to custom_break custom_break one of the posts , found mainly in the east . ( pa and nj ) +p7471 +aVmore grammatical errors , vicky < CUSTOM_NUMBER . you're on a roll today . you are so stupid .. +p7472 +aVgood luck , hope you get to go ! +p7473 +aVthis bring on de wrong ting for fuckin pbs +p7474 +aVvery well said and i agree totally . +p7475 +aVthe people trying to say legalize all drugs are who the news agencies use as example to why we shouldn't legalize pot . they hurt the cause more than they know . +p7476 +aVa cardiff disciplinary panel heard ms scarlett , who was pictured wearing a lantern-shaped hat , " presented herself as a very different person " outside school " . custom_break custom_break custom_break custom_break lol . i should hope so , she is at a primary school after all . +p7477 +aVmubarh ho subh pakistanio ko +p7478 +aVi shot the computer with a pistol , for being a fucking cocksucker . last time it fucks with me in the morning . +p7479 +aVand you are the winner of this eli's discussion ! you got it right on the money tokyo ! +p7480 +aVpuberty ? ha ! just because you behaved like a man only when you were going through your puberty and been a gullible nancy your entire life doesnt mean everyone are like you . pretty sure you got lady parts and vomit when you see blood or gore .. continue advertising your transexuality on world wide web i have already owned your ass . +p7481 +aViain duncan smith is clearly a dangerous sociopath and should be vanquished from politics asap . +p7482 +aVthe muzzies don't like it when you fight back . friggin ' cry babies . go back to what ever hell hole you crawled out of , you homicidal morons . +p7483 +aV_ beautifulflaws okay i'm putting my throw back shirt & amp ; cow girl boots on seriously i'm coming . +p7484 +aVthat can only mean one thing - the mods are on a diet ! :) +p7485 +aVwho cares , both groups are equally nuts . +p7486 +aVim playing college ball what you , CUSTOM_NUMBER sitting on worldstar frustrated with yo life lame im laugh fuck niggas like you everyday CUSTOM_NUMBER +p7487 +aVthe waste of time here is you and your comment +p7488 +aVhot_damn .. it's _ obozo_bitch _ , watch_them _ teeth_fold _ back_and _ them_legs _ spread_when _ they_start _ playing_hell _ to_the _ chief .. +p7489 +aVfuck these two mellow teenage girls with beards .. give us plinkett review . +p7490 +aVwell i think christ is lovely . he is very entertaining and has a very loyal army of listeners . i love to hear him and his team in the mornings . i hope he keeps going for a long time to come . i also love his tv show chris moyles quiz night , which is very funny . each to his own and i respect that , everyone likes different people and i like him . he is certainly not fat and definately not ugly and he has a very nice face in my personal opinion !! +p7491 +aVjonx , custom_break you are crazy , just plain crazy . +p7492 +aVdon't forget toe-tappin ' larry craig , randall ' duke ' cunningam , bob packwood , herman cain , newt gingrich , mark sandford , john ensign . custom_break custom_break then there's bob allen , mark foley , jack ryan , steve latourette , and of course rudy giuliani . custom_break custom_break the list goes on : custom_break henry hyde custom_break CUSTOM_NUMBER custom_break politician , lawyer custom_break chicago custom_break united states of america custom_break \u005c u CUSTOM_NUMBER c admitted he'd had an affair many years prior \u005c u CUSTOM_NUMBER e custom_break custom_break CUSTOM_NUMBER custom_break custom_break helen chenoweth-hage custom_break CUSTOM_NUMBER custom_break politician , consultant custom_break topeka custom_break united states of america custom_break \u005c u CUSTOM_NUMBER c admitted to a six year affair with a married rancher in her home state of idaho \u005c u CUSTOM_NUMBER e custom_break custom_break CUSTOM_NUMBER custom_break custom_break bob livingston custom_break CUSTOM_NUMBER custom_break politician , lawyer custom_break colorado springs custom_break united states of america custom_break \u005c u CUSTOM_NUMBER c admitted to multiple extramarital affairs . \u005c u CUSTOM_NUMBER e custom_break custom_break CUSTOM_NUMBER custom_break custom_break bob packwood custom_break CUSTOM_NUMBER custom_break lawyer custom_break portland custom_break united states of america custom_break \u005c u CUSTOM_NUMBER c resigned from senate amid allegations of sexual harassment and abuse . \u005c u CUSTOM_NUMBER e custom_break custom_break CUSTOM_NUMBER ken calvert custom_break CUSTOM_NUMBER corona united states of america custom_break \u005c u CUSTOM_NUMBER c arrested while soliciting a prostitute . \u005c u CUSTOM_NUMBER e custom_break custom_break showing items CUSTOM_NUMBER - CUSTOM_NUMBER of CUSTOM_NUMBER << prev CUSTOM_NUMBER CUSTOM_NUMBER next >> custom_break republican sex scandals you can use this list to help make your own ranked list about this topic custom_break custom_break more lists top CUSTOM_NUMBER best dressed oscars CUSTOM_NUMBER by joanne custom_break vote top CUSTOM_NUMBER hottest jewish women under CUSTOM_NUMBER by greg custom_break the CUSTOM_NUMBER most epic wedding fails of all time by brian gilmore custom_break post a comment custom_break login via : facebook twitter yahoo ! google custom_break my comment is about write your comment custom_break name or login : custom_break custom_break custom_break custom_break show comments about : custom_break nellyvega-torres republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER pm custom_break we have been paying for all this sex through the senators insurance tax payers pay for . custom_break reply custom_break disgusted by thegop republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER :3 CUSTOM_NUMBER am custom_break republican party = one big perverted freakshow custom_break reply custom_break disgusted by thegop republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER :3 CUSTOM_NUMBER pm custom_break custom_break disgusting two faced hypocrites ready to tell everyone else what is custom_break moral and good . nothing about this gang is good , we should scrap this custom_break political pack and start over . custom_break reply custom_break heyrobo republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER pm custom_break just shows how narcissim overrides sound judgement . custom_break reply custom_break heyrobo steve latourette at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER pm custom_break that's like having sex with his wife . libtards had to report this . custom_break reply custom_break heyrobo jack ryan at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER pm custom_break custom_break oh wow -- he wanted to have sex with his own wife -- how disgusting is that custom_break for a republican ? that isn't a scandal -- only a liberal socialist would custom_break call it that . custom_break reply custom_break anonymous custom_break republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER pm why are republicans so sexy ? reply kit CUSTOM_NUMBER custom_break republican sex scandals at CUSTOM_NUMBER / CUSTOM_NUMBER / CUSTOM_NUMBER CUSTOM_NUMBER : CUSTOM_NUMBER am they're not .. they just lack self-control . reply custom_break custom_break custom_break top incategory related custom_break lists top onranker on the cover of the rolling stone magazine custom_break CUSTOM_NUMBER simpsons jokes that actually came true custom_break vote on this custom_break the sexiest female soccer players custom_break vote on this custom_break greatest pro wrestlers of all time custom_break vote on this custom_break the hottest tennis girlfriends and wives custom_break vote on this custom_break the hottest basketball wives and girlfriends .. custom_break more by web infoguy infoplease's oldest us universities custom_break websites powered by mediawiki custom_break us news ' colleges with most international students custom_break famous unsolved murders custom_break custom_break custom_break top incategory related custom_break lists top onranker vote on this custom_break the CUSTOM_NUMBER sexiest psycho girlfriends in .. custom_break vote on this custom_break hottest brooklyn decker photos custom_break vote on this custom_break best action movies of CUSTOM_NUMBER custom_break CUSTOM_NUMBER sexiest foreign exchange students in film history custom_break famous hispanic scientists custom_break he's " that guy " : the best of the scumbag steve .. custom_break custom_break top CUSTOM_NUMBER current queries custom_break in people custom_break famous tattoosgirls with tattoossuffering quotesdiversity quoteskesha picturesenergy quotesbest pornstar everkaty perry sexytop celebritiesenvironment quotes custom_break about rankerthe ranker blogfaq / helpsitemapcontactadvertise with usjobswidgetsterms & conditionsprivacy policypresstop rankersdata . ranker . com custom_break information and media on this page and throughout ranker is supplied by , , wikipedia , ranker users , and other sources . freebase content is freely licensed under the custom_break cc-by license and wikipedia content is licensed under the gnu free documentation license . \u005c xa CUSTOM_NUMBER ranker CUSTOM_NUMBER +p7493 +aVyou are a fool . hispanics are hispanics are hispanic to the bone . i hear rubio saying illegals good , illegals good . illegals good , punish all anglo racists . illegals good , illegals good , legals bad , legals bad . anglos bad , anglos bad . uncle fidel good , uncle fidel good . laraza good , laraza good , progs good , progs good , conservatives evil , conservatives evil , conservatives fools , conservatives fools . that his what i hear from your next prog idol that is going to break your heart . +p7494 +aVCUSTOM_NUMBER millions reason why you are disgruntled angel fan . +p7495 +aVhe was CUSTOM_NUMBER i hope u burn in hell ricky preddie CUSTOM_NUMBER years and CUSTOM_NUMBER ear is not enough custom_break custom_break +p7496 +aVpeople are born gay custom_break therefore gay people have the constitutional right to marriage +p7497 +aVi picked the celtics , so the heat can get motivated and win " custom_break custom_break - skip " water pistol pete jr " bayless +p7498 +aVhow do you know mother fucker stop assuming shit you don t know you don t know that man like you hypocrite son of a bitch +p7499 +aVwe agree to disagree .. when someone wants to double tap me like your little buddy i don't take it lightly .. it's a direct threat . i thank you for your service now i will continue mine getting obama removed from office .. +p7500 +aVi don't remember staples filing for bancrupcy . custom_break custom_break maybe you got bad info ? +p7501 +aVlisa , i think this was the most touching and powerful pieces i've ever read of yours . my heart goes out to all those women battling cancer , their families , and all the families who cannot afford medical care in our country - the land of the free , home of the brave . +p7502 +aVhe may be aged a little , but still looks damn good . +p7503 +aVmore grammatical errors , vicky < CUSTOM_NUMBER .. you are so stupid .. +p7504 +aVwell you are special . ( damnit clown ) +p7505 +aVho ! ho ! ho ! pedigree him hh +p7506 +aVdidn't know , but then again i don't care +p7507 +aVhave you ever thought that they actually wanted a " smooth transition of power " ? +p7508 +aVgo back to mediamatters , troll . custom_break custom_break you and your pond scum buddies are toast . +p7509 +aVand you are a terrorists pig . +p7510 +aV< i > dick zinya steps up to microphone < / i > custom_break custom_break custom_break custom_break tap tap tap .. custom_break custom_break custom_break custom_break dick zinya : & nbsp ; bullshit . custom_break custom_break custom_break custom_break < i > dick zinya walks away . < / i > custom_break custom_break custom_break custom_break a-a - a-a - a-nd scene ! +p7511 +aVunder what circumstances do increasing public employee's benefits stimulate the economy ? +p7512 +aVCUSTOM_AT horizon i know many people feel like this and i will never understand it . it's like saying that if your parents rob a store while pushing you in a stroller that when you turned CUSTOM_NUMBER you should be arrested . custom_break custom_break i mean why wouldn't you want this young intelligent people that have grew up here to use there talents here . it seems silly to me , to waste all that talent . i'm happy he did what he did . everyone is so concerned with right and wrong now but lets be practical . it cost money to send all these people back and your sending them back with there american education and talent . +p7513 +aVhe must have been flying by the old adage : " grass on the field .. play ball ! +p7514 +aVits fucking massive xd +p7515 +aVCUSTOM_AT CUSTOM_AT i thought he'd end up being a top CUSTOM_NUMBER pg .. just not right away haha +p7516 +aVthe thing that keep the world from nuclear was was the understanding that a nuclear war could not be won . even if one side was able to blow up the majority of weapons on the other side , the other side would still have enough to blow the other side up . there is a point that one can reduce the number of weapons to where nuclear war can be won by one side . i dont know exactly where the line is but if we cut too far , we actually could be creating a world far more dangerous than one with each side having CUSTOM_NUMBER warheads . +p7517 +aVCUSTOM_AT someone get this intel to america . the time to strike is nigh +p7518 +aVokay now i know your trolling , good laugh , you had me for a while +p7519 +aVi am sorry that your gay affirming inner-psych ( opath ) was disturbed ( mentally ) by my use of transgender ; but a punk that is a male hiding behind a female screen name , has a myriad of issues ( like your contributing zero to the conservative cause ass does too . ) if you keep stalking bitch ; i'll show you who's your daddy . +p7520 +aVsignificant " - i think more like " massive fraud " ! all the more reason to demand a \u005c\u005c ' picture id \u005c\u005c ' - either a drivers license of state issued and tell eric holder to go suck an egg since he thinks that requirement would be \u005c\u005c ' racist \u005c\u005c ' ! custom_break it is past the time when we should \u005c\u005c ' guard \u005c\u005c ' one of our nations \u005c\u005c ' most honored privileges ! +p7521 +aVtamrabam . you are a moron . i assume you vote labour . were you there , no , so shut your gob . maggie had the balls to kick them out in no uncertain terms , non of our current leaders would do that now . +p7522 +aVmeet me in outworld fuck nigga +p7523 +aVanyone still thinks rondo is not the best pg in nba this year ? +p7524 +aVthe shirley / annie subplot is one of my favorite plots of the show . abed's " subtle " influences on the whole situation are awesome . custom_break custom_break " say your ass is on the line . " custom_break " < i > my ass < / i > is on the line ! " custom_break " say you just got off the phone with the mayor . " custom_break " i < / i > just < / i > got off the phone with the - what , the mayor , stop doing that ! +p7525 +aVsinging " on the road again .. " lol +p7526 +aVnone of your posts have any value whatsoever . +p7527 +aVCUSTOM_AT phil gingrey explicitly endorsed the position that while the oco is fake spending , the sgr is a fake saving , so using the two to cancel each other out is perfect . +p7528 +aVtrump refused to give any " evidence " , because he has none . +p7529 +aVyou're a little fella , aren't you ? +p7530 +aVmaybe u can just fuck off and leave traditions alone .. bitch ! +p7531 +aVi am incompetent enough to fiscally to work for the worst pm in canadian history hahaha ! +p7532 +aVthe key words being keep thinking , something you have a hard time doing redneck racist retard . +p7533 +aVagain , why am i bothering . custom_break custom_break i'm not just suggesting , i'm stating as fact that all these incoherent hypotheses are both illogical and irrelevant . custom_break custom_break if travyon had been found on his back , with his arms spread wide , would that have indicated " tampering ! " ? i have no clue what trayvon did in his last seconds of life . we know he was shot from between CUSTOM_NUMBER and CUSTOM_NUMBER inches , in the chest , which is consistent with zimmerman's story . trayvon had at least a few seconds of life after he was shot , and who knows what his reaction was .. judging from how his body was found , he crawled off zimmerman and died . you don't have to roll someone over to check their pulse at the neck . custom_break custom_break i'm not quite able to figure out just what you're suggesting , but his position at death is irrelevant . +p7534 +aVCUSTOM_AT custom_break custom_break now why would you come up here talking about your mom like that .. fall back son +p7535 +aVoh cj , cj , cj , you fat ugly bitch ! its just so funny how much you need us ! you need us to tell you that your husband would rather fuck a barbed wire covered glory hole than touch your CUSTOM_NUMBER year old moldy vagina . you need us to tell you about the health problems your poor children are going to suffer thanks to your fast food and brownie diet . poor tweenie is going to be teased in school for being tubby . you need us to tell you how stupid you are to go off of a fucking car thermometer to determine the outside temperature and then compare it to a fucking tropical climate state like florida . how the hell do you function in life ? oh wait , you dont . you sit your fat worthless ass at a computer all day ranting about gay marriage . i hate to break it to you but i guarantee your darling son sam is going to grow up to be the butt pirate you so hate . what are you going to do then ? throw a bible at his head ? it wont knock the gay out of him ! even worse little sara is going to grow up to be a .. liberal ! gasp ! oh nos ! so your tweenie is going to be a fatty , sammy a gay , and sara a tree hugging hippie ! looks like your " christian " mothering sucks and you should try another route . might i suggest getting the fuck off the computer and going to spend time with them ? +p7536 +aVso lets pamper the child so the child never does better . you are an idiot . +p7537 +aVwith CUSTOM_NUMBER + cease fire violations we were treaty bound to resume hostilities , the only question is why didn't clinton pull the trigger instead of look the other way . +p7538 +aVit's been years and you birther idiots have yet to find one piece if evidence to support your claims , so who is the stupid one ? custom_break custom_break you are gullible and ignorant if you believe our president was born in kenya +p7539 +aVsure you do have my number . custom_break you somehow have to alert me when you are in heat . custom_break and thank you for giving my number to the other ladies . +p7540 +aVcars was like , " fuck this i'm outta here . +p7541 +aVdickhead will just copy and use it , don't bother . we know rooster is all mouth and no balls . +p7542 +aVbuck up little camper . economics is cyclical , always has been always will be .. when there is enough buyers in the market , the price of your home will go up . i guarantee it . +p7543 +aVcustom_break custom_break i have read your custom_break comment and i have to point-blankly ask you for one incidence where a person custom_break was locked up for dui that didn't blow over the legal limit or have a blood custom_break test that wasn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t over the legal limit . just give everybody even one example . custom_break because anybody that truly was not dui would have a serious law suit against custom_break the macon police department and win big . so give us just one story .. or is this custom_break wishful thinking on your part ? custom_break custom_break custom_break +p7544 +aVthat was fucking sick +p7545 +aVi don't agree with that either ; melissa i am born and raised here and i have seen first hand how this department and the judicial system work hand in hand . mr. small as you so elequently put it is a drug dealer but a majority of the upper class around here are ; i could name a few but i won't we are profiled because we are not supposed to have nice things or money point blank .. +p7546 +aVlol igor should be in it . he can penetrate people with his long ass nose . +p7547 +aVcheap pathetic references to nazi germany , you dont know how good you have in this country a-hole ! +p7548 +aVconservatives are to blame for some of this for wimping out on it . why are we not working on laws to ban gay marriage on a federal level and let \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s not stop there ? no gay adoptions we need a man and a woman in these kids lives . regardless of what liberal propaganda tells us , conservatives out number liberals CUSTOM_NUMBER to CUSTOM_NUMBER why do you think fox is so big and liberal radio shows are basically non existent . why is it CUSTOM_NUMBER % of americans were against obama care and yet because of the majority in congress it was passed anyway ? conservatives need to get off their keesters . in arizona these things are not radical , there mellow . start working on making homosexuality illegal start far to the right just as the liberals start far to the left and they get it ( obama care etc . ) no this is the conservative \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s fault . gay people need to feel shame in what their doing , not heroic as the liberal media makes them sound . make it illegal and that will help in giving them the shame they should already feel . it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s just not right it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s not a matter of hate i guess i hate rapists to because i don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t feel that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s right either . custom_break if we glorified rapists and made them sound all heroic would it become a right to be who they are ? that's how they were born . they didn't choose to be that way they just are so they should have the right to rape any man woman child or animal . this is the liberal logic . next their going to want to pass laws that being a rapist is just sexual orientation . you would even see ignorant people trying to say the bible says its ok . if it were ok then CUSTOM_NUMBER men could have a baby without help from any women and CUSTOM_NUMBER women could have a child without using any sperm from a man . nope sorry just not possible . +p7549 +aVhasn't been pathetic yo , it will take a little while to get them back though , mccourt actually trashed us . +p7550 +aVyou guys got to stop comparing him to heath . if you go into the movie already thinking he will not be better than joker than you are only ruining his performance yourself . +p7551 +aVi pull nothing from you , hanni . but , keep parroting me , in lieu of thinking for yourself . it will at least make you sound a little smarter than you really are . +p7552 +aVher turkey sandwich sounds better than chicken nuggets at the school . school lunches suck . +p7553 +aVidiocy . just say things then give no facts . here's some facts . CUSTOM_NUMBER , CUSTOM_NUMBER , CUSTOM_NUMBER people missing from the work force . the lowest workforce in CUSTOM_NUMBER yrs at CUSTOM_NUMBER . CUSTOM_NUMBER % . median household income down CUSTOM_NUMBER % . gas prices have doubled . debt rising at a CUSTOM_NUMBER . CUSTOM_NUMBER billion dollar a day clip , and rising . CUSTOM_NUMBER % of americans are below the poverty level . CUSTOM_NUMBER % more americans on food stamps . electric bills up CUSTOM_NUMBER dollars a year . average age of an american owned car CUSTOM_NUMBER yrs . i can go on , and on . this potus is a joke . look at his past voting records in illinois and in the us senate . consistantly voting present or abstaining . he's a consumate politician . strictly worried about covering his ass , and saving his job . thank the stars he is alienating the catholics . after that fiasco you can stick a fork in him , he's done . hgis iq is on a par with the mouth breathers that voted for him . all he's got is those mean ole corporations , and class warfare . only the uneducated will fall for that . there's a lot of them though . +p7554 +aVdid you see the picture of president " limber neck " bobbing his head to the mexican president on drudge front page ? custom_break custom_break CUSTOM_URL +p7555 +aVthese descriptions of zama might as well be shape hs . the same divisions , nastiness , weak leadership in both the principal and the new assistant principal are as evident in mons as in zama . after ms fitzgerald cleans house in zama , she should head directly to belgium . +p7556 +aVthe difference is and this is a big one .. you and fellow trolls live and feed off our blogs ( nd's blogs ) " sharing " your " opinions " and comments " .. with no interest in talking positively about nd football like us fans .. your sole purpose is to antagonize us .. if you really think about it , you and your idol , strike first are a pretty pathetic pair .. +p7557 +aVyou suck . you probably don't have any friends . your family probably abandoned you in disgrace . go crawl back under a rock and do this world a favor and stop existing . you think you are cool because you think you understand the situation and call this man a coward and pathetic . well congratufuckinglations . you just showed the world what a doouchebag you are . i don't know if its because you are emo or you think trolling will earn you respect but i don't give a damn . go dig a hole , bury yourself in it and stay there . if you don't have anything good to say you better expect nothing back . +p7558 +aVyou will never get a job in government , too much common sense and stating the bleeding obvious . bettie windsor and diana ross seem to prefer northolt ( for different reasons ) so why not look again at the utilisation . +p7559 +aVi agree about art of fielding , the writing itself leaves a bit to be desired , but i did enjoy the book . +p7560 +aVCUSTOM_AT trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade trade +p7561 +aVmaybe , and if so they are thieves as well . custom_break custom_break it makes no sense to bitch about the quality of the item you are stealing . if they were that shitty , i expect they would not be stolen . +p7562 +aVyour point is as valid as the hole in your head that you obviously gave to yourself before making such an idiotic statement . and bringing politics into it ? could your trolling be more obvious ? +p7563 +aVfuck harry potter +p7564 +aVi guarantee you are wrong . no way in hell the refs call five t's on miami . +p7565 +aVno , no , no . the intention does matter . outrage can't be justified by itself . the ignorant thing is the outrage , not the design . that goes for the star tee and these shoes . people somehow got the idea that any outrage they can grow , is somehow justified just because they ' feel ' it . fuck that , let me wear shackles and stars and whatever else i want to . it's not killing anybody , it's not even fucking referring to whatever you want to feel outraged about . please end this tsunami of holy outrage . +p7566 +aVmr. genetski receives a salary paid by the taxpayers . we are paying his legal costs . custom_break custom_break just like you are paying for a teacher's night out at the bar ? get over yourself . +p7567 +aVcongrats on the feature ! hope you feel better :( +p7568 +aVfuck this gane this fucking fake +p7569 +aVromney could beat obama in an election with both hands tied behind his back . +p7570 +aVwow ! we got us a real literate einstien here don't we ?? " dush bag " ? and such grammar !! maybe you should have stayed in school past the CUSTOM_NUMBER nd grade retard ! what happened , momma spend all her welfare chk . on booze and crack ?? +p7571 +aVok - so where am i going wrong wanting an " earl campbell " ? if someone like that were available / +p7572 +aVi see this morning they've already had one komen health official resign in protest over the decision . the bad pr just keeps on coming . custom_break custom_break pema , good job on focusing this story on the specific clinics like waco that are going to feel this cut moreso than others . it's important in this instance for people to see the reality and what really happens when decisions like this are made for political , not practical , reasons . please bring us more stories like this one . +p7573 +aVCUSTOM_AT CUSTOM_AT i got to a point where i started eyein ' the liner notes every time i listened to a zeppelin song to see what blues artist wrote it +p7574 +aVlol looks like you're about to eat it +p7575 +aVi'll betcha $ CUSTOM_NUMBER k you won't get your money back .. +p7576 +aVyou are welcome :) +p7577 +aVit must really suck to be so hated that you have to stack the deck with your media pals . +p7578 +aVnot funny dude .. but i get it . +p7579 +aVgreatness ? how do his balls feel in your mouth ? +p7580 +aVlmfao just checked vaders wiki and it says this on his wwe return in CUSTOM_NUMBER and i quote " vader made his wwe return on june CUSTOM_NUMBER th , CUSTOM_NUMBER when he defeated heath " the custom_break southern rock band " slater on wwe raw . he was later beat by the custom_break bushwhackers in a handicap match " looks like we got the bushwhackers return up next . +p7581 +aVdoughty should just be called the towel cuz i was think i have to clean something when i hear his name +p7582 +aVhe a-hole i'm a leaf fan and i know they are crap . you didn't read what i said . today you hate them , tomorrow you love them . what are you CUSTOM_NUMBER years old with the go take a crap . does your mom know you are on the computer and not in pre-school getting beat up . a-hole . doesn't sound so good does it . +p7583 +aVfuckk wfd +p7584 +aVthis post is so shallow and pathetic . kudos to people who are growing old with out trying to defy the laws of nature , and half of your posts are merely bad pictures you are trying to write off as " not growing old well " . must be a slow news day because this is truly an all time low . +p7585 +aVthat is because you are not a fan . go watch the heat with the rest of the bandwagon jumpers in this town . so very sad . +p7586 +aVCUSTOM_AT ( david ) back off +p7587 +aVa crazy muthafucka named gusto ! custom_break i fucked ya wife cuz the bitch is a big ho ! i fucked ya sister , i fucked ya cat ! i woulda fucked ya mom , but the bitch is too fat ! custom_break custom_break that shit was way funnier than it had any right to be . +p7588 +aV_ fuck_off _ nigger_you ' re_not - american_you _ pos-faggot ! +p7589 +aVyou are a rock star ! for real . xo +p7590 +aVwhite sox are in first place . some of you sox fans are so spoiled . you talk like jim hendry came over from the cubs and you havent won in a hundred years . get a grip . +p7591 +aVCUSTOM_AT - CUSTOM_NUMBER c CUSTOM_NUMBER a CUSTOM_NUMBER a CUSTOM_NUMBER b CUSTOM_NUMBER a CUSTOM_NUMBER fd CUSTOM_NUMBER a CUSTOM_NUMBER :d isqus custom_break custom_break .. +p7592 +aVyour an idiot ! +p7593 +aVsadly , the catholic church has many criminal molesters , most of whom are homosexuals . +p7594 +aVthis has got to be the stupidest story i have ever read . yes , the usda regulates school lunches that they prepare , on campus in their cafeteria . they do not control what parents can pack and send their kids to school with in their lunch boxes . if i were that mother , i would send my kids to school the next day with a big ole bag of doritos a whole pack of cookies and a bottle of mountain dew , with a note attached to the lunch box that says " my mom says you can suck it +p7595 +aVyour an idiot +p7596 +aV.. horse trainer my azz .. truce .. ? +p7597 +aVhow do we know terry krepel is your real name . if you are not a gutless coward , you'll provide an address and phone number . now , we are paying attention .. don't be a gutless coward and p * ssy ! +p7598 +aVidiot nayar you are mother fucker . you are saying attack on shri harmandir sahib was a right action , this shows you negative thinking about sikh community . all siks are agree with building memorial thats why any sikh organisation does not oppose . you have no concern with issues of punjab . the wording you used in this article is very rude and this shows your hate about sikh community ,, you are barking dog ,, we don't care you +p7599 +aVhave you always been a victim ? +p7600 +aVyou are either very ignorant or terrible at sarcasm +p7601 +aVCUSTOM_AT ya right that shit is pathetic . its the same software as CUSTOM_NUMBER years ago . apple adds a few features , most of which could be done by downloading an app , and you isheeple cream your pants . man it would suck to be as narrow minded as you all lmfao +p7602 +aVmadison , i admire you for sharing your story . you are a wonderful inspiration ! i only found your blog about a month ago and love it ! thank you for opening up like you do . +p7603 +aVyep people can be pretty dumb -- exemplified by your #1 argument . +p7604 +aVCUSTOM_AT good . actually , really good . and it's good to know that i remind you of the delta , hahahaha . how's it with you ? are you still early morning cblogging with dap ? +p7605 +aVi find it funny how some fans are more worried about whose better or how many albums they sell instead of just enjoying the music . some fans need to get their priorities straight . +p7606 +aVchris , please stop commenting , because you're obviously still trying to catch your breath from your sucking off cook . this has made you more retarded than usual . +p7607 +aVdid you read the article ? they never married . custom_break custom_break and you do give a crap because you're commenting .. +p7608 +aVlooking up a definition doesn't make me an authority on labeling people . therefore , your diagnosis is invalid . +p7609 +aVromney is the etch-a - sketch man . a term given to him by his own campaign staff . custom_break custom_break beware . +p7610 +aVhmm .. je \u005c u CUSTOM_NUMBER celi teledysk do " fuck it " wyjdzie najp \u005c xf CUSTOM_NUMBER \u005c u CUSTOM_NUMBER aniej w lipcu to ten manager jest mistrzem <3 +p7611 +aV< b > " meet my demands and the animosity between us shall be over ! you must obey because i am the great and powerful john from berkeley " < / b > +p7612 +aVlol man your gonna call him a loser and to get a life when you are on here sticking your nose in their business ?? your a douche bag who probably has never even seen a vagina . go get laid and see that there is more to life than being a dick like you obviously are . +p7613 +aVmaybe they will create a black hole that will suck in the entire facility . +p7614 +aVinternet threats are just threats , stupid punks , i hope . we have to worry about the violence that takes place in parking lots after the games . +p7615 +aVCUSTOM_AT custom_break hah your'e only CUSTOM_NUMBER ? fpff and you tell me what to do ? i'm waay older than you who you calling a bitch and a fug ? you douche bag bitch i wanna punch your eyeball out and kill ya fuckya +p7616 +aVoh yeah . like you would have stopped your car and assisted . you're a lying idiot . +p7617 +aVyou can't make a bomb with uranium enriched to CUSTOM_NUMBER % . +p7618 +aVaahh , how sweet .. read your post .. it is the sign of an enabler .. oh yeah , but aah , how sweet .. puke +p7619 +aVsic ? because you spelled it " center " or because you think it should still be called skydome ? +p7620 +aVyou're probably a phuuking dyke .. aint ya beotch ? +p7621 +aVgulfstream CUSTOM_NUMBER : we have many social nets for people and if you're not taking advantage of them during tough times and claim to be ' poor ' , you are just stupid . poor are people in the slums of indian or the sudan . amerians don't understand the true meaning of poor . +p7622 +aVwhat are you smoking , rucker ? there's no enthusiasm for romney anywhere except maybe among some mormons .. and probably not even all of them . no , it's simply that obama has turned out to be such a miserable loser , that anyone else will do . +p7623 +aVfucking hell +p7624 +aVmarriage is a worthless ceremony , almost as worthless as religion . +p7625 +aVyou're a liar . i was on that night dealing with two of you trolls an hour before anyone showed up . custom_break custom_break this isn't a physical fight here on this screen , you moron . in order for what you say to be the truth , i'd have to sit back and say nothing while others fight for me , and if that were so , you would never have been reading me for some time . custom_break custom_break it's one thing for you to be a liar , but quite something else for you to be a stupid liar . +p7626 +aVwe are crap , you said it yourself . +p7627 +aVno brees = tank season for bradley and start over custom_break custom_break simple as that . +p7628 +aVsteve , go brush your teeth with a revolver you dumb bastard +p7629 +aVdimwits . they prevent eric holder from stopping the guns getting sold in massive quantities to people about to go into mexico , and then they get all apoplectic . custom_break custom_break where did monica lewinsky's dress go - are they sniffing it before their tirades so they can psyche themselves up ? +p7630 +aVmo ain't coming back and getting close to CUSTOM_NUMBER million he got this year . be realistic he is very old athletically . he will pitch one last time and then retire like wood did . +p7631 +aVtruths ? are mine the same as yours ? speaking the " truth " often involves hurting peoples feelings . for instance if i were to state i believe homosexuality is a chosen life style unlike being born a racial minority . or if that i believe that that chosen lifestyle is amoral and perverse , not far from the vestiges of pedophilia , bestiality , or nechrophilia . and , it \u005c\u005c ' s got absolutely nothing to do with religion . custom_break custom_break now there \u005c\u005c ' s a whole pile of truths for you . +p7632 +aVthat has to be the stupidest comment i've ever seen . +p7633 +aVwe have more where he came from . don't rest , we are watching your fat azz . +p7634 +aVi am liable to go to a CUSTOM_NUMBER - CUSTOM_NUMBER for a pack of cigarettes some day and the guy or gal behind the counter will take my money and hand me a live grenade ! i don't see many americans behind the counters at CUSTOM_NUMBER - CUSTOM_NUMBER or kroger's or the gas station or the bank . do we have any born here americans left who have jobs ? this reminds me of the guy who was at a bar and a big muscular biker walks in and takes his drink away and drinks it ! the little guy says " i went to work late and got fired .. i went home and my wife was in bed with a stranger and then my dog bit me . i took my last CUSTOM_NUMBER bucks here and bought a drink and dissolved some poison in it to kill myself and you come along and drink my drink ! so .. how was your day ? +p7635 +aVwhat are you talking about ? zimmerman wasn't police and obama isn't black . +p7636 +aVin my area the scrap men and women are around everyday sometimes one in the morning and a different one in the afternoon , that includes weekends . if you leave anything on the path it goes . i left a spin dryer for my cousin to pick up on the driveway when i went to work , before he could pick it up the scrap people opened my gates and took it . +p7637 +aVthose evil syrian soldiers are eating babies , and the helpless civilians only want peace . why are the evildoers winning ? why can't the white knights of pure western goodness go do something about it ? +p7638 +aV.. erections . " custom_break custom_break then why are they targeting women ? +p7639 +aVnope , i'm fecking huge and i'm from leeds . also , since when was aberdeen in the north of england ? +p7640 +aVyou are right - if only we knew which balls were which custom_break and whos balls were in whos pockets - we would then at least know how many balls were still on the table and in play - :) +p7641 +aVCUSTOM_AT that took me about CUSTOM_NUMBER . CUSTOM_NUMBER seconds +p7642 +aVbecause you are so cool , that's why !! +p7643 +aVit looks to me like the federal government wants florida to let illegals and non-residents vote . those are the votes obammy needs . the law and truth means nothing to the federal government . all it cares about is getting a second term for obammy . +p7644 +aVyou're kidding . right ? do you read the news ? +p7645 +aVvector comming from some-redneck like you i that it as a compliment . some goes for cslos CUSTOM_NUMBER been call a idiot by a redneck always give me a smile +p7646 +aVif these ignorant fcks h CUSTOM_NUMBER te the usa then just leave .. simple .. quit harassing american citizens +p7647 +aVreally risky pick ! hes done now ! +p7648 +aVall these police and security yet people get in with flairs meanwhile in england a CUSTOM_NUMBER k + a week player gets called a name and there is uproar go figure +p7649 +aVCUSTOM_NUMBER and they made it to the world series +p7650 +aS'CUSTOM_AT CUSTOM_URL' +p7651 +aVCUSTOM_AT CUSTOM_AT i \u005c\u005c ' m not sure their is a " prototype " build for the rush olb in grantham \u005c\u005c ' s scheme . it is basically whoever can get to the qb best . i think jenkins definitely projects outside as well as floyd . jhc could definitely play outside , but i think he is the only one in this class who could also lock down the inside as well . +p7652 +aVsantorum needs to stop whining about the negative adds - he \u005c\u005c ' s been free-riding at newt \u005c\u005c ' s expense this entire time so now it \u005c\u005c ' s his turn in the box . after all , he \u005c\u005c ' s a lawyer and needs to suck it up - but of course he doesn \u005c\u005c ' t want people to know he \u005c\u005c ' s an attorney since that might spoil his choir boy image . newt said he wasn \u005c\u005c ' t for mandates so rick needs to stop promoting it . besides , rick didn \u005c\u005c ' t mind piling on with mitt to try to bury newt early on . but at the end of the day , what solutions does rick bring to the table ? he didn \u005c\u005c ' t do anything when he was in congress and time after time he abandoned his principles to please the liberals in pennsylvania ! and what did it buy him ? a CUSTOM_NUMBER point drubbing in his re-election ! custom_break custom_break as for the campaign , he \u005c\u005c ' s brought no rational or reasonable solutions to the table - instead , like mitt , his best solution has been to say " i agree with newt " - and his economic logic is elementary and fatally flawed . newt has been spot on predicting where king hussein obama is leading us , including the attack on the church , which is simply the avenue to establish the legal precedent that the wh has the power to tell us - all of us - how to act , how to respond , and what to think ! that \u005c\u005c ' s the real issue from obama and his henchwoman michellivelli ! not only will rick be behind on tidal wave of rot that will flood him if elected , he will not be able to get congress to do a darn thing ! and when his failed CUSTOM_NUMBER years are over , the demonic dems will come back to power with a vengence by simply pointing at rick \u005c\u005c ' s miserable record and lack of ability to lead in a hail storm of enemies on both sides of him ! custom_break custom_break so rick should just suck it up , stop whining and run the gauntlet like newt has had to .. if he can \u005c\u005c ' t stand the heat then he can \u005c\u005c ' t lead the country ! +p7653 +aVlet me rephrase : custom_break custom_break in other words , you are an insane pussy . +p7654 +aVwhy don't the koch brothers get off their fat ass wallets and actually run for office .. oh .. right .. they would lose in a crushing landslide . +p7655 +aVi am sorry to say that california has been cooked for a long time . that state did not get to the point it is at over nite . i just pray that it can pull out of the nose dive . +p7656 +aVvote , look where this loon is getting her information . pbs socialist network . roflmao !! +p7657 +aVwith a screen name like yours , you need to s .. t .. f .. u .. +p7658 +aVCUSTOM_AT needs to give me a fucking like i am from a family of nurses . they are much more liberal than i am ( my sister in law supports a single payer system , i support getting rid of the hypocratic oath and the ama ) . i have gotten their diagnosis , even had them get me scripts from their diagnosis . +p7659 +aVi'd agree . very friendly town , and it's friendly with depth . i've lived in other areas where people are ' friendly ' but it's more of a politeness with little warmth . +p7660 +aVand .. have you made a conclusion yet ? we're gonna buy a CUSTOM_NUMBER d tomorrow the plan was with a CUSTOM_NUMBER - CUSTOM_NUMBER , what did you not like about it .. what would you recommend ? +p7661 +aVonce demtards figure out how many hoho's are appropriate for a public vending machine , republicans can lead this country once again . then the demtards can go fantasize about making the . cock they suck their husbands . sissyboys ! +p7662 +aVif you lose your life because of stupidity , good riddance ! +p7663 +aVevery_time _ o_butt _ fucked_opens _ his_oral , _ only_shit _ and_millions _ of_little _ sperms_come _ out _ .. that is when he don't _ swallow .. puke .. +p7664 +aVstraight men will fuck anything !! +p7665 +aVCUSTOM_AT @ \u005c\u005c ' micah carter so you \u005c\u005c ' re saying those claims are all false .. ? i don \u005c\u005c ' t know .. just from my understanding these are in his book .. but i can be wrong .. i \u005c\u005c ' m just saying if they are true .. should i just assume he \u005c\u005c ' s racist ? custom_break custom_break from \u005c\u005c ' dreams of my father \u005c\u005c ' , " i ceased to adverise my mother \u005c\u005c ' s race at the age of CUSTOM_NUMBER or CUSTOM_NUMBER , when i began to suspect that by doing so i was ingratiating myself to whites " from dreams of my father , " i found a solace in nursing a pervasive sense of grievance and animosity against my mother \u005c\u005c ' s race " . from \u005c\u005c ' dreams of my father \u005c\u005c ' , " the emotion between the races could never be pure .. the the other race ( white ) would always remain just that : menacing , alien and apart " from dreams of my father , " never emulate white men and brown men whose fates didn \u005c\u005c ' t speak to my own . it was into my father \u005c\u005c ' s image , the black man , the son of africa , that i \u005c\u005c ' d packed all the attributes i sought in myself . from dreams of my father : " that hate hadn \u005c\u005c ' t gone away , " he wrote , blaming white people , - some cruel , some ignorant , sometimes a single face , sometimes just a faceless image of a system claiming power over our lives . +p7666 +aVall group chats are now viewable by everyone . +p7667 +aVyou're smartest post yet .. +p7668 +aVyour name is so ironic . +p7669 +aVscumbag . i read it as jimmy carter +p7670 +aVmr president i ask only one thing just band sirasatv and shakthi tv , becouse they want distroyed our mother land they are not midea they are under tna and ltte please take action . if not one day our srilankan explose on this midea . no respect pushing small group for vilonce .. and giving fals infomation on there own profit only when i see sirasa news im shame on our midea like sirasa .. sakkili like sri ranga pimpi sakiliya +p7671 +aVhowever your language is offensive . +p7672 +aVperhaps selling out your parents to the nazis to save your skin works for you ? +p7673 +aVbasedgod didnt fuck your bitch as yet ? +p7674 +aVanother good one , coach self will be lost without danny . ku and coach self will miss danny , but coach self has won before danny , and will win after danny . +p7675 +aVtoo true ! storm of swords is my favorite by far . it has all the intrigue and action that the first two books builds toward . and yeah , some of the predictions are .. scarily accurate . +p7676 +aVthe filipinos have learned to realise that it is better to be associated with america than any other superpowers . " oh , really ? check your history , idiot . i'd rather we pick our own selves up , so we wouldn't be a joke to the planet . such as this guy . and what's your basis for this delusion ? an american fuck you in the ass ? +p7677 +aVlisten : i am anti killing , but i am not anti guns . i am anti dui , but i am not anti cars . i am anti dog bites , but not dogs . i am anti shop lifting , but i am not anti merchandise . i could go on and on . i am anti gay marriage but not anti gays . get the picture . +p7678 +aVstop glorifying these idiots and you'll be better off . go browns !! +p7679 +aVyour mom must be a real low life trashy hook er +p7680 +aVso , now we know what you are by your own identification , fool , will you kindly moveon . org and stop cluttering up the place and so we intelligent posters can post ? +p7681 +aVtop scoring team , against the top defensive team .. bring on the finals !! +p7682 +aVyou are not alone ! +p7683 +aVmaybe you should read that first sentence you wrote again slowly . you are bending over to far to make an illogical point . we are starting to see your ignorance . +p7684 +aVyou have got to be fucking kidding me ! lmfao ! you have got to be the most naive fan or you're just a troll . i'm assuming you're just a troll . not all of your oppars and unnirs are virgins sweetie . this is the CUSTOM_NUMBER st century . it's rare for anyone to wait until marriage , even in korea . +p7685 +aVbecause in bills world he is always right and everyone else who disagrees is a pin head . or a zealot or a bigot . the man is a boar and bombastic . that sells you say . i will predict that his rein at the top is over , he inadvertently thought that his viewers were so sucked in that they would buy anything he says as gospel . he underestimated his audience badly . it pissed him off that the meek would dare to question his almighty wisdom . there are many people going to be raised up these days to try and prevent the takeover of this county from the rich establishment trying to tell the people what they should do . what we have found out is that most of fix have the same agenda as the dems , . to be in control ! thats whats going on here . to control the money the masses and the airwaves . keep you distracted so you wont notice whats really going on . another sun tzu law . never underestimate your opponent , big mistake . tonight they are trying to remind the people their job is to root out the facts . sorry bill it wont work with people who see a fix when its in . trying to say a poll that was flooded by romney people would make it even . look at all the other polls on these sites that you didnt get to promote on your show . of course the moneyman would see to it you were " fair " thats how you make your money . just step outside for a minute while we kill mitts opposition and when it happens you start talking about all the lies and negative campaigning . horse feathers . anybody who isn \u005c\u005c ' t for romney sees it very clearly . hmm you will know when the next ratings cycle . because thats what you are to them people . his rating numbers . they mess up that fair and balanced bit and the gig is up . he knows your hot buttons and he pushes them all the time doing what the elite do . read these boards and laugh at how stupid these folks are . its easy to get you to do or say anything they want . you are played like a deck of cards and you cant even see it . i am just a voice crying out in the wilderness with the hope at least one person hears me . have you noticed not one mormon has desputed the facts about that cult . make them prove its a lie with sources not neighbors . ever seen one rebuttal that was fact based . my word is try saith the lord . stay frosty . custom_break custom_break " i warn everyone who hears the words of the prophecy of this book : custom_break if anyone adds anything to them , god will add to him the plagues custom_break described in this book . and if anyone takes words away custom_break from this book of prophecy , god will take away from him custom_break his share in the tree of life . " ( revelation CUSTOM_NUMBER : CUSTOM_NUMBER , CUSTOM_NUMBER ) ( niv ) - biblegateway custom_break in regards to the niv changes the word . let not your heart be troubled for these things must come to pass . do not resist for this is the way it shall be . custom_break custom_break brought to you by the holy spirit . and you know who . custom_break custom_break +p7686 +aVyou are still anonymous though . +p7687 +aVCUSTOM_AT just about goalkeepers ? they laugh at everything they will never have . they don't even know the meaning of the word '' legend '' , since they have hardly ever had one . +p7688 +aVtoo thin ? yes that is what she said , while laughing and pointing , and then serving me divorce papers . :( custom_break custom_break CUSTOM_NUMBER mm is about as thin as i think it should be . just my preference . +p7689 +aVjennifer you need to learn to be by yourself . you do not need a man . +p7690 +aVthey will , but i still think they will not have as much gusto as they would have if it were santorum . +p7691 +aVi \u005c\u005c ' m single , and but when i haven \u005c\u005c ' t been , i was with guys who regarded valentine \u005c\u005c ' s day as a " card holiday , " even though they never even got me so much as a card . it makes me sad when i think about that . but i realize now that while romance is nice , i have a wonderful daughter who loves me just the way i am , and we \u005c\u005c ' re going to take the day to have some fun ( and i \u005c\u005c ' m planning on making her some cupcakes and buying her a little present , too ) and appreciate the fact that we have each other . :) +p7692 +aVholy fucking schnitt ! he called pete raping gertude ( doppeltrudy ) , the au pair " having an affair " -- there are no words .. +p7693 +aVmaking fun of catholics is not " edgy " . it \u005c\u005c ' s childish . " edgy " involves risk . it \u005c\u005c ' s not like the catholics are going to issue a fatwa and encourage people to blow her up . want to be " edgy " , ms. minaj ? do the same thing to muslims . i triple dog dare you . custom_break custom_break minaj is just a flash-in - the-pan who tries to " shock " in order to hide the fact that she \u005c\u005c ' s not particularly talented . +p7694 +aVhaving a high intelligence is also generally inverse to being a republican , so it's not all bad . +p7695 +aVCUSTOM_AT isn't he though ? " someone's talking shit about a unit i've talked shit about . pure blogging gold . +p7696 +aVdoes smoking dope harm your ability to read , or are you and duncan CUSTOM_NUMBER just chronically stupid ?? read what the guy i was responding to said , cretin . honestly .. +p7697 +aVhey CUSTOM_NUMBER hot you must be manny's cpa +p7698 +aVfuck you , you fucking dork . +p7699 +aVyes , you are the only one . they are grown men that can take it its not kids playing the game . +p7700 +aVi think she's an idiot ! all he does is cheat on her ! come on vanessa , you're gorgeous and you certainly can do much better !! +p7701 +aVi went to see the grateful dead there on acid a few times years ago and i never fell . whats the deal with this new younger stupider generation of clean cut short haired yuppie non drug users who fall and die ? +p7702 +aVwhy doesn't kenny just send out some staffers to pose as new canadians ? that'll distract ' em . +p7703 +aVpelosi is one of many , who is standing behind the most criminal , obummer . but if they stood really close together you couldn't tell them apart . they both , along with holder and all the rest of-em , are outstandingly / extremely deadly . they all look like death warmed over . but don't trust any of them . they look dead because they are dead , but they are the dead that can kill you if you aren't careful . i hope there will be some good news soon . i'm sick of this whole damn mess and more so , i'm hoping that we , the people , will have learned the lessons we're being taught on horrible government , from the horrible governmental places where the dumb are in those schools of law , all the way to the white house . +p7704 +aVsee what you get for trusting obama , canada look out your next +p7705 +aVCUSTOM_AT CUSTOM_AT custom_break custom_break how \u005c\u005c ' bout if some of those " catholics " stood up to their own bishops . " catholics " choose a hierarchical structure that lets bishops speak for them . +p7706 +aVthe only thing murray is going to beat is his racket against the ground . nole in CUSTOM_NUMBER easy sets . +p7707 +aVpoor deluded psychopaths . news flash , marriage is unnatural . it is a construct of beings that have stepped out of nature for the most part . construction , vehicles , technology .. all " unnatural " if you think about it . custom_break custom_break now , if you're talking about the pairing off into couples by animals in nature , sure .. they do that . but it has never been about property rights for them , like it used to be for humans . and there are same sex couples in nature as well , since it's about making life easier in groups than it is by yourself . so , by that fact and the logic that goes with it , gay marriage is as natural as hetero marriage . custom_break custom_break you fuckers never have a reasonable leg to stand on .. it's always your invisible sky fairy and some bullshit some cave dweller spewed CUSTOM_NUMBER years ago . step into the age of enlightenment , you might like it . +p7708 +aVall the more reason to slap the dog shit out of them rt " tenkyouplease : alcohols got you feeling like you cant get slapped +p7709 +aVhe isnt a CUSTOM_NUMBER % satirist . he's actually very cordial in person .. and does in fact use his iphone day to day . +p7710 +aVchavez is a total joke at the plate , an automatic out . he's only decent as a late-inning defensive replacement . you'd know that if you weren't so f #cking stupid . we have pearce , betemit , flaherty , and andino ( once brob comes back ) to take over in the outfield until reimold and markakis get back . none of them will make anyone's all-star team , but they all look like babe ruth at the plate compared to chavez . grow a brain , for chrissakes . your ignorance is appalling . +p7711 +aVnot if you are on a mobile device . +p7712 +aVphoto shop , botox , lipo and maybe even surgery it wouldn't suprise me ?? custom_break she looks good though ! +p7713 +aVyou guys remember john rocker .. what a stud +p7714 +aVthat nigga joe as shit fuckk out of here u dirty ass young bull +p7715 +aVcrap . pic didn't post . it's mittsy standing on what looks like a kitchen chair giving a speech . what a fucking dork this clown is . +p7716 +aVyes so u are wrong +p7717 +aVwhat a selfish slutbag . that fucking fat ass chubby cheeked bitch probably got mad because her precious baby boy was hungry . how dare he eat food ! not only do children require food to grow and become helathy adults , but this bitch probably fed them hoho \u005c\u005c ' s and twinkies . i can just hear her now " get off my food you little shit ! that \u005c\u005c ' s my motherfucking twinkie ! momma \u005c\u005c ' s got the munchies ! " then , whack with a fucking hammer . what a cunt . +p7718 +aVwere hundreds of people killed by gun runners in CUSTOM_NUMBER ?? +p7719 +aVlucky crouchy eh folks !! all you knockers are just jealous you ain't sharing a bed with her !! +p7720 +aVyou are a complete fool . slowly read what you have just written . it makes no sense . +p7721 +aVlarry sinclair , come out , come out , wherever you are ? +p7722 +aVi'm absolutely certain they'll make an outfit suitable for her age to spruce up their image . otherwise what the hell is the point of the new member ? anyway , she's a young adult now get used to it . +p7723 +aVfear the cow because he laughs at you +p7724 +aVwalker wins recall in a land slide . then come the indictments .. yummy . if bam's doj doesn't fuck it up as bad as the stevens prosecution this is gonna be good . +p7725 +aVwhat has the picture to do with the possible drowning ? oh editor . . . . +p7726 +aVyes - paris hilton is smarter than everybody else in the usa . custom_break custom_break she got very expensive jeans from her parents , and apparently that makes you very smart . +p7727 +aVwikipedia is an example of the " dumbing down " of our culture , aided and abetted by the internet . custom_break almost any nonsense can be posted on the internet , including wikipedia . +p7728 +aVholy shit . son is droppin science . +p7729 +aVliberalism is a mental disease . +p7730 +aVdo you know what my plan is if a poodle bites my kid ? to step on its fucking neck until it dies . i have no plan if a pit ever bites her . how do i get something with the size and strength of a jungle cat off her ? custom_break custom_break there are no parallels between minority ethnic groups and dogs . please drop it . +p7731 +aVid kill you if you were here . not because im a " gangsta " , but because i hate you . f * ck you . +p7732 +aVf v < k you too . +p7733 +aVCUSTOM_AT hypno i love the lion hugging video !! +p7734 +aVrosemont has some very fine middle class families living there maintaining their homes nicely . +p7735 +aVi talk about you all the time . custom_break custom_break for instance ; denial is a warm yellow river running down your leg . custom_break custom_break did you forget you have to pee sitting down .. again ? custom_break custom_break ( for the retards in the audience , i am implying that hanniturd is a woman ( yes hanniturd , the retard in the audience is you )) +p7736 +aVCUSTOM_AT gawd < i luv me all of them .. i live so far from you .. almost a continent away .. dayton , ohio +p7737 +aVfucking hot !! +p7738 +aVthankyou eps custom_break your an idiot ricdose +p7739 +aVwhen lebron wins one , your become a lebron fan +p7740 +aVare you living in the CUSTOM_NUMBER ' s when the usa had the bomb and no one else ? or are you living in the CUSTOM_NUMBER ' s and the bay of pigs ? where were you in the CUSTOM_NUMBER ' s ? remember iraq and weapons of mass destruction ? ten years later and the result ? inflated size of government ( homeland security ) lost freedoms ( patriot act ) ballooned deficit ( cost of war ) borrowed from china , and that does not account for the blood shed and loss of our children . time to turn iran into a giant glass bowl ? i'm not willing to expand the size of government , lose more freedoms , increase the deficit , borrow from china , or shed anymore blood for someone living in a time warp or israel who is itching for a fight . if israel wants to blow up iran that is their business but this is not the usa's fight . +p7741 +aVtom , you are an idiot on . you suffer from whitmenitis , aka , you find it easier to blame others for your mediocre life achievements . truth of the matter is , you simply do not have much to offer . +p7742 +aVthats fine . i fuckin hate his contract and the cost it would take to acquire him . +p7743 +aVgo back to your crapping unperfection home +p7744 +aVare you drunk ? +p7745 +aVwhat if teapiss and beckel mated , fat bastard from austin powers . +p7746 +aVi think they done lost their patience for this bs . i don't think they are going to wait any longer either . they will blow it up with or without the us's a-ok . israel is right they can't wait for iran to get more of a stockpile . they need to get rid of that or it makes it much harder for everyone else later to blow it up . russia and china definitely aren't going to take to kindly to massive contamination heading their way if they don't do it now . the us should just be ready with cement to entomb the dam things . +p7747 +aVand you are a weak bully ! +p7748 +aVyou are soo right . muslims fight muslims everywhere . muslim men degrade muslim women , everywhere . until all this can be repaired and muslims become \u005c xf CUSTOM_NUMBER ne people " , you will not go forth . custom_break you have about as much chance of this , as i have to see rocking horse dung . +p7749 +aVso what , fox news isn't real news , it's political opinion . if they want to be considered real news , and not just a bunch of blow hards , they can't go around targeting everything toward or against the democrats . +p7750 +aVaww poor lil waynisha and his menstrual antics .. first he can't get into playoff games .. now all this confused fuckery .. smh boo * hands him a cell phone * jesus is on the main line please tell him what you want +p7751 +aVwho cares what chelsea does ? +p7752 +aVman or woman or a little of both ? +p7753 +aVhow are you doing bro ? thanks for commenting and for all your help to us . god bless you loads . +p7754 +aVthis is about CUSTOM_NUMBER years overdue ! the only real answer to all this killing is to get the troops out and let the < i > people < / i > of afghanistan , and not their american appointed puppets , choose their local governments as they have been doing for thousands of years . +p7755 +aVregs are weakest ever . make believe . +p7756 +aVgoddammit guys your tv's are much further into the game than my feeds dammit +p7757 +aVno , karen , but my home is close by . you will have a lovely time no matter where you are , and you'll have to come back and explore some more ! +p7758 +aVhow about bring the troops home to their families and stop this farce . +p7759 +aVCUSTOM_AT gotta keep on them about that stuff +p7760 +aVlingering fog has been fucked for over a week bud +p7761 +aVspelling mistakes ? like i said , ignorant asshole . so go put your butt plug in and shut your mouth .. hahaha estkill CUSTOM_NUMBER , i see your getting roasted on here already , i see your bios , a lil homo from detroit whose moms a whore haha i wonder whose got the bigger mouth .. +p7762 +aVlmao .. shaq should sue your a.s. s for making stuff up that he did not say .. +p7763 +aVwe need thames to take his spot and run with it , he does done very little to justify snider being in the minors . +p7764 +aVthank you for your thoughtful and informative post lisa . you covered the pros and cons of public opinion and didn \u005c\u005c ' t shy away from stating your own . kudos . i feel it \u005c\u005c ' s your duty to say where you stand in full transparency and to balance the press that sgk is getting for the opposite reason . if both opinions are not provided then only one opinion will be weighed . readers deserve both . the difference is that you stood for yourself , not for elisa or jory . sgk leaders weren \u005c\u005c ' t so transparent , they instead used the entire organization to front their personal mission . custom_break custom_break custom_break custom_break our online " voice votes " carry far more weight than the political elections . once women understand that , they \u005c\u005c ' ll understand their responsibility to say what they think often , loudly , and with civility . custom_break custom_break custom_break custom_break i am very dismayed by sgk \u005c\u005c ' s stand because it is playing to politics and not helping women . i will not be supporting sgk any longer . there are many places that are more focused in their mission to help all women , planned parenthood is one of them . when i was a starving college student , pp was my primary health screener . later i did volunteer work at pp to pay back for my healthcare ; one of the things we were trained on was how to check yourself for lumps and why it was important . they have been consistent in their mission to help all women stay alive and healthy often during the most dire of times . +p7765 +aVas did underlying , i think . custom_break honestly , the price action doesn't make allot of sense to me , but i ' ll certainly take it +p7766 +aVgood . hopefully capcom goes out of business completely . +p7767 +aVwhich is why i will not vote for the fucker again . he has been way too effective at the evil . +p7768 +aVthat may be but you are asad , little pathetic white man man eww .. CUSTOM_NUMBER times worse you child molesting mass murdering welfare bum ! you must be deported ! +p7769 +aVthe birther movement will never end because those who cater to it will never accept that barack hussein obama is our legitimate president . custom_break custom_break it goes deeper than merely ideological differences .. +p7770 +aVwhat a fool you are , we all know that you think of nothing more than being gay . +p7771 +aVall of congress is a joke , bash em all , they all suck .. thankfully we can change things around with anew potus . bring on november +p7772 +aVwhy don't you take your pathetic intimidation attempt and shove it up your CUSTOM_AT , troll ? +p7773 +aVnigga is u stalkin me u replyed to me yesterday and now again today +p7774 +aV'' they were selling their enemies '' right now in africa they are killing custom_break their enemies , like uganda , to mention one country , and they are africans .. custom_break slavery is cruel , no matter you are yellow or green ,, +p7775 +aVnot a slave tho you idiot internet racists +p7776 +aVjust imagine what their fanny's are like !! +p7777 +aVi hope we don't get a season three . ratings were down again . +p7778 +aVall pitchers have bad days at the office , and if the possible signing of oswalt to replace lilly is an indication of things , i personally feel it is that lilly may be headed to the dl rather than traded , unless billingsley is headed to the dl . +p7779 +aVill fuck you like an ape gay boy +p7780 +aVbeen a while . its because people would rather have the c's then the bandwagoned heat . +p7781 +aVobviously you have never been there +p7782 +aVCUSTOM_AT a mi no me hagas la pelota , +p7783 +aVwith every one of your comments that i read , i realize more and more just how batshit crazy you are . +p7784 +aVyum yum eat um up .. eaat em up !! +p7785 +aVi do not think for a moment they would be a contender in the west . & nbsp ; central , sure . +p7786 +aVyes , you are +p7787 +aVlil b drops mad shitty music because he wants you to sort thru it and find the good shit , lil b has some amazing songs , everything else he drops is just to piss of lil sensitive pussies like you +p7788 +aVf you , dea . you and your useless war on drugs . stick to prescription med fraud . at least lay off the weed , that shit is safer than alcohol . +p7789 +aVi guarantee everything i say is the truth +p7790 +aVpussy bitch take my fuking house off of your picture . i know it looks better than that nasty black ass you had up there but still +p7791 +aVman why can't this be longer ? they are fucking hilarious together . loved this . best " interview " so far for sure . +p7792 +aVi suppose the fact that halliburton was the only company qualified doesn't mean anything to you . +p7793 +aVfuck it - i'm out . i'll be on espn if anyone needs me . +p7794 +aVwish i had thought of that when mine were young . may try it know with my daughter and hold her clothes , jewelry and makeup hostage ! +p7795 +aVfuck you google . +p7796 +aVonly a moron would see things the way you do . you get alot more " bang for you buck " out of the military than food stamps . +p7797 +aVwithout changing medicare , it disappears into the well of insolvency .. you do understand that don't you simple one ? +p7798 +aVyou're not the boss of cnn . +p7799 +aVCUSTOM_AT perkins is a knucklehead +p7800 +aVCUSTOM_AT incorrect . matt cooke would be suspended . +p7801 +aVlook here , cunt . i hope you get raped by the devil . i hope you get cancer , and experience the most absurdly horrible pain a human being can feel . i hope rick james slaps you right in the fuckdamn mouth . then , after all of that . i'll walk right up to you , and shoot in the fucking throat . +p7802 +aVradical mormons never killed anyone , obama's true religion , muslim , has killed many .. so you CUSTOM_NUMBER people , he is here , he's in the white house .. read your bible and learn .. +p7803 +aValways better than a limp dick burrito . +p7804 +aVif that happens , they helicpotercopilot will buy you a CUSTOM_NUMBER pack , when you turn CUSTOM_NUMBER :) custom_break custom_break just fucking with you tbone , you know i love you . i'll fed ex you a bottle of they ketel CUSTOM_NUMBER overnight +p7805 +aVs \u005c xed lo predica el hermano rock you ! +p7806 +aVthe gop has already lost this election because of all the focus on anti-gay and anti-abortion rhetoric . custom_break these are ugly divisive issues that cannot ever be won . custom_break custom_break if you can't beat a very unpopular president during bad economic times , who can you beat ? custom_break custom_break time to stop pandering to the shrinking social conservative base and return the focus to taxes , national security , and job-creation proposals . custom_break custom_break +p7807 +aVyou must be one of the dumb ones . custom_break custom_break here , let me explain it to you .. when you have an inflated catheter inside you , pulling it out will cause permanent injury . there is nothing for this man to " get over " . custom_break custom_break he's been damaged and needs to be made whole again . pay the man . custom_break custom_break and you , you need to go out to your local dollar store and buy yourself a new brain , the one you have currently doesn't seem to be working . +p7808 +aVfuck i keep talking to myself ! i guess i need to get smart to before i can suck some delicious white cock +p7809 +aVholy sh yt , you are one du mb ph uck +p7810 +aVthis week the obama-funded solar company went belly up . custom_break energy conversion devices managed to blow $ CUSTOM_NUMBER . CUSTOM_NUMBER million in tax credits before filing for bankruptcy . custom_break reuters reported : custom_break custom_break custom_break lightweight solar product maker energy conversion devices inc filed for bankruptcy protection on tuesday , the latest in a string of solar companies that have collapsed in an industry shakeout . custom_break custom_break the company , whose filing follows years of losses and months of public discussions with bondholders , said it would sell its united solar ovonic unit and other assets in bankruptcy . custom_break custom_break energy conversion , whose solar laminate products are used for panels on rooftops and buildings , said it would continue to operate during the sale process . custom_break custom_break of course \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER democrats praised the company as one of his solar success stories before they tanked . custom_break read more at gateway pundit .. +p7811 +aVlets start back up with the libturdz and teaa tard name calling +p7812 +aVyou are a lying son of a bitch . let's see you post some facts supporting your assertion . +p7813 +aVirresponsible headline and journalism . sensationalism at it's best . i guess you guys will do anything to sell newspapers - even using misleading headlines . please explain how is this a gift ? it is an investment by our country . +p7814 +aVyour absolutely right , there is no way of explaining it to a moron like you - go back to smokiung your crack , CUSTOM_NUMBER ss-hole ! +p7815 +aVhey right wing moron " you kidding me " , you're the cutest little gop whine baby on this forum . +p7816 +aVamazing .. custom_break custom_break mountain out of a mole hill . +p7817 +aVwhen the anc gets its house in order , CUSTOM_NUMBER th of neva !! ha ha ha +p7818 +aVthat sucks .. plug in f CUSTOM_NUMBER .. wake the fuck up douch bags .. i can see my new ramp truck having batterys in it .. why dont you just put in a real large spring in it and wind it up just before you to on a tow .. do you think we will run out of crude oil .. i dont think so .. the oil companys will just be making more money and the goverment is being controled by them .. fuck heads ! +p7819 +aVno you are not " born " craving something deviant , by definition . it \u005c\u005c ' s a dumb argument . however , as i said , sick deviants have a right to do as they wish in their bedroom . but it is deviant , and abnormal , and they need to keep it out of everyone else \u005c\u005c ' s face . all i am saying . enough with the disgusting gay pride parades , etc . +p7820 +aVyes ! thank fucking god ! ( not that he's injured or that he suffered a concussion , but because he's out of the no way out main event ) +p7821 +aVpussy ass hole movie chatta ra pawan hit ivvaledani edo cinema gabbar singh chusi frustration lo inka medata hit istado ledo ani gs bagundi antunnaru movie worst panja CUSTOM_NUMBER % better annavaram CUSTOM_NUMBER % better than gabbar singh +p7822 +aVlisten here you moron . home schooling is better especially through a computer . i go to ecot though it may be my first and last year cause i'm a senior doesn't make me a social reject !! in fact my friends that i've made aren't social rejects either !! i'm getting better grades then i ever have in public school so stick that in your juice box and suck it mr. i-think - i-know - it-all !! +p7823 +aVidiot is yr father ! +p7824 +aVnot really . this man doesn't seem to do his homework , or doesn't check his articles , or simply doesn't know very much about history . +p7825 +aVflynn started two games in the nfl . his other game was a very good game in a loss to ne . custom_break custom_break +p7826 +aVthe things i would do to her .. +p7827 +aVand you postal , were hatched +p7828 +aV.. ron paul .. is / was .. always .. for years .. batshit crazy !! +p7829 +aVi was in littlehamton was mad but made a change to boring day at work . +p7830 +aVas i say before , you are as gay as a CUSTOM_NUMBER dollar bill . +p7831 +aVbuddy you sound like a complete clown on here running your mouth +p7832 +aVb . ball_player CUSTOM_NUMBER - < b > heat fans since CUSTOM_NUMBER ' custom_break celtics fans since CUSTOM_NUMBER ' custom_break okc fans since CUSTOM_NUMBER ' custom_break spurs fans since CUSTOM_NUMBER custom_break bobcats fan since n / a < / b > custom_break custom_break how old are you son ? +p7833 +aVwould you also pay him for every penny jpm has earned under his watch ?? typical lib , just want to focus on a very small piece of the total picture . +p7834 +aVbush has been long gone . don't you lib itur ds have anything be tter to cam pair ba ry to ?? if not then shut your ob ummer hol e . +p7835 +aVhate that fucking asshole moron +p7836 +aVey bitch nigga ebos ! custom_break if ur deymonds lil brother u betta shut yo mouth mothafucka ! +p7837 +aVyou may be many things but i doubt smart being is one of them . the details i referred to were your " sun profile " , not the story . no wonder the uk has gone wild . perhaps you would be happier in a third world country ! +p7838 +aVi didn't realize pop has a weak eye .. +p7839 +aVno shut up . black people don't need to be ' approved of ' or ' pretty enough ' for the korean people . fuck that shit . i am so sick of black fans thinking that way . truth is most korean people don't find dark skin beautiful . period . they also stereotype us as criminals and slutty . it's not us that need to change to fit their ideals , they have to change their backwards ass ignorant racist way of thinking . so you can take your ' michelle is not idol material ' and shove it please . +p7840 +aVyour syntax is pathetic . and you are a cocksucking batshit motherfucker to boot . +p7841 +aVCUSTOM_AT CUSTOM_AT you're commenting using pure stereotypes and ignorance . first of all obama has surged thousand of troops into afghanistan , killed us citizens without a trial and passed a law that would allow indefinite detention of us citizens . sounds like perpetual war to me . \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break second of all , ron paul is for bringing all our troops home and closing all our foreign bases . so , when you say he voted for perpetual war , your not looking at his legislative record . ron paul is known as the most anti-war politician of either party . so , next time you decide to write a comment , do some reading before you put your foot in your mouth because you've made yourself into a completely ignorant as .. uninformed people like yourself is the reason this country is such a mess . you don't have the slightest idea of what you're saying . \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break i ask , when will this wave of perpetual idiocy of voters who have the memory of a two year old and vote based on the latest campaign speeches and smears without checking a candidates legislative record ? +p7842 +aVkind of hard to be a suicide bomber when you are inside an ironlung . +p7843 +aVCUSTOM_AT CUSTOM_AT needs to give me a fucking like ground corn , my bad +p7844 +aVde gea is fine . tell me one keeper that hasn't had bad moments . i've been watching football for CUSTOM_NUMBER years and can't remember one . i trust him more than any other keeper in pl at the moment . +p7845 +aVhave your eyes examined cause you are blind . +p7846 +aVyep , you're a darky . +p7847 +aVlol i was like la dee dah , up until page CUSTOM_NUMBER then i was like omfg hot man on man surprise mindfuck ! +p7848 +aVlol they did forget to put the feet on in the scene in the kitchen +p7849 +aVmccain is a disgrace to our country . a war hero who is now acting like a sore loser since he lost election in CUSTOM_NUMBER . custom_break custom_break this war monger will not rest until they go away from senate . +p7850 +aVthis is a fake ass bitch from west of boston .. he is a paid rat for worcester pd .. fuck u big o u suck ,, u never slang in worcester . u spend time at the gay movie theater getting cum in your beard .. fuck u fat bitch +p7851 +aVcustom_break \u005c\u005c t \u005c\u005c t custom_break custom_break \u005c\u005c t \u005c\u005c t \u005c\u005c t custom_break \u005c\u005c t \u005c\u005c t \u005c\u005c t \u005c\u005c t \u005c\u005c t custom_break custom_break \u005c\u005c t \u005c\u005c t \u005c\u005c t " obama \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s budget calls for pay raises ; federal workforce size would remain flat " CUSTOM_URL custom_break custom_break for the obama puppet followers out there . his intention is for the incremental collapse of our economy and sovereignty by spending us into oblivion , then folding us into a global governance and monetary system . the idea behind giving federal " workers " a raise , is purely a vote-whore tactic . custom_break +p7852 +aVyou truly are a mental midget . +p7853 +aVi want to know why you don't have a job - is it because you were busted at work with your kiddieporn ? +p7854 +aVi raze your pathetic apple orchard to build my majestic beach house . +p7855 +aV< i > [ juries are made up of people in the community who do not like to see custom_break students beat up for exercising their first amendment rights of free custom_break speech and assembly . ] < / i > custom_break custom_break except that's now what happened , you little shit-stirring fruit-loop . you also fail to mention that juries are usually made up of people who are generally civic minded and respectful of the legal process , so they aren't usually sympathetic of little assholes who merely wish to engage in physical confrontations . now why don't you stop making a pest of yourself and get a real job ? +p7856 +aVspamming the liberal troll way . +p7857 +aVare you really this stupid ? +p7858 +aVtell you what though , the lasses in newcastle will still be out on saturday night , in their mini skirts and skimpy tops ! +p7859 +aVno kosh seeing the childish behaviour has already made the duck and little look very foolish already . it shows how pathetic they are . why did they not just face up like men ? +p7860 +aVthis guy is such a loser . nevada , you really suck ! this guy is evil personified .. +p7861 +aVit's no big deal , unless you are a person who appreciates human decency . +p7862 +aVall it takes for the others to become legal , is supporters such as yourself and your governors signature . as proven with this gay marriage law . +p7863 +aVdear aamir and team , custom_break i am extremely moved with each episode of satyamev jayate . hats off to you for awakening people like me who can be part of sharing the social responsibility . i will also ask my friends to be part of your movement by seeing your programme and give back to the society in whatever possible means . i also request you to air this programme as many times as possible and also in other regional languages to reach all indians of this country . ending of the episode is also damn good through beautiful music . keep rocking . people like you are still there in the country to make difference and hope for shining india . jai hind . +p7864 +aVwow you talk about fatigue lakers need some rest +p7865 +aVthe al qaeda affiliate in somalia has mocked the new $ CUSTOM_NUMBER million bounty on its top leaders heads by offering its own bounty for president obama and secretary of state hillary clinton \u005c u CUSTOM_NUMBER CUSTOM_NUMBER camels for obama and CUSTOM_NUMBER chickens for clinton . custom_break custom_break " anyone who helps the mujahideen find the whereabouts of obama and hillary clinton will be rewarded with CUSTOM_NUMBER camels to the information leading to obama and CUSTOM_NUMBER hens and CUSTOM_NUMBER cocks for hillary , " said senior shabaab commander fuad mohamed khalaf in a statement reported on numerous websites " . custom_break custom_break could i have my camels steamed arby-style , please ? +p7866 +aVi think you are hooked now CUSTOM_AT weaver sadler +p7867 +aVyou do know you are an asshole and started all the shit with him . you jews have been doing the same for years . banning together to the detriment of decent people . another reason most in the world would cheer for the nazis today . & nbsp ; +p7868 +aVnarrow minded little fool you are +p7869 +aVCUSTOM_AT pelton v . hollinger ! custom_break custom_break i'm interested in pelton's take on whether or not the storm should tank . +p7870 +aVhow about the lefts war on american constitution ? you were including mitt as a lefty aren't you . +p7871 +aVyou are better suited to use a dumb phones . no point of you using a smart phone . +p7872 +aVwxcraig custom_break sheep me hasn't been posting all day and nobody was talking about rdb . you just appeared out of no where giggity and started attacking him for nothing . custom_break CUSTOM_NUMBER fans like this . custom_break CUSTOM_NUMBER seconds ago \u005c xb CUSTOM_NUMBER $ @ % ! ing loving this .. \u005c xb CUSTOM_NUMBER reply \u005c xb CUSTOM_NUMBER quote \u005c xb CUSTOM_NUMBER flag +p7873 +aVsure , it was . i asked mr. hawkins why we you allowed to continually call others pedophiles and he banned your ass . i can provide the email copy if you like . don't be a pussy and deny it . +p7874 +aVyour rant is typical of a believer - filled with anger towards those who espouse common sense and who realize that science can answer our questions and solve our problems - not superstition . you attempt to assign ' good ' to your biblical god but this same god commanded his followers to murder innocents and condoned rape and human sacrifice . perhaps you should read your bible with an open mind . +p7875 +aVplease ian , come through with a hit . +p7876 +aVhow does banning gay marriage lower hiv transmission ? +p7877 +aVmoss you are a real chop .. wake up and smell the roses bud .. +p7878 +aVCUSTOM_AT i would add marvin bullett to that list .. he's a better choice imo +p7879 +aVanother lefty trying to look like a right-wing racist . the dems are the racists .. period ! +p7880 +aVCUSTOM_AT mushrooms are fun . +p7881 +aVand you point is ? +p7882 +aVwhich one is missing ? i thought their were CUSTOM_NUMBER in jls +p7883 +aVreally pac does make it boring or put you to sleep . manny is not going to say anything bad about whoever he fights , if you notice he leave it for roach to put the fighter down . in other words manny does his talking in the ring . +p7884 +aVbefore making a stupida $$ comment .. you dumbfuck .. try looking up her picture first ! she is white and very over-weight . +p7885 +aVi just can't imagine what took the justice department so long . the laws on this are clear . florida doesn't have a chance in court . +p7886 +aVis anyone else here totally outraged by the " nanny state " telling us everything we can and can \u005c\u005c ' t do , besides myself ? we , the taxpaying citizenry , actually had to pay these socialist / progressive / communistic / marxist ass-wipe - idiots to conduct this ridiculous study !! how about they spend the money more correctly by investigating all of the corrupt and fraudulent voting practices of the demo-libu - tards ?? +p7887 +aVhey .. obamaheads .. what ya gonna do when gasoline blows past $ CUSTOM_NUMBER . CUSTOM_NUMBER / gallon ? what ya gonna do when it cost $ CUSTOM_NUMBER . CUSTOM_NUMBER to tank up your toyota prius ? think i'm exagerating ? what ya think is gonna happen when iran decides to go crazy and sink a tanker in the straits of hormuz , or suddenly launch an icbm at tel aviv or even new york . ? no way you say ? who would haver even imagined an arab srping sweeping across the middle east on such a vast scale . you think that empty suit in the oval office is gonna come to your help . hell he wants to give the arar spring crowd $ CUSTOM_NUMBER bil . why don't you suck it up and admit that you guys elected a doofus ? a doofus who will lead this country right over the cliff . +p7888 +aVevery team has the ability to beat anybody . that's why they are professionals . come playoff time that changes . +p7889 +aVburn your bra's +p7890 +aVCUSTOM_AT , custom_break custom_break or a last minute unannounced hike in the appalachians - yeaah riight , custom_break custom_break or ditching the wife who was disfigured in an auto accident for very wealthy mistress , custom_break custom_break or ditching first wife sick with cancer for mistress then ditching CUSTOM_NUMBER nd wife ( CUSTOM_NUMBER st mistress ) for new mistress , custom_break custom_break etc . +p7891 +aVmiddle class wages reached their peak in the mid - CUSTOM_NUMBER ' s while nixon was president . reagan was the first president whose term marked the decline of the middle class . +p7892 +aVu just schooled me bro . but our strength on defense has always ben our lb core and now we lacc production from our lb +p7893 +aVdan_amd custom_break custom_break custom_break custom_break custom_break you have realy no clue on every single idiotic comment of all your posts . custom_break we all don't enjoy your stupid pro amd b : u : l : l : s : h : i : t ignorance . custom_break please crawl back then in the fat ass of your gay loving buddy charlie custom_break demerjian semiinaccurate and try to find the light inside - u stupid fag ! custom_break custom_break custom_break custom_break custom_break we realy don't need and want your post here anymore ! +p7894 +aVthe same can be said about your posts , red . dull , unimaginative , unsupported , jaded , biased , racist , homophobic . you are essentially a miserable human being . not as miserable as crapkiller or sitm , but pitiful nonetheless . +p7895 +aVdon't worry mate - cowell's CUSTOM_NUMBER minutes are almost up . +p7896 +aVbarry -- custom_break you are absolutely right on !! +p7897 +aVmy recipe uses shallots , but if you prefer onions , that will work too . +p7898 +aVumm theres somthing called the internet go to google and type in porn there ya go and guess what the best part is its free .. +p7899 +aVmaybe you should look at a youtube video by zach wahls called " the testimony " . he and his sister were raised by gay parents . you might find it enlightening to hear it from that point of view . +p7900 +aVavengers is still counting by the hundreds ( of millions ) . in CUSTOM_NUMBER weeks , its past CUSTOM_NUMBER , just domestically . i think that there are simply not many records left to break . it already destroyed most of them , so now it seems slower going . again the drop-off rate itself is actually dropping off , from CUSTOM_NUMBER % to CUSTOM_NUMBER % to CUSTOM_NUMBER % . it still has several big numbers left to tick ( as some of the guys from work , and i , go back ) . +p7901 +aVi like the pictures . custom_break custom_break you know she just wants to ask , " are you fucking retarded ? +p7902 +aVwhen you blacks take a shit does it come out purple ? when you piss does it come out green ? +p7903 +aVas is your mother . . . . . who is the . beastiality whore . custom_break custom_break lighten up . . . . " it's comedy !! " bwaahh !! +p7904 +aVhe's not even signed yet and already he's admiring the arsenal . custom_break custom_break i bet he's gutted arsene didn't want him . custom_break custom_break never mind mate , you got second best , be grateful for that . +p7905 +aVlike your mom +p7906 +aVCUSTOM_AT okay the delorean is broken anyway +p7907 +aVis it just me or is everybody sick to the teeth about this tevez carry on ?? +p7908 +aVoh no it's much cooler to be able to blow up the planet CUSTOM_NUMBER times over then simply CUSTOM_NUMBER times over . +p7909 +aVfuck fuck fuck d : this is trolls day - . - all the trolls united - . - +p7910 +aVyou should have someone proof read your posts . +p7911 +aVi dont think you will . if the kings win the refs will get blamed for it . +p7912 +aVkeep it movin bitch ass nigga +p7913 +aVtwo friends of mine are both public school teachers and both have dui's . +p7914 +aVi'm used to idiots like you jumping in < b > after < / b > your team actually does something . i've been here and will continue to be here after you're long gone because the niners will suck again soon . +p7915 +aVw t f are you ranting about adolf ? +p7916 +aVif he's calling some bitch " his girl , " he doesn't deserve you . save yourself for someone who sees past the superficial . you deserve a man who will treat you as his one and only , not just another girl . and be worth it ! be the girlfriend a true man deserves . :) you'll win in the end . +p7917 +aVno kkonservative sunmedia and fans here are the true racist , they are here all day everyday spitting hateful venom , i just do the same in reverse . if you have a problem with me , then say something to them ! unless you are a kkonservative racist too ? hmm . +p7918 +aVso the pools aren't open sundays ? the hell are my taxes paying for ? +p7919 +aVno more juice , and more more fielder +p7920 +aVit's rumored you're a fkucing moron +p7921 +aVyou don't control who replies to any comment posted here . +p7922 +aVaw , vicky < CUSTOM_NUMBER , you too easy to detect .. you'll never be able to mind your tongue well enough to fool anyone with another id for very long . one problem is your immense ego . you need to feel like you matter . you need to feel like your name is recognized to feel important . you are too full of yourself to remain obscure for very long . you are such an idiot !! +p7923 +aVthe right wing , cone headed tea baggers cannot adjust to the fact that president obama and the democratic party has the ups on foreign policy and keeping us safe . what a bunch of hypocrites . +p7924 +aVmm , hmm thweety . whatever princess progressive . +p7925 +aVno more government jobs , no more subsidies , no more health benefits , no medicare , social security , etc . +p7926 +aVanother idi CUSTOM_NUMBER t who did not rtfa . +p7927 +aVyou're a moron . i cannot believe people are complaining about freedom of choice . +p7928 +aVmorcar .. you are hilarious custom_break custom_break the whole world was at war with the nazis and it took CUSTOM_NUMBER years to defeat them but u expect a small village full of farmers and the likes to have stopped them ?? custom_break custom_break on what planet were you born ?? +p7929 +aVwhat the fuck ? +p7930 +aVi don't know your unsolicited advice - let me vent out my frustration before i cum into your mouth - you sound like freaakin faggot . +p7931 +aVdon't be fooled .. the girl is american custom_break van jones is an avowed communist and the other white guy following him up is an idiot .. an unemployed idiot i think . +p7932 +aVgood idea , use your money and go out and create a job ! +p7933 +aVand your point is ? +p7934 +aVcbf is like otis from the andy griffith show +p7935 +aVnigga fuck u t-bone nd who eva else come to chicago and yo ass gne be on a shirt .. swerve CUSTOM_NUMBER hitsquad +p7936 +aVhe goes on all the sites and spews hatred and tosses out challenges . +p7937 +aVso you fuck your CUSTOM_NUMBER dogs , your a sick fuuk . custom_break by bitches i was talking about women . custom_break but the point you just tried to make makes me want to fuk you up even more . +p7938 +aVf * & k you mtv . +p7939 +aVyou are disgusting . absolutely disgusting . there is a young woman clinging to life and you feel the need to pass judgement . judge not lest you be judged . +p7940 +aVwhy does your profile say " corrupt media " ? and yet you post under fredd . +p7941 +aVdrago , you didn't buy usher's album ? you are obviously racist then . you won't buy a black artist's album because you don't like black people . +p7942 +aVplease stop the money going to pakistan .. also please stop travel for british citizens to this destination unless vetted and okayed by the authorities , they are free to come and go as they please back and forth .. also i say ban the sending of money wire transfers back to that counrty from the u.k. .. you only have to walk down the high streets of east london and you will see the amount of places where you can send money to there with no i . d needed ! +p7943 +aVyou are a friggin moron . oh you didn't get the memo ? sorry custom_break custom_break you are a friggin moron !! +p7944 +aVxanax was her death blow . that stuff is totally dangerous because you build a tolerance to it so quickly and if you stop abruptly , you could d ie . it is so insidious because you keep taking it more and more and it affects your memory to the point that you forget how much you took . you take more because it loses it \u005c\u005c ' s " high " effects yet its memory destroying effects get worse and you get to a point that you don \u005c\u005c ' t even know what you are doing anymore . mix some serious partying in and you have a recipe for disaster . she probably was so drunk and drugged that she didn \u005c\u005c ' t know how much xanax she took , ( you can easily forget that you took a dose if you have been high on them for days ) went up to her room , took another big dose which was the kil ler dose and the rest is history . +p7945 +aVyou're really not helping your cause . +p7946 +aVbecause you are a hater +p7947 +aVnone really knows what obama is +p7948 +aVwhoever had the aldasity to compare that quitter to jordan has to be born from CUSTOM_NUMBER on up never seen a champion at work +p7949 +aVfoolish rube . we blew $ CUSTOM_NUMBER trillion already on that stupidity . +p7950 +aVreally ? than why are there over CUSTOM_NUMBER states that are against gay marriage ?? get your shit straight libturd ! +p7951 +aVi admit i like that freaky shit she talks about . i fucking love it but it's hard to get pass that face though . +p7952 +aVyou dirty fucker +p7953 +aVbetty white said the if you have balls your weak . a vagina makes you strong because it keeps taking a beating . she is right you know . we should listen to our elders +p7954 +aVg-d , you rally are an idiot ! the article talks of deportation . and , you're talking about lynching ? what next anna ? is your little mind going to start imagining concentration camps in the negev ? with mass gas chambers & cremetoriums ? how many sub-saharan refugees has your country welcomed ? +p7955 +aVnot the hurricane though you can keep that lol +p7956 +aVit would fuck itself so hard . +p7957 +aVdude .. you are arguing with a birther .. +p7958 +aVactually the us needs to walk its own talk ! we preach to others about human rights but it's the us killing people ( and its own citizens ) with drones on presidential say-so ! have you been living under a rock for thepast decade ? our consitution ( bill of rights ) is being shredded ! the us is trying to suck uzbekistani balls for the energy game and to establish us forces in the region to " contain " chinese influence in their own backyard ! ( the usbek gov't makes china look like a bunch of liberals ! ) +p7959 +aVokay , you blew it .. now he knows we know .. !! bummer won't like you .. and we all pray to bummer .. well , if you stand on the left you do .. umm .. watch the trolls go nuts now .. lmao +p7960 +aVi was messing with that girl and you guys all stepped up like its your business lol get a life people .. it's a forum .. not real life +p7961 +aVas a woman " . what's it like , to be " as a woman " ? or , a french or greek woman or whatever you are . what nonsense . meanwhile the muslims rape your continent . +p7962 +aVi love you . not even kidding . you just made my life whole again . you are a rock star . +p7963 +aVamanda ! wish you lived closer !! i'm sure your moms are way better ; ) +p7964 +aVeverything in your post that i am replying to has nothing to do with what is taking place . we have a president who is wiping away all state rights in an effort to control everything via the whitehouse . usa does mean the united states of america after all . custom_break the guy is desperately attempting to even have americans suck it up and betray their core religious belief \u005c\u005c ' s because it won \u005c\u005c ' t jib with his " centralized government " ideology . custom_break i suggest you get over it sir , what he is doing is not american in any way shape or form . custom_break and i don \u005c\u005c ' t remember complaining about taxing , i have been complaining about the spending . your trying to put the cart before the horse , not going to fly sir . +p7965 +aVrepublicans are disrespectful and really don't care about the american people .. this has nothing to do with f & f . they really just want to make the president look bad . their are real issues out that to focus on !! +p7966 +aVhey media matters spin this .. the democrats under dear leader harr reid havent passed a budget in CUSTOM_NUMBER days exactly . the clueless white house budget director tried ( rather pathetically i might add .. ) to blame it on the republicans ? he says its because they need a CUSTOM_NUMBER vote super majority which they dont .. they just need a simple majority .. which the " do nothing democrat congress " has had for the last CUSTOM_NUMBER days . so what is the excuse ? because they dont want to have to force their vulnerable members seeking re-election to have to vote on a budget that should offend hard working taxpayers . and if they dont have a budget printed out then its easier to blow that budget out of the water without taking the heat they deserve . its time the people that owned the white house , the senate and the house for the first CUSTOM_NUMBER whole years of this idiots administration to own up to the mess they " created or saved " +p7967 +aVokay booby , i don't let my kids watch fox cartoons or shows after CUSTOM_NUMBER pm , because they sell and push sexual promiscuity no family values . custom_break custom_break i'm merely pointing out all the ass-clowns who are being duped by this international media giant that has an agenda . there is nothing fair and balanced about fox , and they are definitely not promoting family values . custom_break custom_break but they are very good at packaging it so morons believe they are .. custom_break custom_break so by all means continue to be programmed and watch your fox news . +p7968 +aVyeah its difficult if your chick thought you didn't give a fuck , and then all of a sudden you act like you can't live without her . custom_break custom_break on the bright side though , now she knows you do give a fuck . which is a good thing . now though , the only play is to back off , and let her miss you . +p7969 +aVthis place will become another millenium dome .. spurs are not a big enough club for this sort of stadium .. its got ' failure as a football stadium and thus becomes a concert arena to pay the bills ' written all over it .. and the funny thing is .. who the hell will travel to tottenham for a concert ?? . there will be a big white elephant in tottenham to replace the rusty chicken .. hahahahahaha custom_break custom_break custom_break custom_break +p7970 +aV< strong > me and mine are just back-up singers here , part of the joe . my . god . choir .. and i say : yes to everything mr. beeblmeyer stated above . and to the critic of joe jervis : i say : horsepiss ! & nbsp ; & nbsp ; news is da & nbsp ; news ; and ya print the truth , that is the whole fucking point . & nbsp ; well done joe . & nbsp ; < / strong > +p7971 +aVwhen a decision goes against them why do all foreign players look like you've just raped their wife , stolen their dog and shit in their bed ? +p7972 +aVand your'e a baseball fan ? +p7973 +aVdon't forget we supplied arms and training to the afgans torturing their soldiers . now it has come back around . +p7974 +aVocapoas .. you are twisting words +p7975 +aVfuck . i love this brand gibson +p7976 +aVcity custom_break custom_break chelsea custom_break custom_break united custom_break custom_break arsenal custom_break custom_break liverpool custom_break custom_break tottenham custom_break custom_break newcastle custom_break custom_break everton custom_break custom_break fulham +p7977 +aVyou got all this payroll standing around .. " god , what a fucking great quote . +p7978 +aVbut , dante , with all due respect , you are a hard core partisan . custom_break custom_break you do not accept facts which counter your stated positions . custom_break custom_break you falsely call government websites " right wing blogs " custom_break custom_break you never furnish a documented fact in support of your own positions while demanding them of others . custom_break custom_break you refuse to even discuss any opposing positions in a civil manner , choosing instead to call your conversants , liars , stupid , etc . custom_break custom_break in short , your posts demonstrate you to be a hard core ideologue , devoid of any ability to think critically . +p7979 +aVyou have to have a truly twisted and evil mind to think up something like this bill . could it be one of alec's concoctions ? +p7980 +aVCUSTOM_AT . fries the prayer breakfast has been going on for years and presidents over the decades have gone to these events . +p7981 +aVCUSTOM_AT girl oh , you just made my heart skip a beat . it is sort of embarrassing to write about your mental health challenges on the internet . i appreciate you saying that . and no , you're not a weakling . i don't think any of us handles stress as well as we seem to on facebook . +p7982 +aVhe's a islamic recruit into terrorism . +p7983 +aVparents " he was visiting his dad's fiance , geez dude you really are completely stupid +p7984 +aVhuman intelligence at its simplified extreme . +p7985 +aVsuck my dick bitches +p7986 +aVworthless scumbag . you think he didn't threaten to hurt that baby in the middle of all that . should never see the light of day .. but of course he'll be out of jail in CUSTOM_NUMBER years to rape again +p7987 +aVanother CUSTOM_NUMBER up CUSTOM_NUMBER down for zito would be nice +p7988 +aVexactly ! custom_break see , you don't learn quality facts like that in school . they tell you you have to spend weeks in the hospital , well , fuck them . +p7989 +aVhe seemed very sour that first hour or so . like i was saying , i think he shines on the stuff that means more to him . i was still elated to see him live finally . +p7990 +aVaww , poor baby custom_break custom_break i think you're just jealous because you spent your spring break at the pond in te back of the trailer park with the other idiot rednecks +p7991 +aVchoosing to not eat animals doesn't make you a pussy . go choke on a corndog , bitch . +p7992 +aVthat's a fucking pennis ?? \u005c xbf ? \u005c xbf \u005c xbf ? \u005c xbf ? \u005c xbf ? \u005c xbf ? \u005c xbf ? bloody lol !! +p7993 +aVworked six christmas days in a row for the overtime +p7994 +aVthey just need to borrow money from daddy to start a business ! +p7995 +aVhe can fuck me anytime !! i'll do whatever he wants +p7996 +aVunions don't cheat , management does . as well as politicians . wisconsin sees that now . +p7997 +aVjanab haroon sahib , custom_break custom_break imran khan ko lower middle class ka likh kar aap nay apnay ghubbaray say hawa nikal dee . bhai itna favoratism acha nahin hay , you will lose respect of your readers +p7998 +aVwait , let me get my boots on . it's getting deep here . you do know you are just repeating right wing pablum that has been proven false , don't you ? +p7999 +aVapa tindakan jakim ?? +p8000 +aVunlock your cap lock . refrain from the vulgar language , as it makes you look custom_break ignorant . yes-these gullible , naive people go to her . they don't know any custom_break better . we already know this . what's your point ? speak rationally-or not custom_break at all . lay off the energy drinks and the michael jackson music . +p8001 +aVyou a fucking little coward of a bitch . +p8002 +aVhow about trying this .. have your kids come home before CUSTOM_NUMBER am say about CUSTOM_NUMBER pm he is CUSTOM_NUMBER take responsability for your kids +p8003 +aVnice body , chest . but the penis ? maybe crowded ? but when u go under .. +p8004 +aVa baby of any species that is killed for food is sad . but i think you miss the concept of what it means to be a provider species . +p8005 +aVoh poor you .. you are judged for being black .. then poor me , i have to listen to your whiny black azz +p8006 +aVwell , i sure ain't for the intruder ! but some more liberal fella might want to discuss terms - like you can have my money , don't hurt me . or , get out of my house or i'll blow you away . personally , i don't believe in negotiating with vermin . +p8007 +aV< strong > whom the gods would destroy < / strong > custom_break custom_break custom_break it seems that < strong > obama , in a classic act of hubris , has created the means of his own destruction . < / strong > through his great historical contribution , his health care bill , he has struck what was surely < strong > intended to be a lethal blow against the oldest organization on earth -- an organization with something on the order of a billion members , with a cadre of hundreds of thousands of highly trained and dedicated personnel , and a history of overcoming political threats that make obama look like a kindergartner . custom_break custom_break i \u005c\u005c ' m referring , of course , to the catholic church < / strong > . now , i don \u005c\u005c ' t mean that the archangel gabriel will appear out of the east to scourge the administration with a blazing sword , though i would pay to see that . what i \u005c\u005c ' m saying is that < strong > obama has at last taken the step that we all knew he had in him , the ultimate act of arrogance and contempt that will bring the forces of history down upon him . < / strong > custom_break custom_break the left has always underestimated the catholic church . " < strong > how many divisions has the pope ? " stalin once asked molotov , mocking the church \u005c\u005c ' s powerlessness in the modern era . he was not around to see john paul ii rend the bolshevik kingdom in twain at the climax of the cold war , utilizing the only forces he required : moral certainty and absolute faith in the divine mission . < / strong > most american leftists are a little different , viewing the church as an anachronism , obsessed with medieval ideas having no place in the third millennium and populated with strange figures in outmoded clothing , if not with an endless parade of child-molesters . custom_break custom_break < strong > what they overlook is two thousand years of history < / strong > . an organization does not survive for that length of time -- and no other organization has -- without internalizing things not completely understood by even the deepest thinkers among us . < strong > custom_break custom_break the church survived the fall of rome , the barbarians , the first muslim upsurge , several schisms , the renaissance princes , the CUSTOM_NUMBER th-century totalitarians , and its own plunges into decadence , and it will also survive modernism . < / strong > which is in fact what it confronts in obama : a man of vast though superficial sophistication and little insight who has punched all the tickets available to him in his epoch and culture and truly believes there is nothing else . < strong > and now this man , afraid of revealing his own college transcripts , thinks he can take on the church of peter , founded a millennium before the appearance of any nation now existing on this earth . < / strong > custom_break custom_break custom_break read more : CUSTOM_URL #ixzz1mknby0d3 +p8008 +aVare you fucking kidding me ? ! +p8009 +aVwe know whom obama loves .. himself , only and always . +p8010 +aVkachina CUSTOM_NUMBER are you kidding or just so stupid the wants to run the country he can't run a household budget oh wait lets blame it on the banks bastards want there money back ah you have to love the ndp +p8011 +aVyeah , i bet you inbred hillbilly . +p8012 +aV< span > < span > < span > < span > chiara , hai fatto tutto da sola . io ho commentato quello che ho letto sottolineando una tendenza generale . custom_break custom_break < / span > < / span > < / span > < / span > +p8013 +aVjust need to sign on then , no worries benefits will ensure ther stay +p8014 +aVthought it would be lung cancer ! +p8015 +aVupdates may be slow , but atleast you have a reason to update .. not just for a facebook integration . and ios is small and doesnt have much that in it , except the apps . so its obvious updating is easy . custom_break custom_break and i can always but custom rom with android CUSTOM_NUMBER . CUSTOM_NUMBER on my phone , so android wins again ! ; ] +p8016 +aVonly her palms and the bottom of her feet are white ! +p8017 +aVwooww , you really are an idiot .. you need to go to school .. like really bad .. +p8018 +aVclaudell washington was a starter too . +p8019 +aVyou're a sick fuck . +p8020 +aVwhats your point ? who ever scores the most wins +p8021 +aVCUSTOM_AT CUSTOM_AT see just like i said - someone has to fucking score . +p8022 +aVholy shit . i didn't realize that . +p8023 +aVwhere do those blessings come from ? +p8024 +aVstupid jerks called child rape anal sex . it's called anal rape you sick freaks ! +p8025 +aVpmendez cited , as proof of his point that keynesian economics does not work , an article in wikipedia , which is prefaced by " this article needs attention from an expert on the subject . please add a reason or a talk parameter to this template to explain the issue with the article . " custom_break custom_break in other words , what we're seeing here is conservatives parroting other conservatives ' baloney . custom_break custom_break please , show me just one fact used by conservatives . +p8026 +aVhow are the dodgers a one man show ? kemp didn't play CUSTOM_NUMBER games and they still kept on winning +p8027 +aVdan_amd custom_break custom_break custom_break custom_break custom_break you have realy no clue on every single idiotic comment of all your posts . custom_break we all don't enjoy your stupid pro amd b : u : l : l : s : h : i : t ignorance . custom_break please crawl back then in the fat ass of your gay loving buddy charlie custom_break demerjian semiinaccurate and try to find the light inside - u stupid fag ! custom_break custom_break custom_break custom_break custom_break we realy don't need and want your post here anymore ! +p8028 +aVyeah , i got the same thing about CUSTOM_NUMBER - CUSTOM_NUMBER weeks ago . just couldn't post with it anymore . no e-mail message or anything . even when i tried to post . just frozen . +p8029 +aVyour dad is a pecker jerk . +p8030 +aVhe is depending on the very short term memory vote . +p8031 +aVvideo : breitbart vs . cenk uygar over rape at \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER coccupy \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d camps custom_break posted at CUSTOM_NUMBER : CUSTOM_NUMBER pm on february CUSTOM_NUMBER , CUSTOM_NUMBER by allahpundit custom_break custom_break via breitbart tv . i should have guessed that eventually we \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d be arguing over whether \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER coccupy \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d has a problem with crime , notwithstanding the long , long , long , long , long list of alleged criminal activities at the encampaments . remember , things at zuccotti park got so bad that a women-only tent was set up so that there \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d be strength in numbers against sexual predators . some feminist sites criticized \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER coccupy \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d for its rape problem back during the movement \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s brief heyday ; even huffpo reported on \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cmultiple incidents of assault , drug dealing and drug use , rape and attempted rape , according to conversations with numerous protesters . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d ( per breitbart in the clip , that detail apparently didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t make it into their book . ) and of course , we only know about some of what went on . at least one \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER coccupy \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d camp reminded victims that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cwe do not encourage the involvement of the police in our community \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d and a new york city cop told big journalism \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s joel pollak that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthere are many incidents of sexual touching and groping that goes unreported to us , mainly because the alleged victim is either too stoned or high to properly id them or they \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER dont want to get the guy in trouble . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d ( some national media outlets reported on the attacks too . ) this is why , of course , breitbart was yelling at the occupiers outside cpac to \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cstop raping people , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d but now that the movement is gearing up for a big spring comeback , i guess it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s time for the left \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s whitewash to being in earnest . it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s a nice bookend to their demagoguery over the tucson shooting : in that case , tea partiers were blamed for a crime that no tea partier committed whereas here no occupiers are blamed for a crime that quite a few occupiers allegedly committed . fourteen minutes , but well worth it . custom_break custom_break video custom_break custom_break CUSTOM_URL +p8032 +aVlol .. when i'm with my homies .. i invite CUSTOM_NUMBER bitchs in my room .. your sister for my right nut .. your girl for my left nut .. you moma for my dick .. custom_break it's a party .. \u005c\u005c xf CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER f \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER it's a party .. \u005c\u005c xf CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER f \u005c\u005c x CUSTOM_NUMBER d \u005c\u005c xbb i coming .. bitchs .. \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER c \u005c\u005c x CUSTOM_NUMBER c \u005c\u005c xf CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER f \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xab say uh +p8033 +aVgot a problem with haitian people dumb fuck .. he's not even haitian ignorant ass nigga +p8034 +aVwell i always just called it pitching . +p8035 +aVlol watching so much baseball before bed has been giving me weird dreams . last night i dreamed i got called to play left field for the rangers . haha considering i'm right handed , CUSTOM_NUMBER ' CUSTOM_NUMBER and .. a girl . i don't think that would work out well but it was awesome . +p8036 +aVi would totally agree . fuck motion gaming , achievements are where it's at . +p8037 +aVso are you better off now than you were before bho was elected ? +p8038 +aVdon't threaten me steve .. never ever threaten me .. +p8039 +aVi think this was man on girl , so i don't understand your comment . +p8040 +aVi do not believe so . just like the scotus cannot declare war . +p8041 +aVno kidding .. how did you learn to type +p8042 +aVgo change your tampon maggot ! +p8043 +aVa guy born with a silver spoon in his asshole , david mccullough , jr . delivered this speech . " are you a fucking dumb ass ? please tell me what your problem is with this . i'm guessing your mother must have fucking let you suckle her tit until you graduated high school , then you got pissed off at her when she pushed you off her tit and called her " the worst mother ever . " oh boo fucking hoo , that mean man said " you're not special " . i watched this thinking this guy is gonna be some jack ass and in reality , he gave a great speech and spoke some beautiful truth . you honestly must be the type of person who tries to make the occupy movement look bad .. are you a fucking agent provocateur ? i wanna call you a stupid fucking hippie , but that would be an insult to them . +p8044 +aVcome back when you are out of puberty . +p8045 +aVCUSTOM_AT doomsday peppers are like zombies , it only takes one and you're fucked . +p8046 +aVwe're talking about murder here , racist a s s hole . +p8047 +aVyour a troll bitch +p8048 +aVno another idiot ezra +p8049 +aVlike if you were unable to read this comment because other comments loaded so fast . +p8050 +aVCUSTOM_AT if you have the opportunity to look into planned parenthood's statistics you'll see that the work they do with abortion services is a very small percentage of the services they provide to low income citizens . for many people , especially in today's difficult economy , this is the only health care they are able to afford . i hope you'll consider the lives of those people while you're debating this tough issue . +p8051 +aVsyd barret was mentally ill . he was bipolar with a mix of autism and schizophrenia . thats nothing fun my friend . he died at CUSTOM_NUMBER years old and still lived with his old mother in the county in england and he rode his bicycle alot before he died . he was a friend of mine since CUSTOM_NUMBER . i was in a band called hawk wind back then when we were musicians and friends . +p8052 +aVsadly we cant really affod to let him go or ally will need to bring in at least another CUSTOM_NUMBER or thres stikers if he does . it was an awful game on saturday and really showed us up for how poor our finishing and strikers were . in time of desperation go back to the long hoofs up the park and all jela could do was try to head the ball on to nobody . he also was trying to many flicks . custom_break custom_break +p8053 +aVdidn't mean to make you sentimental . +p8054 +aVyou're just a mouthy bitch , just like your whore mother . now get back in the kitchen & make me a sandwhich now !! +p8055 +aVis english your second language ? +p8056 +aVwhat fox needs to do is hire some ex nav / marine / army boys and post em up in their employee's yards , let the libs come , i gaurentee the biggest ass kickin those yellow winney's ever got .. this is the problem with the united states , gone are the days when you could give an idiot a smack in the face , now you haveta knock em out and hittem so hard they have no recollection who they are or where they're from !! +p8057 +aVare you serious ? +p8058 +aVthem some ugly motherfuckers . proof you don't need to be beautiful to make it in hollywood , you just have to know who to blow . +p8059 +aVsenator bryd democrat custom_break custom_break saul alinsky aka libtards socialist +p8060 +aVpicking a mate is not just picking a mate . more importantly it is picking a father for your children . " custom_break custom_break bingo ! that is the mentality that i have , that i \u005c\u005c ' ve grown up with . that \u005c\u005c ' s how i \u005c\u005c ' ve almost always seen it . not just selectively choosing a mate for me , but also for my future ( possible ) children . CUSTOM_AT +p8061 +aVtry to write in english next time dopey . +p8062 +aVsander , you really go through CUSTOM_NUMBER screennames in one day ? you were CUSTOM_NUMBER yesterday right ? +p8063 +aVoh lemonfemale you are so very wise . +p8064 +aVthat wa flat out awful , arod can't catch up to the fastball anymore . +p8065 +aVhave you been living under a rock kaden ? +p8066 +aVyou poor , hopeless moron .. you still fall for this shit ? custom_break must suck to be you . +p8067 +aVriddell is just parroting the brown's own propaganda about being a politician of " substance " over " style " ( when he actually has neither ) .. custom_break custom_break do we remember brown's " moral compass " ( shame about all the overweening ambition and bullying though ) ? and that the " clunking fist " of " mr prudent " the " iron chancellor " had effectively " ended boom and bust " for us all ( or had it ? ) ? custom_break custom_break the telegraph is disgracing itself by publishing this abysmal journalist with her badly thought-through and uninteresting nonsense . +p8068 +aVhey , rob-me likes dogs , he might like that thing on trumps head . +p8069 +aVif i remember , his election was a very hotly contended one in the union and there's still a lot of soreness about it . +p8070 +aVgo away you fuc < m > kers +p8071 +aVuna volta l'ho fatto .. tornata da una settimana di vacanze avevo centinaia di nuovi post nei feed .. ho cliccato su " segna tutti come letti " con un groppo in gola .. per \u005c xf CUSTOM_NUMBER che liberazione :d +p8072 +aVyou are too_stupid to breathe ! +p8073 +aVcode for you didnt pay the bill +p8074 +aVthunder in CUSTOM_NUMBER " custom_break custom_break - thunder clown +p8075 +aVi can feel sorry for you both . i am a child of god , just as you are and i do not hate you , but i do feel sorry for you , because i feel so much hate in your words . very sad . +p8076 +aVharden got schooled by a CUSTOM_NUMBER year old bald man . +p8077 +aVyou are right ! +p8078 +aVthis nigga gay , i would have been fucked that bitch . +p8079 +aVbristol .. just like your mom , you are an idiot . just another slave to right wing ideologies that do not cross paths with reality . you are just another kid who had a kid . +p8080 +aVthis is fair , and the right thing to do . do the right thing and the right thing will happen , how can those on limited incomes be expected to carry the burden of increased property taxes on a yearly basis . hope ulster county can and will do the same thing ! +p8081 +aVno such thing as a gay marriage -- it is not recognized -- and every state that has had a voted on it has voted it down -- by a landslide -- marriage is defined -- " between a man and a woman -- +p8082 +aVcanada : which province are you from ? nsw myself +p8083 +aVlikely back this week . cabrera ran today and hafner got some swings and running in . cabrera will be back tomorrow or wednesday and hafner in the next couple of days . +p8084 +aVare you related to him or something ? i can't figure out why someone would defend him .. +p8085 +aVyep , i know you are a beach baby ! x +p8086 +aVi have not found one right wing fanatic in CUSTOM_NUMBER kids in public schooll system in CUSTOM_NUMBER years each . not to mention the " parents " who man the property increase table for the " final " time every time . we need money for our buses or the buses wont run - then the tax is approved " again " and yet the buses wont run . then next voting block - uh you are not going to have a fire dept , teachers , blah blah blah so lets give them all a raise that CUSTOM_NUMBER % cannot afford . so we lose our homes they get a raise - perfectly fair . i really think everyone needs to suck it up - no wonder they are worried about turkey sandwiches . god my parents would have been on prison for the bologna spread that they ground up every week . but then again - we had to walk home we did not have a " car pool " taking us from step to step . my dad made milk from CUSTOM_NUMBER gal add enough powdered milk to make CUSTOM_NUMBER gals . add to corn flakes = child abuse . +p8087 +aVamerica .. are you enjoying your corporate / government ? you voted for it - don't complain when you get more of it with republicans . +p8088 +aVcommenter , why are you still trolling here ? you are the loser ! +p8089 +aVyou are absolutely right . +p8090 +aVinhofe , there's nothing the epa can do to miners what the mining company haven't already done and done far worse . they are the ones literally killing the miners for the sake of profit . they are the ones you should be investigating and not protecting . +p8091 +aVthey are weak . they have tons of ammunition and use none of it . +p8092 +aVfuck this shit and fuck the palins . custom_break custom_break this is the kind of banal bullshit which should have no place on television , much the same way local famewhore lara bingle should not be on australian tv . +p8093 +aVyou are right , but first we must find out who are the real bh , who tell the pastor that bh are in town . how do they know ? why didn't they arrest those who attended the meeting ? who order the army to go ? who .. , why .. how .. ? +p8094 +aVyou must be a faggot to assume that i'm on them , bitch-nigga . +p8095 +aVwhat a terrible woman , she has no idea how childish she sounds . not to mention , she thinks she is far better looking than she is . she looks like a very rough pre op trannie . why are these people never infertile ? not that i'd wish that on anyone , but you have to wonder what future generations will be like if things like this are allowed to breed ! +p8096 +aVoch alla barn \u005c xe CUSTOM_NUMBER r lika och fungerar p \u005c xe CUSTOM_NUMBER precis samma s \u005c xe CUSTOM_NUMBER tt och alla saknar grundl \u005c xe CUSTOM_NUMBER ggande konsekvenst \u005c xe CUSTOM_NUMBER nkande eh ? custom_break custom_break om barn ges r \u005c xf CUSTOM_NUMBER str \u005c xe CUSTOM_NUMBER tt b \u005c xf CUSTOM_NUMBER r man rimligtvis antaga att merparten inte kommer utnyttja denna . precis som hos den vuxna befolkningen . +p8097 +aVfor some reason i'm in the mood to keep showing everyone fanart . xd custom_break custom_break this fangirl cannot contain her love right now . ^_^ +p8098 +aVstupid fucking idiots ,, what more can you say . these freaks should put signs on their foreheads saying " this space for rent . +p8099 +aVlol man you are relentless . +p8100 +aV^^ i was thinking the same thing +p8101 +aVwhat the fuck does this sentence mean . +p8102 +aVnogicat , posey is a valid excuse , aside from his production more importantly he is the catcher , if you know your baseball catchers are the one managing your pitching staff +p8103 +aVi would have paid good money to watch you do that , only to watch you get your ass beat down afterwards . custom_break custom_break instead , you made some sarcastic comment in your head and went back to drinking your fruity little drink with the umbrella in it , right ? +p8104 +aVyou are the real CUSTOM_AT le and i hope people on here realize that you are a pretender +p8105 +aVecolax is stupid custom_break do you wanna be better or have cleaner balls custom_break they are nott grippy wat so ever custom_break that noise is just to make you not hear what they do +p8106 +aVsome of you must think our enemies are as gullible as you are . nothing interesting here . move on . +p8107 +aVhey , dont try to make me look like the fool for thinking that way . you're here just as much as he is . lol +p8108 +aVlol-they will find a way to lose .. +p8109 +aVteresa , " heckle & amp ; jive " ?? you are soo uneducated , skanky , nasty , desperate , fake , a lier and a criminal . i never liked you before , but now i despise you . the more you open your mouth , the more you expose yourself for being a terrible mother , lousy friend , the absolute worst sister ever . you dont deserve to have your brother joe , his super family , jacqueline , caroline , or cousin kathy in your life . they are all much better than you or your dumb family ! +p8110 +aVCUSTOM_URL CUSTOM_URL CUSTOM_URL " inherit CUSTOM_URL CUSTOM_URL the CUSTOM_URL CUSTOM_URL wind " CUSTOM_URL CUSTOM_URL " CUSTOM_NUMBER bama CUSTOM_URL CUSTOM_URL in CUSTOM_URL CUSTOM_NUMBER o CUSTOM_NUMBER " CUSTOM_URL CUSTOM_URL CUSTOM_URL .. they d CUSTOM_NUMBER abs CUSTOM_NUMBER lutely n CUSTOM_NUMBER thing CUSTOM_URL CUSTOM_URL delusi CUSTOM_NUMBER nalhttp :// bit . ly / mrzlgv CUSTOM_URL CUSTOM_URL angry CUSTOM_URL CUSTOM_URL selfish CUSTOM_URL CUSTOM_URL CUSTOM_URL lying CUSTOM_URL CUSTOM_URL CUSTOM_URL stingy CUSTOM_URL CUSTOM_URL c CUSTOM_NUMBER rrupt CUSTOM_URL CUSTOM_URL greedy CUSTOM_URL CUSTOM_URL CUSTOM_URL crooked CUSTOM_URL CUSTOM_URL CUSTOM_URL c CUSTOM_NUMBER mmunist CUSTOM_URL CUSTOM_URL CUSTOM_URL republicans \u005c ufeff \u005c ufeffhttp :// bit . ly / mrzlgv CUSTOM_URL CUSTOM_URL all have committed \u005c ufeff p CUSTOM_NUMBER litical suicide \u005c ufeff CUSTOM_NUMBER CUSTOM_NUMBER o CUSTOM_NUMBER CUSTOM_URL .. the unre-electable bigtime \u005c ufeff lazy whiningass crybaby pathetic CUSTOM_URL loser CUSTOM_URL demon j CUSTOM_NUMBER hnhttp :// bit . ly / mrzlgv " the CUSTOM_URL pacifier sucka " b CUSTOM_NUMBER ehner CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next .. the unm CUSTOM_NUMBER tivated unre-electable \u005c ufeff well kn CUSTOM_NUMBER wn super dastardly weakminded CUSTOM_URL s CUSTOM_NUMBER rryass quitter & loser CUSTOM_URL demon eric CUSTOM_URL \u005c ufeff " the cowardly CUSTOM_URL CUSTOM_URL weasel " cant CUSTOM_NUMBER r CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next CUSTOM_URL .. the CUSTOM_NUMBER ld \u005c ufeffhttp :// t . co / CUSTOM_NUMBER xgn CUSTOM_NUMBER fpb dumbass & loser CUSTOM_URL demon its definitely \u005c ufeff time CUSTOM_NUMBER retire CUSTOM_URL mitch CUSTOM_URL " the bigg CUSTOM_URL time evil snitch " CUSTOM_URL mcc CUSTOM_NUMBER nnell CUSTOM_URL damn rite CUSTOM_URL lugar is definitely out CUSTOM_URL & you're next " inherit CUSTOM_URL the CUSTOM_URL wind " \u005c ufeff you are \u005c ufeff most definitely \u005c ufeff g CUSTOM_NUMBER ing CUSTOM_URL CUSTOM_NUMBER b CUSTOM_NUMBER w d CUSTOM_NUMBER wn CUSTOM_URL .. believe .. CUSTOM_URL y CUSTOM_NUMBER ur CUSTOM_NUMBER bstructionism & CUSTOM_URL d CUSTOM_NUMBER abs CUSTOM_NUMBER lutely n CUSTOM_NUMBER thing CUSTOM_URL final days ar \u005c ufeffe most definitely numbered CUSTOM_URL it is permanently engraved in st CUSTOM_NUMBER ne CUSTOM_URL damn rite CUSTOM_URL president obama CUSTOM_URL a man CUSTOM_NUMBER f all the pe CUSTOM_NUMBER ple in CUSTOM_NUMBER o CUSTOM_NUMBER CUSTOM_URL .. forward .. give moe powwa CUSTOM_NUMBER da peeps +p8111 +aVpsh dy shoqet e mia enxhin tba dhe zeshkanen otr qe jane shum dreqe hahaha jeni shum te mira moj dreqe djj te lutem shum kg e ndjej mungesen tende rs nga rrepistia tba +p8112 +aVyou mean like that one francour just hit , right ? +p8113 +aVyo this shits raw , reminds me of the number CUSTOM_NUMBER playaz . their song haters goes hard \u005c u CUSTOM_NUMBER now that \u005c u CUSTOM_NUMBER s a crew i can fuck with . check out their song , and fuck the haters . \u005c u CUSTOM_NUMBER haters - CUSTOM_URL +p8114 +aVhello mrs white & to the other teacher we really want to come back to howick historical village we have injoyed being with you as you know this is one of a sir douglas bader student i really miss how mrs white took us to the school class and teached us some skills and how we are not allowed to right with our left hand only right well if you get this message please comment back custom_break well my name is potoae and please comment bacl custom_break love you howick historical village +p8115 +aVi see celtics fans are having a hate the heat orgy here but watch you guys disappear at the end of the game . +p8116 +aVand with the heat index it is even hotter .. +p8117 +aVyou're an idiot +p8118 +aVmaybe the mps should take a pay cut . to show the way .. +p8119 +aVflute as fuck ! +p8120 +aVwhy would anyone listen or seriously consider any comment from juan williams . i'm a little confused as to why he is a fox news contributor since he holds such extreme liberal views . do you think msnbc has any real conservative on their network ? joe scarbourgh doesn't count as while he always says he is a conservative he is the biggest republican and conservative basher on thier network , he makes al ( fraken ) sharpton , chris ( i get a thrill up my leg everytime obama speaks ) matthews , ed ( i couldn't find my ass with either hand ) schultz , rachel ( aka pauly from the wonder years tv show ) maddow , and lawrence ( yes , i'm an admitted socalist ) o'donnell . look moderate . +p8121 +aVshe shit rivets in the tub . +p8122 +aVwell said . that you're all mouth and no facts has no bearing . keep repeating it , though . eventually you'll convince other idiots that you know something . +p8123 +aVthen why are republicans the party with not one but two gay auxilliarries - goproud and the log cabin rerpublicans . +p8124 +aVjesus , i'm so fucking sorry . the whole fucking world is teeming with perpetual drunk drivers and you get caught moving to a parking lot . so messed up . +p8125 +aVok whitey . have a good night . +p8126 +aVbench him , then his bat cools and he'll hit around . CUSTOM_NUMBER once he gets some playing time +p8127 +aVif you want to make your online marketing video viral , you must be updated with the latest technological advancements , and make use of that on your next video . for example , if the camera you \u005c u CUSTOM_NUMBER re using is a little bit outdated and produces low quality videos , then it must be time to purchase a new one . or , if your editing software has limited capabilities , get another one that offers more capabilities that will improve the quality and life of your video . +p8128 +aVjust to educate you my brother , you and kim may be the bigots . if he's liking your post because he's " asian too " . +p8129 +aVthe state is not dictating how catholic prey . it is not establishing a religion . nor is it preventing catholics from practicing their religion with or without contraception . what it is doing is making contraceptives available on health insurance policies that catholic owned businesses provide . because it is available you dont have to use it . however those employed who wish to can do so . +p8130 +aVfirst .. i am not mr. custom_break second .. i saw that before !! like so many times so far !! +p8131 +aVeven without the pool of water .. +p8132 +aVand your word sure the fuck does not a mandate make . custom_break custom_break CUSTOM_NUMBER % of your genes are shared with a fucking banana . get over yourself . +p8133 +aVi would sooner cut my own throat than hand that piece of crap the knife to do me slowly .. f u no way .. hell no romney ! yall go to hell .. you sons of sick bitches that follow him .. +p8134 +aVyou never commented on the running +p8135 +aVis " the five " shot on location in an old folks home ? i think they were pretty bang opinion-wise , but geez ! custom_break custom_break custom_break coming up next on the five , " teenagers on skateboards - scary or silly ? " . but before that , we \u005c\u005c ' ll remember the good old days by talking about how television in the CUSTOM_NUMBER \u005c\u005c ' s was more wholesome than it is today . +p8136 +aVit sure is . i'm a coal fire man . +p8137 +aVthis whole david brock / media matters things now explains why so many of his trolls are homosexual activists . when you read the bloggers , it at first seems like there are a lot of homosexual activists blogging , but it really is just one big david brock \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cborg \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d . usually , the david brock borg homosexual bloggers all say the same things . they all slander fox news . they all slander christians . they all attack ( in unison ) whatever republican candidate is at the top during any particular week . custom_break david brock wrote of his experience at berkely : custom_break \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cat berkeley , i had no cause to associate conservatism with prejudice against gays . in the early \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s gay issues weren \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t polarizing our campus \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER since arriving in berkeley i no longer put aside my deeper desires . with some hesitation , during my freshman year , i went on uneasy dates and had hurried s e x u a l encounters with other guys in neighboring dorms . by the end of the year i considered myself gay and had surprisingly little trouble accepting that reality \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break during the summer after his freshman year , he writes , he was attracted to a fellow student ( referred to in his book as \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER candrew \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d ) , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ca blond , blue-eyed dreamboat of the brad pitt variety \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d while they both worked with calpirg ( the california public interest group ) . custom_break +p8138 +aVdude , if you change you username to specify against someone then you're a butthurt fag +p8139 +aVCUSTOM_AT where did you get your CUSTOM_NUMBER % fact ? ! i really want to know . i don \u005c\u005c ' t believe it for a second and would like to know where you pulled that number from . custom_break custom_break custom_break custom_break abby johnson ( author of unplanned ) tells of her time with planned parenthood and how she would partake in budget meetings . they literally doubled their " quota " for abortions for the upcoming year to double the current year - and by " quota " i do mean that staff was being told to encourage twice as many abortions to meet these numbers . that is what planned parenthood is about . +p8140 +aVwhy is manber such a shit rapper ? +p8141 +aVCUSTOM_AT needs to give me a fucking like my biggest problem is licensing . i am actually kind of disapointed that the republicans never touched health care when they had the majority . i wish they would have taken milton friedman's idea ( one of the main influences of " reaganomics " ) and taken the licensing power away from the american medical association . i trust nurses , and would have no problem with a nurse treating me rather than going bankrupt seeing a doctor . +p8142 +aVromney steps in it with gay marriage line custom_break custom_break via buzzfeed , which missed something of an attack angle from the right in this short romney riff on gay marriage . romney says he wanted to stop the gay marriage ruling so it didn't go across the country . custom_break custom_break too bad he wasn't thinking that way when he implemented the model for obamacare at the state-level as romneycare , huh ? or , was he .. ? custom_break custom_break video of romney .. custom_break custom_break CUSTOM_URL custom_break custom_break dan riehl +p8143 +aVonly black people can generalize based on race ? when did this happen ? " dumb white boy " your words . not mine . i thnk its clear you dont know what racism means , you must be stupid . i wouldnt presume to label your race , just plain stupid . +p8144 +aVthat is funney because the doctors are saying you are not paying them . so yah you have a suplus because you have not paid your bills . +p8145 +aVliberals just cannot stand the idea that their main outlet msnbc has ratings somewhere way behind re-runs of lassie . try as they may .. with a mighty huff and puff from media matters , they cannot blow away fox , no matter what they do . +p8146 +aVyou're analysis is exceptionally american . and by that i mean it's entirely grounded in fact-challenged star-spangled retardation - entirely voluntary in nature . +p8147 +aVyou are right CUSTOM_NUMBER % .. logical +p8148 +aVhere is a video of why republicans suck . CUSTOM_URL +p8149 +aVhey jack a $ $ .. once again it has been proven beyond a shadow of a doubt that your messiah is a lying fraud .. that so called bc was and is a forgery !! your messiah is an anti-american racists fraud .. and you will all have to face that truth real soon !! you are a phukin moron !! +p8150 +aVyou are welcome nikky ! +p8151 +aS'CUSTOM_AT CUSTOM_URL' +p8152 +aVis it just me , or can i not watch anything on this website anymore . i've tried several different computers and they all say the same thing , that's there's an error on #2048 +p8153 +aVshit quality . need better rip . ug its so hard to find high quality hard trance +p8154 +aVpeople like you are the reason the economy is failing . +p8155 +aVi'm giving up with you now . lying and perverting the course of justice are two completely different things which can't be used interchangably - it doesn't even matter what you say unless you are under arrest at the time as it is the actual arrest that gives them the power to repeat what you have said in court . as in " you do not have to say anything , but it may harm your defence if you do not mention something you later rely on in court . anything you do say may be taken and given in evidence " . so unless the passengers were arrested for your non-existant crime and then agreed to give a statement against the driver who was doing them a favour , who would then subsequently have to have admitted all wrongdoing in front of a judge . custom_break custom_break it isn't more likely than i think , it's probably even less likely than i think +p8156 +aVthat looked like you at first glance ! +p8157 +aVboo !! mark zuckenberg ; you are a criminal . you will face your crimes , or face the penalties of you criminal behavior / thinking on facebook . +p8158 +aVleftist white race traitor or shit skinned degenerate ; you are a hard one to call . custom_break custom_break mongoloid . +p8159 +aVCUSTOM_AT CUSTOM_AT still zero fucks +p8160 +aVboss custom_break interesting the " mike smith " the failed banking idiot , that was on here spouting his bullshit is all over the telegraph site bad mouthing john key again . he was the so called " well traveled . in new zealand short term . puzzled by its love affair with neolibeerals " , fool . custom_break custom_break another died in the wool labourite pompous twat . i like the article though . +p8161 +aVi have a CUSTOM_NUMBER that has a CUSTOM_NUMBER . CUSTOM_NUMBER inch barrel .. i'll bet that would fit better . you wanna suck on it ? you will love the climax it has . will damn-near blow your mind ! +p8162 +aVi'll make a bold prediction now : if dolan continues to beat this war drum , it'll blow up in his face . he is beginning to overreach ; perhaps his elevation to cardinal is getting to his head . custom_break custom_break the president has compromised and granted broad exemptions to faith-based organizations with respect to providing health insurance products that violate their conscience . what more does the clergy want -- for the president to kiss the ring of the cardinal ? soon this will become a story of catholic leadership , whose moral standing remains questionable following the child molestation scandals , waging war against women and the president . not a war they can win .. +p8163 +aVlets all blow jeff carter now .. stfu he does nothing +p8164 +aVmy wife was watching the grammy pre-show the other night , right up until this gutter-whore and her old-white - pimp walked into the shot . custom_break custom_break it's amazing how a talentless piece of trash like this can make a living doing what she does . it's to be expected from her industry though . +p8165 +aVno , i have no family . i was the product of immaculate conception . custom_break custom_break maybe i'd do exactly what he did , but i abide by the rules of civilized society and would accept the consequences of killing another person +p8166 +aVyou're terrible and you've got CUSTOM_NUMBER dislikes . look's like you're an idiot just like ign ( orant ) +p8167 +aVCUSTOM_NUMBER s indians scariest offensive teams ever +p8168 +aVi am almost more excited than you ! +p8169 +aVare you retarded ? custom_break custom_break troll harder bitch . +p8170 +aVonly fucking with number CUSTOM_NUMBER .. that's prolly the only pair i can pull off out these . +p8171 +aVyou are a kid waiting to go to work at the CUSTOM_NUMBER - CUSTOM_NUMBER right ? that was funny you attemtping to be deep . +p8172 +aVyou sure it's not lebron's mom ? +p8173 +aVyou are right ! +p8174 +aVCUSTOM_AT whyy ?? i love that word ! +p8175 +aVi get how this works . you work with congress unless it won't do what you want , in which case you simply decree your will . you are a child if you don't understand what's wrong with this . +p8176 +aVthank you , tania ! really appreciate your comment and you stopping by .. will definitely get back to a more regular blogging schedule as soon as my exams are over .. take care ! =) +p8177 +aVjeezus .. do you realize you are making a total fool of yourself ? you are criticizing someone for not knowing enough about one of the lowest firms of expression . +p8178 +aVnot only the #3 team in their own division , but also the #3 team in the nation before the lsu game +p8179 +aVthat is also part of the as is part of the old law and fits right in with the word on that has been out there from CUSTOM_NUMBER a.d. .. either you are dumb or you don't understand what you read .. duh !! custom_break custom_break please thry figure it out before making such a stupid reply here is your CUSTOM_NUMBER nd chance to figure out my post .. +p8180 +aVwell your buckwheat obama would qualify fagg CUSTOM_NUMBER t +p8181 +aVdeb , some of it will fix itself when you start to trust yourself more and don't look to see where the ball went before you hit it . +p8182 +aVcan i suck your toes ? +p8183 +aVthat would be the ex-party chairman who set it up at the baptist church kinda like how he went there during pp to dispose of certain ballots . boy you people are really lost .. any of you go to the convention and reconvention ?? or you all just talking smoke . +p8184 +aVwho cares now that we now that the gs CUSTOM_NUMBER is coming out . fuck the evo +p8185 +aVha ha ha now that's funny thanks for the unwanted promotion timb CUSTOM_NUMBER btw have you seen that movie called " sucker-punch " ? yeah kinda had a feelin that you'd like that one heat in six book it ! karlovv +p8186 +aVyou'll find that the majority of individuals posting here are of the opinion that republicans / plutocrats by-and - large pick and choose which laws hold value . it's likely only those laws that control someone else's behavior . custom_break custom_break in your vernacular go fuck yourself and clean the slime you leave all the way back to fucks news asshole . +p8187 +aVfunny and very honest . part of me thinks ms. bell is very gutsy for sharing that video , but the other part tells me that losing one's sh * t over a petting zoo critter is just a little this side of weird . +p8188 +aVso when is crawford coming back ? i drafted yhat bum . +p8189 +aVtruth never needs a hearing .. it just is custom_break custom_break left wing truth .. is only the truth +p8190 +aVbitch you're gonna get hit #meow +p8191 +aVhenry cisneros - democrat - u.s. secretary of housing and urban development from CUSTOM_NUMBER to CUSTOM_NUMBER . pleaded guilty to a misdemeanor charge of lying to the fbi .. > ** james a . traficant jr . democrat - member of house of representatives from ohio . expelled from congress after being convicted of corruption charges . sentenced today to eight years in prison for accepting bribes and kickbacks . .. > ** john doug hays - democrat - member of kentucky state senate from CUSTOM_NUMBER to CUSTOM_NUMBER found guilty of mail fraud for submitting false campaign reports stemming from an unsuccessful run for judge . he was sentenced to six months in prison to be followed by six months of home confinement and three years of probation . . > ** henry j . cianfrani - democrat - pennsylvania state senate from CUSTOM_NUMBER to CUSTOM_NUMBER . convicted on federal charges of racketeering and mail fraud for padding his senate payroll . sentenced to five years in federal prison . .. > ** david hall - democrat - governor of oklahoma from CUSTOM_NUMBER to CUSTOM_NUMBER . indicted on extortion and conspiracy charges . convicted and sentenced to three years in prison .. > ** john a . celona - democrat - a former state senator was charged with the three counts of mail fraud . federal prosecutors accused him of defrauding the state and collecting hundreds of thousands of dollars from cvs corp . and others while serving in the legislature . celona has agreed to plead guilty to taking money from the cvs pharmacy chain and other companies that had interest in legislation . under the deal , celona agreed to cooperate with investigators . he faces up to five years in federal prison on each of the three counts and a $ CUSTOM_NUMBER , CUSTOM_NUMBER fine .. > ** allan turner howe - democrat - u.s. representative from utah from CUSTOM_NUMBER to CUSTOM_NUMBER . arrested for soliciting a policewoman posing as a p rostitute .. > ** jerry cosentino - democrat - illinois state treasurer . pleaded guilty to bank fraud - fined $ CUSTOM_NUMBER , CUSTOM_NUMBER and sentenced to nine months home confinement .. > ** joseph waggonner jr . - democrat - u.s. representative from louisiana from CUSTOM_NUMBER to CUSTOM_NUMBER CUSTOM_NUMBER . arrested in washington , d.c. for soliciting a policewoman posing as a p rostitute .. > custom_break custom_break lafayette thomas - democrat - candidate for tennessee state house of representatives in CUSTOM_NUMBER . sheriff of davidson county , from CUSTOM_NUMBER to CUSTOM_NUMBER . indicted in federal court on CUSTOM_NUMBER counts of abusing his power as sheriff . pleaded guilty to theft and mail fraud ; sentenced to five years in prison .. > ** mary rose oakar - democrat - u.s. representative from ohio from CUSTOM_NUMBER to CUSTOM_NUMBER . pleaded guilty to two misdemeanor charges of funneling $ CUSTOM_NUMBER , CUSTOM_NUMBER through fake donors .. > ** david giles - democrat - candidate for u.s. representative from washington in CUSTOM_NUMBER and CUSTOM_NUMBER . convicted in june CUSTOM_NUMBER of child r ape .. > ** gary siplin - democrat state senator florida - found guilty of third-degree grand theft of $ CUSTOM_NUMBER , CUSTOM_NUMBER or more , a felony , and using services of employees for his candidacy .. > ** edward mezvinsky - democrat - u.s. representative from iowa from CUSTOM_NUMBER to CUSTOM_NUMBER . indicted on CUSTOM_NUMBER federal fraud charges .. > ** lena swanson - democrat - member of washington state senate in CUSTOM_NUMBER . pleaded guilty to charges of soliciting unlawful payments from veterans and former prisoners of war .. > ** abraham j . hirschfeld - democrat - candidate in democratic primary for u.s. senator from new york in CUSTOM_NUMBER and CUSTOM_NUMBER . offered paula jones $ CUSTOM_NUMBER million to drop her s exual harassment lawsuit against president bill clinton . convicted in CUSTOM_NUMBER of trying to hire a hit man to k ill his business partner .. > custom_break custom_break frank thompson , jr . - democrat - u.s. representative from new jersey from CUSTOM_NUMBER to CUSTOM_NUMBER . implicated in the abscam sting , convicted on bribery and conspiracy charges . sentenced to three years in prisonmichael joseph myers - democrat - u.s. representative from pennsylvania from CUSTOM_NUMBER to CUSTOM_NUMBER . .. > ** alcee lamar hastings - democrat - u.s. representative from florida . impeached and removed from office as federal judge in CUSTOM_NUMBER over bribery charges . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER > ** marion barry - democrat - mayor of washington , d.c. , from CUSTOM_NUMBER to CUSTOM_NUMBER and again from CUSTOM_NUMBER to CUSTOM_NUMBER . convicted of cocaine possession after being caught on videotape smoking crack cocaine . sentenced to six months in prison . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER > ** mario biaggi - democrat - u.s. representative from new york from CUSTOM_NUMBER to CUSTOM_NUMBER . indicted on federal charges that he had accepted bribes in return for influence on federal contracts . convicted of obstructing justice and accepting illegal gratuities . tried in CUSTOM_NUMBER on federal racketeering charges and convicted on CUSTOM_NUMBER felony counts . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER > ** lee alexander - democrat - mayor of syracuse , n.y. from CUSTOM_NUMBER to CUSTOM_NUMBER . was indicted over a $ CUSTOM_NUMBER . CUSTOM_NUMBER million kickback scandal . pleaded guilty to racketeering and tax evasion charges . served six years in prison .. > ** bill campbell - democrat - mayor of atlanta . indicted and charged with fraud over claims he accepted improper payments from contractors seeking city contracts . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER > ** frank ballance - democrat - congressman north carolina . pleaded guilty to one charge of conspiracy to commit mail fraud and money laundering related to mishandling of money by his charitable foundation . .. > ** hazel o'leary - democrat - secretary of energy during the clinton administration - o'leary took trips all over the world as secretary with as many CUSTOM_NUMBER staff members and at times rented a plane , which was used by madonna during her concert tours . custom_break custom_break dan walker - democrat governor of illinois from CUSTOM_NUMBER to CUSTOM_NUMBER served less than two years of a seven-year sentence for receiving improper loans a decade after leaving office . .. > ** gerry eastman studds - democrat - u.s. representative from massachusetts from CUSTOM_NUMBER to CUSTOM_NUMBER . the first openly g ay member of congress . censured by the house of representatives for having s exual relations with a teenage house page . ** hiram monserrate - queens city councilman and state senator-elect - who has claimed to be an advocate of victims of domestic violence - was arrested for breaking a glass over his girlfriend's face . monserrate , CUSTOM_NUMBER , a former cop , won election to the state senate as a democrat in november CUSTOM_NUMBER . ** james c . green - democrat - north carolina state house of representatives from CUSTOM_NUMBER to CUSTOM_NUMBER . charged with accepting a bribe from an undercover fbi agent , but was acquitted . convicted of tax evasion in CUSTOM_NUMBER . ** .. > frederick richmond - democrat - u.s. representative from new york from CUSTOM_NUMBER to CUSTOM_NUMBER . arrested in washington , d.c. , in CUSTOM_NUMBER for soliciting s ex from a minor and from an undercover police officer - pleaded guilty to a misdemeanor . also - charged with tax evasion , marijuana possession , and improper payments to a federal employee - pleaded guilty . ** .. > raymond lederer - democrat - u.s. representative from pennsylvania from CUSTOM_NUMBER to CUSTOM_NUMBER . implicated in the abscam sting - convicted of bribery and sentenced to three years in prison and fined $ CUSTOM_NUMBER , CUSTOM_NUMBER . ** .. > harrison arlington williams , jr . - democrat - u.s. senator from new jersey from CUSTOM_NUMBER to CUSTOM_NUMBER . implicated in the abscam sting . allegedly accepted an CUSTOM_NUMBER % interest in a titanium mine . convicted of nine counts of bribery , conspiracy , receiving an unlawful gratuity , conflict of interest , and interstate travel in aid of racketeering . sentenced to three years in prison and fined $ CUSTOM_NUMBER , CUSTOM_NUMBER . custom_break daniel david rostenkowski - democrat - u.s. representative from illinois from CUSTOM_NUMBER to CUSTOM_NUMBER . indicted on CUSTOM_NUMBER felony charges - pleaded guilty to two counts of misuse of public funds and sentenced to seventeen months in federal prison . ** melvin jay reynolds - democrat u.s. representative from illinois from CUSTOM_NUMBER to CUSTOM_NUMBER . convicted on sexual misconduct and obstruction of justice charges and sentenced to five years in prison . ** wayne bryant - democrat nj state senator - was convicted was found guilty on all CUSTOM_NUMBER counts against him including bribery and pension fraud . ** charles coles diggs , jr . - democrat - u.s. representative from michigan from CUSTOM_NUMBER to CUSTOM_NUMBER . convicted on eleven counts of mail fraud and filing false payroll forms - sentenced to three years in prison . ** .. > george rogers - democrat - massachusetts state house of representatives from CUSTOM_NUMBER to CUSTOM_NUMBER . m CUSTOM_NUMBER ember of massachusetts state senate from CUSTOM_NUMBER to CUSTOM_NUMBER . convicted of bribery in CUSTOM_NUMBER and sentenced to two years in prison .. > ** don siegelman - democrat governor alabama - indicted in a bid-rigging scheme involving a maternity-care program . the charges accused siegelman and his former chief of staff of helping tuscaloosa physician phillip bobo rig bids . siegelman was accused of moving $ CUSTOM_NUMBER , CUSTOM_NUMBER from the state education budget to the state fire college in tuscaloosa so bobo could use the money to pay off a competitor for a state contract for maternity care . ** john murtha , jr . - democrat - u.s. representative from pennsylvania . implicated in the abscam sting , in which fbi agents impersonating a rab businessmen offered bribes to political figures ; murtha was cited as an unindicted co-conspirator . ** otto kerner - democrat governor of illinois from CUSTOM_NUMBER to CUSTOM_NUMBER was jailed after the manager of two horse-racing tracks admitted to bribing the then - governor ; charges were filed after kerner left office he was convicted in CUSTOM_NUMBER . custom_break barney frank - democrat - u.s. representative from massachusetts from CUSTOM_NUMBER to present . admitted to having paid stephen l . gobie , a male p rostitute , for s ex and subsequently hiring gobie as his personal assistant . gobie used the congressman's washington apartment for p rostitution . a move to expel frank from the house of representatives failed and a motion to censure him failed under a democratic majority . ** .. > dnc - the federal election commission imposed $ CUSTOM_NUMBER , CUSTOM_NUMBER in fines against participants in the CUSTOM_NUMBER democratic party fundraising scandals involving contributions from china , korea and other foreign sources . the federal election commission said it decided to drop cases against contributors of more than $ CUSTOM_NUMBER million in illegal dnc contributions because the respondents left the country or the corporations are defunct . ** sandy berger - democrat - national security advisor during the clinton administration . berger fined $ CUSTOM_NUMBER , CUSTOM_NUMBER for illegally removing highly classified documents and handwritten notes from the national archives during preparations for the sept . CUSTOM_NUMBER commission hearings . ** robert torricelli - democrat - withdrew from the CUSTOM_NUMBER senate race with less than CUSTOM_NUMBER days before the election because of controversy over personal gifts he took from a major campaign donor and questions about campaign donations from CUSTOM_NUMBER . ** james mcgreevey - democrat - new jersey governor . admitted to having a gay affair . resigned after allegations of sexual harassment , rumors of being blackmailed on top of fundraising investigations and indictments . ** jesse jackson - democrat - democratic candidate for president . admitted to having an extramarital affair and fathering a illegitimate child .. ** gary condit - democrat - us democratic congressman from california . condit had an affair with an intern . condit , covered up the affair and lied to police after she went missing . no charges were ever filed against condit . her remains were discovered in a washington dc park .. ** eliot spitzer - democrat - new york governor - resigned from office after being tied to a p rostitution ring . sowande ajumoke omokunde - democrat - the son of newly elected u.s. rep . gwen moore , was booked on charges of criminal damage to property for allegedly slashing tires on CUSTOM_NUMBER vans and cars rented by the republican party for use in election day voter turnout efforts . custom_break custom_break anthony weiner - democrat - takes pictures of his p enis and t weets it to under age teen and six other women while his wife is carrying his child . his p enis ends up on the internet for all of time and resigns from office . ** john edwards - democrat - extramarital affair admitted to in august CUSTOM_NUMBER by john edwards , a former united states senator from north carolina and democratic party presidential candidate . the affair was initially reported by the national enquirer , an american supermarket tabloid newspaper , but was given little or no coverage by many sources in the american mainstream media . [ CUSTOM_NUMBER ] [ CUSTOM_NUMBER ] [ CUSTOM_NUMBER ] the enquirer cited claims by an anonymous source that edwards had engaged in the affair with rielle hunter , a filmmaker hired to work for his presidential campaign , and that the relationship had produced a child . durin the time when his wife made a announcement that her cancer had returned and was found to be incurable . elizabeth died on december CUSTOM_NUMBER , CUSTOM_NUMBER ** maxine waters - democrat - as a congressional ethics panel prepares to try maxine waters for steering federal funds to her husband \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s failing bank , a newspaper reports that the veteran california lawmaker is embroiled in a separate corruption scandal involving her beloved hubby .. \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER . ** \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER .. citing federal records , the story says that a powerful lobbyist paid waters \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER banker husband ( sidney williams ) $ CUSTOM_NUMBER , CUSTOM_NUMBER in \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cconsulting fees \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d as she co-sponsored a law aimed at saving a business that was among the lobbyist \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s top clients . the internal revenue service ( irs ) had determined that the real estate finance firm and others like it were \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cscams \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d and the congresswoman \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s measure would have overturned a federal ban that would have allowed the shady enterprises to keep raking in lucrative profits .. for years the firms acted as a middleman to help sellers finance down payments so that low-income buyers could qualify for mortgages insured by the federal housing administration ( fha ) . the lobbyist who paid waters \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER husband represented the nation \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s largest such middleman ( sacrament-based nehemiah corp . ) , which stood to lose hundreds of millions of dollars if the ban wasn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t reversed by friendly lawmakers like waters . . implemented in CUSTOM_NUMBER , the federal ban was never overturned but not for lack of effort on waters \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER part . the ten-term congresswoman sponsored legislation three times to stop the ban or repeal it once it became law . she claims she did it because the program allowed hundreds of thousands of low-income families to become homeowners . . news of this latest scandal comes as the house ethics committee prepares to try waters for using her influence to steer $ CUSTOM_NUMBER million in federal bailout funds to a failing bank ( that subsequently got shut down by the government ) in which she and her board member husband held shares . . a few months ago the congresswoman got in trouble again for skirting federal elections rules with a crooked fundraising gimmick that allows her to receive unlimited amounts of donations from certain contributors . instead of raising most of her campaign funds from individuals and political action committees , waters sells her endorsement to other politicians and political causes for as much as $ CUSTOM_NUMBER , CUSTOM_NUMBER a pop , allowing her to rake in hundreds of thousands of dollars in short periods of time . ** neil goldschmidt \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER democrat \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER oregon governor . admitted to having an illegal sexual relationship with a CUSTOM_NUMBER - year-old teenager while he was serving as mayor of portland . ** william jefferson clinton -- democrat - impeached by the house of representatives over allegations of perjury and obstruction of justice , but acquitted by the senate after a s ex a scandal with an intern . ** edward moore kennedy - democrat - u . s . senator from massachusetts . pleaded guilty to leaving the scene of an accident , after his car plunged off a bridge on chappaquiddick island killing passenger mary jo kopechne . custom_break +p8192 +aVi liked your comment not because it was sensible but because it was so far-ny . +p8193 +aVCUSTOM_AT CUSTOM_AT jungwirth CUSTOM_AT bambaataa yeah , i got the same gift . +p8194 +aVis it night time where you live ? +p8195 +aVwhy don't schools worry about teaching instead of dumbs ** t . for real , aren't our childrens educations suffering enough with every hippie retard in the world making it worse ? you freaks and you dainty feelings whining cause your parents whipped your little bad ass when u deserved it are screwing the whole thing up . +p8196 +aVmore than half of living medal of honor recipients have endorsed romney +p8197 +aVno list is complete without peach city in brigham city . now that is a burger joint ! also , how did hometown drive-in make the list in laketown but not labeau's ? labeau's put the " r " in raspberry shakes . +p8198 +aVget thatdick outta your mouth so you can talk . +p8199 +aVi hope you are not setting the standard by using your real name on gc posts . +p8200 +aVconference champs only .. we are not trying to pick the pecking order .. but give every school via their conference a path to play for the national championship .. custom_break custom_break this is so simple to get right .. why do these clowns keep screwing it up ? custom_break custom_break win your conference you play lose you don't .. +p8201 +aV' corporations are people ' custom_break custom_break google ' corporate citizenship ' . custom_break custom_break " however , many also take it to mean that corporations should be regarded as citizens within a territory - i.e. that corporations have citizenship of some sort . this is usually based on the principle of corporate personhood , in that in certain legal jurisdictions , such as the united states , companies are afforded some of the same legal rights as individuals . +p8202 +aVyou didn't read the article , and you are a ignorant putz . +p8203 +aVyou are lucky to have any privileges at all after saying some of the most vile comments in the history of this blog . +p8204 +aVare you really this stupid ? +p8205 +aVpitbulls are not banned in broward county , put one inside your bussiness and wait for the stupid maggot to be pleseantly surprised by fido . +p8206 +aVya and feed him more chocolate +p8207 +aVCUSTOM_AT :d isqus : gunjan di .. plzz mujh se naaraz mat ho :( you are angry coz i thought to close my ff ? di , maybe people don't like it ? aur uss larki ne bhi kuch soch samajh kar hi comment kia hoga that my ff is not good :( .. ab plz mujh se gussa mat ho .. custom_break custom_break CUSTOM_AT :d isqus : sadaf di , aap bhi mujh se gussa ho ? plz aap tou gussa mat ho :( actually di , meri koi id nahi hai , aur na hi mein fb per hun .. mein tou comment bhi apni behen ki id se karti hun .. i don't have an id .. aur waise aap ka chat box wala idea bura nahi hai . +p8208 +aVstfu your existence offends me +p8209 +aVit's much better than the left wingnuts who got us into this mess in the first place ! like you susan ! +p8210 +aVyou lack empathy is a fucking great drink ! +p8211 +aVjust because owebama came out of the closet doesn't mean you should all blindly follow suit . +p8212 +aVhmm new ios without new hardware to try on ? so far iphone announcements have been done at wwdc in the past numerous times already , unless new ipod touch pops out of no where to demo it , and bring siri to ipad CUSTOM_NUMBER ! will see tomorrow how it plays out .. +p8213 +aVi agree it is hard which is why i try to stay away from it because there is no way to really know who would be better +p8214 +aVyep you are officially addicted to polyvore .. as am i ! :p +p8215 +aVamazing eh ? talk about gaining experience and considering last year in college he probably only played CUSTOM_NUMBER - CUSTOM_NUMBER games pretty incredible +p8216 +aVCUSTOM_AT CUSTOM_AT fuck you you old fuck , the real john mclain . custom_break custom_break the real one from die hard +p8217 +aVo'neil is the best manager in the world , fact . love to see jose do what mart does . no chance . +p8218 +aVwaa !! waa !! custom_break custom_break custom_break listen to those libturds whine ! they know they are toast so they yap and snip like little chihauhaus ! custom_break custom_break ( no offense to chihauhaus intended ) . +p8219 +aVand we could put up a high-stakes russian roulette game , i \u005c\u005c ' m sure a few people would " choose " to do that too . like young girls " choose " prostitution , people " choose " to be crack heads .. the fact that you can " blow the rent money on the roll of the dice " and leave your children homeless is case in point . +p8220 +aVwe need to have a honest goverment and clean up all communists from any party now +p8221 +aVbecause kagawa isn't going to " sell shirts " to their favourite team . +p8222 +aVwaiting to hear them say " black " huh ? .. black !! okay ? now unhand yourself , go and smoke a cigarette .. better , isn't it .. you relly should invest in hustler or playboy +p8223 +aVwell , he wants to ban gay marriage even in states where it is currently legal , he wants to ban adoption for gay couples , he thinks planned parenthood has a " hidden agenda " and he wants custom_break no abortions even in cases of rape +p8224 +aVthere is a good team on the field idiot ! people get injured , people slump ! to say gonzi and youk are no better at hitting than the fans , is absolutely ridiculous and upsurd ! do rsn and the red sox a favor and stay at home and shut the f & ck up ! you are a prime example of what i am talking about ! if you're going to criticize then do it realisticly and stop pulling dumb sh ! t out of your a $$ ! as for the rabbits foot , i'm not talking about luck here . i am talking about a behavoir of the fans that is bleeding into the club house . you try and perform while constantly criticized and have to endure stupid comments like you . i'm not saying it is the main problem but it certainly does not help anyone ! +p8225 +aVyou really are a complete moron , yo must be one of those incompetent welfare leeches who does nothing but put a drain on every hard working person in this country . cut the cord , do something with your pathetic life . +p8226 +aVreally ? custom_break since when has it become cool to defend him ? +p8227 +aVnope , it is a moron like you who needs to shut up +p8228 +aVyou are simply comically idiotic . or you're just a depressing fool . either way , you're still just a liar and an internet coward . cheers ! +p8229 +aVcause you never know when you're gonna need one . lol ;o ) +p8230 +aVyou are not better than your bedtime . +p8231 +aVyou are wrong idiot ! +p8232 +aVsomething tells me he is a burglar at night . +p8233 +aVpresident romney " sounds really good . now , cheney for vp and we're all set . yeah , that's the ticket -- romney / cheney . and the motto will be " just to piss off the liberals " . +p8234 +aVof course iran has been talking us to death for years in their development of nukes . with obama and hillary they have willing allies to prolong it even further . the israelis and believe or not the saudi's and jordanians will not wait for obama knowing exactly who he supports . the arabs have as much to lose because occupying them is also on irans time table . simply put the iranians are shiite and the saudi's and jordanians are sunni they hate each other deeply . in this case enemy of my enemy is my friend at least for today . +p8235 +aVgetting your face ate off +p8236 +aVdon't you get tennis elbow from jacking off as much as you do ? +p8237 +aVnigga didnt even pinch the bitch .. he a cowered tho .. deserved that ass whooping +p8238 +aVa frank yesterday , a frank today , a frank tomorrow . i have been and always will be one big frank . +p8239 +aVtstev , you really ought to get a life . you accused me of being another commenter pretending to be a supporter of that commenter's stance in another article , long ago . you post more than anyone i have ever seen , and your posts are always vicious , petty and pointless and quick to whip out ad hominem attacks . you post so often that i wonder how do you , pray tell , make a living ? are you one of the CUSTOM_NUMBER % ? do you live in your parents ' basement ? i'm sure you'll accuse me of being yet another abigail or something idiotic along those lines . by all means , deflect away from legitimate discussion . that's the height of maturity . +p8240 +aVwhat muslims are currently being line up for hate ? +p8241 +aVi feel bad for the woman . what would have made this story better is if the man attempted to rape her and she pulled a CUSTOM_NUMBER mm and gave that guy a dirt nap . but who needs guns , guns are barbaric . and rapes , murders and home invasions only happen in the movies and on tv . custom_break custom_break instead this guy is gonna be in jail and all the liberals will think he is gonna be " rehabilitated " and he will become a contributing member of society on release . custom_break custom_break such a waste of tax dollars . +p8242 +aVbitch , be quiet . somebody needs to kick your ass for talkin ' that stupid shit , hoe . +p8243 +aVyou are a complete moron +p8244 +aVandroid is everything steve jobs envisioned ios to be . that's why he hated it so much lmfao . that was apples most pathetic update yet , that shit should CUSTOM_NUMBER . CUSTOM_NUMBER not os CUSTOM_NUMBER . +p8245 +aVthats ok .. if i get in trouble there will be millions worse off .. i'll loot with the best of em +p8246 +aVthe boys at epic mealtime must be proud . +p8247 +aVi like season CUSTOM_NUMBER ok . it wasn't as good as the later half of season CUSTOM_NUMBER / first half of season CUSTOM_NUMBER but it wasn't terrible ( or even merely bad ) +p8248 +aVshola'what planet do you live on you need to get down to specsavers blind or stupid ? +p8249 +aVillegal cuban zombies .. castro's revenge .. for sega genesis only .. from akklaim +p8250 +aVi believe in the mantra no risk no fun .. however , custom_break custom_break on balance , i would have to fall in line with the do not do it camp on this one .. having said all that there is an old snap of self on a dirt bike laying around somewhere with my young daughter clinging to me on pillion seat .. having fun but neither of us wearing crash hats .. custom_break custom_break i guess we all have rash moments . +p8251 +aVyou piece of scum . according to the sa constitution , this lady was a black person . hope your mother is the mother of all old cows . idiot . +p8252 +aVarsene wenger is a great manager , of that there is no doubt , and i , for the life of me , couldn't understand that substitution .. however , he is the manager not me , and he may have had a sensible reason for doing it , we don't know . +p8253 +aVi feel like shotime looked inside my dreams and just picked a bunch of random shit out of it to make a show : sheen , caplan , sex , period pieces , retro science and sex . +p8254 +aVshearnut , that you may be correct , i do not like people who want to destroy america . :) +p8255 +aVwhat an honor to be able to see you so ' up close and personal ' .. i will be counting the sleeps , if i had a tail .. i would wag it :-) +p8256 +aVtruthincaps for you to understand . just a second , doctor , a patient for you in gaza . +p8257 +aVany chance they served deep fried anything on a stick at this event ? +p8258 +aVlots of fouls . . . lots of free throws made . . . . comin ' up ! +p8259 +aVi will fuck the shit outta of judge judy have her hollering " order " " order " " order +p8260 +aVif you take out the fags and booze and such like , leaving say \u005c\u005c xa CUSTOM_NUMBER per week say and then recognise that they are feeding CUSTOM_NUMBER people then that doesn't seem too extreme ( \u005c\u005c xa CUSTOM_NUMBER or so per day per person ) . custom_break custom_break i've no sympathy though because they should be spending their money more wisely given their circumstances . +p8261 +aVfuck toygers i want a mutini +p8262 +aVfirst off .. you do not need to be married to make end of life decision , or purchase health insurance together . so basically you just want to file a joint tax return ?? custom_break custom_break look , read any of my posts , i am for equal rights for all citizens . but it pisses me off when you have to make up phony benefits just to explain to some simpleton , religious nut , why you should also have the right to be married . custom_break custom_break marriage is an institituion of the church .. so why gays who are so hated by the church .. would want to get married is beyond me . but it should be their right . a human being is a human being .. period ! +p8263 +aVCUSTOM_AT i'm on aac then ya dumb fuck +p8264 +aVmore run support = more confidence when pitching = better results . +p8265 +aVwhat did they expect when they ask miming quees " ms. cole " to appear . did they think the rating was going to improve . i just think the judges arent very good and people are getting bored of these talent shows . its the same thing over and over again . +p8266 +aVit probably was a white guy high on drugs who looked asian with his eyes half way closed . +p8267 +aVthey cant beat spanish players so they are trying these cheap shots .. +p8268 +aVi admire him , he is a true warrior king of old . custom_break custom_break the difference between a general and a warlord is that a general only follows orders , a warlord is only constrained by the rules he agrees to . custom_break custom_break it was a pathetic joke that obama was given an honorary black belt in taekwondo without earning it . custom_break custom_break putin is a better man than that .. your standards of measuring a man ( even an adversary ) is as pathetic . custom_break custom_break no , i think putin is more honest than you will admit . +p8269 +aVthe m CUSTOM_NUMBER struggles to cope with airport traffic . tube connections are not useful for all travellers . custom_break the infrastructure can't cope now ! +p8270 +aVit's just you smelling your armpits again . go back to your nails +p8271 +aVgod does not fuck . +p8272 +aVsmearedsxhit , what does the phrase below mean ? i'm just ( after all ) a ' stupid teabagger , and you are a more intelligent corn filled obamaballsniffer , so please explain this : custom_break custom_break " .. i give fox nation CUSTOM_NUMBER more weeks . custom_break then it's off to stormfront for the baggers . " custom_break custom_break what is ' stormfront ? ' because , that is the same term ' berthole ' used last night when he / she / it was lurking on another thread . could this mean that you are berthole , lindie and smellyterd !! all rolled into one ignorant pieceofppoop ? +p8273 +aVdo you realize how retarded , ignorant , sorry , and pathetic you sound ? +p8274 +aVare you saying a woman's right to vote was revoked after CUSTOM_NUMBER ? +p8275 +aVit's a quote people .. chill the fuck out - . - +p8276 +aVsubstantiate your slur .. or should we talk about the bi-sek ' sual in the wh ? don't you think the name larry sinclair should be included in your internet ' whispering ' campaign ? +p8277 +aVdamn i need to stop regarding fuckign tvspot +p8278 +aVwally the bigot , and cmorris the racist . the new faces of ignorance for the new south . no matter how often they wash their black sheet , it will still carry the smell . good luck guys , and all those like you . god has a special section for you to sit in when you arrive and your resting spot . +p8279 +aVthanks for demonstraing the idiocy of the bigot . i'm not gay , but support gay marriage . try and compute that one , dimwit . your birth certifictae was an apology from the condom factory . +p8280 +aVwhere on your body are you planning on getting it ? +p8281 +aVyou have my permission to leave . +p8282 +aVromney's track record in elections is not particularly good when he comes face-to - face with effective politicians and campaigners ( as opposed to has-beens and laughingstocks ) . custom_break given how rubin demeaned gingrich and santorum during the primaries , she can't really see romney's nomination as some great achievement . +p8283 +aVi would rather some one with " blood money " ( although the you tube was with out merit ) than someone with blood already on their hands like obama . +p8284 +aVyou sir are not intelligent +p8285 +aVhey moron " william reynolds " , impeach yourself and then go kiss a muslim like your hero bush . +p8286 +aVi will buy one of these thing today . they look so fucking awesome . they better not fuck with the version and just keep one . +p8287 +aVyou are joking , yes ?? +p8288 +aVi would slap you silly but clearly you are already there . +p8289 +aVreally joe ? custom_break i don't recall anywhere in the " all my children " storyline where little boys were raped and sodomized .. refresh my memory please .. custom_break but i guess you'd know all about children , since you impregnated a CUSTOM_NUMBER year old in the past wouldn't you ? you're as much a pos as your sicko client .. +p8290 +aVi dont care . i will never agree with you . in a few years we will know . wait it out +p8291 +aVthis report on the same subject is also confusing , but slightly less so : custom_break CUSTOM_URL +p8292 +aVCUSTOM_AT lol .. you sir , are a jackass . wipe the tears from your eyes and move on . mass effect sucks . +p8293 +aVCUSTOM_URL custom_break bet your glad you didn't have the balls to use your real name . you look like such a dumb ass now ( check vigilant bonuses on that link ) +p8294 +aVhey lawmanjed , don't let the trolls get to you -- they get off on being intentionally irrational because they know that you expect them to be rational . custom_break custom_break just step over them . +p8295 +aVoo , they might get michael more on us . great ! he's about due for a stroke / coronary about now anyway . if fox caused it , even better . besides , isn't he a one percenter with his mansion and big ass-ets ? +p8296 +aVone thing i've learned in CUSTOM_NUMBER + years . people that make childish plays on obama's name or call him things such as the messiah are really pea-brains . +p8297 +aVhey queeny .. if you are litterate , which i doubt being into pcp and chit homie , read zimmermans police file with the orange county clerk of courts : custom_break custom_break CUSTOM_URL +p8298 +aVget i life u bitch !! custom_break avande ammede oru lekhanam .. +p8299 +aVthis country is broke . economy is in a tank . people are unemployed . all new jersey's senate cares about is gay marriage . can gay marriage fix this country economy ? can gay marriage stimulate jobs in new jersey ? can gay marriage seriously benefit the general public of heterosexuals ? +p8300 +aVchrist died for your sins . if you do not sin , christ died for nothing ! +p8301 +aVif someone were to write a parody of a left-wing psychopath , it would read an awful lot like this post of yours . +p8302 +aVwhy don't you give a sprinkling of your magic pixie dust ? +p8303 +aVit's clueless racists like you who are in complete denial . this boy was in fact killed because of his race . there is no " race card " . so now that they mentioned race , you are no longer " behind them " ? you're as sick as the bastard who pulled the trigger . +p8304 +aVwow if you can't get used to it then i don't know wtf to tell you . it should not be a surprise to see akp post these things . you can choose not to click on it or if it's such an eyesore go to a different site for kpop news why don't you ? custom_break custom_break you were directing your comment to the staff ? hm , ok sure . i don't see why you should post it on the comment section . and you don't know how many times i have to see comments about this article being useless . it's tiring and repetitive . so just contact the staff like you will if you're really annoyed . +p8305 +aVhow old are you ? +p8306 +aVyou stupid shit ! stop spamming ! delete his profile !! +p8307 +aVhahahahahaha snort hahahahahahahaha +p8308 +aVthe difference between your wife and a rooster holdyourown ? the rooster says cock-a - doodle doo , your mama says any-cock ' ll do . +p8309 +aVdear pingback , fuck you or using " vidya " it's stupid as shit and you're not fucking funny or part of a precious internet club gtfo custom_break custom_break that goes with you oldfag , only exception is that " fag " is overused . die bitch +p8310 +aVi got to admit he's hillarous with his facts +p8311 +aVyou are an arrogant bitch and what is wrong with the world today , mostly caused by you pond life bankers !! +p8312 +aVi would comment on how confidently the kings are moving the puck around , but having a CUSTOM_NUMBER goal lead would tend to instill confidence in your game +p8313 +aVfuck yeah , the killing ( is over ) +p8314 +aVoh my dongsaeng ~~ you are an angel sent from heaven to make us nameless feel soo good ! kk ! thank you ^^ +p8315 +aVanother worhless post from a worthless person . +p8316 +aVi love cam newton's upside , and think he'll be an all-pro caliber qb , but CUSTOM_NUMBER td's and CUSTOM_NUMBER interceptions and nfl network has him as the CUSTOM_NUMBER th best heisman winner to play in the nfl . tebow was also on that list . espn had a problem with tebow but never mentioned how stupid it was that a guy who had a " decent " year throwing the ball , for a bad team is suddenly on a list that tim brown is not on . i'm so tired of espn hyping things up and blowing them way out of proportion , for better or worse . +p8317 +aVjohn , you need a female publisist .. may i apply for this lifetime position in which i can attempt to enlighten you about our sex .. you are soo far away from ever finding a woman who will put up with your bullshit .. where is your mother ? time for you to have a talk with her .. +p8318 +aVyou're right ; there weren't enough toothpick hangovers and tailwhips .. go fuck yourself +p8319 +aVand fuckface , in order to be situationally aware one would have to read the blog of last week in its entirety . from the point i called ew stupid and told many why they were wrong , till the point where u faggot started making separate threads discussing my trollness +p8320 +aVyo deteesto esa actitud de " noo ! alejate , el es mio d : ! " da fuck bro ? custom_break tan divertido que es sabrosearselos en grupo : c custom_break y lanzar frases de alba \u005c xf CUSTOM_NUMBER il +p8321 +aVCUSTOM_AT CUSTOM_AT yo tengo el lol intalado y me parece tan aburrido nose porque lo juegan tantos : ss ( cambio de tema perdon ) +p8322 +aVyou fake indian . jadunath , bana singh , karam singh are not sikhs sorry i wont tell you - because you are an ignorant idiot . the last name singh is used by rajputs , jats from rajasthan , haryana up and bihar . +p8323 +aVno to be liverpool manager you must be willing to defend the indefensible +p8324 +aVkindly explain wtf you are talking about .. +p8325 +aVthe thing that realy scares me , is that we ( and by we i mean our security services ) have to be lucky CUSTOM_NUMBER % of the time . scum like this only have to get lucky once . and how do the goverment respond ? they open our borders to the world and let thoughs who hate us hide behind the ( in ) - human rights act . time we acted a bit more like the u.s. a and remove or lock up for life . and i mean life , anyone who wishes to do us harm . +p8326 +aVjeff bootstraps fisher custom_break custom_break custom_break is a troll . custom_break custom_break custom_break anyone feel free to add to what you think of him . +p8327 +aVCUSTOM_NUMBER - CUSTOM_NUMBER the iran revolution has run its course . the world will be better off with a democratic iran +p8328 +aVstop suxing dik for cigarette money hole +p8329 +aVshows how much of a dumb-ass you are . today she used the globe as a source hahahahahahahahahaa +p8330 +aVCUSTOM_AT : because arabs fight back with ak - CUSTOM_NUMBER s while afro-american negro's complain alot & walk around with peace sign say crappy words with no action behind it like " no peace no justice " . the reason way the whites pick on you negro's alot [ like a bully at a high school ] is because you're still a " p " to the klans from the south . white power . +p8331 +aVliberals don't want military intervention , you buffoon . +p8332 +aVyou should get banned .. you are a little bit psycho +p8333 +aVlmao .. you are another clueless moron .. only liberal women are kept .. they have the masters .. +p8334 +aVi bet you bitch like hell about you taxes too . keeping people in jail is not cheap +p8335 +aVCUSTOM_AT ones did you see the interview ? it was pretty good , he sort of shocked those guys back in the studio when he said that . they asked , " we know you have the best record but are you the best team in the west ? " he answers , " i think we \u005c\u005c ' re the best team in the league . " +p8336 +aVyou really are a funny guy ! +p8337 +aVi'll just show them your comment history , and after they apologize to me , i'll make an appt . with my lawyer . +p8338 +aVif he comes back , we continue . custom_break :) +p8339 +aVhe was standing still during the last minute of the game when boston was ony CUSTOM_NUMBER points ahead . custom_break custom_break q u i t +p8340 +aVthis . custom_break custom_break travis , cornell , boyce -- all them nukkas -- i will never forget nor forgive them for showing their black asses out . fuck them today , fuck them tomorrow , fuck them forever . +p8341 +aVso if they look " normal " to you and they commit a crime , then what ? i'm " not on board . " you're " way off . " of all the ridiculous nonsense to base your judgment on someone by " how they look . " i'm surprised you'd let people know how your " thinking " process works . pretty pathetic , and part and parcel of the kind of nonsense that has surrounded this case from the very beginning . +p8342 +aVfrankly , i'm disgusted with detroit tiger fans [ ? ] for their cruel treatment of a true detroit citizen brandon inge .. and i'll never forgive myself for posting anything on this site . am i ever happy for brandon now , adam dunn too .. everybody finds their own niche . +p8343 +aVcan anyone say ndaa and surveillance drones , yup CUSTOM_NUMBER , CUSTOM_NUMBER of them in our skies in the next CUSTOM_NUMBER years , so that our government can spy on us even more ! do the imbiciles who support obama know that he is launching drones in our skies to spy on us ? i'll bet they don't , little do they know it's just the tip of the iceberg he is deconstructing our entire constitution and way of life !! what freaking idiots ! go ahead you morons , vote him back in and you'll get what you deserve for your stupidity ! +p8344 +aVk_k _ k or nazi ? i can't tell which disease you suffer from ? could you please blog some more ? +p8345 +aVwhops , i meant to say how ca edd hasn't screwed the pooch .. because they have , big time . +p8346 +aVin my opinion , the odds are that , prompted by tel aviv , the neocons , and christian fundamentalists in the pentagon , a romney administration will attack iran and commence a hundred year global religious war which everyone will lose . custom_break custom_break regional alliances , constant combat , and widespread poverty will not be unlike the conditions described by george orwell in his book , " CUSTOM_NUMBER . +p8347 +aVhow did you know +p8348 +aVyou are on to something there +p8349 +aVi agree with \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER but the rest is a little vague . perhaps your point about \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER a needs a little expansion . are you saying all the forces at work in syria pray to the same god ? a jew god ? custom_break wow . good point . +p8350 +aVlook her cmym is falling off .. this song was almost as wack as that roman in mosocow or that horrible massive attack . sad thing is she don't need the gimmicks . he CUSTOM_NUMBER of fame is up . custom_break wayne and them prepping lilttle twist to get his raz b role on . this dude dressed up like he about play house with his imaginary friend . he was looking extra fruity in that video wio with busta rhymes . give the homothugs back their swag !! custom_break custom_break thhey drake over here siging like the male sade and doing hater anthems . custom_break they got a gant gang of cats that won't make a single penny off a single record cause nobody kno theses duded or they are plaain trash like ant dog , lilttle chucki , gudda gudda , jae mills and prolly a few bums wed don't know about on that booty label .. they prepping like twist to be the next rax b .. bet cha by gollywoll .. who's checking for gudda gudda ?? ant dog ?? nobody .. nicki will kill this labelwith the wackkness that she been dropping . drake trying to be male sade . and glasses malone will never drop a album off cashmoney .. bow wow trying to fit in with a his trash .. birdman won't stop rapping until his gold teeth fall out !! plus i'm still tripping off skateboard bloods ? smh .. tyga a soft cat too .. when jaemill and glasses malone drop a album i will walk bearefoot on broked glass and feed myself to a alligator ! +p8351 +aVturn to espn classic if you got it now ! custom_break custom_break larry bird about to be god again . custom_break custom_break CUSTOM_NUMBER seconds left in the game ! ;) +p8352 +aVjing , i love this card ! your coloring is spectacular ! gorgeous white on white card !! +p8353 +aVyour mom is a mean hoe charging CUSTOM_NUMBER for CUSTOM_NUMBER dollar pussy . +p8354 +aVokay , then use the word i not we . that way you are expressing your personal views . thanks . +p8355 +aVyou're a f-ing pos aren't you ? weak pathetic loser liberal turd . i suppose you kept your virginity until you were married right ? or maybe you are still a virgin a s . e x . scares you .. maybe you are just a perfect holy roller , oh wait that can't be because you think holy rollers are all republicans .. hmm ok i'll bet you are just an id iot . +p8356 +aVshe is in love with a coward just like eva braun was +p8357 +aVsteve you are proof that agism lives , and that there is really no age range for dumb ignoramus . lol +p8358 +aVtrue .. but if you are around someone who abuses drugs contstantly and the drugs are always around and you feel hopeless because you married a loser like bobby brown and he treats you like crap you sure would be tempted .. +p8359 +aVso you believe in syrian propaganda ! custom_break custom_break hahahaha custom_break you still make me laugh . custom_break custom_break golden bs award for the gullible childish bigot of the week is yours again . +p8360 +aVit's fine to love those first two , just stay away from the third . and don't smoke weed in your car .. i don't know why these guys don't get that . custom_break custom_break either that , or use part of your $ CUSTOM_NUMBER m signing bonus on a cab . +p8361 +aVphil : you ignorant impolite , rude slut . go f ** k yourself . exercising freedom of expression , which you apparent ; y are against unless it concurs with your outdated view of the world . +p8362 +aVno g goon was right , you're an idiot , plain and simple !! +p8363 +aVsounds like you're a scummy family . +p8364 +aVnotheism : are you serious ? how can you say this is " revenge " . the rapist was caught in the act . i understand your ignorance , but for god sakes , pick up a dictionary . +p8365 +aVthe fbi , cia , doj let CUSTOM_NUMBER gaylords bury this country , thet suck hot dogs +p8366 +aVwhile it is normally hard to rejoin a serialized drama once you stop watching , nothing ever happened on this show . while it had a great cast and a refreshing atmosphere , this show was so slow that at times i thought it might be moving backwards . two seasons could have easily been one . the episode is a day in the investigation idea was probably the shows biggest error . +p8367 +aVfuck you . +p8368 +aVis that the war we decided to lose , because the kings freemasons wrote the constitution , act of independence that never was and set the us up as a crown ( not royal ) corporation and is that why a relatively new cia has its officers sware an oath to the crown ?? lol custom_break custom_break the poor amerikan sheeple are really living and working in a crown work camp anf now you might understand why amerikans are probably the most isolated and narrow minded extreme thinkers on the planet +p8369 +aVaww harper is so cute , i feel sorry for victoria beckham , they only print the picture's where she's not smiling because they have nothing else to print other than her frown , i dont blame her i think i'd frown if i was being followed around off paps all the time even tho it comes with the job it must get to ya . +p8370 +aVschool lunches suck the big one and are the most unhealthy choices available .. who do they think they are to try to tell anyone they have healthier lunches at school ?? our school lunches are so ridiculously high in fat and sodium .. not to mention processed foods are the majority of what they serve . i would never let my child eat school provided lunches unless they did a major overhaul ! +p8371 +aVgo away you orrible little cretin +p8372 +aVfunny you mention kobe and rape lmao custom_break +p8373 +aVCUSTOM_AT i don't get it either . custom_break custom_break florio just said something to the effect that it was very calculated that manning went to local media first ; nothing specific about why wk , but since he had him on his show that day , it might have just been flattery . it was on pft live yesterday -- it's on itunes or the pft site . ( since he interviews wk , you might be happier not watching ! ) +p8374 +aVthat's funny , don't care who ya are ! +p8375 +aVlol and you eat hot dogs ( cow rectums ) . lol +p8376 +aVwhat are you guys smoking ? +p8377 +aVtouche ! apparently , you don't know what an anology is ! +p8378 +aVlots of women use it to burn body fat and improve skin quality . but you don't get one injection , you get a daily injection over a course of CUSTOM_NUMBER months +p8379 +aVsee , this is why it's a good idea to keep your religion to yourself . when you start expecting other people to believe as you believe , you look like an asshole . custom_break custom_break and we make fun of you . that's good for us , but not always for you +p8380 +aVi'm the same way . i am terrified of doing my own brows . i've seen way to many ladies w . fucked up eyebrows to go down that path . +p8381 +aVpretty sure " don't cut it pal . read his first book , published long before he dreamed of being president . +p8382 +aV_ yeah_i _ bet_you ' re_a _ occupy_fucking _ nigger ! +p8383 +aVi like andys chances at the uso . +p8384 +aVjsmaster custom_break custom_break god youre retarded , the entire point of this article is to promote the movie to people so they go see it moron . not seen .. see !! custom_break custom_break and the pathetic pr ! ck who posted the spoiler is an attention seeking beyond dumb loser who knew exactly what he was doing and posted it just to feel like he was special for once in his life because he got to see a movie a week before its released in the country the movie is made and where most people are going to see it ! custom_break custom_break and fyi saying pathetic " spoiler " doesnt make it okay genius , peoples would have immediately seen the giant r.i.p. even if they were trying to avoid it custom_break custom_break get a clue before speaking next time idiot +p8385 +aS'CUSTOM_AT CUSTOM_URL' +p8386 +aVyou are playing right into it's game . ignore the vegemite and it will go away . +p8387 +aVhow many commenters are you maliciously impersonating tonight , jack white ? custom_break custom_break custom_break custom_break every single time , jake . every time you maliciously thieve another's identity on this site for the sole purpose of castigating their character , you will be called out on it . custom_break custom_break custom_break custom_break jack dale white -- " defeatobama " , " jake CUSTOM_NUMBER " , " jbobojake " , " jbobojake CUSTOM_NUMBER " -- is the paid political operative responsible for this filth . he has maliciously stalked these boards for CUSTOM_NUMBER years , libelously impersonating over CUSTOM_NUMBER dozen individuals -- over CUSTOM_NUMBER , CUSTOM_NUMBER times -- to degrade and defame their characters and thieve their CUSTOM_NUMBER st amendment rights in this forum . custom_break custom_break custom_break custom_break custom_break custom_break he impersonates " joe " through : CUSTOM_URL custom_break custom_break custom_break custom_break he impersonates me through disqus profile : custom_break custom_break CUSTOM_URL custom_break custom_break custom_break custom_break he impersonates lloyd c through disqus profile : custom_break custom_break CUSTOM_URL custom_break custom_break custom_break custom_break he impersonates gone fishing through disqus profile : custom_break custom_break CUSTOM_URL custom_break custom_break custom_break custom_break he impersonates party of no plans through disqus profile : custom_break custom_break CUSTOM_URL custom_break custom_break custom_break custom_break he's impersonating carl CUSTOM_NUMBER with disqus profile : CUSTOM_URL custom_break custom_break custom_break custom_break he impersonates sam through : CUSTOM_URL custom_break custom_break custom_break custom_break he additionally creates hundreds , if not thousands , of fake personas to coat these boards with false right wing rage . custom_break custom_break custom_break custom_break currently writing as " president obama " through disqus profile : CUSTOM_URL custom_break custom_break custom_break custom_break as " moochelle obama " through : CUSTOM_URL custom_break custom_break custom_break custom_break as " anti-lib " through : CUSTOM_URL custom_break custom_break custom_break custom_break as " not jake or jack " through : CUSTOM_URL custom_break custom_break custom_break custom_break as " monica " through : CUSTOM_URL custom_break custom_break custom_break custom_break please call or email the hill's comment moderator , mr. emmanuel touhey , to insist that the hill finally stand by the terms and conditions that they established to guide the rules for order here -- which mr. white has outright said he will never follow unless prosecuted by law . custom_break custom_break custom_break custom_break while the defamation case progresses against him , please call or email the moderator to get mr. jack dale white evicted from this site for all that he has done to burn this site's dignity to the ground . custom_break custom_break custom_break custom_break emmanuel touhey , comment editor custom_break custom_break ( CUSTOM_NUMBER ) CUSTOM_NUMBER - CUSTOM_NUMBER custom_break custom_break CUSTOM_AT custom_break custom_break custom_break custom_break and the lawyer to whom the hill egregiously throws all complaints about mr. white in order to avoid having to deal with them : custom_break custom_break custom_break custom_break mr. jeremy feigelson custom_break custom_break ( CUSTOM_NUMBER ) CUSTOM_NUMBER CUSTOM_NUMBER custom_break custom_break CUSTOM_AT custom_break custom_break custom_break custom_break custom_break custom_break " all that is necessary for the triumph of evil is that good men do nothing . " \u005c u CUSTOM_NUMBER edmund burke custom_break custom_break custom_break custom_break do something . +p8388 +aVmy screen is stuck in the black screen help somebody +p8389 +aVwhy is it that you don't kill yourself you stupid fascist puppet ? +p8390 +aVhey brazile , romney is a successful businessman who knows how to create jobs and make businesses viable custom_break obama is a failed president who flushes trillions in tax payers money down the crapper and to his cronies in failed stimulus and failed green energy scams .. +p8391 +aVget the fuck out of my comment section you samurai jack lookin muthafucka . +p8392 +aVand the two posts below just proved out your first sentence . +p8393 +aV\u005c xa CUSTOM_NUMBER billion - well at least we covered the cost of the bonuses . custom_break if anyone - yes , anyone including anyone off the dole - had invested \u005c xa CUSTOM_NUMBER billion at a modest CUSTOM_NUMBER % they would have earned \u005c xa CUSTOM_NUMBER . CUSTOM_NUMBER billion . now remind me what bob diamond made to justify his \u005c xa CUSTOM_NUMBER million salary ? custom_break our banking system is a ponzi scam . +p8394 +aVwhy don't you just ignore this +p8395 +aVyou are a asshole for putting addicts down !! why bash us !! at least we have an excuse wats urz jackass !! +p8396 +aVshut up idiot go back to listening your chunti music custom_break my parents are entrepreneurs who make millions a year custom_break my rooms costs more than all of your families homes custom_break oh wait , they do not own anything !! +p8397 +aVdid anyone else shit themselves after CUSTOM_NUMBER :3 CUSTOM_NUMBER ? +p8398 +aVtype your comment here . sfsdfasdfsad +p8399 +aVyou are just jealous . you and your friend don'tknow nothing about them . +p8400 +aVforget about gta v , where the fuck is agent +p8401 +aVa couple of greedy , non-appreciative hos ! +p8402 +aVapparently you think barrack is doing a bang up job ! the fact that he inherited a sick economy brought on by the democrats , and has spent over a trillion a year to make it worse has escaped you ! +p8403 +aVpark is recognized and should go to bed . +p8404 +aV.. ron paul .. is scary wrong .. +p8405 +aVwe all know them jesus freaks are the biggest freaks in the world ! ( sexually ) +p8406 +aVremove your white hood so we can see your face , bubba ! +p8407 +aV> a fully reserved tyranid army built right can indeed exploit the current internet meta lists . custom_break custom_break how ? you make this claim several times but don \u005c\u005c ' t present any kind of strategy , evidence , or anything else . how are you " exploiting the meta " ? how does the army deal with mechanized lists and mobile armies ? custom_break custom_break > the long answer is yes but it will require near perfect play and some degree of luck . custom_break custom_break why do you feel that a reserve army with perfect play / good luck can beat top tier lists , but other armies cannot ? what makes it more effective in this regard ? custom_break custom_break > i \u005c\u005c ' ve also noticed that kill points are not often chosen as a primary custom_break objective at other events such as those that use the p / s / t format custom_break custom_break i can \u005c\u005c ' t speak for your experience , but most such events that i \u005c\u005c ' ve seen have three objectives that are randomly allocated priority , making kp no more or less common than the others . moreover , giving up kp is hardly the main disadvantage of the list ; others rank much more significantly . custom_break custom_break > note that roughly CUSTOM_NUMBER percent of your army should arrive during the second turn custom_break custom_break :| math , huh ? custom_break custom_break > many of the units in my army are fast due to fleet so i can quickly redeploy much of my army as the game progresses custom_break custom_break fleet doesn \u005c\u005c ' t make you any faster than anything else . other infantry can run , and tanks are flat-out faster than you thanks to being able to move CUSTOM_NUMBER " automatically rather than hoping for a good roll . custom_break custom_break > imperial guard armies heavily rely upon their chimeras to protect their custom_break scoring units so you want to prioritize targeting their transports .. custom_break custom_break again , how do you actually kill transports ? the lists you present usually feature very little at . your zoanthropes and trygon are the only units that will be able to consistently kill tanks . custom_break custom_break > at the end of the day though the results are the same \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER no major wins for custom_break tyranids in fifth edition at any big events and i don \u005c\u005c ' t believe that is custom_break going to change while fifth edition is still in effect . custom_break custom_break entirely true - at this point , i don \u005c\u005c ' t think that tyranids are likely to take any major events , as too many factors are stacked against them . it \u005c\u005c ' s not impossible to win with them , but especially in environments where mech lists are common they will struggle . so do you really think that your own list is going to be able to achieve this - that you \u005c\u005c ' ll get " near perfect play and some luck " six or seven games in a row against other skilled generals to actually win a top spot ? custom_break +p8408 +aVare you watching a quantum leap marathon ? +p8409 +aVgo to hell you old bastard +p8410 +aVwe need a government , for the people , by the people . +p8411 +aVat least you're sticking to your guns . custom_break +p8412 +aVit was his idiot parents , idiot . +p8413 +aVanytime liberal parrots come here claiming that fox news isn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t fair and balanced i want to ask who cnn , msnbc , the n y times or any over the air liberal news outlets have as conservative commentators or contributors . fox employs many liberals , lets have a look ;\u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER juan williams ( a senior news analyst for npr from CUSTOM_NUMBER to CUSTOM_NUMBER ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER alan colmes ( his vitriolic liberal bigotry only outdone in the liberal arena by keith olbermann ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER kirsten powers ( democratic political analyst and former anthony weiner flame ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER shepard smith ( stays pretty well on the fence and is reportedly gay according to out magazine and other sources ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER geraldo rivera ( positively the most apologetic contributor for the plight of illegal immigrants on any network ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER mara laisson ( national political correspondent for npr ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER bill schulz ( red eye \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s token gay guy ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER susan estrich ( campaign manager for michael dukakis ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ed henry ( he was the white house correspondent at cnn ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER bob beckel ( worked for robert kennedy \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s and walter mondale \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s presidential campaigns and was deputy assistant for secretary of state for jimmy carter ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER tamara holder ( famously claimed rick perry wants to kii babies ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER sally kohn ( former \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ccommunity organizer \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d as well as a senior campaign strategist with the center for community change , a george soros funded organization where she served as co-director ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER jehmu green ( served as an advisor on senator hillary clinton's CUSTOM_NUMBER presidential campaign and worked for secretary of state clinton , was a former national director of project vote and co-founded define american , an immigration reform organization ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER doug schoen ( worked on the presidential campaigns of democrats bill clinton , hillary clinton and mayoral campaign for ed koch ) \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER so liberals , where are the conservative counterparts on your preferred networks ? +p8414 +aVah , the same way you hate white people . don't try to act so innoccent . +p8415 +aVmoney diggin bitch !! she looks like a rat +p8416 +aVyeah life a programmer behind the keyboard do me a favor no really i really need you to do me a favor alot of people think diffent than you do but since you want to come out your face tough computer screen guy do me a favor and suck my dick ok no beat it cock sucker . custom_break custom_break doc +p8417 +aVyou is shit +p8418 +aVeven if the bucks won the nba , they wouldnt catapult past the bulls in popularity +p8419 +aVdamn straight my friend , if it's not the judges own daughter then he does'nt care , if it had been mine or yours there would be a very steep penalty to pay ! there is one thing i admire bout muslim laws , no f ' ing around , ind the nearest wall or tree ! +p8420 +aVi'd rather have an old , straight white guy than the stupid fcking zebra we have now .. everything he touches turns toshit .. +p8421 +aVCUSTOM_AT there are lots of animals in trouble +p8422 +aVi believe the vikings offered gurley a roster spot last season . he choose to stay on the gb practice squad . im no pro scout but if another nfl team wants to sign him , he may have potential +p8423 +aVyou were born a bald-headed freak . +p8424 +aVrob .. you're one pathetic asshole .. and " libs " aren't responsible for that . +p8425 +aVmoronic statement pea brain . there is no pledge to be respectful to the commander in chief . i was still in , am retired , when that trash just about starved us out of the military \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER that was after voting for him . custom_break custom_break custom_break clueless libtard . +p8426 +aVyou're missing the point of the post , chester . i am not claiming to be a manager ; i am just pointing out that it's premature for hodgson to say his critics are all wrong as if we've sussed it . we haven't . +p8427 +aVbeautiful , freecheese , just beautiful ! custom_break custom_break a poetic verse of knowledge and wisdom - it should be posted in the congressional chambers . +p8428 +aVgo away , flora . take your spam with you . and if you must comment , then custom_break custom_break don't steal words from other posts . custom_break custom_break spam alert flag her post . +p8429 +aVshe can spew ' true lies ' because demoncrats are fuckin ' retarded , and she knows it . they'll take what she or president kardashian says at face value . +p8430 +aVoo .. oh .. oo .. do your little wrists flap when you post ? huh ? hmm ? +p8431 +aVmadonna is the world's best singerr for everr and everr custom_break go fuck yourself you stupid ugly copy catt custom_break billboard listed madonna #2 only after the beatles the gretest singer of all time so gaga and little monsters go fuck yourselvess ha ha ha ha youre copy cat will never reach any thing like this ha ha ha ha +p8432 +aVyou are a sad , ignorant , pitiable fuck . custom_break custom_break i take that back . you're not worthy of pity . +p8433 +aVthat guy is a real fuckstick . +p8434 +aVjason terry and manu ginobli comes off the bench but there the CUSTOM_NUMBER nd best players on there team so whats your point ? +p8435 +aVah , but when you go into the ps you don't have to option or dfa the guys you aren't going to use . you just don't use them , and they're still available to you for trades in the off season , when the type of players we've got to spare will have better trade value . +p8436 +aVkevin : and alessandra , being a pedophile is not a form of normal sexuality . custom_break plenty of heterosexuals are pedophiles . pedophilia , like rape , is about custom_break power not sex . custom_break == custom_break kevin , look up the word sexuality , because if you think it does not relate to different sexual dynamics , you are completely mistaken about its meaning . pedophilia is a deformed and dysfunctional kind of sexuality . moreover , every sexuality and relationship dynamics involves power issues . you are just blind to this most basic fact that every human relationship has power issues at its core . custom_break custom_break it \u005c\u005c ' s obvious you come from a very mediocre public school to believe a stupid irrational statement such as your last one is actually smart ( " pedophilia , like rape , is about custom_break power not sex " ) . custom_break custom_break liberals like you just don \u005c\u005c ' t want to face how many sexually deformed people there are in society . custom_break +p8437 +aVCUSTOM_AT kovachoo was playing tonight ? +p8438 +aVit won't be as dramatic as that .. i mean we england fans who go to poland have been given the safest guarantee that we won't stay long there anyway , after the first round we'll all be back to england with our team of heroes who battled and fought but were just unlucky . lol +p8439 +aVhow do you account for the well thought out plans being pursued in germany today under the influence of green ministers in particular ? custom_break custom_break i think you are drawing a caricature - not very convincing . +p8440 +aVdo you believe that you are better than foran ? you lost to then CUSTOM_NUMBER times !! +p8441 +aVCUSTOM_AT go out for another cigarette . you are having nicotine withdrawal +p8442 +aVreally , you do a one time CUSTOM_NUMBER k fund raiser and your comparing it to skipit CUSTOM_NUMBER .. are you really that stupid .. do the math ! what a moron , your so proud of yourself : " did they do that ? " . yes and they still are adding to it . +p8443 +aVlucky that these cowards were caught ! shame on them and shame on thier family and friends who helped them . there is one place for criminals like these gtmo ! +p8444 +aVcustom_break wow custom_break what a fact filled thought provoking well reasoned rebuttal . custom_break you sure disproved my post word for word . custom_break in fact you changed my opinion on gay marriage . custom_break custom_break / sarcasm off custom_break +p8445 +aVthe only fun games for kinect are dance central or some mindless party game when you have people over and you are all drinking . nothing else about kinect is fun . +p8446 +aVare you serious ? breaking and entering , assault and battery , rape . endangering an infant . that guy should be put away for good . +p8447 +aVyou are a piece of shit mr e = mc CUSTOM_NUMBER !! i hope you get shot in the face next time you and your fellow gang members break into someone else house . scumbag !! +p8448 +aVno , it's because your liberal messiah is such a monumental loser ! +p8449 +aVare you retarded faggot ?? lol custom_break custom_break if you are blind and dont use widgets , then that doesnt mean everyone else doesn't use them . widgets is one of the reasons people like android and prefer it agains ios . you can have any types of widgets , for weather , seeing your twitter and stuff .. and on ios you scroll like an idiot like a minute , and when you finally found the apps you still have to click a couple of times before you see what you need . custom_break custom_break android CUSTOM_NUMBER : CUSTOM_NUMBER ios ; ] +p8450 +aVcome back to reality , barry wasn't mentioned in the article . you're seeing ghosts that aren't there . +p8451 +aVya well thanks to you posting that i lost a big reply i was making to CUSTOM_NUMBER veritas CUSTOM_NUMBER . lol such a stupid forum . +p8452 +aVregardless . they can't ban you for something other people are doing . +p8453 +aVfucking russians +p8454 +aVhey all , \u005c u CUSTOM_NUMBER i scream like a b ! tch because my daddy has his balls up my ass . custom_break if i can sound like a bigger p-ssy drip , let me know , since i'm too fcking stupid to understand when everyone called me a litlle b-tch for talking stupid about kelly thomas . i hijack a screen name and post as growapair , lol losers \u005c u CUSTOM_NUMBER . \u005c u CUSTOM_NUMBER i'm boyle heights citizen -- the original internet pus $ y , here with never anything to say but to be a brain dead ass breath , i will lick the ass of anyone who calls me growapair , he called me out as the ball sniffing chicken punk i am , so i hijack his screen name to show i'm a lowlife sh-thole loser hiding with my daddy's balls up my ass . +p8455 +aVyou are such a creep . go back to cooking . +p8456 +aVron paul isn \u005c\u005c ' t looking to " win " the nomination . he is trying to get enough delegates so that he can gain a seat on and have some influence over the gop platform committee . like his supporters , he would like to see his budget plan adopted as the gop budget plan . it will save $ CUSTOM_NUMBER trillion in the first year alone and pay our debt off in less than a decade instead of the centuries the status quo parties want . he wants the ndaa repealed , which will return our CUSTOM_NUMBER th , CUSTOM_NUMBER th , and CUSTOM_NUMBER th amendment rights to all americans . he wants the failing unconstitutional departments and agencies phased out and the power of those agencies and departments returned to the states where they rightfully belong . not only do those states already have duplicates of those departments and agencies up and running , they had them before the feds ever stuck their noses into the business the constitution clearly states belongs to the states , but the state run departments and agencies were not only successful , they are far cheaper to run . ron paul also believes that the number one job of the federal government is to provide the military protection for common defense of all the states . he would like to see military pay raised so that a large section of the non-com personnel don \u005c\u005c ' t fall in the category of qualifying for food stamps and welfare , but aren \u005c\u005c ' t allowed to receive it because they are " government personnel . " he wants our weapons and technology brought up to and maintained as the best in the world . he believes that congress must declare war before our military can be sent into harm \u005c\u005c ' s way , instead of having some idiot like odumbo go to the un to get their blessing to blow billions on an unconstitutional w a r - libya . he want the us out of the un and the un out of the us . the un is more corrupt than chicago politics and costs american taxpayers even more . the un is the most anti american organization in the world . the billions of $$ \u005c\u005c ' s we send them every year go straight into the pockets of the corrupt diplomats and the dictators who send them to the un . that is what ron paul is hoping to achieve with his candidacy . why don \u005c\u005c ' t you do a little research on ron paul instead of swallowing the status quo parties \u005c\u005c ' bs lies they \u005c\u005c ' ve been spewing . +p8457 +aVjay is a bitch w no clue fuck that weak nigga . he probably got slept like that before +p8458 +aVhe also identified the unit that took out ben laden . when asked , in CUSTOM_NUMBER , where the aircraft that bombed japan , in the doolittle raid , came from fdr answered , " shangri la . " president obama should also have side stepped the questiong . +p8459 +aVthe british public are something else , wanting that fame hungry bottom feeder back on the panel , i dont doubt the near death experience she had in labour has made her some kind of public sweetheart now .. +p8460 +aVa \u005c u CUSTOM_NUMBER do \u005c u CUSTOM_NUMBER ee ona nemala papu \u005c u CUSTOM_NUMBER du , tak ho mala ml \u005c xe CUSTOM_NUMBER ti \u005c u CUSTOM_NUMBER parohami . +p8461 +aVi think this could be a very interesting twist . this has never been done before . +p8462 +aV.. oh fuck what an amazing cock its soo dam big and a perfect foreskin one of the best dicks ive ever seen +p8463 +aVif you mention , readers will come . +p8464 +aVour concern is the deception and lack of candidness . accuser larry sinclair , challenged obama to submit to a polygraph test . barack h u s s e i n obama refused . what would happen if barack h u s s e i n obama is gay and he is blck mailed ? it could jepardise the security of the us ! +p8465 +aVenvy is not an american value . custom_break custom_break custom_break custom_break i saw the article as well as others talking about obama \u005c\u005c ' s budget custom_break containing roughly $ CUSTOM_NUMBER trillion dollars in new taxes and fees . it got me custom_break thinking about how many billionaires we \u005c\u005c ' d have rape to pay that - yes custom_break rape is the correct word ; forcibly taking from people who \u005c\u005c ' d legally earned custom_break the money they were still supposedly allowed by law to own . custom_break custom_break custom_break custom_break if we took every single copper penny from how many billionaires .. how custom_break many would it take to come up with a total equivalent to the $ CUSTOM_NUMBER trillion custom_break dollars . so i started adding up the wealth as reported in forbes CUSTOM_NUMBER custom_break " the richest people in america " . it \u005c\u005c ' s more than i counted . custom_break custom_break custom_break custom_break if we took every single penny of money from america \u005c\u005c ' s top CUSTOM_NUMBER wealthiest custom_break americans , we would only make it up to $ CUSTOM_NUMBER trillion dollars . that custom_break sounds like a very few number of people totaling a very large amount of custom_break money . but what if we doubled the number of billionaires to , say , CUSTOM_NUMBER ? custom_break that would only take the total to just under $ CUSTOM_NUMBER . CUSTOM_NUMBER trillion dollars custom_break ( we \u005c\u005c ' re down to the just barely billionaires at that point ) . custom_break custom_break custom_break custom_break so i guess the point i \u005c\u005c ' m trying to makes is if obama was able to custom_break redistribute the total wealth of the top CUSTOM_NUMBER richest people in america , custom_break took every single penny they owned , it still would be almost a trillion custom_break dollars short of the amount of taxes and fees he is asking to levy onto custom_break " the richest people in america " , those ugly " millionaires and custom_break billionaires " . folks , where do you think the other trillion is coming from ? custom_break custom_break custom_break custom_break envy is not an american value . i would have loved to have been born custom_break into one of those rich families ; or have come up with the neatest widget custom_break craze ; or started a software revolution in my garage . but i didn \u005c\u005c ' t - custom_break and i hold no grudge against those who did . custom_break custom_break custom_break custom_break those top CUSTOM_NUMBER rich people didn \u005c\u005c ' t steal that money from me and i damned custom_break sure don \u005c\u005c ' t want it stolen from them under the guise of redistributing it custom_break for the good of others . +p8466 +aVyo moron , & nbsp ; get your poppy cock back to bed , its CUSTOM_NUMBER in the morning , nobody with any intelligence is gonna sit here at CUSTOM_NUMBER am and listen to you whine while smoking your crack and licking postage stamps with dead drug addicts on them while you lose another CUSTOM_NUMBER . CUSTOM_NUMBER billion this month , & nbsp ; get a life or just admit that you are denying a village somewhere of an idiot . & nbsp ; brilliant ! +p8467 +aVespn ranked him #1 best player in nba +p8468 +aVonce again i give a " tip of_the _ fuckyou_hat " to_faux _ " news " . so , we can comment only on articles that you see to be appropriate ?? +p8469 +aVthank you for your interest in the mizzou brand , ku fans . you're so over us . we get it . +p8470 +aVCUSTOM_AT why arent we doing this if it is an option ? our schollys are CUSTOM_NUMBER percent of the time good for four years anyways and it seems like it would be a huge advantage to us in recruiting over the likes of alabama , sc , and others . +p8471 +aVcheney , rush , nugent . the list is endless . +p8472 +aVgood man ! if you're going to do something wrong do it right ! people say that swearing suggests a limited vocabulary , i swear like a sailor on leave and i speak CUSTOM_NUMBER languages with some degree of fluency , at least it's not a national scandal over someone saying ' bugger ' or something pre-watershed . a good hefty expletive now and again on tv brightens it up +p8473 +aVshut the fuck up you ignorant troll +p8474 +aVcadge me a fin . i'll pay you back . +p8475 +aVnoone forced you to stay there when the burnouts were happening +p8476 +aVbitch stfu u fuckin clown custom_break +p8477 +aVsaddam was installed by the us . he was even encouraged to attack iran , which lead to the CUSTOM_NUMBER year long iran-iraq war which caused over CUSTOM_NUMBER . CUSTOM_NUMBER million deaths you lying sack of .. !! and regardless of how much better the shah was than today's regime it doesn't change the fact that he was a f'in dictator installed by the us and he was kept in charge by cia trained secret service !! if it wasn't for us meddling iran wouldn't even have an islamic regime today . like most other asinine things the us has ever done , their dictatorial plans backfired and caused the entire population of iran to become hostile towards the us . and no one is regretting mubarak's leave , only islamophobes like you do . as for the taliban , the us government knew ** damn well how savage they were !! +p8478 +aVky , come on man , the leading returning senior wr has CUSTOM_NUMBER catches .. +p8479 +aVisane " ? republicans want to cut funding for education . you must like that idea .. +p8480 +aVfuckoffashreduxagain .. you know full well obama is abusing his power . prosecutorial discretion is based on an exception one on one basis as they come up . to hand out blanket amnesty to pander to the hispanic vote and then try to hide behind this executive power is abuse and you know it !! +p8481 +aVyou are racist . " custom_break custom_break jamele hill +p8482 +aVit's an immutable fact of life that when politicians and their " civil " servants , who have never even run a lemonade stand , decide they " like " something that : custom_break custom_break CUSTOM_NUMBER . the alleged benefits are grossly inflated custom_break CUSTOM_NUMBER . the alleged costs are grossly deflated custom_break custom_break because it's great to spend other peoples money which is confiscated by an act of parliament . +p8483 +aVcoming on here to hate ? get a fucking life this is straight fire you dont like it your a pussy +p8484 +aVone has to remember that all the people were adults . most of these " poor " stars that are at risk are adults . i do not feel sorry for any of them that have all that money and wish to blow it on drugs while many of the rest of us are trying to make ends meet . you can say they were adicted but i am sure in most cases noone held a gun to their heads while they held a crack pipe to their lips . we as a nation spend too much time worrying about these spoiled individuals . just sayin +p8485 +aVproblem is we are loosing our choices due to beurocracy . islamisten do not have a bureaucracy they just act and organize later boy we are killing ourselves and we dont knowit +p8486 +aVits kind of frightening knowing dbags like you exist . +p8487 +aVno bc , no greencard . no soup for you !! +p8488 +aVfuck you all to hell +p8489 +aVcredit CUSTOM_NUMBER the photographer , CUSTOM_NUMBER using a wide angle lens CUSTOM_NUMBER get his ears on the photo .. +p8490 +aVplease reply about israel's nuclear weapons . do you deny that they exist +p8491 +aVme acord \u005c xe CUSTOM_NUMBER de \u005c xe CUSTOM_NUMBER ste : custom_break CUSTOM_URL +p8492 +aVif the directer cast ranbir kapoor for bloody veer - then they should change the name - from bloody veer to bloody fucker becos ranbir is a bloody fucker - yes ranbir kapoor take virgin blood of a virgin girl - like a vampire but - he always take a virgin girls blood - not from her neck but take it by fucking her virgin hole ( vagina ) .. ranbir ( dhela charecter ) kapoor simply enjoy - fucking virgin hole and enjoy to watch the virgin blood which came out from that virgin hole .. poor girls .. so i think - bloody fucker is the perfect name for this film .. if they cast this bloody khandani fucker ( ranbir kapoor ) .. all the best for the film . +p8493 +aVmost bankruptcies take months or years to resolve . gm's took a few days . +p8494 +aVi don't get . this me in the video and i don't understand what me sucking my thumb has to do with daddy issues . i think just a bad habit . that i enjoy doing . a lot ppl have them probably most of you commenting on this video . so fuck all you hoes lol . +p8495 +aVyou need to shut your pie hole and go away . you suck . +p8496 +aVi think liam you should watch pat condell and maybe learn abit more about this faith .. +p8497 +aVgod , get rid of the shitty tattoos and piercings , another decent girl ruined ! custom_break custom_break and she's not even from la and got it tatted lol what a fuckin loser ! +p8498 +aVinteresting story on the canadian prime minister's reaction to a nude painting done of him custom_break CUSTOM_URL +p8499 +aVi have never seen mike so genuinely messed up before . here , i'll bring closure : custom_break custom_break the core problem is that prometheus does not bring any new or interesting ideas . however , it promises from the start that it ' will ' , but it obviously fucking doesn't . custom_break custom_break and that's where your current state of confusion stems from . psychologically , you haven't left the theater yet , and are waiting for it to " finish " . but you have ( and will ) in a few days come to grips with the fact that the movie is over , and that it was an empty , hollow piece of crap . custom_break custom_break and i just mentioned the core problem . i didn't even touch the nonsensical plot , the nonsensical characters , and so on . +p8500 +aVhey idiot , your caps lock is on +p8501 +aVCUSTOM_AT i make no sense ? ! r u kiddin me ? ! stick it to u're opinion , ok , respect that , but it make any sense that u're answer every damn post here .. u cant change my opinion koz i just need it as every CUSTOM_NUMBER . CUSTOM_NUMBER as well soo , u got the point .. u're mission here is to shit on other people and not accepting their opinion , wish etc . calm the fuck down .. ! +p8502 +aVroman caught my attention last year at the ims , the shame is his bikes get mixed in with a bunch of busa's with extended swing arms and airbrush jobs . his level of fab work , fit and finish can compete with any other full customs ive seen and deserves the respect of any other bike builders he just choses a differnt canvas custom_break custom_break +p8503 +aVwelcome to the crowd fellow idiot . +p8504 +aVCUSTOM_AT love it ! dirty harry and the chicago thug against the pasty fat boy ! \u005c\u005c custom_break " this . CUSTOM_NUMBER could blow your head clean off . +p8505 +aVits a good thing the republicans are licking obama's feet . +p8506 +aVatm CUSTOM_NUMBER .. your words are those truly of an ignorant person +p8507 +aVi just laugh at some of you trolls saying weaver faked it . it just shows how little you know about baseball or sports in general . i bet you have never even picked up a baseball in your life +p8508 +aVat the beginning of the season if you send him down , no one will pick him up . no one violates that rule . +p8509 +aVCUSTOM_AT CUSTOM_AT i dunno - i heard he was a real bitch as an editor . +p8510 +aVif that same person were a republican fundraiser , you and the media would be over it like flies to a pile of horse poop . " custom_break custom_break a republican fundraiser doesn't know how to have sex , much less do a striptease . +p8511 +aVoh at least the military work for their money how about all those on public assistance who won't work , don't work who just suck america dry collecting their welfare checks . why can't we cut them ? +p8512 +aVmy balls fucking itch . +p8513 +aVthe name jacker is such an idiot +p8514 +aVthey got it before carter turned iran over to the radical mudslimes . +p8515 +aVstfu , cause you are not talking to roger and roger definetely didn't make those comments . those comments were made by some random idiot who made up a fake twitter account or some random idiot who hacked into roger's twitter account . do you really think a man of roger's position will make those hatefull coments ? +p8516 +aVso they refuse to retract a letter - based on a lie - from the guy they hate - for lying to the american people ? that is disturbing , dishonest , sleazy behavior on the part of judson phillips and is one reason i don't personally call myself a tea party member . if they keep this up , they will be a bigger joke to the left then ever and sadly a smear on conservatives values . +p8517 +aVCUSTOM_NUMBER ) CUSTOM_NUMBER ) CUSTOM_NUMBER ) CUSTOM_NUMBER ) CUSTOM_NUMBER ) CUSTOM_NUMBER ) stop with the stupid numerical stats , just admit it you wanna pork wade !! +p8518 +aVand the heat shot CUSTOM_NUMBER - CUSTOM_NUMBER on CUSTOM_NUMBER ' s and still won by CUSTOM_NUMBER . so let's not act like the heat played at their best either .. +p8519 +aVthe tombstone .. the hearse .. the stake pies .. custom_break custom_break are ordered .. oh well it was good while you lasted .. custom_break custom_break lmfao .. hahahahahahahahahahahahahahahahahahaha +p8520 +aVthose on the inside made more money while most investors took it in the shorts . ever feel like someone is pulling the strings ? +p8521 +aVi'll give her more credit than i will any other right whinger . she stands by her stupid , racist , moronic , ignorant , hateful , idiotic , bilious , cretinous comments and doesn't try to blame someone else . hey espinosa , hope you don't fall down a well . +p8522 +aVit's pretty meaningful when it is the highest ranking government official , but there is no shortage of additional examples . take a normal high school with an approximately CUSTOM_NUMBER % white and CUSTOM_NUMBER % black student body as an example . go look in the lunch room . you will see whites and blacks sitting with their own much more often than not . most serious conflicts will be divided along racial lines . racial preferences are also reflected in where people choose to live . there is an affluent black community in my region because affluent blacks often choose to live among other affluent blacks . they should not be blamed for it . it is natural for people to want to associate with people who are like themselves . people's desire to associate with their own kind is not just a national trend . it is a characteristic of human nature which has existed for many thousands of years all over the earth . +p8523 +aVmore like he turn yo ass into a carnival ride , you already look like you take dick in the ass in that homo ass picture of yours . +p8524 +aVanybody and i mean any motherfucker who confuses bill pullman with bill paxton is a fucking imbecile beneath contempt +p8525 +aVhave any one ever seen dude in a fuck flick ? i wonder if he fucks around or not . all i see him in are jerk off flicks . +p8526 +aVCUSTOM_AT CUSTOM_AT number fifteen , lol +p8527 +aVshisui was born after tobi gave nagato the rinnegan .. so thats a hopeless case . +p8528 +aVyou are sickening and pathetic !! +p8529 +aVCUSTOM_AT CUSTOM_AT needs to give me a fucking like eh i never got into them . i'm waiting for lollipop chainsaw to drop in price that game looks so bad it has to be great +p8530 +aVCUSTOM_AT you will regret it if you dont lol +p8531 +aVCUSTOM_AT but he's so ugly ! +p8532 +aVdon \u005c\u005c ' t really care if she \u005c\u005c ' s a billionaire \u005c\u005c ' s daughter ( so is lady gaga btw - for those of you who think she identifies w / ur struggle ! ) , the snl performance was definitely off - she looked nervous , terrified in fact , and i don \u005c\u005c ' t blame her ! the kind of audience that snl has , i would be peeing in my panties on that stage ! even marilyn manson admits to puking from nerves befor live shows when he was fresh on the scene .. bottom line is this : i heard the song , i liked it , i downloaded the rest of them and i love her style . fake lips and all , i think it works for her and like my boss said " she made it to your playlist , so .. +p8533 +aVapparently you are too stupid to even watch a video and get it right . for your desperately needed information , reagan was interrupted CUSTOM_NUMBER seconds into his statement . the statement was clearly not over for another CUSTOM_NUMBER seconds . custom_break custom_break you have irrefutably proven that you can't get facts straight even when you have a video in front of your retarded face . thanks for proving me right . +p8534 +aVthat and CUSTOM_NUMBER . CUSTOM_NUMBER will get you a cup of coffee at starbucks +p8535 +aVgo rox ! .. make it CUSTOM_NUMBER in a row tonight ! +p8536 +aVthen you are a thief justice apologist pabaon general ! +p8537 +aVyour are an idiot +p8538 +aVcompared with the usa , zimbabwe looks clean . +p8539 +aVoo shit nice :d +p8540 +aVthey'll probably get the signatures ( stupid churches ) . would be awesome if the referendum does lose . that more than anything will show things have changed . +p8541 +aVhows your mom's basement doing ? +p8542 +aVCUSTOM_AT . moss shred them into tiny pieces , and then glue them all over your body . +p8543 +aVstick to santorum . your obsession with his wife makes you look like an ass . custom_break custom_break there is plenty to pick on with him . he is as big a freak as you are +p8544 +aVyou know you're struggling when descalso hits a homer off of ya .. yikes ! +p8545 +aVamen . now that problem is solved . +p8546 +aVplease let us know who is logged on and where you are viewing from . +p8547 +aVand you arent as much of a loser as them ? custom_break i say you are just about worse +p8548 +aVdamn it nicole , fuck it up for us , just once . please ? +p8549 +aVwhen you're storming the field after pulling out a win against usu ( at home ) you know your program is in trouble . +p8550 +aVwhere are you going with this ? +p8551 +ag6209 +aVhere is your boy sander +p8552 +aVhey , that's an insult to my religious beliefs . custom_break custom_break make fun of santa and jesus all you like , but hl CUSTOM_NUMBER is prophesied in the sacred valve scrolls . +p8553 +aVbbu , a friend and i have been playing with produce farming for about three years , evry since the economy got soft . i grow cabbage and collards in the fall , beans and tomatoes , bell peppers in the spring . been thinking about lettuce lately . +p8554 +aVsmacked by who ? you coonass boys sure are corny . +p8555 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT deal ! wait .. damn . +p8556 +aVoh bore off you stupid twat ! +p8557 +aVnot sure if you are joking or just dumb / have no knowledge in comics . +p8558 +aVetan you are amazing your wife is very lucy +p8559 +aVuh guest , using " uh " doesn't make you sound intelligent or superior . it makes you sound like the moron you always prove yourself to be . in your case you should spell it " duh . +p8560 +aVfranklin street #fuckwitme +p8561 +aVguess how they got the money to buy such " lavish " tributes . +p8562 +aVhave worked in kitchens when body piercings are banned because of the potential danger of piercings falling off into food and the possibility of setting off heat sensors . is food safety a victorian policy +p8563 +aVno she is not a toad but you are a libturd ! +p8564 +aVaw , but it says " centre " right on the outside in big red letters ! custom_break custom_break of course it's only called that because rogers owns the team , the stadium , and the tv empire that broadcasts the games . normal people still call it skydome . +p8565 +aVCUSTOM_AT ones CUSTOM_AT man game don't get me wrong , i like the reggie jackson , but just think if we had maynor manning the second unit ? our starters get a lead , then the the second unit makes it grow . i think that will start to happen later in the year , but jackson is getting his feet wet . anyone else but me think jackson plays a lot like rw did his rookie year ? out of control , super athletic and is able to use that athleticism to make up for being out of position sometimes . +p8566 +aVi'll take your word on it . +p8567 +aVcaptain , you need to quit standing on your head , you are have a cranial recital inversion problem , you have inserted your cranium so far you your recital cavity you are seeing everything upside down . custom_break +p8568 +aVyou tell ' em max ! +p8569 +aVthey fucking killed it !! custom_break custom_break go hyo go hyo !! +p8570 +aVyes my filthy little lefty troll .. both you and barry have just proven my point ! +p8571 +aVwhy are you here ? +p8572 +aVnone of that has to do with class custom_break listen to serena -- classless -- horrible human being custom_break nadal does give his opponent credit -- unlike serena . +p8573 +aVCUSTOM_AT sorry bout misspelling your name too btw ! gina gina gina !! ok , got it :) +p8574 +aVkwaartz - do yourself a favor . go to africa and look at the cultural achievements there before the white man came : no wheel , no reading or writing , no bridges , no buildings other than mud huts that look like bird nests . custom_break custom_break then tell me if you are proud of your african culture . far better to be proud of us culture methinks . +p8575 +aVplease don't you are an idiot +p8576 +aVwhat are you going to do , watch your party keep minority people ignorant ? compassionate liberal , my . ass ! +p8577 +aVfuck all heat haters . yall can suck my dick , i got nothing against okc but fuck em too !! we winning this year wade county king james bitches , CUSTOM_NUMBER +p8578 +aVjackson and westbrook together worked well i thought , funny cause maynor and westbrook never worked all that well in the few minutes weve seen it +p8579 +aVthey wont unless people like you stop coming on here to whinge . +p8580 +aVoh , you got your information from the fox news network or from some idiotic right-wing tea bagger blogger ! they always distort the truth . get a life and stop blaming the president b / c you are a loser in life .. +p8581 +aVi love top to death , but i get how blue hair's not only his right . jokwon looks good with it too . :) custom_break custom_break custom_break but honestly , top will forever be the only one in my heart as the blue cotton candy ice-cream . :d +p8582 +aVand .. you know .. being on probation . +p8583 +aVdie you bloated sack of cow shit +p8584 +aVa man threw his intestines at police . " custom_break custom_break " and rectum ? "" no , they survived , but he wasn't doing so good . " custom_break custom_break okay , i'll stop now . +p8585 +aVdan_amd custom_break custom_break custom_break custom_break custom_break you have realy no clue on every single idiotic comment of all your posts . custom_break we all don't enjoy your stupid pro amd b : u : l : l : s : h : i : t ignorance . custom_break please crawl back then in the fat ass of your gay loving buddy charlie custom_break demerjian semiinaccurate and try to find the light inside - u stupid fag ! custom_break custom_break custom_break custom_break custom_break we realy don't need and want your post here anymore ! +p8586 +aVcity were so lucky defoe should have got the winner balotelli should have been off !! +p8587 +aVyou are a born m o r o n . +p8588 +aVthen don't watch it loser . +p8589 +aVescobar is not an all-star . not even close . asdrubal is CUSTOM_NUMBER times better . to think escobar is better is stupid . he is a decent ss at best . CUSTOM_NUMBER homer and CUSTOM_NUMBER rbi and a terrible strikeout to walk ratio . bruseki is an idiot . +p8590 +aVpujols is gonna bomb this one to center . book it ! +p8591 +aVim-fuckin ' - possible ! i thought i knew jayjay mohr but i don't know shit ! +p8592 +aVthat's because you're all morons . +p8593 +aVas always you said it succinctly . it is santorum \u005c\u005c ' s continued integrity that makes him worthy of a conservative vote . should he lose because he did not compromise his values , it says more about our country and christianity in the west than it does rick . let \u005c\u005c ' s pray america is not so far gone that today \u005c\u005c ' s voter puts more stock in the willingness to " do whatever it takes " than the willingness do what is right regardless the cost . +p8594 +aVi assume that you are trolling ? i can't see any other reason for your post . +p8595 +aVCUSTOM_AT i think hallucinations could make for a very interesting feb of writing for you ! +p8596 +aVwell nothing is torn so i don't get how much more injured someone can be . i think the rangers are just being really cautious with feliz +p8597 +aVgrr i hate that motherfuck her dad need to be burned at stake +p8598 +aVgee whiz ryan is your dik that small ? maybe you should invest in some of that dik extender instead of a new computer . you are nothing but a keyboard warrior . +p8599 +aVi don't understand ? dodger stadiium has been a problem for quite some time now .. i live in cali and know all the problems that surround dodger stadium ! too many gang bangers and not enough fans ! +p8600 +aVhey dick lick you don't know me i go to all the ufc fights i know what goes down most of the fighters hate fighting for the ufc because their under paid so you think i don't nothing you mexican princes screw you and the dick you ride on +p8601 +aVmaybe you need a better trained guy +p8602 +aVyeah , and you're a fuckingterrorist supporting skumbag . fuckingloser ! +p8603 +aVand you are the one who daily licks it out . +p8604 +aVyet you know mama manzo is , even though mrs juicy had a co-writer the fact is , she still has three books out she was still on celebrity apprentice , she is all over these tabloids , she is popping up all over , what does mama manzo have , black water and three kids laying around eating all day and their gay man servant and family that wants her shipped off to lower slobovia +p8605 +aVgo suck gay boy brocks filthy-cock . +p8606 +aVwhy the hell would you need extra storage ? custom_break custom_break thats the same like asking , " why the hell would you want free apps ? " facepalm . you apple fanboys have no brains in your iheads . +p8607 +aVit is one of the few things the federal government is constitutionally supposed to pay for . +p8608 +aVyou are so funny +p8609 +aVthats is complete bullshit because black people arent the only people that can have soul you sound ignorant as shit whites struggle to im black i have many of white friends thjat had it rough growing up so if you really belive that white cant relate c'mon now +p8610 +aVyou're an uniformed idiot , lazy / maxketter . many csrs people ( me included ) have paid in the full CUSTOM_NUMBER " quarters " , yet only will receive a very small percentage of full ss . i paid in my CUSTOM_NUMBER , and then continued to pay every single month for the next CUSTOM_NUMBER years through military reserves payrolls , yet i will receive zero credit for any of that CUSTOM_NUMBER years because it didn't quite reach the threshold of " substantial " contributions . so that was money down the drain . more accurately , some of it is going to you , while you spend your life whining about dedicated federal employees who get much less from the government trough than you do . +p8611 +aVim talking present you moron lol . +p8612 +aVthese are indoors . glossy sucks everywhere . +p8613 +aVif you think obama has any chance at winning your as delusional as you were thinking scott walker was going to lose . +p8614 +aVwould someone please send this guy a blow up doll of obama with a CUSTOM_NUMBER gallon drum of ky and be done with it . . . custom_break custom_break \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ci \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m doing fine \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break custom_break custom_break custom_break - president obama to northern virginia community college students . custom_break custom_break custom_break custom_break february CUSTOM_NUMBER , CUSTOM_NUMBER custom_break custom_break custom_break custom_break dear president obama , custom_break custom_break custom_break custom_break i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m happy to hear that the obama family are doing well economically . thats good . that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s how america is supposed to work . you worked hard . you sat in the church listened to every one of reverend writes sermons that attacked the nation that you are now the president of . rose through the ranks of chicago politics and still smell like a fresh bar of irish spring . that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s impressive . the wife got a nice cushy job . you got elected after you politically knocked off your opponent , he should be happy he \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s still breathing , then you made it all the way . i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m leaving out the sweet heart mortgage and the the whole roland burris / blagoiavich thing because it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s all a little sordid , and i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m not in the mood . it is valentines day :) custom_break custom_break custom_break custom_break is this the new american dream ? must be . but i don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t see how most americans can access it ? where should one go to school to learn how to be a self hating rich person that pleas with the populace to raise their taxes only to avoid the appearance of wealth to forestal the masses from knocking down your door . i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d like to think if i had money i would give a lot of it away to good people , and good causes . i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d like to think that i would not be the person that would use that wealth unwisely and selfishly like you and mr. buffet do . you people selfishly convince others to use their money to obtain your political goals all the while claiming that your motives are pure . really ? how pure can ones motive be when they advocate for abortion and delving into the private relationship between man and god ? what ever happened to the separation of church and state ? oh i forgot . religion can \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t be in the public square , unless your muslim , but government can infiltrate our churches and synagogues . custom_break custom_break custom_break custom_break your motives are not pure at all . recently the feds have even gone after fresh milk production . even cows aren \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t safe from rich people like you and mr. buffet and mr. soros . what do you rich people have against milk ? are you afraid we \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ll riot if we run out of it ? i wonder forty years from now we will not have to wonder why there isn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t enough milk . all we will need to do is look in the smithsonian . there will be two heifers , stuffed , the plaque will read , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthese cows were too productive ! nien ! this must not happen ! \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d will we one day have a museum with stuffed rich people too ? we tried that it only leads to a nightmare . money is like manure it is no good unless it is spread . when it is spread it tends to grow thing like grass for cows to eat , so they can make something called milk . capital also creates businesses that hire employees that pay taxes and use their money to do things like take vacations and go on hunting trips with their friends . regardless , if we can \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t even speak up for the cows , who can we speak up for ? custom_break custom_break custom_break custom_break :) custom_break custom_break custom_break custom_break respectfully , custom_break custom_break custom_break custom_break joe doakes +p8615 +aVwell , it will be hard for iran to claim israel is responsible for one of these attacks . the purpetrator blow himself up and was cooperative enough to bring his passport to prove he is iranian . these countries , especially india should rethink their relationship with iran and cooperate with the sanctions . buying oil from a state that sponsors terrorism will only lead to more problems for all . it does prove to anyone objective person or nation who had any doubts previously that the iranian regime is engaged in lies and deception , both in their involvement in terrorism and concerning their nuclear program . +p8616 +aVunless it was the world wars war is now and always has been fought my the poor and disenfranchised it is simply the way society wroks +p8617 +aVi just want to know why billboard did not post my comment . seriously ? and all of these negative comments are on this blog . screw you ! +p8618 +aVyou aren't zobiana's healing temple for one thing because i am .. so i guess we know who the friggin ' liar is here asswipe . luana is lucky to be far away from that nasty perry family and considering that dp is an abusive pos and thief as well it is probable that the whole famiy is a creepy mess . i am starting to hear banjos playing just thinking about those nasty perry people . +p8619 +aVso beautiful , you and your little gal crocheting together . her work is perfect , and i know you are just shining , inside and out . :) +p8620 +aVhave fun roger , takes a little the heat off the saint's crap +p8621 +aVit's not that serious ! it's just a swimsuit pic it's not like your posing for porn ppl ! ugh y'all kills me +p8622 +aVapparently so are you , idiot . +p8623 +aVtruer words have seldom been spoken . you are the voice of reason . +p8624 +aVso ladd you are not at working writing on this blog , from a government owned computer , on taxpayers time or using a taxpayer paid internet service ? +p8625 +aVyou are different , in a good way ! +p8626 +aV< strong > < a > you are a mean spirited azzhole . posters have asked you to stop this !! no wonder everyone on this blog hates you ! +p8627 +aVthe collapse is now very near , i think ! custom_break custom_break hey eu people ( and us people , by the way ) , let's just face it once and for all : custom_break custom_break we are bankrupt ! custom_break this is jut too much debt . everybody is drowning in a sea of .. debt . custom_break derivatives exceed , by far , the world gdp . custom_break custom_break sorry .. but it seems to me : game ( soon ) over ! +p8628 +aVaren't you ? +p8629 +aVwhat woud he do .. shoot him ? proud example indeed . +p8630 +aVif i could find you .. the correct term for your filty-h CUSTOM_NUMBER m CUSTOM_NUMBER life would become .. extinct . +p8631 +aVthose who feel that this is a great joke have obviously never been the victims of rape , nor have they had mothers , sisters or daughters that are victims . i doubt if they had that they would find anything remotely funny about it . +p8632 +aVwow paul , fishin's cool , bass and flounder are two of my favorites i also like specs and perch ! my day was full and fun later in the day . this mornin went to a early bible class memorial , and then to the cemetary visited dad with some flowers and then we stopped at the san jacinto monument and took the grandbabies on a tour through the refurbished battleship texas . they all wanted these dogtags and shell casings on a chain , go figure .. and then came home and sparked up the weber . whew .. made some fresh green beans made the girls snap all those and some potato salad and some fruit . smoked brisket , and chicken , and of course some ribs . custom_break custom_break first thing on the news today was great . it's official , they say texas is likely to have enough delegates to secure the nomination for romney . yahoo !! +p8633 +aVmaybe they will change it tomorrow . i thought they might do it tonight but i guess not .. +p8634 +aVyour wife is a loon , mick wont give her the attention she wants so she kicks off a bit like a a child who doesnt get their own way she likes to be the centre of attraction grow up +p8635 +aVmy mother-in - law is on the loose again . she loves wallabies ! +p8636 +aVagain : i wouldn't count on it . custom_break custom_break anyone who continues to support the current empty suit is either totally deluded or a_traitor . +p8637 +aVa nickelback riot is when their two fans get into an argument . +p8638 +aVi have a friend who lives in thailand . this bomber was trying to blow up a school full of innocent children ! he got his legs blown off as a result of his ( thankfully ) failed attempt . +p8639 +aVyou are retarded +p8640 +aVmust be nice having umps on your team . +p8641 +aVi love news such as this because it scares off all of the trolls . even they will not try to defend something so blatantly wrong . then again , logic doesn't apply for them so there will probably be one on here soon . who do they think has an extra $ CUSTOM_NUMBER , CUSTOM_NUMBER sitting around to donate to them ? we aren't all soros . why don't they suck his resources dry before they go after my pittance ? +p8642 +aVCUSTOM_AT :d isqus you cnn faggots . +p8643 +aVfuck otr +p8644 +aVlet's see your girl's set . +p8645 +aVpanetta is kissing obamas ass , he'll do what ever this loser president tells him to do , obama is trying to destroy america , cutting back on defence is a good way to have our enemys attack us , he wants to save some money so he can spend it on radical programs he has dreamed up , like forcing catholics to go against their faith , and now he says it's over , no more debate , like he's the king of america and want he says is law , he thinks all americans are stupid , he's the only one who knows how to help us , but there's an election coming up and it looks bad for b.o. if the voters don't get this joker out of office we're doomed as a nation . +p8646 +aVegypt will either have an islamist or a high up from the last dictatorship as president , either way democracy won't last long +p8647 +aVCUSTOM_AT needs to give me a fucking like you mean polenta ? +p8648 +aVthen it's a duck , not a fascist . good thing liberals don't hunt , or the country would be run by donald duck while conservatives would be served up with gravy and potatoes . assuming , of course , that these hyper-urbanized fops didn't pull an elmer and wind up shooting their own beaks off . +p8649 +aVor a flaming queen like gheyrooster ! +p8650 +aVi just remembered the two countries called sodom and gomorrah , and i will like you to also remember it even now , bcos that same god never change ! +p8651 +aVco je to za stupidn \u005c xed ot \u005c xe CUSTOM_NUMBER zka !! custom_break to nen \u005c xed nic lep \u005c u CUSTOM_NUMBER \u005c xedho , praktick \u005c xe CUSTOM_NUMBER ho , aktu \u005c xe CUSTOM_NUMBER ln \u005c u CUSTOM_NUMBER bj \u005c u CUSTOM_NUMBER \u005c xedho , kritick \u005c xe CUSTOM_NUMBER ho , moralizuj \u005c xedc \u005c xedho atd .. custom_break bernard z moravy +p8652 +aVdefinition of wrestling stupidity .. take the most gifted and technically sound female wrestler you have and make a joke of her in a backstage skit about farting . am i the only person that thinks it's time for a mass firing in the creative team much like wwe does with their talent that aren't performing to expectations ? if it happened CUSTOM_NUMBER times a year with the staff like it does with the talent you can pretty much guarantee these guys would get their heads out of their asses and put better material on tv than this . +p8653 +aVoh sally , take your medicine +p8654 +aVfuck off , fucking pathetic bitch , too much to say for yourself . google it . +p8655 +aVi \u005c\u005c ' m directing this comment only to the my fellow chelsea supporters . custom_break custom_break i for once agree with avb . i think he should be strict with these big name players . if you are manager of this team you need to be strict . avram grant was too soft . scolari too soft . ancelotti in his CUSTOM_NUMBER nd year too soft . are they still our manager .. no . by time we have a manager that does things his own way and not play to their tune . at least he can ( if he is sacked ) say he did things his way , unlike the other scared managers afraid to touch drogba , anelka , lampard and terry . too long have these " big personality " players rule chelsea . remember in the CUSTOM_NUMBER rd season of jose \u005c\u005c ' s reign when we lost the league to untd , early that season drogba wanted to leave as he was sulking most of the champions previous CUSTOM_NUMBER years and after jose left , he sulked even more causing lot of negativity in the camp . oh and remember the champs final the sent off and anelka \u005c\u005c ' s missed penalty ?? then the next year scolari became manager he sulked even more and caused again negativity in the team . my point is when he doesn \u005c\u005c ' t sulk we win things . players like drogba , malouda , anelka , lampard and terry get paid lots of money per week to be professional and to give their best . clearly and their should be no arguaments from chelsea supporters when i say none of these players this year are performing well enough to be in CUSTOM_NUMBER st team yet they are demanding first team action . malouda is a waiste of time , money and a place in the team . if this was sir alex instead of avb then man untd fans would have supported him , i \u005c\u005c ' m asking , can we not do the same with avb . i \u005c\u005c ' m a big fan of jose , but i think avb is perfect for chelsea as soon as the older players leave in the summer we will see the true chelsea .. we are set to buy willian , hazard , christensen and neymar . players such as paizon coming through next season . imagine the following squad for next season . custom_break custom_break torres - sturridge - neymar custom_break custom_break mata - essien - romeu - ramirez - paizon - meireles - hazard willian custom_break custom_break cole - cahill-terry - luiz-ivanovic custom_break custom_break cech custom_break custom_break come on i know you are smiling as a chelsea fan and i know you are worried as a non chelsea fan . go avb !! +p8656 +aVget gungnir and growlanser : wayfarer of time and you'll be touching your psp all summer . +p8657 +aVCUSTOM_AT the fact that he was picked in the CUSTOM_NUMBER th round should have no bearing on the decision . he was stuck behind jamarcus russell for three years and his stock drop was strange to say the least . irrelevant through , you have to look at the fact that he worked with one of the game's best qbs and best qb coaches for CUSTOM_NUMBER years . not to mention that philbin knows how to make him succeed . +p8658 +aVother than the old ussr , is there really a more secretive government that that of the u . s . ? +p8659 +aVCUSTOM_AT funny because apple employees ( me ) are told to say os ten .. not os x like you are trying to elude to . in fact , os " ex " is frowned upon in dialog . bitch harder about things you actually know about . oh and you're wrong about the star wars thing too . +p8660 +aVjesus christ , powell [ caleb / colin ] , he [ dylan grey ] could be a fucking bartender for all we know . +p8661 +aVif romney gets a first term we will be in exactly the same spot , you have this fantasy that the politicians and parties run this country , the true power lies with the nsa and cia , the president is nothing but a figure head . +p8662 +aVthanks curtis , and you're welcome .. +p8663 +aVcan you show a photo of her being fat ? +p8664 +aVdecapitate ? the helmet hit him in the ass .. where " your " head is ! +p8665 +aVyou ` re a sad excuse for a human being . +p8666 +aVno . what's finally going to end this bullying bullshit is holding the parents financially responsible for the acts of their darling little miscreants . custom_break custom_break custom_break custom_break when they start laying & nbsp ; whopping fines at the feet of the parents of the child doing the bullying , you'd better believe they'll be slamming the brakes on " little johnny's " extracurricular activities faster than he can say the word faggot . +p8667 +aVyour pussy . stop hitting woman and fight me bitch ass nigga +p8668 +aVthanks for your service , man . you're looking very good . when's your next leave ? ;) +p8669 +aVdon't forget to add that she inspired a troll such as yourself to chime in .. now go back under your bridge and behave yourself . +p8670 +aVno one on the left wast's an all encompassing government , you idiot . +p8671 +aVyou have suck a knack for the spoken word ! +p8672 +aVwhat about a taxpayers bonus ?? +p8673 +aVbitch you digraced the whole nation .. now wait for the whole pakistan to bombard you with their precious comments ! fuckin fraud ! +p8674 +aVthey can buy and they can apply for residency just like any other person . so shut up you ignorant fool . +p8675 +aVhave you had this yourself ? +p8676 +aVyea because i waste my time documenting your lunacy . sorry dikhead we all know you and what you post . unlike you we don't suffer from add +p8677 +aVthe miami heat are CUSTOM_NUMBER nba champions .. +p8678 +aVi refuse to comment on a nigga hairline who is worth CUSTOM_NUMBER figures might be CUSTOM_NUMBER b CUSTOM_NUMBER its over with can fuck yo bitch and make yo watch with that kind of money that nigga can grow a s curl and still do what he wants with that kind of money +p8679 +aVhave you told your dem friends that you are upset they chose a mormon to lead the senate for them ? +p8680 +aVyour team has the nastiest trash talker " kg " in the nba and now he is crying because lebron said , yeaa , yeaa after he fouled him .. lmao #s - o-f - t +p8681 +aVi personally like CUSTOM_URL :d +p8682 +aVCUSTOM_AT tho no , you are totally missing the point . google + is totally incomparable with facebook . it's more like a macro version of twitter , with better segmentation / grouping functionality . +p8683 +aVyou are literally like a robot creation from my nightmares . do they have you on drips feeding all this utter horror into you . custom_break custom_break let's hope we never meet , i won't know whether to pray for you or just knock your lights out . +p8684 +aVhe weak ass fuck +p8685 +aVcampbell , i urge you to stop cutting . one little relapse does not mean that you failed . put the razors in the trash and haul the trash out to the curb until it gets picked up . you are better than that . please get the support you need and deserve from ct or whoever you are comfortable with . and know that you have support here and are welcome to email me privately any time if you want to discuss things less publicly . get healthy and then get out of the house to do something that is productive so that you'll feel better and have more self-worth . whether that is looking for another job , walking the dogs , going to lunch with someone or volunteering - getting out and doing something is a great way to free your mind in a healthy way . +p8686 +aVwhat is the basis for your argument ? it surely can't be solely the misplaced ' only ' . have your children had bad experiences in american schools ? i ask simply because you must be practically an expert on education in the united states in order to make your comments with such confidence . +p8687 +aVthe american commerce system runs on sex . it's used to sell everything from condoms to condominiums . you'd think , the party of big business , would recognize this and not try and kill the golden goose , ( or choke the golden chicken , as it were . ) +p8688 +aVyour a fucking toolbag . why do you think there is a menu ? so you can order what they fucking make , not so you can modify shit like some sort of royal prince creating your own masterpiece . your not paying for the meal really , your paying for darden inc . to pay me , to talk to your fuckin ugly ass . your " meal " your eating is worth about CUSTOM_NUMBER / CUSTOM_NUMBER of what your paying for it . the rest is for the cooks and i having to deal with you . i just dont get why people think they have some sort of entitlement . your a baboon , your eating at a fast food joint you chunky jerk ! and i pissed on your salad ! how you like them breadsticks +p8689 +aVi know thanks for pulling them . +p8690 +aVwhat do you suggest . +p8691 +aVo.o some of you fucks who post in this board are retarded . the waste are fucking awesome ! and that show was sick ! fucking internet troll pricks . +p8692 +aVsakuras a little fake bitch . i love seeing hinata and naruto together . +p8693 +aVwhen you die your hair still grows for a couple of months . +p8694 +aVCUSTOM_AT bambaataa CUSTOM_AT ( david ) portland will win by CUSTOM_NUMBER . +p8695 +aVlol !! read the entire paper reidtard . typical poorly educated libidiot . +p8696 +aVhow would you prove you are a citizen ? custom_break custom_break a birth certificate ? +p8697 +aVand you are a moron . +p8698 +aVfox isn't required to provide a blog spot for anyone .. it's their option if they choose .. +p8699 +aVlol , if you choose to use an alternate path to health care you'll be paying the mortician sooner than i . +p8700 +aVmittens ? how old are you ? +p8701 +aVokay , i kinda understand better / so , the military now has islamic law and the new president wants to lessen that ? +p8702 +aVif you have to ask , you'll never know . +p8703 +aVCUSTOM_AT yep . i never mentioned the penguins at all . not once . in the entire post . +p8704 +aVkevin durant is too skinny " custom_break custom_break shaq +p8705 +aVmany he was pretty good at first all last year . he does not have to make many throws from first . and thats his weak point . he was great at catching the ball . which is the main job at first . +p8706 +aVwell , " all eternity " is stretching it a bit .. future inhabitants ( if they can still read ) will be puzzling over a few broken stones , and wondering , " who the zhark was elvas priestley , and who was this elmer schmurd who followed him ? +p8707 +aVvictor moore you are one dumb ass writher or you are smoking some bad crack . wtf suck hawks nock off the niners . wtf . dude buy some good coke . stay off that bad shit .. dude are you hanging with bobby brown . dang .. +p8708 +aVlmao oh yeah ? please tell me how the fuck i'd be " rigging the polls faggot " . maybe if your ass wasn't so dumb youd think of ways to get people to vote your shitty music CUSTOM_NUMBER / CUSTOM_NUMBER . heres two that have apparently been working : make an event on facebook with directions to vote , message the online people on facebook and personally tell them to vote . come on buddy put your brain to work maybe you can be charlie sheening too .. smh +p8709 +aVjust follow the cap words and you will find the way . custom_break gp CUSTOM_NUMBER is out standing at the roadside in the hot sun waiting for the mail to . come bringing new friends to the group . +p8710 +aVdilfer > marino custom_break * sarcasm alert +p8711 +aVyeah same here . he seriously turns me the fuck on everytime i watch one of his videos . +p8712 +aVi will point out observer - because you didn't like how i responded you chose to start with name calling ie . " moron " and then you wonder why everyone is disrespectful .. it all starts with each of us to monitor ourselves +p8713 +aVmy family has been in maine since the CUSTOM_NUMBER s care to choose up sides and see who the " real " mainers are ? custom_break and trash ? it's usually trash ( and uneducated ) that are such abysmal spellers +p8714 +aVyep , it's pretty std with liberals . when they've been shown wrong , the insults start flowing . when it happens , it just confirms i'm right and they are wrong . +p8715 +aVomg ! so fucking stoked ! +p8716 +aVwhat a very fulfilling life you have at CUSTOM_NUMBER - trolling other teams ' sites to talk trash . +p8717 +aV#fucktrolls +p8718 +aVi also havee an objection to my money being used to offset their pollution . fuckwits . +p8719 +aVlol you failed as well .. people need to learn to stop correcting others for a minimal grammatical error considered irrelevant , because , as can be seen by the lack of " be " in " custom_break so it would easier " , we all make mistakes , we are humans , and most regular individuals don't give importance to typing correctly on the internet , unless you are a super grammar nazi . +p8720 +aVi'm longing for a secular humanist president . +p8721 +aVrespectfully , i think you're wrong alain . it is genetic . if physiological traits are determined by race , then what is so far-fetched about that notion that psychological / intelligence traits ( iq , future-time orientation , delayed gratification ) are also genetically predetermined ? custom_break custom_break let's cut the horseshit . CUSTOM_NUMBER th century .. custom_break custom_break wasps = civilization , art , literature , science custom_break custom_break asians = civilization , art , literature , science custom_break custom_break negroids = primitive tribal culture , still living in mud huts , no written language +p8722 +aVobama doesn't care about latinos , just their votes . +p8723 +aVcan you upgrade the ram and change out the battery yourself ? +p8724 +aVthank you , aguycommenting , for your kind response . +p8725 +aVyou and your wife never cried when your first child arrived then ? +p8726 +aVdoug , your side lost that race to throw out a patriot i n order to placate hundreds of union thugs . get over it . +p8727 +aVself defense ? that little girl must pack a mean punch ! +p8728 +aVbecause they are more civilized than that .. mostly +p8729 +aVvery true , mel .. very true . loyal to the end .. lol +p8730 +aVyou truely are a dumb ** hilly i never said it was great i said #8 all time your just stupid aint you . +p8731 +aVschoolswot custom_break custom_break no its just smug idiot left wing hypocrites that i despise . it is just unfortunate that there are so many of you about . +p8732 +aVi do know , but you wouldn't listen any way ! you won't ever get a grasp on the things of god until you seek him out .. it's a waste of my time . god has hidden some things from the foll who says in their heart " there is no god " ! i won't argue with a fool ! +p8733 +aVwenger cos he only ever won a trophy with players he did not buy , when he had his own team ( just the players he brought in ) they have won an impressive zero trophies . proof is in the pudding as they say . custom_break custom_break as for henry , he was once a semi-decent player but now his arrogance is only surpassed by his ego ! he's a has been at best ! custom_break custom_break please mind the gap woolwich ! +p8734 +aVi'm probably being a cynical minny here but , doesn't the guitar start just a split second before she moves her fingers ? custom_break custom_break +p8735 +aVgood for you . i hope you realize that we here in bc do not miss you . you should consider making where ever you are your permament home . +p8736 +aVare you serious ? +p8737 +aVin thailand , the iranian blew his own legs off but didn't harm any israelis . is this an example of iran's military might ? in the end , the iranians will blow the legs out from under their own country . +p8738 +aVjacc : what branch were you in ? +p8739 +aVi know u can give the best to liverpool suarez . don't worry , all of liverpudlian always support you . you'll never walk alone . custom_break custom_break and i believe u will be rock in old trafford . god bless u . +p8740 +aVoh god !! grow up you sad little loser !! +p8741 +aVactually , you are going to need more than one . +p8742 +aVyou are lucky they did not take your child .. you would be still fighting the system to get him back ! it really is broken , it needs to be emptied out and revamped - the sooner the better +p8743 +aVholder is the lying sob you want , congress .. +p8744 +aVbanks are , in general , fucked . +p8745 +aVumm .. the heat run sets on offense , what are you talking about ? they suck donkey balls in the halfcourt when they don't . +p8746 +aVnice video , it looks like you've used animoto for that . +p8747 +aVso its sad you idiot . ray is one of the best pure shooters .. so dumb +p8748 +aVhe shouldn't have sign the contract requiring him ( like others ) to sing the national anthem in the first place . +p8749 +aVel mejor equipo perdio esta noche , hermano +p8750 +aVone of santorum's goals as president would be to annul all previous gay marriage and ban all insurance companies from covering contraception . are those the priorities of unemployed americans ? +p8751 +aVhere it is , again , for you to not answer : custom_break custom_break what makes you think our founding fathers wanted america to be a theocracy ? and if you don't think that they did , why do you want to go against their original design for america and make it one ? +p8752 +aVthat's always an excuse " maybe they are not wonderfuls or any other fandom " i mean why can't you accept that in every fandom there are these crazy ones , we have seen them here and f ( x ) earlier articles . and yes they were very rude . +p8753 +aVno , ike i said earlier , sir you are an a s s +p8754 +aVworkin on that . apparently we can't trust the jokers in power now , congress , courts , or chief +p8755 +aVmitt : i created CUSTOM_NUMBER , CUSTOM_NUMBER jobs . custom_break custom_break mitt : i created thousands of jobs . custom_break custom_break mitt : i created a net-plus in jobs . +p8756 +aVyou mean like your post . you read the column .. +p8757 +aVha ! i prefer something for him in the polar ice cap region . custom_break custom_break btw , welcome back . +p8758 +aVreally #1 ? you are the oldest and your sign is up side down ! +p8759 +aVdepends on what you mean by it , we can't make assumptions , you could have weird fetishes +p8760 +aVCUSTOM_AT CUSTOM_AT look , if you're so tired , take a nap . i really don't care how fagged you are . +p8761 +aVit's fucking fake drama queen ! +p8762 +aVwe have a problem using federal troops because of the posse comitatus act , united states federal law ( CUSTOM_NUMBER u.s.c. \u005c\u005c xa CUSTOM_NUMBER CUSTOM_NUMBER ) . a bigger problem is that the obama regime doesn't give a . rat's . ass about the border . +p8763 +aVwho da fuk are you calling adumbas pussy .. you'r probully a negro with big ass lips and a big ass nose . +p8764 +aVi am sorry mr ramsey , your race card has been declined - you are over your limit . +p8765 +aVspot on ! the whole thing hangs on perpetuating human fear of death . without that , there is no need for any of the superstitions , mumbojumbo , or christcult b / s . +p8766 +aVbut you are .. +p8767 +aVif it's not your thing , make her do it . +p8768 +aVstfu you ignorant communist puke .. +p8769 +aVCUSTOM_AT ass CUSTOM_AT \u005c\u005c custom_break \u005c\u005c custom_break aflack , or hijack , is that you ? +p8770 +aVhe ain't nothing but a hound dog +p8771 +aVnnamdi chuwkwu you are nothing but dick sucker i wish i'm boko .. i will bomb your generation .. . you need to relocate to zoo +p8772 +aVyes , but now you are just a moron ! +p8773 +aVme and my husband found it hard at first when we moved abroad - different language , different culture . it took about a year to start to make friends and after that we've never looked back . +p8774 +aVholy shit i didn't know you could freeze a . gif like that . and i am agreeing that the lack of animation is better . +p8775 +aVthat girl kinda look cock eye'd but its ok i'd fuck her till that shit turnt straight +p8776 +aVstick it up your ass-faggot . custom_break custom_break you get another flag !! +p8777 +aVCUSTOM_AT yeah , i've been following along . just wanted to make sure you knew . +p8778 +aVraw ?? wtf this dude is so pussy he puts tampons in his mouth once a month . pharell is not a real skater himself just a poser trying to get paid . nigel is pussy nyc knows it bmx knows it i put sean ricany over this lame nigga anyday . nigel is scared to move in nyc blackman got him shook fuck nigel +p8779 +aVCUSTOM_AT nope our players lost this game , durant needs to get a midpost game no excuses its way to hard to get him the ball . +p8780 +aVon a gray canvas , in white letters you could write : you are my sunshine ( yellow colored ) you make me happy ( yellow colored ) when skies are grey .. idk ? +p8781 +aVplease tell me these are all satire .. +p8782 +aVyay you got it in time :) +p8783 +aVCUSTOM_AT CUSTOM_AT totes . +p8784 +aVgood write up , but don't you custom_break think the north caused this on all of us . they are the ones who's quick custom_break to rally round their own despite their evil hearts and devices . on custom_break monday , two muslims were sentenced to death by hanging for murdering a fellow custom_break moslem , what all the almajiris could comment is that mustapha deserves custom_break not to die . meaning : the yoruba muslim is not relevant as long as he is custom_break not hausa-fulani ; those mustapha killed are not relevant since they are custom_break not hausa-fulani even if they are muslims . please remind me - how many custom_break northern leader or elite has raised a voice against the despicable , custom_break divisive , corrupt and horrible governments of ibb and abacha who broke custom_break nigeria's virginity and destroyed her innocence ? none , i suppose . as custom_break long as they are hausa-fulani , they can do no wrong ! however , that is custom_break not to say i don't get some of your points . when tambuwal and the custom_break easterners plotted against a yoruba speaker ship and trampled on any custom_break idea of change in the senate leadership since it's still north / easterner custom_break thing , gej never gave a hoot . CUSTOM_NUMBER geting so soon it was the yorubas custom_break ( bakare and co ) who protested and insisted that jonathan be made acting custom_break president . he also forgot the yoruba-man ( obasanjo ) who took all bullets custom_break into his vests in other for him to emerge president against the custom_break power-deprived northern gluttons who would easily have devoured him . custom_break it's so convenient to forget , but we are waiting . waiting .. and i know custom_break it won't take long before even the easterners begin the custom_break ' marginalisation ' song all over again . and then , we will re-tell the custom_break story . +p8785 +aVso we are saying the same thing ? i'm just saying the wealthy can pay custom_break taxes , and at a higher marginal rate , that's all . it is redistribution custom_break of wealth , just as it is redistribution of wealth when you and i pay custom_break federal taxes in nh and nh gets less back than its residents pay in custom_break taxes , whereas poor righwing redneck southerners get more back than they custom_break pay in because they are less productive than us and less healthy than custom_break us . " custom_break custom_break you want a fair tax system ? try my idea ; custom_break custom_break a flat CUSTOM_NUMBER % income tax on individuals and corporations . no deductions , loopholes , etc . custom_break individuals : custom_break get a generous $ CUSTOM_NUMBER k personal exemption per taxpayer , and $ CUSTOM_NUMBER k per dependent . thats it ! custom_break custom_break so fam . of CUSTOM_NUMBER , both parents work , $ CUSTOM_NUMBER k income , exempt $ CUSTOM_NUMBER k , pay CUSTOM_NUMBER % on remaining $ CUSTOM_NUMBER k , for a tax bill of $ CUSTOM_NUMBER , CUSTOM_NUMBER or an effective tax rate of CUSTOM_NUMBER . CUSTOM_NUMBER % custom_break custom_break so fam . of CUSTOM_NUMBER , both parents work , $ CUSTOM_NUMBER k income , exempt $ CUSTOM_NUMBER k , pay CUSTOM_NUMBER % on custom_break remaining $ CUSTOM_NUMBER k , for a tax bill of $ CUSTOM_NUMBER , CUSTOM_NUMBER or an effective tax rate of CUSTOM_NUMBER . CUSTOM_NUMBER % custom_break custom_break so fam . of CUSTOM_NUMBER , dad only works , $ CUSTOM_NUMBER m income , exempt $ CUSTOM_NUMBER k , pay CUSTOM_NUMBER % on custom_break remaining $ CUSTOM_NUMBER k , for a tax bill of $ CUSTOM_NUMBER , CUSTOM_NUMBER or an effective tax rate of CUSTOM_NUMBER . CUSTOM_NUMBER % custom_break custom_break corporations : custom_break pay CUSTOM_NUMBER % of net operating income . they get to exempt only the direct costs of production . custom_break custom_break the best part is this plan is revenue neutral including fica taxes ! +p8786 +aVyour teabilly slutchild is just as ignorant as her mother . custom_break you people are the trailer trash of america . +p8787 +aVyou guys have an awesome slate of games this year as far as the whole smack talk thing will go . aside from the divisional games , you get rematches against the giants , lions , and saints . plus the packer / niner game that never happened last year . +p8788 +aVand cover your wallet . +p8789 +aVwhile your syntax is fine , your spelling is drug-addled . +p8790 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT let them flood the airwaves with their lies . ask any californian about how frakking annoyed we were hearing meg whitman's lies CUSTOM_NUMBER / CUSTOM_NUMBER and i kid you not . you could not turn on the tv or radio without hearing her lies . jerry brown still smashed that corporate whore and sent her home crying . +p8791 +aVdamn vince you shit dont ever go right for you . +p8792 +aVthere is a very fine line between disliking someone and going out of your way to actively belittle and harass someone because you dislike them . you're allowed to dislike people , but if you dislike someone to the point of submitting disgusting confessions about them - i.e. , saying you don't doubt they'd snort someone's semen - that's pretty fucking heinous , and makes you no better than the person you dislike . custom_break custom_break in any event , op , you're not required to like everyone , and i don't think you should feel bad for disliking inravenclaw . you should feel bad if you submit the kinds of confessions people have been submitting . +p8793 +aVdick face u would do shit fake ass +p8794 +aVi love your new attitude and you're so right .. we need to put ourselves and our health first just like we do with our children . so proud of you !! +p8795 +aVthe battle cry of the believer is , " in god we trust " . custom_break god is not of two minds , his marching orders are set out in the bible . yes , people are more " liberal " today than they were CUSTOM_NUMBER years ago . my own personal odyssey from liberal to conservative goes against the tide and i believe things will get worse before they get better . i don \u005c\u005c ' t care what atheists think about me . custom_break like the secular humanist today , i was completely naive about islam until the islamic revolution in iran ( CUSTOM_NUMBER ) and reports began to filter down to the general public about the arrests , torture and execution of those on the left who supported the regime . custom_break there is only one spirit of truth . custom_break false prophets and religions deceive the people time-and - time again but i believe in the jesus christ of the bible not man . custom_break across america there are millions of people who believe in god and will not accept the foolish laws of man . custom_break homosexuality , abortion , pornography are crimes . custom_break and the biggest criminal of all is the so-called president of the usa , barack hussein obama . custom_break he is not a natural born citizen ( vattel \u005c\u005c ' s law of nations , CUSTOM_NUMBER ) because the supreme court has clearly defined a natural born citizen to be a citizen with two american parents . therefore he is not eligible to be president - and the entire political and judicial system can ignore the truth but it does not matter to me . custom_break god bless america - and pass the ammunition . custom_break as patrick henry said , " give me liberty or give me death ! " custom_break the liberal corporate elite that rules america is plain old fascism - the whore of satan - but the faithful church is the bride of christ . custom_break we shall never surrender ! +p8796 +aVyou and your sarcasm . +p8797 +aVzuckerberg is jewish you know .. +p8798 +aVoscar did the right thing so shut the fuck up that asshole dont have any right to hit him like that over a ball . i hope oscar went over there and put that ball right up joe jackson ass . +p8799 +aVhouse of bribe takers . so faruok with all your noise you are not better than hembe . house shame , house of rogues , house of robbers , obj called you people robbers one idiot called hon galambi was abused obj . these reps have no shame like a prostitute . we should discard this report and start the investigation all over by ngos . the only thing these reps do with the probes and oversight function is to further the nest of corruption . +p8800 +aVif britney spears were an unknown she'd be the first person booted off this show ( or any singing show ! ) her voice could kill small animals . +p8801 +aVexpect the two technicals those are all legit foul calls . you guys are just being bias +p8802 +aVhaha fuck you bitch your a fukn cripled cunt fuck you motherfucker stay off this page unless you want to die bitch !! +p8803 +aVdouble retard for you . +p8804 +aVhow do you make a plumber cry ? custom_break custom_break you kill his family . +p8805 +aVapple products = computer stuff for people too stoopid to use pc and android +p8806 +aVthe fa need to look closely at the vt its a CUSTOM_NUMBER game ban balotellis nothing but trouble ! +p8807 +aVhow could someone named emmit smith be racist ?? +p8808 +aVyes , flag yourself for being offensive . +p8809 +aVif they don't see your ugly face they're lucky . turd sucker . +p8810 +aVtrue intellect aren't you !! tebow isn't unemployed , you really are a pathetic idiot +p8811 +aVwhat the shill +p8812 +aVno stop dont get to happy or thq will find some way to fuck it up !! +p8813 +aVagreed . i want joffrey dead . pete really humiliated and gone . +p8814 +aVno matter how hard you try , your_nasty existance is still not normal . +p8815 +aVyou sound like rain man . +p8816 +aVyou are finally starting to talk like a real guru . +p8817 +aVthank you for your comment ! :) sorry to hear about the banking soda .. let me know how everything is going ! keep in mind you can post a picture in your comment on here as well if you would like to do that ! +p8818 +aVso we should have let him go ? i say nail him to a two by four and let him rot . +p8819 +aVfuck toi ouai arr \u005c xeat de rager +p8820 +aVwhaa whaa , when you lose intellectually you freaks either blame bush or name call . newt went in debt a few mill . but the god-damned comunity organizer sunk us down CUSTOM_NUMBER trillion . you dicks are pitiful . +p8821 +aVjust fucking with you , i'm a patriots fan . +p8822 +aVif it proves anything , it proves that you are not an idiot . +p8823 +aVoccupy rapists ? where did you read they were rapists ? +p8824 +aVgiven the propaganda that could choke a seal these days , i wonder why this wasn \u005c\u005c ' t spun with the " toxic sugar " story that is sliming its way through the social psyche .. instead of ropes , we should gives these convicted killers unrestricted free access to the white stuff , that is , sugar . given the propaganda , these lost souls will die protracted and painful , entirely avoidable deaths .. seems like good enough punishment , if you \u005c\u005c ' re a propaganda cow , chewing on your propaganda cud . custom_break custom_break what is actually happening is a series of unannounced and clandestine public polls most of which are probably commissioned in boiler rooms by our leaders-that - ought-to - actually-be . custom_break custom_break i \u005c\u005c ' m sorry for your loss boisvenu , truly sad .. however , when a professional such as him can \u005c\u005c ' t separate emotion from logic and work from home , i question his fitness to do his job , irregardless of apologies or cognizance of his mistake . he is emotionally compromised and lacks the integrity ( no fault of his own ) to carry out the requirements of his position and he should be relieved of his duty and replaced by someone with integrity intact . custom_break custom_break to harper and our other leaders-asleep - on-the - pot , do your jobs as professionals , not scoundrels . if you want to know how canadians feel ask us , don \u005c\u005c ' t manipulate us and marginalize us . a time is fast approaching where canadians will unite and tell their \u005c\u005c ' leaders \u005c\u005c ' the quality of life and ethical standards in this country will not fall any lower , will not sink to new depths . we will collectively draw a line in the sand , and we will expect our leadership to listen .. or .. we will rewrite their laws to incarcerate them . custom_break custom_break listen to the people ; don \u005c\u005c ' t manipulate and hurt , or your actions will come home to roost . +p8825 +aVyou can't recover from being crap . +p8826 +aVCUSTOM_AT - custom_break obama - " what , me worry ?? +p8827 +aVfootlongs next favorite holiday is christmas .. he dresses up as santa and gets children to sit in his lap all day long +p8828 +aVbecause crackers get soggy when wet . +p8829 +aVtook a moment but thanks for your nice welcome message . pay backs are always put in motion .. custom_break CUSTOM_URL +p8830 +aVdo the research , i'll bet you don't know jacksquat about obies past . +p8831 +aVthat's good to know because we will never touch a pig like you . where do you get off thinking you people are superior and the most beautiful people in the world ? ( bytchplease ) unlike you people , we don't go around disrespecting the deceased . your ( littledyck ) can't even touch the surface . only a phatpig like u would spend so much time on an all black website posting racist comments because you are unhappy with self . at least we have confidence . go get some self-esteem and a ( dyckimplant ) . +p8832 +aVbecause the u.s. can -- that's why +p8833 +aVdid liberals attempt to ask boys and men what might be wrong that is causing this behavior ? custom_break custom_break no , of course not , liberals look down upon males , considering our opinion not worth anything . +p8834 +aVlick it clean , turd-breath . +p8835 +aVwhat a smug basket you are . +p8836 +aVi think this title better fits this article < b > donald trump doubles down on birther nonsense gets flogged by wolf blitzer < / b > custom_break custom_break ww.mediaite. com / tv / donald-trump - doubles-down - on-birther - nonsense-gets - flogged-by - wolf-blitzer / +p8837 +aVCUSTOM_AT subban . +p8838 +aVpeter , custom_break you are quite the idiot . are you really this clueless or are you foolishly letting your liberal bias dictate your writings ? +p8839 +aVare you aleging conspiracy against the redsox ? +p8840 +aVi like her . \u005c ufeff if you get into her court and be polite and act like you got some common sense , then she's okay . but if you go into her courtroom acting like a jackass , god help you . damn CUSTOM_NUMBER with CUSTOM_NUMBER kids . +p8841 +aVdo you know any kindergarten or elementary school teachers ? custom_break they'll tell you people are born gay . i can't believe i'm even engaging in this argument +p8842 +aVCUSTOM_AT CUSTOM_AT yeah . definitely not a fan of last year , when we had like CUSTOM_NUMBER separate snowstorms with CUSTOM_NUMBER + ft of snow . custom_break custom_break plus like the CUSTOM_NUMBER other snowstorms we had . custom_break custom_break i love snow , except when i have to shovel it and drive in it +p8843 +aVwho cares , the bush terror completely failed where obama succeeded . +p8844 +aVhow ironic that the fantasy of liberalism would collapse under the watch of your hand-picked messiah .. obama wasn't your savior after all .. he was trigger man for the end of progressive lunacy forever custom_break custom_break carter damaged liberalism for decades , bobo may have given it it's final blow .. one thing for sure , we won't ever vote for a left-wing liar with a muzzlim name again .. ever ! +p8845 +aVarmando pitches a CUSTOM_NUMBER - CUSTOM_NUMBER - CUSTOM_NUMBER - inning . +p8846 +aVi would expect nothing less of pop-stars who suddenly feel the need to perform their satanic rituals on stage . really nice one by the babylon whore madonna at the super bowl as well , complete with eye of horus and baphomet poses . or lady gaga doing a blood ritual at the mtv awards , that was a classic . custom_break strange times we live in . +p8847 +aVhi kathy . well at least you'd have something to show for your money . lol +p8848 +aVwow sound like you are going to cry in your tissues . i just got sick reading your post . are you being paid by npr to post ? +p8849 +aVyou should see it come off automatically in your cart , once you go to check out . +p8850 +aVall i see in these comments is niggas bitching more then biggest bitches i know .. +p8851 +aVwere you born stupid or did you have to work at it ?? +p8852 +aVto add this silly insult to injury and mask over it by calling for a debate on ' dignity at work in parliament ' with the undignified reputation these mps have earned theirselves in recent past is hardly very fitting . custom_break custom_break no wonder the country is the way it is with this sexless old bat calling the tune on such trivial matters at times when more pressing issues need addressing . +p8853 +aVCUSTOM_AT yea its over im trying to be faithful though +p8854 +aVsorry bm but as long as rogers owns the jays they're going to run this club on the cheap . custom_break that means nothing but bottom feeder payrolls in the $ CUSTOM_NUMBER million range . custom_break custom_break rogers makes billions but they won't put the money into this team to make it competative . custom_break custom_break that's just the way rogers operates . +p8855 +aVyou are correct , one must purchase the mlb custom_break package , bummer . +p8856 +aVif we glorified rapists and made them sound all heroic would it become a right to be who they are ? that's how they were born . they didn't choose to be that way they just are so they should have the right to rape any man woman child or animal . +p8857 +aVkeep telling yourself that , you dumb tea maggot . the only true racists left are turds like you and your worthless tea maggot friends . +p8858 +aVaucausin , you are very pathetic hiding behind some touchy feely law that wasn't even a law a few years ago . cowboy or cowgirl up , discipline is not supposed to be fun or comfortable , it's meant to change a behavior , an incorrect behavior . i was spanked , my sister was spanked , my friends were spanked . guess what .. we learned from it and knew right from wrong . custom_break custom_break we also learned that there are serious consequences for wrong doing . so , show me where there is an attitude of people today that act as if they understand there are consequences for wrong doing . you can't , everyone nowadays feel as if it's someone elses fault , or that they are entitled to do what they want . custom_break custom_break you sound like you are part of the problem and not part of the solution . +p8859 +aVim the homo but you made a comment about liking a guy pic with his shirt off like you wanted to fuck him but im the homo right i'll let the truth speak for itself queer ass fuck boy +p8860 +aVmay you and your children get the same " deserved " treatment and end up rotting in the ground . +p8861 +aVthere you go again telling lies you are a laffs fan idiot and fooling yourself only bird brain +p8862 +aVas bad as he may be , he is still less dangerous than the crooks in office that have been dismantling our national defense . +p8863 +aVi believe that applies to your ideas ronald . +p8864 +aVyou mean like stealing identity such as you are now ? not hardly troll ! flagged for fake shitt ! +p8865 +aVhe has already done this over CUSTOM_NUMBER , CUSTOM_NUMBER times , to over CUSTOM_NUMBER people , " wheelman " . each and every time , it is both illegal and against the site's terms and conditions . custom_break custom_break this site does not exist as his toilet bowl . +p8866 +aVfirst of all the hero engine is still an x CUSTOM_NUMBER engine with huge graphical issues . custom_break custom_break second , mmo \u005c\u005c ' s should not have so many large bugs , it was ok CUSTOM_NUMBER years ago , but in modern games large bugs will kill it fast if a company expects people to continue paying a monthly fee for it . custom_break custom_break third , the disclosure laws do not state where you must disclose that information , you will never see it in the actual article , only in places such as the stock holders information , typically released months after the article was published and rarely easily found by the general public . custom_break custom_break d , the game is incredibly linear and uses the same mechanics as any other mmo out there but with less graphics , less explorability and less fun , it is what one would expect from perhaps a single player kotor CUSTOM_NUMBER with multiplayer options , not an " innovative " mmo , the same ol \u005c\u005c ' same ol \u005c\u005c ' is getting old and stale . custom_break custom_break lastly , i am tired of people comparing this game to wow vanilla launch , that was CUSTOM_NUMBER years ago , you are supposed to learn from past mistakes not repeat them . any " but when wow was released " arguments are simply asinine points . custom_break custom_break all in all , the game is what one would of expected years ago , but not today . custom_break custom_break on a side note of how poorly they coded this game , it runs CUSTOM_NUMBER . exe \u005c\u005c ' s for the same application , a huge no , no for video games because of the horrendous issues it causes , it simply looks like they cut corners and it is biting them on the butt now . +p8867 +aVthis will hurt the rs more than help . to be sure . +p8868 +aVyou're a retard . you republicans yell about big government but at the same time want to ban gay marriage that doesn't effect you at all . republicans are as big government as it gets . custom_break custom_break by the way , no one is saying you can marry kids , but , two consenting adults can . +p8869 +aVyou are under illusions - dream on . +p8870 +aVhey , i have never in my life ever ,, hit a woman . but i can tell you right now , my - ex wife - can not say the same for men lol . talk about a nasty mean a s s e d temper lol . but she looks so sweet no one would ever ,, suspect it of her . so blow it out your po op sh oo t - truemorth - lol custom_break +p8871 +aVit means you are stupider than average , unable to punch your way out of a wet paper bag . but at least you have bragging rights to bully others around with your insane liberal concepts . +p8872 +aVi am so so so pumped for you ! really pumped . look at all the excitement in your life .. well aside from the stupid job hunt . i've never heard of the corral interview . wtf ? how awkward is that ? +p8873 +aVhe couldnt see that his shoes were tied because his eyes were tearing . +p8874 +aVand you are a idiot .. i hope and pray you never responsible to protect any child especially a four year old .. in this event where one decides to hurt or possibly kill a child he has already signed his own death warrant .. +p8875 +aVi'm going to break my own policy of not replying to idiots just this once to tell you what a minimum of reading comprehension should have already told you : the multiple user names reference was to ltdgovt who starting creating a bunch of new ones after claiming to have been banned which never happened as far as i can tell . if it had , creating new user names wouldn't help . as far as whatever your deal is , i don't really give a shit , you whiny little bitch . +p8876 +aVi can ` t figure out what makes me want to puke more . its either obozo when he gives his same old rerun lying speeches , or its all the brainwashed i diots smiling an clapping behind him . ph ugk it , it ` s both of them . +p8877 +aVyou are talking apples and oranges . +p8878 +aVreally that's all you have ?? fail troll is fail lol come back when have something better +p8879 +aVwe d CUSTOM_AT CUSTOM_AT CUSTOM_AT custom_break custom_break we don't need no fucking basketball !! +p8880 +aVyou are awsome cena . +p8881 +aVthought there was another race for a minute there . +p8882 +aVman er vist en " pc elitist " for \u005c xe CUSTOM_NUMBER peke ut dette , dog det er bare rene fakta . +p8883 +aVpirate CUSTOM_NUMBER liked your comment +p8884 +aVif you have an adopted mother must you also have an adopted daddy . maybe you just pick the most prestigeous step mom your dad collects custom_break who says the rich are different ? +p8885 +aV< strong > assuming something only makes an ass out of u & me : ( watch complete video :) custom_break custom_break people who annoy you : custom_break custom_break CUSTOM_URL +p8886 +aVhatethehype you are an idiot . neil was joking . +p8887 +aVCUSTOM_AT \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break " imprisoning black men disproportionately . obama does it " \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break are you seriuos ? \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break that \u005c\u005c ' s a terribly ignorant statement . +p8888 +aVthis munro fellow seems to be an amateur working for an amateur website founded by that privileged and pampered amateur fucker carlson . +p8889 +aVup to a jury , dont you think ? custom_break custom_break would have been nice to see the horse groomer have the same privilege of a court system . +p8890 +aVCUSTOM_AT and that's the truth ! :) +p8891 +aVdon't worry bitch . i no more read this shit . now just shut the fu . ck up +p8892 +aV* see reply to above derp and substitute your derpy reply * +p8893 +aVyou don't seem to get what i am trying to say , so good day . i'm sick of you arguing with anything that you disagree with . i'm not going to be pulled into your stupid arguments . +p8894 +aVdont worry how i sound u bitch made faggot ass nigga +p8895 +aVi don't know how to break this to you , but you are in for a period of disappointment . +p8896 +aVwhen you get a officer needs help call , you put your donuts down and you help ; you don't wait to finish like a normal CUSTOM_NUMBER - CUSTOM_NUMBER call .. +p8897 +aVthey do that . even on channels with old tv shows . s CUSTOM_NUMBER / ep CUSTOM_NUMBER . ( CUSTOM_NUMBER ) for example . +p8898 +aVlos angeles kings CUSTOM_NUMBER custom_break new jersey devils CUSTOM_NUMBER custom_break custom_break CUSTOM_NUMBER goals on the CUSTOM_NUMBER minute powerplay . the dumb shit that took the charge may have just caused the devils the cup . +p8899 +aVone of my big ?? is who does berry think he is to sign a bill like ndaa that says he can pick me up anytime if i have done anything or not and detain me forever +p8900 +aVbet tim cook just shit his pants . +p8901 +aVholder would be lynched if he tried such a stunt . why don't you see if you can get back to CUSTOM_NUMBER . that was when president bush left office . we now have the losers holder and obama who are clueless . +p8902 +aVi bet it took awhile for this guy to extract his foot from his mouth . +p8903 +aVi don't want to lease hamels for one season . & nbsp ; no way angelos pays for him next year . & nbsp ; and we will already have CUSTOM_NUMBER lefties in the rotation come mid-june . custom_break +p8904 +aVwell then stop having a go at me , one of the few people here defending nhs doctors / dentists . +p8905 +aVwhat a dumbgeister it is f for failure all your distorted life if lies +p8906 +aVfreedom ain \u005c\u005c ' t free .. suck it up , quit whining , and make the effort to get the free id .. custom_break custom_break if " people will just not go through it " , then they don \u005c\u005c ' t want to vote badly enough .. we \u005c\u005c ' re talking minimal standards here -- kinda borderline pathetic ! +p8907 +aVwow my second bias dancing a cover to my ultimate bias song ! iu ur too amazing . and haters it's nothing serious she was just having fun . +p8908 +aVyes or no ? the age old question . +p8909 +aVone need look no further than durden's profile .. +p8910 +aVif you had the choice to custom_break custom_break a ) shoot fireworks with mario balotelli and his brother enoch inside his flat or ; custom_break b ) get a tug from chelsea physio custom_break custom_break what would it be and why ? +p8911 +aVwhite men like to rape little boys +p8912 +aVsvs needs to learn about contact , alb calling . custom_break sands not ready for prime time , package bait this summer . custom_break dejesus , also not ready for prime time , but will be ( a keeper ) custom_break eh looks like a seasoned vet already . custom_break kennedy cannot buy the next ticket out of lax fast enough . custom_break loney notorious september burner , has carry ability . a keeper . custom_break dee , legit !! just need to invest the time . custom_break gwynn .. no fear , gotta find a way to keep him in when kemp comes back . +p8913 +aVlol , looks like he got up in the night and tried to give the ironing board one and it hit him striaght in the mouth judging by those gnashers !! +p8914 +aVhahah it says donate over CUSTOM_NUMBER times +p8915 +aVand , as usual , you're blaming the wrong person . i'm just a voter and have nothing with the decisions that any politician makes regardless of party affiliation . +p8916 +aVsay it isn't so , nbc caught editing tapes again , they has been editing stories for years to fit their fleabagger viewpoint for years now , it is just that no one ever called them on it !! you all have to remember that msnbc & nbc & all the rest of the fleabagger libtard networks are nothing but a bunch of focking hacks !! i just can't wait until these fleabaggers are off the air permanently , there are CUSTOM_NUMBER fleabagger networks compared to the one conservative network , which is fox !! fox network has been beating all the fleabagger networks in the nielsen ratings for the last CUSTOM_NUMBER years , ha ! ha ! ha ! you stupid fleabagger libtards will never learn will you !! you fleabagger networks are losing viewership because of your made up news & even other fleabaggers know the bullshlt you are up to & they don't appreciate it !! +p8917 +aVfake pic u hoe ass nigga ! +p8918 +aVwife you are a vile racist bigot !! +p8919 +aVreally ? police wouldn't use tear gas on a white man wanted for CUSTOM_NUMBER counts of capital murder ? you are such a fool . +p8920 +aVyaelah cow jaman skrng pamer kekayaan .. itu jg pnya ortu lo x .. blagu , sombong .. ga level . meningan orng biasa ja tp pnya hasil krja sndiri : * +p8921 +aVi think the sausage might make all the difference . the white peppered gravy sounds fine , it's just the idea of pouring it on what appears to be an unsweetened scone and calling it a meal seems strange . custom_break custom_break so you don't have kippers ? that seems strange . i thought that every homestead had a smokehouse and there are herring in the seas . custom_break custom_break anyway , i like your scots irish theme . there might even be an ulster scot right here on my-t . +p8922 +aVhe shaves his legs in front of his daughters ? +p8923 +aVlol god damn you yes +p8924 +aVhaters are just fans in denial .. +p8925 +aVi like the way the government poured pig fat on the injured iranian that didnt quite blow himself to he ll ! +p8926 +aVyou don't know much about the CUSTOM_NUMBER s housing policy , do you ? +p8927 +aVtoo funny seeing the cop run up all tough .. then jump back like " wtf !! ? +p8928 +aVdick cheney lied about atta ! now this is news ! actually most of this was confirmed a long time ago , and nearly everyone who read any of the books on cheney knew . the only thing that is confirmed is that he intentionally lied and there is a paper trail that shows he intentionally lied . and this is why he should have been put under oath when they did the CUSTOM_NUMBER - CUSTOM_NUMBER investigation . then we could get this bastard for perjury . maybe this will keep him and his ignorant daughter off the television machine for a while but i seriously doubt it . these people have no fucking pride whatsoever ! he'll probably be campaigning with romney next week somewhere ! +p8929 +aVactually , clearly not maized because you can't impersonate points . custom_break custom_break scooped custom_break custom_break yes i did , jwoude . that is the prick behind this . he had better come up with a better name for me than " some fucktard , dds " . that is pussy , and not at all on the level of ass-fuckery i expect to come out of our bet . +p8930 +aVyou r getting too old , before you hit the post botton , see how many posts there already , open them up , then post yours . +p8931 +aVburr-headed , purple lipped kenyan ?? are you a human or a right wing asshole . go back under your bridge . +p8932 +aVguess what ? no one gives a fuck about you . get off snsd articles . +p8933 +aVgreat post dan , what an amazing story . you did the right thing . i know i have an experience just can't think off the top of my head . i think what you did was pure kindness . some people may not have stopped and even talked to her . im sure where ever she is i know she is telling the same story about how an amazing guy called and helped her . she may be wondering how you are . i guess the best part of life is not getting credit but just doing good deeds and just moving on . very awesome dan . +p8934 +aVi know more intelligent fans of the timberwolves than intelligent fans of the heat . those people are clueless for the most part . +p8935 +aVlizzaronna custom_break not only does your ignorance shine through per your ignorant comments , but you can't spell or form a sentence , pathetic loser ! +p8936 +aVyou are a lying son of a bitch . let's see you post some facts supporting your assertion . +p8937 +aVdude dont wanna hear your pillow talk about double pent . +p8938 +aVthat's why the more non-whites we let in our country , the more voting / politics / best interests of our country get biased / put aside . no matter what , non-whites ( and whites like us ) will always utilize group think . us vs . them / us . or . them . no matter what ! we are screwed . people don't think about these problems when discussing demographic change . it's not black and white ( no pun intended ) like most people perceive it to be . most people think it will go one of two ways , good , or very bad . there is vast amounts of grey area . very complex cause and effect deals . +p8939 +aVif this is true , it \u005c u CUSTOM_NUMBER s hard to imagine that such a cavalier attitude towards a question like this one wouldn \u005c u CUSTOM_NUMBER t have infuriated liberals and democrats if it had been exhibited by george w . bush . " custom_break custom_break i don't know . this liberal would have been thrilled if bush had followed through on his " dead or alive " promise regarding bin laden . +p8940 +aVoff of baseball for the moment , you guys should sit back and watch " the hanoi hilton " today . no movie capture the perseverance and dedication of men who have served this country . +p8941 +aVholy shit those are creepy +p8942 +aVscrew you . not all inspirits are like that . & destroy us ? please you wish ! inspirits are powerful .. stop underestimating infinite's popularity . +p8943 +aVinterleague play is retarded . +p8944 +aVthey have a right to be gay since they choose to be , they dont have a right to trample our countries heritage to match they perver ted lifestyle custom_break +p8945 +aVyou shut your whore mouth ! you shut it right now ! you're giving him ideas , goddammit ! +p8946 +aVback off hater'z ! custom_break just leave them alone cuz its none of your bussiness bitches :) custom_break custom_break just ignore them olsen :) :) :) ; CUSTOM_NUMBER :) +p8947 +aVi wish you could smell it just by clicking on it . ;) +p8948 +aVfuck this .. something will be on youtube later and photos will be on gillian anderson's website i'm sure . +p8949 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT catholic priests will minister to soldiers who are killing people on the battlefield ; that's not implicating itself in a practice that is morally anathema to it ? i really don't understand the church's delicacy of conscience when it comes to human reproduction , and it's ability to suck it up and accept reality when it comes to things like war and capital punishment . +p8950 +aVjoseywhales , thank you kindly for proving my point . you have no actual information to present just insults . thanks for the entertainment . +p8951 +aVwell , as long as they don't bring back long dead fri .. oh , shit .. hang on . +p8952 +aVyup gang of little nigglet thugs +p8953 +aVgo drop dead you fcuking loser . ram a boom-stick up your hairy ass you sex starved unbalanced freak fcuk . +p8954 +aVlet me help you get your anger out +p8955 +aVleave it to a moron to dump smoldering embers into a trash bin next to a house +p8956 +aVfor all the people saying " well , thousands of people die everyday ; suck it up , brat " : yes , thousands of people die every day , but your mother passing only happens once in your lifetime . yes , her family has money ( i assume , but who really knows ? ) , but having money doesn \u005c\u005c ' t mean you \u005c\u005c ' re equipped to deal with the sudden loss of a parent , especially when that loss leads the national news cycle for almost a week , and people are publicly airing your mother \u005c\u005c ' s and your family \u005c\u005c ' s dirty laundry . we don \u005c\u005c ' t know the life this young woman has had for the last CUSTOM_NUMBER years , but it \u005c\u005c ' s safe to assume there were some rough patches ; let \u005c\u005c ' s give her and her family some privacy in their time of mourning ( i \u005c\u005c ' m talking to you , media ) and cut this kid some slack for not handling it well as we think we might . +p8957 +aVwhere , exactly ? you are questioning logic without an argument . +p8958 +aVit is obvious that \u005c u CUSTOM_NUMBER camerican idol \u005c u CUSTOM_NUMBER d has turned into a popularity contest with a huge female viewer base . as proof : for the past three seasons , the \u005c u CUSTOM_NUMBER ccute guy \u005c u CUSTOM_NUMBER d has won over the much more talented female runner-up . custom_break custom_break who cares ? custom_break read more here : CUSTOM_URL #storylink = cpy +p8959 +aVhow the fuck did you come to the conclusion that she initiated anything ? you sound like one of those punk niggas who would find any excuse to hit a girl . go sit doen in timeout +p8960 +aVall we want to do is adopt a highway , " said april chambers , the chapter's secretary . " we're not doing it for publicity . we're doing it to keep the mountains beautiful . people throwing trash out on the side of the road .. that ain't right . " custom_break custom_break tell your family to stop throwing themselves on the side of the road and to lay in the middle of the road . +p8961 +aVit's built like a brick shithouse ! +p8962 +aVwho are you a fan of ? . what's your team ? . +p8963 +aVsee waht you knowit not all there . +p8964 +aVnorway is a proud nation , what war crimes did they commit ? +p8965 +aVwhite people invented taco bell you ignorant fuck , you dumb as this nigger in the video . and i aint no fucking wetback , wetbacks are mexicans who swam across the border i was born and raised in san jose california so fuck you and by the way i like peanut butter and cell phones so stick a burrito up your ass im sure thats the only way you can enjoy it +p8966 +aVyou either know that is a lie or you have not checked . +p8967 +aVgo and tell him to fuck himself , the twat +p8968 +aVscusa non ho capito , che festa ? +p8969 +aVhoney , get some brains because quite obviously you didn't read everything i said . reread it , and if you still have the same crap to say , then and by the way , i am a grown woman . not a little boy , you racist , stereotypical , bored-ass , son of a bitch , who has a lower iq than my dumb ass dog . you haven't had to live the life of a minority so pull your head out of your ass , get some real research-like maybe live like us minorities have to-and then go realize how good you have it , you white-ass rich kid bastard . and good job by the way , you threw some big words in there to make you sound intelligent , too bad your argument still sucks . +p8970 +aVso you think cigar willie clinton will help obongo win ? balack obongo custom_break has learned his lesson too late . you cant trust a fuckingliberal . just custom_break like you cant trust a liberal troll commenter . +p8971 +aVattention all white people : do not be comfortable saying nigga . i personally will slap the shit out of you . so will some of my friends . it as not acceptable no matter what you what to think . just whisper it under your breath like you been doing !! +p8972 +aVight kool .. dont u know d shit u be saying would fuck u up some day ,, watch and see my nigga .. enough said +p8973 +aVi just checked and there are many races mixed in spain . if she called herself hispanic , then she has that in her blood . you are so arrogant of an online troll that you think you know about people you can't possibly know about . it's sickening . +p8974 +aVthat was the fuck of that lil cunts life .. good job ! ! +p8975 +aVbecause the person is full of shit and has no one to talk to . trying to stir shit . no one gives a shit about perry anymore . he's in jail and on his way to prison where he will be squealing like a pig when bubba gets a hold of him . +p8976 +aVno they aren't . only you and your CUSTOM_NUMBER names +p8977 +aVCUSTOM_AT :d isqus -- i used the cars from my train set as pretend rollerskates all the time . the worst accident though was when i tried to use them to go down the stairs in our apartment complex , not ride down a hill . i think that was an even worse idea than yours . +p8978 +aVthat second picture of him is not that appealing , but it cancels out with that first picture . i still want you in my bed kibum +p8979 +aVif i didn't know better , i'd have thought you were the one who wrote this piece of tripe , in a sacramento publication no less . as for the career-long cheap-shot elbow-throwing adulterer , and accused rapist saint kobe boy , karma is a biatch , isn't it ? it doesn't matter . kobe-dolt shouldn't even be mentioned in the same breath as lebron . the man-child couldn't carry his sack . it's just something you , and other faker fans can fantasize about . as for you , my tiny little faker worm .. it's time to crawl back down into your little hole . your old girls are going down soon . you can bet on it . i am . life is good . +p8980 +aVare you proud of your trolls ? +p8981 +aVit was an out , doesn't matter how sloppy +p8982 +aVyes . and how dare you call me " fool " . +p8983 +aVlmao . do people who hate gays and lesbians really think protesting will get us to stop having kids and being a family ?? you serious ?? its funny how everyone quotes the bible but it also says divorce is a sin , being a drunkard is a sin , being a bastard is a sin , cheating is a sin . have you idiots not read the CUSTOM_NUMBER commandments ?? those are all abominations ! you anti-gay homophobes are so ignorant . karma is a bitch . you just wait and see , haters . +p8984 +aVone season wonders - its game over begging in the making +p8985 +aVexcellent comments , my thoughts entirely . +p8986 +aVgreat review . thanks for the chance to win some of these . +p8987 +aVthey make up for CUSTOM_NUMBER % of the scoring +p8988 +aVyou are the disgusting one . +p8989 +aVi'm with missa - i think i would also prefer not strapless if possible . +p8990 +aVgd !! .. your stare !! i'm completely melt in your stare !! omg !! you're fucking handsome !! ,, > . < custom_break do your have CUSTOM_NUMBER diferrent hair colour this time ? black , red and blue , nice combination . ^ __ ^ +p8991 +aVwe need to tax the CUSTOM_NUMBER % of americans that don't pay any federal income tax , they suck on the teat of the real tax payers , but don't contribute anything . ows , commies . +p8992 +aVheard there was some good high-level baseball talk over here . but after CUSTOM_NUMBER + comments that read like bitter , bickering ex's , apparently not so much .. custom_break custom_break maybe another time . +p8993 +aVfucking hot man . jeez , we look alike . love the fur . just wish you would share a pic of your dick . +p8994 +aVwhat they would've edited it to say ? custom_break custom_break you really love showing how ignorant and blatantly brainwashed you are don't you ? covgrats , now we all know how much of a loser you are , fstaff . +p8995 +aVyou're a fu cking idiot . you don't even know what the word ' smart ' means . +p8996 +aVwhy did they interview you ? custom_break custom_break custom_break custom_break did you commit suicide ? +p8997 +aVso unfair again a young mother . i have doubts to me is suspicious as missed a party makes me wonder why ? +p8998 +aVwhen you < i > saw < / i > him ? unless you saw him doing something gay ( ie sex with another man , which would not only be very weird , i think it would clear up any confusion ) , i think that's kind of an assumption . custom_break custom_break besides , why does his sexuality matter ? it's not like it's going to affect you . +p8999 +aVif it " had no nexus to his elected sheriff position " , then why are they subjecting him to this witch hunt paid by the tax payers ? +p9000 +aVchucklefuckers next door to fuddruckers for a bite before the show . +p9001 +aVsorry , but did anyone else laugh at the CUSTOM_NUMBER st guy's pics . custom_break custom_break oh my life , chavman . +p9002 +aVyou talked to grade school kids with strong opinions on bill maher today ? custom_break custom_break you're a f ucking liar . +p9003 +aS'CUSTOM_AT CUSTOM_URL' +p9004 +aVand my dad can beat up your dad +p9005 +aVi don't understand your comment . i don't know who barack hussein kardashian is . us congress and president are the feds that i was referring to , so no , i didn't forget them . if you are implying that obama is owned by corporate lobbyists .. duh . +p9006 +aVwhat an incredible accidental tragedy . condolences , of course , and prayers for all . +p9007 +aVdonnie should have taken him out sooner .. true .. oh so true .. +p9008 +aVyou're not stupid , just dumb +p9009 +aVyou're too easy +p9010 +aVnigga old , his memory aint like it used to be . +p9011 +aVthe only sad part of the story was that he didn't crash . oh well . custom_break custom_break :( +p9012 +aVthe child molester calling someone a racist , too funny ! and then you make a gay slur , hilarious ! +p9013 +aVyou are a traitor . +p9014 +aVyes they do . our time is approaching . +p9015 +aVexactly why is she a celeb +p9016 +aVand what happens when a bunch of religious fanatics defend a pedophile ? gee , sounds like the catholic church ! you are a disgusting piece of work . +p9017 +aVif you think it's is so insignificant , why are you spending time commenting , unless you are a troll and can't help yourself . get a life . +p9018 +aVyou are underestimating the east where actual defense resides . the spurs are awesome , i would give them a shot , but if okc won somehow the heat would beat them . +p9019 +aVjust those three .. the others who beat up rodney in california aren't any better . +p9020 +aVten reasons why gay marriage is wrong custom_break custom_break CUSTOM_NUMBER ) being gay is not natural . real americans always reject unnatural things like eyeglasses , polyester , and air conditioning . custom_break CUSTOM_NUMBER ) gay marriage will encourage people to be gay , in the same way that hanging around tall people will make you tall . custom_break CUSTOM_NUMBER ) legalizing gay marriage will open the door to all kinds of crazy behavior . people may even wish to marry their pets because a dog has legal standing and can sign a marriage contract . custom_break CUSTOM_NUMBER ) straight marriage has been around a long time and hasn't changed at all ; women are still property , blacks still can't marry whites , and divorce is still illegal . custom_break CUSTOM_NUMBER ) straight marriage will be less meaningful if gay marriage were allowed ; the sanctity of britany spears ' CUSTOM_NUMBER - hour just-for - fun marriage would be destroyed . custom_break CUSTOM_NUMBER ) straight marriages are valid because they produce children . gay couples , infertile couples , and old people shouldn't be allowed to marry because our orphanages aren't full yet , and the world needs morechildren . custom_break CUSTOM_NUMBER ) obviously gay parents will raise gay children , since straight parents only raise straight children . custom_break CUSTOM_NUMBER ) gay marriage is not supported by religion . in a theocracy like ours , the values of one religion are imposed on the entire country . that's why we have only one religion in america . custom_break CUSTOM_NUMBER ) children can never succeed without a male and a female role model at home . that's why we as a society expressly forbid single parents to raise children . custom_break CUSTOM_NUMBER ) gay marriage will change the foundation of society ; we could never adapt to new social norms . just like we haven't adapted to cars , the service-sector economy , or longer life spans . +p9021 +aVhey , boehner , gimme that dress - i need more motivation . snniiff . custom_break custom_break yeh , i'm ready . let's go make a spectacle of ourselves again . custom_break custom_break and again . custom_break custom_break and again . +p9022 +aVwell , i guess .. they were his personal words tho . do whatcha want ! +p9023 +aVif anyone wants to know i think a couple dozen comparable rule lists from others religions should be placed along side this one + a list from a respectable humanist organizaiton . +p9024 +aVgo fuck yourself . +p9025 +aVi must admit i'm totally speechless . one of the all time classics !! truly enigmatic . i am absolutely star struck ! wow . you hit it on the head rob . i feel likes itting back and trying to understand the depths of what i just heard . incredible !! +p9026 +aVshudup and pay your fair share for a change you greedy cracker . you sound like a jew when yous tart whining about money , it's time you paided your fair share . +p9027 +aVha ha , anthony is idiot . he thinks he knows basketball but is too dumb to know he is dumb . +p9028 +aVi feel sorry for other grandparents that didnt have love and respect of their grandchildren . " custom_break -- custom_break hold it right there , grandma . custom_break custom_break is a hug " love , " or is it " respect " ? a child can show you proper respect without hugging you . your inability to discern the distinction between the two is what's holding you back from understanding this column . +p9029 +aVit is an attack of their opinions , their twisted and idiotic opinions . teach your children the word of god for it is not for you to damn them to the river of fire . ignorance will not be an accepted excuse come judgement day . may god bless you and open your eyes to his word . +p9030 +aVif you're seeing him while having a heart attack , fuck yes . yes , you do need health insurance or the hospital is going to take everything you ever owned . +p9031 +aVCUSTOM_AT jungwirth CUSTOM_AT futurama style +p9032 +aVare you talking about " that god-damned piece of paper " that mr bush swore to defend ? +p9033 +aVmaybe he's recently resurrected from the dead .. let's not be quick to judgement .. you try knowing right from wrong when your stomach is empty and your skull is full of worms and maggotts .. let me tell ya .. it's not that easy !! +p9034 +aVbradly won .. and boxing is fixed .. im not a pacman dick rider and i hoped he lost but i saw the whole fight and pacman dominated this dude the whole fucking time .. bob arum fighters are all suspect .. mayweather was smart to stay away .. holy shit . +p9035 +aVhey libturd .. you and your kind hate our flag and all it represents . how dare you use that name and flag symbol ! you want to see radicals ?? go to the white house and look around . nothing but radicals from wall to wall , +p9036 +aVCUSTOM_NUMBER . it's clean . CUSTOM_NUMBER . it's not shaved . right there is all i want . if i'm eating your pussy , my dear , it's because i want to smell and taste you ! +p9037 +aVgreat review . i would love to try one of these . +p9038 +aVwrong again - look it up fool . the list of " sb winner w / hall of fame qbs at the helm " is not endless . not even close you boob . quit talking out of your ass . scatterbrain is a good name for you - afixing your iq to the end of it is also a nice touch . +p9039 +aVusa , usa usa , what a bunch fucking bullshit !! +p9040 +aVmets are enjoying life right now . and as much as it annoys me , it doesn't bother me , i'm kind of happy for them like a big brother looking at his loser little brother trying to better themselves . good for you little mets :) +p9041 +aVCUSTOM_AT that puck movement was something to behold +p9042 +aVCUSTOM_AT could not agree with you more , these flowers will be gone in a few weeks however this lad chose to live his life that way and now it has ended and his family and friends have chosen this way to show their grief . no , most of us law abiding citizens don't agree ( quite rightly ) with his choice of profession or the way that it has been shown in his floral arrangements but come on this is his funeral and his family and friends so why can't they say what they want and don't want even if it is really distasteful . +p9043 +aVchris moyles is ace , they all make me laugh in the morning and gear me up for work ! keep up the good work ! +p9044 +aVhit like if you miss pervy sage . t_t +p9045 +aVall because of his stance on abortion ?? and maybe women ?? custom_break custom_break seriously , i despise that man . he will get his ass kicked +p9046 +aVi have on more than one occasion tried to engage you in decent conversation . but your into the personal attacks and name calling . i will correct you when you are wrong and pass on the ridicule . let's see if you have any moral decency in you . sting and surley seem to think so . +p9047 +aVwaah custom_break but i promise you're a winner custom_break we are all winners !! custom_break custom_break yay !! custom_break hip hip hooray !! custom_break custom_break feel better now ? +p9048 +aVthank you ! you just proved to everyone here that you possess an iq of no higher than CUSTOM_NUMBER . +p9049 +aVyou don't appear to be familiar with the obama campaign , which is a bit surprising . +p9050 +aVit is bad ! i can't even begin to reflect and do justice to how much damage this program has caused children - i was dealing with kids in and out of foster care - know of many who were abused , lots on drugs and alcohol now because of abuses - no one cares - give the fosters $ and close the door - if you have a working fire / smoke alarm and lock up your guns you are good to go +p9051 +aVhats off aamir sir , aamir ji aap ka ye show har insaan ki soch badal dega ! humanbing harek isaan me hona jaruri hey or esi buniyad pe duniya kayam hey or rahegi ! ek bhartiya ho ne ke naate hamara sab ka ye farz he ki sache hindustani ho ne ka farz ada kare or hamare ho sake itni insaaniyad ko badhawa de . +p9052 +aVhahahahahaha , under ob everyone gets free stuff , even the judges . too bad i am paying for their free stuff . +p9053 +aVand you are .. ? +p9054 +aVellen degeneres thanked \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthe o \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER reilly factor \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d host bill o \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER reilly this week after the fox host called out critics who demanded ellen be fired as a spokeswoman for jcpenney stores due to her sexual orientation . custom_break after degeneres , host of \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthe ellen show \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d was announced as a spokesperson for the department store , a conservative group known as the million moms slammed the decision to have a lesbian represent the store . custom_break but on an episode of \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthe o \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER reilly factor \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d monday o \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER reilly said he didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t think firing degeneres was in keeping with \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthe spirit of america . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cwhat is the difference between a mccarthy era communist blacklist in the CUSTOM_NUMBER s and the million moms saying , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER hey , jcpenney and all you other stores , don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t you hire any gay people , don \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t you dare \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER what is the difference ? \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d o \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER reilly said . custom_break on her show wednesday , degeneres thanked him saying , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cyou didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t really make it clear if you were going to shop at jcpenney but if you do you can use my employee discount any time you want . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break custom_break custom_break read more : CUSTOM_URL #ixzz1mp79n1wn +p9055 +aVholder appoints two prosecutors to find the leaks is a joke , isn't it ?? i don't know the backgrounds of either man , but i bet they will run into the same stonewalling that rep . issa and others have encountered with holder . he is adept at sidestepping the chicago way ! +p9056 +aVCUSTOM_AT i haven't been to sasebo . i visited fukuoka once while visiting my cousin in kita-kyushu which is also nearby . fukuoka has a large arcade like you described in sasebo . fukuoka is a nice place for a day trip . +p9057 +aVthe star box allows you to link your comment to facebook and twitter . you can go to your profile and change settings . if you click back on yellow star it will return to grey +p9058 +aVthoughts & prayers to you and your family . +p9059 +aVjerome the fruit .. the worlds still isn't going to accept you and your sodomite father doing each other to unconsciousness .. get over it +p9060 +aVstill proclaiming your stupidity +p9061 +aVa few thunder fans here don't seem to want to acknowledge that they lost game CUSTOM_NUMBER . custom_break custom_break all they seem to say is : custom_break it was on the road , so it's no big deal custom_break it was only CUSTOM_NUMBER points , so it was no big deal custom_break manu won't score like that again , so it was no big deal custom_break it was only one game , so it was no big deal custom_break spurs fans are idiots , so it was no big deal custom_break thunder will win game CUSTOM_NUMBER , so it was no big deal custom_break durant / westbrook / harden are awesome , so it was no big deal custom_break tony parker didn't score a lot of points , so it was no big deal custom_break custom_break the fact is , CUSTOM_NUMBER % of teams winning the first game of a CUSTOM_NUMBER game series win the series . a playoff loss is a big deal . period . there are plenty of games left , but making excuses is just a waste of time . +p9062 +aVCUSTOM_AT - spin please define the ' job ' .. +p9063 +aVfirst off , i'm a girl you piece of shit and spawn of the devil . second , research my name and it will come out as son of lucifer ? reaally ? i pity your parents , having a child as bugo as you . you keep saying i am the father of this , father of that , unya ? is that the best you can come up with ? bring it on dipshit , bring it . +p9064 +aVCUSTOM_AT fuck you , nsa . custom_break custom_break write it down . +p9065 +aVah . you're one of * those * guys ( self-flagellating alt-tech guy ) . +p9066 +aVvote for barack obama . because if you don't , mitt romney will be your president . +p9067 +aVugh they're so fucking flawless and gorgeous . can i have them both ? +p9068 +aVit was fabulous . elvis was there and he stole the show . of course , the bride was gorgeous too . lol +p9069 +aVa lot of money so u can sit on your ass . +p9070 +aVi live in michigan , and there's a meth lab right down the road that got busted . what say you ? +p9071 +aVjk i actually think its cool to see minnesota's resurgence +p9072 +aVsanyu i suggest you get over cute and become competent ( intellectually ) if you reasoned like buess i would think you are compentent . the way you sound makes me think your brain is in you panties . custom_break bluess great reasoning , great questioning and indeed you showed a sense of patriotism . custom_break sanyu pull your brain out of your panties , have it in the right place you might reason better than you do here +p9073 +aVjulissa is fuucking annoying +p9074 +aVCUSTOM_AT custom_break custom_break heh . you said " tightly " . then you said " loosely " . +p9075 +aVhi mary .. loving this weather ! unfortunately can't go far .. it figures . +p9076 +aVi hope you liberals / progressives / soc ialists / com munists who are commenting here are really proud of yourselves with your fi lth y comments about ab . keep it up . it shows who you really are , a bunch of snarky , ha te ful , elitist , de cei tful , and dec eived useful id i ots of the dark . crawl away slim ers . +p9077 +aVyet here you are , day after day , supporting the paper by clicking on links and making comments , increasing site traffic . custom_break custom_break you just cant cure stupid . +p9078 +aVwaves back , while holding up a sign saying : custom_break custom_break custom_break " the pipe works better if you light it +p9079 +aVwtf are you talking about ? & more important shit ? like taking time out of your life to comment on me calling another nigga ugly ? hmm yeah your still in middle school . +p9080 +aVi hope the gobbly gooker is a unlockable character on wwe CUSTOM_NUMBER +p9081 +aVi'm no liberal you cocksucker , just not so stupid a fucker as to shoot a kid going for candy .. you're a puzzy that is scared of shadows . +p9082 +aVthe kk .. the klu klux klan .. the military wing of the democratic party ? custom_break lol ! +p9083 +aVyou calling others ignorant assholes !! hahahah that is a fucking joke +p9084 +aVadded those quotes at beginning and end of the track . bwahaha . it's alsum . +p9085 +aVrec just shut your mouth with your neo-nazism . you are just a weak minded social reject compelled to strong leaders like hitler because you cant fend for yourself . +p9086 +aVone of our best and most honorable presidents . +p9087 +aVif its so lame why did you read this or for that matter search this topic maybe you should think a little more before you make yourself look like a fucking hippocrate . +p9088 +aVyes man fell our pain but on the other hand we can handle they ass you just need to show em who boss they can get they little attitude as long as they dont cross that line +p9089 +aVyou are an ignorant piece of sh #t . +p9090 +aVis it just me or does that picture of david brock scream " i can suck start a b CUSTOM_NUMBER +p9091 +aVCUSTOM_AT finally someone else seems to get it , it's just a game get over it people . as someone who has actually been in combat i appreciate them actually talking to people who have seen it . todd if you want to realism join the military these are games , games are fun . your mad because of a regenerative health if that's the case don't play shooters . todd's logic is rediculous the combat isn't realistic really , no $ # @ ! . hey todd just play red river and stop writing articles about this subject , . and like i said i'm a vet and the game dosn't piss me off your pissing me off . it seems to me you think your doing hard nose journalism by questioning the realism of a videogame , well todd in reality you failed and instead of badgering them because they used the word " authenticity " maybe you should spend more time reading a dictionary +p9092 +aVwell considering lebron james is pretty damn good in the post season exluding the finals and peyton hasn't played his best in the post season it'd have to be lebron ( peyton is not a choker though ) +p9093 +aVobama commands the lead in under CUSTOM_NUMBER k a year and under bracket only . romney is ahead for CUSTOM_NUMBER k and above incomes . +p9094 +aVthat hexagonal crown matches the watch so well . as for modern watches , i love the seiko orange monster . +p9095 +aVi'm a butch woman : won't you come try and whoop my ass you weak ass sniffling little troll ?? in fact better yet bring your wife along ,, she's almost hot , and i'm sure she'd hightail it away from you boy !! : * +p9096 +aVi can understand your appreciation for jack , but did you really have to let us know what people call you ? next time please remember to check your punctuation -- you left the period out after " starts " . +p9097 +aVi am not " dude " .. you moron ! go back to your mothers +p9098 +aVif you had a login , you can find for yourself that apple did not invent nor is the technqiue used to pack in more pixels new , on displaysearch : custom_break custom_break CUSTOM_URL custom_break custom_break the technique here along with the ipad was invented by engineers in sharp & a japanese display materials manufacturer ( jsr ) +p9099 +aVwere the people who were against civil rights as dumb and angry as the people who are against gay rights ? custom_break custom_break pretend for a moment that you put the constitution and bill of rights as your highest documents when evaluating u.s. laws and policies . how can you possibly contend that gay marriage is an issue at all ? custom_break custom_break the only way that you can contend that this is a huge issue is if you put the bible ahead of the constitution and bill of rights -- ignoring that this anti-tolerance thing isn't even universal across christianity . custom_break custom_break so why again should religion be a leading factor in whether the legal and financial agreement that is marriage is allowed between two consenting adults , regardless of gender ? custom_break custom_break +p9100 +aVway to go sweden getting your ass handed to you by americans . +p9101 +aVrays lose !! rays lose !! custom_break baltimore on brink of losing ! custom_break oh ya baby , red sox are on edge of a win against verlander ! +p9102 +aVthank god the western conference playoffs continue today . the east is pure garbage . +p9103 +aVare you guys fucking retarded ? you're trying to take pictures of these girls ? ! you guys are worse than the scum of the earth +p9104 +aVyes . but he had a distinct view on this continent in particular . something to the effect they had gold and diamonds literally in the dirt beneath their feet , yet , in the thousands of years they walked its surface they never bothered to look down and imagine the possibilities . he elaborates on the subject . +p9105 +aVyes , he should of asked politely , " please stop shagging my daughter +p9106 +aVpepes list updated : custom_break custom_break custom_break best place to get your dick sucked : custom_break custom_break custom_break hialeah swag's house custom_break custom_break between him and his mom te sacan la espumita +p9107 +aVare you in thailand ? +p9108 +aVCUSTOM_AT your a gloyte , do one +p9109 +aVwhat are you talking about ? +p9110 +aVa car wreck ? this looks more like a CUSTOM_NUMBER car pileup on a fog-shrouded icy road to me ! those involved in the crash at the front can hear the vehicles crashing one-by - one in the back with no end in sight . +p9111 +aVi sure hope bravo shares this as i have posted before and have never been published . +p9112 +aVlet me educate you . you don't go vote for the nominee that is a CUSTOM_NUMBER vote . a obama supporter votes for obama . plus one for obama . custom_break now if you vote for the nominee it washes that plus one out to CUSTOM_NUMBER . custom_break see how easy that was . +p9113 +aVnoynoy aquino is an ugly mother f u c k e r ! +p9114 +aVthe obama nation will rise +p9115 +aVhe will be charged with vehicular homicide . he will probably do CUSTOM_NUMBER months in a juvenile facility , and get his record expunged after completing probation . +p9116 +aVwhy don't the citizens of chicago that live in that area protect themselves ? they can think mayor daley and the rest of the puking liberals for this type of violence . yes , that is correct . the puking liberals have taken away the rights of the everyday citizen . if every law abiding citizen had the right to have a ccw then things would be different . i say , just go ahead and carry . it is better to be judged by CUSTOM_NUMBER then be carried by CUSTOM_NUMBER . if a few of these punks would be shot by a citizen i believe the punks would think twice before attacking citizens . and don't tell me it happens in other cities . CUSTOM_NUMBER states have ccw and they do not have these types of problems . custom_break custom_break wake up people and stop waiting for the police to protect you and protect yourself . custom_break custom_break thank you +p9117 +aVwhat's funny as hell is rooster and you being married , retard . +p9118 +aVchasm when you spam like the village idiot you are you will never get any converts to your stupid political bias cause .. nice pointy tin foil hat you got there too bud ! +p9119 +aVor rob-me scissor hands giving school kids a hair cut . +p9120 +aVwould it make ya feel any better if he was molesting girls ? you're really dumb , but you're dumb by choice . you choose to ignore everyone telling you facts , but you choose to be dumb . +p9121 +aVfucking hotest blowjob ever +p9122 +aVustaadji , you are the greatest ! +p9123 +aVfuck +p9124 +aVkuyt will wait to see what the new manager says about his playing time next season before he bolts . +p9125 +aVyou are a fool +p9126 +aVsorry are you lost little boy the men are talking please take your whineing else were and notice how no body sad anything about cod +p9127 +aVprobably , it is memorial day after all , a good joke on barajas part and a sign of a wounded vet +p9128 +aVso i guess all the person had to do in the article was bitch constantly about a game that so many people have bitched about for ages and then they win the bitches over ? wow . as far as " stop trivializing violence " goes . why dont you stop sounding like a big ass c ** sucker and don \u005c\u005c ' t play games with violence then . i get so tired of all these holy sounding types that get touchy about video game violence . custom_break custom_break i \u005c\u005c ' ve seen blood diamond a dozen times with the kids killing and getting killed and it doesn \u005c\u005c ' t even phase me one bit only because its not real , sure there is an emotional sense there but not enough to make me write to hollywood saying gay sh * t like stop trivializing violence because its disgusting . why does a game have to tone it down when movies don \u005c\u005c ' t ? i \u005c\u005c ' m not defending cod in the slightest , and that \u005c\u005c ' s because i don \u005c\u005c ' t really care about the game . but when i read the headline of the article i was curious to see what others were going to say , but i knew hands down it was going to be an attempt to throw punches at a series that has sold a lot of copies already . all i can say is , it doesn \u005c\u005c ' t matter how " you " feel when every other gamer that plays the game probably can just deal with the game no matter if it changes or not . custom_break custom_break sitting on your overgrown ass complaining about a game being this and being that just because you don \u005c\u005c ' t like it is stupid as hell . i hate jrpg games and why i also hate anime with a passion because i can \u005c\u005c ' t stand cute crap , i hate that overly sensitive bs with the characters , i don \u005c\u005c ' t like japanese music either unless its instrumental war drums or something out of samurai warriors or kessen where it doesn \u005c\u005c ' t begin and end with a stupid asian chick trying to sound like shes an innocent little annoying CUSTOM_NUMBER or CUSTOM_NUMBER year old .. i hate high pitch whiny sounding voices too and no japanese voice acting does not mean better over american voice acting because it still sucks regardless . custom_break custom_break but i don \u005c\u005c ' t go near the stuff ( even though my brother plays jrpg games a lot , and that means i can \u005c\u005c ' t really escape it when we \u005c\u005c ' re both in the same room and i \u005c\u005c ' m studying while he \u005c\u005c ' s just playing his sissy games ) . the fact still stands that i don \u005c\u005c ' t intentionally go near things i hate just so i can whine about hating it like cod haters constantly go near call of duty to claim that they hate the game when its easier to just simply stay away from it , don \u005c\u005c ' t buy it , try to pretend like it doesn \u005c\u005c ' t even exist . i will not lie to anybody . i like violence in my games . people that walk around with a d * ck up there ass crying foul about cgi characters dying and getting hurt probably scream when the doctor comes at them with a needle . as far as call of duty having to change goes . well , that depends on whether or not a lot of people want it to change , and not just the people that bash the game on a consistent basis either . i \u005c\u005c ' m talking about people that really feel or believe it should change a few things and have accurate reasons why . just simply saying " cod is for CUSTOM_NUMBER year olds and needs to change this or that " .. if anything the cod players are the ones that should change . +p9129 +aVwe are trying hard to beat yankees so you pick up a game on them :) +p9130 +aVvery , very , very , very , very , very , very , very , very important studies ? +p9131 +aVa role model to fools , idiots and rubes . +p9132 +aVyou don't seem to understand basic business concepts . +p9133 +aVthat's ridiculous , everyone knows men from mars are purple +p9134 +aVwho needs these agencies ? - we can determine for ourselves what is good . who needs some " authority " to tell us what is right or wrong as to collective impact on the planet . custom_break custom_break we would still be pouring waste oil in the ground to cheaply dispose of it if that mind-set were allowed to predominate . +p9135 +aVwhat you don't know about gulags .. check out the history of the soviet union . warning : it may disillusion you about communism and comrade stalin . +p9136 +aVlebron , durant , you two didn't deserve mvp . " custom_break ' custom_break - tony parker +p9137 +aVtaxing people at different levels is not redistribution of wealth you fucking retard . that's like saying a fat person is redistributing fat by eating more . +p9138 +aVstop wasting our air you idiot . +p9139 +aVCUSTOM_AT tilley CUSTOM_NUMBER . CUSTOM_NUMBER CUSTOM_AT CUSTOM_AT that's ' cause you're not getting enough oxygen .. she sucked it all out of the room .. +p9140 +aVhow can you possibly be such an ass hole all the time ? jesus , this is exhausting . people that say they have big dicks generally have small ones . hahah , believe it or not , i defended your bitch ass when you first joined the website . pussy . +p9141 +aVi'm great rhunt . you got to see a terrific game today ! +p9142 +aVgolly .. that's cold comfort . but none to worry .. by the end of this month israel will have taken care of the entire issue with iran and syria with one real nasty blow . allah ' aint so ' great ' after all . +p9143 +aVi am going to hate all over this page because im homophobic .. fuck off lesbian good thing that bitch died one less lesbo in the work +p9144 +aVif it walks like a duck .. and quacks like a duck .. it's either guest speaking or , in fact , a duck .. +p9145 +aVCUSTOM_AT CUSTOM_AT murdoch if you're going to call someone either stupid or ignorant , you should probably end the question you ask afterward with a question mark , not a period . +p9146 +aVlucky you , sasha , so what's your beef ? other folks ' taxes are paying for your ride . +p9147 +aVtoo many . like it or not , we're suck with him for another CUSTOM_NUMBER years unless the republicans can pull a rabbit out of a hat . the best we can hope for is a republican controlled house and senate . +p9148 +aVheaven forbid someone who is a bit of a celebrity , should express non-liberal views . custom_break custom_break as a hockey fan myself , i really don't think the very talented mr. thomas needs to answer to any lame-ass sports reporters .. or anyone else . he's entitled to his opinions . after all , prior to the current administration , we used to uphold free speech for everyone . custom_break custom_break besides , he's a stanley cup champion . ' nuff said . +p9149 +aV#nwo4fuckinglife +p9150 +aVall da hoes love me , you know what it is . rack city CUSTOM_AT :d isqus +p9151 +aVdo your job in hate loser +p9152 +aVcrawl back under your bridge you miserable pathetic troll . +p9153 +aVyou are full of schnike sir . +p9154 +aVponyfags fuck off +p9155 +aVthis is fucking primordial ! +p9156 +aVCUSTOM_NUMBER he rushed CUSTOM_NUMBER for CUSTOM_NUMBER . CUSTOM_NUMBER CUSTOM_NUMBER for CUSTOM_NUMBER . i think the threat of him running loosened up the pass defense last year . +p9157 +aVracism will die when white people stop being racist . +p9158 +aVyou are completely clueless . +p9159 +aViran is going to be blow up one way or the other . give it up ! +p9160 +aVi am a sales arborist in the dc metro area . i have grown all too accustomed to the status quo set by service magic . as a credentialed and educated professional in my field it has become quite disturbing to work with the environment that service magic has created , i.e. a false sense of qualification of vendors to the consumer . i have spoken with many arborists from other firms in our region and all say the same thing . this could have been a beneficial service , but without demanding proper insurance and credentials from its vendors it simply becomes a means for the unlicensed and uninsured vendors to gain business they are not qualified to perform . this also leaves the qualified professionals , such as myself , without a fair cost comparison to offer our clients . the fact of the matter is , companies pay tens of thousands of dollars a year for proper insurance , not to mention the cost of education to aquire proper credentials . service magic comes along and opens up an outlet for those who have not performed their due diligence in aquiring these necessary benchmarks to practice their craft to be solicited to the masses as " qualified vendors " . it \u005c\u005c ' s a shame and has become a menace to the integrity of my profession and those of us who have worked hard and payed countless dollars to make ourselves a true qualified vendor . my hope is that the people at service magic make immediate change in their qualification of vendors . +p9161 +aVnolimits CUSTOM_NUMBER please consider helping with the president obama campaign , we need people like you +p9162 +aVuntil medical staff are held accountable in a court of law mistakes like this are always gonna happen nhs trusts dont care about fines as it is ony tax payers money and not there own +p9163 +aVhaving read many of drago's other comments on this site , it is not shocking he doesn't " get " game of thrones . custom_break custom_break hodor has more sense . +p9164 +aVbecause we got that dback killer zito going in game CUSTOM_NUMBER he is undefeated vs your dbacks this year lol that don't get old ever +p9165 +aVi'll buy the rope so the tax payers don't have to choke up any money . c / w shovel . +p9166 +aVyou can get treatment for your dillusional inferiority complex , you sad little troll . +p9167 +aVa lot like you and your life huh ? +p9168 +aVdamnit gw , don't be such a pussy . you liked the white you should have stuck with the white . +p9169 +aVproof ? or just another unfounded ridiculous republican opinion . what , were you watching fox news when they talked about the study that said fox news watchers are stupid ? you have just proven them right . congratulations +p9170 +aVwe knew we were in trouble from day one .. nobel peace prize , .. for what ?? what afucking joke +p9171 +aVi'm so happy for them ! they really deserve it . +p9172 +aVyour buddies repub turd , raibox , cyndyb , nww nav are all having a party with the obama blow up doll . you should join in before the kool-aid gets warm ! +p9173 +aVthey certainly have hospitals for the criminally insane which , judging from what i've read of his verified history , is where kimberlin probably needs to be . +p9174 +aVCUSTOM_AT CUSTOM_AT bitsko @ ' micah carter i'm not going to make this easy for you . custom_break custom_break CUSTOM_URL custom_break custom_break +p9175 +aVin CUSTOM_NUMBER the federal government only consumed CUSTOM_NUMBER % of the national wealth . today it consumes more than CUSTOM_NUMBER % . +p9176 +aVno you are just stupid . +p9177 +aVthe first draft dodger who became president was bill clinton +p9178 +aVmassive pisstak * +p9179 +aVmaybe they did so thanks to jeff van gundy's outcry on that . +p9180 +aVmy issue is not with the shoes . i don't care about them . if they invoke a certain response or emotion from someone it's not up to you or i to say someone should feel that emotion . who the heck are you . that's how jesse feels . that's not how all black people and these comments demonstrate one of the reasons why race relations have a long way to go . there are too many ignorant people still breathing to have a serious dialogue about it . stop telling everyone how they should feel and maybe just listen . no one told the majority of americans not to have an emotional response to CUSTOM_NUMBER .. despite the fact that they weren't impacted directly . did anyone berate you about getting over your hurt ? you understand how you can be moved in that instance .. but other people are just crazy because they weren't a slave ? custom_break custom_break you want to dictate how people talk .. walk .. dress .. go the bathroom .. etc .. there seems to be no limit . custom_break custom_break adidas has every right to sell the shoe and people have every right to express how they feel about it . you know .. the same way you express how you felt about CUSTOM_NUMBER . +p9181 +aVand he shrugs off his rock once again .. tonyretardo ! +p9182 +aVyou are a really well-rounded idiot , aren't you ? +p9183 +aVCUSTOM_AT bitsko @ ' micah carter i'm sorry , what is your dispute .. what is your argument ? you're asking me to check what out in particular ? +p9184 +aVyuck imagine knowing a total fucking douche like you ! your mom should have swallowed dude ! she did this world an injustice ! +p9185 +aVok now your getting silly , which is not a surprise coming from liberals like you +p9186 +aVwhen you know you are little by little achieving your goals , it will help us inspire ourselves . +p9187 +aVmust be what happened when they saw you soledad . wearing your thong and nipple ring as you went to sleep in your fox hole .. secretly dreaming of the soldier next to you . +p9188 +aVi'd rather see you getting lynched ! +p9189 +aVthose chicks are badass . i would be puking if i had to drink a shot glass of either of those . +p9190 +aVomg jesse jackson , go back to your cave . slavey is over and has been over . as a country we know we messed up but to our defence it was tribal leaders who sold the slaves to us but regardless . slavery was " officially " ended over CUSTOM_NUMBER years ago and i doubt anyone alive is a former slave so cry me a river build a bridge and get over it already . you wouldve thought all those people standing on that one soapbox , it wouldve broke +p9191 +aVfor a stupid , ugly girl , she seems to have gone rather well for herself , big house , expensive cars , millions in the bank . still , i suppose all those girls crticizing her can match that , and are better looking as well . and the fellas have better looking birds . yeah right . +p9192 +aVwait till you see my romney imitation : " i love firing people , " " corporations are people my friends " and my favorite , " i'm not concerned about poor people . +p9193 +aVyou are a victim of the modern educational system . +p9194 +aVCUSTOM_AT custom_break custom_break touche . just letting you know : i plan on talking an inordinate amount of shit about this . out of all proportion , i say ! +p9195 +aVto anyone bothering to evaluate obama on his words and actions , vs . having someone else do the evaluation for them , he has never been anything but a pragmatic centrist . the problem with such a position is that the extreme left will claim a betrayal to an ideology never subscribed to , the extreme right has made it crystal clear that not only do they consider liberals sub-human criminals but they have no patience for moderates of any stripe , and the overwhelming majority of people who are in the middle are not political wonks and don't have the time necessary to try and figure out the truth through all the spin so they are unfortunately left with the impressions of whatever sensationalist press last got their attention . +p9196 +aVgee , scholarships for blacks only , can you say " racism ? +p9197 +aVcy said CUSTOM_NUMBER june wins that is looking pretty close right now +p9198 +aVCUSTOM_AT or .. it's our worst nightmare as we slide to the CUSTOM_NUMBER rd or possibly CUSTOM_NUMBER th best qb in the division . mercy +p9199 +aVi bet you take monstrous shits . +p9200 +aVyou are despicable and disgusting . +p9201 +aVi think one might get rabies from biting you . do you actually read what you type ? you're a psycho . and you may be newish here , but you sound like this old fart who used to fill this forum with similar mindless drivel . custom_break custom_break why do you hate romney so much ? clearly even such a mentally senile old dip stick like yourself recognizes that he is nothing more than the white version of barrack obama . i don't really think you're on drugs . only someone mentally disturbed can sound like a as much a crackpot as you do . +p9202 +aVut .. there's obviously a bit of sarcasm mixed in with some common sense in the post . thanks for reading . custom_break custom_break have a nice weekend ! +p9203 +aVand he helped to remove mubarak by ?? oh i forgot , he was demonstrating in cairo all those nights back in CUSTOM_NUMBER . you are so blinded by your own political stupidity . +p9204 +aVyou're reaching . i am a proud american . you're still an idiot . +p9205 +aVu are a sick moron +p9206 +aVthe boy just can't help it . lol ! custom_break custom_break " a slime a day will keep obummer away ! " go slick willy ! custom_break custom_break i guess you really can't call it a " slime " when he is kinda telling the truth . custom_break custom_break romney CUSTOM_NUMBER ! +p9207 +aVhey wade , why don't stop doing your hater and start argue with arguements ? actually , you are not really useful , not at all . +p9208 +aVa california bill mandating that public school textbooks be custom_break re-written to encourage \u005c u CUSTOM_NUMBER cgay , \u005c u CUSTOM_NUMBER d lesbian , bisexual and transgender ( lgbt ) custom_break lifestyles passed the senate committee on education wednesday . custom_break custom_break senate bill CUSTOM_NUMBER , proposed by openly homosexual senator mark leno of custom_break san francisco , passed the committee in a CUSTOM_NUMBER - CUSTOM_NUMBER - CUSTOM_NUMBER vote . the bill would custom_break require that teachers and textbooks present alternate lifestyles in a custom_break positive light , with instruction in subjects such as history , custom_break psychology , political science , and communication in public school custom_break classrooms . the ten-member committee , comprised mainly of democrats , custom_break unanimously favored the bill , backed by equality california and the gay custom_break straight alliance network . custom_break custom_break leave the kids alone . don't indoctrinate them . why is this in the schools ? +p9209 +aVyou are the fake . +p9210 +aVstrongly agreed , they are born and destined to killed with d support of their imam & their leaders , they are blood suckers . their CUSTOM_NUMBER th generation will never no peace . group of beggars ! +p9211 +aVso you are a serbian traditionalist retard ? custom_break custom_break what about serbian mafia , like zemun clan and arkan ? custom_break custom_break you hypocrisy is laughable . +p9212 +aVmrbreeze CUSTOM_NUMBER : that marks you a dumb arab . +p9213 +aVmadden . mass effect , battlefield , need for speed . those games all have competitors " custom_break custom_break ign biasd ea gave us money lie !! custom_break custom_break show me the motherfucking compitition for madden please please prove me wrong , untill then .. make sure you stop trying to act like your just generally interested in why we hate ea and not paid by them to ask this question . your some greedy fucks just like them and your not fooling anyone but the middle schoolers . +p9214 +aVmakes you a filthy nasty poor trash racist loser . +p9215 +aVhoney , you're only getting a taste of your own medicine here . you're one of the biggest internet bullies and a dumb one at that . how many times have you called other girls whores and prostitutes or made racist statements , but , of course , when you do it it's totally something else . may i remind you when you had to publicly apologize to dawn yang for the things you said about her and when you called women liars who were raped by a man which you deemed ' too good looking ' to rape someone ? don't start your faux feminist shit when you don't have a fucking clue about what it means to respect women . you deserve all the backlash and more because , face it , you're an asshole . +p9216 +aVnice one gordon , you can do becks pie n mash for him . please stay there .. custom_break +p9217 +aVthats why you use a hollow point . +p9218 +aVyeah you remember that support they gave wisconsin once they figured out it was a losing bet . obama and uncle joe have your back as long ass you win . otherwise , you are of no use to them . now that's leadership you can believe in . +p9219 +aVCUSTOM_AT tilley CUSTOM_NUMBER . CUSTOM_NUMBER CUSTOM_AT knocked you out of character for a while , though ;) +p9220 +aVCUSTOM_AT lol . i've once sent a choccie cake to seattle . so don't dare me . +p9221 +aVjust a question . if a player is injured or sick he / she is expected to take medications . right ? and some of those medications could have an unintended side effects like improved stamina or shortened recovery time . correct ? there are quite a few players on tour who seems to be chronically injured or ill . no ? +p9222 +aVsome village is missing their idiot . +p9223 +aVhmm .. and of course , dummies all over are going to buy it . +p9224 +aVbless her r.i. p xx +p9225 +aVi know " temp " engineers that work for oems and they make more than their counterparts , just no beneifts . +p9226 +aVcalmer than you +p9227 +aVteach your children : to be a parasitical glommer-onner , a worthless vile wretched puke who does not create a thing , but who loves to lie , swindle , cheat , its way into possession of the works of others and then take over their lives and tell them what is best for them , even if they must slay innocents to do it - takes a special kind of criminally insane hysterical pig freakery that can only be summed up in one word : democrats . custom_break +p9228 +aVaw .. da poor amber is out of clever retorts so he resorts to CUSTOM_NUMBER year old parrot tactics .. custom_break lol !! :) you've now regressed beyond what that CUSTOM_NUMBER year old bully did to you ! bravo !! custom_break perhaps we can regress you to the point that you spit up on youself like an infant ? +p9229 +aVyeah , leon . i mean , you kinda should shut the fuck up if you're going to be critical of anyone with that avi up . it's too easy . almost like a person with downs syndrome ( sp ) getting beside themselves and calling another ( non-downs ) person stupid during an unfortunate episode . knock that shit off , sir . your entire cyber being is rife with ridiculousness . +p9230 +aVi wish him well , but athletics are tough when you've lost your confidence +p9231 +aVthe last few weeks ? seems like a bit of an exaggeration don't you think ? i haven't seen that much shit around here besides angry's latest blog about that CUSTOM_NUMBER guy . +p9232 +aVthis faggot will flop +p9233 +aVwho cares though . this cannot be used as an excuse to treat someone as a lesser person . would you want to ban marriage between men and women who are sterile ? what about the fact that gay couples can raise children and increase the fitness of humans who are already alive ? custom_break custom_break it's completely silly when one tries to use evolution as a way to justify why gay couples should be prevented from being treated equally . +p9234 +aVi post facts to dispute your numerous claims . you choose to ignore them and believe the chain email instead . your choice , not mine . +p9235 +aVi love swuishing and eating my foot long terds . call me stinky . that is what everyone else calls me . +p9236 +aVi've heard tell that there won't be any new pov characters in the next CUSTOM_NUMBER books . +p9237 +aVyou liberal , socialist , communist democrats better understand what you are wishing for . if you really believe what you say you believe , why don't you just move to russia or some other communist country and enjoy the ride there . +p9238 +aVbeing cocky is good as ever !! ahahah xd +p9239 +aVfuck robots ! +p9240 +aVwhy don't your wife blow all off the liberals for a quarter each and donate the money ,, ?? +p9241 +aVanimal planet told that mermaids are real . +p9242 +aVi feel like i raised them and then watched them graduate ! so proud ! they had no sones in the audience , no fantastic stage , no pre-interview or fan chants or anything and they rocked it ! so fucking proud ! ya'll don't even know ! custom_break custom_break and my god , that had to be the first time i've watched a full episode of letterman and sweet jesus , people watch this ? where the hell did they pull bill murray's old ass from ? and regis , go rest man , you've done so much , i know it's hard to turn off of work mode but goodness just go home . +p9243 +aVi will say this though if the celts can be the heat in this series it may be more impressive than when they won the finals because of how beat up they are +p9244 +aVwell then let private equity funds invest in green energy . at least they look at whether the company has a viable chance to succeed , and they don't allow political cronyism come into play when they make their decision . +p9245 +aVi am not your friend , fool . i am not a slave . i am free . i love the usa . you have have your head up your lower orfice . +p9246 +aVit's been done . don't you read other people's comments ? +p9247 +aVi think both of you need to grow up and stop arguing over a fuckin computer all day and do something with your lives like maybe go outside for a change or get out of your moms basement and find a job . :d +p9248 +aVyeah , he will just let them in and allow them to take over . be prepared ! +p9249 +aVjoe was cut once steve young was already there . we \u005c\u005c ' ve got nothing but the " possibility " of a good nfl qb as the heir apparent . two different things . i can \u005c\u005c ' t speak of gretzky cause i don \u005c\u005c ' t know the details . +p9250 +aVsolution : stop giving fucks +p9251 +aVyou're clearly retarded . +p9252 +aVsure they are tommy custom_break one less demwad +p9253 +aVbeing gay is absolutely a choice - if it were not a choice , how do you explain the thousands of people who were in that lifestyle and have rejected it and become heterosexual ? +p9254 +aVthe general population may be , but i think that the people in the nar know exactly what is in there , and are advocating for it . these are the same people who think gays should be executed , atheists should have their citizenship revoked , and that the first amendment means you have the freedom to choose what type of christian you want to be . they say they want to return us to a " christian nation " and that we need to base our laws on old testament biblical law . go back and look at some of the stuff bryan fischer , mike huckabee , michele bachmann , and sarah palin have both said and endorsed . look at some of the statements rick perry \u005c\u005c ' s advisers have made , and things jim demint has said . they feel they have been commanded to take over government , the entertainment industry , the church , etc . these people have more influence than they should , and enough to be dangerous . their followers are probably naive when it comes to what their leaders are advocating and will continue to push their agenda without considering the consequences . some of the tea party have tried to introduce legislation to pass personhood amendments ( which are bad enough ) but also to charge women with felony murder if they miscarry but are unable to prove they had nothing to do with it . i have no idea how they would go about autopsying an CUSTOM_NUMBER week old fetus , but women would be guilty until proven innocent . please see last part of post in regards to capital punishment . this is what demint and crew advocate . these people are dangerous , and over CUSTOM_NUMBER % of the house of representatives either actively endorse , or are sympathetic , to these nuts : custom_break custom_break custom_break CUSTOM_URL custom_break custom_break for some fun reading , here are some links : " prenatal murder " custom_break CUSTOM_URL custom_break custom_break all sorts of craziness linked on this website : custom_break CUSTOM_URL custom_break custom_break CUSTOM_URL custom_break CUSTOM_URL custom_break custom_break CUSTOM_URL custom_break custom_break capital punishmentepitomizing the reconstructionist idea of biblical " warfare " is the centrality of capital punishment under biblical law . doctrinal leaders ( notably rushdoony , north , and bahnsen ) call for the death penalty for a wide range of crimes in addition to such contemporary capital crimes as rape , kidnapping , and murder . death is also the punishment for apostasy ( abandonment of the faith ) , heresy , blasphemy , witchcraft , astrology , adultery , " sodomy or homosexuality , " incest , striking a parent , incorrigible juvenile delinquency , and , in the case of women , " unchastity before marriage . " according to gary north , women who have abortions should be publicly executed , " along with those who advised them to abort their children . " rushdoony concludes : " god \u005c\u005c ' s government prevails , and his alternatives are clear-cut : either men and nations obey his laws , or god invokes the death penalty against them . " reconstructionists insist that " the death penalty is the maximum , not necessarily the mandatory penalty . " however , such judgments may depend less on biblical principles than on which faction gains power in the theocratic republic . the potential for bloodthirsty episodes on the order of the salem witchcraft trials or the spanish inquisition is inadvertently revealed by reconstructionist theologian rev . ray sutton , who claims that the reconstructed biblical theocracies would be " happy " places , to which people would flock because " capital punishment is one of the best evangelistic tools of a society . " the biblically approved methods of execution include burning ( at the stake for example ) , stoning , hanging , and " the sword . " gary north , the self-described economist of reconstructionism , prefers stoning because , among other things , stones are cheap , plentiful , and convenient . punishments for non-capital crimes generally involve whipping , restitution in the form of indentured servitude , or slavery . prisons would likely be only temporary holding tanks , prior to imposition of the actual sentence . +p9255 +aVlol , i like you neil , but you know you just fucked up .. right ? minho will not be defeated ;p +p9256 +aVas usual do-gooders again propose to punish users , rather than perps ! custom_break custom_break stop tobacco growers , processors , and sellers ! custom_break yeah , we all know , ' prohibition ' alone won't cure the cost of addiction or healthcare ! law enforcement costs too much ! outlawing drugs doesn't stop stupid users or pushers ! custom_break custom_break legalizing drugs such as alcohol and tobacco encourages dependency , promotes deadly health problems and encourages liberal democrats to steal our tax dollars to care for the suffering stupid and to provide temporary jail-time for pushers ! custom_break custom_break declaring murder and rape as criminal acts hasn't stopped either ! if caught , capital punishment hasn't deterred either ! rules of morality and prayers hasn't deterred stupid behavior ! education has also proven useless ! custom_break custom_break there is no sure solution to end stupid ! god has made it so and humankind loves gods ! custom_break +p9257 +aVoh dear , now you will be sorry , in fact you will probably wish you had never been born . if you had smuggled it into the uk and were unlucky enough to get caught , you would have got a slapped wrist by one of our weak judges . asia is different , drugs are not tolerated , there are no human rights , sentences are long , prisons are real prisons not like the uk world famous holiday camps !! +p9258 +aVfat contrat to large democrat contributor gpd , go figure ! +p9259 +aVyour dumb . +p9260 +aVthe same bus drivers carried epl players ( i.e. chelsea ) who won the cl . +p9261 +aVif you don't want to have stories about your kids obammy , don't send them out in public +p9262 +aVim sensing our season slipping away and it hurst a lot +p9263 +aVumm , joey .. custom_break custom_break the lion's share of those " old racist fat women-hating white homophobic baggers " are transplant from the very liberal , very , very democratic northeast . custom_break custom_break soo .. custom_break custom_break that means that democrats are " old racist fat women-hating white homophobic baggers " . custom_break custom_break and since you just outted yourself in an earlier comment , it's apparent that you certainly know these transplanted democrats on a biblical basis ( need a pillow to sit down on , joey ? ) . custom_break custom_break you are soo easy to slap around . custom_break custom_break so pathetic , so worthless . +p9264 +aVno you shut the fuck up attacking doctors . bloody creeps like you all screeching " fuck doctors ! " & slagging them off wholesale until you need one to save your life or your kids life or your granny's life , then you crawl and beg for them to help , cry on their shoulder , wring their hands with thanks when they save your life etc . custom_break custom_break selfish little spoilt ** ' s the lot of you . like whining children who want it all but at no cost to themselves . custom_break custom_break " ooh boo hoo we have to pay doctors a decent wage and pension , boo hoo ! " custom_break custom_break go live in africa then if you love your " i-wont - pay-a - penny-for - a-civilised - society " capitalism so much . +p9265 +aVCUSTOM_AT - fcbba CUSTOM_NUMBER f CUSTOM_NUMBER b CUSTOM_NUMBER a CUSTOM_NUMBER bca :d isqus custom_break custom_break you've got " islamic apologist " written all over your face . these people were poisoned , plain and simple . +p9266 +aVthat's not funny ,, whats funny would be your family watching you die of a $$ cancer , ha haa haa +p9267 +aVcockneywideboy custom_break custom_break so your the obese twat taking up all the pavement .. get a diet going and come back when you're cockneyslimboy . +p9268 +aVare you and higher ( replying to mesaman above ) the same loser or are you sniffing the same glue pot ? perhaps you are just libtard products of our sorry education system , in which case you should be offered a real education in the usmc , if they would take you . +p9269 +aVshe should've let her dumbass sister keep getting hit . look how she screamed for her to stop beating him up . this is gonna sound fucked up but idc . if a bitch gotta have her shit leaking and be near death to learn , so be it . +p9270 +aVyeah , guess it really must hurt him to cash that hbo paycheck every week +p9271 +aVyou are a typical one liner fu & ^ tard troll . +p9272 +aVyou're not the world's best debater . +p9273 +aVobammy , just take moochelle and go away +p9274 +aVi wonder what the highest season average for turnovers has been for an nba championship team ? +p9275 +aVfucking sum rich bits should get death sentence because if she did that for CUSTOM_NUMBER yrs she probably violated a child hope not but die bitch +p9276 +aVmedia matters actions could one day bite them in the ass . +p9277 +aVthose guys are hardcore ! i usually play as close air support and those dudes ride my shit about going off mission after i blow up whatever command has lased . +p9278 +aVwait for explosive news to be swept under the rug by the media on command .. nothing to see hear .. cars blow up all the time .. besides it was a prius . +p9279 +aVi already explained that sissy but , i'll say it i'll say it again to a little punk b * tch like you . white folks cheer and support him because their - you're tired of seeing black boxing champions so they will support any fighter as long as their not black idiot . +p9280 +aVporn star much ? if you aren't , you need to be . way hot . +p9281 +aVwhen you ready to discuss differences instead of being nasty i will be happy to debate you . custom_break subject : [ momedia ] re : why money in politics doesn't always win , by rachel maddow +p9282 +aVyour friend teatard got banned lmao +p9283 +aVyou p % nk a ## chump i will knock your block off you internet coward . ny bamma !! +p9284 +aVthat is a nice shirt you got on westbrick . custom_break custom_break custom_break -- custom_break craig sager +p9285 +aVi hope you two get in the same situation , enjoy your prison time , murderers . +p9286 +aVCUSTOM_AT CUSTOM_AT custom_break you're the sicko you bitch . you know what , your whole life is ugly and there's not one thing that people like about you . get a life and don't tell me what to do bitch i'll punch yo face till you turn purple +p9287 +aVhaley these girls are just ribbing you . sisterly love is what it is +p9288 +aVi know we were without kadri and frattin etc . but norfolk played almost the same amount of games as us , they would be just as banged up +p9289 +aVwhen you are s u c k i n g odumbo's d i c k , do you swallow ? +p9290 +aVum , i think adele is beautiful . her voice and personality in general is prob better than yours a million times . custom_break custom_break custom_break how can you even fucking say things like " fat people are gross " woww . custom_break custom_break discrimination much ? custom_break custom_break custom_break * smh * +p9291 +aVso are you . oh wait , sorry , you're just an idiot . god has no sympathy for you . sorry you were born stupid . take care ! +p9292 +aVno ! you are an idiot !! +p9293 +aV.. wade .. you are a pathetic piece of former star crap +p9294 +aVwatch out .. these goons will be coming after your bbq grill next !! +p9295 +aVfuck you . +p9296 +aVno white person who was not racist would e v e r call their friend that . you are a bunch of coons . her and her white friends had a really good laugh ! +p9297 +aVwow he's fucking sexy i love the white underwear :p +p9298 +aVshit +p9299 +aVoh my gosh ! you guys look so similar ! +p9300 +aVare you an egyptian copt ? +p9301 +aVi defended lana every time someone said bad things about her , now i dont know what to think , lana is a bitch and a whore +p9302 +aVsudsy , can't i just as well label anything you say ' left wing propaganda ' ? you liberals are all about debate tricks . i used to be like you . my mind couldn't take the murk . i need things to make sense . +p9303 +aVlater bill ! custom_break custom_break i don't care what they say about you ! custom_break custom_break you're ok !! +p9304 +aVthey need to learn how to play offensive sets and how to defend . maybe this series will help with that , but they would really benefit from playing more east teams to learn that their iso game is crap . +p9305 +aVobama is a friggin idiot , nuff said +p9306 +aVmore idiots posting on a subject they nothing about . +p9307 +aVyou are an idiot pbgallag . it has been a rough CUSTOM_NUMBER for halladay . but with the career he has had to say he sucks is ignorant and reflects more on your lack of intelligence . +p9308 +aVdo you know who i am ? fu you CUSTOM_NUMBER rocksucker +p9309 +aVyou sound like an ignorant dickhead . +p9310 +aVi disagree , barack obama has a significant amount of experience in economics . all that experience as a community organizer . +p9311 +aVi hope they hurt that fucking pig . +p9312 +aVyou should be happy ! custom_break custom_break ( CUSTOM_NUMBER - CUSTOM_NUMBER ft margin gm CUSTOM_NUMBER of the ' CUSTOM_NUMBER finals ) +p9313 +aVt \u005c xf CUSTOM_NUMBER i ngh \u005c u CUSTOM_NUMBER kh \u005c xf CUSTOM_NUMBER ng bao gi \u005c u CUSTOM_NUMBER edd ch \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c ti \u005c xeau c \u005c u CUSTOM_NUMBER ef CUSTOM_NUMBER c v \u005c xe CUSTOM_NUMBER tham nh \u005c u CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER edf vi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER t nam , v \u005c xec ch \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER c \u005c xf CUSTOM_NUMBER m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t l \u005c xfd do sau .. m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t ban ng \u005c xe CUSTOM_NUMBER nh trong m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i c \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER p nh \u005c xe CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edbc \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER u c \u005c xf CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddi \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER ng \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER u , nhung ng \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddi \u005c u CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER ch \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER l \u005c xe CUSTOM_NUMBER b \u005c xf CUSTOM_NUMBER nh \u005c xecn , kh \u005c xf CUSTOM_NUMBER ng c \u005c xf CUSTOM_NUMBER th \u005c u CUSTOM_NUMBER ef CUSTOM_NUMBER c quy \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER n , lu \u005c xf CUSTOM_NUMBER n b \u005c u CUSTOM_NUMBER ecb ki \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER m so \u005c xe CUSTOM_NUMBER t b \u005c u CUSTOM_NUMBER edfi m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t th \u005c u CUSTOM_NUMBER ebf l \u005c u CUSTOM_NUMBER ef CUSTOM_NUMBER c l \u005c xe CUSTOM_NUMBER c \u005c xe CUSTOM_NUMBER i th \u005c u CUSTOM_NUMBER ebb \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER ng vi \u005c xean v \u005c xe CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER ecb chi ph \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i b \u005c u CUSTOM_NUMBER edfi m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t t \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ch \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER ng , khi ng \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddi n \u005c xe CUSTOM_NUMBER o \u005c u CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER mu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER n l \u005c xe CUSTOM_NUMBER m , ho \u005c u CUSTOM_NUMBER eb CUSTOM_NUMBER c c \u005c xf CUSTOM_NUMBER \u005c xfd l \u005c xe CUSTOM_NUMBER m m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t v \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER nh h \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER edfng \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ebfn nhi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER u ng \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER eddi ho \u005c u CUSTOM_NUMBER eb CUSTOM_NUMBER c c \u005c xe CUSTOM_NUMBER nh \u005c xe CUSTOM_NUMBER n trong x \u005c xe CUSTOM_NUMBER h \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i , l \u005c u CUSTOM_NUMBER eadp t \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c n \u005c xf CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER ecb \u005c xe CUSTOM_NUMBER p bu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER c b \u005c u CUSTOM_NUMBER edfi t \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ch \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER ng . th \u005c u CUSTOM_NUMBER ebf n \u005c xean d \u005c xf CUSTOM_NUMBER c \u005c xf CUSTOM_NUMBER k \u005c xeau g \u005c xe CUSTOM_NUMBER o ch \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n ch \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER nh nh \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER ng s \u005c u CUSTOM_NUMBER ebd kh \u005c xf CUSTOM_NUMBER ng gi \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i quy \u005c u CUSTOM_NUMBER ebft \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER c v \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER g \u005c xec .. nh \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER ng c \u005c u CUSTOM_NUMBER ng kh \u005c xf CUSTOM_NUMBER ng ph \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i m \u005c u CUSTOM_NUMBER ecdi vi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER c d \u005c u CUSTOM_NUMBER eebng \u005c u CUSTOM_NUMBER edf \u005c u CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER .. v \u005c xec l \u005c xfd do , c \u005c xe CUSTOM_NUMBER i g \u005c xec c \u005c u CUSTOM_NUMBER ng kh \u005c xf CUSTOM_NUMBER ng th \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER n v \u005c u CUSTOM_NUMBER eefng theo quan \u005c u CUSTOM_NUMBER i \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER m tri \u005c u CUSTOM_NUMBER ebft h \u005c u CUSTOM_NUMBER ecdc , n \u005c xean s \u005c u CUSTOM_NUMBER ebd c \u005c xf CUSTOM_NUMBER m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t v \u005c xe CUSTOM_NUMBER i cu \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER c thanh tr \u005c u CUSTOM_NUMBER eebng nh \u005c u CUSTOM_NUMBER ecf mang t \u005c xednh ch \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER t " gi \u005c u CUSTOM_NUMBER ebft g \u005c xe CUSTOM_NUMBER d \u005c u CUSTOM_NUMBER ecda kh \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER .. " \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER r \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i m \u005c u CUSTOM_NUMBER ecdi vi \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER c l \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i ti \u005c u CUSTOM_NUMBER ebfp di \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER n sau khi c \u005c xf CUSTOM_NUMBER m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t c \u005c u CUSTOM_NUMBER a CUSTOM_NUMBER n ch \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER ng nh \u005c u CUSTOM_NUMBER eb CUSTOM_NUMBER s \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER y ra .. m \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER t v \u005c xe CUSTOM_NUMBER i \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ed CUSTOM_NUMBER i t \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ee CUSTOM_NUMBER ng s \u005c u CUSTOM_NUMBER ebd ph \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i th \u005c u CUSTOM_NUMBER ebf m \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER ng tr \u005c xean b \u005c xe CUSTOM_NUMBER n c \u005c u CUSTOM_NUMBER edd ch \u005c xednh tr \u005c u CUSTOM_NUMBER ecb , nh \u005c u CUSTOM_NUMBER b CUSTOM_NUMBER ng nh \u005c u CUSTOM_NUMBER eefng con g \u005c xe CUSTOM_NUMBER c \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n ph \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER i ch \u005c u CUSTOM_NUMBER ebft \u005c u CUSTOM_NUMBER \u005c xf CUSTOM_NUMBER l \u005c xe CUSTOM_NUMBER nh \u005c u CUSTOM_NUMBER eefng con g \u005c xe CUSTOM_NUMBER b \u005c xf CUSTOM_NUMBER nh \u005c xecn \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ec CUSTOM_NUMBER cho \u005c u CUSTOM_NUMBER \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER ng nu \u005c xf CUSTOM_NUMBER i v \u005c xe CUSTOM_NUMBER th \u005c u CUSTOM_NUMBER ecbt khi c \u005c u CUSTOM_NUMBER ea CUSTOM_NUMBER n . custom_break ( .. ) +p9314 +aVfuck me . i was just thinking about that today ! boom : custom_break CUSTOM_URL +p9315 +aVyou are an evil despicable animal , and i'm sure eventually you'll get yours . god has a special plan for vile creatures like you . +p9316 +aVfuck all u niggas in atlanta .. how u like that polk county nigga .. +p9317 +aVCUSTOM_AT mine is okc in CUSTOM_NUMBER +p9318 +aVjust because bush screwed us , does not give barack the right to screw us as well . +p9319 +aVgood to see you're feeling better old boy . custom_break a couple of snifters on your birthday and you'll be as good as new . have a good one . +p9320 +aVfucking idiot ! +p9321 +aVyoure fucking retarded +p9322 +aVyou are a moron son .. come on be a man and call it like it is .. +p9323 +aVthe carling cup is the new liverpool f . a cup custom_break custom_break are the liverpool fans going to be wearing kk white hats ? +p9324 +aVlol look at the brain custom_break \u005c tdamage . momma drink when she was pregnant ? +p9325 +aVyou're an idiot +p9326 +aVyou know you love when i give details like when you suck my cock and i say ' oh swallow me while i finger your asshole ' +p9327 +aVstill here ? you love getting smacked around , huh ? you just keep coming back for more . +p9328 +aVand you're fucking pinterest up ! it used to be so cool and friendly before people like you found a way to abuse it . +p9329 +aVi admitted a work history that included protecting kids from creeps like you w / the nypd ; ronald reagan not only visited us twice but praised us in a state of the union ; the ny giants came to lift weights and a republican cabinet member came w / out fan fare to serve dinner every now & then ; i guess nancy reagan hugging our kids made her suspicious too . get a life ; and speaking of life , once again what has your miserable life ever amounted to ? +p9330 +aVyou did your job , you redirected a ku basketball article on to football . great job , as far as your earlier post , misery fools did start talking trash , i threw it back at them . custom_break what's really funny is misery fans talking about a mediocre football program , agreed better than ku , on a ku basketball article . roar pussycat roar . custom_break if you don't like my posts , don't read them . i do not post on misery articles , although i do read them on occasion . have scanned the posts from their fan base , interesting bunch . like a strange mixture of a jim jones home brew . custom_break now straighten your antlers and march to the east of the sec , or wherever alabama tells you to . meet your new boss , same as the old boss . +p9331 +aVi love how all the losers retardicans , especially those in the bush / cheney adminstration coming out of their rat hole to throw stones at obama , the american hero . custom_break custom_break rummy boy , if its so easy , why did you and your loser boss , quit on the mission ?? +p9332 +aVa fair man you are . +p9333 +aVwhy are you still here then ?? .. simpletons like you are anything but refreshing .. +p9334 +aVfight for money !! go ahead , kill yourselfs , all for greed , common , take decision that is not in accordance with what the supreme court says , find some connection by the inec , and say to yourself , ho is my turn to loot not yours , or i kill u . bounch of shameless idiots . +p9335 +aVyou are not one of us . fuck off fag +p9336 +aVthe keynsian economiic imperatives are obvious to almost all economists and the vast majority of lay persons who have read an introduction to economics course . custom_break custom_break however , the plutocrats who make the decisions have material self-interests that are inconsistent with the general prosperity . for example , corporations owned by the plutocrats are acquiring foreclosed and distressed real estate all over the globe for small fractions of their former prices . also , the corporate plutocrats are breaking the already fractured bones of organized labor everywhere from wisconsin , to canada to greece . custom_break custom_break sadly , the plutocrats and their authoritarian allies in the clergy have so successfully degraded public education that there now are hundreds of millions of devotedly ignorant and sanctimoniously stupid voters who sincerely believe it is more important to keep homosexuals from kissing than it is to feed the world's children . custom_break custom_break democracy is dying all over the globe and soon we will revisit the desperately hate-driven politics of the CUSTOM_NUMBER s and CUSTOM_NUMBER s . +p9337 +aVperiod at the end of your sentence . :-) +p9338 +aVbailey is built for sex !! so hot !! +p9339 +aVnope , i have a brain .. unlike you +p9340 +aVhow many times do i have to tell u retards . i dont live in the uk . it was CUSTOM_NUMBER pm when i commented u utter bellend . +p9341 +aVi suppose it's just to give retards like you something to do . +p9342 +aVto all of you cowards , like me , who don't use our real names . when you people try to exchange with dave trabert , you really look foolish not using your real name . you lack all credibility yet you try and argue with him . dave is courageous and the rest of us are not . +p9343 +aVso is your mom . +p9344 +aV\u005c u CUSTOM_NUMBER cthe idea that chappelle in whiteface is potentially as offensive as ted dansen in blackface is frankly fucking ridiculous , and honestly makes me ashamed to be white . \u005c u CUSTOM_NUMBER d custom_break that \u005c u CUSTOM_NUMBER s the best argument for mcgee ! being the new siims ! +p9345 +aVCUSTOM_AT fuck yeah +p9346 +aVwestbrook could not handle magic's jock +p9347 +aVlet me rephrase my initial comment about you and your post ; custom_break pathetic little boy . +p9348 +aVwith four straight balnced budgets leading to a surplus and welfare reform he was a conservative . +p9349 +aVthanx for the fake address . knew you were a bltch . go tell your mom to bring you some cookies . +p9350 +aVyou fucked it u up with stupid music like most these whack niggas do . weak sauce homie +p9351 +aVnon sono un influencer e non ho letto l'intervista .. non ce l'ho fatta . custom_break mi sono limitato a leggere le domande .. la media era di sette o otto parole per domanda , a cui seguiva un paragrafo di risposta . custom_break custom_break insomma , lo stesso " stile " delle interviste a berlusconi . +p9352 +aVCUSTOM_AT other ed why do you want to pretend that retards " believe in facts " ? ! ? ! +p9353 +aVwe are not talking about incest here you fool .. use your common sense when making an irrational statement that you claim is rational ! +p9354 +aVlooks like you ( twist and rk ) are the only two here today ? good game so far , huh ? trout is being ridiculous again . i wonder how many more ab's the kid needs before qualifying for the lead league in batting avg ? anyhow , you guys have fun watching and rapping about the game .. go angels ! +p9355 +aVcan't billy joel make a song about it ? +p9356 +aVyou sir / madam , are a d * ck . +p9357 +aVhe only comes here at times to post +p9358 +aVyou are so confused +p9359 +aVyou are brilliant :) +p9360 +aVCUSTOM_AT shut the fuck up -_- so where do you shop your clothes k-mart ? if you dont your a sucker for clothes brand like hollister or american eagle or some skater brand custom_break custom_break go kill yourself your ignorant +p9361 +aVpeople like you just don't understand the character . +p9362 +aVyeah , you got your rights , but you and your mama will be tossed into frikkinghell because you'd rather obey man than god !! +p9363 +aVi think people like you are the cause castism , which is hindering india's development +p9364 +aVi wanna skull fuck both of you . right . now that is after i blow ur brains out with my shotgun in a horrid mess you low life fuckin imbiciles +p9365 +aVdo the angels have an outside shot at the world series ? +p9366 +aVxd jajajaja soy fuck yeah * o * aunq me perece real .. xdd porq siempre me sale las cosas bien * -- * y no tengoq hacer nada xd +p9367 +aVyou make a good point . despite being " challenged " , she does come here and play along with the idiot . custom_break custom_break when i do reply , i soften it up a bit . +p9368 +aVreported , you redneck coward . +p9369 +aVlemme hole it +p9370 +aVit's just your opinion indy . as good as anyone elses . +p9371 +aVgo away libturd , your kind just can't stand that the man told the truth , something you would never understand ! +p9372 +aVthe illegal rats he gave semi-amnesty to cannot vote in nov . anyway . there's not enough of them to make a difference , the white vote is the most valuable and important since there's more of it . obummer pissed off a lot more whites than appease illegal mexicans . +p9373 +aVCUSTOM_AT CUSTOM_AT ( david ) to be specific , streaming over CUSTOM_NUMBER sites +p9374 +aVcast a vote then get back to us . +p9375 +aVare you asking because your mom wants to sell your anus to her crack dealer ? +p9376 +aVit's not the acting i'm talking about , it's the rediculous salaries for something that doesn't benefit humanity other than entertainment purposes . sorry you misunderstood .. you must be an actor .. if you are , i hope you do great things with your money to help our society instead of spending it on material objects that won't help you when you get sick .. just saying ! +p9377 +aVyou is so right +p9378 +aVvotul meu : CUSTOM_NUMBER . pentru ca .. ( CUSTOM_NUMBER ) custom_break custom_break CUSTOM_NUMBER . .. de ce iubesc .. de ce-as iubi .. ( CUSTOM_NUMBER ) custom_break custom_break CUSTOM_NUMBER . niste varzari ( CUSTOM_NUMBER ) +p9379 +aVhis deserve the beating . you commit an offence . why resist arrest ? had he just surrender his ass would have never got beaten . pure ignorance . a police pull you over you keep your had on the steering wheel and don't say shyt unless he ask you a question and you answer without an attitude . when CUSTOM_NUMBER police have a problem putting you under arrest your ass deserve a beaten . now instead of getting a traffic ticket the dumb nigga get a felony charge and may be time . +p9380 +aVlook man , i don't think you're an idiot , your statement didn't make sense that's all . relax . some fans say stupid things because they're stupid fans , or they're trolls , or whatever . i can agree with that . i just can't even believe how defensive you got about your intelligence level . yikes . +p9381 +aVand you really believe she paid for that car ? really ?? damn , you dumb ! lmao !! +p9382 +aVare f * cking kidding me .. we still have idiots that don't understand this yet .. +p9383 +aVthe main problem with the vatican is that they " play by their own set of rules " . its why they have been able to get away with molesting little boys for as long as they have . custom_break custom_break custom_break not trolling , just stating a fact . +p9384 +aVbient \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c xb CUSTOM_NUMBER t mieux david ! +p9385 +aVi would say the detective and genious . +p9386 +aVlike my momma always said " re : leann rimes " i may be a little overweight , buy you are ugly and i can go on a diet .. can't stand leann rimes or her music .. +p9387 +aVs t f u and pay your dues +p9388 +aVpost where you got it from as that is the honest thing to do . its like stealing unless you post the source . +p9389 +aVCUSTOM_AT keep licking that democratic ass and see where the blue dogs take you . +p9390 +aVgood to see the police where able to get their in time to help this lady get to a rape kit . the police should be held accountable for allowing her to be attacked .. after all according to the anti gunners the police should be all we need . +p9391 +aVcant belive what iam reading this libatard belives that jimmy carter was a good pres what a looser . dont worry odumbo will blow jimmy out of the water for worst president ever +p9392 +aVtv , we are so short-staffed we have tons of stuff in our group right now that only one person can do . unfortunately . but this pisses me off because this was data i processed , it was circulated ages ago and she should have been looking at it then , not waiting until the last fucking minute before it goes out to find " issues " . and calling the boss instead of sending out an email so everybody could have a clue what was going on ? well , the boss is going to hear about it when she gets back . this particular person always tries to pull shit when the boss is away . +p9393 +aVanother example of a government gone nuts : custom_break custom_break " epa \u005c u CUSTOM_NUMBER s additional regulations will come at a cost . one conservative estimate is that gasoline prices will increase CUSTOM_NUMBER - CUSTOM_NUMBER cents more per gallon . custom_break in another outrageous example of an unreasonable regulation , the epa fined refineries $ CUSTOM_NUMBER . CUSTOM_NUMBER million in CUSTOM_NUMBER alone for failing to blend cellulosic biofuel into gasoline and diesel . the only problem is that cellulosic biofuel isn \u005c u CUSTOM_NUMBER t even commercially available , despite the government \u005c u CUSTOM_NUMBER s mandate that we had to use CUSTOM_NUMBER . CUSTOM_NUMBER million gallons of it last year . custom_break worse , epa is mandating that refineries use CUSTOM_NUMBER . CUSTOM_NUMBER million gallons of cellulosic ethanol this year \u005c u CUSTOM_NUMBER regardless of whether or a single drop of cellulosic ethanol is produced . " custom_break custom_break CUSTOM_URL custom_break custom_break custom_break obama's regulators are killing jobs helter skelter ! custom_break custom_break obama = wpe +p9394 +aVrandal , regarding your first paragraph above , what articulett said ! custom_break custom_break regarding you second paragraph , you really don't see what you are forced to do here , do you ? it's what i see you arguing on your blog and in our co-written book . you stretch things to suit what you believe . you use improbabilities to conclude a probability . you do this all of the time , almost in every case . custom_break custom_break take my speculation that most non-believers , especially former christians , have heard many of the custom_break things you say in this book , but most christians have not considered the custom_break things i say in it . ( that's how i meant the sentence per aritculett ) . custom_break custom_break first off , when it comes to former christians we were scared to death to seriously doubt our faith . we were scared because of the threat of hell if we get it wrong . you probably do not understand this . when the time comes for you to seriously doubt your faith you will understand it . at that point you must be convinced your faith has almost no probability to it at all in order to reject it , since that is the point where pascal's wager has no more force on us . so we investigated it thoroughly , most of us . the more educated we are in our faith then the more we must investigate it . so it's more likely what you have said in our book will be things most former christians have considered before . custom_break custom_break i have a mountain of anecdotal evidence for this as well . almost every christian i have spoken to always learns something from me and i have learned little or nothing from them . this scenario repeats itself every time i have a disunion with a christian , and can be seen from the responses to my blog over a six and a half year period . i teach them . they do not teach me . custom_break custom_break when it comes to non-believers in general studies have shown that non-believers know more about the bible than christians . that's evidence , baby . the probability therefore that non-believers will not learn as much from you in our book is more likely , than otherwise . custom_break custom_break so these speculations of mine have evidence for them . evidence . that's what i'm talking about , here , there , and in our co-written book . you must skirt it at almost every step in order to believe . custom_break custom_break and you provide some evidence that this is what you do here . you compared the probabilities of my speculations with predicting how many people will get rained on next february CUSTOM_NUMBER th . i did not say how many believers would learn more from me than you , nor did i speculate how many skeptics would not learn as much from you . i only speculated than most believers would learn more from me . most , as defined as above CUSTOM_NUMBER % , minimally . you however compared my speculations with prediction of how many people would get rained on next february CUSTOM_NUMBER th . that's asking someone to specify a mathematical number of people who will get rained on . you are also asking for the impossible , or the near impossible , since no one can predict what the weather will be like on one part of the planet seven months from now ( charitably assuming that's your comparison rather than asking someone to predict the number of people who will get rained on globally ) . w custom_break custom_break * ahem * there is absolutely no comparative parity here at all . custom_break custom_break this is what i see you do all of the time . custom_break custom_break the unfortunate thing is that i have to spend CUSTOM_NUMBER - CUSTOM_NUMBER minutes explaining this to your deluded mind . that's a waste of your mind in my opinion , a waste of an otherwise bright mind who would never use it in like this in any other area of life except when it comes to your faith . custom_break custom_break not only that , but i predict you are not done defending this utterly ignorant comparison . custom_break custom_break you do realize that i've stopped wasting so much time blogging because of christan like you , correct ? your reasoning abilities when it comes to your faith is just that bad , sorry . i have no hopes of convincing you jsut as i have no hopes of convincing a leader in scientology . you cannot be argued out of your faith because you were never reasoned into it in the first place . custom_break custom_break there is only hope for others . +p9395 +aVdid you have your flea treatment this month ? +p9396 +aVwhy thefuck you have to bad mouth this guy ? .. all of you below have facebook account , don't you ? +p9397 +aVdidn't take you any time at all to try to turn a solemn day into another attempt at racial conflict , did it ? custom_break custom_break the facts : the earliest known evidence of decoration day observance goes back to various women's auxillary groups in the north and south , when ladies organized events to honor their war dead by decorating graves . the earliest recorded event took place on april CUSTOM_NUMBER , CUSTOM_NUMBER in columbus , mississippi when a group of women formed an association to decorate the graves of civil war soldiers , starting with those who died in the battle of shiloh . the towns of macon , georgia , columbus , georgia , and richmond , virginia all claim to be the birthplace of decoration day , having first celebrated it in CUSTOM_NUMBER . the town of boalsburg , pennsylvania claims to have celebrated the first decoration day in CUSTOM_NUMBER . carbondale , illinois claims to have celebrated it first on april CUSTOM_NUMBER , CUSTOM_NUMBER . in all , some CUSTOM_NUMBER cities claim to be the birthplace of decoration day , most of them in the south . to settle the dispute , president lyndon johnson issued a proclaimation in CUSTOM_NUMBER naming waterloo , new york to be the official birthplace of memorial day . +p9398 +aVa few months ago . baptists , i think they were . +p9399 +aVaww .. it's ok , your mummy gave you up because you were a hideously ugly and stupid child . +p9400 +aV.. being as you did not attend any school , i can only repeat what justasking CUSTOM_NUMBER told you : custom_break custom_break don't get mad as us , when your ignorance is pointed out . we didn't make you babble like that . +p9401 +aVyou're no longer the " victim " , unless your mind is weak .. you are a survivor if your mind is strong ! +p9402 +aVluke carlin stays up and lou goes down ? +p9403 +aVCUSTOM_AT but i thought he didn't have a committable offer ? +p9404 +aVCUSTOM_AT it's a stupid word that's been abused by stupid people +p9405 +aVonly a black racists idiot would claim that the naacp is not racist in todays world , especially since you're a member . custom_break custom_break and i don't give a ' bo ' whether you take that personally or not . +p9406 +aVlinux torvalds : " nvidia , fuck you ! " custom_break this will remain in history , if linus said it then nvidia deserves it +p9407 +aVyou stupid racist motherfucker ! i bet you'd never say that to a black man or woman't face would you ? +p9408 +aVlol btw .. how the fuck did you nigs get a CUSTOM_NUMBER ? big fucking ups ! +p9409 +aVCUSTOM_AT .. i was thinking the same thing how can you not know where your money is gonna .. $ CUSTOM_NUMBER millon is a lot of money hands down .. i truly believe that k michelle like others our using their pass and now relationship to get paid she's bitter that memphiz is with toya now .. why didn't she say anything about all this last year ?? when and toya and memphiz got married why she waited for a reality show !! please help me out because i don't get it !! +p9410 +aVsuch a very weak response . how would the world function if you were in charge ? " no its ok , its not my problem someone just got robbed , they didn \u005c\u005c ' t hurt or threaten me . " do you not care about those who work hard ? custom_break custom_break im wondering if you yourself pay tax ? and if you do , how you manage to stay so stoic when you think that those people do nothing all day and take your tax money . honestly write a book about it . custom_break custom_break my dislike of these people comes from the fact that many many people slave away to make much less and do not have the audacity to make such comments like " i see eight people here having to choose between eating or heating . " people make those decisions every day ! whilst not living off of others . and before they do that they ditch the booze and fags . there is a thing called principles and i think theirs and yours are lacking . custom_break custom_break custom_break +p9411 +aVidiot : if they try to land the plane it is too heavy & will have a very bad accident & could kill everyone . crawl back under your rock where it is dark . better to dump fuel than kill everyone & more on the ground . +p9412 +aVCUSTOM_AT CUSTOM_AT i forgot that they arent on the east coast . maybe i'll send a box to my aunt tomorrow . we used to go to the outlet in culver city years ago and stock up on the imperfect seconds . how my mother stayed tiny with the stuff we indulged in . did anyonr else stop in to pick up warm famous amous cookies when he had a shop in hollywood ? he was occasionally there to bag the cookies . there was no l.a. iconic food or sweets mom didnt have us eating . +p9413 +aVif manning is done , neck and all , and has no arm strength left .. a redskin signing is just what we need in the nfc east .. a slow non mobile qb with a noodle arm and out of his element community .. think johnny unitas in san diego .. how does it feel to finish last again dead skins ?? +p9414 +aVso the best thing to do to help fight addiction problems is to legalize ? not sure i get tony's point . custom_break custom_break although you can argue that some drugs be decriminalized for possession or use , those arguments fall flat when it comes to cocaine or prescription drugs . you can blow your mind out on weed for days and just be in a stupor . many prescription drugs are beneficial at so many milligrams per body weight , but deadly at twice the dose . alcohol creates a myriad of variables when mixed with even tylenol , let alone prescription drugs . custom_break custom_break tony should have used this occasion to get people to donate to charities that help rehabilitate people . custom_break +p9415 +aVjojo , custom_break you are absolutely inviting obruny to get on my case again for using " we " . but this is the kind of thinking i would put into a petition project , which , after all , are plural in nature . custom_break custom_break here are my rough thoughts around " how to " : custom_break i recommend we wait til we hear the [ probably ] disgusting outcome of the security council meeting today . are they still meeting , or did they just go away , without bothering with any action ? i have not heard that yet . custom_break we all first need to read the " how to " instructions to design a good petition . custom_break CUSTOM_URL custom_break custom_break i have not read it yet . but it addresses logistic realities of petitions . custom_break custom_break we would need a bit of a discussion of what text we want . it has to be very cogent . custom_break you have seen my very roughly written theme . but maybe a much simplified call to boycott the russian CUSTOM_NUMBER olympics would be best . consider how that could be publicized at the london olympics by the british syrians ! custom_break custom_break or a call to cancel the russian olympics altogether . that would go to the olympic committee , which is a dead end . they have no objections to tyrants . " they is one " . custom_break custom_break but we would have to decide who we want to deliver the petition to , and that shapes the wording of the custom_break and it would be good to consult with a few other key people . we would not need to have unanimity , but we would need to know if " syrian campaigns " and others are thinking of doing the same thing . the situation now in syria is such , so close to the tipping point , that every little project can help leverage the collapse of the regime . that is why i signed the petition to refer assad to the icc , even though i would prefer to simply lynch him in the streets of damascus and display his body in every town of the land . just my initial thoughts . grammar pickers please note that i used the modal subjunctive " would " and " could " , to indicate possibility , not fact . +p9416 +aVvik the biggest win of the year so far was the last game vs miami clinched a winning roady +p9417 +aVyou wicked shit , you have the mitigated gall to call the lord's name in your filthy beer smelling mouth . +p9418 +aVi feel we're getting closer to sharing . +p9419 +aVit is true that i am in the us . however , i earned my way to be here legally and without harambee as you put it . every part of my life is good and i am content with my academic achievement and success ( academic and in life ) so far . i will not justify how intelligent i am cos it is stupid to do so . people who are intelligent or smart never justify their ability cos their actions easily show their abilities . it is only idiots like you who feel insecure about themselves and they try to justify to others that they are smart . your ill feelings about me being in the us cannot bar me from being successful in life . sorry for who you are . +p9420 +aVCUSTOM_AT like in fucking medieval times .. +p9421 +aVwe all have the same flag and collapse buttons . custom_break they are there for a reason . custom_break if a troll trashes the thread , we clean it up . custom_break no " monitor " will do it . +p9422 +aV< b > demonocrats are the party of CUSTOM_NUMBER , CUSTOM_NUMBER , CUSTOM_NUMBER abortions . custom_break custom_break also , homosexuality is about as evil as it gets in human beings . you are the most violent mercyless monsters to ever draw breath . custom_break custom_break gaydolph surrounded himself with you . there were limits on your savagery ( source , a creature named chaz , tole me ) . custom_break custom_break rhetorical question , scroto , where would you like to see the next several thousand innocent americans , be turned into cooked dog food ? +p9423 +aVyou're wasting your time . +p9424 +aVthey are on the level of crazy CUSTOM_NUMBER / CUSTOM_NUMBER truthers and moon-landing deniers now +p9425 +aVi don't know what the insults are for , custom_break i thought it was a good game . custom_break no excuses about anything . custom_break both teams had opportunities . custom_break there is CUSTOM_NUMBER more to go . custom_break my team lost , custom_break but we'll try again tomorrow no sweat . +p9426 +aVyou are part of the problem based on your reply . talk a long walk of a short and very high pier at low tide paulbot . +p9427 +aVdet er jo d \u005c xf CUSTOM_NUMBER nn samme greia . custom_break fuck verden , jeg leser aldri mer en overskriften , det en min stil , lever litt p \u005c xe CUSTOM_NUMBER kanten kan du si . eller ? +p9428 +aVreally ! understand this . i'd tell you to go fuck yourself , but you have your head shoved so far up your ass , theres no room for your shriveled dick . +p9429 +aVare you fucken kidding me ! +p9430 +aVshut up faggot face faggot lol +p9431 +aVindians ps just got crushed by chisox . hope you are right . +p9432 +aVoh just shut your shitty mouth stinky queen ! go clean your toilets ! +p9433 +aVryuzaki ; i like kevin nash . you don't . get over it . +p9434 +aVwow , vicky < CUSTOM_NUMBER , you finally got one right .. now you only need about CUSTOM_NUMBER , CUSTOM_NUMBER more to get out of the hole .. but , you'll need to make sure you adhere to the definition of an opponent . if you compare the two definitions - that of an opponent as compared to the definition of an enemy - you seem to be better classified into the category enemy by the rote definition .. +p9435 +aVwell , that's how a lot of people are . you're just gonna have to deal with those rumors by dispelling them or going about your life . don't let these rumors affect you mentally and emotionally . +p9436 +aVfat , like you kurt ? +p9437 +aVi think bon vivant's go outside every once in a while . +p9438 +aVwow .. rofl .. it's time to puke now . custom_break custom_break rofl rofl rofl +p9439 +aVyour name isn't richard its " dick " . see me funny . loser . now go get a job . dumbass . no need to reply while mommy is wiping your ass . wow this is fun . haha . +p9440 +aVgotta love the roads name it sounds so spanish lol . argentina should just shut it mouth as its like us saying we use to own america ( which we did ) think we should have it back now . but what worse the island never was part of argentina in the first place +p9441 +aVhe's doing all this talkin ' .. i would tell him " uhh .. i need you to focus on getting your dick hard . i don't enjoy flaccid meat down my throat . +p9442 +aVyour comment exposes you as iliterate and a fool +p9443 +aVCUSTOM_AT normally i don't support booing ex-seahawks . guys like heater will get booed for taking the money the saints offered , but i don't think you can blame a guy for talking the big contract when the seahawks were matching it . brown is just a different story . they guy is just such a immature and stupid little man . all the " slave to the businessman " garbage , holy cow . +p9444 +aVbethany - catch some of those flying ants - put them in a baggie and look up " termites " on the internet . then talk to your building super . because i think that what you have are swarming termites . i say that because a lot of people have your experience and they almost all think that they are flying ants . they aren't . they're termites . you should catch a few and compare them to what you find on the internet . +p9445 +aVi'm in two minds over this .. custom_break custom_break custom_break custom_break on the one hand stats like this will immediately provoke cries of a widening class division between the educated rich an the uneducated poor . however in recent years the recognition of having a degree has been cheapened by the plethora of nonsense courses on offer . i think anyone who does now go to university will think a little more carefully over the subject they choose and perhaps will study that little bit harder to gain value for their money . +p9446 +aVyou are a stupid writer !! +p9447 +aVnanette lepore : CUSTOM_URL custom_break custom_break if you wait a bit , it'll definitely go on sale . it doesn't look very flattering on the hanger so a lot of people pass over it ( so says the sales lady who helped me ) , so you'll be able to get it for less than $ CUSTOM_NUMBER . +p9448 +aVCUSTOM_AT \u005c\u005c custom_break \u005c\u005c custom_break i'm a lefty and i've killed & captured lots of muslims . +p9449 +aVhi john and a happy new ( chinese ) year and i hope that you get very good year . +p9450 +aVget the lottery on kid , you are one lucky boy +p9451 +aVoh fuck that british skank , if she tried that again , d'lulu would pull out her shotgun and blast her right in the twat ! +p9452 +aVhow exciting ! welcome to the team guys ! custom_break custom_break custom_break custom_break and - thank you everyone for the text and facebook messages - i'm not going anywhere . :) +p9453 +aVyou realize everytime you take a crap , you are polluting . +p9454 +aVwhat a pathetic little man you are . +p9455 +aVthe russians will agree to a lot of things . it's what they do that is important . trust me they have no intention of ditching assad . +p9456 +aVCUSTOM_AT lol ! - momo +p9457 +aVover promoted idiot - get your facts right ! +p9458 +aVtwo strikers with my cup of team please .. +p9459 +aVnwo are just wasting there life they only have CUSTOM_NUMBER active members lol +p9460 +aVhere is a fun fact for you sam : solyndra . +p9461 +aVi like politicians who wear their biases on their sleeves * much * better than the slick ones , who say only what the crowd before them wants to hear . custom_break custom_break like * both * presidential nominees this go round , and like governor mcdonnell of virginia . custom_break custom_break mcdonnell has his vision set on higher office , and doesn't want to fuck it up right now . +p9462 +aVtypical muslim , what do you expect from him ? +p9463 +aVreally ? really ? slow news day ? +p9464 +aVthink if a little man like pac makes floyd run for his life , i wonder what he will do if he did have to fight s.r. r he would pull an oj in a bronco with the gu . n to his pointed head +p9465 +aVnot funny jack @ $$ . you are a total db ! friggin moron . +p9466 +aVyou know , it would be so much easier for all of these socialistic , commi , pinko pukes to jump on a plane and leave the u.s. than to try and convert us to their sick-ass ideas on how this country should be run . custom_break +p9467 +aVwhat you are , jussi , is a plain old fashioned idiot . i am no fan of the usa any more than i am a fan of airchair bigot warriors like yourself . custom_break custom_break custom_break i am talking about the politics inherent in warfare and made a comment as to why hamas chooses now to accept responsibility openly , you fool . custom_break custom_break this is the area i am trained in , political science . not superstition and religiously-motivated jargon , like you . +p9468 +aVCUSTOM_AT :d isqus read through the comments on this thread and you're the definition of a dick rider . i bet you have a poster of CUSTOM_NUMBER in your room . +p9469 +aVwhen are you going to man-up and sign your name to your false lies ? +p9470 +aVlol and by the way u seem with ur anime icon ur just another manga fan that cant get pussy so he jerks off with fake titted women lol i purposely commented again just to piss u off now go eat a dick theirs a pimp sumwhere that needs the money from your ass on ur knees +p9471 +aVthe marital act , the procreative act , the union of the sexes , the life giving , life creating method through which the human race is perpetuated and new life is created .. custom_break custom_break reduced by " cewubacca " to "" the exchange of orgasm " . mutual masturbation . custom_break custom_break what a brutalised , desensitised , barbaric , dehumanised society we live in . +p9472 +aVromney urged everyone to be successful like him - borrow money from dad for your harvard education , borrow money from dad to start a private equity company , then pay back dad and declare yourself a " self-made man " . custom_break custom_break maybe obama heeded his advice , custom_break and borrowed money from romney's dad to get a harvard education . +p9473 +aVfewer than the number of your mom's " boyfriends " that could actually be your dad . +p9474 +aVa little lipstick on your palms , & off to the jerk match . +p9475 +aVCUSTOM_AT still didn't work ughh +p9476 +aVyep ! you responded as anticipated : custom_break an CUSTOM_NUMBER year old child that is looking for recognition among his peers . custom_break you are angry and it shows , little girl . custom_break good ! i am getting to you . +p9477 +aVnah i will take it over being a giants fan custom_break custom_break very successful in the short time we have had as a franchise +p9478 +aVthe judicial system is broken , for now an eye for an eye will make the majority think twice before acting and vigilance will protect all . +p9479 +aVmendrys - why in what planet would you be against men having the same rights and freedoms as women enjoy ? +p9480 +aVlet's hope it settles down here in the south ! my kids will love it +p9481 +aV@ ede CUSTOM_NUMBER and that's all you've got to say is it well i won't be losing any sleep over it . whether or not you are the same person or not you have the same stupid mentality . you're both like a couple of children so , easy to think you are one and the same . your posts are the poorest in taste so you can't complain at mine . calling me names just makes you look like a fool . if you think i'm showing off with any of my post it must mean you haven't done much with your own life . my posts are just a reflection of the truth to which you are obviously a green eyed monster . nothing special to me or most people to say what languages one can speak or whether they've had the chance to meet important people . perhaps you should concentrate on bettering your sad miserable life instead of posting childish comments to me . +p9482 +aVif i looked like that i'd have to end it . not my picture - that is our adorable smelly melly . +p9483 +aVwhat you see , is your hate for him . +p9484 +aV_ go_eat _ your_dog _ you_pos _ libtard +p9485 +aVi'll bbl custom_break subject : [ wiredscience ] re : eagle cam returns : the chicks are here ! | wired science | wired . com +p9486 +aVjust what you need to warm you up on a cold morning , she looks stunning as aways . +p9487 +aVwhy is she wearing a sea urchin on her head ? +p9488 +aVyou can all me snot , ad . i don't mind :) +p9489 +aVlet me try again . the mother did not know . had no clue . in fact , she even tried to keep the family together with this piece of garbage whom she loathed because she thought it was in the girls ' interest . no one knew except chris , the victim . custom_break custom_break no one . she herself couldn't connect the many dots , the effects the incest was having on her own behavior . this is the dark side , erin . you may not have been . +p9490 +aVis this one of those homo sedin brothers ? henrik im guessing .. +p9491 +aVfreedom of speech-no anger issues . +p9492 +aVexcellent command of the english language ! once again i want to commend you ni @ CUSTOM_AT on your " skillz " . +p9493 +aVCUSTOM_AT - bef CUSTOM_NUMBER f CUSTOM_NUMBER cf CUSTOM_NUMBER e CUSTOM_NUMBER a CUSTOM_NUMBER a CUSTOM_NUMBER e CUSTOM_NUMBER a :d isqus custom_break custom_break you're right , it certainly does . i'm surprised you haven't brought up the story of lot . that's always a fun one . +p9494 +aVramdin fuck off richard sir was great .. n u hve CUSTOM_NUMBER apologize him +p9495 +aVthe fuck is wrong with you ? ! ? you are so fucked up how can you say that ! +p9496 +aVsupply side economics has never worked . " custom_break custom_break so svelaz , what side economics does work ? +p9497 +aVi will fuckin kill u in real life track u down than shove a katana u ur ass just bcuz we asians r smarted than u dicks doesnt mean u could beat him up i swear i will be at chicago in CUSTOM_NUMBER hours +p9498 +aVhmm pointless lives .. yup , elitist pig you are .. +p9499 +aV' it's too soon to make any links between those two events , " custom_break custom_break hmm , feet mailed to people .. bodys found with limbs missing -- really ? the don't see any links ? canadians .. +p9500 +aVthere's also bugs with vanishing untargetable mobs . everytime you connect with an attack they vanish off screen but still continue to hit you . good times .. good times . :) +p9501 +aVyou bet just like jimmy carter . the pols will not cut their sacred cows , so lets cut the military , because they can not complain or they will be brought up on charges . we live in a dangerous world more so than when it was the cold war . we have unstable people around the world that would love to destroy us and blow up themselves . all of the technology in the world does not replace boots on the ground , in the air or at sea . custom_break navy vet retired . +p9502 +aVit does not say in the article if we can bring our own chairs and beverages to the fest .. does anyone know ?? +p9503 +aVwith CUSTOM_NUMBER in system ! i'll name the next one " fuck your blob " . +p9504 +aVbox out you fuckers ! #celtics +p9505 +aVclearly , you don't understand the war they are trying to fight .. +p9506 +aVtotally agree on the mamamia thing .. not specifically re baby bodies , but i just feel like everything on there seems quite judgy / one sided these days . too many cat fights in the comments as well . custom_break custom_break i really am going to miss your posts but i am so happy for you and your new writing journey ! you're going to rock the shit out of it , i'm sure xx +p9507 +aVi agree what is being said by the sec but muschamp and pinkel , really ?? custom_break custom_break those two are bums . custom_break custom_break any decent coach would have won with florida's talent , muschamp is a terrible coach . +p9508 +aVCUSTOM_URL here is my try :) +p9509 +aVstushed - wrong ! in germany , switzerland and austria where guns are legal the " gun crime " rates are no higher than england ( by the way england loves to include suicides as gun crime to push up the figures ) . england is one of the most violent places in europe regardless of gun ownership ! by the way don \u005c\u005c ' t forget there was a time when is was legal to own guns for self-defence in england much as it still is in n . ireland today . +p9510 +aVi have to give it to young blood he speaks the truth . but , jokers still be eating the puss , while it's stink . we don't give a fuck ! we just want to wild out and be animals for an hour . +p9511 +aVignorant ass liberals , i swear .. " custom_break custom_break psst .. you are talking to the wrong end . +p9512 +aVcant beleive the crap you say , you spell your name as the female andi , so i do hope you are female , or are you just another ignorant idiot that gives americans a bad name ? +p9513 +aVwhy dont you just eatshitanddie ? you are not wanted here , now run along skippy . +p9514 +aVfloyd , you are a coward , plain and simple . custom_break custom_break that is all . +p9515 +aVi swear i am gonna blow my lid if there is more green energy crap . +p9516 +aVhow did the photographer avoid the urge to not steal a brink ? if that was me i would look for a special team and the blueprints +p9517 +aVthe ronald reagan alumni association ? your kidding right ? i think i'm gonna puke ! +p9518 +aVso what if she wears same clothes more than once , the media would complain if always spent money on new clothes . leave her alone . you go girl . look forward when you are our queen . +p9519 +aVthat's right magoo you assclown , you are now my bitch . lol , are you saying you got pwned by a dork ? lololol ! quit trying to write off your libtard mistake of replying to me as just having fun . anyone reading the thread can see how confused you were in your unsolicited reply . your life must be pretty boring if all you have to do is stick your nose up my ass and follow me around . my own personal stalker ! i'm flattered . it must be you who is liking all my posts . gee thanks ! now you will have to fight blue f for ass time with your noses , he seems to be firmly entrenched . lololol ! rock on doofus ! +p9520 +aVCUSTOM_AT i made a review if you wanna know more . +p9521 +aVif you didn't see her on the tv news .. this is actually a very flattering photo . ( i know .. scary ! ) on tv she looked like an old piece of tanned cowhide . and please .. enough with the black lip liner . not flattering on anyone . +p9522 +aVi know .. this room is the equivalent of a hooker acting offended when you pull your penis out . +p9523 +aVall of you blaming russell need to shut the fuck up . without him we are not in this game . at all . +p9524 +aVwow .. custom_break custom_break a blogger who calls others names .. custom_break custom_break custom_break .. perhaps you are a blog whore .. custom_break custom_break people usually talk best at what they are very familiar with .. custom_break custom_break great conservation .. custom_break custom_break obviously you live in your own head .. custom_break custom_break read your very inane comments . custom_break custom_break let's see what alinsky talking points are you at .. custom_break custom_break custom_break custom_break #5 or #10 ? +p9525 +aVreally . and you'll get an honest opinion on the injury you received stopping that mugger . it must have been painful falling on that exact same spot when you went tubing , but i'm sure you shrugged it off like the hero you are . +p9526 +aVhere is the steps guys : custom_break custom_break CUSTOM_NUMBER ) download ifile from cydia custom_break custom_break CUSTOM_NUMBER ) go to var / mobile / library / prefrence custom_break custom_break CUSTOM_NUMBER ) deleted com . apple . assistend . plist custom_break custom_break CUSTOM_NUMBER ) deleted com . apple . support . plist ( optional ) custom_break custom_break CUSTOM_NUMBER ) install crt custom_break custom_break CUSTOM_NUMBER ) enjoy siri ( ^ _ * ) +p9527 +aVhey cock sucker i have a decent job so before you go running that big dick sucker of yours get the facts straight and if you were actually a hard ass you would come say this shit to my face you pansy piece of shit next time you want to talk shit to me post it with your mother fucking name nigga +p9528 +aVdamn , you guys woke up baby bron bron and now he ' choking +p9529 +aVwow you are back , happy days are here again , i don't like to see the nats lose but the upside when they do is that we can count on you to show up . btw i was impressed with that cute little henry the CUSTOM_NUMBER th jingle , i bet you have a ton of em . i am extremely honored that you replied to my comment , now this board will respect me , now that i am the one that you responded to . what an honor . well glum , you keep up the good work and keep posting on here because i find you very motivational , don't forget , you stay away from all of those other boards , we want you to use all of your little brain cells on our board . you d'man !! +p9530 +aVwell as long as you're cool with it .. +p9531 +aVso , from the article it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s clear that suarez feels he has nothing to apologise about , not because he \u005c\u005c ' s no racist , but because of some unwritten law .. " what happens on the pitch , stays on the pitch and that \u005c\u005c ' s the end of the story . " .. basically admitting something went on , not denying it at all custom_break custom_break custom_break custom_break from the scousers we are getting \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cevra got what he deserved . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d dispelling the myth that they support suarez because it was all a misunderstanding , but supporting him because they agree with his racist comments . shameful . +p9532 +aVyou can't sing , and you can't pray but you can wahoo it up over gay rape .. just plain fuck liberals .. all of them .. and knock the dog shit out of them first if you are so inclineds . +p9533 +aVCUSTOM_AT CUSTOM_AT jason i have never said anything but how i was not happy w / the way we only signed CUSTOM_NUMBER players and i am stoned for it b / c im not being " positive and seeing things the way some think i should " . how is that right ? why should i be bashed on here b / c i have an opinion ? i never said anything about uga needing to sign CUSTOM_NUMBER * players or signing s / one just to sign them . that is just false witnessing in any stance . i believe we have too many good players in state to just sign CUSTOM_NUMBER . what is wrong w / that ? +p9534 +aVtell him to hang in there look at brian baker for inspiration +p9535 +aVabsolutely moronic and unable to see the just motivation for legislation . custom_break custom_break drink driving is a crime , not drinking alcohol . why can you not comprehend that ? are you really that fucking stupid ? +p9536 +aVanthropophagy .. it's the other white / semi white meat +p9537 +aVi too am guilty of over moisturizing my hair . its hard to get that balance sometimes . i started using protein based conditioners such as aubrey organics gpb weekly and heavy duty protein treatments every CUSTOM_NUMBER weeks and that's been helping a lot . +p9538 +aVmy daddy says he is pissed because he aint gettin " reggies love " anymore . custom_break custom_break can someone explain this to me ? custom_break custom_break after all i am only CUSTOM_NUMBER years old .. custom_break custom_break yeah . +p9539 +aV.. well , ok . custom_break custom_break you're off the hook for now , but we'll be watching you . +p9540 +aVquit .. fucking .. with my trolling .. douche +p9541 +aVpoor baby , you didn't get your extreme santorum , ron paul , or any of the other losers . vote for obama punk ! you are a bitter " coney island whitefish " that never had a chance to be used . you are worthless and a pintless ideologue bigot .. your sentiment of vitriol comes at know surprise . you must have given a a bunch of money away .. poor baby ( literally ) . punk ! +p9542 +aVso the chiefs are better then the packers ? if your saying all your losses mean the other team is better then you . +p9543 +aVif the pope had an alligator would that make then safe pets for kids ? custom_break custom_break you say nothing to deny the overwhelming number of people and pets killed by them - that is a fact nobody here has been able to effectively dispute . custom_break custom_break what does the fact that celebrities owned a breed mean ? CUSTOM_NUMBER cent is a no talent rapper who has been arrested how many times now ?? have you checked how may people on your list have been arrested ?? how many gang bangers in jail have pit bulls waiting for them at home ? it is certainly not a list of intelligent people anyhow . what celebrities do has no bearing on the breed and does not excuse how dangerous they are . if you think that is a list of intelligent people , heaven help you . custom_break custom_break nixon had a beagle & was a crook - so ? +p9544 +aVno , because you are wrong . +p9545 +aVwow , you really shouldn't suck your daddy's dick with that mouth . +p9546 +aVit would only be news to you if it were reversed . we get it now and get it with your every post . you are a liberal puke that champions every liberal cause . got it glea . +p9547 +aVthey prefer it when they're working for the police , or when they're not the target of the police investigation . but .. :) +p9548 +aVyou're a turd neil and will always be one . picking on a rookie .. yeah big tough guy . no worries .. you'll get yours one day .. loser . +p9549 +aVhurry call them , so they can arrest the party leader , randy reuidich +p9550 +aVare you watching or partisapating ill kill you hes your not your point and ur ugly and who do you think you are you saw thats not enough how many times dose he halt too watch her go thats faking it likewats you people fit mad . you dont get it i was not there rite here you hurt my feelingz they think he likes you tou think youll live i s that true .. if you come near my man or my family down here in louisiana i would rip your eyeballs out with my fingernails . . . i dont need no gun , no knife , i would bloody kill you birch ! +p9551 +aVhow is defending your child vigilante justice ? custom_break custom_break why are you defending a child rapist ? are you a closet pedo ? +p9552 +aVCUSTOM_NUMBER st try-extra grenade custom_break CUSTOM_NUMBER st try - extra grenade ( i almost punched my computer ) custom_break CUSTOM_NUMBER st try-bushmaster ( i kissed my computer ) custom_break CUSTOM_NUMBER st try - CUSTOM_NUMBER gp ( goddammit ) custom_break CUSTOM_NUMBER and CUSTOM_NUMBER st try-katana ( well fuck it ) custom_break ak CUSTOM_NUMBER gold and berreta doesnt like me d : +p9553 +aVthis guy is awesome . saw him interviewed on democracynow a month or CUSTOM_NUMBER back . good on him . a true american . +p9554 +aValways in our thoughts , you and your gorgeous babies , always feel our love and respect coming your way , you are an inspiration to many of us , and i know sandra , irene and everyone else say it better than i ever can xx +p9555 +aVCUSTOM_AT true . you'd think that the christians who are so hell bent into forcing religion into public life would be using it to do the things jesus talked about . he never said a word about gays or when the soul enters the body . he spent all of his time hanging out with prostitutes and the poorest of the poor telling rich people it would be very hard for them to get into heaven . remember the sermon about when i was hungry you did not feed me , because what you do for the least of these you also do unto me ? i don't much think jesus cares how we care for each other , as long as we do . a hungry kid doesn't care if dinner came from food stamps or from a loving donation . my guess is he would not think highly of a society that leaves issues like hunger and medical care to the whims of its donor class . +p9556 +aVnext time try to offer suck his dick , maybe it will help .. +p9557 +aVdont mention social security or they will arrive by the coach load . +p9558 +aVdude abc . the thunder is winning still .. +p9559 +aVumm he was a strong swimmer .. he obviosly passed out and landed in the pool . did you even read the story ? +p9560 +aVeat shit and die andrew +p9561 +aValien CUSTOM_NUMBER was full of metaphor , subtext , and deeper meaning too . still " sucked " . deep does not equal smart does not equal good . custom_break this is quite fascinating , its like the opposite of that me CUSTOM_NUMBER debacle where people would constantly post the same you tube deconstruction of how the game went wrong , despite all the fun they had actually playing the game . in this case , this particular writer and the comments do a similar deconstruction , yet he explicitly says " it's still fun tho " and people are still butthurt . +p9562 +aVyes , you have been attacked by your biggest prison in the world . +p9563 +aVyou're clearly a nigger ^^ +p9564 +aVsoy ingeniero en jardineria custom_break y es yardero .. custom_break y no se usan insectizidas custom_break si no fertilizante y io no lo custom_break aplico solo opero las . maquinass custom_break desde . una CUSTOM_NUMBER . hasta una CUSTOM_NUMBER +p9565 +aVi don't really blend in anywhere i go in fairness . i do like you do despite your arrogance < s > not that i can talk < / s > on some issues . +p9566 +aVis this the kind of balloon world class cities have ? in that case , we should get two or three .. we need all the class we can get here .. +p9567 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT no limits custom_break appeal to authority is a classic logical fallacy . +p9568 +aVits not after CUSTOM_NUMBER custom_break innings for india a you jer * k off .. i am sure a dou * che * bag like you cannot custom_break remember the priceless CUSTOM_NUMBER he scored in CUSTOM_NUMBER th innings of the test match that he custom_break won for india against south africa .. and tons of such innings at the state custom_break level .. but i guess di * ckheads like u are on a shi * t pile diet to understand custom_break any of it .. think twice before opening the drainage pipe that is ur mouth u custom_break los * er +p9569 +aVin the north , social service would take away her brother . stupid ! +p9570 +aVgo get a nice education , learn a little about what made america great , then get a job and do it well and work your way up . some day you'll have money , too . ohh , and . . . stop your envious whining . +p9571 +aVsnap out of it you are so biased , whould you say the same if saddam hussain was still in power . or would you do what most shia's did including iran , go against saddam at any cost even if you have to lie to get bush to enter the war , . dont talk about syria or iran being anti israel . iran never fourght a war in the name of islam read history , they are an obstical in the way of islam .. ,, custom_break custom_break . "" regarding killing of people no body knows who is doing this "" __ , what the syrians who live in the neghbourhood are they blind maybe there oppressed but not dumb , , ? you sound like the assad regime who lie evry time . +p9572 +aVall you do is sit on this site and hate on every successful artist . you are the epitome of a crab you broke muther fucker ! dumb bitch +p9573 +aVi wanna fuck her pussy all night long +p9574 +aVthat seemed weird . the acting was odd to me . i guess that's what happens when you are mid scene . or when your one night fling leads to a crib and playpen the next day . is this women going to end up good and trapped in a supernatural existence or is she going to be the evil witch who will kill her own daughter if she strays too far ? guess we wait until friday . +p9575 +aVtalking crap on an anonymous board - your family must be so proud ! +p9576 +aVwell , at least we know what is on your mind . +p9577 +aVdo you have any proof that romney stole anything ? or are you just a stupid libtard troll ? +p9578 +aVnot fair ? he has tested positive for a banned performance enhancing drug . the investigation found no proof that it could have been meat . no cases have ever been found with spanish meat nor other cyclists . he has a ban just like many others who have tested positive , in all sports , why should he be different . he should have taken the CUSTOM_NUMBER year ban originally set , but no , spain had to cover it up , and the president even got involved to get it overturned . seems not just contador wants to win at all costs , spain too ! contador knew schleck chain had come off , but broke the unwritten rule . he showed then he would prefer to win at all costs , no matter about morals . +p9579 +aVthis sorta reminds me of that miss potter movie , you know the begining where she is putting certain colors together to get the perfect shade of blue .. ? +p9580 +aVin the past day we've seen zombies in miami and now robots . we're fucked . get your guns . +p9581 +aVtell me how the bridge can be fixed . oh , you can't . get off your soapbox , retard . +p9582 +aVfirst of all , fuck nickelback . custom_break custom_break second , while i agree with you that CUSTOM_NUMBER may be a little high ( ahead of johnny cash and michael jackson ? eh . ) , it's important to remember that nirvana , and kurt in particular , were the face of angsty teens and young adults everywhere and still are to this day . +p9583 +aVdo yuo sometimes laugh uncontrollably at night ? i just had that .. +p9584 +aVouch i wouldn't call her a turd jeez i mean she is not a very talented actor or a model but she isn't a turd . +p9585 +aVCUSTOM_AT new england lnfaoo +p9586 +aVyou are soo dumb ! +p9587 +aVCUSTOM_AT CUSTOM_AT dude's gonna be a hell of a defenseman . him and mcbain are going to be a real solid pairing for the canes . they're gonna be pretty good in a few years , they got a lot of young talent +p9588 +aVand while you're at it , please prove how your " point " related to past draconian laws that banned inter-racial marriage ? that intent was to " ban " mixed races . just stop it please ! you are insulting intelligence . +p9589 +aVlet them eat cake .. custom_break custom_break words that lit the french revolution . custom_break custom_break what words will americans have to hear ? custom_break custom_break eat the rich .. +p9590 +aVwhere's all the ron paul trolls , to defend this piece of shit ? +p9591 +aVemontional restitution sounds like you tried to cash in but failed +p9592 +aVi like his films .. put more fighting in vin .. maybe team up with jason statham ( transporter ) +p9593 +aVi love how yo are a complete moron , and you havvee to be a complete retard to hate naruto , like seriously man ? can you even form proper sentences ? well , obviously not . +p9594 +aVyou are a complete idiot .. not even a partial . +p9595 +aVda fuck this nigga talkin bout ? everything this hoe was doing was turning me on .. this nigga gay +p9596 +aVirony is not in most conservative's vocabulary . +p9597 +aVhe killed himself like a little sissy . custom_break custom_break good riddance scumbag +p9598 +aVhello wshh it is i again nastasha . for the record no i do not strip . i'm on south beach ocean drive leaving a pool party . get over yourselves . i love me , and at the end of the day u can think what u want . an opinion is like an ass and everybody has one . i live life and have fun btw im disease free bitches . i was born with a fat ass . i can't help it .. but yeah you fuckin right i love it . you would too .. s / o to pittsburgh +p9599 +aVi like the idea of charging gang members as members of a criminal syndicate . however , if all they do is lock up the leadership they just perpetuate the splintering that took place after the feds did the same thing . that hasn't worked out so well . custom_break custom_break la is the only other city that seems to have quite this pervasive a gang culture . what are other cities doing ? +p9600 +aVCUSTOM_AT :d isqus you are a pathetic nobody . +p9601 +aVi'm a vet rob ! how bout you ? now you know why some of us are not impressed with the street thug culture . their are some bad $ # @ people in this world . expand your horizons , son . i used to think like you until i came up aginst some other culture that wasn't afraid of me and my culture . +p9602 +aVgreat scott custom_break stephen f . hayes custom_break february CUSTOM_NUMBER , CUSTOM_NUMBER , vol . CUSTOM_NUMBER , no . CUSTOM_NUMBER custom_break custom_break throughout the CUSTOM_NUMBER election cycle republicans have pined for a bold , conservative reformer \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER a leader courageous enough to make difficult choices and articulate enough to explain them to a skeptical public . the good news is they have such a candidate . the less good news : scott walker isn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t running for president . he \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s running to hang on to his job as governor of wisconsin . custom_break custom_break walker is the target of a recall effort funded by national labor unions . why ? reforms he made to balance the budget have dramatically diminished the influence of public employee unions . if not reversed , these reforms will inspire similar efforts across the country , and the outsized power of public sector unions will finally be reined in . custom_break custom_break the election in wisconsin \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER which will happen in late spring or summer \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER could have a profound impact on the CUSTOM_NUMBER presidential race , with the winning side emerging from the battle organized and energized in one of the most important swing states this november . custom_break custom_break walker came to office in the republican wave of CUSTOM_NUMBER . he inherited a mess . under his profligate predecessor , jim doyle , state government had operated almost as a slush fund for public employee unions . giveaways to teachers and others put the state on an unsustainable fiscal path , so doyle raised some taxes and threatened to raise others . he raided a state fund set up to cover medical liability , essentially stealing contributions doctors had made to the pooled account . the wisconsin supreme court ruled against that pilfering , but the money had already been spent . even after budget gimmickry that would make fannie and freddie blush , the official deficit was $ CUSTOM_NUMBER . CUSTOM_NUMBER billion . custom_break custom_break just over a year later , walker and the republicans in the state legislature have nearly eliminated the deficit . for the two-year budget cycle , the state will show a $ CUSTOM_NUMBER million shortfall because the stagnant economy has resulted in lower tax receipts than had been projected . but the shortfall is for the first half of the cycle ; wisconsin will run a surplus in the current fiscal year . and walker said last week that he will eliminate the remaining shortfall without raising taxes . it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s a credible claim . he reduced the deficit without raising taxes . in fact , one of his first moves upon being sworn in was to cut taxes on businesses . his subsequent reforms have allowed property tax receipts to go down for the first time in years \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER by some $ CUSTOM_NUMBER million . custom_break custom_break the recall vote walker faces comes because of these results . the key to his success was his restructuring of health and retirement benefits for many state employees , asking them to contribute CUSTOM_NUMBER . CUSTOM_NUMBER percent of their salary to their pensions ( up from CUSTOM_NUMBER percent or less ) and to pay CUSTOM_NUMBER . CUSTOM_NUMBER percent of their health insurance premiums ( up from CUSTOM_NUMBER percent or so ) . custom_break custom_break even some of the governor \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s harshest critics acknowledged that such changes were reasonable . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cwalker is right about one thing , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d wrote eugene robinson , liberal columnist for the washington post . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cwhen it comes to pensions and benefits , public workers in wisconsin have a sweet deal . . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER . it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s easy to see why the average private-sector worker in wisconsin \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER probably paying upward of CUSTOM_NUMBER percent toward health insurance costs and struggling to tuck away something , anything for retirement \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER might agree with walker . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break custom_break walker understood from his years as milwaukee county executive that such changes could not occur without dramatic reforms of collective bargaining for public employee unions . so he proposed them , and republicans in the state legislature made them law . the reforms also ended compulsory union membership . custom_break custom_break the unions correctly understood these changes as a mortal threat . without compulsory membership , unions would lose a major source of funds . and without the ability to bargain collectively for benefits , the unions would lose their most compelling argument to convince public employees to contribute a chunk of their income \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER in many cases more than $ CUSTOM_NUMBER , CUSTOM_NUMBER per year \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER for the privilege of membership . so they took to the streets in massive numbers and pressured the democrats they \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d elected to do everything possible to sabotage walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s plan . democrats in the state senate fled to illinois . protesters occupied the state capitol . the fight captured national attention for months in CUSTOM_NUMBER . custom_break custom_break the unions lost that battle , but they did not give up the war . they launched an aggressive effort to recall several republicans in the state senate with the hope of reversing the reforms before it became clear that they were working . they spent heavily \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER an estimated $ CUSTOM_NUMBER million \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER and lost again . custom_break custom_break meanwhile , the results of the changes began coming in . in milwaukee , the reforms saved some $ CUSTOM_NUMBER million , an embarrassing windfall for democratic mayor tom barrett , who had predicted that the city \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s structural deficit would \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cexplode . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d localities across the state have seen similar savings . there is no disputing the central fact of walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s tenure as governor : his reforms are working . custom_break custom_break that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s a huge problem for the public employee unions as they try to convince wisconsinites that the man responsible for this dramatic turnaround should be recalled . so they \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER re focusing on two other issues : his CUSTOM_NUMBER campaign and an investigation into the activities of former walker employees . custom_break custom_break their first complaint is that walker didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t campaign on the specific changes he would make to collective bargaining . walker concedes that there is some truth to the claim . he wasn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t more specific , he says today , because he did not yet know exactly how he would make the changes to collective bargaining . but walker is conceding too much . he didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t provide a point-by - point proposal to restrict collective bargaining , but it was no mystery that he \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d make dramatic changes . ryan murray , a top policy adviser to walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s CUSTOM_NUMBER campaign , made that clear to the milwaukee journal sentinel in describing the changes to public employee health and retirement benefits . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cthe way the proposal would work is we would take the choice out of the collective bargaining process , \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d he said in comments published on august CUSTOM_NUMBER , CUSTOM_NUMBER . custom_break custom_break did that mean an end to collective bargaining over benefits ? the reporter certainly seemed to think so . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER c [ murray ] said school districts often have some of the most expensive health benefits in wisconsin and could receive cheaper insurance through the state if they didn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t have to negotiate with unions about who would insure their members . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d christina brey , a spokesman for the wisconsin education association council , the leading teachers \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER union , had the same understanding . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cour members oppose taking away their rights to collective bargaining , so they would definitely raise their voices against it . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d another teachers \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER union , the american federation of teachers , distributed flyers to its members warning that walker would \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cvoid parts of labor contracts \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER something that couldn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t happen without changes to collective bargaining laws . custom_break custom_break in light of the success of walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s reforms , complaining about what he said in CUSTOM_NUMBER seems unlikely to win many votes . so walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s opponents want to change the subject . last week , mike tate , chairman of the wisconsin democratic party , toured the state in an attempt to link walker more closely to an investigation of some of his former employees . here again , democrats have resorted to distorting reality in order to smear walker . custom_break custom_break there are two separate issues . in the first , a woman who worked for walker when he was milwaukee county executive was found posting political comments on the milwaukee journal sentinel \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s website during working hours . she resigned in may CUSTOM_NUMBER . custom_break custom_break the second involves two former walker employees who allegedly stole money from a veterans \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER organization that worked with the county on an event held at the milwaukee county zoo . john chisholm , milwaukee \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s district attorney , has been investigating the claims for CUSTOM_NUMBER months . there is no indication walker knew about the employees \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER activities , much less condoned them . chisholm has said that walker is not a target of the investigation \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER which only exists because walker requested it when he was presented with the facts . custom_break custom_break some wisconsin republicans , pointing out that chisholm is a democrat and highlighting the steady stream of leaks coming from his office , are growing concerned that the investigation is a political witch hunt , designed to bloody the governor before voters cast their ballots . walker , for his part , says that he believes chisholm is an \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cearnest \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d prosecutor who will conduct a fair investigation . that \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s probably overly generous . custom_break custom_break the coming battle for wisconsin will be a difficult fight for republicans . democrats have shown that they are willing to do just about anything to win . unions are fighting this battle as if their very existence depends on a victory \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER and it might . custom_break custom_break for conservatives , the fight is about much more than one man in one state . a walker defeat would send a message that political courage does not pay and political thuggery does . walker doesn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t like to talk about the effect the past year has had on him and his family , but it hasn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t been pleasant . he has been subjected to numerous death threats . his wife , tonette , has been verbally assaulted more times than she can count . his two teenaged boys have been targeted on facebook . his modest home in wauwatosa has been the site of several union protests . last month , a protester outside walker \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s state of the state speech told state senator john kleefisch that his wife , lieutenant governor rebecca kleefisch , is a \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cf \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER ing whore . \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER d custom_break custom_break walker has been willing to endure these attacks to turn his state around and defend conservative principles . conservatives should rally behind him . custom_break +p9603 +aV' ewe ' ? .. thinking about you last date .. +p9604 +aVgo fuck yourself you dumbass bitch . megan fugate is a dirty ass lying gutter slut fuckin whore and i would shoot that bitch myself . and you don't know shit about the trial . don't you ever talk shit on mike or dylan you fuckin cunt . and yeah dylan was there that night it fuckin happened you dumb bitch . you don't know shit i know everything . so go bury yourself a fuckin hole , lay in it , and fuckin die and we can put megan fugate right next to you :)) and you both can fuckin die and rot in hell together you dumb piece of shit cunt . go fuckin die so i can shit and piss on your grave . +p9605 +aVyou do need it because you are a good mom !! +p9606 +aVinteresting the wonderful kcstar took down my post and link to the story about the coke dealer flying on the team plane with mu's basketball team .. +p9607 +aVmake your mother stop spreading herpes +p9608 +aVi'm more than happy to give you my $ . CUSTOM_NUMBER . you will never get the type of investors you need . you need to think about changing your crazy business model . considder that my investment , +p9609 +aVstraight douche , wish it was you , you worthless , racist , coward piece of shit +p9610 +aVyou're an idiot +p9611 +aVwhy would i want to meet you ? you have absolutely no redeeming qualities based on your delusional posts . +p9612 +aVthe mets are a joke and no i'm not mad , just loving seeing you choada's get excited +p9613 +aVthe loony left is left are terrified they might have to get off their lazy ass and work . +p9614 +aVi agree to a point . i beieve that a lot of today's violence is due in part to the change we all got in CUSTOM_NUMBER . people are desparate and many are willing to do the unthinkable . i can't imagine what would make a father do this in front of his children , though . this is something they certainly , didn't need to be present for . +p9615 +aVand millwall thought they were hard ! +p9616 +aVCUSTOM_NUMBER st century conservatism : custom_break manufactured outrage . +p9617 +aVhows come you don't get nobody clicking your like button ? that should be something you think about alot , it means something , it means you are wrong . +p9618 +aVi agree wholeheartedly with you on ali , who i just recently started following on twitter and facebook . my problem with walker is his stupid actions are a black eye to everybody who put themselves out for him . +p9619 +aVthey'd be cuter if the salt & pepper sprinkled out of the holes in their necks . ;) +p9620 +aVfor the record , i'm not gay , nor do i understand the attraction . but self righteous , despicable , vermin like you are the reason our republican party is going to lose the election in november to bozo . if i wasn't so disgusted with the sense of entitlement and lack of self responsibility the dems propgate , i'd vote dem . it's not enough for you to live and let live . gays aren't hurting you . you have to attack their lifestyle as if it's your business what they do behind closed doors . my guess is you're just another bible thumper , probably with gay tendencies yourself you're fighting . +p9621 +aVhey , per , .. there's a big bus coming .. wanna try to catch it ? +p9622 +aVtrolls are a pox . a pox on them would be like a rattlesnake trying to bite itself .. +p9623 +aV#nwo4life custom_break #fucktrolls +p9624 +aVthat bitch was dead wrong just because she had a fucked up life dont mean take someone else r.i.p. hernandez life gone before he got to live it senseless at & t giving out iphones for a penny fuck it let that bitch dial collect for the rest of her life she dont even deserve that much stupid bitch +p9625 +aVall i have to say to you bay is : fuck you ! +p9626 +aVi haven't heard a substance argument from these righties all year just more of the same . they blame obama for the're woes ! here's some advice stop waiting for government to improve your lives and make something of yourselves !! +p9627 +aVCUSTOM_NUMBER balls on your chin +p9628 +aVrob many of us including me have faced down some really tough guys that were ready , willing , capable , and trying to kill us . some pissant guy in the hood does not qualify . you really have no idea of fear . you need to quit this fascination you have with thugs in the hood . you seem like a bright kid . join the corps and see how really tough you are . you will then understand that hood rats aren't really that bad .. just in their own minds . +p9629 +aVgatta eat cubans .. not ham .. no wonder why you are nowhere close to accurate +p9630 +aVcalliope you are a beautiful flower and don't you forget it !! ; w ; +p9631 +aVgabby in florida ** \u005c u CUSTOM_NUMBER cmemorial day is not a holiday its a day to remember those that fought for our freedom and those that fought and were maimed wounded and killed defending our flag the one obama took off his campaign plane ?? \u005c u CUSTOM_NUMBER d custom_break ** custom_break " no flag on obama \u005c u CUSTOM_NUMBER s plane ? " custom_break custom_break posted on august CUSTOM_NUMBER , CUSTOM_NUMBER custom_break custom_break < b > question < / b > : " did obama replace the u.s. flag on the tail of his campaign plane with his campaign symbol ? " custom_break custom_break < b > answer < / b > : " yes . obama \u005c u CUSTOM_NUMBER s newly designed campaign plane features the campaign \u005c u CUSTOM_NUMBER s logo on the tail . custom_break custom_break however , < b > an image of the u.s. flag appears on the side of the plane < / b > . custom_break custom_break " it is probably worth mentioning that < b > sen . john mccain \u005c u CUSTOM_NUMBER s campaign boeing CUSTOM_NUMBER plane does not feature a u.s. flag on its tail either < / b > . custom_break custom_break as these images from cnn show , it does feature one on the side of the plane near the campaign \u005c u CUSTOM_NUMBER s slogan , \u005c u CUSTOM_NUMBER creform . prosperity . peace . \u005c u CUSTOM_NUMBER d " custom_break custom_break CUSTOM_URL +p9632 +aVin fact , the stranges thing about the pc crowd is the way some of them obsessively abuse me as being autistic or at least suffering from asperger's ( though , admittedly some of them take it obsessive extremes ) . custom_break custom_break i wonder if the end justifies the means ? custom_break custom_break perhaps mrs clark would honour me with another of her " odd " replies ? custom_break custom_break and share her views on such attacks with us ! +p9633 +aVnazi nutcase . when you will realize jew-hatred is outdated and its for losers ? custom_break custom_break will you blame them for blood libel or causing both world wars too ? +p9634 +aVand barry tries to convince us he's switched to christianity .. we're not all as stupid as he looks . +p9635 +aVbest of luck to you , jenn -- i know it's not easy , but it sounds like you're well on your way to a great summer ! +p9636 +aVCUSTOM_AT im fucking with you that makes my dick hard and you know what i do .. i let them catch me looking at them then quickly pretend to look away and not to see them to see there reaction ololol +p9637 +aV< i > why not vote libertarian ? most of your progressive agenda will be fulfilled < / i > custom_break custom_break hilarious . +p9638 +aVwhat does her being a black woman have to do with it . she's a bitch , bitches get their own category in my book , race is irrelevant when dealing with unsophisticated and uncivil females . +p9639 +aVi'd fuck that bottom all day and all night !! that ass is just right and that moaning will just get my dick harder . damn .. +p9640 +aV.. from : rogers v . bellei , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER - CUSTOM_NUMBER ( CUSTOM_NUMBER ) [ continued ] custom_break .. custom_break " there are at least intimations in the decided cases that a dual national constitutionally may be required to make an election . in perkins v . elg , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER u . s . CUSTOM_NUMBER ( CUSTOM_NUMBER ) , the court observed that a native-born citizen who had acquired dual nationality during minority through his parents ' foreign naturalization abroad did not lose his united states citizenship " provided that , on attaining majority , he elects to retain that citizenship and to return to the united states to assume its duties . " in kawakita v . united states , CUSTOM_NUMBER u.s. at CUSTOM_NUMBER u . s . CUSTOM_NUMBER , the court noted that a dual national , " under certain circumstances , " can be deprived of his american citizenship through an act of congress . in mandoli v . acheson , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER u . s . CUSTOM_NUMBER ( CUSTOM_NUMBER ) , the court took pains to observe that there was no statute in existence imposing an election upon that dual nationality litigant . custom_break custom_break these cases do not flatly say that a duty to elect may be constitutionally imposed . they surely indicate , however , that this is possible , and , in mandoli , the holding was based on the very absence of a statute , and not on any theory of unconstitutionality . and all three of these cases concerned persons who were born here , that is , persons who possessed fourteenth amendment citizenship ; they did not concern a person , such as plaintiff bellei , whose claim to citizenship is wholly , and only , statutory . +p9641 +aVi use to chat with her back in the day on myspace . awe .. myspace a place where you could actually interact with pstars and celebs . fucking mark zuckerberg . +p9642 +aVwhiny bastard . you're up to your fucking eyeballs in this lie , don't try and back pedal it now . face it , your name will be forever linked to the most lying , corrupt , disingenuous , filthy group ever to mislabel itself as news . don't like that ? too bad ! you should have thought of that before you sold your soul to rupert murdoch for your thirty pieces of silver . you made your dinner , now eat it , baby ! scum sucking little dirt bag , one lie doesn't cover up another . +p9643 +aVwe will bury you in november , parasites . +p9644 +aVby the way , leidiot is a jerk . +p9645 +aVoh and by the way , i saw a recent interview with hitchens and a priest . hitchens actually admitted he may be wrong he could not say with CUSTOM_NUMBER % certainty that there is no god . even your most vocal leaders faith in nothing falters , especially as they age . wonder why ? +p9646 +aVi think the person from the school that made this decision , has an ass whipping ' coming ! +p9647 +aVyeah you probably havew a dick to you ugly fucking monkey black whore , you are not even a women to me , no black women are i think of you as monkeys that should be in the zoo . now go get your cunt sterilized slus so you dont make any more nixxers +p9648 +aVthe less you have , the more you understand " suck it up and press on " . the more you have the more you think you need a pill for every discomfort . +p9649 +aVppl , you are too negative in here +p9650 +aVbecause you are an idiot jpcali . +p9651 +aVthat home run by trumbo was a blast !! +p9652 +aVdang i have a sister ? dats new to me .. ur wife still wants big black miami dic . k .. lol .. and it's nothing u can do bout it .. she wants dat CUSTOM_NUMBER stick up in her .. lmao .. lol .. she goes hard . +p9653 +aVi think bush was one of the worst precisely because of his amnesty proposals in addition to custom_break other betrayals to the conservative cause . thanks to him we got obama . custom_break funny how dems consider him one of the worse when in fact he was a liberal president on domestic issues . +p9654 +aVamen to that shit . preach it !! +p9655 +aVthat too . and from chicago !! +p9656 +aVgood for her she is hugely talented , amazing voice and a very nice girl . +p9657 +aVobama does not believe in our three separate but equal branches of governent . +p9658 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > i would actually have a hard time giving up hardy by himself for upton , unless i really needed speed . < / div > < / div > +p9659 +aVif japan can , why can't we ? +p9660 +aVCUSTOM_AT i assume you are one of the immigrants that will be removed !! i am irish living in spain and if i don't work i can't live here .. simple . in england as an eu immigrant , if you can't work .. sign on ? ! no no ! this has been coming a long time good luck to damian green and this plan +p9661 +aVanother reason to vote for newt gingrich and defeat r.i.n.o. ! desperate struggle to get mitt romney elected indicates they and their comrades do more than lean left . some , wholeheartedly endorse / embrace socialism . maybe , not to the dedicated , robotic extent barack hussein obama was sworn into office with the charge - fundamental transformation ( destroy from within ) of america . he and his fellow would-be - dictators think they can trample our constitution at will . he has tried as hard as he could to fulfill pc / socialist agenda . however , god holds america and his sparrows in the palm of his hand . they need to check with fellow despots who have challenged america \u005c\u005c ' s resolve . they will be impeached ! america will never be destroyed . america \u005c\u005c ' s enemies will destroy themselves , first e.g. with all the " supposedly " well placed bombs in india , etc . to blow israeli diplomats to smithereens only managed to " injure " a couple - as opposed to israel \u005c\u005c ' s " absolute " success - if true - in blowing to smithereens any nuclear scientist ( ? ) they target ! when i hear iran bs about closing the straights , blah , blah , blah , i think of saddam hussein and his " mother of all wars " to be unleashed , if america even thought of attacking ! american marines dug his rear end out of his gopher hole ; i read somewhere that saddam \u005c\u005c ' s head popped off t his hanging when trap door was sprung ; to add insult to injury ; pour salt in open wound : petraeus set up us military compound in his mansion compound with all its gold leaf . keep the faith and the conversation going . +p9662 +aVthey should be dragged into the dugout and beaten with bats right ? +p9663 +aVit wouldn't surprise me one bit if asshole tucker carlson put this guy up to this . +p9664 +aVborn in america raised by his cubam parents your point is what ? +p9665 +aVlet me give you a view from brazil . consenting adults , within the law can have any relationship they choose . government cannot legislate morals . captain boycott , of the british military occupying ireland , with vast powers of the kingdom st his disposal , got rid of his wife of decades , to have a carnal relation ship to a very young lass , well . the community simply decided , to turn thier back when ever he appeared , close thier pubs , stores , once he pulled up . ' shunned ' thus the word ' boycott ' enter the english language . the point , if you feel that strongly , organize a society response to his films and other work , independent of it's intrinsic qualities . custom_break here in brazil , there is a culture of deflowering teens and preteen girls , by the nationals here , for foreigners they are sent to prison . custom_break this is often done by fathers and grandfathers , the patriarch of the family . said to have originated in ancient rome , the film bravehearth made reference to first night , where the lord of the area do some form of this power sex on minors in thier dominion . west virginia , comes to mind , as this power sex folklore is said to be in epidemic proportions , these daughters get deflowered in house , first , sound familia . are you going to ' boycitt ' the state of west virginia ? custom_break clearly morgan has crossed the lines , of our sensibilities , our puritan morals , and our expectation of decency , so did george w . bush , with his hurricane catrina etc . , and bill clinton with his oval office dick sucking , episode of his intern . custom_break these are / were actual presidents of these united states . do you have the right to impose your morals on consenting adults within the law ? we all have the answer to this ? what freekie things are you doing ? can you state , as i am now , none ! custom_break job +p9666 +aVpapo_swing , go to hell with that little weasel dick carlson . in other words , fuck you , your mother and every one of your inbred relatives . +p9667 +aVzooey , you are never going to be cast as power girl . stop wearing her costume knock-offs . also , the nude bra is distracting . it's like a fungus or lichen edging toward her trachea . worrisome . +p9668 +aVhey deniro go fok yourself u wop . +p9669 +aVyou really are nothing but an animal , aren't you ? custom_break custom_break have a nice day , i sincerely hope you manage to get some help for your anger issues . custom_break custom_break you are obviously deeply disturbed and you have my sympathy . +p9670 +aVignorant , ignorant , ignorant .. piece of crap - so is his mother - how dare you defend / blame this behavior !! shame on you and the devil you spawned .. +p9671 +aVwow , you really are a fooi . +p9672 +aVyou like whore . +p9673 +aVCUSTOM_AT i played and beat the game twice now . i am not saying he gave it this review and score because of crude humor . if fact i am not complaining at all . all i said was that as unpolished as no more heroes was people still didn't care and rated it high anyways . lollipop chainsaw has the same problems that no more heroes had . the only thing i can add was what kevin already said . too many qte and it was shorter than no more heroes . +p9674 +aVdice is going to be the cod , mw killer without a doubt . +p9675 +aV* haha tranny ?? * custom_break come harder next time cuz you mad lame !! custom_break fuck outta here with you're ugly ass !! +p9676 +aVu haters will ana-l - y rape yourself if heat wins tonight +p9677 +aVsorry your dad didn't make parole . +p9678 +aVcome on gets some pitches from him need that philly pen +p9679 +aVidiotic . beyond idiotic , actually . you must like being a loser . +p9680 +aVyet you reply , lol +p9681 +aVp.s. the whole point of my statement about cigarettes and beer and other want vs . need items will make a lot more sense to you if you sit down and do the math . custom_break custom_break people smoke , drink , eat , and drive double the price of that bag in a lifetime and that's okay with you because it's " self-satisfaction " ?? so it's ok for some to spend the money if it gives them satisfaction ? custom_break custom_break think very hard about your statement as it is this country's absolute obsession with " self-satisfaction " that is the problem . +p9682 +aVwhat the fuck was fish doing +p9683 +aVwhat's going on with brown is systemic in the right wing fascist party . they don't tell the truth and about half our citizenry are too fucking stupid to check them out . they'll swallow whatever they spew and never question it . +p9684 +aVyou sir are a complete idiot +p9685 +aVgod , definitely top CUSTOM_NUMBER albums of all time for me . i fucking love this album . custom_break custom_break for me , the beauty of this album is how weird the songs are and how traditional the song structures were . i like this more then his more experimental later albums . +p9686 +aVdon't be so bitter . i'm sure it was purely a coincidence that god created booze immediately prior to creating detroiters and the duck billed platypus . +p9687 +aV< { :-) now you're just teasing me . +p9688 +aVdont laugh your not far off on your thoughts of obama +p9689 +aVany arrests in the terror attack at the travel agency ? custom_break custom_break ruby , where were you on the night in question ? +p9690 +aVyou shut your filthy mouth talking about las premier team like that . custom_break +p9691 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > you guys probably shouldn't be informing this child about how awesome you think beer is . & nbsp ; he can discover it on his own when he is legally able to do so . & nbsp ; < / div > < / div > +p9692 +aVtman CUSTOM_NUMBER : custom_break your argument about the team , the defense in particular , winning the games was a better path to follow . +p9693 +aVyou're an idiot . we should be sued for all the shit we've done in the mideast . if we're not bombing , droning , starting wars , we're fucking funding them . +p9694 +aVyou , sir , are an idiot +p9695 +aVi would be more than happy to have CUSTOM_NUMBER mp option which would at least allow CUSTOM_NUMBER x oversampling and also bigger mp but not as big ( kinda win win for everyone if i were to decide as nokia ;) ) +p9696 +aVsoriano is going to have to ice those knees after today . he did some jogging today . +p9697 +aVleecherius collapse custom_break the higher you rise , the more isolated you become .. == one liner bs .. +p9698 +aVno , you are not the voice of alot of people . +p9699 +aVanyone who has followed this issue , from the beginning ( prior to CUSTOM_NUMBER ) knows that anyone stupid enough to believe birtherism is a racist bigot who isn't to be taken seriously . +p9700 +aVyour still a commie basturd , and i hope you get stuffed in a commie oven . +p9701 +aVi'd include wars as shit on my face . +p9702 +aVthereisnoreason to pat l CUSTOM_NUMBER c on the back , she's as dumb as you are . +p9703 +aVlol apple is shit anyway +p9704 +aVreally - what planet are you on ? +p9705 +aVwho said anything about njs popularity ? +p9706 +aVfuck em all +p9707 +aVgreat idea ! who the hell empowered free speech or believe it serves any real purpose ? custom_break consider the fact our president and governors , their cabinet czars , our members of congress and state legislatures have exempted themselves from accountability for what they do and set their own rules ! custom_break we vote for such royalty so obviously we love what we have ! custom_break stop complaining for what you voted for ! custom_break get on our knees , kiss ass , and praise the lords we elect ! +p9708 +aVso you dumbphuck retard sh ! te kunthead , son of your phucking whore momma knows everything huh ?? you dumb phuckface ?? +p9709 +aVmary , custom_break custom_break custom_break custom_break i appreciate your manners and encouraging your classmates to follow . custom_break custom_break custom_break custom_break i also think it \u005c\u005c ' s important for professors to realize that students often have back-to - back classes . i certainly know what it \u005c\u005c ' s like to " get on a roll " and want to finish whatever i \u005c\u005c ' m lecturing about . however , i \u005c\u005c ' m also unforgiving when students are late to my classes . when i wrote about things professors do that irritate students ( CUSTOM_URL keeping students late was one of the main things students mentioned . quite simply , one professor \u005c\u005c ' s self importance often leads to students being penalized in other classes . i would hope that , when i go over in class , a student would respectfully make me aware of the time . custom_break custom_break custom_break custom_break thanks for your perspective ! custom_break custom_break custom_break custom_break kenna +p9710 +aVlooks like obama is going to get the us another credit downgrade for borrowing and spending and failing to come up with a credible plan for tackling the debt . custom_break custom_break credible is the operative word . obama can blow smoke up the publics skirt all he want to but the s & p and other credit agencies are not going to be fooled in the least . they've already warned of another downgrade and why ? because they don't see any real progress being made on obama's part to intellegently and pragmatically address the issue in a published plan . and , the reason they haven't is because the president has no interest in cutting spending as long as he can borrow from china , et . al . custom_break custom_break the only way out of this mess is with private business growth and if anything can be said of the last CUSTOM_NUMBER . CUSTOM_NUMBER years it's that if obama is really really good at anything it's squashing growth . so , either we choose austerity and growth this election or we reelect obama and face it in bankruptcy . custom_break custom_break what's going to happen to defense and social security and medicare and medicaid and all the social nets when obama can't borrow the money to pay for them ? that's what this election is about and that is the only question that needs an honest answer . +p9711 +aVhey kraut piss off and go to bed .. you are getting old and boring +p9712 +aV.. yeah co mmj patient is a fuck-tard , one of the CUSTOM_NUMBER shops my ass .. +p9713 +aVwhat he's really saying ' between the words ' is the democrats are very close to losing the jewish vote in addition to losing the catholic vote in CUSTOM_NUMBER . jews are , in a way , obama's last hope for guaranteed votes . barry has already lost the moderate catholics . liberal , gay , secularized jews & catholics aren't a big enough demographic to carry obama . +p9714 +aVi say both teams have a CUSTOM_NUMBER / CUSTOM_NUMBER shot of winning this game custom_break hehe +p9715 +aVgreat form of travel -- apart from going through tunnels +p9716 +aVCUSTOM_NUMBER f and that dress .. she sweat her ass off +p9717 +aVactually just got told to get to my bed . fuck off jackie ya old cow . +p9718 +aVwow joe now there's an intelligent counter point . congrats . +p9719 +aVyou conceited little invertebrate . hopefully you pass on that decrepit arrogance to the children you won't have , you bag of maggot scum . +p9720 +aVthe hospital has confirmed that he had a seizure . no alcohol or drugs involved . now i suppose by your thinking , the hospital is lying , afterall they are all communists or nazis . you sound like a fool . +p9721 +aVsounds like you're insecure about something . +p9722 +aVthis is horrible . man's inhumanity to man knows no bounds . +p9723 +aVand who just responded to me custom_break bwhahahahahahahaha custom_break you are way way funny custom_break custom_break what are you going to say next something like custom_break you you you mud head you ? custom_break something like that oh smart person . +p9724 +aVyes i am .. so why not join us and have even more posting .. +p9725 +aVyou lefty loons are so dumb , you don't realize just how dumb you are . you idiots must have taken gibberish CUSTOM_NUMBER in kindergarten , and you all passed with flying colors ! +p9726 +aVjust too freakin ' funny .. you are so stupid .. talk about gullible .. +p9727 +aVhere's an idea .. why don't we get the h ell out of their country . +p9728 +aVwelcome back you old lush ! +p9729 +aVif you're going to criticize the man at least spell the name right , damn ! +p9730 +aVso you are saying CUSTOM_NUMBER $ is not expensive ? rich boy logic .. +p9731 +aVyou get the ridicule because you're a fuk'n pos pr CUSTOM_NUMBER ck custom_break custom_break custom_break little troll +p9732 +aVi don't mind the home runs , especially with guys on base .. but it is nice to see them score by other means too . that was textbook . +p9733 +aVobama and his cronies would \u005c\u005c ' t know the truth if it jumped up and bit them in the ass . you will only get their version and not the actual truth . but , of course , we can twist and turn anything they say about anyone else who does not agree with them and you are supposed to believe , and unfortunately , most of his followers do believe it to be true . i think the saying goes , " believe none of what you see and only half of what you hear " . believe you me , seeing is not believing . !! +p9734 +aV.. or not nigga ! put that shit away . take your ass home and flush that shit . +p9735 +aVworry about your current opponent .. +p9736 +aVso the bill bans using aborted fetuses in food ? custom_break custom_break what about miscarried fetuses ? i mean , if god kills it , then it is o.k. , right ? +p9737 +aVyou rock my world alice . +p9738 +aVfunny that you are defending a murderer - d ** kless idiot defending a d ** kless idiot . +p9739 +aVsick car . it'd be tight to live in though , no room . and gas would be hard to get a hold of probably in a post-apocalyptic world . +p9740 +aVgawd you're f * cking pathetic , how sick is your life to be so hateful ? +p9741 +aVsoo .. having a man ( i'm assuming ) sucking your dick is doing you a favour ? really ? to each their own i guess . +p9742 +aVonly CUSTOM_NUMBER earned run charged to weaver , the other CUSTOM_NUMBER were unearned due to errors +p9743 +aVwelcome to socialist serfland . hope you enjoy your stay . +p9744 +aVhow did the nonsense technicals play any part in this game ? exactly it didn't . you just wanna make excuses for the old and slow big CUSTOM_NUMBER three +p9745 +aVstick tha dick back in ya mouth make like its haloween custom_break and bob for apples . dumb bitches like you dont deserve to talk +p9746 +aVCUSTOM_NUMBER pints for a tenner , a pub near me charges \u005c\u005c xa CUSTOM_NUMBER . CUSTOM_NUMBER a pint so that should be \u005c\u005c xa CUSTOM_NUMBER . CUSTOM_NUMBER after the budget , sick +p9747 +aVmaybe you are the braindead moron , religious bigot . +p9748 +aVthe pills are your little technicolor friends . they stop the voices in your head . +p9749 +aVwatch it romney , you are starting to act like ole-buma , marco rubio is not eligible for the vp spot , he does not meet the birth requirement of our constitution .. you had better clarify your statement or you will lose votes . cheers semper fi +p9750 +aVdude dont troll .. leave them alone +p9751 +aVwhats your bankroll look like +p9752 +aVdon't keep nag waiting . it's hard on his knees . ' twisted ' . tonight . bromance . +p9753 +aVgay faggot nerd fuckers custom_break custom_break trolololololololololololololloloololololollolllolololololololol +p9754 +aVi think you're making a fairly common mistake in assuming anyone who doesn't vote conservative is " progressive " . most of the labour heartland up here in the north is deeply conservative in attitudes towards benefits , immigration , europe and many other things , but the tory party are badly damaged goods here . labour just put the frighteners on the voters by saying " vote for us or the tories get in again " . custom_break if the tory party implodes and is no longer there to be used as a threat , labour will not last much longer . +p9755 +aVCUSTOM_AT CUSTOM_AT again , are you against abortions in the case of rape and incest ? in the case of the mother's health ? in the case of the fetus not being viable ? if not , how many of those CUSTOM_NUMBER , CUSTOM_NUMBER were those sort of cases ? +p9756 +aVthis is pretty , but i like your other necklace better . +p9757 +aVyour ego makes you less qualified . +p9758 +aVmost common things miami heat " fans " say : custom_break custom_break CUSTOM_NUMBER ) lebron is the goat custom_break CUSTOM_NUMBER ) you are just a hater custom_break CUSTOM_NUMBER ) you mad bro ? +p9759 +aVwhy should putin deal ? he just murders those of differing opinion . it's good to be the president . +p9760 +aVthey'll be throwing each other in the bin , but that works , too . +p9761 +aVlove you jac as always -- you are true to yourself . good for you for saying no to the tabloids . +p9762 +aVlets see them . lol he is a moron +p9763 +aVdamn . r . ip . lilphat . streets gon miss u . webbie keep yo head up . got u wen i drop a new sng . niggas drroppn like flies in my city can't be caught slippn outcha +p9764 +aVdamn !! you are quite the hottie !! +p9765 +aVthose taxpayers you scorn pay your wage and ridiculous benefits , moron . you make me sick and are beneath contempt . you're the product of a legalized monopoly negotiated by people trying to buy influence with unlimited supplies of taxpayer money . screw off , parasite . +p9766 +aVdefinitely the number of questions asked drives engagement , it is not easy to have what appears to be direct access to one of the world \u005c\u005c ' s most famous newspapers . plus they ask questions that are extremely relevant to the moment . and some of their content is behind a pay wall so this feels like " free access +p9767 +aVthe greatest generation that won world war ii and saved our nation and the world from hitler are the old white men and women . +p9768 +aVthe law is against federal law . it's basically an illegal law ! then again , the crony conservatives here are well known as everyday average crooks anyways . the sheeple voters are used to this sort of thing .. +p9769 +aVwoman from my avatar should be on number CUSTOM_NUMBER :p +p9770 +aVwrent that when stokes eys da was aressted when his pub was raided and the rira was in there +p9771 +aVi think its called the likeometer +p9772 +aVCUSTOM_URL love this chick's voice +p9773 +aVrape , defication , urination , squatting on private property .. all crimes against society .. +p9774 +aVhow much trouble would i get into if i just walked up to someone and punched them in the face ? ( i'm looking at you izzy gutierrez ) +p9775 +aVand your point is that the heterosexuals have brought in a peaceful , loving and beautiful world ? read the news . heterosexuals have brought the world to the brink of destruction . custom_break custom_break your logic is off . what is there to " consider , or think deeply on " when a homosexual is born this way . when did you think and consider deeply about becoming a heterosexual ( if you are ) and then stand on the mountaintop to tell the rest of us how it's done ? custom_break to drill into gays and lesbians that they are sick and perverted and shame them to death is a one way ticket to a muslim country with sharia law . you can pack your bags and go anytime . custom_break custom_break get used the new world . it's not going away .. unless the heterosexuals destroy it sooner than later . +p9776 +aVlsempa , she is not , its called ceap popularity . if she was in she would be just like m CUSTOM_NUMBER and the others +p9777 +aVsure u are the baddest nigger +p9778 +aVfat lip monkeys get shot ?? and how r u smarter then blacks because u have a rice dick and suck noddles all day dont make u smart +p9779 +aVthe gop just can \u005c\u005c ' t help themselves . the only way i see them having their nominee elected is focus on the economy . i think it \u005c\u005c ' s doing better , and stats show it is but that \u005c\u005c ' s the underbelly of obama . instead , the gop is focused on a " pure " candidate and bringing issues such as contraception into the discussion is a dead bang loser for the gop , but by all means continue to tell women you know best . +p9780 +aVamir bhai you are really doing the great job , a job , a duty , a humanity of every good citizen of your beloved india . may almighty allah bless you and your loving ones . keep it up .. +p9781 +aVclose your mouth chimp +p9782 +aVyes holder , you have a right to be there no matter how much of a crook you are , not to mention the racism you inject everytime you speak ! after all .. gaybryan like you ! +p9783 +aVhaney you suck as a painter .. keep your day job .. wait you suck at that too +p9784 +aVgay faggot nerd fuckers custom_break custom_break trolololololololololololololloloololololollolllolololololololol +p9785 +aVit's called living below your means adhoc .. it's entirely possible if they both worked CUSTOM_NUMBER years to accumulate CUSTOM_NUMBER million and probable , as teachers they probably have a good level of sensability . plus teachers could mean college professor .. who make quite a bit at many universities . +p9786 +aVor the alternate address - their corporate headquarters : custom_break custom_break custom_break custom_break \u005c\u005c xef \u005c\u005c xbb \u005c\u005c xbf \u005c\u005c xef \u005c\u005c xbb \u005c\u005c xbf \u005c\u005c xef \u005c\u005c xbb \u005c\u005c xbf CUSTOM_NUMBER lbj freeway , suite CUSTOM_NUMBER custom_break custom_break dallas tx CUSTOM_NUMBER +p9787 +aVnot all of us are .. only some , dead and alive . when your leader is a loser , then everyone is lost ! +p9788 +aVum , little fugitive traitor ? your holes are showing . +p9789 +aVCUSTOM_AT custom_break custom_break i wish you had called in and dropped this knowledge bomb on them ! they wouldn't have known what to do with themselves . +p9790 +aVi understand your comments and concerns about national safety and secrets , but you can certainly bet that whatever that is , our enemies undoubtedly already know more about it than we probably ever will . national secrets ? not !! +p9791 +aVto be or not to be : that is the question ! +p9792 +aVno your not dickhead . custom_break i won this fight ! +p9793 +aVand your an idiot . +p9794 +aVcyber-bully is it now , as well as moron , idiot , freak .. and the rest . custom_break you know you have met your match on this topis , so just go quietly will you . custom_break custom_break perhaps i will not spot your next posting , and you will get away with it . bur perhaps not , and i will have the pleasure of refuting you again , who knows ? +p9795 +aVyou mean something like the romney bus beeping outside of obama speech ? +p9796 +aVyou flatter him needlessly . +p9797 +aVthe article really doesn't say much . israel has an increasing number of illegal aliens to deal with . got it . custom_break custom_break appears that author ghitis just felt compelled by her congenital left wing bias to write something that almost sounds negative about israel as propaganda intended to morally normalize what moslems are doing every day in places like syria . +p9798 +aVthey #4 sec would dominate CUSTOM_NUMBER % of other conference champs +p9799 +aVnazi_inc , custom_break my people didnt forgot salazar era and there are still many people who remembers it . custom_break custom_break too stupid for common sense , sad little nazi ? :d custom_break custom_break you will never ignore me , because your clownish hatred and clownish comments are always exposed by me . +p9800 +aVyou are soo inteligent white girl . tell us black people more about ourselves . im sure u know more about us then we do +p9801 +aVyou fail miserably in thwarting logic . ever hear of the " rule of law " in your obviously pathetic educational backround ? idiots like you make blogs fun to laugh at , but you have no place in society as anything other than a clown . how many commendations from congress or presidential administrations ? zero . who are you and what significance are you to our world ? i think zero sums it up . a big fat waste of resources on an obviously flawed specimen of the human race . +p9802 +aVyou are clearly stupid , that is what he meant you thumb . +p9803 +aVCUSTOM_AT needs to give me a fucking like bah ! i know ! i've been doing editing work at night , so it's been tough to do other stuff . +p9804 +aVproof positive that you are idi CUSTOM_NUMBER t +p9805 +aVif you love the argentines so much waters .. why dont you pack up that turd of a son of yours and piss off to live there with your new mates .. lets see what the argentinians do when they find that little cretin son of oyur hanging off one of their memorials +p9806 +aVpatt i put pagan second because you have speed on the bases with your first CUSTOM_NUMBER hitters +p9807 +aVthey're all taking orders from the globalist bankers because they are all bought and paid for . but you've obviously been very well programmed to be a seriously nasty opponent of all things american .. you're an idiot plain and simple . +p9808 +aVnope . just want to see the blonde's set . thx ahead of time . +p9809 +aVi like all your pins , haha :) +p9810 +aVthat d custom_break be custom_break great custom_break custom_break except for , you shouldn't use the word " we " custom_break you re a pat het ic loser , living from oa y che que to pay che que custom_break custom_break haiti custom_break doesn't custom_break need custom_break you custom_break custom_break i doubt you can even help yourself . custom_break custom_break thank you +p9811 +aVhey , hey guys ! so , does anyone here know what nabari no ou is ? it's a manga / anime , and i'm just curious if anyone knows it or likes it . anyone ? xd +p9812 +aVignorant dumbasses actually think its an angel . its just a fucking guy walking . custom_break just because hes wearing a white vail that makes him look like holy and christ like . doesnt mean its an angel . custom_break ffs people . +p9813 +aVanother big tale coming from someone that has no ideal what in hell he is talking about . +p9814 +aVp.s. and drop that loser suzy . you are a loser and a trouble maker . exit stage left , and go get a job . it is a rap !! +p9815 +aVa simple , history based warning for the liberals out there . if you will custom_break take a little time to review history , real history , not the revised custom_break versions that are , and have become so very popular today , you will find custom_break that gays have been persecuted worldwide ever since the fall of rome . custom_break custom_break the radical elements , socialists , marxists , and communists encourage the gay movement to indirectly help them become more powerful . once in control , things will change very dramatically as history clearly shows . what happened to gays in germany , china . and russia ? what is happening right now to gays in the aftermath of the arab spring . the so called hate gays say they get from the right will one day seem like a little teasing compared to what waits for them if this republic does not survive . we the people are ( all of us ) on a very dangerous path . the current administration must be defeated at all cost in november . our very liberty requires nothing less ! +p9816 +aVwhen did i ever say you're not supposed to like other wrestlers ? you can like whoever the fuck you want , i'll just make fun of you a few times about it . and besides you're criteria for people you like is simple too " root for guys who are hardly featured and hate everyone that everyone likes " lol and i don't even like punk so why would i care that other people should ? custom_break custom_break game set and match . +p9817 +aVmore jurk off material for apple fan boys . those not living in mom's basement could care less +p9818 +aVname calling , one of the many techniques used by the disinformationalist who has no viable , logical , well reasoned comment . +p9819 +aVcould be a nice little gift for my husband for valentine's day - not long now . +p9820 +aVwhoever down-voted your analogy are f ** ing idiots . well spoken sir . +p9821 +aVthey knew he was old and could do nothing , bully boy tactics +p9822 +aVi'm the reason why people watch wwe people power . +p9823 +aVpenn is just a publicity whore . after hurricane katrina hit new orleans , he turned up with a boat to go and rescue people that hadn \u005c\u005c ' t evacuated . he also had a full film crew in the boat with him . one of the real first responders was heard to ask " where are the people you rescue going to sit ? +p9824 +aVobviously you are a deeply sad , twisted and debauched indivudal whom if i were to meet i would take great pleasure in tearing the face clean off . custom_break custom_break why don't you top yourself and o the world a favour , no doubt after you've had one final masturbation anout jon venables you little maggot +p9825 +aVman tht tgirl is getting that big phat azz run threw .. i ain't gohn lie i'd bust that big ass too .. i done some trannys before and its fucking hot .. +p9826 +aVlindsey headed for another train wreck ?? +p9827 +aVlooks like the dipshat left the building . what a joke . go back to where you came from bob the slob . +p9828 +aVfuck the kid , lets get the narrator from bastion . also , he narrates the movie . +p9829 +aVcraig and jay both come off the dl friday . we'll start playing better .. +p9830 +aVare you kidding me ! jail ! way out of line ! +p9831 +aVand bolin's all like " fuck you mako , i'll break up you and asami ! +p9832 +aVhi CUSTOM_AT jones / black eiffel . i am perfectly fine . i miss you ! thank goodness i have your blog to read , so i can at least admire you from afar . i hope all is well with you and your beautiful family . +p9833 +aVgood outing from buch . he has looked better lately . +p9834 +aVdeserving winner ! wonderful submission , and wonderful shelter ! god bless the bullys ! +p9835 +aVy vos ya te hacias cantandole como pedro infante .. +p9836 +aVi strongly recommend you end whatever is going on . he's upsetting you and is holding you back from finding someone potentially great . he is an ex and you don't owe him any of your time . good luck . +p9837 +aVa sony troll ?? that's something new . how are you dude ? +p9838 +aVplease , spell my fucking name right .. +p9839 +aVmorteza hosseini , you're an idiot . +p9840 +aVlet me guess a spinoff with the kid named " just some guy " , which would be a dramatic series about how much charlie sheen , duckie and ashton fucked up his life because he had to do naked photo shoots with them ? +p9841 +aVgo eat some ships and shut the fuck up .. you are nothing but a stupid +p9842 +aVis your guys is having u stand by +p9843 +aVjust a puzzled query ( or perhaps i'm just ' stirring the pot ' ) - given that the swirling membership is so knowing about oils , essences , creams and such .. what out there is going to be good for your rainbeaus ? custom_break do you really expect him to stay looking youthful and sexy forever , without a little help ? - because you can be sure he won't do it for himself , lacking the background . custom_break aside from hormone replacement testosterone cream ( CUSTOM_NUMBER ml applied to skin daily ) , what is your wm ( or asian m ) gonna need .. that doesn't leave him greased-up - and-shiny or smelling like fru-fru , piss-ante , faggoty-ass stuff . custom_break think about it , folks . +p9844 +aVi've only been a fan since the " a " line , elias , arrnott and sykora . +p9845 +aVCUSTOM_AT CUSTOM_AT not when it comes to injury history +p9846 +aVCUSTOM_AT = i told you so interesting selection of schools to say the least . +p9847 +aVthe reason most people are gay is because they are to ugly or stupid to find a mate of the opposite sex . fundmentals of science , the preservation of the species does not lend its self well to qweers and lezzies . you are obomination before nature , to bad your parents were not gay . +p9848 +aVthis is the very reason we here in nj need to vote out anyone supporting this bill . liberals love to use this issue against conservatives and yet they voted it down in ca . they use it politically but dislike it personally . liberals are worse than the scum they suck up to . thank goodness for christie . +p9849 +aVcover yout tits and their is no issue skank . +p9850 +aVCUSTOM_NUMBER million americans are on food stamps , jobs are flying overseas at breakneck pace , we keep shooting ourselves in the foot as far as energy independence , john corzine walks about free as americans who speak against the government are persons of interest to homeland security , millions of undocumented people pour over the border , and the official policy is not to prosecute them unless they kill americans or interfere with the cia's hegemony over drug profits , ( yet granny is forced to take off her diaper , and humiliating scrutiny so that she can be with family to die with dignity ( too late )) , congress reaps the profits of insider trading while the system is gamed for the banking and corporations so they can offshore their booty tax free , yet our leaders are behaving like grade school children , sticking their tongues out at one another . and we wonder why america is drowning in debt and beholden to foreign banking interests ? we have the audacity to lecture greece , yet our debt makes their liabilities look like penny candy . keep voting for children people , don't blame dc ; look in that mirror . +p9851 +aVnice live style custom_break custom_break CUSTOM_URL custom_break custom_break ok custom_break custom_break +p9852 +aVthat thing looks like sloth from the goonies . should have scrapped it and made a new one . and dear chrisitans , your god did that to him . so fuck him and fuck you . +p9853 +aVj.b. , thinking of you today , and hoping you will be content in your new home , never think your sacrifice goes unnoticed , or forgotten , proud of you , dotty griffith .. +p9854 +aVCUSTOM_AT CUSTOM_AT you and her would have the greatest reality tv show of all time . i would watch you verbally abuse her all day and night . +p9855 +aVthey aren't too thrilled about a guy who might get indicted for fraud and impeached if this congress turns around and becomes a little less fascist . +p9856 +aVwho fuck drew dat ? custom_break oh wait haha +p9857 +aVyou can't see it because you're a clueless idiot . show me how he is helping the middle class you stupid obama semen slurper +p9858 +aVlebron and wade doing work on the court custom_break custom_break chris bosh sitting on the bench . " forever alone +p9859 +aVformer msnbc host keith olbermann doubled his audience overnight when , in CUSTOM_NUMBER , he delivered a series of pathological attacks on president bush . in CUSTOM_NUMBER , the former sportscaster struck perhaps a personal best : \u005c u CUSTOM_NUMBER cyou \u005c u CUSTOM_NUMBER re a fascist ! get them to print you a t-shirt with \u005c u CUSTOM_NUMBER fascist \u005c u CUSTOM_NUMBER on it ! .. you , sir , have no place in a government of the people , by the people , for the people . the lot of you are the symbolic descendants of the despotic middle managers of some banana republic to whom \u005c u CUSTOM_NUMBER freedom \u005c u CUSTOM_NUMBER is an ironic brand name , a word you reach for when you want to get away with its opposite . \u005c u CUSTOM_NUMBER d +p9860 +aVpoor liberty rose . i have watched her battle via her facebook group and the entire family are so brave ! it was so wonderful when her tumour disappeared ! custom_break custom_break custom_break custom_break the teacher is disgusting , why would you make any CUSTOM_NUMBER year old clear up after an accident let alone a child who is disabled following a cancer battle !! shame on the teacher and on the school come to that ! custom_break custom_break custom_break custom_break well done dawn & carl , keep fighting for your beautiful daughter ! +p9861 +aVnever ratified ? custom_break custom_break get the fuck out of here and go back to your silo . +p9862 +aVi am ashamed to have ever supported this piece of crap . at one time he seemed to have good actions for this state and this country but it all went down hill with the anger he held inside . if something doesnt change soon we will see alot of this type of death because this country will go to war over the claim of this land . many will die and it wont be pretty but this country will be back in the hands of real americans . obumbles must go and i blame him for this . +p9863 +aVCUSTOM_AT CUSTOM_AT the very last thing i said was that you sound like an idiot because you just like mcshay don't do research . the fact that you said that this is your main source of gaming news just proves your an idiot . stop being tough on the internet +p9864 +aVpapism " ? how about " popery " ? aren't you late for your klavern meeting ? sheets washed and starched ? eyelits cut in the white hood ? +p9865 +aVme-hole - hahahaha - fuc & * ng class +p9866 +aVand i \u005c\u005c ' m reading now that his apology was a sarah palinesque apology no less : claiming that his detractors have found their " gotcha " moment by quoting this idiot verbatim .. smh +p9867 +aVthe day when the sharia or the book of leviticus becomes law you will be right . for now we have laws made by man and these state that being gay is legal . don't like it ? move to iran . they say over there that there are no gays there , . +p9868 +aVno ass kicker , yours !! +p9869 +aVdon't let the door hit you on the way out and i hope your ronald reagan blow-ups dolls to well in nepal . +p9870 +aVthis website should have been named ww.haterscentral.com because this website is full of people like you . +p9871 +aVwait !! they already are you little toad !! they're yours ! the rapists , the murderers the tax cheats , you name it ! they're already yours ! +p9872 +aVwhat's he going to say ? " nope sorry . next question . " . then they would of criticized him for not answering a simple question . its lose-lose for him . +p9873 +aVmane she stupid as fuck thinking everybody pose be nice to her fat out of shape ass they go hard at beyonce why would people not diss her fat ass +p9874 +aVaccording to the on-the - scene french newsman , happened to be moving through the crowd . that's all it takes . +p9875 +aVcustom_break custom_break i know this is a bit custom_break off-topic but it seems a little slow around here and i was wondering if anyone custom_break had read any of this stuff about santorum \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s wife . i \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER m not positive that it \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER s custom_break true yet but i haven \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t been able to prove it isn \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER t so do your own research \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c xa CUSTOM_NUMBER .. custom_break custom_break custom_break mail online : custom_break custom_break custom_break revealed : wife of pro-life presidential candidate rick santorum had custom_break love affair with abortion doctor CUSTOM_NUMBER years her senior .. who delivered her as custom_break baby custom_break custom_break custom_break custom_break custom_break custom_break the wife of fiercely custom_break pro-life presidential hopeful rick santorum had a six-year love affair with an custom_break abortion doctor , CUSTOM_NUMBER years her senior - who , incredibly , delivered her as a baby custom_break - it has emerged . karen santorum , CUSTOM_NUMBER , who , like her husband , opposes abortion custom_break even in cases of rape and doesn't believe in using birth control , lived with custom_break pittsburgh abortion pioneer dr thomas e . allen for most of her CUSTOM_NUMBER s in the CUSTOM_NUMBER s . custom_break custom_break custom_break +p9876 +aVand nobody partially gives a fuck about you or your garbage state +p9877 +aVand what are you going to do tough guy ? +p9878 +aVyou do realize , big CUSTOM_NUMBER , sec , b CUSTOM_NUMBER g or pac teams would have to lose CUSTOM_NUMBER - CUSTOM_NUMBER games for an acc team to make the ncg , right ? +p9879 +aVtake your meds +p9880 +aVmy favorite part was show killing vince with a shot of air . +p9881 +aVso in your perverted mind if someone posts something about obama that is " discredited " it is ok for you to post the unmitigated bullshit that you do ? custom_break custom_break whhaa ha ha ha +p9882 +aVto be fair to troyzan , he didn't start alienating people until it was CUSTOM_NUMBER % clear that he was going home the next time he didn't have immunity . that's when he started acting like a dick , doing the whole " this is my island ! " shit when he won , etc . before that , he was working the social game just fine . +p9883 +aVpresident romney !! , it has a nice ring to it !! +p9884 +aVyou are an idiot and doubt very seriously you have any proof to back such a ridiculous statement +p9885 +aVCUSTOM_AT which one there's CUSTOM_NUMBER ? custom_break custom_break +p9886 +aVcampy is sorta similar to compy , which brings us to compsognathus , a scavenger . why , i think i've gained an insight into the mind of glenn beck along the way , in addition to getting a better handle on our good troll campy . +p9887 +aVCUSTOM_AT thanks man . +p9888 +aVhispanics are a bunch of hot-blooded people . loud , drunk , murderous , and always in h e a t !! +p9889 +aVyou really are nothing but an animal , aren't you ? custom_break custom_break have a nice day , i sincerely hope you manage to get some help for your anger issues . custom_break custom_break you are obviously deeply disturbed and you have my sympathy . +p9890 +aVi was just pointing out a fact as to why most sec fanbases are borderline crazy . it's all they have . if that made you upset , get fu < v > cked you whiny little b < v > itch +p9891 +aVlet's prove your theory by having you chewed for a few seconds and see where you stand . hopefully your jugular won't be touched . +p9892 +aVyou are really a great woman and mother . god will continue to bless you and your family . +p9893 +aVadditional thoughts based on other people's info : custom_break custom_break CUSTOM_NUMBER . i kind of agree with the being a smackdown star thought though eventually i think bryan should have a legit shot at the title . maybe just blatantly move him to raw , so he can . and please don't mention tensai . the guy is not ready to challenge punk for the title and hopefully never will be , custom_break custom_break CUSTOM_NUMBER . ew , big show ? even when i used to despise show for his booking , i would never say ew . seriously , who says that ? custom_break custom_break CUSTOM_NUMBER . none of you guys really pointed out the fact that this is only falling in line for jericho . he won't come back immediately . he is touring with fozzy now and will be gone a lot of the summer . the only one who is hurt is orton who we get to right afterwards . custom_break custom_break CUSTOM_NUMBER . wait , why are we talking about two newcomers getting their very first ppv match against the face of smackdown ? sandow and cesaro are not at a point that they should be wrestling against orton . miz would be a good choice if he weren't falling so far and so fast lately . i stand by ziggler or judas ' idea of having orton be the special guest referee . custom_break custom_break CUSTOM_NUMBER . raw had at least the punk / bryan segment . also , when you say there is no tag team division , you seem to miss the fact that the division is in full rebuild right now . everyone from the usos to darren young and titus o'neil to hawkins and reks to the aw stable is stepping up and finding a place . in fact , the least fluid team right now might be the champions who still don't feel like a real tag team or a serious threat . as far as smackdown vs . impact , i agreed with the guys on impact , but you guys are sometimes underscoring smackdown which was very solid story-wise and especially wrestling-wise . custom_break custom_break CUSTOM_NUMBER . yeah , obvious the tna move was positive while the raw move is polarizing . custom_break custom_break CUSTOM_NUMBER . wow , a lot of hogan lovers . " he made the show better . " " best mic work of his career . " what ? hogan was great on the mic in the CUSTOM_NUMBER s and CUSTOM_NUMBER s . he has not improved . he has lost his wits and charisma for the most part . laurinaitis plays his role to perfection , and he brought about the great extreme rules ppv . he is a long term storyline , taking over the company one step at a time . hogan has not improved programming . the creative team has just come up with a couple good ideas since hogan arrived . sorry , but at least laurinaitis doesn't have an easy replacement . custom_break custom_break CUSTOM_NUMBER . btw , sean , you aren't ahead of me anymore . i went for a perfect CUSTOM_NUMBER at over the limit putting me in clear first . second , i see some of your points , and shelley could work . i just think morgan has to be the choice now . it could end up being wrong , but shelley is a much less safe and much more long term choice . custom_break custom_break CUSTOM_NUMBER . i stick by what i said . sting shouldn't be wrestling any more . he doesn't have the skill or the presence he once had . he is just a symbol being hopelessly dragged around by tna desperately . custom_break custom_break CUSTOM_NUMBER . wait , so no angle then ? then it will probably be sting . if not , people need to realize that roode has feuded with hardy already . he has feuded with styles already . basically , that means it is someone fresh like austin aries or samoa joe . or it's anderson who has been built to it . so i guess i'll say i hope it's anderson over sting , but it will probably be sting . +p9894 +aVno you f u c k head !! +p9895 +aVyou are really stupid +p9896 +aVlet adults make their own decisions , just as long as they are not directly hurting or endangering others . " custom_break custom_break your words . nothing was put in your mouth other than the crap that came out of it . custom_break custom_break " i'm not sure any rider is expecting society to pick up the tab " custom_break custom_break that's the point . they don't bother to even consider that their choices have significant impacts on others . those who demand complete freedom are completely selfish . custom_break custom_break and , for those who are also as blind as you , rather than " jumping on the first comment you saw " , i posted CUSTOM_NUMBER previous comments , often undermining either the facts or the logic of other libertine fools like yourself . +p9897 +aVhahaha wtf ? " jesus christ " you retard , don't embarrass yourself on the internet . +p9898 +aVposted farther down in a response .. felt it was germane to what we are discussing a great deal of today : custom_break " the prince of this world " ( john CUSTOM_NUMBER : CUSTOM_NUMBER ) is a master of false systems . he crafts entire schools of thought that can suck us in and destroy us .. he \u005c\u005c ' s behind false religions , false philosophies , false doctrine , false morality , and every system of that that cannot lead anyone to god . he has infiltrated governments , economies , educational institutions , and anything that has influence in this world . the conclusion john came to is sobering . " the whole world lies in the power of the evil one " ( john CUSTOM_NUMBER : CUSTOM_NUMBER ) . \u005c\u005c ' the invisible war \u005c\u005c ' , chip ingram +p9899 +aVamen . you are true blue as usual . g-d bless you +p9900 +aVhaha nice one drew :d you got me :p good game ! +p9901 +aVaww its ok you too young for a tattoo haha having tattoos of your idols is not gay i have my dad and grandpa tattooed on me is that gay nope your a idiot and immature little bitch . +p9902 +aVCUSTOM_AT i imagine spending a thousands of dollars on a product that people keep saying sucks is probably not that fun . i am surprised he lasted this long . also , the name calling was way over the top . ted can be tough to have a convo with , because he often wanted to win at all costs , but still , i dunno .. whatever . +p9903 +aVshe may . you don't really know what she is going to do . this was just this weekend after all . hold your judgement off a little bit , won't you . +p9904 +aVCUSTOM_AT CUSTOM_AT . fries there is a waffle station , godless libtard . that is why ! +p9905 +aVsuck your own dick you assfuck ! you must die , you gay cock sucker ! bullshit !! +p9906 +aVand once the power is gone there is no more gas for cars mean no emts no hospitals the store are closed and yes berry is doing this and all the time zooming around in a jet that leaves a carbon foot print we could never match oh and moocle has a jet also and CUSTOM_NUMBER fighter jets to protect her +p9907 +aVbut remember .. this is the same guy who's logic said if we spend trillions of dollars , we would subtract from the debt .. and , if we divided wealth , it would multiply .. and , if we mirandized terrorists we wouldn't have to be cruel and blow them up silently from the skies custom_break custom_break the man is a psychopath +p9908 +aVhodgson was obviously rattled by the uproar about ferdinand ( which is a nonsense really ) , that he went and filled more than half the team with black players to prove that he's not a racist ! he definitely went over the top ! ashley cole , joleon lescott , defoe : definitely yes . custom_break but oxlade-chamberlain , and out of form walcott ?? young didn't do much either ! custom_break if you're going to manage a team , block out all the noise from the outside ( ferdinand ) and get on with the job . it's either that or risk england going out in this preliminary stage \u005c u CUSTOM_NUMBER and then the shyte will really hit the fan .. ( or , rather , the fans will hit you with shyte ) ! +p9909 +aVyea aren't you +p9910 +aVit's the man in white , get it right . and he only goes to home games . +p9911 +aVyes ,, we can see you out there and every week you kill us just a little bit more . don't you know how sensitive we are ? custom_break please clap . we're officially begging you now . +p9912 +aVhahahahaha you can't handle the fact that i know you're a fraud . +p9913 +aVits a sad state of affairs indeed . +p9914 +aVso freaking busy .. so little time , so many fucking idiot sheeple ! custom_break custom_break i struggle to understand the depths that the zit-club has sunk to . it's like a never ending sucking machine pulling them down down down further trapped in the maze of their own delusions . what ? hands ? she's devoted a post .. an entire post ! to the discussion of hands , complete with blown up pictures and pie charts and hair follicles under the microscope . i do hope she realizes that she can't get a dna sample from a picture that kate posted on her twitter account . +p9915 +aVno difference to them ford from the people who are kiwis purely by accident of birth & never done a days work in their lives ( & never intend to ) or ever contributed to society . even bigger bludgers . +p9916 +aVCUSTOM_AT - CUSTOM_NUMBER cd CUSTOM_NUMBER c CUSTOM_NUMBER a CUSTOM_NUMBER b CUSTOM_NUMBER ffb CUSTOM_NUMBER dcf CUSTOM_NUMBER a :d isqus i meant basically portraying it as cocaine : enhanced ! / super troopers voice +p9917 +aVconservative " scum bag retort to any criticism of grifter queen bitch : custom_break custom_break custom_break waa !! they're reporting on stuff !! evil libruls !! custom_break custom_break are you tina tampa ? you must be .. +p9918 +aVyea , identify yourself , dont be only big mouth here . you absolutely dont know me , but technically you can see my facebook id with name and profile pic on it , or else you are too dumb to see it . come on , tv superstar of bullshit . +p9919 +aVthe co founder from facebook called savrin now a billionaire who parents come from parents came here from brazil . he renounced his citizenship from the usa to dodge taxes and is now a citizen of singapore . +p9920 +aVrays lost . picked up some ground on them . +p9921 +aVthe fact are right in front of all the libtards faces ! how long are they going to keep blaming bush for obama quadrupling our debt , outrageous spending , lavish vacations , a seperate plane for their dog whenthey do go on vacations and just overall dumb @ $$ ness ? +p9922 +aVtroll spear custom_break any prospect of you learning to speak like anything except a petulant child ? no , huh ? custom_break -- custom_break custom_break hey mfcker get the fck off my dick you fuktwatcockbitchfag +p9923 +aVthe heat ( outside ) hasnt been this bad since the finals +p9924 +aVCUSTOM_AT ass i've never been pulled over by a guy dressed up in swat gear and i used to live in north hollywood . +p9925 +aVand the winners are , you are correct , the lawyers ! +p9926 +aVdon't worry , dis / marv will re-release some real versions later , almost nullifying these purchase $ . +p9927 +aVit's shit , i dont think my comment will get here . but its not free and comes with lots of crap you dont need . you m f +p9928 +aVromney would buy it to bankrupt it +p9929 +aVspurs in CUSTOM_NUMBER , where you at tony ? +p9930 +aVlook , i never said he wasn't an athlete or that he was slow . what i stated was that his numbers make it pretty clear that he is not a feature back . if you think he can carry the ball CUSTOM_NUMBER this season and be effective , there is just no evidence to support it . +p9931 +aVyeah .. she ought to give going after i s l a m a shot . they are much more fundamentalist , rigid , steeped in religious dogma and practices . but then again .. they might blow up her car . c o w a r d . +p9932 +aVsounds like you just make it up as you go along !! this a bunch of yahoos hell bent on a witch hunt , not a criminal court ! custom_break custom_break reach down and way under , grab and pull out your head .. there now , you are free ! +p9933 +aVit will take a tough man to correct the nation \u005c\u005c ' s problems , not a milksop limpwrist like mr. obama .. being vetted and found out and recognized is a tough process and the toughest of the tough will gut it out and win the nomination - which is exactly the way i want to see it .. the process is messy .. its called " democracy " .. and the republican nominee put forward will blow past mr. obama when the real election begins . +p9934 +aVshe is as irrelevant as bush , sarkozy and the other practioners and adherents of this conservative austerity bullshit . obama better get his finger up and learn which the wind is blowing , because he is about half austere himself . this shit has had its day and people now know it was all a manufactured solution that was counter-intuitive from the beginning and it was sold to frightened people by snake oil salespeople . it is great to see that people all over the world are finally waking up and rejecting this shit once and for all ; except for those ignorant followers of that fear monger extraordinaire wrong paul \u005c xae \u005c u CUSTOM_NUMBER ! custom_break custom_break the vons were educated idiots who fooled a lot of people from europe to america for a long time ! custom_break custom_break when this austrian school economic scourge is wiped from the face of the earth i will be a happy man ! until then i will harass and condemn all who advocate , worship it and / or practice it ! for far too many like wrong paul \u005c xae \u005c u CUSTOM_NUMBER it is a religion . fuck them ! +p9935 +aVyou're a dim-wit . +p9936 +aV#wwesucks custom_break #nwo4life custom_break #fucksummer custom_break #weareincontrol +p9937 +aVbitch ass nigga , we know you a coward , you scared to put up a profile pic ! get the fuck out here ! +p9938 +aVnice girl but whiteout is one of the worst films i have ever seen +p9939 +aVyou're a complete idiot ! +p9940 +aVyes they do .. and the price we pay is our children's future . +p9941 +aVyou mean " clacking " back at him ? lol he's someone typing to you .. on a computer .. somewhere .. he as no relevance on your life nor in your life . and you choose to let him impact you as if he does . my action or non action , rather comes from me knowing what i could do to somebody if i get mad . and knowing that i can't do nothing about him because he has no bearing on my life !! +p9942 +aVsantorum is the medias sweetie pie !! obamas medias loving him cuz they know in a head to head w / obama , santorum would be destroyed , badly !! - foxnews is loving santorum because they hate newt , foxnews , all of them yanked santorum up from last place where hed been for months , built rick up prior to iowa , all we heared on foxnews was ogh rick , hmm rick , somethin about rick , fact is there was nobody left to make newt gone , so for now santorums horrible record of huge earmarks , voted to raise debt limit CUSTOM_NUMBER times , ricks a well know wash politician , bluecollar regular guy ? lolo !! take a closer look !! rick has basically copied newts ideas , but rick lacks substance , bigtime !! foxnews is gleaming with joy now , not cuz they love rick , they dont !! cuz the put rick in to get newt out strategy for now has worked . the media is speaking of newt in the past tense , they made this mistake twice in the last year !! dont expect fox or any of the other nosey ass , politically obsessed reporters to expose rick santorum for what they know he really is , a big problem if the nominee , big !! +p9943 +aVhughes is a real dummy . just proves that you need a brain to be a manager , hence his success over the years . +p9944 +aVdesperate sad women +p9945 +aVand why do we need that when practically even the worst secrets get though ? +p9946 +aVhow much does entitlement take up ? +p9947 +aVi'll take your word for it . custom_break custom_break just out of dumbfounded curiosity one time , i took the figures for " existing nuclear weapons " and divided it by time . custom_break custom_break i found that , at that time , there were enough nuclear weapons on earth to detonate one each second for thirteen hours .. and more ( i no longer remember the exact amount of time . ) custom_break custom_break we had enough nuclear weapons to detonate one every second of every minute for over thirteen hours . custom_break custom_break it was about then that i became clear what " insanity " was . +p9948 +aValisterdog custom_break what a great show ! between this and fringe and several other shows this is just the best tv season evah ! and btw all , yes all , of these are available on hulu so even tho i worked last night and missed all of them , i just finished watching every episode of every show i missed ! fuck , i love the CUSTOM_NUMBER st century ! +p9949 +aVyou sound like you need a hug :) +p9950 +aVhey , buttfuckle , when your wife is hip deep in the lime light destroying republicans , will she still have time to vacuum your rug and wipe your bottom for you ? custom_break custom_break what color will your nanny be ? +p9951 +aVlast year , you're saying we are bankrupt , understand grammar ? +p9952 +aVshut up , stupid . you said that none of them do . custom_break custom_break then you said the ones who do , do so to troll westerners . custom_break custom_break now you're changing your story again . you're truly an imbecile . +p9953 +aVdon't pick on prophet just because he went all muslim recently . +p9954 +aVwhy not ? they used flame throwers in aliens ? +p9955 +aVi fuck my wife while playing fallout CUSTOM_NUMBER and fap to gran turismo CUSTOM_NUMBER +p9956 +aVwhat size are you ? +p9957 +aVyou know your history .. +p9958 +aVbetter if it were a CUSTOM_NUMBER though . +p9959 +aVyou're the stuff of nightmares , moron +p9960 +aVCUSTOM_AT ass CUSTOM_AT because you have men and women of different ideological persuasions , along with judicial philosophies , who have shaped establishment clause jurisprudence for centuries . expecting some consistency is like expecting the sun to rise in the west . +p9961 +aVi fucked your white mom gg . you know that stands for german goo girls right ? some raunchy ass pornoi , i actually think i saw you on it getting your black ass pissed on +p9962 +aVnext pete hoekstra's ad should star michelle malkin . +p9963 +aVbrewers > dodgers custom_break custom_break braun > kemp custom_break custom_break end of thread . custom_break custom_break :) +p9964 +aVthey are only covering it because cbs has been for over six months . they can't look as if they ignored the story . cnn's ratings are already bad enough . +p9965 +aVhe'll do after the dressage custom_break he is really one of us . custom_break who doesn't like dressage ? +p9966 +aVreally ? seriously ? people thowin ' trash out on the road ain't right ? ya think ? so you noble knights are going to do something about somethin ' that ain't right ? can ya think of , oh , anything else that ain't right ? mental and moral giants . custom_break custom_break fellas : when you hang around in your little groups and talk crazy , you are missing out on normal feedback . then when you climb out from under your rock , you forget that we can all see that you don't have the sense god gave a goat . please go back underground and stay there for everyone's sake . +p9967 +aVCUSTOM_NUMBER ) this is a sham to begin with , because there is no law in existence which keeps homosexual people from spending their lives together in anyway they see fit -- this is a manufactured " injustice " in attempt to force people to call them " normal " . custom_break CUSTOM_NUMBER ) to answer your question directly , once you blur the lines to make one group of people feel better about themselves ( pretend that men " marrying " men or women " marrying " women is normal ) , then who is the next group waiting for their chance to blur the lines further ? custom_break custom_break the question really becomes , why have any lines at all ? what is marriage after all ? custom_break " that is why a man leaves his father and mother and is united to his wife , and they become one flesh . " genesis CUSTOM_NUMBER : CUSTOM_NUMBER custom_break whether you regard the bible as a moral authority , it does show that the concept of marriage was between a man and a woman as far back as at least CUSTOM_NUMBER years -- i think that makes it fairly well established . custom_break custom_break there are a lot of people in the world who desire evil -- people who want to live their lives pursuing " feeling good " -- these people use drugs , child molestation , rape -- anything that makes them feel good for the moment . how is that different from homosexuality ? this is something that is clearly not by design , yet it makes you feel good -- so do you do what \u005c\u005c ' s right or do you do what makes you feel good ? custom_break in your pursuit of doing what makes you feel good rather than what is right , you do it long enough , and then you say that guilty feeling is because of other people and that you need to force them to change because after all , it \u005c\u005c ' s totally normal that you are doing what you are doing ( rationalization ) . custom_break custom_break you may not believe in an ultimate authority , but what happens when you have helped convert the whole world to your way of thinking -- reduced any shred of morality to the lowest common denominator ? when all of us are free to pursue whatever lust happens to pop into our hearts when we wake up in the morning ? it \u005c\u005c ' s already happening now really -- schools are pushing harder and harder for younger and younger kids to be " instructed " in every last detail of the most pornographic forms of sex -- desensitizing the nation . why ? +p9968 +aVi don't know why you lot are complaining about mr. barroso . of course he is unelected , he is a communist commissar for god's sake . they are appointed not elected by the people , because that's not how the true democracy of the workers works . just work hard , pay your taxes , then give them to him , through hmrc and the lib dems , to spend as he sees fit . don't worry , communist commissars do not make mistakes , he will spend your hard earned cash very carefully . don't you know how lucky you are to have him . and another thing , also be thankful for that other commissar , comrade rumpy pumpy , and please don't describe him as a cross between et and a lettuce leaf , otherwise its the gulag correction centre for you . +p9969 +aVshows how difficult it is to come out custom_break a lot of gay people hate themselves because of how we treat one another - and that sux . custom_break custom_break i think " revolt_today " hates himself . +p9970 +aVis your hat white with a point ? does it hide your face ! and i don't need to learn from you , your mind is gone ; sick +p9971 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT CUSTOM_AT CUSTOM_AT he impressed me with his qb skills while running a wing t offense . he has impressed everyone at camps since before he ever started a game . he is in touch on twitter and obviously more personally with many uga recruits . i think he is definitely all dawg and i can't blame him for feeling blessed to receive a scholarship offer from the reigning national champs as a junior in high school . i am a huge uga fan , and even i would be pretty proud of that . +p9972 +aVmy CUSTOM_NUMBER st girlfriend in highschool was greek .. custom_break she had hair between her breasts .. custom_break freaked me out .. custom_break have never been the same since . custom_break custom_break speaking of greeks and freaked out .. custom_break why is wall street so freaked out over greece .. custom_break a country covered in goat turds custom_break and men parading down the beach with their schlongs a'swinging . custom_break custom_break the bottom line .. custom_break teachers are always getting fucked by political promises .. custom_break and as a result of the total disrespect .. custom_break they are lashing out in all types of unusual behavior . custom_break custom_break if you hear a politician in CUSTOM_NUMBER throw around more bullshit on how he's going to make life better for teachers .. custom_break do the teachers a favor .. don't vote for them . +p9973 +aVyou can't import from yourself . stupid . +p9974 +aV.. gorgeous ! get off your high horse sun , have a look around your office ( including your page CUSTOM_NUMBER girls !! ) and find how many people you have without any cellulite +p9975 +aVCUSTOM_AT squid CUSTOM_AT we can hope . it all depends on if he can pull the money together , of course . +p9976 +aVi don't like reacting to trolls but god CUSTOM_AT is boring +p9977 +aVhaha you don't own an iphone ? man your fucking poor +p9978 +aV\u005c u CUSTOM_NUMBER cwith respect to the notion that i can just suspend deportations through executive order \u005c u CUSTOM_NUMBER that \u005c u CUSTOM_NUMBER s just not the case . because there are laws on the books , that congress has passed \u005c u CUSTOM_NUMBER and i know that everybody here at bell is studying hard so you know we \u005c u CUSTOM_NUMBER ve got three branches of government . congress passes the laws . the executive branch \u005c u CUSTOM_NUMBER s job is to enforce and implement the laws , and then the judiciary has to interpret the laws . there are enough laws on the books by congress that are very clear in terms of how we have to enforce our immigration system , that for me to simply through executive order ignore those congressional mandates would not conform with my appropriate role as president . \u005c u CUSTOM_NUMBER d-barack obama CUSTOM_NUMBER +p9979 +aVsigh . just take my fucking money , i guess . +p9980 +aVmore people were picking the rangers and angels than the tigers . +p9981 +aVdemocrats are retiring this year en-mass ! CUSTOM_NUMBER have said they won't be seeking re-election with more expected to drop out later this year ! must suck to be a democrat this year ! +p9982 +aVwarning l custom_break custom_break weather and clock is not working right now . +p9983 +aVi was so delusional regarding cnn . i used to brag about how they are fair and only deal with truth in real issues and politics . but that just goes to show you that there is very very little integrity left anywhere in the country . cnn is just as biased as fox news is . cnn likes gays / lesbians / pedophiles and pornagraphy , why do that like it because the entire staff , including the president of cnn engage in these type lifestyles-that is why ! +p9984 +aVi had my time with mental cases custom_break custom_break four CUSTOM_NUMBER go has a rejection problem +p9985 +aVso sad . CUSTOM_NUMBER lives wasted , and for what ? ! what was the point of all this violence ? ! +p9986 +aVyou are wasting your breath , bc . argie is most likely a paid shill for aipac . israel has an entire propaganda program called megaphone , etc . +p9987 +aVi see you are detalinging what happened in your family , you forget the part where your father ate the ebst part of you off your mothers azz_crack +p9988 +aVi know it's a movie but sometimes it's just annoying when i see bitches fawking shit up +p9989 +aVyou think russians jews , israelis are doing this ? +p9990 +aVCUSTOM_AT squid so , we turn our local police departments into para military units because a handful of cops didn't have m - CUSTOM_NUMBER s and went against some baddys with mini - CUSTOM_NUMBER s with the result of a handful being killed . when was the last time that happened ? next time you get pulled over by a guy dressed up in swat gear i bet you'll think twice . it's happened , and it's wrong . +p9991 +aVdg -- you're really an asshole .. i hope you don't have children . +p9992 +aVno one on here has ever been censored .. ever ! +p9993 +aVCUSTOM_AT . akuatuta ill take anything over , " i gota do a better job " , but i inserta a +p9994 +aVotherwise quit acting like an internet tough guy who lives in his moms basement . +p9995 +aVfrom : rogers v . bellei , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER - CUSTOM_NUMBER ( CUSTOM_NUMBER ) ( a case involving statutory citizenship forfeiture , discussing dual citizenship / dual allegiance ): custom_break custom_break " the congress has an appropriate concern with problems attendant on dual nationality . savornan v . united states , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER u . s . CUSTOM_NUMBER ( CUSTOM_NUMBER ); n . bar-yaacov , dual nationality xi and CUSTOM_NUMBER ( CUSTOM_NUMBER ) . these problems are particularly acute when it is the father who is the child's alien parent and the father chooses to have his family reside in the country of his own nationality . the child is reared , at best , in an atmosphere of divided loyalty . we cannot say that a concern that the child's own primary allegiance is to the country of his birth and of his father's allegiance is either misplaced or arbitrary . custom_break custom_break the duality also creates problems for the governments involved . mr. justice brennan recognized this when , concurring in kennedy v . mendoza-martinez , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER u . s . CUSTOM_NUMBER ( CUSTOM_NUMBER ) , a case concerning native-born citizens , he observed : " we have recognized the entanglements which may stem from dual allegiance . . . . " in a famous case , mr. justice douglas wrote of the problem of dual citizenship . kawakita v . united states , CUSTOM_NUMBER u . s . CUSTOM_NUMBER , CUSTOM_NUMBER u . s . CUSTOM_NUMBER - CUSTOM_NUMBER ( CUSTOM_NUMBER ) . he noted that " [ o ] ne who has a dual nationality will be subject to claims from both nations , claims which at times may be competing or conflicting , " id . at CUSTOM_NUMBER u . s . CUSTOM_NUMBER ; that one with dual nationality cannot turn that status " into a fair-weather citizenship , " id . at CUSTOM_NUMBER u . s . CUSTOM_NUMBER ; and that " [ c ] ircumstances may compel one who has a dual nationality to do acts which otherwise would not be compatible with the obligations of american citizenship , " ibid . custom_break .. [ continuing ] +p9996 +aVhmm . i wonder why the justice department sent in observers for this election . custom_break custom_break btw - who is charles mahtesian ? +p9997 +aVit say something about them CUSTOM_NUMBER coward ass cops .. you cant arrest CUSTOM_NUMBER man fucking pussies +p9998 +aVreferred to " them " as f ing coons . i'd say that's pretty racist you little slut . +p9999 +aVis that what you say when one of your own family members dies ? +p10000 +aVi agree that parents are harming their kids with the sugar and processed food and factory-farmed animal products they feed them . however , the usda has a long history of causing those problems , not ending them . i think this practice is foul and untrustworthy , like all government / police-state practices this country is adopting . and yet yes , parents need to wake up and step up their game if they want their kids to outlive them .. since this is the first generation that isn't expected to . and that is in large part due to diet and lifestyle , two things parents have CUSTOM_NUMBER % control over . so when i see parents get in an uproar over their right to feed their kids garbage , because that lunch technically is not healthy , it is really sad and i feel sorry for the kids . not trying to be an ass here , but nobody likes the truth .. +p10001 +aVmoby dick = not a great movie name for today's society . custom_break also who the fuck want to make a movie about a giant whale ? +p10002 +aVyou are a little too caught up in all of this artificial bs world here . . . +p10003 +aVaww , you poor little cowardly redneck custom_break custom_break strong intelligent black woman scares you custom_break custom_break it must be sad to live life as a right wing redneck cowardly pansy +p10004 +aVyes , rush is correct ! the mainstream media is obama's watchdog , pure and simple . by the way , iin case you didn't know it , david brock is a former and disgruntled conservative , who is acting out becasue he felt that conservatives rejected him due to his gay lifestyle ! that is exactly why he is vengefully attacking fox news and all conservatives ! custom_break custom_break \u005c\u005c xe CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER cmedia matters is an arm of the democratic party ; nothing more , nothing less ! +p10005 +aVyou are too into yourself and way out in left field for me to try and reason with you . your wages and pensions will be cut and you will have nothing to say about it . +p10006 +aVCUSTOM_AT CUSTOM_AT -- i think you are confusing me with ows , those seditious bastards want to completely abolish the constitution . i just want our government to return to it , not destroy it . \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break \u005c\u005c custom_break +p10007 +aVanother loser comment . i'm am honored that everyone gets to see what an as % hole you really are . but i'm sure your co - workers at mcdonald's already knew that . +p10008 +aVyou are an azz mejon !! +p10009 +aVis this another CUSTOM_NUMBER % thing , senator kyle ? +p10010 +aVdavis on working for mccain : " if you thought that " celebrity " ad was racist , you should have seen the ad i wanted to make ! " custom_break custom_break custom_break custom_break reminds me of the scene in spinal tap where record company execs shoot down the band \u005c\u005c ' s proposed cover for smell the glove , and the band \u005c\u005c ' s manager tells the exec , " well , you should have seen the cover they wanted to do . it wasn \u005c\u005c ' t a glove , i can assure you ! +p10011 +aVokay .. here comes the question that could really blow this thing up : given that wh never manifested anything that suggested that she had a drug problem before she met bobby brown , and she did manifest thereafter , to what degree could bb find himself culpable , in criminal or civil court , in the death of wh if the toxicology tests determine that drugs contributed ton her death ? +p10012 +aVi'm quickly starting to loathe this guy . first , he gets caught with pot ( which isn't that serious to me ) . but then , he gets caught driving CUSTOM_NUMBER mph while drunk . what a piece of sh . it . he could have very easily killed someone or an entire family . throw the book at this idiot and make him learn . don't let him play for at least CUSTOM_NUMBER games this season ; his return contingent on good behavior . coming from a lions fan . +p10013 +aVloser maggot can't make any money because you have no talent . custom_break custom_break live in squalor like you deserve . +p10014 +aVjust uploaded episode CUSTOM_NUMBER on youtube !! custom_break hope you enjoy !! :) custom_break custom_break < object style = " height : CUSTOM_NUMBER px ; width : CUSTOM_NUMBER px " > < param name = " movie " value = " CUSTOM_URL " > < param name = " allowfullscreen " value = " true " > < param name = " allowscriptaccess " value = " always " > < embed src = " CUSTOM_URL " type = " application / x-shockwave - flash " allowfullscreen = " true " allowscriptaccess = " always " width = " CUSTOM_NUMBER " height ="3 CUSTOM_NUMBER " > < / object > +p10015 +aVas we know " you are clearly some kind of imbecile with a very black and white view of the world . +p10016 +aVway to be relevant there . i'm a moron because i like to speak proper english ? kids these days . too much lol and not enough laughing out loud . too lazy to use correct grammar . custom_break custom_break anyway , you're wrong . if it wasn't for people like us , you would be getting much more half assed made game year in , year out . custom_break custom_break all these gimmicks you hear of right now is probably because they heard us complain . if we were like you and were quiet as kept , you wouldn't get anything in return . +p10017 +aVCUSTOM_AT CUSTOM_AT " an uncle raping a niece ? in texas ? couldn \u005c\u005c ' t happen . " \u005c\u005c custom_break \u005c\u005c custom_break oh it happens -- but in texas they call it a " family reunion " . +p10018 +aVi like your content thanks for nice posting +p10019 +aVthere aren't many people more worried that obama might lose in november than beck . when you're making millions selling fear to low iq rubes , barack obama in the white house is very good for business . +p10020 +aVdidnt " like it " , custom_break but i didnt mind it +p10021 +aVor you could have just used your phone as your portal music player , which eliminates the need for you to have the music player at all . +p10022 +aVwho needs sex , when we getting screwed by the government and the bankers . +p10023 +aVcars kill innocent people . make them illegal . custom_break knives stab people . make them illegal . custom_break hands choke people . cut them all off . custom_break water drowns people . make water illegal . custom_break people fall from balconies . make laws that building cannot be more than CUSTOM_NUMBER story . custom_break people die of prescription drugs prescribed by doctors . make doctors illegal . custom_break custom_break i figured since you were so concerned in making us safe . you wouldn't just want to stop at a little plant now would you ? don't be a hypocrite . come on . protect us from ourselves by force . +p10024 +aVmy moms loved her some dallas back in the day . had me watching it . custom_break custom_break i might have to check it out . +p10025 +aVthe fact that against spurs , balotelli should have got a red card for stamping , and lescott for a forearm smash , doesn't alter the fact that against liverpool , city were robbed . they didn't get a penalty they should have got . and had a penalty given against them that was never a penalty . i'd have been pig sick if that had happened to arsenal . +p10026 +aVyou want a smack on the back of your head punk ? +p10027 +aVthat is totally correct . hitler could never have done what he did without the approvel of most of most germans . +p10028 +aVdamnn , that shit was epic !! what the fuck !! wow , keep shreading bro soon you'll be chilling with the big boys . bmx CUSTOM_NUMBER life nigga ! +p10029 +aVlebron , no matter who says what , you are an incredible player and teammate . you have played your heart out and we can all see that . i know that you really don't care what he said , but just letting you know , you and the rest of the team make me proud . +p10030 +aVCUSTOM_AT CUSTOM_AT CUSTOM_AT also this douchebag has been claiming that all these boys are co-conspiring tho get cash the whole time . how can you even freaking say that to victims of sexual abuse . makes me want to punch him . +p10031 +aVi agree with most of what you say , but how do you figure we the people allow it ? we have laws and punishment in place . no one is more despised than a child killer . +p10032 +aVbig blunder .. i'll take any of them over that ugly dude rachel madcow any day ! and they are CUSTOM_NUMBER x smarter than her . +p10033 +aVCUSTOM_AT well you click your mouse binds , you don't manually use your mouse to click CUSTOM_NUMBER - CUSTOM_NUMBER . +p10034 +aVkurius , you said everything that needed to be said here . i will still add that charles you are a pretentious toolbox for thinking your opinions are remotely viable . scooby .. you moron , dj's are musicians because they make music . just because they don't play an instrument and you don't like the music they produce doesn't mean a damn thing . charles and scooby .. you fail ! +p10035 +aVthe problem would go away if we legalized marijuana . nobody listens . +p10036 +aVand another benefit to counseling is that you don't lose all your friends because you drove them crazy with your constant neediness . +p10037 +aVyou shut your fucklng mouth you dlrty whorlng drunk bltch +p10038 +aVthe christian church repelled the islamic conquest of europe about a thousand years ago , but the secular system in europe right now has opened the door for the islamization of europe . muslims in europe have a birth rate more than CUSTOM_NUMBER times higher than native europeans so it's only a matter of time . +p10039 +aVyou are an idiot if you think he really raped her .. he's kobe bryant ! thats like accusing bill gates of asking for a loan . +p10040 +aVi swear i hate when u fresh off the boarder wetback crooked eyebrow short hairy mexicans come on our site and bash on us !! i cant wait until a republican is elected so they can ship u fuckin wetbacks right back to mexico and cuba ! +p10041 +aVi am over the limit as prescribed by the law .. +p10042 +aVif u gotta still trash talk phi phi o'hara ur pathetic , truly +p10043 +aVever eat aids infected feces ? just eat your own and you will .. +p10044 +aVso you call any teen who gets pregnant a " dumb bitch " ? that's freakin dumb . you know , it happens sometimes . custom_break custom_break yeah , try getting out from behind your computer screen and saying that to someone's face , you pussy . i can't get enough of you " compassionate , loving , selfless , kind , looking-out - for-your - fellow-man " libs . you just love to call everybody who disagrees with you " bigoted , " and you don't realize what a polluted soul you have . +p10045 +aVsungjong you are just soo like a man now . custom_break infinite bias list messed up once again . +p10046 +aVfucking apple fanboys +p10047 +aVkonstigt n \u005c xe CUSTOM_NUMBER r barca inte sl \u005c xe CUSTOM_NUMBER pper bollen utan st \u005c xe CUSTOM_NUMBER r d \u005c xe CUSTOM_NUMBER r och passar bollen till varandra i CUSTOM_NUMBER min och sen kommer p \u005c xe CUSTOM_NUMBER oh shit vi m \u005c xe CUSTOM_NUMBER ste g \u005c xf CUSTOM_NUMBER ra m \u005c xe CUSTOM_NUMBER l ocks \u005c xe CUSTOM_NUMBER , och d \u005c xe CUSTOM_NUMBER f \u005c xe CUSTOM_NUMBER r dem panik sen kommer messi och s \u005c xe CUSTOM_NUMBER tter bollen i n \u005c xe CUSTOM_NUMBER tet CUSTOM_NUMBER min i fr \u005c xe CUSTOM_NUMBER n matchslut d \u005c xe CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER r det ganska sv \u005c xe CUSTOM_NUMBER rt att sl \u005c xe CUSTOM_NUMBER ppa in m \u005c xe CUSTOM_NUMBER l s \u005c xe CUSTOM_NUMBER .. jag f \u005c xf CUSTOM_NUMBER rst \u005c xe CUSTOM_NUMBER r att han f \u005c xe CUSTOM_NUMBER r det d \u005c xe CUSTOM_NUMBER r j \u005c xe CUSTOM_NUMBER vla priset vart enda j \u005c xe CUSTOM_NUMBER vla \u005c xe CUSTOM_NUMBER r . +p10048 +aVso , what will you have to say when obama loses ? +p10049 +aVare you still around sicko ? you're the jackass who abandoned your best friend who came out as gay . nice . +p10050 +aVno , you are wrong . +p10051 +aVfunny you on here talking about the soulful ghetto black people but you on a black site that markets to the ghetto . you know you wish you were black . and if you are black you are a sellout nigga lol . you are just an actor . on here to create arguments and division . i see through fools like you . you came here to play a role . keep playing it because soon its gonna end . good day . +p10052 +aVCUSTOM_AT - yeah , don't forget rev . wright got $ CUSTOM_NUMBER k to keep his mouth shut in CUSTOM_NUMBER . mother's milk indeed . +p10053 +aVat least you are , and thats for sure . :o ) +p10054 +aVi recently just watched the documentary such hawks such hounds and holy god damn sunnuva bitch are there a whole lot of bands i need to start listening to . i have no idea how i've gone this long without listening to sir lord baltimore . +p10055 +aVyou're a lucky man to have such a clever wife . +p10056 +aV< p > < span style = "" > in CUSTOM_NUMBER , yomtov aka mark , pleaded guilty to molesting the boys , aged between CUSTOM_NUMBER and CUSTOM_NUMBER . he served one year in prison and was required to register as a sex offender . < / span > < span style = "" > custom_break custom_break < / span > custom_break custom_break < p > yomtov aka mark has been in violation of sex offender registration requirements since march CUSTOM_NUMBER , according to the website of the california attorney general & rsquo ; s office . a spokesman for attorney general kamala harris did not respond to requests for clarification on yomtov & rsquo ; s whereabouts . +p10057 +aVoh dear , now you will be sorry , in fact you will probably wish you had never been born . if you had smuggled it into the uk and were unlucky enough to get caught , you would have got a slapped wrist by one of our weak judges . asia is different , drugs are not tolerated , there are no human rights , sentences are long , prisons are real prisons not like the uk world famous holiday camps !! +p10058 +aVi never said " what works for the baby . " i said what works for the mother in terms of her health conditions . and her ability to labor and deliver safely . custom_break custom_break custom_break custom_break no one wants to kill babies or mothers . not ever careless obs . +p10059 +aVnuclear fallout causes cancer . i don't see them trying to prevent it . +p10060 +aVare you still here ? +p10061 +aVnational post = national inquirer +p10062 +aVgungongoon , you make britain what it is today , full of cretinous maggots such as yourself . if you cant say anything intelligent why dont you just keep your big fat mouth shut . +p10063 +aVif the dems want to keep their asses in office then they best toe the line and protect unions damnit ! +p10064 +aVyou should man-the - fuck-up and read the god-dammned books . then whenever someone brings this shit up you can say " well , i don't watch much tv , but in the < i > book < / i > .. +p10065 +aVcon il mio nokia rifutavo le chiamate a rutti +p10066 +aVyou all suck , like hungry hookers . +p10067 +aVlove another ? .. but don't love another more than we love our gawd , or else he'll throw us to hell for all eternity - as jesus says in the bible , multiple times . custom_break custom_break but don't love gay people . kill them . kill them all . kill all nonbelievers as well . and witches . and servants of other gods . disobeying children ? must be slaughtered . children who call our prophets bald ? must be torn apart by bears sent by god . adulterers ? pfft , them too . and so on , ad infinitum . kill everyone . except the mindless zealots . custom_break custom_break please . the intellectual inconsistency you demonstrate here makes me dizzy . custom_break custom_break it was secularism and humanist ideas that pulled our little society out from the muck of religious people - like you , and worse . custom_break custom_break don't you dare to tell me , or any other human being that we were born faulty , sinful , worthless . +p10068 +aVweapons ?? what planet are you on ?? +p10069 +aVyet another " straight to dvd " cliche gangster film no doubt . starring , CUSTOM_NUMBER trick pony danny dyer and drinking pal tamer hassan . seriously ? what fool finances these films ? steer well clear mr wright if you actually want to make something of yourself on the big screen . +p10070 +aVdropped the ball ? custom_break custom_break did they not just lower all their previous models by $ CUSTOM_NUMBER as well as refresh them with intels latest architecture ? +p10071 +aVyou are a fool and do not understand the flattening of the world . +p10072 +aVif not news worthy , why are you posting here ? +p10073 +aVCUSTOM_AT custom_break custom_break custom_break custom_break omg ! i wish i could say i hadn't gone through it , but i have . i once dated a guy who had lost his job . his fiance had broken up with him because she didn't want to marry an unemployed man . silly me thought i would be rewarded for being a ' good woman . ' that's what he always said to me . custom_break custom_break custom_break custom_break as soon as he got another job he made himself very scarce . i was heartbroken . thank god it now seems like a lifetime ago . unfortunately things didn't turn out that well for him in the long run though . +p10074 +aVyou konw what ? just know bullshit +p10075 +aVyo ! anybody add shoenice on facebook . he's this badass dude from ny that eats and drinks anything that is suggested towards him and puts it on youtube . CUSTOM_URL +p10076 +aVbeen here the whole time with this terrible team +p10077 +aVsounds like you should dump him . +p10078 +aVwell ! it's going to be an historic moment when romney clinches the republican nomination . custom_break custom_break mitt romney is a man of questionable legal and moral birth through his family lineage . there is no doubt he was born in the united states . but his birth -- a result of family polygamy -- presents an affront to the christian heritage of this great nation . custom_break custom_break mitt romney's nomination shows just how far this nation has gone , in christian moral decline . +p10079 +aVCUSTOM_AT yahh .. it wa all a false rumor ! me and dave are pretty tight . we kid each other like that all the time . +p10080 +aVyou racist bitch +p10081 +aVthank you j .. you are so kind .. enjoy your week ! +p10082 +aVlike you . +p10083 +aVwhat the fuck , why ? i wait for CUSTOM_NUMBER min and CUSTOM_NUMBER min later i muss wait CUSTOM_NUMBER hours what the fuck that is shit +p10084 +aVyou really should get other news sources and get you face out of ther gay mags . +p10085 +aVgod forbid that applegadget uses a mouse with three buttons , oh the horrors ! +p10086 +aVyou sure you arnt a pats fan ? you seem to know alot about them +p10087 +aVa hammer . a hammer works . break in with one of those hard rubber ones , if you're a sensitive sort . +p10088 +aVhey y CUSTOM_NUMBER , great mets series , missed you all yesterday . glad we got to use our brooms . +p10089 +aVwhy do you think that medics are more important ? custom_break custom_break custom_break many other occupations are far more vital to our wellbeing . we'd really be stuck without sanitation engineers or food providers , for example . +p10090 +aVpossibly to get your mother and father , you twisted freak ! +p10091 +aVyou people , as in " moronic filth . +p10092 +aVall these evangelists are nothing more than money hustlers who take the weak of mind's money . custom_break custom_break i say if you are that stupid , you deserve to lose your money to them . +p10093 +aVmaybe we , the majority who are able to stick to the rules of these boards , should act together to get rid of the trouble malkers . all it takes is CUSTOM_NUMBER people to flag a comment for it to be removed and if the same people keep getting flagged , eventually the moderators will act . enough people have liked my comment to show that there are plenty who feel the same way as me . if we work together , we can get these boards back to the way they once were . +p10094 +aVother ? a virus isn't an organism you idiot . it's a particle . this is why we think you're stupid . +p10095 +aVobfan . why are you on this board ?? if you don't know that the senate brings up the bill , amends it and then votes on it , you really should be on the cartoon board not here . but do not feel bad , most people that support ob are just as dim as you are . +p10096 +aVnumber one , don't fret over weak republicans . custom_break custom_break number two , i have never seen people so pumped up for the election , they see the major error in voting for obama and are chomping at the bit to correct that . number three , simply vote the incumbent republicans out , i have numerous ones in mind that i will send direct cash to their republican opponents campaign . it doesn't even matter what these opponents are as long as they are verifiable in their intentions . we had a hoot with the last crop we sent in , looking for more bang for the buck in CUSTOM_NUMBER . it takes multiple elections , so be it . number four , please man , all caps is just lame . +p10097 +aVi can't bash you on the fact you get to spend your time around ( usually ) attractive , ( generally ) unintelligent females ( at least around here they are , usually give damn good head , though ) . however , most of the male cheerleaders i know are skinny sobs , same with the chicks . throwing a hundred and fifty pound dude in the air , or a hundred and twenty pound chick , is not the same as pushing / pulling around a three or four ( or more ) hundred pound barbell . custom_break custom_break custom_break so please , you've got what you do , we've got what we do . don't act fucking superior and most of us wont either . +p10098 +aVabsolutely ridiculous - how many women tenors are there ?? +p10099 +aVextremist #1 : " i am tired of people meddling in mideastern affairs . " custom_break custom_break extremist #2 : " me , too .. let \u005c\u005c ' s go blow up somebody in thailand .. that should stop it .. " +p10100 +aVhahahahaa look at the white boy in the car when he said " you cant fuck with me +p10101 +aVfuck that .. you force someone to be raped repeatedly every god damn day so your lazy ass can avoid getting a real job , beat her , imprison her , etc etc etc . and yeah every great boyfriend lets their girlfriend turn tricks -- you're fuckin sick , your mental with this way of thinking . i guess she is out of business if the next pimp knows they are dead man walking .. lol .. you've got to be joking - you can't really be related to this scum bag , may he burn in hell . +p10102 +aVaccused but not charged or convicted . you libbies make me laugh . especially you dimwit . you are a copy and paste monkey . +p10103 +aVno shit ! +p10104 +aVclark just needs to stop pushing and pulling on her and just let her go , dont hate lana just because shes prettier then u +p10105 +aVfaggot +p10106 +aVyou really should be like the other lemmings and jump off a cliff . +p10107 +aVby your logic also legalize heroin . +p10108 +aVthe g.o.p. can cry all they want but ther the ones that screwed up by linking all three of these programs together if they separate them now it will be a political disaster for them they will piss off the unemployed the doctors and the seniors . the g.o.p. needs to suck it up pass the bill with all three programs until the end of the year . and let everybody know that this is the last of these programs . and that it won't even come for a vote again . that way everybody has CUSTOM_NUMBER months to get there affairs in order by the time this ends . and congress both democrats and the g.o.p. needs to spend the next CUSTOM_NUMBER months working on there competence ethics . +p10109 +aVCUSTOM_AT - in a nutshell :-) +p10110 +aVCUSTOM_AT :d isqus laraza ( the race ) , nbp . nation of islam , aztlan to name a few are very racist and very left wing . you guys are just scared to call out a black person or a hispanic for racism . i am not scared to call it like i see it . it is easy to attack whites because it makes you feel good about yourself , you think the minorities will like you if you attack whites too . be freaking honest with yourself . this has to be one of your dumbest replies ever crissa . custom_break custom_break i view the world through the eyes of a " native american " as you liberals labeled us . all i see is a self loathing person who wants to feel good about herself and have others like her " because she cares " . still all i see is a person who sits on land once hunted and lived upon by the native peoples . how many thousands of indians died so you can live where you live and feel good about yourself ? custom_break custom_break your second sentence makes no sense , because even my staunchest enemies never accuse me broad brushing . when i attack , i am very specific about my targets . +p10111 +aVhey , if the republicans are determined to stake out the territory of " things really suck " , they \u005c\u005c ' re welcome to it . should make an attractive selling feature for their CUSTOM_NUMBER nominee . +p10112 +aVnah . good folks there , good music pours from that place .. don't let a couple of douchebags shape your view . +p10113 +aVhey nutbag .. youre a traitor .. custom_break custom_break obama has more intelligence in his little finger than your peanut brain .. custom_break custom_break go to pakistan and spout your venom .. youll be murdered onn the spot .. you psychos love to talk about no freedom-but you are liars .. custom_break custom_break you have the freedom to speak like an idiot .. arent you happy now goofball ? lmao +p10114 +aVyou're avatar is fail . loser . +p10115 +aVwhy don't you shut your stupid mouth , pennylane ? all you do is sit in here just waiting to pull the race card every chance you get . you offer nothing of value to these discussions , so why don't you just get lost ? it gets tiring seeing your worthless , race-bating gibberish polluting these discussions ! +p10116 +aVwe didn't even know who the rebels really are , do you really want them to have weapons they can use against us +p10117 +aVyou goofy repub thugs don't have a clue , not the tiniest shred of a fact on how health care works in most other countries around the globe . the us is the only developed country without universal , single-payer or socialized medical care for all its citizens . some systems differ , but all achieve near CUSTOM_NUMBER % access to a doctor and hospital at way lower cost than we here in the united states of america . in some countries , people pay some small amount per doctor visit , like a co-pay . in other countries , you are covered , no co-pay . in most countries , the option to have private health insurance is always an option . this gives the wealthy or well-heeded access to some private doctors who want to only see rich patients . their choice . custom_break but no one , no mom , dad , child , uncle , aunt , grandma , grandpa , sister , brother , business associate , boss , garbage man , ditch digger , or nuclear physicist goes bankrupt from a disease or medical condition like here in the usa . you need not fear the collection agency coming after you because you fell and broke your arm and had no insurance . no insurance company denies your claim or drops your coverage after finding out you have cancer or heart disease or ms. get it ? custom_break custom_break we are in the dark ages of medical care in the us and the neanderthal republicans want to keep it that way because their wealthy benefactors in the giant insurance-pharma industrial complex like it that way . these craven business people who lust after profits like an alcoholic lusts for a drink , make huge boatloads of cash and mega profits off us and do not want that gravy train to stop . +p10118 +aVsocaljim : < div > custom_break < / div > < div > nope , kelly should stay and stick around if we go CUSTOM_NUMBER - CUSTOM_NUMBER or CUSTOM_NUMBER - CUSTOM_NUMBER imo . with a new qb coming in you just have that excuse . so yes , there is an excuse . it's not like we have a CUSTOM_NUMBER yr starter coming in and last season was a CUSTOM_NUMBER - CUSTOM_NUMBER or CUSTOM_NUMBER - CUSTOM_NUMBER record . no high expectations at all . if we surpass them then fine but if we can get at least CUSTOM_NUMBER wins under this schedule and new qb it will be a success . & nbsp ; < / div > < div > custom_break < / div > < div > now with usc . if you all dont win your conference championship kiffan should be fired . no excuse why you all shouldnt flat out be undefeated and in the national championship this year . with that being said . if you all dont win the conference it will be a huge failed season . & nbsp ; < / div > < div > custom_break < / div > < div > go nd !! < / div > +p10119 +aVCUSTOM_AT reality no i am simply saying that back then a lot of people said stuff like this . theyre old conservative dudes . it just isnt that way anymore . i am sure pat buchanan and gb senior talked smack on blacks , its just the way it was . nothing to do with me or anything i belive in i swear , i am just stating the facts of a different time . +p10120 +aVtrue , maybe he's deliberately being an assh * le as a self-promotional marketing gimmick , because he knows controversial views will get him attention . custom_break custom_break in that case , let's screw his plan up by avoiding clicks on his articles , and spreading the word to others to do the same . that'll fix his red wagon - and it's looking mighty red . +p10121 +aVjoelweltman , you look like a pedophile from your picture . go get yourself incarcerated . +p10122 +aVyour a little high on the points but i do think miami will handle an old tired boston team +p10123 +aVyour yellowstone fly fishing report : custom_break custom_break .. the madison river is enjoying consistent salmonfly action . this , coupled with a bit of streamer fishing , and the highly successful soft hackle swinging is drawing the neighbors to the holes of old . not too much visitation , yet , from the pink and yellow shirt crowd . custom_break custom_break obsidian creek and indian creek are high and clear . fish right by the bridge at the indian creek campground . catch as many brook trout as you care to . custom_break .. the gibbon river in the big meadows is at bank , and has picked up just a hint of color , ) - and the bank is just plain pudding .. if you choose to fish here be careful on two counts : CUSTOM_NUMBER ) soggy soil transmits vibrations very well , CUSTOM_NUMBER ) be sure you know where the edge is . small streamers will do the trick . a double drowned caddis will also work . custom_break .. down canyon on the gibbon river you will have to look for protected water , and gentle feeding lanes . there is a bit more color , the discharge is up , and the fish are being very picky about where they are hanging out . on the other hand they are not picky at all about what they are eating . custom_break custom_break on the other hand , for a change , the firehole river , ( after an early scare , ) has enjoyed cooling melt water and has maintained a bank-full puddle so far . custom_break custom_break CUSTOM_URL +p10124 +aVmro , custom_break custom_break proof is shown by liberals not wanting to remove illegals and dead people from voting registers . that's about as dishonest as you can get . +p10125 +aVthe only ignorant person here is you , who thinks that being registered as a republican means you treat everything ever done or said by every republican leader as gospel . open your mind a little bit . +p10126 +aVoh i had many cars like this before . +p10127 +aVCUSTOM_AT besleaga griji , doruri sau dorin \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER be .. au \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER i copii mai mici ! :) custom_break custom_break mul \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER bumesc de urare , \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER i \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER bie la fel , sara , c \u005c\u005c xc CUSTOM_NUMBER \u005c\u005c x CUSTOM_NUMBER avem nevoie ! +p10128 +aVyou are both morons and that is never happening +p10129 +aVmany toolbars include spell check , like yahoo for example . you might want to look into that . just trying to help you make points easier to read +p10130 +aVCUSTOM_AT CUSTOM_AT . moss custom_break sioux falls , s.d. i told my boy he should call around today and figure out what the options are . i hope he's doing that . +p10131 +aVhow about felix ? he is sure turning into one hell of a starting pitcher . i think if he gets his pitch count down and goes longer into games , he can be a number three pitcher someday . +p10132 +aVyou're all upset , defending this hipster band .. and we're the douches for reading the news and discussing it ? custom_break custom_break custom_break custom_break put down the pbr , throw away the trucker hat , shave off that silly shadow-beard , put down your " CUSTOM_NUMBER % er " sign , and get a job , ion . +p10133 +aVlike this if you are a tribe fan +p10134 +aVyou're idiot .. +p10135 +aVi am a woman babs , and the only " war on women " i see is coming from jackazzes like you . i don't need your protection or your ignorant rhetoric masquerading as representing my best interests . +p10136 +aVwow & you benefitted so many wins this year from his bat nice stupid +p10137 +aVhaha green me red you now loser whos winning now moron +p10138 +aVcustom_break me and god both hate-faggots . custom_break custom_break what's the difference between a-fag - and a refrigerator ? custom_break refrigerators don't fart when you put the meat in . +p10139 +aVoh go kiss the ass of a goat .. and you dummycraps insult veterans .. even your coward-incompetent - chief .. everyone of you are the enemy .. and you'll all fall .. and hard too boy . +p10140 +aVnot a chance kid , you're wrong . +p10141 +aVon some real shit fuck live jasmin !! +p10142 +aVok but where the hell was it released ? you all copy articles from each pther but did anyone do the fucking search to tell us where the fuck was it released ? fuck it . +p10143 +aVCUSTOM_AT has found our slice of the internets ! fuck you . +p10144 +aVhahahahah , you are a delusional moron . +p10145 +aVthere you are , been missing you . how are you doing , feeling better ? +p10146 +aVwenttoau custom_break custom_break he made a prediction just like you , but he doesn't know anything about football . that makes sense . pfft ! you like to dish it out about bama , but let someone say something about auburn and you start crying , " idiots " . +p10147 +aVkathy lee .. shut your pie hole .. and whats with that face and fish lips .. dumb arse +p10148 +aVyou're a crank . +p10149 +aVcome on oppa you're a man . xd +p10150 +aVi like your enthusiasm and initiative . you're a real go getter . +p10151 +aVjuggalo you suck at trolling +p10152 +aVyou seem a very eloquent , grounded and educated person . +p10153 +aVits a wild wild world , keep your dirty fingers off of my human rights . +p10154 +aVare you about to recapture your swag ? +p10155 +aVno shit .. you must be a genius +p10156 +aVn \u005c xe CUSTOM_NUMBER o tenho a m \u005c xednima paci \u005c xeancia pra esse tipo de babaca que acha que se existe um problema grave acontecendo ningu \u005c xe CUSTOM_NUMBER m pode nem ligar a tv pra ver uma novela . tem que viver em fun \u005c xe CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER o de mensa \u005c xe CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER o , corrup \u005c xe CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER o , greve , blablabla . saco . +p10157 +aVare you on ' roids by chance ? +p10158 +aVyou are a disgusting human being +p10159 +aVyou are well versed when it may be on . must be one of your favs if you know those details . +p10160 +aVwe ? you and the mouse in your pocket ? +p10161 +aVglad you realize this :p custom_break custom_break kidding . +p10162 +aVdamn ! you would rock this so hard ! +p10163 +aVin your face cano haters +p10164 +aVwhat foul are you kidding !! +p10165 +aVyou would know alot about rolls , fat boy +p10166 +aVyou look pretty damn good ! ^_^ +p10167 +aVyou are a moron . i am a computer guy that has my own company . my mouth will get me in trouble ? i doubt it . stupid m f er . custom_break custom_break again , what is the name of your other account ? i know , you do not want say .. custom_break douche bag . +p10168 +aVit is the corrupt government blasting underground bunkers and tunnels in preparation for the coming nuclear / economic disaster . they hope we will all die off so they can come out after the fallout is gone and rebuild the world as kings . they will fail .. +p10169 +aVthe phillies are terrible . go back to your cave +p10170 +aVyou are so naive .. useful idiot . +p10171 +aVare you kidding me ? +p10172 +aVyou are an opinionated , uneducated idiot . and kingdom of heaven director's cut is a masterpiece . +p10173 +aVshut up muffin you soft a ** b * tch +p10174 +aVokay , i'm going to blow your fucking minds . what if the three elderly members of the council aren't just ineffectual pushovers , but are actually being bloodbended by tarrlok to give him the majority vote on every decision ? it's a stretch , because you ' d think somebody would .. notice , but they surely couldn't be that willing to turn republic city into a police state at the first sign of trouble , could they ? +p10175 +aVit's also a synonym for shit . +p10176 +aVwell then you're welcome to contact your own lawyer . +p10177 +aVCUSTOM_AT CUSTOM_AT you can ask your mom about it +p10178 +aVjimmy , your pop ups and fly outs are the reason i can never be happy . +p10179 +aVwell i got on here , but i think im might just get back off . see you delusion fans later !! :) +p10180 +aVyou are so strong +p10181 +aVcoach , please stop trying to explain this away . the more you speak / tweet the deeper your hole becomes . +p10182 +aVlearn reading comprehension . sure urlacher is above average , maybe even great , as i said he's the dick butkus of your time . in response to the " it takes a team " comment , i just add that it is further proof that the bears suck . as for chicago and politics , do you really need to be told about the " chicago way " ? it influences everything , even your crappy organization called the chicago bears . +p10183 +aVyour mom is better . +p10184 +aValyssa look .. matches your wall hanging you made +p10185 +aVjustice over there then .. are you watching england ?? +p10186 +aVyou're funny . do you do stand up ? +p10187 +aVno personal abuse from me - unless you feel it applies to you and then you're very welcome . pleasingly , the text you quote supports what i said . even if it didn't , today it is thought that canut or cnut tried to command the waves . the perception is the most important not the fact . do you see ? custom_break custom_break there ; you've learned not to take things in a mechanical , pedantic , literal sense . at least i hope you've learned . custom_break custom_break anton , a part of your straining brain has indeed ' checked out ' ; nobody at home . custom_break custom_break your username reveals something of you . custom_break hope this helps . +p10188 +aVman i CUSTOM_NUMBER % agree with you shaunie fake ass with them even fake ass tear can cry me a river the bitch just like them to other rats are trying to save face +p10189 +aVwell guess what .. i don't give a fuck lol custom_break is mom though get your english right nigga !! +p10190 +aVi finally figured out what that white shit is lmao . dude bust a nut in her ass and she spit it out in the pool . gross ass females . +p10191 +aV* desecrate custom_break custom_break custom_break are you happy now ? +p10192 +aVyes , you probably are . +p10193 +aVyou are certainly entitle to your opinion +p10194 +aVwhat kind of porn do you watch ? this isn't porn . +p10195 +aVyou must have great abs by now . +p10196 +aVshouldn't you be at your ballet lesson little girl ? +p10197 +aVfucking red neck bitch !! +p10198 +aVkeep whining like a little pu ssy mack . you are making my day . +p10199 +aVyou been goofin ' w / the bees ? +p10200 +aVum are you planning on getting married again ? +p10201 +aVyou are living proof that bath salts effect thinking . +p10202 +aVboy shut up im black i said biscuit cause i didn't want to say bitch so shut ur dumb ass up really bro get a life and get off my cat +p10203 +aVyou must be pretty short bus window lickin special if you aint caught on buy now that iv been makein all the typos in these comments for shitz and giggles .. if not . your as stupid as you think i am sure i made a mistake on the ecard but with bigger issues in the world like murder and abused kids i didnt think it was that bigga rats ass to freak out about , hell im glad i made the mistake laughin at yall pinched ass bitches has been really cheap or is that cheep .. oh well entertainment is entertainment . +p10204 +aVseems like you had a lot of fun ! :) +p10205 +aVnice supercam but plz release a device wid exynos CUSTOM_NUMBER chip .. lg is already on a line wid s CUSTOM_NUMBER quad krait .. stop using exynos CUSTOM_NUMBER nw n also upgrade ur mali gpu to CUSTOM_NUMBER .. it will be a slap on qualcomm's face .. +p10206 +aVwhen you were potty training how did your mama convince you that you weren't melting ? +p10207 +aVi bet you cant dance better you dum bitch stfu .. you proably mad a jamaican fucked you and left you , you dum smut +p10208 +aVyou are clearly stupid , that is what he meant you thumb . +p10209 +aVnrg you are wasting your time +p10210 +aVsounds like your mother . +p10211 +aVfuck off indian makes u proud +p10212 +aVokay , you made your point . hanging around longer means you are flirting with the gay people here . +p10213 +aVfuck you asshole ! do you like that ? +p10214 +aV< span > i don't care much for the lying degenerate bastards . " < / span > custom_break custom_break then how do you live w / yourself ? +p10215 +aVwell said . we need more men like you . thank you . +p10216 +aVyou would be gorg ! +p10217 +aVhow do you feel about free elections ? +p10218 +aVexpat , you gotta be smoking some of barry's maui woowie .. +p10219 +aVthis is america doom , i have been waiting for you fat pepsi drinking clown-burger eating losers to get destroyed by a superior power . death to america ! +p10220 +aVooh , you're giving me a good laugh . :) +p10221 +aVwait it says you are in +p10222 +aVare you talking about her underwear ? +p10223 +aVthat must be a compliment from someone like you lol +p10224 +aVno . you didn't talk about your iq ! +p10225 +aVrofl , you are showing signs of desperation . +p10226 +aVyour statements are idiotic and juvenile . +p10227 +aVsounds like your wife has a pen CUSTOM_NUMBER s .. with you that's understandable . +p10228 +aVthere's a difference between " nigga " and " nigger " nigger is a racist term and everyone runs around saying saying " nigga " even in music now a days and if it was so bad you guys wouldn't be running around calling each other it . that's like girls running around getting offended when you call them bitches yet they run around calling themselves " bad bitches " +p10229 +aVand you r sucking my dope dyck to hard . take your fake ass chief keef face up the block . +p10230 +aVyou're not really going to watch , are you ? +p10231 +aVit's kinda embarrassing when you diss a nigga this long , and he just responding . don't like him keep it moving and make hits , we all know wayne fake anyway +p10232 +aVlooks like you kath ! +p10233 +aVnotice they were listed as good manners .. custom_break custom_break .. for children . custom_break custom_break which leaves me way in the fucking clear . fuck erasmus , anyway . preachy old fuck . +p10234 +aVaaronchi .. you are too stupid to know sarcasm when it is in your face .. consider yourself castigated , and get lost .. +p10235 +aVhe does have that ' would you fuck me ? .. i'd fuck me ' look in his eyes . custom_break custom_break jesus h . fucking christ what is going on this week ? +p10236 +aVtypical republican .. accept no blame for your repeated clusterfucks and blame anyone other than yourselves . custom_break custom_break grow up . +p10237 +aVbettynm it's too bad your not one of the idiots who can read as he's said it's hidden and not buried . as as outsider to your area , i think it's a shame that your so greedy that you don't want to share the beautiful of this land with others too . you sound like a bitter sad person . i'd take bad karma over that , any day . +p10238 +aVoh like your not stupid you .. +p10239 +aVi'm sure your mom is proud of you . +p10240 +aVrookie .. run on home .. your momma's calling +p10241 +aVyour a f ucking idiot . enjoy your dream world +p10242 +aVyou're another fucking idiot who knows nothing about drugs . custom_break custom_break wikipedia has the molecular fucking structure of a great many different illegal drugs , fucko . +p10243 +aVyou can show me your trophy any time . +p10244 +aVyou spelled dickhead wrong +p10245 +aVu look like a damn fool +p10246 +aVleyland is a total idiot . is he referring to the fact he is incapable of making a decision custom_break +p10247 +aVyou must be very proud of yourself +p10248 +aVwow .. bendtner ? .. are you on drugs ? .. you really fuckedup my day mentioning the name of such a crappy ass player with the gum in his mouth and playin like a lil bitch +p10249 +aVwhat is your problem CUSTOM_NUMBER ? why can't you just have normal and civil conversations . come on - please grow up so others can enjoy commenting . +p10250 +aVwhere are you , machynlleth or dundee ? +p10251 +aVjust face it ; you're an idiot !! +p10252 +aVwhatever soggybutt . i'll say it again . you and your bunch of crackalaks , derelects , river rats , and new south jackwagons need to learn some manners . completely disrespectful and utterly classless . +p10253 +aVobozonomore \u005c u CUSTOM_NUMBER gee , your comments are sure enlightening ! +p10254 +aVwhile you lame asses watch e CUSTOM_NUMBER on your computer .. i'll go to e CUSTOM_NUMBER in los angeles because i have my e CUSTOM_NUMBER badge and i didn't pay for shit :d trolololololol .. i tell you guys how the game is while im playing it and you will be watching :d +p10255 +aVgotta keep up your strength to play and sing like you do . +p10256 +aVover CUSTOM_NUMBER , CUSTOM_NUMBER views fuck boy .. swallow that +p10257 +aVde trute are you south american ? +p10258 +aVyou and the coon can drop trow +p10259 +aVyou are the biggest idiot on these boards . typical +p10260 +aVwhat are you smoking ? +p10261 +aVhow old are you CUSTOM_NUMBER ? .. +p10262 +aVfyi .. who gives a shit . it's just a fricken typo .. you'll live . +p10263 +aVcustom_break english please you are in the united states ! +p10264 +aVCUSTOM_AT how are you not ded +p10265 +aVyou are such a good friend !! +p10266 +aVi use the word damn in a post and you reject it . how about this , fuck you ! +p10267 +aVgirls need to learn when to shut up , she is beautiful , she knows it and that's all that really matters you don't know if she unhealthy , be quiet with your words of hate we ( the majority of women ) are tired if the hate . +p10268 +aVnot unless you are a mormon in good standing . +p10269 +aVmore juvenile idiocy from a juvenile idiot . +p10270 +aVoh look we have a little troll named igraymatter CUSTOM_NUMBER . hey libfucktard , why don't you go and perform an impossible act !! +p10271 +aVif you are a hikker gps logger ii would be a gps tracking of choice .. +p10272 +aVi don't care how you feel , i don't care what you think about me .. i am , in fact , the rational one in this conversation and you continued display of stupidity is more evidence of your blind allegiance to true source of " change " you poltroons think we need - is marxism . you idiots are plunging headlong to your own destruction and laughing and cheering about it , you a pitiful , pathetic spectacle .. +p10273 +aVi don't get your meaning . would you explain ? +p10274 +aVyou mean perfect * but you're stupid , how can you hate white people on the bases of CUSTOM_NUMBER bitches being stupid ?? +p10275 +aVso could your comment +p10276 +aVyou are amazing randy g ! +p10277 +aVstop trolling boy . you're embarrassing beantown . +p10278 +aVyes , but you are not sure if you have anyone better than manningham . +p10279 +aVjust like the guys said .. custom_break custom_break another fake job . wincey fraudy woods !! +p10280 +aVyou are dumb +p10281 +aVjust because you are attracted to other races , doesn't mean you worship them +p10282 +aVyou truly don't know what your talking about . +p10283 +aVone of you is +p10284 +aVlebron can suck a dick +p10285 +aVthe murder victim was not impaired . just because you have drugs in your system does not mean you are impaired and the store manager did not think the murder victim was impaired . you are lying scum +p10286 +aVand worse yet .. you are ugly and old +p10287 +aVyou're so cute . +p10288 +aVnakedness should only be allowed in the streets by girls / women aged between CUSTOM_NUMBER yrs old - CUSTOM_NUMBER yrs old .. no fat girls .. and no ugly girls .. :-) lol +p10289 +aVyou dnt like lil b ? that's a first , you're a faggot . +p10290 +aVyou are such an idi CUSTOM_NUMBER t CUSTOM_NUMBER . +p10291 +aVit's because you slide so damn much +p10292 +aVwho's the dumb one , uh you ! grow up ! +p10293 +aVand you'd be wrong too . +p10294 +aVno but you are . keep crying about that ghost that ain't there . +p10295 +aVor not listen to a racist like you . +p10296 +aVyou're smart . +p10297 +aVshut the fuck up chiodo you know nothing about soccer +p10298 +aVas usual you are clueless .. +p10299 +aVat first i hated you , now i kinda like your comments , if you are kidding is good for me , and if you truly believe that is even better , i like all points of view and all personalities , and yours is certainly unique . +p10300 +aVbitch you were just callin all hispanics mexican ? what do you mean grandpa lips thats rascist as hell . o lawwdd i'm gonna have you lookin hard in the mirror after all this +p10301 +aVas usual , pure hogwash no matter how many fake names you use . you thick or what ? wacko was moron . you lying loser fall into another league . you don't read well do you ? you were taught the truth about wacko's not so giving charities that were nothing but a front . as usual , idiot , uou ignore the truth and post pure lies about the dead pedophile . +p10302 +aVis it possible for you to focus ? +p10303 +aVi hate-faggots and god hates-faggots : custom_break custom_break what's the difference between a fag and a refrigerator ? refrigerators don't fart when you put the meat in . +p10304 +aVyou said over on nadal because of clay +p10305 +aVyou are a law student . +p10306 +aVhite people are fucking animals , all the evil and dirty shit y'all do , but y'all pic every little thing a black person does and try to make us look bad when y'all do the most crazy dumb and the most evil shit everyday !! +p10307 +aVall your comments so far have been retarded you should go somewhere else +p10308 +aVCUSTOM_AT - i'll cut to the chase : you're an idiot . granted , duke , ironman , nusholtz , and realityczech may be dumber , but you are borderline mentally retarded . +p10309 +aVdamn .. you really must give af +p10310 +aVare you a registered massage therapist ? +p10311 +aVcrushed that pussy ass nigga gayne +p10312 +aVshut up same tired comments you suck +p10313 +aVyou must be a heat fan too , right ? +p10314 +aVand if cameron said he was not backing hunt you would all be saying what a traitorous person he was for not backing his minister . you really are all rather pitiable with your rantings . +p10315 +aVi thought , like pot , you couldn't overdose on lsd . any dose of either could fuck you up depending on your personality and constitution . +p10316 +aVi loved his clean cut dick , hoped i am there to suck it and lick and allow him to fuck me .. +p10317 +aVthe cream of the cream " .. wtf are you talking about kg +p10318 +aVdon't get out of your cave much , do you . +p10319 +aVyou are going to be so disappointed . +p10320 +aVno way , your dad is way to cool . +p10321 +aVyou are truly an idiot . the man pitched a no hitter . just shut up . +p10322 +aVwhy ? are you a hunch back ? lol +p10323 +aVmisha , what is you ? +p10324 +aVyou are a complete idiot robert .. peole like you are why this country is losing freedom every daythis moron ( potus ) is in office .. +p10325 +aVdon't let them get you down brother . +p10326 +aVde eso no hay duda chavez .. el fraude institucional esta garantizado .. la maquinita de los votos .. esta completamente ajustada a su favor custom_break custom_break noticia seria .. si fuera algo diferente .. si la oposicion fuera la que ganara custom_break custom_break la oposicion venezolana .. es completamente ingenua .. si piensa que puede ganarle en unas elecciones a chavez .. un hombre que tiene el control total de todos los poderes en venezuela . custom_break custom_break si quieren que chavez salga del poder .. deben agarrar a chavez con su pijamita transparente .. subirlo en un helicoptero .. y tirarlo sin paracaida en el orinoco custom_break custom_break solo asi .. chavez sale del poder custom_break custom_break .. +p10327 +aVthere you are ! had to unfollow then follow you again to see your pins +p10328 +aVlike if you have a diploma ( of any kind ) . custom_break custom_break comment if your getting money with that white ( coke ) and it's mob ( money over bitches ) and stop snitchin or making a rap career . +p10329 +aVyou must be hanging out with gucci +p10330 +aVjimmy .. produce anything of any value that anyone wants or needs and you'll find someone willing to trade with you for something you want or need . it's very simple . custom_break custom_break tip of the day : whining is worthless . +p10331 +aVpathetic . she should be ashamed of herself . if this is what it takes to get attention then she should go get a real life or crawl back under the rock from which she came . +p10332 +aVyou be nice now . and don't you dare tell me you're a red head !! +p10333 +aVjudging by your prior posts listed in your profile , you are a piece of foul white trash . what kind of animals raised you ? +p10334 +aVyour mom smells like fish +p10335 +aVCUSTOM_AT :d isqus custom_break custom_break you're an idiot . where did it say anywhere in this article that he was a crooked cop ? oh that's right nowhere .. quit being so quick to judge moron . +p10336 +aVcellular enhancer or signal booster is becoming incredibly popular among cell phone users . it will provide a better cell phone coverage in poor signal areas which is it's main function . +p10337 +aVyou are some sad pathetic loser donkey . +p10338 +aVwhats a person who makes up stupid handles and trolls internet message boards ? - a future star of an episode of hoarders . maybe give away a dozen or CUSTOM_NUMBER of those cats you have in your moms basement +p10339 +aVshit man this shit sucks . and it's fucked up because they ain't got anything else to sell +p10340 +aVyou weak ass bitch +p10341 +aVhi , where did you get your mask from ? and how much is it ? thank you ! +p10342 +aVi guarantee you are wrong . no way in hell the refs call five t's on miami . +p10343 +aVwere fucked its too late now . +p10344 +aVgood morning .. ugh ! * headache * * rolls over in bed and snorts a line , farts , scratch head , roll a joint and lights it up , takes a shot of rum ! * good morning .. my worthless little monkeys bickering amongst each other , eating your own faeces while trying to make a pathetic point ! tis a baeutiful day for trolling insn't it ? how are you all this wonderful afternoon ? +p10345 +aVcats are fucking horrible creatures anyway . that little user deserves it's outift . +p10346 +aVto be quite honest , the platform be it xbox , ps CUSTOM_NUMBER or pc really does not matter just as long as you have a passion for gaming and you enjoy gaming , now stfu stupid fan boys , stop bitching on the internet and get playing games ! +p10347 +aVyeah ! you are so boring , teresa forgot about you while making a toast . lol boring and fugly hubby . +p10348 +aVlol you damn right !! +p10349 +aVpathetic little man . cleanse your mind . take your laxative . +p10350 +aVwhat a dumb bitch !! don't you research your guests before they appear on your show ? custom_break custom_break hats off to martin for being a class act ! +p10351 +aVyou did wear out your welcome . & nbsp ; +p10352 +aVyou are going to go to hell +p10353 +aVand you've apparently " neva " been to school +p10354 +aVyou sir are a complete ignoramus . +p10355 +aVquit harassing me . i know who you are , just stop . it's pathetic . +p10356 +aVhell naw i wasn't paying attention to what his fat ass said , get off his dick +p10357 +aVfuck ross fuck saigon and fuck u bitch ass nigga who the fuck cares about music .. its art imitating life +p10358 +aVthen so is yours +p10359 +aVlook wilfred brimley , are you really that stupid .. is your diebeetez acting up again .. you need to see a professional about the dementia you are suffering from .. communist state ? that is what you and the rest of the obamanites have created for the whole country .. and for that we salute you with a number #1 with our middle fingers .. the reason that this country is going down the drain is because half of this country is as dumb ( i know that is really tough ) or dumber ( nearly impossible ) than you +p10360 +aVdam willynut your good . +p10361 +aVplex whore must die +p10362 +aVyes nas u keep giving us good shit to jam to thank you real hiphop +p10363 +aVscrew you bodine . +p10364 +aVyou'll be proven wrong . +p10365 +aVmuthafucka its justin beiber not manny pacquiao . hes a singer not a boxer lilttle white boy doesnt know shit about fighting that was probably his fist time even touch a glove +p10366 +aVthey won't know unless you tell them . +p10367 +aVlmao no dummy how many times you said bitch please . i realize youre slower than dog shit but at least attemp to keep up lmao +p10368 +aVtruth , but are you rich . isn't that a more relevant situation ? +p10369 +aVknow who else doesnt seserve respsct ? ignorant , prejudiced , close minded assholes like you pinkiesout ! +p10370 +aVa $ ap autumn you stupid bitch it's about countries not states +p10371 +aVleeanne , so sorry for the down time . our little server has been under the weather , but it's feeling fine now . we'll try to prevent it from happening again . +p10372 +aVyou're an idiot . just stop now . +p10373 +aVyou are stunningly beautiful .. exquisite in very way .. custom_break and your fashion sense is outstanding .. your legs are to die for , and i know great legs , i have been in ballet for CUSTOM_NUMBER years .. and don't get me started about your truly lovely hair .. it's perfect on you . custom_break +p10374 +aVyou are not an american , do you think landing here dry foot qualifies you as an american +p10375 +aVi really feel for you ! please tell me that you are just scutca posting under a different screen name , and not really someone that has such low self esteem that you idolise ' their ' intelligence ? +p10376 +aVreally ? you're blaming the construction worker ? you are a monday morning quarterback douche . +p10377 +aVyou don't know until you try . +p10378 +aVnba refs need to get off their high horses .. fuckingg scum +p10379 +aVyou must be an arsenal fan , aren't you ? +p10380 +aVwhite girls like it rough .. don't ask a nigga too smack ya ass then , she ain't say " smack it soft +p10381 +aVsdjammer - you are a true american idiot .. +p10382 +aVfuck it . pens in CUSTOM_NUMBER . +p10383 +aVso which village in uganda are you its idiot ? probably kampala . +p10384 +aVyou promised to lick my ass until my roids bleed . so what happened are you still stuck with your daddy's ball up your ass ? +p10385 +aVhaha and you still live in the CUSTOM_NUMBER ' s . +p10386 +aVhow about you shut the fuck up ? if this was a seriously depressed person , he would have tried to kill himself already . your comments are always crappy and full of negativity . stop . +p10387 +aVyou are a cocky little f a g so it will be extra sweet when the devils win the cup .. again by the way . +p10388 +aVyou are too kind +p10389 +aVhave you been to arkansas ? +p10390 +aVyes , i guess you are . +p10391 +aVur fat and gay +p10392 +aVare you mossad +p10393 +aVyou will name her stacy after your favorite person . +p10394 +aVthat fatass goober let a rapist out of prison so he could rape again , and this time murder all of the witnesses . fuck you huckabee . +p10395 +aVhi nana .. how are you today ? +p10396 +aVyou must be a thunder fan . the def . haven't been playing better than the spurs , its been up and up imo . only because of homecourt . when the thunder beat the spurs at home , their dangerous . +p10397 +aVmock horror as in " you didn't build that " or that anyone should dare ask to tax returns from a presidential candidate ? please jennifer , put away the pom poms and try to develop a sliver of objectivity . after all , you are supposed to be somewhat objective , if not rational . romney has repeatedly failed to condemn the looney element in his party . he has absolutely no backbone , and apparently lacks a filter on his mouth . +p10398 +aVtwas a good effort , but some of your prior material was better =d +p10399 +aVyou obviously know jack about basket ball . all your opinions are moot at this point +p10400 +aVmeinsenkaye CUSTOM_NUMBER : ha ! you idiot +p10401 +aVnot what i was saying at all .. who let your retarded ass out of the basement ? +p10402 +aVwhy are you posing as a dodger fan idiot ? you might want to clear your history moron . another skirts fan exposed ! +p10403 +aVseriously chelsea lol are you and harry harris related ;) ?? +p10404 +aVgreat shots chris .. what lens were you using ? +p10405 +aVyes lets be more like those countries you list custom_break custom_break zeig heil you white trash trailer rubbish +p10406 +aVyou're welcome custom_break +p10407 +aVwell since feb . any way . now im just trying to get my hands on everything he's been in . +p10408 +aVyou are totally delusional .. custom_break custom_break +p10409 +aVyou compare israel with the nazi . " i don't agree " , my .. +p10410 +aVdenise , girlfriend you are the queen of jello shots . custom_break +p10411 +aVthat's funny because , while you were mouthing off , you clearly demonstrated your inability to spell it . but that's to be expected of libtards who exist sans clue . +p10412 +aVnahh i am not like this you're just pussy ass cracker .. stfu fag ! +p10413 +aVvote for barack obama . because if you don't , mitt romney will be your president . +p10414 +aVniggas really comparing pusha's braids to asap rocky's hair braids ? fuck outta here with that fruitball talk . i guess bone thugs was biting asap rocky in CUSTOM_NUMBER ' too huh ? smh .. +p10415 +aVwoh !! sound like you have read all holy books . +p10416 +aVred sox fans : you're teams's attendance is pitiful and your fanbase is not knowledgable . custom_break rays fans : yes , but our team and manager are better than yours . custom_break no need to bother reading the rest of the comments +p10417 +aVyou are most welcome . now let's see some icons ! +p10418 +aVlol you act like you have been watching basketball forever , its only ben CUSTOM_NUMBER years moron custom_break +p10419 +aVtraitor .. you are banished +p10420 +aVshame on you for using a sock puppet troll account . +p10421 +aVlouie would probably tell you to kill yourself .. +p10422 +aVweezy get money .. fuck what they talking bout +p10423 +aVwatch yourself blck gg ! i don't know who it is you are pointing this comment towards . one words for you will have to be is disrespectful . talk what you know because if you did you will now that everybody came from a black women . so watch your god damn mouth !! +p10424 +aVwho the hell died and left you boss ? shut up you whiny ho . +p10425 +aVare you working for the zimermans , amy ? take your scam posts elsewhere . +p10426 +aVare you from spain ? +p10427 +aVi keep forgetting how profoundly stupid this woman is until she opens her mouth . or in this case , gets a hold of a keyboard . +p10428 +aVyou are a moron . get off the guys dick +p10429 +aVwhat are you talking about ?? custom_break totally off . +p10430 +aVfirstly , go back to skool , you really need to learn how to spell before you start calling someone retarded custom_break and i'm sorry you have been sadly misinformed custom_break i chose to walk away from the drama and lies , if the locks were changed , it was a waste of time i threw my key away when i made the choice to walk away . custom_break and if you had the balls to face me , you would not have hidden like a coward when they tried to serve you . custom_break or you would have shown up and backed your girl . custom_break +p10431 +aVomg .. pamela .. you are so right ! :) +p10432 +aVthe knicks ? wtf are you smoking +p10433 +aVwhat are you talking about ? ! ? +p10434 +aVonly if you were living in the other half +p10435 +aVare you sure this won't induce epilepsy / blurred vision / both ? :) +p10436 +aVhey , einstein , perhaps you should have read and understood what you quoted , since it clearly outlines a war room to blunt any movement post-dnc , not during . custom_break custom_break is it really shocking that the gop would have a war room in nc , a swing state ? custom_break custom_break reading is fundamental . +p10437 +aVCUSTOM_AT << -- are you back on prozac ?? +p10438 +aVi think you are making up your own interpretation +p10439 +aVwere higher than you ! are you stupid +p10440 +aVlol .. ralph you are the guys who are still in moi era .. +p10441 +aVyou're a moron ! +p10442 +aVfuck u minier +p10443 +aVCUSTOM_AT - news - CUSTOM_NUMBER fc CUSTOM_NUMBER f CUSTOM_NUMBER feb CUSTOM_NUMBER baed CUSTOM_NUMBER a CUSTOM_NUMBER e CUSTOM_NUMBER :d isqus you hit the nail on the head . illegal is illegal . +p10444 +aVyou've got great taste ! +p10445 +aVhopefully your comments will start winding down .. +p10446 +aVjust because everyone dies does not mean that your gains are offset by another's losses . custom_break custom_break you are confused . another does not have to " lose " for you to " win " something in life . custom_break custom_break what a pathetic little world you live in if you think that is the case . custom_break custom_break +p10447 +aVmikefromaz CUSTOM_NUMBER - joe , thats because your a loser , you come on here spouting your big mouth like you know something , and you dont know nanda ! you said there would only be CUSTOM_NUMBER rb taken in the first rd of the draft there were CUSTOM_NUMBER you moron !! custom_break custom_break joe's the loser ? joe's the one who spouts off ? joe's the one that only pretends to know football ? custom_break custom_break and then you go off about how he can't read the fos ' minds ? you , sir , are half a plum short of a fruit pie . +p10448 +aVyou are a neanderthal . +p10449 +aVyour face resembles a bitch you fuckin twat +p10450 +aVpoor analogy . at restaurants you can always order an extra side-dish for a small price if you are still hungry , you don't need to order an entire extra meal . it's not fair to make fat people pay for an entire extra seat when they only need a few inches . +p10451 +aVyou are a fucking loon . seriously . you really come across as someone with mental illness . no emoticons . i think you are seriously unhinged and you need some help . custom_break custom_break whoever hurt you , or whatever happened you need to get that addressed , because frank , y , your behavior suggest we will read about you in some mass shooting . custom_break custom_break and yes , you indeed hate men . in almost every thread i have seen of yours , you just go ballistic toward men n general . custom_break custom_break get help . custom_break custom_break seriously . +p10452 +aVyou moron . +p10453 +aVhow creative " maggot " , you are too funny . i suggest reading some books to expand your vocabulary . have a wonderful day red leg . +p10454 +aVwhat was your excuse for arab terror long before the settlement excuse ? centuries ago ? custom_break which borders do hamas , their elected govt . , accept in return for peace ? custom_break which borders do fatah maps show as israel ? what do they teach their children ? custom_break you are a bunch of lying terrorists who teach genocide not peace . custom_break +p10455 +aVnot right now you don't . +p10456 +aVjean jacket .. thats that shit i dont like +p10457 +aVdude you're an idiot .. alabama didn't play wku +p10458 +aVshitbagger , go fuck your mother up the ass without lube . +p10459 +aVyou got pathetic and troll right . two outta three ain't bad . +p10460 +aVlauren ! you are so freaking beautiful !! +p10461 +aVyou must be a dumbass nigga your opinion dose not matter here who gives two fucks about your thoughts on nas he is the truth nigga go kill yo self and slap your mom for raising a ignorant fuck as yourself hoe ! +p10462 +aVapparently , bad officiating never gets old to you morons . +p10463 +aVdamn how come i didn't see no shit like this when i was in iraq for a whole year , that's fucked up !! +p10464 +aVno , you are definitely a virgin . +p10465 +aVyou sir . are re . tarded . +p10466 +aVyou're a gay transvestite , clearly in the middle of yet another ho mo sex u al panic . +p10467 +aVso are you x +p10468 +aVyou forget to like your posts .. you must be shook up a bit .. +p10469 +aVyour all mostly worthless shit cause your arguing over religion on the internet and it doesn't even exist grow a pair and go out meet people stop going on like you all know whats going on when really you got your head stuck your own ass reading this realize there is no god hes just a chinese whisper +p10470 +aVzero help , the shaq daddy zero help ?? you are an imbecile +p10471 +aVim waiting for your moms +p10472 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > CUSTOM_NUMBER : CUSTOM_NUMBER am on a friday night .. wow custom_break custom_break seriously get a life or girlfriend you are pathetic custom_break custom_break < / div > < / div > +p10473 +aVand those from your north are the saints that must live ? a demented and stupid fellow like you liked this shit you posted as comment . +p10474 +aVyou must be very proud to say your team won CUSTOM_NUMBER years ago . go devils +p10475 +aVkinda like your name . +p10476 +aVyou suck coffey +p10477 +aVyou tool . this story is about charity and then you come in " herp a derp .. cubs suck .. derp .. curse .. go sox ! " screw off idiot +p10478 +aVgod , you're as bad of an a-hole and fud-spreader as the person you are responding to .. +p10479 +aVhave you ever been though a hurricane moron ? its a lot more than just " a little rain " . i guess when you get hit with the worst case scenario you can be on your own . good luck +p10480 +aVmy first kdrama crush :d looking forward to your comeback +p10481 +aVcould you improve your picture viewer as it reloads the who page just to move to the next image . unless you are counting each image as a page view for your hits its not what i would call a good idea , +p10482 +aVnope . better then your common sense . +p10483 +aVbring you checkbook , we're scumbags but we're not cheap . +p10484 +aVsimpler potential explanation : the " msm " has no clue what the hell an < i > anarchist / situationalist collective < / i > is , nor do its readers . +p10485 +aVdo you remember out posters lol +p10486 +aVare you having trouble remembering which account your signed into ? +p10487 +aVyes !! exellent i fucking hate dog owers that let their dogs shite on custom_break the ground , especially right in the middle of paths and pavements . custom_break custom_break custom_break custom_break they always say to me ' good morning . ' when they walk by me .. it will be a custom_break good morining if you'd stop letting your dogs shit on the middle of the custom_break path , twats . +p10488 +aVcant wait for drita to hit tht bitch in her mouth .. bitch talk to fck'n much .. fck you mean crumb snatcher . ramona is a punk pussy baby back bitch . drita , make the concert cry whn u bust ur jaw open . +p10489 +aVwow looks like two white guys . we need to ban all white folks from miami . just like you want to ban hiphop memorial day on sb . custom_break this must be obama's fault right . u dumb asses +p10490 +aVyou can put your egg money on that , +p10491 +aVCUSTOM_NUMBER astros but your point is still valid . +p10492 +aVwhen your species finally evolves , then we can talk , until then you are nothing more than a common pet . +p10493 +aVanything past the CUSTOM_NUMBER th inning with zito you are asking for trouble . +p10494 +aVopinion CUSTOM_NUMBER it , custom_break custom_break how you know what putin says ? you are reading his mind ? +p10495 +aVshh you'll get the t-gas . +p10496 +aVhaha , you're funny and cool , man . so edgy . +p10497 +aVyes , you are so correct . +p10498 +aVjeff lebowski shut your dumb mouth . im CUSTOM_NUMBER CUSTOM_NUMBER / CUSTOM_NUMBER and just barely got done with my junior year also and ive known the kid who was driving since about CUSTOM_NUMBER th grade and i believe he barely turned CUSTOM_NUMBER . so i take offense to you calling all of us in the low desert inbred retards cus i doubt you took precalculus as a junior your high school year and i doubt u took calculus ab as a senior . get your facts straight before just getting all crazy and calling everyone special ed or retards or morons . im friends with both the driver and the girl whos still in the coma .. no one CUSTOM_NUMBER % knows the truth yet besides the driver as of what wrong . +p10499 +aValright jay z , go suck kanye's dick . +p10500 +aVfucking regretsy ! lol custom_break custom_break although these stuff are good , you can also find some real crap there ! custom_break custom_break oh , christian gray .. fuck me tied up to the fucking ceiling ! +p10501 +aVtype your comment here . +p10502 +aVand you are satan . +p10503 +aVwhat fraud ? what are you afraid of anyway ? +p10504 +aVyou mean little tony is not bunting ? lololololoololololololololoololololololoolololololololoolol !! +p10505 +aVhow are your other sports doing ? +p10506 +aVceltics are still a good defensive team , you are a moron . +p10507 +aVpolice shot and killed a naked guy who was eating another naked guy's face off . custom_break custom_break two other guys tried to shoot each other over who made better kool-aid . custom_break custom_break now you're all caught up . +p10508 +aVare you trying to bad mouth boston sports and your from tampa bay ? +p10509 +aVtotally agree on the mamamia thing .. not specifically re baby bodies , but i just feel like everything on there seems quite judgy / one sided these days . too many cat fights in the comments as well . custom_break custom_break i really am going to miss your posts but i am so happy for you and your new writing journey ! you're going to rock the shit out of it , i'm sure xx custom_break +p10510 +aVmichigan currently has felons on their team practicing as we speak . are you dumb ? +p10511 +aVyou , both are homosexuals - \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER e CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER e CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER e CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER e CUSTOM_NUMBER \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER b \u005c u CUSTOM_NUMBER f CUSTOM_NUMBER b +p10512 +aVyou are hilarious . +p10513 +aVwhat utter nonsense you speak man ! +p10514 +aVlmao this nigga is so fuckin funny +p10515 +aVyou really believe that , don't you ? custom_break custom_break fucking amazing that you can tie your shoes in the morning if your synapses fire so randomly and irrationally . +p10516 +aVwill you be open sourcing the r code ? +p10517 +aVif you are hanging out with militants , then expect to die with them . +p10518 +aVget up off your fat lazy overpaid subsidised arses and clean your own mess up . you have plenty of time on your hands . +p10519 +aVstop crying you pusse ! +p10520 +aVnigga go fuckin hang yourself you self loathing troll . why the fuck are you following my comments ? ! ? you just proved to me that you have absolutely no life ! this video and the other video are CUSTOM_NUMBER completely different situations , so there is no comparison . gtfo & finish getting your ged before i violate you and use your mouth to eat my dogs shit & drink his piss . +p10521 +aVhow much do you charge for your vote ? +p10522 +aVyou were actually CUSTOM_NUMBER - CUSTOM_NUMBER . +p10523 +aVso sorry about your mom . our prayers are with you all charlie timmons and family +p10524 +aVlol .. how many times do you go to a village and treat patients with all your heart ? custom_break all of you are fucking bullshit .. +p10525 +aVthat would look great on you ! +p10526 +aVfucked +p10527 +aVmuch better than being a dumbazz like you +p10528 +aVyou're an idiot ! +p10529 +aVuh no . we're pointing out the colossal stupidity of women who advocate the murder of the next generation of women . but then , you're probably a liberal sexist who is only too happy to be able to use women and throw them away consequence free . +p10530 +aVparabens verd \u005c xe CUSTOM_NUMBER o . custom_break o palmeiras foi melhor que o santos , mas perdeu pq o santos tem jogadores de mais qualidade . isso queo tirone tem que entender . custom_break n \u005c xe CUSTOM_NUMBER o adianta voce criar CUSTOM_NUMBER chances de gol , perder nove , o advers \u005c xe CUSTOM_NUMBER rio criar CUSTOM_NUMBER , CUSTOM_NUMBER , o zagueiro do palmeiras falahar pela ruindade , o goleiro aceitar e voce levar CUSTOM_NUMBER gols nao existe time que resita a isso . custom_break e outra jogar no pacaembu \u005c xe CUSTOM_NUMBER jogar fora , \u005c xe CUSTOM_NUMBER prejudicial ao palmeiras . custom_break e os otrcedores que reclama , epsero que sua pregui \u005c xe CUSTOM_NUMBER a de andar CUSTOM_NUMBER kilometros a mais valha os CUSTOM_NUMBER pontos do verd \u005c xe CUSTOM_NUMBER o perdiodos . custom_break enquanto la for usucapio do timeco , sera assim . +p10531 +aVare you into july yet +p10532 +aVheh , no reason to yell . all i did was state the obvious . you , sir , are a f \u005c xfccking idiot . +p10533 +aVaamir ji your intentions are to make money out of provoking public feelings , why dont you donate all your earnings from satmave jayte to dr. devi shetty's hospital . generics are not the solution as spurious medicines are not stoppable in india due to corruption , so mr aamir khan do not preach . agreed there are black sheep in every profession including medical , but you are trying to defame even good doctors , +p10534 +aVyeah , wtf ? i'm an old man now i forget shit all the time . a big one is buttoning the fly on my underwear before i wonder around the yard or mozy over to the neighbors . i mozied over the other day to talk to larry and karen the neighbors about getting their house re-sided and lo and behold what happens ? an unscheduled guest appearance by none other than little anthony and the imperials . when i realize a ' guest appearance ' happened i cover it by saying this " hey ! look who's here ! well hello boys . let me introduce you , larry , karen this is little anthony and the imperials , they've been on tour for a long time and probably a little hungry from being on the road . they like cake , you got any cake ? " i'm not responsible . custom_break +p10535 +aVseriously . get some rest you are delirious . +p10536 +aVi wouldn't wear any of that shit . people who are slaves to the latest " trend " are soon parted from their money . +p10537 +aVyour ugly +p10538 +aVtalk about her how we wish , you are a nobody " - and you say your closet is clean and you have morals ?? +p10539 +aVyes , you are one sorry individual .. +p10540 +aVwell he did fuck up the blackwater review +p10541 +aVwhat was your record in CUSTOM_NUMBER , you dont even have a right to mention fluke +p10542 +aVshit was funny as hell blackman's the shit fuck all you haters +p10543 +aVp.s. if you don't love dogs , you are not good people . +p10544 +aVi can type how i wanna i dont give a fuck . i trynna get attention , i dont give a fuck . thats what people needa know bout me , i dont give a fuck lol +p10545 +aVyou need to get laid . doing yourself every night isn't good for the brain , as shown by your daily stupidity . i think from now i'll just ignore you , and let others show you up for the fool you are , i've got better things to do . goodnight . +p10546 +aVwhat is your point eggroll ? +p10547 +aVracist ? seriously ? how stupid are you , exactly ? +p10548 +aVbeast , you're on +p10549 +aVyou are completely delusional . +p10550 +aVnacho chomping retards ? wow , how pleasant of you . +p10551 +aVlmao this guy is going to suck ! all of you giant fg's suck too ! +p10552 +aVyour crystal balls are cracked . +p10553 +aVhang on , eduardo , what's your home address ? i'll come forcefully kick custom_break your door down , take over your house , if you try and kick me out , i'll custom_break seriously physically harm you , because as you pointed out , right to self custom_break defence !! i hope you realise how retarded your argument is , truely ! custom_break custom_break +p10554 +aVthey're either idiots or a $$ holes . if they're idiots , you can't expect them to be rational and if they're a $$ holes , you can't expect them to be civil +p10555 +aVor go home and kill your wife and son then yourself custom_break - chris benoit ( white guy ) +p10556 +aVidiot if you really believe thus +p10557 +aVdude , you are sick bro . +p10558 +aVso are your jokes !! +p10559 +aVi wen to high school with a pen twirler . unfortunately i never mastered it . i also can't lift one eyebrow or wiggle my ears either in tandem or singly . obviously i'm an under achiever . +p10560 +aVso that's the best you've got : dude we all do it so when we kill somebody you need to just , like , get over it . you're taking up air better used elsewhere . +p10561 +aV" .. spending our way out of debt will not get us out of debt . . when only .. " -- and yet you insists on retaining or increasing the level of spending in the military ? we have by far the strongest military in the world already . our military spending is greater than the sum of the rest of the world . are we planning to fight invaders from mars ? or are we planning to defend lubbock from un troops ? custom_break custom_break give me a break . i'll take the last CUSTOM_NUMBER years over the previous CUSTOM_NUMBER years anytime . +p10562 +aVi'm not in america you fool .. go eat bitch ! +p10563 +aVrefs suck suck suck +p10564 +aVnone . we just all are tired of your bullshit . +p10565 +aVno back peddling . let me repeat myself since your dumb ass got confused .. " the country's gone .. it's gone !! also , are you calling moi , moi a dip shit ? ! i'm not the one buying into a covert glaad commercial . dip shit !! +p10566 +aVand dare you say .. +p10567 +aVif afghan troops showed up outside your home , would you run away or get your gun ? +p10568 +aVwhy are you just trashing the man after he made the giant's season last year ? +p10569 +aVyou've got to be joking . have you read his old website ? +p10570 +aVespecially scot haney . always blazoning his gayness . CUSTOM_AT :d isqus CUSTOM_AT :d isqus +p10571 +aVhe brain dead loser . you have no idea what you are talking about . i am everything you thought you may grow up to be . a real man . instead you ended up being a little punk who hides behind his computer . +p10572 +aVyou are too young to remember this one . ;) custom_break +p10573 +aVlong term ? custom_break what the hell is long term , when you're fired after CUSTOM_NUMBER months ? custom_break give martinez " a go " - are you for real ? custom_break do you think about your " comments " before you right them ? custom_break lol +p10574 +aVpepole like me have an opinnin and i expressed it and i don't give a fuck what a jack ass like you gotta say about it +p10575 +aVi like your name , it suits you well . ;-) +p10576 +aVgreat -- you're trying to silence women again with accusations of mental illness . this totally enhances your credibility as a totally-not - sexist-asshat . custom_break custom_break saying " treat people with respect and go fuck yourself if you don't " is evidence of homicidal mania ? really ? i didn't know homicidal maniacs had such deep-seated respected for humanity and pro-social values . custom_break custom_break no . not " men in general . " toward " men who devalue , mock , try to control , shame , and otherwise marginalize women . " these are not the same thing . i have been very specific in the behavior i've been calling out . +p10577 +aVyour announcers sound like as . s holes out of what i've heard lol +p10578 +aVstop bein a house nigga with ur pale ass .. u white with black features , that european blood runnin in ur veins makin u weak son +p10579 +aVyou're both a couple of homos . +p10580 +aVyou are an emasculated second-hand phony mother theresa . +p10581 +aVyou dirty little man you +p10582 +aVman you are right on +p10583 +aVthis will def be your wedding :) lol +p10584 +aVholy shit dat ass +p10585 +aVi thought you were going nuts .. have a good rest big easy before the game tonite or is it this morning or is it this afternoon +p10586 +aVse la legge elettorale rimane quella descritta qui sopra , al posto di un altro inutile timbro , sulla mia scheda elettorale ci metto un bel francobollo e rispedisco tutto al mittente , anzi .. sarebbe bello inviarne un bel p \u005c xf CUSTOM_NUMBER al quirinale qualora a qualcuno piacesse l'idea .. per quanto \u005c xe CUSTOM_NUMBER grande avr \u005c xe CUSTOM_NUMBER una bella cassetta della posta .. capiente .. custom_break .. custom_break sapete cosa mi ricorda questa legge elettorale ? custom_break .. quel film con benigni in cui lui , cameriere in un ristorante ( credo ) , riesce abilmente a dirottare le scelte di un cliente , verso le uniche cose che sono disponibili in cucina .. custom_break custom_break raccappricciante . +p10587 +aVi love you and your style ! +p10588 +aVwow benny , you sure like to paint with a broad brush . talk about ignorant comments . +p10589 +aVfunny how vz hasn't been refining their own oil at all . it's always been foreign companies . custom_break custom_break and funny how idiots like you suspect sabotage where none exists . +p10590 +aVdamn man how many angry comments you going to leave ? +p10591 +aVsoros monkey , crawl back in your tent +p10592 +aVbecause none of you guys have called someone or even txted while driving . you guys are way to harsh . kid was CUSTOM_NUMBER im sure he learned his lesson and feels like shit for taking someones life . people make mistakes and he shouldn't sit in jail for a max sentence . +p10593 +aVa lot of people are saying her spanish is fucked up , i'm sure she knows how to read and write properly in spanish . dominicans speak a broken spanish the same way others speak broken english or other broken languages . her opinion is still her opinion and i agree with her only in the sense that if you are hispanic / latino and want to represent where you are from with pride then you should take out the time to learn how to speak spanish , especially if you weren't taught it . otherwise you're representing a culture you know nothing about . +p10594 +aVkein wort \u005c xfcber die " s \u005c xe CUSTOM_NUMBER uberungsaktionen " die seit wochen stattfinden ? custom_break bewaffnette radikalislamisten t \u005c xf CUSTOM_NUMBER ten , vergewaltigen und \u005c xdcberfallen alle christlichen gemeinden und gemeinschaften . die welt sieht dabei zu und l \u005c xe CUSTOM_NUMBER sst weiterhin moscheen in europa errichten . das ist unbegreifflich . +p10595 +aVyour work is beautiful +p10596 +aVignorance : custom_break lack of knowledge , learning , information . it's okay . its not your fault for your ignorance ; nor would it be your fault if you were stupid too because that is genetic . +p10597 +aVvoldermort what are you doing here ? +p10598 +aVlike your mom ? +p10599 +aVu aint no bitch u a nigga impersonating a bitch +p10600 +aVoh well . if that makes you feel better . +p10601 +aVyou are insane go get help +p10602 +aVrhett CUSTOM_NUMBER .. and i would never say you're a troll +p10603 +aVhahaha .. opicate , you're criticizing people's spelling and english writing , and you , yourself , misspell the word misspell . additionally , if i cared enough , i could point out many misplaced commas and awkward sentences in your little essays above . stick to basketball commentary . as you just proved , nobody has perfect english . +p10604 +aVwow ! and you got away with defamining a president ! you are a total dick custom_break +p10605 +aVhow much does george soros pay you to suck his dick ? +p10606 +aVunder your weave , your ass is " frizzy " so do you hate yourself ? +p10607 +aVloser ! sorry i'm not a bitch and i'll just call you out on it . +p10608 +aVyou are so rude and ignorant . +p10609 +aVwow you are stupid ! packers have CUSTOM_NUMBER nfl championships . +p10610 +aVhaven't you been watching ?? +p10611 +aVwhat is your problem aw +p10612 +aVyour not paying for a logo . its for content . people will complain about anything . thats like saying my shits to brown so ill stick it back in my ass for a different color . wtf ?? +p10613 +aVso fucking sexy !! glad you are taking pics with your gf / wife on the sly .. custom_break +p10614 +aVif it has " nothing to do with race " , why did you hurl that one out there ? custom_break you're frothing , let it go . you're only hurting your own position at this point . +p10615 +aVyou are going to be a beautiful +p10616 +aVyours are always spot-on , mrs CUSTOM_NUMBER ! +p10617 +aVyou've been pwnt .. again . +p10618 +aVthis is such a cute idea . i have always wanted to do this , but spices should be kept in a dark place . :( +p10619 +aVwell you act and talk gay and like satan , so ergo you are a demon possessed faggot . congratulations ! +p10620 +aVyou are replying as if you are better off than lawyers . lol . you simply don't understand the issue so stfu . you are totally a hypocrite because you interpret the law as simple layman but your simple layman's interpretation is simply pathetic and idiotic . +p10621 +aVlebron sucks . if you are a stud and cant shoot over CUSTOM_NUMBER % from the free throw line you're trash . can't make shots outside of CUSTOM_NUMBER feet either +p10622 +aVyou must be a jet and nets fan then +p10623 +aVare you still watching history channel ? +p10624 +aVyou're , not your . +p10625 +aVyeah . one who loves obama . custom_break custom_break you moron . +p10626 +aVyou're crazy +p10627 +aVshat up nobadys listening to your fat ass +p10628 +aVwhat the fuck is wrong with u retard ? +p10629 +aVeww . freak me out why don't you !! +p10630 +aVyou libs really are dumb ! +p10631 +aVwhy are you typing in CUSTOM_NUMBER rd person xd +p10632 +aVhe is a convicted murderer and a hardened terrorist . saying he is a racist complements him and i can't believe he really knows what a racist is . nothing wrong with being a racist it merely means you are supportive of your heritage and beliefs . +p10633 +aVthank you very much for your work +p10634 +aVemily you don't even like tea .. +p10635 +aVim going to kill you . +p10636 +aVochh , i messed up and slept inn like a fucking stupid ass ! but it's good i just paid the over priced CUSTOM_NUMBER for em ! should get em in next week sometime ! +p10637 +aVdraya has a child that has been taken away from her so many times and she is a stripper slore that dated chris brown , karreche y would you invite a woman like that in your life ? thats cause you had no choice in the matter . chris brown is d * cking down both of yall +p10638 +aVCUSTOM_AT freaky shit is about to happen at rourkes house ! +p10639 +aVyou're getting pretty lucky yourself bud haha +p10640 +aVare you roshan narayan's father ? lol +p10641 +aVyou are wise beyond your years . +p10642 +aVthis woman is a racist , a sexist a biggot and a dumbmass . +p10643 +aVrosie , must you insert your homophobia into every comment stream ? +p10644 +aVdude , are you on reddit ? +p10645 +aVyou're funny . +p10646 +aVyou never go full retard . +p10647 +aVwhat a filthy little opportunist the photographer was . you're in college .. think ! +p10648 +aVhaha you really need to grow up . +p10649 +aVyou always have such great comments douch +p10650 +aVwow you will never get it will you . no his attorney did not disclose it to the court . custom_break custom_break the judge revoked his bond because he lied . ( even you just said yourself he never revealed the money he had until after he was bonded out ) custom_break custom_break custom_break damn your dense lol +p10651 +aVdude you look like an absoulte faggott , true heat fan +p10652 +aVyours would be beter , because you don't have a beard ! +p10653 +aVyou must be on drug or welfare roll . +p10654 +aVwhat , are you a kings fan ?? +p10655 +aVhank is crying cause he gets nothing from nobody , no pussy , no man pussy , not even from him self .. and there aint shit he can do about it but cry and bitch +p10656 +aVi don't have a response t that . i simply believe that it is not in the nature of the american voter , at least half of whom are total fucking idiots , to go back and vote for the guy they voted against last time . on average , he or she is too arrogant and ingnorant to do that . and i think the polls show that i am correct . i hope i am wrong . i still think we would have been much better off with a different candidate . no one who voted for barrett is going to vote for walker . so now we are counting on people who voted for walker saying , " gee , i was lied too and i was too stupid to recognize it . i am going to for the guy i voted against last time . " i thinks it is less likely than their voting for some other democrat . i hope i am wrong . +p10657 +aVgo back to toplad , your kind aren't wanted here +p10658 +aVhe must be you'r little buddy or you would look at the facts +p10659 +aVif you were actually saying go away if you dont like it i'd completly agree with you . everyone has a right to their opinion . i didn't come to your board to shit talk it because obviously , i can read , and i wouldn't bother myself to read things that i wasn't interested in . however .. it's one thing to post pics you like because hey , that's what pinterest is for . but it's another to just be a dick to everyone because you feel like they're attacking you and you need to defend yourself . it's just annoying to read that someone that supports intellectual thinking and behavior can't articulate their opinion well enough without saying something like " go blow jesus " or " stfu " . and from what i'm reading you really don't think anyone who disagrees with you deserves respect . so it is what it is . +p10660 +aVCUSTOM_AT you'd think more would miss time with dick friction burns . +p10661 +aVi don't get why people get so offended by shit nowadays . who honestly gives a fuck ? it's a game . people need to realize that reality is worse than this video game trailer . bitch about something that actually matters instead of a CUSTOM_NUMBER min game trailer that you find " distasteful . " gimme a break , if i were a female i could care less . i thought the trailer was awesome . it just goes to show that agent CUSTOM_NUMBER is still a badass . +p10662 +aVyou say you believe in truth , but religion is not truth . its about as much the truth as fairytale . religion is a load of shit !! +p10663 +aVyou are not important enough for anyone to know all that's wrong with you . i know you are a moron in your mother's basement but .. +p10664 +aVso , are you saying your southerns can marry your cousins by gays can't ? hahaha +p10665 +aVyou sound like a heat fan +p10666 +aVdid it used to be part of russia ? were they both part of the ussr ? what fucking languages do they speak ? ukrainian and fucking russian . fuck off bitch . +p10667 +aVthat's because & nbsp ; you're a moron with no hockey knowledge . custom_break +p10668 +aVexpect the two technicals those are all legit foul calls . you guys are just being bias +p10669 +aVif she wants any longevity she needs to shut the fuck up off the mic . +p10670 +aVyoure just mad cause youre poor custom_break +p10671 +aVgryla , you are an idiot . +p10672 +aVyou know , when you , like , you grab a woman's breast and it's .. and you feel it and .. it feels like a bag of sand when you're touching it . +p10673 +aVtold you ! so many uses so little time , haha +p10674 +aVthem cops be waiting to shoot a nigga . +p10675 +aVagree to the fullest , he was bred into the industry , the equivilant of a rich white kid eatin off that silver spoon , imagine wayne tryin to talk like he lived through it , yoo i remember when i was CUSTOM_NUMBER i aint had shit , then i was CUSTOM_NUMBER and owned CUSTOM_NUMBER boats and cars ! hahaha whata jackass +p10676 +aVanother fantastic article from dick foster . anyone who takes your writings seriously is a massive idiot . +p10677 +aVjust shut the hell up why talk shit about someone that raps better then your ass if your going to say shit about channel then dont comment fuck head go back to your piece of shit trailer back to CUSTOM_NUMBER mile +p10678 +aVdo you have a dildo you can shove in your mouth to shut the fuck up ? little gop whore ? +p10679 +aVharry you even look awesome with jungle worms +p10680 +aVthis , last night , was gorgeous . you were perfect . my cock in your face , you sucking my balls , me jacking myself off . want . more . +p10681 +aVyou call me what ever you want . we both know you refuse to answer tough questions or get into a intelligent debate . everyone that reads your comments know you are not smart enough to debate . +p10682 +aVyou're an idiot +p10683 +aVoh , i have no doubts that i can certainly be an asshole when needed . i just choose not to sound like a dumb redneck like yourself . cue the deliverance music .. +p10684 +aVwhat the child wants . that ` s rich , tom . nor do i have any real assurance that people treating homosexuality as a dysfunction are sufficient improvement over child molesters , however much i might be inclined to give them benefit of the doubt over being unintended jerks . we can do better . +p10685 +aVwhen it comes to unity blacks are the worst so all this knowledge yall dropping on here don't mean shit you all will forget about it tomorrow and start calling yourselves niggas n bitches again custom_break custom_break " aint no hope for the youth when the truth is there aint no hope for the future " ~ tupac +p10686 +aVyou ain't a troll bro +p10687 +aVyou hear that , resistance , fifa , and littlebigplanet ? fuck you ! +p10688 +aVyou are a brainwashed piece of crap . +p10689 +aVyou are just a selfish .. tum per allah ki laanat +p10690 +aVhow can you still " patiently " wait man . custom_break i'm fucking impatient right now . +p10691 +aVyou apparently see nothing . +p10692 +aVyou really cant blame hanley for anything on defense . blame his hitting . +p10693 +aVbitch how fucking old are you ?? this don't have shit to do with no teams . while silly fags like you are pulling out your hair over sarge he's somewhere cashing checks . do you seriously think he gives a fuck what you think of him or tranny's ?? bitch put down the kool-aid and grow the fuck up . +p10694 +aVnot looking so dopey now -- you paranoid sado +p10695 +aVsim eles so ficam naquela mesma coisa de sempre , desde o inicio da novela pra mim nada mudou entre os dois +p10696 +aVduh . i think i will call you duh from now on because you speak like a moron . this is his life and his choice . not yours , or the fans or anyone elses . +p10697 +aVymcmb = niggers with money . dont hate thats why u aint rich fool . +p10698 +aVwtf how are you so fast ? - . - +p10699 +aVfirst of all it's " you're " you fucking idiot . +p10700 +aVisabelle_hunt , you're all over the place . are you some sort of internet troll ? don't you have anything better to do with your time ? +p10701 +aVjust cause his dumb ass didn't know to stop trying to pants her .. asshole .. i hope she woke up and told her brother or father and they beat them till they passed out .. +p10702 +aVare you a saints fan ? +p10703 +aVfuck u dawn +p10704 +aVwait wait , what are you talking about ? +p10705 +aVi need to talk to nathan and sneak into your house while you are away !! ;-) +p10706 +aVfeed him some cookies .. complete mind fuck +p10707 +aVgive up freedom for a perceived safety and you are no longer truly free , debate it at your less free leisure . custom_break custom_break instead of banning the super sized drinks , how about allowing the consequences of being a fat pig to fall on the fat pigs instead of the rest of us . quit mandating seating for fat pigs under the guise of " enlightened " thinking emotional bs and let fat pigs suffer like they should for their weaknesses . custom_break custom_break if anything , the biggest loser show proves most fat people are not victims of thyroid crap but their own emotional issues resulting in over eating . bloomberg is a fool trying to outlaw symptoms in the attempt to solve the obesity problem . it will have a zero net effect because it doesn't address the actual problem . custom_break custom_break that won't stop big brother pc types from arguing for it though . freedom of choice until it impinges on the politically correct crowds views on life , then your freedom is righteously limited by them of course +p10708 +aVyour dumb . custom_break custom_break oh no predators , oogie boogie . custom_break i just don't get you . +p10709 +aVmods don't talk to people . figured that out as soon as you opened your mouth . +p10710 +aVhe was bout CUSTOM_NUMBER fuck lil dude up for a sec then he caught himself !! he like thats for all that shit yu be talkn bout me in ya shows !! ha ha +p10711 +aVinside your ret . arded little brain ? +p10712 +aVwhite niggas act a fool when they get drunk +p10713 +aVyes you are correct , and in not too disimilar packaging too . +p10714 +aVfucking idiot . +p10715 +aVnobody " sube due " your mother and she is a big lip watermelon eatin baboon +p10716 +aVso now you denying your an eagles fan ? right you talk about jae as some fake when you should look in the mirror at the trailer trash you are . +p10717 +aVwow , you are most definitely still a virgin +p10718 +aVi like you .. and to me your post is monumentally silly and oddly close to the words our president is using . +p10719 +aVin about CUSTOM_NUMBER yrs when the oil is used up you people will still be sitting in a dessert having rocks for lunch killing each other . the only difference will be that nobody will give a cr CUSTOM_AT .. +p10720 +aVyou're an ignorant cow +p10721 +aVc'mon dave . sharpe you are asking for a miracle with that request . ;) +p10722 +aVare you going to ask first , or just have your way with it ? +p10723 +aVdoesn't change the fact that you look like a fool for defending this murderer +p10724 +aVyou shole lizz uhgly . +p10725 +aVdude , you're delusional . you may consider betting back on your meds . +p10726 +aVlet it go , matthew . this shit is making you look more like an asshole than usual . +p10727 +aVwe lose our freedoms , a little at a time , when we don't pay attention . +p10728 +aVyour style is certainly diverse ! +p10729 +aVi'm not picking a fight . i'm just saying you're an idiot because you're being an idiot . +p10730 +aVthat little fat cracker wanted some of that good black pussy so he let her drive around thinking that would get him laid .. custom_break custom_break good luck poppin pills and listening to death metal til you eventually commit suicide emo-fag +p10731 +aVgay super hero ?? fuck this shit .. dc comics released a fucking gay green lantern .. thats why i only read conan . +p10732 +aVyou always are . custom_break custom_break +p10733 +aVu dad already ashamed of u cuz he dnt know if u really his son cuz your mom was sucking and fuc . king the crew back in da days .. lmao .. now u grew up to hate black men wit money cuz u know dsts what your mom is looking for .. lol .. tell her i'll pass up on dat a . ss cuz it got to many miles on it howeva she can give me some slow head .. lol .. lol .. lol .. +p10734 +aVwell maybe if you didn't let yourself go and pack on all those pounds . +p10735 +aVkeep digging , your hole isn't quite deep enough yet .. +p10736 +aVhe won't won anything all time with arsenal ?? i bet you're one guys that saying it arsenal will finish outside top CUSTOM_NUMBER th .. i hope u don't change your fucking brain when we win titles .. u brainless kid +p10737 +aV.. no they are your hero because your stones still haven't dropped and you're too much of a girly man to pull the trigger . put down your computer and get involved nerd boy . don't be a pathetic loser your whole life . strap up or s tf u . +p10738 +aVyour comments are as retarded as you are . typical united hater +p10739 +aVidiot . google the word blog , you stupid stupid idiot . +p10740 +aVlol .. what are you talking about ? +p10741 +aVmitt's taxes is nothing but a distraction from the failure of obama . custom_break custom_break obama failed . custom_break custom_break custom_break obama failed custom_break custom_break custom_break obama failed custom_break custom_break obama failed custom_break custom_break custom_break four years is enough . +p10742 +aVthe look you wanted ! +p10743 +aVvalerie labelle are you listenin ? +p10744 +aVyour mother was stupid for not going by the clinic +p10745 +aVand you are obviously a homo +p10746 +aVbig bitches cant fight they just grab the other bitches hair and swing um around cuz they stronger smh they need to learn that if u dont grab hair , u can accually punch wit both ur hands lmao +p10747 +aVnice try , libs . go down with the ship if you must , but .. the sack-of - lying-shit ship is going down . +p10748 +aVcongrats elisabeth , you are a semi-finalist ! you can vote for your board on our facebook page ! +p10749 +aVthe american diet has damaged black americans . with the large consumption of processed , denatured foods that are full of starch and sugar , it's understandable why disease , behavioral problems , mental health and weight issues are rampant . let's not even talk about meat that is filled with parasites , worms , tumors , other diseases -- and then shot up with antibiotics , hormones and other chemicals . custom_break custom_break we carry the genetic signature of west and central afrakans . we are tropical blacks . our diet should consist of food from the tropics . simple . our cells require electrical and alkaline foods . look at blacks from the tropics . are they overweight and stricken with health problems ? +p10750 +aVare you mad i don't believe ur bullshit ? you fucking homo wanna be thug ! +p10751 +aVoh du calme on ne va pas te d \u005c xe CUSTOM_NUMBER porter . il faudrait vraiment \u005c xeatre stupide pour ne pas dire con pour parler de cal CUSTOM_NUMBER +p10752 +aVyou are on to something there +p10753 +aVi love my bitches dumb and stupid , can you cook ? +p10754 +aVwhat is your evidence that she's a painfully bad actress ? do you know her from anything else other than < i > twilight < / i > ? why don't you hunker on down to imdb and see what else she's done , then come back and say something as stupid as what you said . +p10755 +aVyou're just a broke ass .. +p10756 +aVwhen you find faults in others the rest four fingers point at you . custom_break custom_break custom_break learn to know how you are more idiot than others , you will have humility else like kango you will be die being ignorant and arrogant . +p10757 +aVCUSTOM_NUMBER % pure fuckery , thx niggas keep making this music for ur children +p10758 +aVyou are awesome ! congratualtions ! +p10759 +aVi sure hope you are wrong about that . +p10760 +aVget your eyes checked ! fat is never beautiful . +p10761 +aVyes , kind of like warren ( lefty ) calling someone a name .. custom_break custom_break i never " like " comments that disparage others .. custom_break custom_break many times i even " like " your comments sol .. though i've never seen you " like " anyone yourself .. hmm custom_break custom_break tres , on the other hand is generous custom_break with all .. +p10762 +aVlol fuckin white fag think he can sing and he is black smh ! he is lame ! untalented pale white man is not black man get over it ! +p10763 +aVtoo cute .. that is you jenna ! custom_break +p10764 +aVcomments like yours are why people are giving money to the casinos open handed . when knowledge is not power you are just another idiot in the casino . custom_break +p10765 +aVpostmaster why you say drug test ? i could not pass a drug test . i ngo out in my quad color car and burn a fat one . i emplore you not to mention drug test ok +p10766 +aVbitch , please .. she's with make-up ! +p10767 +aVthis is awesome . i love the sec .. ef the little CUSTOM_NUMBER and the texas whore . eff texas little johns too . thats you ku with your little nub . +p10768 +aVreading comprehension is supposed to be a vandy trait . i guess not in your case . i know , that wasn't classy of me . +p10769 +aVwhy dont you keep your waywardness and extreme ignorance to yourself and grow a brain in the main time . better still go back to school , get some awareness , broaden your information horizon and re join the rest of humanity . you and your demented iq is on the same level as an ape . +p10770 +aVthis almost looks like you and ross .. :-) custom_break +p10771 +aVwho cares about throwing the ball back to the picture , let that a-hole do it and save your arm for throwing out runners . next time you get the ball stomp your feet and take your ball and go home . unbelieveable +p10772 +aVwhy you mad cuz dominican brig dembow back and pr artist stuck in the same place doin the same shyt and dominican fuckin yall bitches and runnin u.s. a ! CUSTOM_NUMBER oh thas custom_break why yall mad +p10773 +aVare you jealous ? +p10774 +aVwhat a stupid cunt . she could have even done her research on wikipedia and fucking found that out . thundercunt +p10775 +aVstop sucking the industry dick . you wont kum out warview - homicide valley talkin +p10776 +aVdon't hold your breath . +p10777 +aVCUSTOM_AT johnson thanks for your comment because you saved me a click :) +p10778 +aVCUSTOM_AT breslin sounds like something you would like ! +p10779 +aVlmaoo .. i could prolly take him .. yaah id prolly fuck her .. lol +p10780 +aVwhy are you here +p10781 +aVwith some big names coming up , chelshitts are so sure next epl or ucl is in their bag , its so damn hilarious . look at your pathetic team and the way you play football . with new players , your tradition is not going to change , same filthy ' park-the - bus cum so-called counter-attacking ' football . you are the luckiest this time . it happens only once in a while and it won't favour you anymore because you don't have that quality . so don't ride on the wagon so high that you fall at your filthy butts !! +p10782 +aVwhat about your father ? +p10783 +aVgo fucking kill yourself , you worthless piece of shit ! stefan is an asswipe , he doesn't know shit !! +p10784 +aVCUSTOM_AT i tried to tell him not to race but what came out was " shit nigga sometimes you gotta race " . +p10785 +aVi just listened to that diggy song man and he got on j cole ass fuck cold world global warming nigga u better say something +p10786 +aVernest custom_break custom_break you are the only poster who got a recommend tonight . +p10787 +aVshut the fuck up +p10788 +aVwhat have you been smoking man !! +p10789 +aVif he was white .. the i d i o t racists in this country wouldn't care the economy sucks . they put up with that cretin george bush who got us into this mess with his stupidity . +p10790 +aVnow that is you and chris !! +p10791 +aVcordero you fat piece of gutter trash . +p10792 +aVyour fucking stupid +p10793 +aVfuck wit me CUSTOM_NUMBER +p10794 +aVgo away please . it is not a judges job to " appear angry " you ignat ape +p10795 +aVare you claiming that some women don't die because of a pregnancy ? custom_break custom_break let's clear that misunderstanding up , right now . +p10796 +aVget back in your hole +p10797 +aVi couldn't disagree more with your claim that the bible regards " personhood " at birth . how about the scripture that says " i knit you together in your mother's womb . " and " i ordained all your days before one of them came to be . " obviously god is telling us he knew us before we were born . say what you want but people become people at time of conception . when a woman has a miscarriage does she say " i lost my fetus ? " no !! she lost her baby which is a person . custom_break twist the scriptures all you want to keep the atrocious act of killing innocent unborn children as part of our nations sick policy . talk about medieval .. killing our own offspring . wake up and speak from the heart rather than man's foolish intellectual gibber . +p10798 +aVso proud of you rob !! you are the man !! +p10799 +aVsuck a bag of dicks kal . +p10800 +aVmary , you look like gwen ! +p10801 +aVyou are an idiot that clearly has no understanding of exactly what caused the recession and who did it . shut your trap and go do some research before you start spouting off like you actually know something . you obviously don't . +p10802 +aVdrcart : are you married ? +p10803 +aVsure you are . +p10804 +aVwhite people are some fuckin straight weirdos !! this shit is sick , i bet her father is very proud and i don't ever wanna hear another black racist joke from another white person ever again ! you ole loose booty crackers ! she definitely had a black dick in her ! +p10805 +aVoh , get off your ron paul soap box . he lost get over it . +p10806 +aVstop talkin ' shit about your body , hot mama , +p10807 +aVnow you're just embarrassing yourself ! +p10808 +aVoh .. my .. god !! i'd totally forgotten about that . lol but holy shit that is so fucking funny . lol +p10809 +aVfairedgar - your remark that jews cannot be secular because judaism is a religion is just about the stupidest comment i've ever read . everyone is born into a ' religion ' , but if you don't ' practice ' that religion , then you are a secular member of that religion . custom_break custom_break mind you , it's nice to see that the jews haters like you are so stupendously thick . +p10810 +aVyou are the swag version of mickey mouse , lol +p10811 +aVno sweetie , you're the " tuff " guy : custom_break custom_break you are a scumbag . you better hope you bite your lip in public punk . if im ever unfortunate enough be in your presence and hear that vile garbage , it will be thing out of your hole . custom_break you go first - use a real number this time . +p10812 +aVmaybe you should ** be in school .. +p10813 +aVhey man , glad to hear you're not in serious health straights - as i get custom_break older , i worry more and more about the internet people who i follow and custom_break enjoy to hear from . custom_break custom_break custom_break custom_break cfs is a motherfucker , and people don't give it enough credit to how custom_break much it can fuck a life up . fight the good fight man , and if you're ever custom_break in australia i'll buy you your carbonated beverage of preference :) custom_break +p10814 +aVdecent player at best when he is away from home . funny too cause you can check his stats yet analysts still talk about him like he is a beast . +p10815 +aVto mr. blooming idiot berg : your mom ! +p10816 +aVhis name is alphonse mucha . not albert . +p10817 +aVi'm sure dumb-asses , like yourself , will be trolling full force under our next president .. romney . what does " boyhollow " mean .. or do we want to know ? +p10818 +aVhe's on roids you are a sucker , don't delete my comment you damn mod . +p10819 +aVholy shit . i've never heard that story before - pretty epic . +p10820 +aVno . in your mom's bed . +p10821 +aVlol you're the one being worked up . i just mentioned that we need to score more to kill the game and increase our goal difference , and you're going all over the place saying i'm a moron ? you're the one not making sense here . custom_break custom_break you're the one who should sod off , make sure you learn to read english properly before you come here and troll . what a fail loser +p10822 +aVonce again it was just dancing and just because im established and so is my family dont mean that i dont watch network tv or tv period the only pedophile is you and you rather support the polish death song anyone can google or yahoo some history but if you truly want the answer to something in history dont google your research go read a book you rather kids sing about death than to do something so innocent as just dancing like i said before get the fuck on with that dumb shit because like you im human and i too like to be entertained but it is all of how some one views it and your view isnt my view obviously +p10823 +aVyour a nasty boy . +p10824 +aVjust keep it up holder your not helping oboma at all .. you are just succeeding in making people mad .. beside's dont you have a fast & furious contempt hanging over your shoulder's to attend to and get you books in order .. +p10825 +aVi lol when the viewers first see a white skin person they suddenly feel like making a racial comment . all races do shit like this . and anyway the guy deserved it he wanted to bottle a girl .. " bottle a girl " = hit a bottle over a girls head . +p10826 +aVCUSTOM_AT custom_break you're the one who has no life cuz you watch her tutorials bitch +p10827 +aVgee , you are a smart one . +p10828 +aVdon't worry , you are :) love ya ! +p10829 +aVio ho brevettato le baggianate . quindi smettete subito di dire baggianate . +p10830 +aVlack of proper training .. sadly +p10831 +aVyou are a patriot ! +p10832 +aVyou're an idiot baldo . +p10833 +aVare you jealous of him ? +p10834 +aVbuddy you sound like a complete clown on here running your mouth +p10835 +aVsetting up the dp custom_break custom_break also , fuck you luke scott . fuck you +p10836 +aVyou are a loser in every sense of the word . your presence on earth , is a loss for humanity . +p10837 +aVyawn .. what you are suggesting about today's music .. was said about CUSTOM_NUMBER s music back then . +p10838 +aVyou're intellectually challenged . +p10839 +aVdon't feel sorry for her , she's madonna . & nbsp ; and you're not . custom_break custom_break +p10840 +aVyour numbers are so far off you have no idea what you are talking about . did you take your prozac today ? please do it now . +p10841 +aVanybody and i mean any motherfucker who confuses bill pullman with bill paxton is a fucking imbecile beneath contempt +p10842 +aVphil custom_break custom_break and then you fell off the hotel balcony . custom_break custom_break . +p10843 +aVi hate racist inbreed white people that's why we stay fucking ya'll up dumb ass may ain't over pussy it can be may day in this bitch +p10844 +aV< strong > obama's campaign is in deep trouble . the have to place the race card , the scare women card , the scare seniors card , and the class-warfare card . that is all he has . < u > he sure can't run on his failed record . +p10845 +aVwhat are your criteria for " best ? +p10846 +aVyou're not hot . get over yourself +p10847 +aVare you spewing blind hatred ? do you really a fair / just mind in your head ? +p10848 +aVyourmamatoo so _ CUSTOM_NUMBER one of your illiterate relatives , i'm guessing . +p10849 +aVdon't get her pregnant ! then you'll be really screwed like many other young couples that have children before paying off their debts . custom_break custom_break that is really it though , isn't it ? all this exploding debt is just discouraging the intelligent from having children . +p10850 +aVfuck push t and anybody that love em +p10851 +aVCUSTOM_AT - how bout not i do what i want to do you know im right thats why you had nothing to say about it so just crowl back to your little hole and shut the f up okay +p10852 +aVoh shit short bus shawty !! soulja boy warned me about those girls ! +p10853 +aVwhat an idiot +p10854 +aVhey ! jared .. custom_break custom_break you're going to wake the fuck up breathing through a fucking tube .. +p10855 +aVwhat i want to know is why you haven't posted your address like you said you would so i can lick your ass until you're dizzy . ask patricparamedic about the tongue job i did on his ass rim . +p10856 +aVhay richard ( dick-head ) , when are you going to play the ' race card ' . that's usually the lib-turds last resort , since you have no facts to challenge the truth . so don't bother , i'm a black CUSTOM_NUMBER - year american usaf veteran , with a real birth certificate . you can call me a ' black racist ' with a brain - and a lover of facts . try living in ' real-ville ' , or at least visit long enough to get some facts . and stop posting your snide tripe posing as lucid commentary , the subject , like the belt holding ovomits trousers , is above your head . fool . +p10857 +aVyeah , you're dumb . nice work +p10858 +aVhi sal custom_break how are you doing ? custom_break +p10859 +aVyes , you're a good example of that . +p10860 +aVoh look how tough you are behind your computer . you do something stfu +p10861 +aVgf seeing you watching gay porn > mod +p10862 +aVwell , i know what i have . to bad you know what you have and apparently , you are extremely disappointed by it . +p10863 +aVspinning layoffs as " positive evolution " is a total bullshit . fuck you , justin jimenez . fuck you , custom_break examiner . these are peoples ' lives you're screwing with just so you can make a buck or two off of your mediocre product . +p10864 +aVmust be what happened when they saw you soledad . wearing your thong and nipple ring as you went to sleep in your fox hole .. secretly dreaming of the soldier next to you . +p10865 +aVpeople sell their grandmother for twenty bucks and you think they care about your feelings being hurt by posting your mugshot on the internet ? really , think about it . they sell medication to dying sick that's made up out of chalk and dirt and they don't lose sleep over it . suddenly we expect bunch of dotc um a CUSTOM_NUMBER holes to do what's right . get over it . +p10866 +aVat least you're sticking to your guns . custom_break +p10867 +aVthe volstead act basically got repealed because the states , starting with ny , refused to help the feds anymore ! the feds can't do it alone . the states need to step up & do this again . and you are right , murder is easier to get away with than smoking a damn flower which apparently is the gateway drug to the white house !! +p10868 +aVCUSTOM_AT kat hmm , aren't you a little old for cyber bullying ? custom_break +p10869 +aVjean smart - you are a brainless tool . we conservatives wonder how you murderers , who support abortion for any reason , live with yourself . i don't believe in abortion but i could almost get there if you were the one being aborted . +p10870 +aVCUSTOM_NUMBER stay out the heat and off the heats dick .. think ,, you wanna be thug +p10871 +aVyou should be able to . just add the charmin to your transaction . the charmin will automatically deduct off . then give the cashier your coupon . hth :) +p10872 +aVyou sound like a prude . +p10873 +aVCUSTOM_AT custom_break hah your'e only CUSTOM_NUMBER ? fpff and you tell me what to do ? i'm waay older than you who you calling a bitch and a fug ? you douche bag bitch i wanna punch your eyeball out and kill ya fuckya +p10874 +aVthat's the clap you feel . +p10875 +aVget lost fengshui you silly troll . no-one needs your nonsense ( and i really do mean nonsense ) here . +p10876 +aVahora sus abogados presentar \u005c xe CUSTOM_NUMBER n la reclamaci \u005c xf CUSTOM_NUMBER n de que la fianza es " irrazonable " ; los payasos del servicio con antelaci \u005c xf CUSTOM_NUMBER n a juicio dir \u005c xe CUSTOM_NUMBER n que ese muchacho , h \u005c xe CUSTOM_NUMBER ctor radwan fern \u005c xe CUSTOM_NUMBER ndez mel \u005c xe CUSTOM_NUMBER ndez es un santo y que merece se le rebaje la fianza , que no representa , y nunca ha representado , peligro para nuestra sociedad . el juez pendejo les creer \u005c xe CUSTOM_NUMBER el cuento y pa ' la calle otra vez .. +p10877 +aVi wouldn't talk ape , you are so dumb you once failed a survey ! +p10878 +aVyou're a real bore , ya know it ?? +p10879 +aVyou know what " the suck is " your butchering of the english language . go to school damnit +p10880 +aVyou are so right , and you have an american flag in the picture . u must be an american +p10881 +aVbtw - nimahom - what did an a $$ hole like you ever do for your country ? +p10882 +aVoh krutboo , you loser ! i don't really need your assessment of what i do or do not deserve , you self righteous ignoramus . i've already wasted too much of my time treating you civilly . fuck you and your conservative cronies ! +p10883 +aVfuck you . +p10884 +aVmoronic bla bla from a moronic person like you . wright is the man ! +p10885 +aVyour comments are : custom_break custom_break CUSTOM_NUMBER ) not needed . custom_break CUSTOM_NUMBER ) not wanted . +p10886 +aVyou are so CUSTOM_NUMBER . +p10887 +aVlame congress idiots or tyrants debating bullshit !! there are no terrorists except those who invented terrorism .. mossad and the u.s. military intelligence go watch the whistle blower at w w w . dormantideas . c o m and you will see this congress is completely out of touch or with the tyrants bought and paid for .. this is no joke CUSTOM_NUMBER acts that are equal to hitler's enabling act of CUSTOM_NUMBER and you debate !! what the fck are you debating !! custom_break fckng wake up idiots .. +p10888 +aVyou're supposed to be an optimist ! lol +p10889 +aVthe next three months have bad news written all over it . take stock , sort your shit out , stay away from london , look after your own and try your best . custom_break custom_break good luck . +p10890 +aVit took me a little bit to notice that i'm not on cracked . com anymore . i'm fucking retarded . +p10891 +aVreally ? CUSTOM_NUMBER brava mass CUSTOM_NUMBER nd . i hope you rot in he CUSTOM_NUMBER you unpatriotic a ss hole . +p10892 +aVand you are ? +p10893 +aVi hope you guys know bias when you read it . custom_break univision doing a balanced story on don omar is like asking your ex-wife to tell the girl you are trying to pick-up at a club about all your great qualities -- it ain't never going to happen +p10894 +aVhow many employers have you had that asked about your college grades ? +p10895 +aVyou , sir , are ten years ahead of your time .. or maybe just CUSTOM_NUMBER years ahead of congress . +p10896 +aVno , that was your girl on your dads then kiss you after +p10897 +aVyou're a real class act matt .. +p10898 +aVyou're from greece ? don't you have more pressing matters to attend to ? +p10899 +aVhe can't - got no nose you see .. +p10900 +aVyou are correct .. ironic , no ? +p10901 +aVCUSTOM_AT -- yes it does . it expires when you are convicted of a felony , when you renounce your citizenship , and when you die . +p10902 +aVmurdering bastard . hope you die , cause : you suck . +p10903 +aVbecause racism shouldn't be exposed ? or because you are living in the past and are racist yourself ? +p10904 +aVgood movie .. sify you are making fool of yourself .. +p10905 +aVlmao you're a fool man lol +p10906 +aVso you are black ? +p10907 +aVyour dumb though +p10908 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > < p > wonder what he was doing to get picked up . & nbsp ; the alabama law is basicly in place to pick up a drunk idiot who is out looking for a fight . < / p > < / div > < / div > +p10909 +aVyou are a racist +p10910 +aVshut ur nasty ass up u homo ass nigga , u still gona b sticking ur shit in a females asses and i know for a fact u either done it to a dude or thought about it , nasty fucker , u in the same category as this nasty bitch +p10911 +aVdear stemicnic , you have had five hours to deny that you are a fuckwit . +p10912 +aVremind me to rag on you and the city you live in when your family members are senselessly gunned down in cold blood . custom_break custom_break idiot . +p10913 +aVyour cute boys must giggle all through lunch . these are hilarious ! +p10914 +aVand you're not putting yuo're spin on anything ? please ! +p10915 +aVare you free today , or tomorrow ? +p10916 +aVthat loon is far more successful than you are . +p10917 +aVto each their own . custom_break custom_break however like pete said , when shit hits the fan , you want the cops there as surely as they'll be a fat kid hanging around a cake . +p10918 +aVbut not so strange that you are only just a moron .. +p10919 +aVok .. you know what ? fuck this . * bye * +p10920 +aVare you having fun posting your liberals lies ? +p10921 +aVyou are a negative for your kind . try to sound smart at least . +p10922 +aVand you idiots really whinned and cried when you got stomped in CUSTOM_NUMBER .. can't wait until nov . , you'll probably go back to the chicago sewer with your .. well , you get the drift . lol +p10923 +aVso you get your amazing information from the cia ? wow you really are connected ! +p10924 +aVthank you nini , looks good . +p10925 +aVu sir r a bitch +p10926 +aVboy were you wrong +p10927 +aVwhy are you related to the judge ? +p10928 +aVumm and your bunny .. +p10929 +aVyou must be amazing at guitar . +p10930 +aVwere you watching the game ?? damn , what a moron .. +p10931 +aVif eating pussy gives you hair on your chin , then harden must've ate the whole wnba out . +p10932 +aVyou are obviously indian and definitely high ! +p10933 +aVwith this attitude you must be liked veru much by your little students :-) +p10934 +aVthis post was dumb .. , simple vaseline will do the trick every time . you might be a little greasy but at least you will not have to go back and touch up . granny always told me to use vaseline nothing more nothing less . +p10935 +aVare you the pitcher or catcher in your bed +p10936 +aVskinny little white boy .. custom_break custom_break go wipe your nose .. +p10937 +aVallen , you are off your commie rocker +p10938 +aVthe only thing retarded is you . +p10939 +aVdemocrats hate success .. and commies like obozo hate middle class .. ( contrary the b.s. he says ) why ? once you become middle class - you become republican and never go back to utopistic nonsense of libs .. +p10940 +aVthat bitch that went off on him is ugly as shit +p10941 +aVthen you sir , are an idiot +p10942 +aVthanks curtis , and you're welcome .. +p10943 +aVyou are a sad little boy . +p10944 +aVlmao he wak but u gotta respect that he invented his own shit +p10945 +aVdo you both enjoy the smell of your farts ? +p10946 +aVno respect for ones elders .. fucked up to the max +p10947 +aVno clause in any of your sentences is true . +p10948 +aVwere you one of the inspectors ? custom_break +p10949 +aVgo back into hiding bush .. america still hasn't gotten over your failed presidency +p10950 +aVare you stupid ? if there twins there both CUSTOM_NUMBER you moron . you want to know how many minutes apart they are ? does it matter ? your just as stupid as them , are you related ? +p10951 +aVyour dumb . this is a clear case of self defense . one day you will be in a situation where your glad someone was there to protect your pu $$ y ass just like zimmerman protected his own . all evidence clearly points to an act of self defense . +p10952 +aVpaws , i was taught a poem by one of my friends mother who spoke very poshly so you have to read this with a posh accent : shit , buggar , aresehole , piss , cock , fart , someone stole my horse & cart , i don't give a bugger , i'll soon get another , shit , bugger , arsehole , piss , cock , fart . didn't even know she knew such naughty words & i always smile when i think about it +p10953 +aVever heard of stockholm syndrome ? custom_break custom_break custom_break custom_break the problem with anomaly is that it's really not necessary to work that many custom_break hours to get to the work they produce . think about all the other shit you custom_break could accomplish in life if you weren't spending another evening making carl custom_break richer +p10954 +aVmust be nice having umps on your team . +p10955 +aVboggs are you f < m > ucking kidding me +p10956 +aVromney where are your tax reports ? +p10957 +aVat this moment your toes are touching each other . +p10958 +aVwhy don't you buy a gun mywrong ? .. you could defend yourself from the white devils ! custom_break it's your constitutional right .. maybe you're afraid of the scary guns .. you can get training mywrong ! +p10959 +aVso , spectre , are you opining , from the pages of your comic book , that lowering business taxes will lower the cost of consumer goods ? +p10960 +aVwhy is this lil motherfucka every kids dream ? .. lol .. even my younger step sisters love them some damn beiber .. smh .. wtf has he done ? +p10961 +aVwhy did your parents wish you were adopted ? +p10962 +aVtani kosova eshte edhe me e vogel se sa ishte CUSTOM_NUMBER vit .. tani kur te mirret veriu .. ( explatohet mitrovica me trepc ) serbet e mjedisit te kosoves nuk do lejojn kurre bashkim kombetare te shqiptarve .. custom_break custom_break flm thaqi hashim , jjakup . edita , enver hasani , dhe ju te tjere , e dini vet cilet jeni . +p10963 +aVand you are to stupid to be entrusted with a first amendment right . shut up , stupid . +p10964 +aVyou respect an idiot yo +p10965 +aVyou really couldn't be more stupid if you tried . custom_break custom_break congrats . +p10966 +aVgoodnight andy , god be with you . +p10967 +aVare you CUSTOM_NUMBER years old ? +p10968 +aVdo as you please . +p10969 +aVwhy in the living shit does anyone give freaking george will a goddamned microphone ? this guy is such a moron it's just pathetic . and there isn't anything he wont ' blame on " liberals " , like any liberals actually hold power anywhere in this country . oh , yeah , we've got bernie . and a press that completely ignores anyone as sane as he is . otherwise , we have to keep on hearing asshole idiots like this daily . custom_break custom_break goddamnit , i hate right wing horse shit ! why the fuck do we have to put up with the lies , the admonishments of how we are destroying the country , and the constant projection of what they are doing being our fault . i hate fucking righties ! they are stupid and demand that we all be as goddamned stupid as they are ! what a bunch of total idiots ! +p10970 +aVsuck the dick , heat fans < b > suck the dick heat fats < / b > suck the dick heat fans +p10971 +aVthank you jesus ! +p10972 +aVdisgusting . how about starting by not calling your own people hoodrats . +p10973 +aVpeople say account system , room filter , room customizer and this idiot adds the most stupid shit i ever saw +p10974 +aVyou're an idiot . +p10975 +aVyou state all this bullshit but no links to where you get your made up facts . +p10976 +aVyou can't express yourself better than that ? +p10977 +aVcute are you going to make / sell these ? +p10978 +aVsee what i mean ? draiter is delusional . he thinks he has a direct line to capcom . trust me kid , you dont , capcom personally hates you . your the fans they are trying to get away from . you spread negativity and talk shit about the hard work they are doing like your a top developer . your not . your just a psycho crazy kid who thinks he knows whats best . fyi you dont because capcom is making millions off re CUSTOM_NUMBER re CUSTOM_NUMBER and soon re CUSTOM_NUMBER . horror is dead , wake up +p10979 +aVi wanna fuck u milani +p10980 +aVhow old are you van ? CUSTOM_NUMBER ? +p10981 +aVif you like your own comment , others will follow .. +p10982 +aVthe superior whites control you animals by keeping you on welfare and killing eachother . +p10983 +aVtoo bad ny . you had your chance . +p10984 +aVhe didn't say that you dumb bitch . +p10985 +aVwhere is your list anyway ? +p10986 +aVit's memorial day . i'd like to thank those who signed up for all the right reasons . war is hell and the human race is predatory by nature and hell bent on its own destruction . sadly , being in a position to defend yourself is a necessary evil on occasion - and i'm not talking about the bullshit wars of the last CUSTOM_NUMBER + years - we have stuck our nose when we should have . do away with fascist , right wing politics and fundamentalist religion and things might calm down . we can always dream . +p10987 +aVshut up faggot face faggot lol +p10988 +aVpersonally , i'm not much for singing in the modern sense , and have little interest in hymns that were written in the modern era . i find that many of them have questionable origins and debatable meanings . people like to add or change them to suit their own agendas , too . just out of curiosity , since you're so concerned about the " here and now " what does " old-time religion " mean to you . also , i found it interesting that according to wikipedia : " it was also sung by the crowd at the lynching of leo frank " . +p10989 +aVwhat is your problem . think you are better than serving military personel ? custom_break custom_break +p10990 +aVyou are very ignorant .. +p10991 +aVand you , CUSTOM_NUMBER x , are a condescending jerk . +p10992 +aVyou are sick homo +p10993 +aVhahaha you are a moron .. you say rose sucks but now you are basically saying they cannot win w / o rose .. fuckkinngg dumb ass +p10994 +aVjust trade him now then , you are just killing his trade value by letting him sit out CUSTOM_NUMBER weeks . +p10995 +aVat least you didn't blame your brother . lol +p10996 +aVbless you reverend . +p10997 +aVfuck fuck fuck you mawe . +p10998 +aVbut you white people invaded , took over , enslaved , abused , ripped off , murdered , raped other countries since the beginning of time .. but you want to keep so called white countries for white people while you control , corrupt , steal from and live in all the non white countries . are you nuts ?? +p10999 +aVthis shit fuckin corny af .. there are way better dances over there +p11000 +aVmohawk nation blah blah blahyou're a bug on a surfboard +p11001 +aVuhh , ven , you're fat . get over yourself , you will never make a living simply designing for barbie . +p11002 +aVif it were your mom , sister , and wife , it would be only one person ! +p11003 +aVmorally bankrupt . custom_break custom_break god you are unbelievably stupid +p11004 +aVhahaha that's what you get . +p11005 +aVshut up with your non purposeful existant , you are just wasting oxygen ! +p11006 +aVdone screwing your horse / sister ? +p11007 +aVtypical jew response .. suppress facts .. nazi .. you're the problems .. +p11008 +aVfundamental " is derived straight from the latin origin . saying it's derived from the CUSTOM_NUMBER th century meaning is like saying the english words " to found " and " foundation " also secretly mean " buttocks " . the relationship of modern languages to latin changed over time , it was different in the CUSTOM_NUMBER th century than two hundred years earlier . +p11009 +aVyou guys should bomb a bentley next ! fucking retards .. +p11010 +aVu can tell when niggas broke , they try to go at real niggas to get on broke ass nigga the = s shit sucks like hoes .. custom_break +p11011 +aVdyosmeyu maria ! you are like a first year law student , a little knowledge of law , ang ingay-ingay na . you talk of statutory construction as if you are an expert , as if there is only one doctrine , as if you really understand what you are talking about , as if you are in the league of jpe , as if jpe would mind your respect of him being diminished . custom_break custom_break the issue is simple : did the former cj fail to submit a truthful , complete saln ? corona said yes . custom_break custom_break even if you are the chief defender of ex-cj corona , i don't your little knowledge will save him . you will argue a losing cause . i'm sure you don't have the level of skills of j cuevas . +p11012 +aVgo away , you overrated street walker . nobody cares . +p11013 +aVget some respect and morals while you are gone junior . +p11014 +aVyou're welcome . :) +p11015 +aVyour screen name says a lot about you . +p11016 +aVyou shall walk again .. +p11017 +aVsomeone is flagging me . thanks . you're an idiot . +p11018 +aVi heard they had to pump your mother's stomach after she ingested too much cum . smh .. i told that whore to stop sucking off the neighborhood watch group . lmfao . +p11019 +aVCUSTOM_AT logic CUSTOM_AT custom_break he's coming off of an acl . but if he's good , then you are right ! +p11020 +aVyanksthruthicknthin , you are welcome here anytime :) +p11021 +aVyou are a good parent . +p11022 +aVchinese please don't eat your own shit if you are hungry and don't eat some fetus they're are human babies ! +p11023 +aVme neither , shit was wack +p11024 +aVdude get the fu . ck out of here .. you ppl are stupid +p11025 +aVsaying nuff said makes you an official a $$ hole . nuff said +p11026 +aVnow kelly has two broken legs ? you are some stupid broad . +p11027 +aVif you are the captain of a team , you don't walk off the court before the game ends . +p11028 +aVsell drugs and shoot people . most black people are too ignorant to be saved at this point . it must be hard to try and change stupid mother fuckers . must've been a nightmare for mlk . +p11029 +aVan difficult journey isn't any less painful because you are told that there is some promised land off in the distance . +p11030 +aVyou guys ' are awesome ! :d +p11031 +aVwhich team are you a fan of ? +p11032 +aVjudeo-christian nazis ?? what the heck are you talking about ? +p11033 +aVfuck yea . fuck all of you hatin on that fututre track . astronaut status ! +p11034 +aVmy first hour was damn good so i really don't think you're gonna cry :d +p11035 +aVyour use of ' leadership ' betrayed you . +p11036 +aVyou sound stupid +p11037 +aVvinnie .. you are the best rapper .. custom_break custom_break yout german fans =) +p11038 +aVnope , not just you . +p11039 +aVthe exponential growth of government is destroying the economy . the democrats ' poisonous demagoguery has created the vast prison system , the welfare rolls , and a shrinking middle class . custom_break custom_break propaganda has the greatest effect on the least intelligent . the class warfare rhetoric , the myth of " the rich " stealing from the poor , and the raised clinched fist has sent society's dumb into the streets to take their " fair share " . the net result of this is terror , murder , rape , pillage , and plunder . also , these most unintelligent of the nation become a burden for the nation to cage . custom_break custom_break the those of our society with a slightly higher iq , accept the demented life of the " welfare queen " . the life of the welfare class is one of drug addiction , sexual depravity , abortion as contraceptive , obesity , savage neighborhoods , and roach-infested squalor . the next level of the unintelligent is the middle class that become dependent on the government hand-outs .. instead of creating an income stream on their own . the net result of this is that the middle class is only a few paychecks away from the slums . custom_break custom_break the cancer of democrat crony republicanism ( you vote for me and i will send you a check ) is ruining the lesser gifted of america . the smart shall always use their cunning to get what they want . the vast lesser intelligent of this land has been damned by the democrat , big government kool-aid . +p11040 +aVor you just may be high . +p11041 +aVim sure shes gonna have butt cancer . she almost had her hole stomach lining in the pool ol dirty ass bitch all in a public pool . lmao at the whisper .. gross butt +p11042 +aVdef , thanks for the clarification , a fine neighbour you are . +p11043 +aVyou are stupid +p11044 +aVy'all must be geniuses becauae you know everything about everyone . stop being ignorant . root for your team or shut the hell up . this isnt a debate fa ggots . +p11045 +aVdamn you mad son .. +p11046 +aVthen you like draft dodging , lying , selfless , lying clowns . +p11047 +aVnigga took dat leprechaun in da hood shit to da heart . custom_break +p11048 +aVCUSTOM_AT custom_break are you , perhaps , the former governor of california ? +p11049 +aVfuck off article by a f'ck off .. custom_break +p11050 +aVyour profile name " ds " describes you perfectly .. " dumb s h i t " . +p11051 +aVCUSTOM_AT - watching real life has produced a nu-substantiated stand your ground murder . and since we are all entitled to our opinion and free speech , we have become human . +p11052 +aVthank you so much for your reply ! +p11053 +aVand your point is ? +p11054 +aVyou need to get out of the sun .. +p11055 +aVamercanaized moron , check google maps then edit your crap post +p11056 +aVobama learned how to hate white people from jeramiah wright . so his rabid niggerism needs to be fair game . +p11057 +aVthat's why you don't know sh it +p11058 +aVwhen you pay peanuts you get monkeys +p11059 +aVlol , chell , dave , barb , y'all are crazy and i love you for it . just don't do anything illegal or stupid cuz i will not visit your ass in jail ! i love you all and can't wait to hang , you know when .. :) +p11060 +aVyour mum is a bloody wanker ! +p11061 +aVwat da pak ? you moron , if you cannot get what i am saying , tough luck . you also need to change your name , back in the days , your name connotes sa salitang oblo eh lalaking nagbibili ng dangal or " kalabit penge " . ah but it suits you ' coz you maybe you are a paid hack , which means you are somebody's biyts . ey-hol . +p11062 +aVno but you really are a chump +p11063 +aVshould stayed ur fat ass down +p11064 +aVapparently you were in numb-nuts land during the primaries when newt gingrich proposed trashing the child labor laws . +p11065 +aVthat's awesome , michael . you're a proud father and you should be ! custom_break custom_break congrats to you and your wife . ck looks wonderful ! +p11066 +aVwhat would a stupid , republican idiot like you know about intelligence ? i never said obama was in the senate for every war funding bill you filthy and shameless liar - you said i did ! i said he voted to fund the wars . custom_break custom_break talk about being retarded .. you are not rich yet still you are just stupid enough to vote for the party of the CUSTOM_NUMBER % . go vote for the millionaire stooge of the CUSTOM_NUMBER % - mitt romney . i am done with your dumbass for the night . +p11067 +aVreally what games are you watching ? let me know when your sitting CUSTOM_NUMBER games back .. cause your about to face us and bust you down to CUSTOM_NUMBER games back .. +p11068 +aVhey mods how are you +p11069 +aVyou would look beautiful custom_break +p11070 +aVyou're very sexy dude . post again .. +p11071 +aVhow do you expect financial companies to continue their ridiculous compensation and bonus plans . get off your useless little people duffs and feed these of the best and brightest . just who do you think you are ?? do you not know your place ? +p11072 +aVthen you let the hoes fight you dont jump in .. dog you a bitch for even saying that shit .. this what im talking about bitch ass niggas .. doing bitch ass shit all day .. aint no excuse for hitting a woman in that situation . dude suspect for that mess +p11073 +aVyeah im black and attended an ivy league and i cant fucking spell .. who cares about spelling , engineers and fucking doctor have assistant to do the written stuffs .. matter fact they are only required to take two or three english course , in their academic life with plenty of draft and ta to help correct mistake .. grammar does not define your intelligence . +p11074 +aVnever would of guessed you were a hair dresser haha <3 +p11075 +aVmaybe you should troll somewhere else . custom_break +p11076 +aVnow you're talking ' : ) +p11077 +aVdamn .. are your feelings as sensitive as your hands ? +p11078 +aVyou're hilarious . +p11079 +aVyou're more worried than we are about it . & nbsp ; < div > custom_break < / div > < div > go nd !! < / div > +p11080 +aVlebron you better score +p11081 +aVher asshole fell out of her . its not a loose ass its a legit medical problem . +p11082 +aVyou need help . you are old and need to take your meds ya old coot . +p11083 +aVid like to know if you're on crack +p11084 +aVplease ! you are skinny ! +p11085 +aVnigga no the fuck they dont flop u obviously never watched ball in that era so stfu much dumbass comments like that +p11086 +aVbitch aint nobody give a fuck +p11087 +aVCUSTOM_AT " the truth will set you free but first it will piss you off +p11088 +aVjumpin dyna , you're crazier than a shithouse muskrat . +p11089 +aVare you nuts ! +p11090 +aVdamn dude , you give trolls a bad name .. you can't troll for shit .. +p11091 +aVoutstanding work sir custom_break custom_break hats off to you .. +p11092 +aVbirthing me ? you are really stupid . +p11093 +aVi love you . custom_break i hate you . custom_break let's meet each other . custom_break oh oh bitch . custom_break you a hot mama . +p11094 +aVdepends on what you're doing . +p11095 +aVsorry .. can't hear your tiny voice from way up here on the throne .. custom_break .. +p11096 +aVin dose it look like a gun dumb fuck maybe ask ur mom what a gun look like when she not selling std pussy to pay for the trailer u live in custom_break +p11097 +aVyou sound bitter . +p11098 +aVwhy the fuck the worldstar candy girls don't get naked anymore ? +p11099 +aVyall niggas whack . u not even making me try come on son +p11100 +aVawesome-what are your hobbies ? +p11101 +aVhey ! cnn this is what you get when you serve as obama's whore . don't you realize he is a pimp daddy and has no loyalty to you ? how about just straight line reporting the news ? you guys are like sophomoric dummies doing a class project .. your reports are laughable . +p11102 +aVshe needs a spanking from daddy ! +p11103 +aVi agree . kids don't need facebook in the first place . if you decide to give your kids uninhibited access to the internet / facebook despite the dangers they face , when an obvious bad situation arises - like your kid is suicidal because of fucking facebook drama - get rid of it ! if that means no internet in the house and no cell phone for the kid , all the better . i can't imagine being such an idiot that i think it is acceptable to let my kid keep a facebook account and repeatedly undergo this to the point that she's suicidal , and then compound that idiocy by attacking the dumb kid who talked some shit . actually , i ' m glad this moron chose that route , now she will probably never be a nurse and i don't have to worry about ever falling under her idiotic care ! +p11104 +aVdo you talk to yourself using your characters when you're alone ? +p11105 +aVi miss your witty comical sense on stupid articles .. you were the god of puns around here for about CUSTOM_NUMBER mos . +p11106 +aVgotta say you pinned some great stuff on your way to sleep +p11107 +aVwhere are you ? +p11108 +aVidiots . +p11109 +aVthat was your quote betty . +p11110 +aVbet he could get your mother ? +p11111 +aVthat was a fake study . you're fool for not understanding it . +p11112 +aVyou're obviously a retard that has no idea why it has an CUSTOM_NUMBER mn mwd fitted then , congratulations +p11113 +aVactually , you don't have to read dionne's articles to know what is being said . just read the headline , and you'll know what is being written . when obama craps , ej will be there to check it for the right form , texture , no odor , and color . the next day , we can count on an article declaring how perfect it was . +p11114 +aVboth are in your mirror . +p11115 +aVwackest as sayin he is not the fans favorite out of all of them be real nigga aint nobody buyin pusha t albums but i guess niggas like you from his city or something and stfu you aint no boss on this bloggin shit so stop actin hard +p11116 +aVnot just a fuck ass nigga . a weak fuck ass nigga . cause she was whooping dat hoe +p11117 +aVexcept reality and numbers prove you're stupid +p11118 +aVonly little dick niggas appreciate virgins +p11119 +aVdamn fairly ! you scary ! +p11120 +aVlier the event hasnt ended yet you dumbass +p11121 +aVhey girl , you need a cheeseburger or CUSTOM_NUMBER ! +p11122 +aVwell you are nuts . still believing in god at your age ? +p11123 +aVyou are a complete idiot with no clue what you are posting . go away azzhole pomerantz is not a starter moron and he is on the dl . get a clue +p11124 +aVbumpkins are old , ask your mom +p11125 +aVqueso-eating fuck-you - merkozy monkeys .. +p11126 +aVdavid is just awesome ! he knows his stuff better than anyone around - he is an outstanding teacher , motivator and he is also currently working so he knows what is happening in this field right now . i can't recommend this class enough !! david's is the class to take !! +p11127 +aVyou wish you were a better troll . +p11128 +aVhope you are scared out your wits , sox win ! +p11129 +aVyour chicken will look very cute +p11130 +aVthis is fucking creepy +p11131 +aVasher roth , you are the fucking man ! +p11132 +aVi don't understand your comment . custom_break custom_break that's unclos . can you find any issue in my logic ? custom_break custom_break but i have a lot problem in your goverment's logic . custom_break custom_break what are you doing ? hide your head in sand as ostrich ? custom_break custom_break why not show your logic and brain ? +p11133 +aVyou sir , are wrong . +p11134 +aVyup . this is america , and you are free to do just that . but you show your intelligence by complaining about " this rag " yet commenting numerous time's . again , put up or shut up . +p11135 +aVyou're right .. it's about debt and the pathetic economy that should be being discussed primarily . +p11136 +aVare you that desperate to try and prove your point that your hunting all of my comments about the avengers down now ? you are really pathetic , i hope you realize that . +p11137 +aVwho are you talking about sparky ? +p11138 +aVwould you like to know how god feels about this . ask him . +p11139 +aVmy , you seem like an intellectual giant ! +p11140 +aVyour mother needs to go back and edit your dads pecker so we don't end up with life errors like you +p11141 +aVwith all do respect sir , i fucked your mother in the ass while she was making breakfast for your father i even cummed on his pancake and told him he don't need syrup my shit too sweet !! +p11142 +aVa lot of yall girls are being hypocrites , don't act like you don't suck no dick and that you wouldn't suck a dick in public if you thought you would get away with it !! +p11143 +aVyou must be talking about seattle . +p11144 +aVbe funny like on tv and stop producing shit bantahh like you are currently doing on this site . your quite clearly not living up to your name . +p11145 +aVyou are a strong beautiful mother ! hang in there love \u005c u CUSTOM_NUMBER +p11146 +aVyou must be logged in to comment +p11147 +aVthat stupid bitch did that for tv know dam well she wouldnt do shit stfu hoe u aint tough +p11148 +aVare you going to homeschool ? +p11149 +aVi'm going to rape you . +p11150 +aVbut you're back , so there's that . +p11151 +aVdennis rodman beat you to it bitch .. next +p11152 +aVif first you are not , last , you are . custom_break +p11153 +aVthat looks like your handwriting . +p11154 +aVthought it was me get off that " pro black " shit smh dumbasses . +p11155 +aVso .. you are saying you know more about football than a hall of fame qb ?? i will listen to rodger " the dodger " staubach before i listen to an idiot like you +p11156 +aVand you misspelled feminazi . limbaugh's gonna be disappointed you didn't use your spelling words . +p11157 +aVi see . $ CUSTOM_NUMBER bucks is chump change for your CUSTOM_NUMBER figure pay . +p11158 +aVyour point being ? +p11159 +aVare you trying to tell us something ?? +p11160 +aVyou make white people proud ginobili * sniff * * sniff * +p11161 +aVprostitution was the only thing bringing tourists to rockford . CUSTOM_NUMBER years ago the streets were packed with people coming for the prostitutes . the restaurants were packed , the bars were packed , the hotels were packed and all of the businesses were making money and bringing in the revenue for the city . now , look at what you have . all of the businesses are closed , there is nobody coming to town and the only thing packed now are the jails , with nasty , CUSTOM_NUMBER year old hookers , and a city that has the nations highest poverty level . putting CUSTOM_NUMBER silly sculptures in the park draws no tourists . right or wrong , prostitution was the key to rockford's success . your mayor destroyed your city so he could build a city of jails . +p11162 +aVyou are going to lose CUSTOM_NUMBER % of your church members by that logic .. since CUSTOM_NUMBER % of female catholics will use contraception at some point in their lives .. +p11163 +aVyou married your sister bemuse your mom said so .. +p11164 +aVyawn , you're clearly new to trolling . CUSTOM_NUMBER / CUSTOM_NUMBER try a little harder . +p11165 +aVgoing by your logic , metro is part of the os environment , and it goes away once you start doing work . if you spend your time bitching about metro then you're not getting work done . +p11166 +aVafter reading your comment ? you're a moron . +p11167 +aVthen you aren't paying for quebec students to go to school , quebec residents are .. quit complaining about it like it's your money when it's not ! the shit you complain about is funded in their own provincial income taxes and pst . but i'll let you keep believing as you wish about it .. +p11168 +aVshut the fuck up coward . get lost and that includes the brood mare who bore you . to raise an insipid , selfish little shit like must have made he quite a great mom . +p11169 +aVmm ok no bitch u married your self cuz ur krazy n no dude would take your dumb shit +p11170 +aVawesome pic ! red is your color ! custom_break +p11171 +aVanders , you are so right ! custom_break custom_break exhibit a : iran +p11172 +aVstick my nose in other people's posts ? you are acting like i read your diary or something . it's a public forum you moron . what peaked my interest was your italian comment . you were basing it off his name , your name looks mexican , which i pointed out . +p11173 +aVyou aren't making sense +p11174 +aVyou are so damn pathetic , you make me physically ill . please , go away . +p11175 +aVfucking paid troll . +p11176 +aVnice try ming . bet ur one of them . where was ur white-knighting when those men were shitting on xiaxue and her friends ?? +p11177 +aVhe is fat though . +p11178 +aVyour a f u c k e n idiot i'm sure ou would suck a co ck +p11179 +aVyou're . wow +p11180 +aVto your credit .. at least you are honest when you don't decipher +p11181 +aVrondo just shitted on philadelphia +p11182 +aVand your a c * nt +p11183 +aVno sir . i love black men and wouldnt trade them for the world . always treated with respect and always knew how to pick them well cause my mother and father taught me well . no kids btw and currently studying . but ignorant black men like you just fuck society up . downing black women to reassure yourself that you as an avg black man represents some idyllic shit and black women fail in comparison . im a good ass woman and can make any man happy preferably black but if he is latin , white or asian then thats what it will be . custom_break custom_break i thought your comment was ignorance , decided to give you a chance to state your argument effectively but you couldnt hold your own so you failed . blah +p11184 +aVwhen are you cutting your hair ? ! +p11185 +aVthere is no worth while to " gay " marriage ! when some thing is immoral as gay / faggot life style is concerned ! don't tell me that they don't know that their life style wrong , immoral , and not accepted by the majority of the human race ! abd , if you think god , or mother nature accepts the gay / faggot life ! your dead wrong ! +p11186 +aVthank you . you are very correct . +p11187 +aVfucker has impossible dreams ! +p11188 +aVwhat the fuck are you talking about ? i said i supported the bill . what part of my post expressed support for sharia ? ! custom_break custom_break also , i'm not even in your country . calm down and re-read my post before you launch into this abusive tirade . i'm not a muslim and i oppose sharia . +p11189 +aVcan you prove that ? +p11190 +aVstick your head in a paper bag and barf away . make sure you tie the bag shut while your barfing . +p11191 +aVflagged . you're not funny . +p11192 +aVfucking hipster .. +p11193 +aVdude , you are clueless . do you even know what country you're in ? +p11194 +aVare you drunk ? +p11195 +aVyou're a little more realistic than i .. +p11196 +aVgo back to faux propaganda please ! custom_break custom_break you're lost ! +p11197 +aVto the mexican amb .. stfu and keep your usless fruit pickers in your sheet eating country . +p11198 +aVu a turd +p11199 +aVwow .. trevon got shot CUSTOM_NUMBER just walking around with a hoodie on .. this white custom_break dude get a speech CUSTOM_NUMBER walking with a fucking riffle .. fuck cops and custom_break white people .. +p11200 +aVare you " slow " joe ? he said average playoff game . +p11201 +aVholy shit ! massive dog :p lol you cook just like i do , i have no idea . " its black , it must be ready " best damn quote ! custom_break custom_break very enjoyable to watch man , love getting to know everymore , you seem funny as man . i have subbed ! +p11202 +aVserisously the fuck ? * sigh * +p11203 +aVbest fuckin comment ever . +p11204 +aVfuck you all .. haku is a girl .. cant you see when she collect medical perbs +p11205 +aVgo warp up your ass , you moron . millions of chinese have been murdered by these slit eyed japs . +p11206 +aVyou are probably right . +p11207 +aVcapisco .. quindi per evitare che gli idioti si confondano samsung dovrebbe fare pad triangolari ? +p11208 +aVwait until you are a minority in your own rednecked country . it won't be long now . \u005c xbfhabla usted espa \u005c xf CUSTOM_NUMBER ol ? +p11209 +aVnigga go suck some dick and get the fuck off my comment +p11210 +aVexactly .. i was making fun of your ignorant original reply . you're a smarty , that's for sure . custom_break custom_break and you didn't address your lack of boning . i guess you're into dudes , which is why you're such a huge mma fan . whatever floats your boat .. enjoy your wack time on the couch during the next card ! +p11211 +aVchocada pelos gostos singulares e pelos segredos mais sombrios do belo e atormentado jovem empres \u005c xe CUSTOM_NUMBER rio christian grey , anastasia steele rompeu sua rela \u005c xe CUSTOM_NUMBER \u005c xe CUSTOM_NUMBER o com ele para come \u005c xe CUSTOM_NUMBER ar uma nova carreira em uma editora de seattle . mas o desejo por christian ainda a domina em cada pensamento , e quando ele lhe prop \u005c xf CUSTOM_NUMBER e um novo acordo , anastasia n \u005c xe CUSTOM_NUMBER o consegue resistir . eles reacendem seu t \u005c xf CUSTOM_NUMBER rrido e sensual romance , e anastasia descobre mais sobre o angustiante passado do seu exigente cinquenta tons . enquanto christian luta contra seus dem \u005c xf CUSTOM_NUMBER nios internos , anastasia tem de enfrentar a raiva e a inveja das mulheres que vieram antes dela e tomar a decis \u005c xe CUSTOM_NUMBER o mais importante de sua vida . cinquenta tons de liberdade +p11212 +aVtrumbo .. tsk tsk tsk .. speaking of fails +p11213 +aVyes you are +p11214 +aVperfect ! always thinking , you are ! ) +p11215 +aVi'm not a mass-hole . just poking a little fun . it can't be easy . with that said , mass-holes have the pats ( so ya probably shouldn't talk too much smack to them ) . +p11216 +aVsegue la logica perch \u005c xe CUSTOM_NUMBER il capitalismo implica la propriet \u005c xe CUSTOM_NUMBER privata , e altri concetti che frammentano distruggono la societ \u005c xe CUSTOM_NUMBER , la solidariet \u005c xe CUSTOM_NUMBER . ma sarebbe un discorso troppo lungo e filosofico da fare , figuriamoci se si dovesse affrontare tale discorso con chi \u005c xe CUSTOM_NUMBER convinto che l'attuale sistema economico e sociale siano gli unici possibili e non vanno oltre la logica del profitto . custom_break custom_break si certo ora direte , ma dove sono sistemi alternativi ? custom_break custom_break ce ne sono diversi e nessuno trova risalto sui media per ovvi motivi , il potere cerca sempre di difendere lo status quo , come hitler o mussolini non facevano parlare di democrazia all'istituto luce o altro . +p11217 +aVsay you are right then let private business build and run the rail . +p11218 +aVyeah , fuck that freedom of choice bullshit . +p11219 +aVwhere are you readin that ? i see CUSTOM_NUMBER dl +p11220 +aVhe didnt but killing a dog with your bare hands and making it suffer while doing so is something only a sociopath could do . child molesters , dog killers are both sociopaths . stop acting like killing a dog by drowning is some normal thing . he's a seriously sick person and shouldn't be allowed to play in the nfl . good luck getting a good job in the corporate world with that on your record and for good reason . +p11221 +aVfuuck i need a dodgers win !! +p11222 +aVyes .. yes you are :) +p11223 +aVthe murderer in seattle has his ccl . shot CUSTOM_NUMBER dead in a coffee house then shot another when he jacked her car . custom_break custom_break pretty irresponsible behavior if you ask me . +p11224 +aVyou're like a little girl . man up , ass face ! +p11225 +aVlol - you are an absolute idiot without an education yourself . you are one to talk . +p11226 +aVthe black community is fucked .. always will be , willy lynch is in hell poppin bottled water and throwing confetti flames ! +p11227 +aVhey idiot , custom_break my point was , that you were too stupid to grasp , how about stopping this law of return which is very racist and tear down the apartheid wall on palestinian land . why can't the palestinians return to their own homes that you forced them out of . don't forget the un declaration , " zionism is racism . " instead of welcoming the stranger , you have engaged in a pattern of ethnic cleansing . if it weren't for the us , israel would be under economic sanctions right now . i care deeply for the palestinians , be they muslims or christians . archbishop theodosius attalah hanna , a palestinian arab , born in israel has spoken at length about the deplorable mistreatment of the palestinians by the israelis . i don't believe its your land . i believe jeus when he said the land would be taken away from you and given to another . israel exists , not because of god , but because of the balfour declaration . abraham foxman goes crazy when people say american is a christian country with freedom of religion for everyone . i'm in favor of immigration to american and israel . +p11228 +aVlawl bro , where were you last year ? +p11229 +aVyou are revealing yourself as a closet tyrant . or are you now coming out of the closet +p11230 +aVhey CUSTOM_AT - CUSTOM_NUMBER a CUSTOM_NUMBER d CUSTOM_NUMBER f CUSTOM_NUMBER d CUSTOM_NUMBER b CUSTOM_NUMBER c CUSTOM_NUMBER dfe CUSTOM_NUMBER a CUSTOM_NUMBER :d isqus , quit using " CUSTOM_NUMBER " and " CUSTOM_NUMBER " instead of " for " and " to " . believe me , you fucking aren't prince . +p11231 +aVdisgusting is your comment , zoo as well as your own like . +p11232 +aVlol defends sounds better , you asshole +p11233 +aVnewspaper comments means your never far away from an idiot posting a silly remark .. CUSTOM_AT :d isqus +p11234 +aVp.s. and drop that loser suzy . you are a loser and a trouble maker . exit stage left , and go get a job . it is a rap !! +p11235 +aVCUSTOM_AT .. custom_break why are you sweating ?? cant handle facts eh ?? +p11236 +aVare you changing the " ~ username " to your username ? +p11237 +aVab-so - fucking-lutely perfect ! da-yum you sir are a very hot man ! +p11238 +aVis it gay if you tried to suck your own dick ? custom_break custom_break custom_break i never tried it .. just wondering .. custom_break custom_break thoughts ? +p11239 +aVwhere is your source ? +p11240 +aVread any review for proof of smoothness , and i said wp was the opposite of a dead platform , not the fastest growing platform . i don't understand why people like you attack other oss , it's stupid , i like android but i also like wp , it's so moronic to try to put down another os because there is literally no logical reason to . +p11241 +aVso you've been to new haven ct . +p11242 +aVcan't be a king when u don ' know who's your daddy nit wit +p11243 +aVof course , you know that if you are gardening you don't get to sit very much : ) +p11244 +aVonly ignorant ass nigga i see is you .. step off bitch +p11245 +aVwho are you calling morons , you agitating as ** le ? +p11246 +aVCUSTOM_AT fly you an asshole ! +p11247 +aVare you joking ? thats the celts idiot +p11248 +aVi am always curious why politicians ( both parties ) make spanish language ads . custom_break if you are able to vote , i assume you are an american citizen . if you have been here long enough to become an american citizen , why can't you speak english ?? +p11249 +aVyou faggots are never happy with anything , possibly why you dont have your own bmx site . +p11250 +aVif you can understand what is being said here you should be able to respond in english . +p11251 +aVwhy then are you liberals targeting women ? custom_break custom_break +p11252 +aVbecause you are a spurs pig ! +p11253 +aVit's idiots like mr. pelham who like a law which really allows someone to murder someone else ( with no eye witnesses ) and then claim self-defense under the equally idiotic " stand your ground " law . custom_break +p11254 +aVny niggas need to stop hatin . the only major nigga still living that just blew in the past CUSTOM_NUMBER yrs . is jay-z . that boy nas is good . all the rest of them \u005c ufeff new york niggaz is garbage . mobb deep's first video was flossing a honda accord or a acura . fuck you diabetic lookin niggaz !! +p11255 +aVyes you are .. now try and fix it +p11256 +aVscrew you ;) +p11257 +aVwapo " exist to publish news " ? you are truly " lostinthemiddle " . +p11258 +aVfuck i wanted to say that lmao +p11259 +aVyou are angels fan . not a la losers fan so keep watching game +p11260 +aVwhat the fuck are you talking about ? common wasn't trying to end his career . he made a song , drake felt some kind of way and starting talking hard shit talking about " say my name " . common said his name and that drake showed his pussy lips and said i'm not going to reply because i'm to big . but yet he can try and diss lil kim thought right ? drake is a pussy straight up ! +p11261 +aVthat's why you rather talk about teaching your pig ; you are indeed incapable of much else :) +p11262 +aVare you thinking about getting one .. +p11263 +aVi wonder how you would do as president .. i'm sure you have fulfilled every promise you have ever made right ? i am sure you are perfect and never make mistakes and i'm sure you walk on water because you sound a little holier than thou +p11264 +aVonly when you hop off my dick +p11265 +aVend-of - the-line " ugliness means .. really fucking ugly . that picture is pretty unflattering , but it's not something i would give a second glance to if i were walking by her on the street . +p11266 +aVCUSTOM_AT : you afro-american negro's only & not blacks from different cultures . +p11267 +aVpunch your dad +p11268 +aVyou are not one to define intellectual honesty or reading compreshension . custom_break +p11269 +aV.. and you were good as a baby .. then look what happened . +p11270 +aVcongrats on the new job , it is definitely worth a little splurging ! +p11271 +aVwhere did you read anything about attempted suicide ? +p11272 +aVthat is a totally ignorant way of looking at history , luckily most americans are educated to think differently . placing CUSTOM_NUMBER st century morals and ethics on the past is wrong , no matter what time period you speak of . learning about past mistakes and honoring people who fought for what they thought was right ( and were americans that have made this country ) is not " wrong wrong wrong " . we all come from ancestors who did things in the past that we would think of as indescribable today . the white supremisct and redneck comment , just makes you look as dumb as other racists . +p11273 +aVbath salts . gosh . custom_break custom_break but seriously , bath salts come in CUSTOM_NUMBER mg packets . most of the idiots taking that shit don't realize you are only supposed to take CUSTOM_NUMBER mg at a time - most of them take it all at once . this leads to some seriously , seriously fucked up people doing some seriously fucked up shit . and they aren't even close to being banned in most states yet . do yourself a favor and stay the fuck far away from that shit . +p11274 +aVlindie CUSTOM_NUMBER CUSTOM_NUMBER minutes ago in reply to design CUSTOM_NUMBER u CUSTOM_NUMBER custom_break yes , mexicans are dying every day because good god fearing americanscan't seem to get through a day sober . custom_break ** custom_break no , mexicans are dying everyday because eric holder ordered the atf to allow gun smuggling via fast and furious in a pathetic attempt by obama to undermine the CUSTOM_NUMBER nd amendment custom_break custom_break nice try . go back to your bottle , now , canuck +p11275 +aVyep , that is it , and you are my park ranger so get back to work . +p11276 +aVyou dont need to play it .. you are it +p11277 +aVhaha you were serious +p11278 +aVare you really a former pro athlete ? +p11279 +aVthank you so much neha :) +p11280 +aVthis had better be the last time i hear some shit like this or i ma board up my crib load up on guns and play resident evil to sharpen my shooting cuz i ain't goin down without a fight . wrd CUSTOM_NUMBER everything +p11281 +aVthe juxtaposition of the jaguar pitch and joan's evening was fucking brutal . i thought i was going to die . custom_break custom_break pete campbell you horrible , horrible man . +p11282 +aVgood night ! present : porn creampies and - < a href = CUSTOM_URL porn downloads < / a > henitia porn black gay porn dvd got gay porn porn star awards < a href = CUSTOM_URL of the jungle porn < / a > porn homemade porn women and machinary adult porn comic collection < a href = CUSTOM_URL porn < / a > free streaming porn tube foxxy love drawn together porn charlie porn games < a href = CUSTOM_URL amasture porn < / a > india homosexual you porn < a href = CUSTOM_URL porn pics < / a > real hookers porn site .. see you later ! custom_break custom_break < a href = CUSTOM_URL oriflamel online < / a > custom_break custom_break < a href = CUSTOM_URL generic online kamagra drug < / a > +p11283 +aVill still fuck him up +p11284 +aVyou're name is anon shut the fuck up +p11285 +aVliking your own comments shaame loser +p11286 +aVjunk food will make you fat but junk science will rot your brain . extra weight you can lose , being too full of yourself just feeds on itself until your head explodes . poor hemi . pop goes the weasel . +p11287 +aVwhat size are you ? custom_break +p11288 +aVwow you are sensitive . this trailer is amazing . +p11289 +aVkill the unborn women . not too smart when you are pointing fingers at the republicans for waging war on them . hysterical liberals talking points but they go beyond to action . kill the potential women voters you want to count on . this is a real loser for you progressive liberals . +p11290 +aVwow are you serious ? hahahaha +p11291 +aVvorhin hatte ich meine albernen CUSTOM_NUMBER minuten . nun antworte ich mal ernsthaft . also , ich meine , wenn man alleine lebt , muss man doch nicht in die einsamkeit ziehen und da versauern ! eben gerade dann nicht ! das ist doch der albtraum . man kann dich in irgendeinen verein eintreten oder so , in einen chor gehen , da kriegt man schnell anschluss . wenn man dann noch arbeitet , sind ja viele stunden vom tag schon weg . und warum kein gemeinsames konto ? weenn beide arbeiten , warum soll man dann alles zusammenschmei \u005c xdfen ? wenn nur einer arbeitet , ist es viell . was anderes . +p11292 +aVoh dear the right wing retards have picked up this article . custom_break i know the ave iq of right wing idiots is significantly less than the average human being , to be fair my pet monkey has a higher iq and he is on drugs . naughty monkey . he is due a slapping later . custom_break custom_break oh yeah , i was going to ask if the right wingers are rooting for war on behalf of israel . boeing , lockeed , rayathon etc , attackking babies in arms with cruise missiles must make you all proud to be a merican . don't forget to claim it is gods will . custom_break +p11293 +aVi know she's black , and i know everyone else knows she's black - she only has very light skin . custom_break custom_break this is like asking ' are people aware michael jackson is black anymore ' ? yes . us white folks still know mj was black , just with white skin - same with nicki . custom_break custom_break if you're born black , you're black - doesn't matter what you do with your skin after that point or how you try to portrait yourself . +p11294 +aVpapi , why are you such a hateful person ? +p11295 +aVlike your mom custom_break +p11296 +aVyou are a very nasty person . +p11297 +aVthey crushed the only good car in that whole movie .. wow . and this was so much more important than finding where shipments of drugs , illegal weapons , or illegal immigrants were going . how about taking the resources you fucking wasted to ruin this guy's life and put them towards enriching the lives of others ? put that money into a fucking school or something . shit , i don't know .. +p11298 +aVbro your caps lock is stuck +p11299 +aVi just fucking vomitted custom_break +p11300 +aVthank you heavenly father , for jesus , your mercy & grace daily . = ] you are definitely my power source .. my everything = ] +p11301 +aVyou already are +p11302 +aVyour mother should have had an abortion and thus none of us would be subjected to your stupidity tonight . +p11303 +aVi mean , have we learnt nothing from the catholics ?? when you stomp on natural human urges , you fuck with people's brains . you give them a distorted view of their bodies and those of others . all sanctified by the church . terrible . +p11304 +aVwell , straight , what is your narrative ? a little chaff is all the argument you have ? +p11305 +aVwow , someone doesn't like you +p11306 +aVthen why are you so foolish to even bother coming here ? +p11307 +aVpussy t aint fucking with wayne lyrically check his mixtapes and albums wayne is way more successful than pussy t and richer +p11308 +aVsounds like you're the racist .. you hate whites . +p11309 +aVhey twinny how are you ? +p11310 +aVyou need to leave your hole sometimes . +p11311 +aVCUSTOM_AT no . it's always about money . you're just older now and you lament because you can't ignore it . life is much better when you can enjoy games as entertaining as this one to its fullest . +p11312 +aVfat people are a safety concern on a flight . what if people need to get off the plane quickly and your fat butt is in the way . i would have no problem trampleing you . +p11313 +aVi work at a major phone retailer . i have to deal with proclaim like those commenting all the time that they broke their precious iphone . so you drop your phone twice .. then a third time .. how does CUSTOM_NUMBER sound for a new phone . why would you pay the CUSTOM_NUMBER twice when you can get a decent case once and not have to pay CUSTOM_NUMBER for a new one . or CUSTOM_NUMBER w / o applecare . buy a case you cheap pathetic bastards . custom_break custom_break thank you author for not being a dumbass and those who don't have a case stop whining like an apple gambit b ** when some speaks logic . +p11314 +aVbennett's made me laugh so fucking hard , hahaha ! +p11315 +aVlooks like your stair case !! +p11316 +aVyou're the proof . +p11317 +aVforeigners are perfectly welcome in china , unless your name is george bush or dick cheney we won't arrest you haha ! +p11318 +aVman , you are some incredible racist . " black boy " ? +p11319 +aVi tried the brown sugar scrub . doesn't smell very well . when not using .. the oil goes to the top & you will have to restir . does leave your skin feeling silky . +p11320 +aValways nice blond uk girls and some tanned guy from the south europe man they south euros have all the fun and dont even talk about porn its all tanned guys with uk girls man its fucking not right +p11321 +aVfuck off mate that would make a great kids story , it's not like the kid understands wages or anything . also their biggest cunt didn't play in the match , isn't that a good moral . +p11322 +aVyou don't know what you are talking about he does +p11323 +aVmexico win CUSTOM_NUMBER - CUSTOM_NUMBER .. ?? .. what are you smoking dude . +p11324 +aVwazzat ? custom_break . custom_break custom_break . custom_break hail to the chief wrote , in response to oh_really _ now : custom_break aw , the syph \u005c xedl \u005c xeds-riddled c \u005c xfant is all riled up . boo f \u005c xfack \u005c xedng hoo . take your pathetically lame comments and shove them deep up that dry , elderly sn \u005c xe CUSTOM_NUMBER tch and choke on it , grandma . it's p \u005c xedg-f \u005c xfacked moron liberals like you that voted that disaster into the wh and cost us trillions and threw the country into the toilet . now do us all a huge favor and go fuckoffanddie in agony . it'll be the first time in your miserable existence that you actually did something worthwhile . in the meantime , s \u005c xfa \u005c u CUSTOM_NUMBER k my glistening conservatism , b \u005c xedt \u005c u CUSTOM_NUMBER h . +p11325 +aVyou are a hoot , beckie ! +p11326 +aVnext life ? custom_break custom_break are you hindu ? +p11327 +aVwell .. you are so retarded . +p11328 +aVare you ready for the idiots ' bashing of you ? custom_break custom_break how dare you accuse the king and his knights of trying to deceive his kingdom !! +p11329 +aVeven if you post one line , it is a lie or distortion . +p11330 +aVwhat's disgusting is people like you judging the life journey of others . go crawl back under your rock and let those who are positive make the comments . +p11331 +aVyou get a derp for effort . +p11332 +aVgoodnight to you and the rest of your cop friends and your inside " jokes . " +p11333 +aVgo fuck a wall and cry , but make sure no other dinging jew stands behind you or you might lose your honor . +p11334 +aVwestbrook is going to learn like ai did . when you are a crappy pg , your team suffers while your stats soar . custom_break custom_break btw ai > westbrook custom_break custom_break ;) +p11335 +aVstrict gun laws stop criminals from owning guns to commit crimes ? you are a moron +p11336 +aVjwaan full of shit as usual . +p11337 +aVyou mean bitterman has a white trash inflatable ? +p11338 +aVbe quit mookie you don't know what your talkin bout artard +p11339 +aVno douchenozzle , it's murder . any way you look at it , when you stop a beating heart , it's murder . +p11340 +aVyou sounded nervous as fuck but i would be too ! good fucking job dude proud of you . +p11341 +aVshut your pie hole b ** ! +p11342 +aVforget about all of the critics on this comment board mr. gill . it's about time someone starts exposing idiots like this guy delesdernier . this guy is arrogant and sits around passing judgement on teachers when the whole time he can't put together an intelligent sentence in writing . and he is supposed to be an attorney , and is a member of jpsb , and past president of the school board ? it tells me that he must suck as an attorney if he keeps seeking political jobs where he obviously does not need any skills to perform . how did this guy get on the school board anyway ? what an embarrassment to jp and the state of louisiana . god forbid if this moron would actually become a judge .. good job mr. gill ! +p11343 +aVwhat is your point ? or do you have one ? +p11344 +aVhmm .. gofuckyourself .. +p11345 +aVyour paintings are beautiful charlotte !! custom_break +p11346 +aVget off your knees your embarrassing yourselves . +p11347 +aVyou are proving yet again that liberals are masters of doublethink . +p11348 +aVare you his employer ? .. see how this works ? +p11349 +aVi'm guessing english is not your first language . he was being sarcastic . +p11350 +aVcheck your own username , doofus , and your spelling . +p11351 +aVyou are crazyy +p11352 +aVspent more than all others combined . are you insane ? +p11353 +aVwhat a loser you are . +p11354 +aVanna you are so talented ! custom_break +p11355 +aVfuck you mikal . don't laugh at something i say you stupid little punk ass bitch . no one likes you . pussy . +p11356 +aVwho the fuck gives a shit peanut what forbes says ? that's like if fucking people magazine wrote up an opinion paper about diablo CUSTOM_NUMBER . it wouldn't be worthy of wiping my ass with . +p11357 +aVsshh you are being logical +p11358 +aVyou must be related to the nigger above , live in the same trailer park do ya ? +p11359 +aVfucking spoiled rich fuckers have no clue what it is to make a dollar . go and work for a living and see if you burn a CUSTOM_NUMBER k bag . hell you wouldnt even be burning a CUSTOM_NUMBER dollar bag . that is not art losers . +p11360 +aVcomo siempre de estupidos e ignorantes siempre se equivocan , a poco no saben distinguir ?? ba !! +p11361 +aVdid you really think little georgie's mess could be cleaned up in CUSTOM_NUMBER years ? +p11362 +aVinsulting a little baby ? really ? how pathetic . what an a ** hole thing to do . +p11363 +aVfuck the insiders i watch the games we suck +p11364 +aVooh , what a compliment . i just wish it was from a higher life form . +p11365 +aVyou guys are trouble-making trolls . custom_break custom_break well done ! +p11366 +aVyou just have to plan for the idiots thats all :) +p11367 +aVshouldn't you be at your lamaze class ? +p11368 +aVover CUSTOM_NUMBER , CUSTOM_NUMBER views fuck boy .. get some money about yourself +p11369 +aVyou are a certified_moron +p11370 +aVkeep sucing down the koolaid liberat stooge . how pathetic you are +p11371 +aVfuck texas . too hot to even visit that bitch . who the fuck ever says oo i'm going to texas . i'll wait for it .. no fucking body . +p11372 +aVthis post gave me cancer . . . . . someone go back in the time and make sure that his mother have an abortion . . . . +p11373 +aVCUSTOM_NUMBER : CUSTOM_NUMBER , damn you and your winning ways . +p11374 +aVyour name is stupid +p11375 +aVyou are correct sir +p11376 +aVwould you ever come to the uk custom_break +p11377 +aVfucking sick !! jessica is beautiful .. natural beauty .. would u rather see her with botox , filler and venners .. get a life !! loser +p11378 +aVevelyn we new you were trash in the beginning but as the show grew you got out of control and really showed the world who you really are trash . trash is what you are and you and chad are deserving of each other ! you all are from the same flock ! +p11379 +aVdon sounded like wrathful betty in that moment . custom_break custom_break don was a woman scorned . custom_break custom_break know you know how that shit feels , don . +p11380 +aVhey , fucking asshole .. just wondering .. do you have any good yarns about beating the shit out of any women lately ? we're all dying to hear .. custom_break +p11381 +aVbased on your comments .. you got some hate there puppy . +p11382 +aVwikipedia isn't fact , you idiot . & nbsp ; +p11383 +aVi hate isla . dont want that douch in our team . dirty little idiot . last time we played against udinese he played dirty against vidal like he was trying to prove that he is better than king arturo . i just have one thing to tell him . in your dreams pedro !! +p11384 +aVit's a CUSTOM_NUMBER out of CUSTOM_NUMBER series you moron +p11385 +aVremember anecdotal comments aren't useful ? what are you lecturing me ? lol +p11386 +aVthen wtf are you doing on this site . if you don't like fm then you dont deserve to be on this site . now fuck off you wanker . +p11387 +aVget lost , lightwieght . you are way out of your league here . +p11388 +aVpre-jellybean ? what are you , stupid ? have you even seen it ? doubtful . custom_break custom_break my sii skyrocket , is running ics , just fine as smooth as any iphone i've seen . and i know for a fact , i've seen those . +p11389 +aVokc bandwagon CUSTOM_NUMBER . just kidding since CUSTOM_NUMBER .. get off of kobe's dick +p11390 +aVlucky you ! i adore doodlebug ! your little pages are too adorable ! +p11391 +aVplease tell me you tried to spell rondo in your username . you seem like a dumb fella . +p11392 +aVno offense but you are drunk . +p11393 +aVwhat are you talking about ? custom_break custom_break +p11394 +aVi like your style +p11395 +aVtalk about freedom of speech . we are being denied freedom to defend black pride n only white racist remarks are allowed and published here . +p11396 +aVif only everybody was as intelligent as you are .. +p11397 +aVyou don't get out much do you ? +p11398 +aVfunny because i clearly saw him put his arm infront of the elevator and another infront of her .. unless you saw another view i suggest you shut the fuck up before you talk shit . obviously either way i wasn't serious no one knows whether this was real or fake , or what the situation was so maybe you could hop off . and obviously your a bitch . you get mad over everyones comments ? nasty hoe +p11399 +aVof course you would say that +p11400 +aVconsidering obama's preferred methods of dealing with prisoners , this may be the best way . i mean , we're not going to get any intel out of them anyway , and any that we do happen to get will be released to the msm immediately ; letting the other bad guys know what we know , so what's the point of capturing these a-holes ? might as well off them . when we get somebody sensible back in the white house then we can go back to capturing them . you know , at the point when the soldier grabbing the goon doesn't have to worry about getting sued by the cretin who's being represented by one of barry's personal injury squad because he punched the murderous thug in the chops . +p11401 +aVare you serving sangria to the ' kiddos ' now ? +p11402 +aVwho so ever you are .. bravo !! +p11403 +aVyour comment is kinda racist lol dumb ass +p11404 +aVwhere are you in the standings ! +p11405 +aVyou are a moron chargerin +p11406 +aVwould be cute on you barb +p11407 +aVlike your sister o georgetown lmao she was focused actting like she never tasted dick before +p11408 +aVfor me airsoft guns are good to use for a self defense , yes it cant kill but it can hurt a lot but for goodness sake especially when you are in trouble . custom_break your safety will also base upon on how fast your brain can response , +p11409 +aVdo not tell me you are remodeling bathrooms , again !! :) custom_break +p11410 +aVyou guys are inspiring !! +p11411 +aV.. quit your hiv drugs and die .. you are not a productive part of society !! +p11412 +aVshit we take every bitch if you ain't know . spanish , white , black , asian , italian , german , european , russian , austrian , new zealander , canadian , persian , scandinavian , etc . we get all the bitches .. fuck you talking bout . +p11413 +aVyou are a hypocritical idiot . +p11414 +aV* fuck no !! * ur hella annoying everytime u sing phillip . u seemed lyk ur takin a * shit * plus no talent . jessica is much better !! +p11415 +aVthen you get pujo +p11416 +aVyou're a moron . +p11417 +aVgrr grr roar , lmfao aww im sorry are you mad at the truth , well better get ready to be mad for a long while cause you got my pres for CUSTOM_NUMBER more years lol custom_break custom_break oh yea you moronic dumbass have a nice day and a nice CUSTOM_NUMBER . CUSTOM_NUMBER more years under obama lol +p11418 +aVyou must be bored . probably a cavs fan .. +p11419 +aVit has been mentioned several times are you accusing me of making it up . shame on you . +p11420 +aVthis is one of many reasons why you are the face of failure . +p11421 +aVgo back to where you belong then fuckboy . last time i checked you are still -- unfortunately -- over here . stop bitching and grow a pair , bitch . +p11422 +aVedlefson is absolute garbage . get him the fuck off our team . +p11423 +aVtde is the future custom_break custom_break fuck this good music young money bullshit - they're both whack anyways +p11424 +aVok you mofos at city hall , how about giving it back to the taxpayers ? +p11425 +aVfuckin stuttering , repeating the same shit , not rhyming at all , this is what hip hop is all about now . +p11426 +aVthis article has nothing to do with obama you fool . +p11427 +aVnaturally you're proud of your own racism . +p11428 +aVfirst , why do you make a comment with the id " guest ? " are you afraid of revealing who you are ? second , i am sick and tired of the stupidity of " class warfare . " you've got to be quite stupid if you still don't know that those wealthy are the one's who provide jobs for those of us who work hard for a living . it is an obvious conclusion that if we tax those who produce jobs , they will produce less or reduce jobs . that is not difficult to understand , unless , of course , you are liberal who thrives in envy and division and class warfare . +p11429 +aVha ! ha ! ho ! ho ! he ! he ! .. jimmybhoy CUSTOM_NUMBER .. harryboy CUSTOM_NUMBER .. same old troll .. ha ! ha ! ho ! ho ! he ! he ! .. roy . custom_break custom_break tick tock custom_break +p11430 +aVyes it does . muscle mass turns to fat when you no longer use it . steroids make you able to increase the intensity and frequence of your workouts . without steroids , you can't maintain that pace . and therefore , your muscle mass drops . no different than muscular response when off steroids . +p11431 +aVthat should have been your name ! +p11432 +aVall yall just shut the fuck up the man is dead get over it +p11433 +aVCUSTOM_AT i have no roommates either . cause i hate bitches . and as a few male friends told me , the ratio of bitches to women like the loc is like CUSTOM_NUMBER / CUSTOM_NUMBER +p11434 +aVyou'll need a ring to remember your rings . +p11435 +aVmal den teufel nicht an die wand ! custom_break es sei denn , deutschland schafft seinen euro ab , und die anderen d \u005c xfcrfen sich allein mit dem ganzen sch .. herumschlagen . +p11436 +aVlmmfao !! im weak as fuck !! " are we gonna do coke ? ! " that bitch was hilarious the whole vid .. +p11437 +aVyou mean fat ? +p11438 +aVwow , take it easy buddy ! sorry some people don't want to be a slave to money their whole life . if what your talking about is shitting all over people .. i'm all for it ! :) +p11439 +aVyou guys are looking hawt !! +p11440 +aVfucking scrabble . +p11441 +aVyou just know she loves getting railed by big black cocks . negro brothers are raping her pretty white cunt everyday while all the white boys jerk off to her picturees lol . +p11442 +aVthat really was messed up that she called that little boy fat . def unnecessary to attack him i wonder if she'd rule against herself if his suicide was due to her talking shit about him on national tv . +p11443 +aVyou're finding some really cool ideas . +p11444 +aVblaahh .. your a hoot . and after a thirty pack you must be a wild and crazy guy .. +p11445 +aVtakenprison is fucked now since connor gave sonby co-owner he is abusing like fuck +p11446 +aVreally ? " i bet you aren't making six figures like this guy " ? are you that red head douchebag guy who cohosted his diggnation shows ? because that was a pretty douchey comment .. +p11447 +aVyour moms hungry for sausage . +p11448 +aVyou're clueless . +p11449 +aVthen why are you republibaggers so angry when he was pulling the troops out of iraq ? +p11450 +aVthem some ugly motherfuckers . proof you don't need to be beautiful to make it in hollywood , you just have to know who to blow . +p11451 +aVyou my friend are delusional . +p11452 +aVoh here you are again . die for your own good . +p11453 +aVyou are wrong beside stupid asshole . i was production supervisor in a printing company indetroit making CUSTOM_NUMBER CUSTOM_NUMBER usd . and spent all my life in printing . now i am CUSTOM_NUMBER years old and still working part time in printig company in detroit and . never worked in liquor store . +p11454 +aVif we were all assholes , diane sullivan cohen , this forum would be full of shi t . +p11455 +aVthey also faked the titanic sinking , so that they could make stupid films about it and earn billions . +p11456 +aVwhich one are u getting ? +p11457 +aVdamn you ! +p11458 +aVprovee , put your dil pickelson back in your pants . provee is just a little guy . custom_break lc +p11459 +aVyou are so correct . custom_break custom_break please note : message attached +p11460 +aVyou're an idiot if you still believe those lies after it's been exposed as a complete lie .. why are you repigs so freakin ' stupid anyway ? custom_break +p11461 +aVmiss you friend :( hope your enjoying quebec ! +p11462 +aVnot even close . you are factually incorrect . +p11463 +aVlet me guess .. you're a soccer fan . +p11464 +aVgunt labor - i know you are but what am i ? please take some time to formulate your own opinion instead of just regurgitating mine back at me . idiots like you erode your own arguments . come again please ! +p11465 +aVhow do you really feel ? +p11466 +aVmurdered , yes . christians , no . you are the bigot spreading lies about christianity . +p11467 +aVstupid fool you white people stole that land so what you talk about immigration idiot +p11468 +aVha , ha , ha , poznata pedercina sa juzne tribine kaze da ce popusiti vermezu kurac kao u stara dobra vremena . sunce ti zareno pa on svoju nastranost i izoblicenost ne skriva , nego javno trazi da mu se stavlja u usta . fuj , kakva droljetina . +p11469 +aVwetback wife ? where are you getting this ? custom_break +p11470 +aVwhere are you guys getting all this money from ? +p11471 +aVoccupy rapists ? where did you read they were rapists ? +p11472 +aVi hope you are not a spurs fan .. +p11473 +aVno .. you are if you think the thunder don't have a damn good chance to win though +p11474 +aVhaha i remember dude pulled out his dick they said put it in he said fuck that imma eat her out some more it was like ten mins +p11475 +aV< div class = " forum-item forum-reply " > < div class = " forum-item - description " > rivers is a player . he was drafted in the CUSTOM_NUMBER st round for a reason . the hines ward crackback block cost him an important season starting his CUSTOM_NUMBER nd year . great pickup by the giants . < / div > < / div > +p11476 +aVfuck me +p11477 +aVand stop copying and pasting to your own comment to get it to the top , you are truley a self-important little smug peddler of the left .. +p11478 +aVranda you can't pick your groom off pinterest .. haha scott's there to stay ;) +p11479 +aVyou sure you aren't wearing your elvis shades ? +p11480 +aVhahahaha its tru tho .. im CUSTOM_NUMBER ' CUSTOM_NUMBER and shit aint the same when i do it .. plus i gotta work out like CUSTOM_NUMBER times harder than a short dude to get muscles .. but iss better than being a short lil beeiittcchh lol +p11481 +aVagreed .. if you're too much of a pussy to ride a real bike , don't put yourself and others at risk by strapping into this piece of shit custom_break custom_break could you image getting broadsided and crunched in this thing ? at least you can lay down or even get off a bike if needed , saved my life before ( true story ) +p11482 +aVhi marinersbaseball CUSTOM_NUMBER how are you and the family ? +p11483 +aVyour fox talking points are showing +p11484 +aVthis is just for you alecia !! +p11485 +aVare you going ! ? +p11486 +aVthere is very little evidence that this happens often . instead , you have many rape victims never getting justice for brutal crimes against them . i get the sense that there are a lot of potential rapists here on this board , who would certainly rape if they could get away with it . +p11487 +aVyour moms a wh . ore custom_break custom_break fact +p11488 +aVahehe all the time , you are boring ! +p11489 +aVi would call you a dumbazz to your stupid face and you would have no choice other than to agree with me . stupid grunt . +p11490 +aVyou are the man , u have been tested . +p11491 +aVtalk about laughable . . . their " not " that . . . stupid . +p11492 +aVrzeczywi \u005c u CUSTOM_NUMBER bcie , sklepy ze szklanymi witrynami , w kt \u005c xf CUSTOM_NUMBER rych wystawiony jest sprz \u005c u CUSTOM_NUMBER t producenta to innowacja g \u005c xf CUSTOM_NUMBER wnianego apple i nikt inny nie mo \u005c u CUSTOM_NUMBER ce otworzy \u005c u CUSTOM_NUMBER sklepu . jeste \u005c u CUSTOM_NUMBER b idiot \u005c u CUSTOM_NUMBER , paranoikiem i do tego ignorantem . zaraz si \u005c u CUSTOM_NUMBER oka \u005c u CUSTOM_NUMBER ce , \u005c u CUSTOM_NUMBER ce apple wymy \u005c u CUSTOM_NUMBER bli \u005c u CUSTOM_NUMBER o sra * nie i nikt inny tego robi \u005c u CUSTOM_NUMBER nie b \u005c u CUSTOM_NUMBER dzie m \u005c xf CUSTOM_NUMBER g \u005c u CUSTOM_NUMBER .. +p11493 +aVok start with your street . let see how all your neighbors will appreciate you and your ideas . +p11494 +aVzimmerman is a great man dont you dare try to disrespect him .. you are a black monkey female primate you are worse than black males . thats the reason rich blackmen always get a white or latina wife . you stink have disgusting nappy hair dirty black skin gorilla lips and ashy elbows u smell like dodo brown . +p11495 +aVim not the moron that tried comparing the two teams > its impossible to compare > you asked i answered . i think the celtics in the CUSTOM_NUMBER ' s are better than this heat team . i can't prove it . nobody can . grow the f u c k up +p11496 +aVCUSTOM_AT you're a deplorable human being +p11497 +aVthen , why are you writing in spanish ? +p11498 +aVfuck that shit . kobe has CUSTOM_NUMBER rings . chris CUSTOM_NUMBER . gtfoh and i'm a knicks fan . smh +p11499 +aVthen i'd expect us all to be bankrupt within about CUSTOM_NUMBER months . " custom_break custom_break you mean we aren't already ? perhaps you should go back to writing your tawdry little blog . +p11500 +aVi will slap any nigga from virginia , right there in virginia , in any spot in virginia , just to say fuck every nigga in virginia and you can tell any virginia nigga kotti kadotti said that ! +p11501 +aVwhat the fuck does this have to do with black power , you dumb fuck .. shut the fuck up idiot .. some asshole always gotta be bringing race into something and ruining everything .. +p11502 +aVsecond coming of sherlock holmes , you sure are not ! +p11503 +aVand you come across as the epitome of the entitlement whoring , freedom leeching , obama licking , america hating liberal parasite ! +p11504 +aVyou're a disgusting excuse for a human being . +p11505 +aVlmfao this nigga got to the ugly girl booty said " not you +p11506 +aVthose are two men kissing smh thats that shit i dont like ! +p11507 +aVniggas stop to kill each other we need more chocolate / dark / brown skin custom_break black sons / kids in america \u005c ufeff and in all the world if want kill somebody custom_break then go kill white men and crackers because they real hate us ! stay custom_break dark , black and proud ! black love / black power ! custom_break custom_break custom_break custom_break custom_break custom_break kill whites kill all \u005c ufeff \u005c ufeff crackers not your ppl guns up ! custom_break custom_break custom_break custom_break custom_break custom_break +p11508 +aVif i white girl came up to he and sad i love black guys can i touch your dick ? ima say fuck it touch it and tell a mf friend +p11509 +aVyou show your stupidity and ignorance each and every day . +p11510 +aVdo you ever wonder why you are a griefer or do you just spout out nonsense b / c you don't know better ? stop being a jacka ** and trying to ruin other people's day . get a life , seriously +p11511 +aVclick his like button if you think he's a moron . +p11512 +aVthat guy needs to go fuck himself . seriously +p11513 +aVeither way , it shouldn't affect you . that's why you are a professional golfer . your one job is to focus on hitting a golf ball . that's it . +p11514 +aV.. that is one mentally disturbed person , " you write . custom_break custom_break custom_break i wonder about your mental state , juan juan . you seem to spend a whole lot of time reading the newspaper of a foreign country and foreign culture , and then making nasty comments about those people . custom_break custom_break custom_break do you have mental problems or are you just very , very lonely ? +p11515 +aVa nice white bed , just what you wanted . +p11516 +aVwhat the hell people got for big sean ?? he fucking suckk ! +p11517 +aVyou spurfans sound worried . +p11518 +aVwhen you lose your cable at home , you then join the oklahoma state football team .. custom_break when you join the oklahoma state football team , you then get selected by the jacksonville jaguars .. custom_break when you get selected by the jacksonville jaguars , you then get really drunk .. custom_break when you get really drunk , you then get charged with aggravated dui .. custom_break and when you get charged with aggravated dui , you then shoot yourself in the leg .. custom_break don't shoot yourself in the leg , get directv instead . +p11519 +aVbecause what else would you say ? +p11520 +aVdamn chamillionaire must be ashamed of himself . fuckin with some rat ass mud shark . talkin about cops and shit hahaha you mad as hell . take the insult / joke on the chin and keep it movin haha you tryn to sit here and argue and act tough till you realize how close my peoples actual are . you were hoping for an across the country nigga huh ? hahaha keep it movin mool lover +p11521 +aVand i will punch you in you hippy bitch face ! +p11522 +aVof course there weren't . because it's devastating to your case that you idiot liberals can't seem to hold up . CUSTOM_NUMBER days left until the silent majority gives you one heck of a bitch-slap . +p11523 +aVpaid troll mr. wonderful _ CUSTOM_NUMBER is he ? i couldnt make any sense out of that drivel . i don't get his point , but i don't think i'm missing much . +p11524 +aVrc CUSTOM_NUMBER custom_break custom_break you're a human being at conception , eh ?? .. according to whom ?? because there is no basis in either law or science to sustain such a belief .. +p11525 +aVthats crazy if i eat pussy then so be it but fact is i dont in you gay ass do .. fuck outta here bitch +p11526 +aVyou are welcome +p11527 +aVor you can fuck off . +p11528 +aVnot a very smart choice for appearing on tv while saying you are not wealthy . this woman doesn't have a clue . +p11529 +aVyou are stupid and disgusting . are you so sure your kin didn't come over as an indentured servant or to a penal colony ?? +p11530 +aVahh that would be nice . i'm tired of those cbc losers . i like cherry but after that everyone involved in hnic can go fuck off . no more healey would be nice . +p11531 +aVwow , you certainly are shameless and without class . +p11532 +aVidk , just thought you were . lol +p11533 +aVthen you're a f.u.c.k.i.n.g. idiot and have been that way for quite some time .. +p11534 +aVwhy are you wearing prison orange in your avatar ? +p11535 +aVwow good come back you seem to know alot about picking your nose i bet your doing it now +p11536 +aVyou wouldnt do shit ill knock your ass out now and u wouldnt do shit . +p11537 +aVhow about you and your family drop dead instead ? +p11538 +aVyour smack is weak . go brush your tooth and get to your job washing phil's balls .. +p11539 +aValways impressed by your breadth of knowledge , rebecca . +p11540 +aVgot any proof of that fool . that's the stupidest comment on record . it's the republicans who have destroyed this economy . bush's wars were never in the federal budget . remember that . he kept having to ask for CUSTOM_NUMBER more billion here and CUSTOM_NUMBER billion there from congress . when they approved it , he went straight to the chinese and borrowed the money you idiot . now the chinese own us . the republicans also were responsible for deregulating the banks . the economy has improved under obama and idiot teabaggers like you are perpetuating the myths put out there by people like the koch brothers and other billionaires whose message fits so nicely with your racist nature , you just have to go for it . +p11541 +aVsize matters especially if you are teabagging ! +p11542 +aVyour sketches are so cute . <3 +p11543 +aVbrilliant , brilliant - you are a star , xochitl . don't forget to leave a temporary email address on this blog so i can get in touch with you . +p11544 +aVhey , just because you are drunk and going down on your boyfriend doesn't mean we need to hear about it . +p11545 +aVare you getting all choked up now ? hehe +p11546 +aVomg to you just sounds awesome +p11547 +aVmedium sized ?? are you talking about your pen . is ?? +p11548 +aVwho said that you da only one i herd sayin some dumb shyt like that puerto ricans wanna be like dominicans you fuckin bird +p11549 +aVare you that dumb ? +p11550 +aVbuy a ticket you piece of s * h * i * t millionaire a-hole +p11551 +aVy dntchu go suck dick sme whrr else hoe +p11552 +aVoops no foul lol all you morons !! +p11553 +aVyou must be from mi . our hookers look rough +p11554 +aVevery fu-cking bump is a foul when you guard lebron . +p11555 +aVsomeone should ask you for your birth certificate . you sound like you have come from a party of hate . manson supporter ? he would like you to visit him soon . +p11556 +aVgreedy = anyone more successful than are you . +p11557 +aVyou're just a idiot dude . +p11558 +aVyou really can't cite glenn beck and get any respect . +p11559 +aVare you serious lady ? ! +p11560 +aVhaha yes ms recker this is you ! homerecker ! +p11561 +aVyou are so lucky ! +p11562 +aVand if you truly believe that isn't happening and never will , you are the stupid one . just another know-it - all liberal . you jerks never learn . the entire marching band is out of step except you . you're pathetic . +p11563 +aVweezy got some bars and paper , but styll , aint shit with it , been wack as fuck since he drop lollipop and it gonn stay that way , cant compete against tha real no more +p11564 +aVyour continuous reference to male genitalia has become quite humorous . again , with your latency and illiteracy . +p11565 +aVsexist or not , trust me that this is gonna sell . excellent trailer . just pure violent gaming . killing nuns and such . no other game would give us the satisfaction of killing nuns with bazookas and guns . the young guys and gals are sure to say that it's sexist and shit but players my age don't give a fuck and we just see it as a game . nothing more nothing less . and it's a well made trailer . +p11566 +aVcongratulations you are a complete idiot .. now go back to smoking your " hopium " .. +p11567 +aVany topless pics you s k a n k ? +p11568 +aVthese totally look like you . +p11569 +aVunder what rock were you found +p11570 +aVyou are a fan of thegnome ? custom_break hmm .. a maybe . +p11571 +aVhe's a CUSTOM_NUMBER rd string qb you moron . +p11572 +aVyou are an idiot . +p11573 +aVyou're one paranoid delusional teabaggie faggie you must have been suckling on drug crazed rush limbergers weenie . you must be dreaming about sucking flush limberger , because , you are acting irrational . custom_break custom_break +p11574 +aVwow , you get a little carried away with the word " haters +p11575 +aVthe mv is so fucking artistic . custom_break custom_break so much symbolism and art right here . custom_break custom_break i can't even describe how fucking awesome my boys are . custom_break custom_break custom_break so fucking happy right now . xd +p11576 +aVman wtf is you sayin +p11577 +aVits so fucking cute custom_break +p11578 +aVgreat photos ashley !! you are so talented ! +p11579 +aVand you are a tool .. call the wahmvulance snffle sniffle .. need a tissue ? bahahahahahahahahahahahaha sweet caroline bom bom bom +p11580 +aVyou ,, are ,, funny .. , ?? +p11581 +aVCUSTOM_AT custom_break and you deserve to die +p11582 +aVthis kind of comes across a bit jealous . custom_break custom_break whether people think he's funny or not , that's a matter of opinion , saying somebody < i > isn't < / i > funny would be your opinion , and you're welcome to it . custom_break i never thought he came across like an asshole , though . +p11583 +aVcodehpro are you on ? custom_break custom_break +p11584 +aVyou being a wonderful . please be mature enough . custom_break custom_break wtf . +p11585 +aVlooks like you're going places ! +p11586 +aVomfg i have seen it on tv !! those possitions omg omfg i will do anything to be trained personally by my ultimate bias oh dear fucking indeed fucking god !! +p11587 +aVi give it CUSTOM_NUMBER months before she is spotted on stage at a strip club / bar doing a wet t shirt contest . bet . then another CUSTOM_NUMBER - CUSTOM_NUMBER months before she is doing porn . she is a classless piece of trash and only a moron would believe that she did not kill her own daughter . +p11588 +aVappreciate what you are doing .. keep going .. +p11589 +aVinteresting . custom_break custom_break custom_break custom_break anyone else would say " how nice that you adopted a young boy " . custom_break custom_break custom_break custom_break but , being the CUSTOM_NUMBER year old , fat , hairy , trailer park hag that you are you have to say something horrible like mr. j dying young . custom_break custom_break custom_break custom_break he keeps himself very lean and follows a great diet , fractal . custom_break custom_break custom_break custom_break i wager that < i > long < / i > after you're worm food mr. j will be bouncing his grandbabies on his knees , you malignant-hearted useless cow . +p11590 +aVjon beason don't you have a strip club to hang out at ? +p11591 +aVyou're not only dumb , you are pathetic ! +p11592 +aVhow would you like to call that mom ! +p11593 +aVbrian don't know why you are getting at r . kelly for ? .. he his more successful and widely recognized as the most successful r & b act & the king of r & b .. brian seriously should get a life cos his pathetic diss won't take a string of hair out of kellz he is stronger than your weak & pathetic " ass " .. fool +p11594 +aVyou and your wife never cried when your first child arrived then ? +p11595 +aVgive it a rest , a $$ hole !! +p11596 +aVfuck you all yg heaters custom_break am reading this in CUSTOM_NUMBER \u005c\u005c CUSTOM_NUMBER \u005c\u005c CUSTOM_NUMBER ^ _ ^ yg love custom_break +p11597 +aVi'll tell you who , niggers custom_break +p11598 +aVare you like CUSTOM_NUMBER ? that's my only explanation +p11599 +aVare you his son ? +p11600 +aVand yours are h .. o .. m .. o sexuals +p11601 +aVhey eod . you are delusional . obama and dems had control of the house for the first two years of obama's presidency and didn't even make a budget . you're probably not even an CUSTOM_NUMBER d - the CUSTOM_NUMBER deltas i knew had balls , you sir , have a vag ! +p11602 +aVhey geraldo ! i know you don't inhale , because you hang will bill clinton . do you exchange lies with him too ?? custom_break custom_break i'll bet you do !! smoke that crack brother !! custom_break custom_break you're the man on crack , not monkton !! custom_break custom_break he's straight up !! you're not !! +p11603 +aVthere's really only CUSTOM_NUMBER reasons for voting for obozo , either you're a moron , or you're an idiot ! +p11604 +aVyeah , like these ignorant people are so silly . they really think i'm hurt , please this is not real life . custom_break custom_break don't confuse me for your mom because she's single as my mom is married to my dad and my ethnic background is not black american , i am an african , two different cultures . custom_break custom_break the african do not put down their women because they date non-bw , that's the difference between them and black american men . even if they do date out , they will catch hell if they shitted on african women . custom_break custom_break get it together you ignorant idiots . custom_break custom_break carol , i am telling you this , not directed at you . lol . +p11605 +aVyou should read your posts .. skank . +p11606 +aVCUSTOM_AT fuck your ass i got a cross . +p11607 +aVhahaha ! you're a moron . you just don't get it . +p11608 +aVpeter , custom_break what is your malfunction ? +p11609 +aVyou are a troll and a redneck .. thats just a fact . +p11610 +aV' commenter ' ; you really show you know nothing ! +p11611 +aVbefore i look dumb to CUSTOM_AT - d CUSTOM_NUMBER b CUSTOM_NUMBER b CUSTOM_NUMBER a CUSTOM_NUMBER af CUSTOM_NUMBER f CUSTOM_NUMBER cff CUSTOM_NUMBER aa CUSTOM_NUMBER c CUSTOM_NUMBER f :d isqus and CUSTOM_AT - ad CUSTOM_NUMBER fd CUSTOM_NUMBER fac CUSTOM_NUMBER d CUSTOM_NUMBER d CUSTOM_NUMBER dbfe CUSTOM_NUMBER d CUSTOM_NUMBER c CUSTOM_NUMBER c CUSTOM_NUMBER e :d isqus , i'd like to point i count at least slanted - terror twilight , and because i'm a dick will throw westing in there , even if it's a compilation , it's all non-album tracks . i would like to add pavement is the greatest band of all time . i'd also like to make sure it's noted that i believe in the bends - in rainbows , with four of them ( bends , ok , kid a , and in rainbows ) being CUSTOM_NUMBER / CUSTOM_NUMBER , perfect albums , and the other two ( amnesiac and htt ) being CUSTOM_NUMBER CUSTOM_NUMBER / CUSTOM_NUMBER so-close to perfect , still immaculate records . +p11612 +aVas are you . +p11613 +aVyou don't say ? +p11614 +aVit turns out that parents just don't understand . +p11615 +aVawhh thanks CUSTOM_AT rhoades ! you are too kind +p11616 +aVyou are being so stupid +p11617 +aV' house , you are pathetic ! +p11618 +aVyou're such a pilot ! hahaha +p11619 +aVCUSTOM_NUMBER or CUSTOM_NUMBER .. what are you picking +p11620 +aVno need to name call !! grow up , we're all men here , unless you're a boy . +p11621 +aVyour comment must be approved by a moderator before appearing here . +p11622 +aVyou are despicable . +p11623 +aVwell .. washed up to aqnyone whose job does not involve a hairnet and who don't wear their pants around the knees like a retard . tht would explain why you know who he is . +p11624 +aVso you don't have any evidence at all , as you refuse to share it . custom_break custom_break custom_break +p11625 +aVdamn he bitched up ! he when from eff you to luv you .. woow custom_break +p11626 +aVthat bitch should be smacked fir that shit .. that man innocent you can see it in his eye +p11627 +aVman you know what u can do with CUSTOM_NUMBER g's . you buy like CUSTOM_NUMBER really hot hookers . or CUSTOM_NUMBER average hookers .. i mean you get it right . +p11628 +aVare you going to attend ? +p11629 +aVare you delusional ? people like you are the reason he's still in office . +p11630 +aVthat will be my little girl someday :) +p11631 +aVhopefully soon , you moron . +p11632 +aVCUSTOM_NUMBER / CUSTOM_NUMBER of govt debt is most of our country if you are not to good with math +p11633 +aVbitch you still didn't answer the question . what the fuck does this clip has to do with lebron ? answer fuck face . +p11634 +aVpeople who write like you do and talk like you do are not nice people . your language shows you to be immature and uneducated . +p11635 +aVare you in love with me ? why are you replying to me with this shit ? custom_break custom_break you said this wasn't news , i disagreed , now suddenly you think i'm a conspiracy theorist and ron paul groupie ? custom_break custom_break are you on any medications right now ? +p11636 +aVthunder have trash bench take away harden .. what games u be watching ? +p11637 +aVare you kidding me ? ! ? ! ? ! ? ! ? !! ? ! ? ! ? ! ? ! ? ! ? ! ?? ! ? +p11638 +aVno , you would be an idiot . +p11639 +aVyou fools wont be happy til theirs another revaluation and wear killing each other will rich walk away withe every thing this country has work for how stupid can you all be wile your kids go to public school and get lower education theirs go to privet school when theirs a war your kids die theirs go overseas come back run for president our congress you voters make sick +p11640 +aVthat's cool ! are you in a small or medium size town ? +p11641 +aVyou have a driveway leading to your trailer !! cool .. +p11642 +aVwe went every friday night and you got the little balloon man with the cardboard feet ! custom_break +p11643 +aVzimmerman your hero and leader lied to the judge twice while in court on a bond hearing , you most definitely need a reality check because you are in serious denial because of your hatred towards black people +p11644 +aVare you and orochimaru bu . tt buddies too ? disgusting +p11645 +aVlol why so mad at the white man because we all know u are white person ur self dumabss .. u are not the first person to do this you dont understand how dumb u look +p11646 +aVthese are weighty maaters . cj give guidance . you are the only sober mind in high office . +p11647 +aVor you could be astro and +p11648 +aVCUSTOM_AT did you enjoy your ghost story yesterday ? +p11649 +aVno you don't ! +p11650 +aVyou have become a disgrace to this board . +p11651 +aVi'm with you there . there never pull guns on ceos . +p11652 +aVwhat is it with harriett harman ? when she was home secretary , she spent most of her time working on legislation dealing with such things as prostitution and genital mutilation . now she writes about exquisite torture . is she an avid fan of " CUSTOM_NUMBER shades of grey " ? +p11653 +aVunder which rock were you hiding ? +p11654 +aVwhoever mobbed them , the are fuckin stupid . custom_break +p11655 +aVokay .. you're reported . +p11656 +aVyou are really doing nice work .. hats off .. +p11657 +aVyou're hot ! +p11658 +aVyou got that right , just ask your wife . +p11659 +aVdont blame rap the black community always been fucked up hes just mad he never made it +p11660 +aVoh snap kim .. you're a monkey !! +p11661 +aVif the obama people didn't realize it before , the rmoney people are a bunch of moral-less nasty fucks . custom_break custom_break i guess they deserve each other then . i just want someone to represent me . custom_break custom_break i guess not . . . . +p11662 +aVeven better , plug the crock pot into an outlet on your back porch or in your garage ! then you add zero heat to the room ! custom_break +p11663 +aVif your " poor " how do you become overweight +p11664 +aVwho are you ? +p11665 +aVnot you again . +p11666 +aVCUSTOM_AT you're a smart ass dick . +p11667 +aVi bet your red-necked , back-woods , probably white-trash , racist ass said that while lying in bed with your sister , about a black man wining the u.s. presidency . enough said custom_break +p11668 +aVi had to stop mid way ! these three idiotys are like the blind leading the blind . wake up negros and all you communists , we will never back down from any of you race baiting lazy fucks ! +p11669 +aVyou're irrelevant kid ! +p11670 +aVthink you'll be young forever ? or is your life style such that you expect to die from it before you reach old age ? +p11671 +aVi knew you are a racist just by your political position . now you prove it . another self righteous turd . +p11672 +aVhe also taught us to stay the fuck away from ice-nine . +p11673 +aVwhat are you waiting for ? +p11674 +aVakin you selfish sob , drop out of the race which you cannot possible win . take a back seat now and but support someone who is still untarnished . start rebuilding your reputation by doing what is best for the country . what in the hell is wrong with you ? !! +p11675 +aVfuck \u005c ufeff +p11676 +aVfutballi ju ka met , ropt jav cifsha juve .. yall a buch of fucking idiots +p11677 +aVlet's not play your idiotic game . polish nationals who endorsed nazi doctrine were employed by the nazis . that does not make a joint venture of any sort . +p11678 +aVoh boohoo ! you people need to suck it up ! she looks hot ! she's not " naked . " have you seen what rihanna and all those crappy singers wear ? like it said in the article , if you lazy asses bothered to read it , this is just for fun . she's not gonna start dressing like that all of a sudden . she has an incredible voice and an incredible body . this isn't a plea for attention . if she wanted to be noticed she would start a fight with some stupid celebrity and get out of cars with no underwear . this is tasteful and fun . don't over analyze everything . jeez ! +p11679 +aVwho are you talking about ? +p11680 +aVthen you are clearly going to the wrong hairstylist +p11681 +aVyou are too excited , lol +p11682 +aVman your the smack talker you have already cursed at us today ! +p11683 +aVare you fucking kidding me ? ! +p11684 +aVhaley , all of your interviews are great , because you are great ! custom_break and wonderful ! and beautiful ! and .. i love you . +p11685 +aVleilani - that sounds like a foreign name to me . honey , as far as our founding fathers were concerned , you'd have likely either been someone's slave , or their whore . +p11686 +aVgo back to trolling - you little pathetic loser - so effing jealous of a movie star's success . success - you'll never , ever have . it's not tom cruise's fault you are a pathetic loser with zero friends , zero money , zero class . cling to your bible and talk to your imaginary friends . maybe your imaginary friends will tell you to " pray " for tom . ha ha ha +p11687 +aVcustom_break when the pacers are your biggest threat , you know you are playing in a vastly inferior conference +p11688 +aVroommates CUSTOM_NUMBER & CUSTOM_NUMBER " custom_break custom_break this is starting to sound like a fucking doctor seuss book all over again . hey guy who ever posted this , get the fuck out of there while you still can ! this girl and people like this are trouble and you don't want them in your life +p11689 +aVyou are a disgrace to dodger fans +p11690 +aVshe got fucked up it was wrong tho +p11691 +aVthen why are you reading it and leaving comments ? custom_break just wondering . +p11692 +aVlook again . this isn't about the control room when * spoilers * you kill guilty spark .. its when you do the warthog run .. it's not " false " . when the pannels begin to fall , you are at the silent cartographer's island . +p11693 +aVyou're full of logical fallacy . +p11694 +aVthese are your colors ! +p11695 +aVkindly explain wtf you are talking about .. +p11696 +aVoh , and you always lie and say really stupid stuff that isn't even close to being correct , then you deny it . custom_break custom_break and you flag me and get me banned . +p11697 +aVmiriam santiago is hallucinating .. i think its about time that ombudswoman conchita carpio morales investigate also this senator miriam santiago as she is also the same color with corona .. a liar , a thief and so on .. it is despicable for a senator to interpret laws and defend corona and twist those laws in favor to him ( corona ) .. such an idiot senator you are miriam .. i think its time now for you to be junk and put in the trash as you are a liability and a corrupt woman .. was it , CUSTOM_NUMBER million pesos the worth of your house yo constructed at a posh village there in manila and all of your neighbors abhor your presence there .. am i right with that .. good for you your son committed suicide because he cannot go on with his life that his parents are certified corrupt .. including your husband i say .. mahiya k or magpakamatay k na lang .. maybe u will be redeemed .. +p11698 +aVreally ? my goodness you are easy . +p11699 +aVlove you rose ! custom_break +p11700 +aVyou are the reason why america will never progress +p11701 +aVare you the innocent victim of media manipulation ? +p11702 +aVwow you are an idiot +p11703 +aVmindless drones can be good friends . besides , he knows damn well what i think about ifans / isheep / drones , etc . it's just on a tech aspect of things . it doesn't interfere with out friendship on a day-to - day basis . just the same , he bashes the shit out of fandroids , saying things far worse than ' mindless drones ' , i assure you . ultimately it's all in good fun , really . i'm always amused by how riled up some of you isheep get over my comments . +p11704 +aVyou are indeed very knowledgeable +p11705 +aVit kind of is . smh . then when you call these hoes out on their bullshit , they callin foul and the simps , manginas , and down low homo thugs are there to back them up . it's ridiculous . +p11706 +aVwell we know he is illegal and if he steals the white house again . i can say fuck the gov and will no longer acknowledges its power +p11707 +aVpeople like you are beyond stupid . you are more left than bill you loser . +p11708 +aVscrew you bro +p11709 +aVquit trolling . yesterday , you heat fans came in here talking all kinds of smack . truth be told the heat would lose to both the thunder and spurs . +p11710 +aVare you a plumber or an electrician ? +p11711 +aVi don't wash no brownies but that shit was mad funny though and on point haha .. that fucking live jasmine shit had me rolling though .. thats a waste of bandwidth and annoying +p11712 +aVmane wiz khalifa and taylor gang look like they be having fun af on your an shit , trippy nigga !! +p11713 +aVyou sound like a syracuse fan . +p11714 +aVyou disrespactful asshole custom_break my aunty does not do drugs .. custom_break why say somthing like that huh ?? custom_break is it cause your a crack block and need some cause your pipes empty .. custom_break yup thats it +p11715 +aVyou * are * tommy hendricks , aren't you ? +p11716 +aVyou can take the first three letters off your name , loser . the truth hurts , doesn't it ? +p11717 +aVbless you for all your wonderful pins on pay it forward , and all your other pins . hope all is good with you and you loved ones . +p11718 +aVwhere in sf are you located ? custom_break custom_break CUSTOM_AT +p11719 +aVi get what you're saying , but that's part of separating the art from the artist , at least to me . as long as some numb fuck like , say , tyler the creator isn't literally going out and , oh , skull-raping an infant or whatever he raps about , i could care less if he puts it in his lyrics . i have the choice to listen or not listen . rap is ( or was , at one time ) purported to be more " real " ( though that's ultimately debatable ) , and " real " is messy ; therefore , you may hear some uncomfortable shit when you listen . just comes with the territory . custom_break custom_break now , granted , there are many people in the world who might take inspiration from graphic lyrics and / or miss any artistic or ironic intent , but they're fucking assholes and they would've been fucked anyway , so fuck them .. kidding , i'm kidding . +p11720 +aVte la meto de subida y me la agarras de bajada jajaja +p11721 +aVhe . he . he .. custom_break custom_break disgusted ? having fun her bro .. so many idiots defending simeon d retard as if their lot in life will get better with an idiot president . custom_break custom_break two years down , the economy is going to the dogs . and you morons are still clapping and yapping like clowns in the circus . custom_break custom_break bro , liars are dime a dozen . idiots too that believe them .. small lady , " someone " who left " something " in banal's gate , " anonymous " who gave keh the docs to nail corona , CUSTOM_NUMBER to CUSTOM_NUMBER properties and the CUSTOM_NUMBER million dollars daw .. pero excuse ka bro . kulay dilaw kasi ang salamin mo kaya wala kang nakikita . be glad , hindi lang ikaw ang idiot - there are CUSTOM_NUMBER million of you . +p11722 +aVah , projection . my favorite of the defense mechanisms . no , my dear , i am not a " women . " . but you are . singular . " women " is plural . which , of course , using your particular brand of logic ( which is known to most people as " stupidity " ) means that you have had help . and yet , still didn't get very far in life . even with all of the help you have gotten . that has to sting . custom_break custom_break you're a good troll , though . bounding back and forth between cnn and fox message boards . i heard a rumor that some of you get paid . better up your comment count if you want to cash in , however . +p11723 +aVyoure weirder pooface . you literally comment on everyones shit across omg facts . every single page has your stupidity on it . get a life . +p11724 +aVdid you really ask why wvu was ranked ahead of fsu ? are you dumb ? +p11725 +aVup your you tool dork +p11726 +aVare you going to sale it ? +p11727 +aVpointing out what an idiot you are , has little to do with directly disproving your point . it speaks to your credibility , and ineptness . own up to your minor mistake like a man , you sissy .. +p11728 +aVgiven you went to a private school according to your facebook , i'm guessing you're just bitter because you didn't get into a good uni or uni at all , or worse , you haven't actually left school and don't even know the meaning of tax except a \u005c xa CUSTOM_NUMBER national insurance payment on your shitty little saturday job . twat . +p11729 +aVmaybe the tree died of natural causes and man just cut it down for safety reasons ! you ever think about that fucking hippy . i like it , makes a good seat to smoke pot . custom_break custom_break +p11730 +aVi totally agree .. judge judy needs to get slapped by someone for acting like a fucking bitch all the time +p11731 +aVhow nice . killing someone because you're too stupid to drive a car . +p11732 +aVi suspect you'll remember that when you are demanding sources as you are wont to do at times .. +p11733 +aVit's obvious you were home schooled by your retarded aasr ma , from what is coming out of your mouth +p11734 +aVthat's like .. my shit yo ! +p11735 +aVoh momma , you are so fine . +p11736 +aVno , he speaks he truth and you lie . +p11737 +aVyour ability to ignore the facts is truly impressive . +p11738 +aVyou are an ignorant fool . +p11739 +aVolsens really ? you weren't kidding . fucking creep +p11740 +aVwhat are thank you notes ? +p11741 +aVcan you put any more dumb cliche phrases in your post ? +p11742 +aVyou and your bud are big talkers . i've met your kind many times and you are useless when and where it really counts . +p11743 +aVnobody's fooled by your spam . +p11744 +aVsave money and grow your own pesticide free vegetables on your back porch custom_break +p11745 +aVyou're an idiot .. +p11746 +aVveritas you are uninformed or .. you are simply an idiot . +p11747 +aVyou don't seem to understand what nepotism means . +p11748 +aVand then your dumbass agreeing with the ignorance , like there's not fat lazy ppl in other races , i cant stand dumb bitches these days +p11749 +aVpretend you're a gentleman for a little while and grow up little man . the adults are talking .. +p11750 +aVpela media de gols o finazzi fez a mesma cisa do barcos . oque esse cara tem de tao especial ? , o sousa esta fazendo gols pra caramba no bahia e nao tem destaque algum .. +p11751 +aVCUSTOM_NUMBER . the CUSTOM_NUMBER series wasnt rigged . custom_break custom_break CUSTOM_NUMBER . you arent a lakers fan . youre a troll . custom_break custom_break CUSTOM_NUMBER . go kill yourself . +p11752 +aVdave , where are you ?? +p11753 +aVi have been busy with work stuff .. you know , the kid of shit that stands in the way of having fun ! custom_break i will be around tonight . i predict a pitchers duel . ;) custom_break custom_break yeah - high_heels apparently has been castrated . although i suspect that he is still around , under an assumed identity . +p11754 +aVi got CUSTOM_NUMBER points .. fuck ur ass +p11755 +aVare you using your own money - or the taxpayers ? +p11756 +aVi'm boiler and i'm a flaming faggot . +p11757 +aVnao me iludo . estou feliz pela vitoria , mas preocupado , porque ney franco escalou mal o time , corrigiu , e depois no intervalo , quando tinha de reforcar o meio de campo nao o fez . nao sei porque o wellington nao estava nem no banco , mas que fique de ensinamento . os gambas podiam ter feito CUSTOM_NUMBER gols no inicio e so viramos por jogadas individuais . nao foi o sao paulo que ganhou , mas os gambas que perderam . agora devemos melhorar com wellington , canete , e algum valor novo com a grana do lucas . libertadores ' e lucro . titulo ' e sonho . +p11758 +aVit was a surprise to me brett pickert , because i have no idea who the fuck you are . +p11759 +aVsomalia has no entitlements and clings to guns and religion . send us a postcard . +p11760 +aVnow you are a better portuguese . xdd +p11761 +aVthank you speak the fucking truth real niggas dont gotta rap about work if you got skills fuck outa here niggas don play that hot shit in the hood +p11762 +aVyou are a fool ! +p11763 +aVand your comment is three times as dumb as some already dumb comments i've read here by fellow lefties . +p11764 +aVthank you and damn you , melissa ! +p11765 +aVof course , fool .. you're god +p11766 +aVdexos , you must be some kind of idiot . this poor family lost their life's work in this fire . +p11767 +aVlet's get nasty ! damnit doc thats what you need to say . +p11768 +aVstrike CUSTOM_NUMBER you're out victorino ! +p11769 +aVgordon at least act like you care . +p11770 +aVyou are lucky to have any privileges at all after saying some of the most vile comments in the history of this blog . +p11771 +aVthats right asshole , i'm a filthy jew . y < span > ou however , wouldn't make a good pivot man in a circle jerk . if you don't believe me , ask your wife . thats why she keeps the diacount for herself . custom_break custom_break < / span > +p11772 +aVthis was my shitt .. damn , that box looks old though . +p11773 +aVunicorn , you charge for your picks . unicorn is a pickin soldier +p11774 +aVare you typing your comments on an alien computer deep inside area CUSTOM_NUMBER ? +p11775 +aVhonestbroker CUSTOM_NUMBER just now in reply to ssgduke CUSTOM_NUMBER custom_break custom_break here you go conservatives .. suckduck is one of you . custom_break custom_break __ custom_break custom_break yepper and we claim him , it is piles of c r a p such as you we shovel to the fertilizer pit !! you think you are intelligent , when in reality you have the brains of a cement sidewalk , you are an arrogant punk that cannot or will not criticize the bogus president we have , you acknowledge i d i o c y with every post you make .. remember this , brokeback warrior stupid is as stupid does .. and bro you are good at spreading stupid !! +p11776 +aVyou're really freaking high .. +p11777 +aVyou have become a nightmare unto yourself by your unreasonable racist hatred . +p11778 +aVare you sure she had the power to veto ? +p11779 +aVfaltu firmware lp CUSTOM_NUMBER CUSTOM_NUMBER . CUSTOM_NUMBER . CUSTOM_NUMBER video graphice vry bad ram CUSTOM_NUMBER md fuck you .. +p11780 +aVwow - you had to bite your lip not to offend him ?? you sound like a nice guy . and in reality , most people could probably bitchslap your charming ass back to the stone age . i understand why you often choose not to voice your mind . :-) +p11781 +aV.. and you are a bigot . +p11782 +aVlosing sucks .. but you can't beat $ CUSTOM_NUMBER per hour entertainment ! +p11783 +aVloll .. hello neal how are you ?? +p11784 +aVyou are a fucking disgrace piss off +p11785 +aVthemmzoo CUSTOM_NUMBER - how do you feel about omri casspi ? +p11786 +aVfucking disgusting .. +p11787 +aVthats cuz your women are ugly so you gotta sleep with a white women making mixed babies and making them ugly . you niggers just need to keep to your own race . +p11788 +aVoorr , these h CUSTOM_NUMBER m CUSTOM_NUMBER f CUSTOM_AT need to . sounds like you fit the " too ugly , too fat , can't find a man " desperate enough to marry your nasty fat CUSTOM_AT . lol +p11789 +aVi even know who you're cribbing from , sadly for you . +p11790 +aVjune , " you go girl +p11791 +aVringo gets a bad rep because CUSTOM_NUMBER % of people think the only good sort of drumming is keith moon / ginger baker style bombast that they can pick out in a song . also he looks like a bit of a doof . is it fair ? fuck no , ringo is awesome . but people in general don't know jack shit about music . +p11792 +aVoh , lolol another weak paranoid arm chair warrior . you're pathetic . +p11793 +aVit's " you're " moron . +p11794 +aVyou've got to be freaking kidding me . +p11795 +aVdon't sell yourself short mj , you're a tremendous slouch . +p11796 +aVpusha t said in exodous , " you signed to one nigga who signed to another nigga .. " allegedly meaning ; drake signed to wayne whos signed to baby , bu .. t pusha t whos signed to kanye whos signed to jay .. +p11797 +aVare .. are you serious ? +p11798 +aVanyway i'm out , i hope you people enjoy hiding behind your user names . nothing shows intelligence like being unable to stand by your own words . you people are pathetic . +p11799 +aVphilosophical meandering : why do they call it a softball . shit is not fucking soft if you get pegged with one by a pitcher . +p11800 +aVplease . you coons act like you never had an unpaid ticket before . i am not a fan of bootlicking pimps or preachers , but he didn't rape , kill or molest anyone . custom_break custom_break ease up . +p11801 +aVyou really are a dumb little kid . +p11802 +aVthanks mate . custom_break custom_break the frucking man you are +p11803 +aVkill yourself +p11804 +aVdon't be mad because we are playing like crap and i point out a major reason why you homoguy +p11805 +aVgranny ? custom_break how old are you , sucker ? +p11806 +aVwtf are you talking about , moham ? +p11807 +aVremember when someone wrote shut up on your post and you cried ? +p11808 +aVwhat a dumb a $$ comment ! are you being sarcastic or are you truly just an idiot ? +p11809 +aVnaw . the show is for little girls . if you were one , i'd understand why you watch the show . since you're not , i don't . weirdo . +p11810 +aVyou are evil democrat trash and you should do america a favor and jump off a bridge . +p11811 +aV.. hahah .. your a looser :) .. prolly a useless city cop right ? :) .. go douche yourself :) +p11812 +aVlol .. you like etch-a - sketch romeny .. lol +p11813 +aVpij work on your debate skills and vocabulary you are disgusting +p11814 +aVyou should have shot the sob . +p11815 +aVthen you're not listening +p11816 +aVhello all custom_break custom_break how are you doing ? +p11817 +aVCUSTOM_AT tanner again you are just this cool +p11818 +aVtrue that - most people don't like it when you know who u really are . sad but true . +p11819 +aVthat's not a nipple fags ,, it's just a crease in her jacket exposing a beige halter top underneath . kim ks nipples r fukn huge and dark like african dinner plates ud kno when you see them ! trust meh +p11820 +aVjosh you sound like a girl . seriously , stop whining yo . +p11821 +aVget a tan ? get a tan ? bitch your black , i swear black people want to be and do what whites do so bad +p11822 +aVshooting and action motherfuckers custom_break +p11823 +aVha , you all talk a load of crap , you should stick with the things you really are brilliant at . +p11824 +aVcan u leave black women out your mouth . even when ya'll don't date us we are still in your mouth . it's unbelievable black men . you guys act like little toddlers . accept responsibility for your screw ups . this is why nobody respects you . damn you guys are stupid mofos . +p11825 +aVfuckn loser +p11826 +aVyou do know that crack kills ? +p11827 +aVuntil mommy puts you to bed that is .. +p11828 +aVshawna , loved your boards .. you must be an awesome mom !! dennis custom_break +p11829 +aVthat says more about your other players than lynch dont you think ? +p11830 +aVthought maybe you were in the market :) +p11831 +aVi seriously dislike hypocrites like him . his fans keeping defending him , but he still is a major hypocrite . if he is homophobic , he shouldn't be all touchy with the other member like that , acting gay and denying homosexuals is stupidity . i wish people were more open-minded .. +p11832 +aVget em xd , you are batting CUSTOM_NUMBER !! +p11833 +aVi hate both of you lucky bastards , i wanna go to e CUSTOM_NUMBER ! :( +p11834 +aVstoudamire was a freaking beast what are you talking about ? +p11835 +aVthat's what i love about mad men : it erases all that nostalgia and makes you realize what a shit sandwich the olden days really were . +p11836 +aVyes we are insignificant to your economy , so what are you doing here . shut up and go bother the big boys . we don't matter to you and you don't matter to us . estupido ! +p11837 +aVthanks for the repin . are you going to emerson ? +p11838 +aVmaking fun of you would be too easy . +p11839 +aVand yet you are still a dumbshit ? +p11840 +aVyou're an idiot +p11841 +aVwhat is your point white troll ?? +p11842 +aVso the fake one then ? +p11843 +aVyou're lame . +p11844 +aVhey goddamn faggot keep your jacking off comments to yourself please . thanks , you can keep holding your dick too . ( actually what you said was cool just way too fag - but you know that , since you are ) +p11845 +aVyou must be a veteran celtic fan . +p11846 +aVare you drunk ?? +p11847 +aVyou're right +p11848 +aVdo you ever get out of your moms basement ? +p11849 +aVare you kidding ? +p11850 +aVbecause we are not going to do your work for you ! +p11851 +aVare you lost ? +p11852 +aVms. pelosi , you are a f ^ % # * CUSTOM_AT idiot ! +p11853 +aVyou should be embarrassed by not recognizing how ignorant you sound . and probably are . +p11854 +aVthousands * philosophy and religion go back to the beginning of our existence +p11855 +aVwhy you gotta say black ? why couldn't you just say the average person . you were trying to make someone feel stupid but you just made yourself look stupid . ( typical society ) +p11856 +aVare you f * cking serious . goddamn it +p11857 +aVif these fucking " brick and mortar " stores weren't CUSTOM_NUMBER % higher than online prices , then yes , i would use my local economy . but the fact is , they bitched and moaned about how they are treated unfair , and this is the fruits of their labor . custom_break custom_break frankly , all politicians need to be ousted ! +p11858 +aVto chindokae : you are dumber than zimmerman . +p11859 +aVare you mad ?? +p11860 +aVah good , we didn't have enough people bitching about girls in the comment section for reviews on that show . +p11861 +aVyou are just the modern day einstein .. +p11862 +aVand i smell a dumb $ hit . oh it's just you and your stupid post .. what a moron ! +p11863 +aV< p > cry cry cry < / p > custom_break < p > whaa you guys are mean to obama < / p > custom_break < p > * sniffles * < / p > custom_break < p > stop being so mean < / p > +p11864 +aVwhy are you putting words in my mouth ? i would best you senseless using your skateboard +p11865 +aVit was crap then too . whats your point ? +p11866 +aVsee , you're nothing but a dumb \u005c u CUSTOM_NUMBER ss . +p11867 +aVdumbshit motherfucker custom_break +p11868 +aVhave fun dieing early fatty . your non-meat diet isn't saving you from atherosclerosis . custom_break custom_break +p11869 +aVi'm stupid ? have you read your nonsensical comment , based on presumptions you've pulled from your hat ? +p11870 +aVlike if you have a diploma ( of any kind ) . custom_break comment if your getting money with that white ( coke ) and it's mob ( money over bitches ) and stop snitchin or making a rap career +p11871 +aVyou are a sick breed .. +p11872 +aVmonkeyboy " ? custom_break custom_break get back to your klan meeting , scumbag . +p11873 +aVcos'era la veglia funebre della lingua italiana ? +p11874 +aVlol , my you are just a bitter person arent ' you ? he's wealthy , others aren't . that is life and we all know life isn't always fair . he is also not the only wealthy person serving in the forces but your anger won't let you see common sense . +p11875 +aVsunnah or later , you'll be in a burka ! (: ) +p11876 +aVyou still lose your license and all that . +p11877 +aVman i love your comment it made me laugh so hard and you are right . +p11878 +aVfilthy fucking muslim +p11879 +aVnot as much as you're school system . +p11880 +aVfuck you claude giroux +p11881 +aVyou are an idiot ! a racist idiot ! +p11882 +aVCUSTOM_AT ; i'm a male in my CUSTOM_NUMBER ' s and i think you are a nasty piece of work if you honestly believe what you wrote . does that count ? +p11883 +aVwhat the hell are you talking about +p11884 +aVobviously you missed being a victim . +p11885 +aVCUSTOM_AT snyder this would be perfect for your kitty !! +p11886 +aVyou are also stupid !! geesh ! +p11887 +aVget your wings was so much better . & nbsp ; +p11888 +aVyou're a real gashole , you know that ? +p11889 +aVi was born in puerto rico and i don't speak fuckin spanish fuck outta here bitch i understood every word u said too smmfh eat some food put some pounds on and get it right +p11890 +aVwhat is a hater ? only a moron uses that term , making you a moron . custom_break custom_break i don't like when it rains , am i just a rain hater ? custom_break custom_break +p11891 +aVwhen you're as fat as coffey .. that tends to happen . +p11892 +aVmanny was a beast . custom_break custom_break wtf are you talking about ? +p11893 +aVwe need to stop make only daughters for white men who will be just strippers , white man's porno whores or babymamas for white race . make more real dark / brown skin black sons for black race only when real black ppl and african / black culture still alive in this world ! fuck racist whites and their dumb whores ! +p11894 +aVnot when is said by another white person you muppet . CUSTOM_NUMBER - CUSTOM_NUMBER and gunning for jew . play your cards now . +p11895 +aVdude you are fat +p11896 +aVyou're dumb then . +p11897 +aVmax are you tacoboy +p11898 +aVseriously , like your own posts faster .. it's not obv at all +p11899 +aVyou are ? +p11900 +aVok . you are a complete retard . re-read what you just said about a " bullpen " . you know nothing about baseball ! +p11901 +aVwhat are you supposed to do . politely ask them to stop . i get what your saying , but the coin has two sides . +p11902 +aVvery stupid comment you would think it was made with a dick right inside your asshole .. if you start calling people kale , kuks and luos t then you are not suppose even to call yourself a kenyan . in mombasa i would have told you .. sura kama varanda ya kuma .. ngombe .. tribal chieftain in a dark coat .. +p11903 +aVare you bleaching your hair ? +p11904 +aVplease don't visit then , the chain restaurants and times square might mind but the rest of us really are better without stupid tourists acting like idiots here . +p11905 +aVyou're right , that is quite a stretch . custom_break +p11906 +aVwhy can ; t you find your d ick ? lol +p11907 +aVto chindokae : you are one dumb redneck . +p11908 +aV' poofter ' - are you soft in the head ? custom_break custom_break idiot .. +p11909 +aVare you a browns fan now bob ? +p11910 +aVcustom_break lolololol look at you . custom_break \u005c tyou're an old man and your only social life here . oh , lolol custom_break \u005c tpathetic . custom_break \u005c t custom_break custom_break custom_break +p11911 +aVare you doing the shoot ? +p11912 +aVyou really are a clown . +p11913 +aVare you a heat fan ? i've seen you on here before . what a poser . +p11914 +aVcongrats CUSTOM_AT christianson ! you are our CUSTOM_NUMBER / CUSTOM_NUMBER winner ! please email your shipping address to CUSTOM_AT so we can send your book and t-shirt ! +p11915 +aVhow about you start acting like a real feminine woman and shut the fuck up . you're a virgo as well ? smh +p11916 +aVdamn he tossed and slaped her ass then called her a " bitch " .. fuckboy ass nigga .. posted by mr. $ mbs $ +p11917 +aVyou ? will die +p11918 +aVthat would be " your f { cking career " , actually . +p11919 +aVhaha . :d its alright i wont do anything reckless :d custom_break custom_break i wont kill myself something like that cause i know ,, all those who left me will be crawling back to me :d +p11920 +aVyea he touched ugly girls stank asses thtas so great ! get the fuck outta here smh +p11921 +aVoh my god . you are dumber than a box of hair . +p11922 +aVyou were ever here ? +p11923 +aVim just go end this by saying fuck u u fuckin internet thug an there is no definition for internet gangster fuck boy all these females up hear an ur argueing wit a male get out my fuckin comments u fagget +p11924 +aVwelcome back to earth . i hope you are feeling ' mighty fine ! ' because your ' one of a kind . ' have a wonderful saturday . jaap . +p11925 +aVthe point is in response to your comment " shouldn't even have a computer entrusted to them " < -- like a computer is some kind of hi tech . custom_break custom_break +p11926 +aVmr. lynx you are da man .. luv your analysis of the games !! +p11927 +aVif you kick minhyuk out of a chair ima bitchslap you into the CUSTOM_NUMBER century . +p11928 +aVits " faggot " you ignorant fuck plus what you trying to impress us with your girl scout club you dumb shit , fuck you , your faggot ass cousins , and fuck m.o.b. you stupid fuck ! what is that a little gang full of wannabes cuz unless its a cartel you aint impressing shit ! we butt fuck little bitches like you and your cousins down here and the chop you into pieces cuz your little club ain't shit dumb mudafucka ! +p11929 +aVi agree with u if u can't stand by your words then why should anyone listen to them in your raps even if u say dumd shit like u said at least stand by it +p11930 +aVliking your own posts doesn't make you any cooler . +p11931 +aVshit annoying as fuck , especially when they arguments always either you hating or he getting money .. what major recording artist ain't getting money ? +p11932 +aVcarssuck , and zipperx CUSTOM_NUMBER , stop smoking pot ! +p11933 +aVtheir diet lemonade is the shit . custom_break custom_break and yeah , awfully pretentious introduction considering your typical drunk-for - as-few - dollars-as - possible attitudes . +p11934 +aVi just said that shit .. +p11935 +aVyou a pussy +p11936 +aVyep ! you are your mother's daughter !! lol +p11937 +aVoh my goodness .. bow wow try to talk like lil wayne , rap like drake , and dress like soulja boy smfh .. be yourself bow wow ! +p11938 +aVpete carroll is better than you - dipset is like CUSTOM_NUMBER ish . heh custom_break custom_break really ? damn , i have no sense of time . +p11939 +aVyou is have bad grammar +p11940 +aVyou just can't make up muzzuruh dumb , can you ? +p11941 +aVwhere and when are you cruising ? ! +p11942 +aVyou are investing in chinese property ? bloody hell , man , there's whole cities full of empty apartments out there . +p11943 +aVwe all wish you were leaving because its only making us dumber reading your comments +p11944 +aVscrew you +p11945 +aVi gave one of my co-workers a little bit of shit over that . custom_break custom_break i said " you seem like you believe nothing ever happened in the world before you were CUSTOM_NUMBER . +p11946 +aVthen you should get some pills for adhd +p11947 +aVyou , sir , are a m CUSTOM_NUMBER ron . +p11948 +aVwho is " our " ? do you mean " your " ? +p11949 +aVi loved your videos espesily the one called : shit people do insted of studying :d +p11950 +aVi know that you dumb fuck with a cracker name no wonder .. go figure +p11951 +aVyou get the tax payers to fund CUSTOM_NUMBER % of your pension and you are complaining ? wow . +p11952 +aVyou are grasping +p11953 +aVdon't record if your monkey ass can't sit still , giving me a damn headache +p11954 +aVhow is he being a dick ? just cause you don't like what he said doesn't make him a dick it makes you a dick +p11955 +aV^^ okay noo lol wayne sorry as fuck with same boring ass metaphors . g.o.o. d music +p11956 +aVanother idiotic comment from you , you're a wonderful idiot . +p11957 +aVyou are the manu . +p11958 +aVyou ignorant us losers . custom_break custom_break do you ever see the money ? custom_break custom_break do you earn more than CUSTOM_NUMBER $ a year ? custom_break custom_break do you ever go to college ( must not be mit or yale ) custom_break custom_break we do not despise you , custom_break custom_break do you ever despise your sh * t ? +p11959 +aVyep , these are soo you ! custom_break +p11960 +aVtell us how you really feel . +p11961 +aVdepends what state you're in . +p11962 +aVyou remind me of a meme like custom_break is a girl custom_break * your face * custom_break can't have boobies custom_break like damn +p11963 +aVlove the yard you are with . +p11964 +aVwe re saying you re a morron .. now go hide under your bed +p11965 +aVwhich americans are you referring to ? +p11966 +aVrickie you are a coward +p11967 +aVthe frightened , sewer dwelling vermin quickly realised it scurried for a black person and not the safe , festering pile of shit it smelled only after the nigger tried to eat it . a common sight among all blacks .. not just the homeless . +p11968 +aVyour stadium is atrocious +p11969 +aV!! is it from your camera ? +p11970 +aVi pity you am boy your brain is distorted ! we can't get down to your level . why don't you go to other news website like abante where you truly belong . +p11971 +aVwow you sound so smart . +p11972 +aVrickywilliams are you a boston fan +p11973 +aVhating for jealousy is just so absurd , though . it makes you look like an idiot with no knowledge of baseball at all . +p11974 +aVi feel like starting a new thread just to troll her , because i'm a dick . custom_break custom_break and the stuff she said about you is some fucking bullshit , CUSTOM_AT - CUSTOM_NUMBER baeccb CUSTOM_NUMBER f CUSTOM_NUMBER cd CUSTOM_NUMBER f CUSTOM_NUMBER cdb CUSTOM_NUMBER b CUSTOM_NUMBER :d isqus . < a href = " CUSTOM_URL " > don't let it get you down . < / a > +p11975 +aVdont play hard to get bitches you come drink all our beer and smoke all of our drugs and expect not to give the pussy up . +p11976 +aVfuck you moderator your a bitch +p11977 +aVhow long have you been watching the romney movie !! +p11978 +aVdon't let a few clowns ruin your board experience . we have our idiots too , remember . +p11979 +aVyou're too easy +p11980 +aVyou know .. you are only supposed to pull for your team right ? not the whole conference .. +p11981 +aVcan i pay your loans off for you ? +p11982 +aVmaybe he's recently resurrected from the dead .. let's not be quick to judgement .. you try knowing right from wrong when your stomach is empty and your skull is full of worms and maggotts .. let me tell ya .. it's not that easy !! +p11983 +aVdel rio has been heavyweight champion before . so i don't know what you guys are talking about . he has had big wins , and has been champion . know what your talking about instead of sounding like idiots . +p11984 +aVo wow cus eminem said it its the law of the land huh ? an im da idiot ? an since u wana quote eminem who da fuck raised hailey cus he didnt ? +p11985 +aVcricket , you're being taken for a ride by your " party +p11986 +aVyou obviously don't understand sarcasm . +p11987 +aVfuck me , plz !! +p11988 +aVcustom_break custom_break custom_break custom_break hey , hey , hey gop & baggers ! custom_break custom_break custom_break custom_break custom_break time to pull-out your secret weapon ! custom_break custom_break custom_break custom_break custom_break custom_break bring back your messiah , the waddling , ignorant , adulterous , senile old draft custom_break dodger , saint ronnie reagan ! custom_break custom_break custom_break custom_break custom_break custom_break just make sure you change his diapers before your dance him around ! custom_break custom_break custom_break +p11989 +aVhow is incest not forcible ? you are an idiot . custom_break +p11990 +aVyou're welcome :) +p11991 +aVget your eyes checked . +p11992 +aVthats the problem now .. everybody lying to the youth and its fucking the world up but you problem dont care because you dont give a fuck anyway .. right +p11993 +aVlol you must be smoking trees +p11994 +aVwho cares a flip about egypt , except in the abstract ? custom_break custom_break democrats / liberals today cheapen womenhood , put the sexual rather than any other quality before all others in the news , in the cinema , on the internet , pimping the beauty for the moment in news . custom_break custom_break go on hp / aol , see one headline after another : vicki shows her headlights , diana's dress too transparent , brigitte in a bikini , hillary's wardrobe malfunction ( there's a scary one ) , it's all one long pimp on womanhood . +p11995 +aVyour jokes are beyond stupid +p11996 +aVdave , you are soo full ot it that your eyes are brown . +p11997 +aVyou're a bleeding-heart lemon-lime liberal . +p11998 +aVyankees fan is you +p11999 +aVusa wins again by a mile . and before u throw us under the bus just remember who most of these countries turn to when shit hits the fan . we'll get our shit together eventually . obama CUSTOM_NUMBER +p12000 +aVi'd rather a nice " fag " camp with my son than someone with as low of an iq as you . being homosexual doesn't make you a pedophile . +p12001 +aVwhat a stupid little shit . punish him . +p12002 +aVha you def are a bitter black bitch .. asians talk about you dumb broads while they do your nails .. laughing at you dumb broads yet your not bothered .. but you're bothered about a complete stranger that could give CUSTOM_NUMBER fucks about you're hoodrat ass +p12003 +aVor stop getting so mad at blacks for not reaching the bar ! custom_break custom_break blacks know this is all bullshit as much as we aware whites . blacks are that dumb , to not realize there is a lower proportion of smart blacks . in a way blacks are smarter , because most of them never really fell for the idea that blacks could do just as well in school as whites . custom_break custom_break sometimes smart people , like intellectual whites , can fall for the dumbest ideas , like egalitarianism . custom_break a street " nigga " would have laughed that " egalitarian " stuff right off the corner : " common , nigga , is you kiddin me ? you think black folk gon be eva just as good at white folk at school ? comon nigga , get that shit outta hurr , a nigga is a nigga . a nigga gotta hustle , a nigga gotta be street smart , but a nigga sure as hell ain't gon spend his life behind a microscope of a computer or sum shit like that . me nigga ? imma stay right hurr on the corner , work at the chop shop for cars , and work dees hoes . dass what a real nigga do " custom_break +p12004 +aVwho is your starting center ? +p12005 +aVwhat are you ? homeschooled ? +p12006 +aVabsolutely !! how long are you guys going for ? +p12007 +aVkenneth you are out touch of the situation . better prepare . +p12008 +aVCUSTOM_AT oh and just for the record i've seen your previous comments on other news storys to do with britain or its army . it seems your a bit of a hater of britain , well here's a tip stop reading our news you tard and get a life ! +p12009 +aVmany thanks for your comment :-) +p12010 +aVomg this looks like you mom ! +p12011 +aVya'll niggas need to listen over pusha t - exodus track again .. he went after ymcmb hard +p12012 +aVyour comment is repulsive . +p12013 +aVfuck out da wa - fuck out da way ! +p12014 +aVthe domains isn't penalized as far as i can tell , perhaps it was just increased competition . +p12015 +aVok i'm going there and i'm going to be ignorant like you and the other dum asses that reply a stupid racial rematk about afraican american . blacks / negros .. at least black people kill other people white people eat them +p12016 +aVyour views are extremely short sighted . maybe you should read a little more philip k . dick in your spare time . the future is something you don't understand . things change all the time . buffet is now in a very good position to get some real reporting done in america's newspapers . this new media influence capability cost him almost nothing . the opinionocracy of the internet is full of name-calling true believers who think the media sound bites they hear on television and radio are actually news . +p12017 +aVyour a dumb @ $$ +p12018 +aVhole in the lower back , your racism stinks straight from your hole +p12019 +aVlike your ideas , are not common . :) +p12020 +aVi've seen better looking shits . +p12021 +aVyou are such a pun . k a . ss +p12022 +aVlike arthur replied i am shocked that a student able to earn $ CUSTOM_NUMBER in four weeks on the internet . have you seen this web link n u tty r i c h d o t c o m custom_break +p12023 +aVwhat the fuck im a pornstar can i lick your pussy plzz +p12024 +aVyou realize it isn't mandatory to read every comment , right ? +p12025 +aVromney : \u005c u CUSTOM_NUMBER no one \u005c u CUSTOM_NUMBER s ever asked to see my birth certificate \u005c u CUSTOM_NUMBER custom_break custom_break custom_break you fucking liar ! i have asked several times on this site to see your supposed birth certificate . when are you going to produce it motherfuker ? custom_break custom_break custom_break so then that means that rich pathetic pasty faced bottom feeder fuks like you get a pass but obama has to produce his birth certificate time after time after time ? custom_break custom_break custom_break +p12026 +aVjust saying , can you remember that ? +p12027 +aVomg ! this shit is fucking awesome ! how i wish jessica could perform with them too . either way , i'm just so happy and excited . once again , omg omg omg ! <3 +p12028 +aVwould you be happier after one beer than after nine beers . +p12029 +aVCUSTOM_AT actually dipshit , they inform you CUSTOM_NUMBER - CUSTOM_NUMBER days after you submit your photo . i got my dm on the CUSTOM_NUMBER st . you're just mad you didn't get your pair . typical hater ahaha . +p12030 +aVtressel ball " saved you from " cooper ball +p12031 +aVCUSTOM_AT :d isqus CUSTOM_AT :d isqus CUSTOM_AT :d isqus custom_break custom_break CUSTOM_AT :d isqus you cnn , i know you certainly have a lot to do with the untimely ends of several of our fellow commenters . you tried many times to get me , but i'm always a step ahead of you . +p12032 +aVwhat about my little sister linda lewis found murdered on CUSTOM_NUMBER th and bond , i'm guessing you not telling the whole truth about your murderers ineast st . louis , just saying who are you procting . +p12033 +aVyouk's like , " i know , what the fuck ? +p12034 +aVsomething more for you to shit on : CUSTOM_URL +p12035 +aVlooks like you ! custom_break +p12036 +aVamerica will soon be known as nation of faggots custom_break custom_break how u like that lol +p12037 +aVthat is certainly you +p12038 +aVCUSTOM_AT - and you are the perfect example of a jealous kristen hater , who can dish it out but can't take . you bash kristen then you better fucking count on the fact that i will shut your insults and lies down . so celebuzz features nicole and that made her queen of cannes ?? that's funny because every major media outlet was talking about rob and kristen being the highlight of cannes , and kristen's red dress was the top story . the only story that topped that was rob and kristen's pda at the otr afterparty . how does kristen crap on us ? last time i looked rob and kristen were shitting on the nonstens and haters theory that they are a pr couple . another thing if you are going to call me a psychotic liar you better fucking have the proof to back that up . i'm not like you lying nonstens , i take the time to get the facts and truth . you need to take a look in the mirror so you can see yourself for the low-class , piece of shit you are . +p12039 +aVironbottom , which troll hole did you spew from ? +p12040 +aVbut it can be fun for a one off but stupid in the long term . +p12041 +aVas usual this mad .. r ch .. d chodumbram is trying his best to fool indians and with the help of n . d tv and this most corrupt hinduatan times he is succeding in fooling indians . are we indians that idiots that we cannot see thru the corruption of this most corrupt congress party , this party has been succeding fool of indians for last sixty five yeras , but no more of this garbage from this party run by the most corrupt italian maid +p12042 +aVcustom_break < blockquote > custom_break you are dying to accuse me of a diffierent motive . < / blockquote > = > no buddy , your motives are crystal clear when you write something like this : custom_break custom_break < blockquote > you sure are , and not only are you depraved , you are a dead corpse unable to do anything but be a reprobate . custom_break custom_break custom_break < / blockquote > custom_break = > you are a sadistic pig full of hate and devoid of even the tiniest spark of human compassion . custom_break +p12043 +aVdude , you are an idiot lol .. why not just trade anthony and lin sign and trade for williams . custom_break custom_break be a win win for both teams . anthony can be a ball hog and get his shots up with the nets . +p12044 +aVhow about i sew your as . shole shut and keep feeding you . +p12045 +aVyour racism sickens me and disgraces you and your family . is this the way you were raised ? shame on you , your mother , your grandmother , and everybody else who let you grow up a human ruin . +p12046 +aVhouston_forensics you are parsing words .. you nee to step away and go back to the topic . +p12047 +aVdon't you mean " cyber goose step " ? +p12048 +aVyup .. and your crack is probably gross like old dead mouse smell +p12049 +aVyou , sir , are a moron . +p12050 +aVhow tall are the ceilings , do you know ? +p12051 +aVlike arthur replied i am shocked that a student able to earn $ CUSTOM_NUMBER in four weeks on the internet . have you seen this web link n u t ty r i c h d o t c o m +p12052 +aVyou will be so good at this marlyne . +p12053 +aVmake a dumb comment , you deserve a dumb answer . +p12054 +aVnow .. i am a father of one and i tell men all the time , it is a joy when you see your baby for the first time . whatever problems , fears , worries you had , vanish from the moment you see the little hairs on his head ! this guy needs to a good ass beating ! +p12055 +aVstill not as good as ours were custom_break +p12056 +aVlets nuke mexico .. fuck em +p12057 +aVyou are so wrong . ukip is our only chance . +p12058 +aVdamn job creators . we give them all the tax breaks and they still can't make jobs . let's give them more money . it'll work better next time . +p12059 +aVare you blind , it says alberto del rio +p12060 +aVCUSTOM_AT .. your a jerk . he never tested positive over CUSTOM_NUMBER times . there is no proof . go back under your rock . +p12061 +aVso sorry , schatzi .. may you stand up to the too many sorrows you are having now . +p12062 +aVwell , then you are a moron . something tells me that's not news to you . +p12063 +aVi wanna fight you and your CUSTOM_NUMBER pack custom_break +p12064 +aVi hope you don't think any of your comments make you look smart . you are a heat fan and every word you say has got to be taken with a grain of salt +p12065 +aVhope you are better soon , and that you get a chance to doodle on your hubby's head . :) +p12066 +aVyou are a real charmer .. +p12067 +aVthe father must of been a nigger , thats why he isnt around . +p12068 +aVoh shit sam , you is funny .. +p12069 +aVwhy would you be specific right now an dlay yourself open to attacj ads on spending cuts . there will be plenty of time for that in the coming days . +p12070 +aVyou were never a " rotten apple " . ever . +p12071 +aVyou're an fing moron . +p12072 +aVpussy ass cunt bitch stfu dickwad +p12073 +aVv nasty my bitch +p12074 +aVabby !! are you getting chickens !! ? ! +p12075 +aVlet me get a crack at your girl homie . +p12076 +aVi sound like your pimp bitch !! now lets go back and get you ready for the streets !! * grabs your neck * +p12077 +aVlike arthur replied i am shocked that a student able to earn $ CUSTOM_NUMBER in custom_break custom_break four weeks on the internet . have you seen this web link n u tty r i c h custom_break d o t c o m +p12078 +aVyou dont know mike and his hitler socialist pot smoking mind .. +p12079 +aVi like boston , man , but cant stand garnett . u know he greeted td mother's day just to spite him coz his mother died of an illness ? come on , would you have wanted that ? custom_break custom_break he's a good player though . +p12080 +aVfor an idiot , you still suck . +p12081 +aVbut you would for a muslim ? +p12082 +aVwhy aren't you supposed to be here ? +p12083 +aVnot if you're bad and evil . +p12084 +aVthat is right you dumb fool . you have obviously never played high level competitive golf . both of dufner's penalties were from shots that had water short and to the left . the caddy needs to make sure the player takes enough club that he doesn't force the shot . dufner tends to hit a pulled draw when he tries to get extra on the shot . wake up you fool . the caddy needs to talk to the player and make sure he plays to the right center and hits an easy ( enough club ) that he doesn't force the shot . oh you are too stupid to understand . +p12085 +aVyou're f < v > ucking illiterate +p12086 +aVzimmerman was attacked and his threatened by dopehead trayvon . terrorists in the u . s . have put out a lynch contract on an innocent man . u . s . department of justice , where are you ? if white men put out a lynch contract on a black man , you would be on it like ugly on an ape . +p12087 +aVwould you like your taxes pay for the cameras ? +p12088 +aVsour grapes you are . but i guess you don ; t know any better . +p12089 +aVshe never off , fuck u mean . +p12090 +aVyou are an idiot -_- +p12091 +aVand your comments about my mom were ? custom_break custom_break you are an CUSTOM_AT +p12092 +aVnow you're talking .. +p12093 +aVyeah i know you are . and that's ok . i know you can't express it better than a three year old and that's why you should have stayed in school .. better yet your moms should have swallowed you lmao +p12094 +aVyou're a little savage +p12095 +aVwho is your source , tyrone biggums ? +p12096 +aVso whats you're point . they are still losers +p12097 +aVfucking stupid waste of beauty . +p12098 +aVbrock lesnar you dumb psycho dick bitch you think you can troll triple custom_break dick ? go fuck yourself and win over triple h ! you lost to thugasuckdick custom_break cena who is jerking off to david otunga you are a loser i hope you beat custom_break triple h ! live like a windrammer as you fuck ! +p12099 +aVcan i just say .. we are gonna get fat when we move out ! thank you pinterest ! custom_break +p12100 +aVcousin , you rock ! +p12101 +aVkelly , you're up +p12102 +aVid love to bitch-slap bettman .. knock that smug look of his ugly face +p12103 +aVfu ck you too sd . :) :) +p12104 +aVhey CUSTOM_AT - b CUSTOM_NUMBER de CUSTOM_NUMBER b CUSTOM_NUMBER a CUSTOM_NUMBER e CUSTOM_NUMBER ba CUSTOM_NUMBER e :d isqus , you are awesome ! +p12105 +aVwhy ? you're the one who fucked up . that's not their fault . +p12106 +aVyou do realize what an amazingly huge hypocrite you are , right ? you can't complain about other people's comments when you yourself are one of the very worst offenders . +p12107 +aVyou sound like a sore loser . +p12108 +aVhe's like a punch sock'em robot , stiff as fuck haha +p12109 +aVi just hope your on here after the election is over .. after obama wins again .. i want to say thank you for your comments they were nice but americas not dumb .. they no mitt romney don't have a chance in hell to beat obama .. custom_break custom_break vote obama +p12110 +aVburkes a clown and you spell like CUSTOM_NUMBER !! +p12111 +aVjreall CUSTOM_NUMBER you are a fucking idiot ! probley the bigest one on here ! i dont even no were to start . first off everything he said is true about the racist shit . ok second just because " have " a ccw doesnt mean u can start threating ppl . thats the quickest way to get you ccw voided . ok third you say your about to be a cop and yet yyour saying your gonna beat / kill whites like zimmerman did to a black . are you fucking kidding are you that fucking ignorant you would say that when you about to be a cop ? you better hope no law enforcement agency sees this , because , they do monitor worldstar . ima leave it at that +p12112 +aVso why ya dumbass watch out it then . fukkin whiny ass bitch hyprocrite loser motherfooker +p12113 +aVthey aren't successful through good business practice they just make money by leeching off the public get your facts and wind your neck in right before you comment . +p12114 +aVyour still a moron . +p12115 +aVyou are fucking stupid . .. most pageant girls choose for themselves .. ?? wtf . if the mother wouldent do this shows , then the children would play normal like the other normal children . custom_break and look where miss america has gotten in life ?? custom_break custom_break miss america is a joke in life . +p12116 +aVoh , please fuck me . custom_break +p12117 +aVgood cuz afgan has turned yours into a poppy dependant nation of fureekz +p12118 +aVso are you working on a trailer as well ? +p12119 +aVfuck this server , mods and admins and staff are corrupt , fuck it and fuck anyone who plays here , i got banned for saying " welcome " to the owner , fuck . +p12120 +aVyou are too . whiney steeler fan ? +p12121 +aVoh , you fucking tease ! +p12122 +aVwelcome aboard , and look forward to your work ! +p12123 +aVi agree . fox news is a grand mechanism for preaching , promoting , propagating all the negatives and evils in man : racism , bigotry , narrowmindedness , hatred of anything unfamiliar , ignorance , selfishness , greed . +p12124 +aVjeb b itch slapped that little hoo , and sent her back to her street corner ! +p12125 +aVCUSTOM_AT sa .. feast your eyes . +p12126 +aVCUSTOM_AT .. you're an idiot .. there just thought someone should tell u that u bitch .. haven't u ever heard to each is own ? jeesh +p12127 +aVi just can't stop listening to your song ( pray for me ) . you are atrue star . +p12128 +aVboy ! - you racist scum +p12129 +aVirrevelant indeed . but you are underestimating alex . +p12130 +aVyou're welcome , i've been laughing about your posts all morning +p12131 +aVyou are here all the time . life is too tough out there right a $$ hole ? +p12132 +aVyou sound really smart +p12133 +aVthis shit was fuck trashh +p12134 +aVyeah . motherfucking stannis , man . holy shit . custom_break custom_break that was an amazing fucking episode of television . cheers , kudos , hosannahs , and so on and so forth . custom_break custom_break mccann , headley , dinklage , cunningham , dillane , turner , and flynn just fucking nailed every god damned thing they had to do this episode , and then some . +p12135 +aVare you online ? custom_break +p12136 +aVbetter watch out , heifer . you are getting close to the tone of our earlier comments , which mysteriously disappeared . +p12137 +aVdem = despicable evil maggots blah blah blah +p12138 +aVlingering fog has been fucked for over a week bud +p12139 +aVyou are preaching to the choir babygirl , sing it out with sum soul sister , ill take the hatmony and riff that bitch a queen +p12140 +aVnahh this is true . you just hate the true because i bet you're dirty white man's whore too at least you look like smh ! +p12141 +aVfor you alicia +p12142 +aVfuck the un . +p12143 +aVno you don't have a wp don't pretend , trolls and haters always say they hate something but never get into specifics , such douche bags . custom_break custom_break not everyone loves any os , but as far as consumer satisfaction rates go wp ranks higher than android and ios , look it up . if more people really knew about wp the sales would reflect that but windows CUSTOM_NUMBER will hopefully change that . custom_break custom_break by the way let me be the first to inform you that as iof this week samsung has killed bada and put tizen on ice in a effort to focus more and windows phone and android . now you know . +p12144 +aVif we don't know who you are , how do we know you pay taxes ? +p12145 +aVomg lol look at these " reasons why people troll " here is a real fact most troll's do what they do because if they don't the average stupid idiot gets away with posting a comment . if you're not retarded you have nothing to fear from trolls . but if you post something stupid expect to be harassed . trolls are the internet police , keeping idiots from posting . oh and if your stupid enough to see a comment and take it seriously and not realize that the troll is just trying to get you pissed . then you write a paragraph talking back to them .. you my friend just got .. trolled :) +p12146 +aVand the whole group of girls would have been knocked the fuck out and then said shit about how he was a punk for hitting all of y'all . +p12147 +aVyou are out of touch with the goals of many , many people . +p12148 +aVam happy ur not nigerian , fuck off , u got no swags +p12149 +aVi'm telling you my state because you crazy fucks are insane . i don't want to be hunted down and burned at the stake . +p12150 +aVi don't know about that but at the vfw they do . also , at my favorite watering hole at the top the mountain , they do as well . custom_break custom_break when can i expect your show ? custom_break custom_break please , remember one of the major failings of many are to keep their elbows in close as well as their front knee well bent . it gets ugly when one has open access to the a sternum in the center or a quick kick to disable an exposed leg . what normally happens is the receiver is on the ground after the first thrust and rather sad , given their cries . custom_break custom_break please , keep that attention in mind . i would hate for someone as fine as you to fall immediate victim to such easy shots . custom_break custom_break custom_break custom_break oh , and i'm still looking for your request for an invitation . i have it ready once i know where to send it . +p12151 +aVyou look gorgeous ! +p12152 +aVphil winning the u.s. open can't be that hard , tiger has CUSTOM_NUMBER of em , and you know he is just another golfer . +p12153 +aVskip just needs to stick with his tebow obsession . give me a break you idiot +p12154 +aVooh , you are living proof of everything we discuss here . +p12155 +aVso , the pit bull attach was okay because the collie should have been on a farm . moron . +p12156 +aVi wonder if you deny on purpose that the only people " coming down " custom_break against social conservatives are homosexuality agenda supporters . " custom_break custom_break custom_break custom_break billy : well sherry , you've equated yourself with " social conservatives " custom_break before , and it's seems like your view is that the rights of homosexuals and their supporters can be disregarded ( while shrieking about the rights of social conseratives ) , so of course in your mind anyone here who defends gays and their rights is going to seem like " homosexual agenda supporters coming down on social conservatives . " custom_break custom_break well billy , you've equated yourself with people with a homosexuality agenda custom_break before , and it seems like your view is that the rights of social conservatives can be disregarded ( while shrieking about the custom_break rights of " gays " ) , so of course in your mind anyone here custom_break who defends social conservatives and their rights is going to seem like " homosexual custom_break agenda supporters coming down on homosexual activists . +p12157 +aVfunny how you like everything i say and no that just like last year you will cry to mommy and i dont even have to say why , i will look for you and won't find you or any other heat fans , you'll all probably be crying somewhere like a ghey night club +p12158 +aVcustom_break custom_break many of you rednecks , aipac jew lover morons and black obama custom_break lovers do not understand that persians are not warmongering people . if you believe custom_break you are a bad ass redneck or a nigger or whatever , then you should think twice . custom_break the persians in iran are not as the same persians sissy boys you meet in custom_break americans streets . those mother fuckers are your worst nightmare if you mess custom_break with them for unfair reasons . remember my custom_break words . i am not a muslim either . you are messing with some smart talented custom_break humans outside of your small brain . custom_break custom_break custom_break +p12159 +aVoverall we punch above our weight and you don't get to be the winner for so long without winning most of your battles . +p12160 +aVhow your shit say " dat pretty motha fuxka " but you're face lookin arab and clearly by ya twitpics you're ass-less . pancake booty bytch lol +p12161 +aVdo you think all of your comments are cute ?? the three of you are probably the only ones . +p12162 +aVlmfao fuck yo finally a funny video lmfaoo . +p12163 +aVhottest ? isn't the white sox the hottest team right now ? damn dude you are a moron . the anaheim angels will play a lot of road games soon and will continue to choke . i like how you don't think that you are a complete fail dumb CUSTOM_AT . +p12164 +aVlebron you are pathetic +p12165 +aVmcdonald also threatens parents in order to intimidate them into not speaking up and telling the truth about her trying to coerce them to sign falsified letters about teachers to defame and besmirch them and cost them their jobs . it's something the heirarchy of the det / dec must engage in if they want to keep their jobs and being gutless , witless , brainless , greedy , deceitful , lying , corrupt , slimy , sacks of monkey shit , they just do it . they actually get off on other's misery you see and of course they are only interested in their own retirement on the highest level of income !! +p12166 +aVes increible como esta el barrio , una hecho en la que intervienen un barrendero , una ambulancia custom_break y una patrulla de policia , y algunos dudan de la veracidad de los agentes . seria que pasaron por alli vieron a uno y le detuvieron sin mas , as \u005c xed porque les pareci \u005c xf CUSTOM_NUMBER . la estupidez , el odio cerval gratuito de algunos parece que no tiene l \u005c xedmite . es intolerable la cantidad de sandeces que se puede llegar a decir para desprestigiar a la policia . educaci \u005c xf CUSTOM_NUMBER n de borriko kaverna tal vez ? +p12167 +aVdamn that negga n da white t grill fucked up +p12168 +aVblaming all your problems on weakest and most vulnerable of society " - do you have anymore " straw man " arguments up your but ? custom_break custom_break " cowards with no morals or intellectual honesty " - hypocrite . as if you know what you said . +p12169 +aVyou sound like a little girl . +p12170 +aVpirates win and you lose = CUSTOM_NUMBER rd place maybe tonight .. enjoy your weekend +p12171 +aVfuck him .. and everybody like him ! lol +p12172 +aVgofuckyourself +p12173 +aVglad you are feeling better threadz +p12174 +aVhow are all those tax dollars doing you survive off that come from dog s -- t +p12175 +aVeat my prick you . +p12176 +aVyou don't need all these subcategories . all your " real " friends are just fucking assholes . and in the end , isn't that all that really matters ? armadillo time !! +p12177 +aVhow arrogant you are . +p12178 +aVsome think it's just all offensive line in run blocking . it is to a degree , but the rb has to have a consistent penchant for getting to the hole " on time " too . thats what playing fast is all about as a rb . +p12179 +aVit's interesting how you call this " the rape issue in the u.s. " when the number of rapes in the usa with male victims is higher than than the number of rapes with female victims . +p12180 +aVyour an idiot .. +p12181 +aVdon't cover your face please let us see !! +p12182 +aVthat prick dick +p12183 +aVlmao are you really using statistics from CUSTOM_NUMBER ? anyways , it says white males have a CUSTOM_NUMBER % suicide rate . so what was your point ? to prove black men kill themselves more often ? wrong . white male suicides were CUSTOM_NUMBER , CUSTOM_NUMBER , while black males suicides were CUSTOM_NUMBER , CUSTOM_NUMBER . you can't be that slow and attend yale . +p12184 +aVwhat @ # $$ are you talking about ? +p12185 +aVimagine someone being pitched that movie today : " the aliens blow the white house to smithereens ? get the fuck out of here , we can't sell that . +p12186 +aVyou don't get me . +p12187 +aVis english your third language ? i hope you cut your fingers off . +p12188 +aVyou sir are a complete idiot +p12189 +aVyou sound like chelsea never bribed officials . +p12190 +aVif you do chain letters you are shit !! +p12191 +aVcustom_break custom_break custom_break custom_break custom_break custom_break pls black ppl wake the fuck up we need more real talented strong custom_break dark / brown skinned black sons / kids and full black family in america and custom_break in all the world black love the best fuck interracial racist bullshit custom_break and racist ugly pale crackers ! custom_break custom_break custom_break custom_break custom_break custom_break +p12192 +aVnever mind , you can feel bad now braves +p12193 +aVsee that shampoo bottle ? now stick it up my as < b > < / b > s ! push it in and out at a medium pace . talk about your old boyfriend's dick and how big it was . shave off my pu < b > < / b > bes and punch me in the face ! +p12194 +aVyou have no idea that the age so down run ya mouth bitch nigga +p12195 +aVare you kidding ? did you watch game two ? +p12196 +aVthat dude that ate the dude's face off in miami , was that you ? because you sound just as crazy ! you actually think that hunk a shit madden represents real football better than nba CUSTOM_NUMBER k represents real basketball ? custom_break custom_break dude , what time are you due back to the mental institution ? seriously , what time ? +p12197 +aVall you need is : custom_break CUSTOM_NUMBER packet of kool-aid custom_break CUSTOM_NUMBER cups of club soda custom_break CUSTOM_NUMBER / CUSTOM_NUMBER cup sugar custom_break CUSTOM_NUMBER CUSTOM_NUMBER / CUSTOM_NUMBER cups crushed ice custom_break and , of course , a blender custom_break custom_break step CUSTOM_NUMBER ~ blend kool-aid , sugar , and CUSTOM_NUMBER cup of the club soda on high until the sugar is dissolved . custom_break custom_break step CUSTOM_NUMBER ~ add the ice and blend until the mixture is smooth . custom_break custom_break step CUSTOM_NUMBER ~ add remaining cup of club soda and blend away .. custom_break step CUSTOM_NUMBER ~ pour mixture into glasses and put in freezer for CUSTOM_NUMBER minutes . custom_break custom_break CUSTOM_URL +p12198 +aVlet's see your girl's set . +p12199 +aVyou need to get out more . that computer has seriously screwed up your head . +p12200 +aVno , you're getting played like a fiddle . +p12201 +aVwhat is your name +p12202 +aVyou'll be too busy watching my little pony to riot , you freak . +p12203 +aVkeep your chin up , katie ! it's completely normal to worry a bit . just don't let it consume you and take the time to enjoy the rest of your time in the caribbean ! +p12204 +aV.. you cannot be serious .. +p12205 +aVu would rather live like this than fight !! ?? CUSTOM_NUMBER rd rate indians like you are a the reason this country fails all of us !! +p12206 +aVdont call your sister that +p12207 +aVyeah , fuck tejas . / custom_break custom_break i leave you all good people with willies - roll me up & smoke me when i die .. custom_break custom_break CUSTOM_URL custom_break custom_break custom_break +p12208 +aVwell , it's not difficult really : i've just bought myself a passivhaus , and if i ever need to heat it , i run a CUSTOM_NUMBER kw woodburner . it's so simple ! custom_break custom_break what ? you still live single-glazed heating your home with gas from qatar ? some people just live in cuckoo land .. how can you put up with living in a shed an paying thru ' the nose for it ? +p12209 +aVare you ever going to show us some cock or butt ? +p12210 +aVstop using my screen name you dummy -- at first you were spelling it with one " n " , now you are spelling it with two . stop trying to start s h i t . +p12211 +aVyour mama was on juice to produce idiot like you . josh put his addiction away before he was contracted and moved to texas . +p12212 +aVyou are so mad those demon white folks lost are you here on wshh commenting to avenge them ? +p12213 +aVlike calling someone a moron ? wow . hypocrite . +p12214 +aVdon't forget your white hood when going out to your memorial day bar-b - q +p12215 +aVu have fucking eaten him with CUSTOM_NUMBER guard support on that ship +p12216 +aVridiculous article ign . this is just so stupid it hurts .. +p12217 +aVCUSTOM_NUMBER - CUSTOM_NUMBER says you are wrong . +p12218 +aVuntil it eats you !! bahahahaha crazy sally !! :d custom_break +p12219 +aVyet here you are commenting on it , hypocrite . +p12220 +aVyou're the real loser . at least nasdaq CUSTOM_NUMBER comments on golfers not other commenters . +p12221 +aVjugacat , lmao are u CUSTOM_NUMBER real . +p12222 +aVlol you guys are cruel .. lol +p12223 +aVfuck true !! +p12224 +aVas long as you feel good that is all that matters custom_break +p12225 +aVyou want to approach that shit ? lol , the drugs have been around for a long time . +p12226 +aVyou are a fucking idiot , it's not a literal distinction , it's a legal distinction , so it doesn't matter if there are more women than men , the law says women have minority status as a result of their gender ! that is all that matters , now run along and let the adults discuss this issue ! +p12227 +aVpause is your friend +p12228 +aVshelly ? where are you ? +p12229 +aVare you just learning english , or can you actually put a sentence together ? +p12230 +aVcan you smell the desperation ? they see it all slipping away . hate doesn't sell like it used to . sure you can encourage encephalitic headed goobers to throw acid on women and it might just happen . sure they might feel good for a few days , high fiveing each other . but the excitement wears off and then they have to face themselves in the mirror . howdy piece of shit , how are you today . aww why the sad face ? you still have CUSTOM_NUMBER months until it's over . give it your hateful best . crosshairs worked good in arizona . maybe go that route . +p12231 +aVquit f * ckin trolling you wouldn't understand what the cat picture symbolize's you stupid d * ck ! so how about you go back to the sh * t hole wvu board ! +p12232 +aVyou're taking this far too seriously . they were wearing too much fucking makeup in those mvs . sit yo crazy ass down . you're the one in the wrong here , and you're the terrible ass friend for letting your oppars who don't even know you come between you in a friend . +p12233 +aVhow pathetic are you to post your hatred on a message board ? +p12234 +aVfuck you friends +p12235 +aVit comes down to men not wanting to play house with bitches who will try to leave with half of your possessions and kids . +p12236 +aVghendric : custom_break you're a mental midget . you obviously can't tell the difference b / t your a $ s and a hole in the ground . i certainly hope you don ; t have any children . +p12237 +aVare you really this dumb or did you have to work at it ? +p12238 +aVaimless abe you are a delusion weirdo that should be locked up inside and kept away from computers . anyone who doubts the lunacy of abe the moronic prog frog from nyc please read this thread and you will see abe completely come apart from the seams and go off the deep end . +p12239 +aVso are your sisters . +p12240 +aVtht nigga ain't bout it .. wshh why is this white h CUSTOM_NUMBER nkeyass mofo on here +p12241 +aVok , representative republic . custom_break custom_break are you happy now ? +p12242 +aVthat's not her you're watching . +p12243 +aVyou don't see dust settling on your furniture , and yet it does . +p12244 +aV" as for little boys , there are plenty of little boys " custom_break custom_break at least you're honest about your wants and desires . +p12245 +aVyou're an idiot . +p12246 +aVtahaa !! yo booty hurt fuckboi ?? ! ? ! ? it aint my fault u n ur country poor as fuck ! haha , i graduated from kathleen high school n lakeland fl ! ( shoutsout CUSTOM_NUMBER ray lewis ) and i go CUSTOM_NUMBER fullsail university n orlando fl pussyy !! . musical engineering , video prod .. #i . j . s . +p12247 +aVyou seem wistful . +p12248 +aVbaby dae , you are hot ! +p12249 +aVand you are sheep +p12250 +aVyou should change your screen name to bandwagontigerdave CUSTOM_NUMBER then . +p12251 +aVthis comment is hacked you cant like it +p12252 +aVthe legend of steel troll-my team sucks , but i console myself by calling roethlisberger a rapist or lewis a murderer . custom_break custom_break my team is aging , but i console myself by telling all the haters " CUSTOM_NUMBER rings +p12253 +aVwhen you have four rings already , you really don't care when online trolls label you as boring . +p12254 +aVvery worthwhile website page . i merely got very little to do thus i'm simply killing time searching the internet and i feel as if i've stumbled upon some really practical web site . thank you so much +p12255 +aVCUSTOM_AT :d isqus because most people own pets ? what are you talking about ? +p12256 +aVsmh sucking him and shit , you know this song som e ass +p12257 +aVthank you all so much for your great comments . +p12258 +aVbitch i bet you wouldnt say that to a black persons face . internet gangsters like you are funny . +p12259 +aVu f'n retard +p12260 +aVnot smokin ' , you're a tigers fan . +p12261 +aVyou are a delutional lebrick d-ick rider and it naa-sty +p12262 +aVgee ups and fed-ex are closed ( delivery ) on saturdays you moron :( +p12263 +aVwhy don't you go out and look for a job ? +p12264 +aVi know its not googles its goggles lol . that goggle salute that jr smith be doin when he wets a CUSTOM_NUMBER in a niggas eye and shit . fuck your conspiracy theory bullshit , the illuminati wouldnt want drake in it any damn ways so again , fuck up +p12265 +aVhaha , dont shoot officer im white .. shame he didnt fucking die there on the street . took those bullets like a pro +p12266 +aVwhat about " choice " don't you understand ? +p12267 +aVyou need to get your ass beat bad ! custom_break your bf or husband is a bitch nigga , for not disciplining your fat ass +p12268 +aVyou're * +p12269 +aVdon't hold your breath . +p12270 +aVwell wouldn't you like to know +p12271 +aVfuck naw bro , are u black ? have you ever lived in a crack infested neighborhood ? this shit ant coo bro , he speakin real shit +p12272 +aVare you kidding me +p12273 +aVyou're not very bright , are you ? +p12274 +aVshultzmaker CUSTOM_NUMBER % of you are making a mistake .. don't be a follower ! just sayen !! boston loses by dd tonight .. more custom_break user id : CUSTOM_URL custom_break CUSTOM_NUMBER hours ago \u005c xb CUSTOM_NUMBER like \u005c xb CUSTOM_NUMBER reply \u005c xb CUSTOM_NUMBER quote \u005c xb CUSTOM_NUMBER flag \u005c xb CUSTOM_NUMBER edit \u005c xb CUSTOM_NUMBER sharetell your friends custom_break shultzmakerheat CUSTOM_NUMBER to CUSTOM_NUMBER .. more custom_break user id : CUSTOM_URL custom_break CUSTOM_NUMBER hours ago \u005c xb CUSTOM_NUMBER like \u005c xb CUSTOM_NUMBER reply \u005c xb CUSTOM_NUMBER quote \u005c xb CUSTOM_NUMBER flag \u005c xb CUSTOM_NUMBER edit \u005c xb CUSTOM_NUMBER sharetell your friends custom_break sefersonoh ok mr CUSTOM_NUMBER dimes .. didn't know any books accepted a CUSTOM_NUMBER cent bet .. i guess with monopoly money it doesn't matter .. more custom_break CUSTOM_NUMBER fans like this . custom_break user id : CUSTOM_URL custom_break CUSTOM_NUMBER hours ago \u005c xb CUSTOM_NUMBER like \u005c xb CUSTOM_NUMBER reply +p12275 +aVburger jones in minneapolis has really good poutine , and some amazing burgers and hot dogs to boot ! i don't remember what it was called , but i had their deep fried bacon wrapped hot dog that they top with onions and cheese sauce .. so freaking delicious . custom_break custom_break i don't even care if you call me a fat american for eating that kind of shit . i proudly eat their " white trash " burger with chicken-fried bacon , velveeta , and cheese curds . +p12276 +aVgood lord denver are you still on here ? +p12277 +aVgood morning , paul . will you play an old song for me .. " life gets tedious , don't it " custom_break custom_break don't know who recorded it . enjoy your show and appreciate your comments . thanks for two hours of nostalgia . myrtle white +p12278 +aVjust make sure you don't bring your californian lefturd ideas with you +p12279 +aVplease , give it a little thought .. oh wait , you don't have any ! +p12280 +aVthat's what we call , when we are driving in our car , a human radar detector :) +p12281 +aVhow to execute a trap : custom_break CUSTOM_NUMBER ) don't let this guy be your initial tackler . custom_break CUSTOM_NUMBER ) stop flying ships you're not qualified to fly . custom_break CUSTOM_NUMBER ) profit ? +p12282 +aVCUSTOM_AT hurst , this looks like your beautiful lyndsee ! +p12283 +aVstfu you absolute dumbass ho bag . bush playing golf and cheney forbidding pictures being taken of us soldiers ' caskets coming home was probably just great as far as you're concerned . custom_break custom_break when you're out watering your tree of liberty try watering your tree of intelligence , too . maybe one day it will sprout and get you above CUSTOM_NUMBER iq . +p12284 +aVwe already have a gazillion laws on the books to protect consumers . what obama and the democrats want is to protect consumers from stupid choices and the consumer's own ignorance . there is a comedic routine out by ron white appropriately titled " you can't fix stupid " and that applies to many consumers nowadays . we could not enact enough laws to protect the consumer who assumes that on a monthly income of $ CUSTOM_NUMBER , he can afford a monthly mortgage of $ CUSTOM_NUMBER plus food , utilities etc . custom_break custom_break just like the poor are always with us , so are the less intelligent . custom_break +p12285 +aVyou said oh shush lmaoo wut +p12286 +aVthese niggas are hilarious . +p12287 +aVyou must be outta coke .. +p12288 +aVlady , are you kidding ? yourself ? +p12289 +aVwhen one of your family members is murdered by someone high on cocaine .. then you can voice your advocacy . trash . +p12290 +aVwhp the fuck googles a comment im not you bitch ass nigga stfu +p12291 +aVyou would look super kawaii in this . xx +p12292 +aVthis is from a white woman's perspective who has dated black men , educated black men . when black women only fuck with thugs in their early adulthood , then get knocked up , and having never given the nerdy black guys a chance because they were " corny . " meanwhile , us white women who appreciate brains and character over swag from our early stages of adulthood and hold onto these values throughout life , notice these rejected black men . so now , what you see in this video is a white woman who snatched up what black women rejected . life is a bitch . you mad ? black women are failures are true womanhood . just saying . +p12293 +aVromney's team pays more if you strap your dog to the roof of your car and drive CUSTOM_NUMBER mph for CUSTOM_NUMBER hours . then say like romney .. " why he enjoys riding on the roof of the car " . lowlife , he should be strapped to his car roof for CUSTOM_NUMBER hours at CUSTOM_NUMBER mph and see if he enjoys it too . +p12294 +aVyou don't know . +p12295 +aVyou're so funny and clever :/ +p12296 +aVdude . you really have some serious issues . read what you are posting . it's worrisome . +p12297 +aVnow you're making me hungry .. +p12298 +aVyou too , please . custom_break custom_break unless you don't consider weed a drug . custom_break custom_break then you're just dumb . +p12299 +aVand you receive divine messages from your messiah , obama . +p12300 +aVget off the nigga dick hot damn +p12301 +aVoh get the fuck outta here with all that political shit man , and i wuz not direction this at you asswhole . and no i would not be behind them if they made a song about dookie , use a different analogy . and once again this song is not wack i know exactly what wack music sounds like . the song makes perfect sence we just need less hatin black people like you off the planet and more congradulating ones . so you and your comment can eat shit you fuckk +p12302 +aVthe little rascal needs his fat a .. spanked . i'll bet he made his mommy proud . +p12303 +aVsounds good and you have your menu for a few days too !! +p12304 +aVyou are a moron ! +p12305 +aVyou are unwanted ! CUSTOM_URL +p12306 +aVyour are about as deep as a puddle . how bout taking yo " mommy issues " CUSTOM_AT to a therapist to talk it out ? and try opening that little peephole of a mind of yours .. i guess we could argue that everything that ever goes right in a black males life can also be attributed to his mother . +p12307 +aVyour cam is down . +p12308 +aVwhy are you talking to me like i'm some sort of a $$ hole ? can't you be respectful in your public discourse ? i'm open to what you have to say you don't need to talk down to me . +p12309 +aVwow . lol at the comment " the weather is hot just like you are " < -- classic . custom_break i looked up the temperatures .. if he can't stand the weather there then he would melt in about CUSTOM_NUMBER . CUSTOM_NUMBER minutes where i'm at . it's not ever summer yet where i live and it's already hit CUSTOM_NUMBER degrees . +p12310 +aVget stuffed you common little plastic paddy . +p12311 +aVcheck yourself before you hurt yourself ham f * let ! anywho .. it's none of my business . when you say " .. your'll are f left right and centre , " ( terrible grammar and spelling loser ) .. what are you on about ? you think you know me now .. ? do you know who i am ? * juju voice * i could be black , white , indian , coloured , purple , male , female , gay , straight .. you think you got me figured now .. eish ! +p12312 +aVwell done , chubbs - i wish i was as fat as you +p12313 +aVhow right you r +p12314 +aVyour boards are fabulous , david . are you a professional architect or critic ? +p12315 +aVis english your second language ? +p12316 +aVjade , are you a fan of little britain ? +p12317 +aVyour mother pussy ! +p12318 +aVthe ones who ain't peepin what he is sayin is the batteries to all this bullshit out . they keep energizing all this bullshit . mindless consumers who believe in all these fairytales these mainstream artists talk about . notice how all the money they talk about and all the things they say about people who aren't gettin money like them is CUSTOM_NUMBER % of you idiots who support these clowns . they are talking down about you dumb asses . custom_break custom_break * waits for shut up and go get money broke nigga comment * +p12319 +aVwhy can't you find your d custom_break \u005c tick ? lolol custom_break custom_break custom_break +p12320 +aVglad you like it ;) +p12321 +aVit seems to me between pirazolo ( sp ? ) crying about the advance and this stupid story the si gop are crybaby losers . as far as you union hate goes , lanza and maliotakis just picked up ny afl-cio endorsements . will you also denounce them ? as far as the abysmal economy , its better than it was , but has a long way to go . i guess its gonna take more than four years to fix the mess your party made . +p12322 +aVwould never kill a dog being forced to put them down and i will track you down if you say another word about killing dogs +p12323 +aVwhat a cynical little twit you are . +p12324 +aVje pense que la marge d'erreur devrait \u005c xc CUSTOM_NUMBER \u005c xaatre plus grande , vous prenez un exemple comme le tunnel du mont blanc limit \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER \u005c xc CUSTOM_NUMBER CUSTOM_NUMBER km / h , le conducteur qui n'est pas \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER quip \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER d'un limitateur de vitesse doit avoir les yeux riv \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER s sur son compteur et non plus sur la route , \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER a devient dangereux custom_break comme le fait re supprimer les panneaux avertisseur de radar fixe , je trouve cette d \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER cision assez stupide et inconsciente , le gas qui roule vite et qui le voit au dernier moment ben qu'est - ce qu'il fait ? il pile custom_break je pense qu'il faut arr \u005c xc CUSTOM_NUMBER \u005c xaater de nous prendre pr des cons en nous bassinant avec la s \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER curit \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER routi \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER re , disons simplement que l ' \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER tat a besoin de mettre la main dans notre porte monnaie et que \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER a marche de plus en plus vu le rel \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER chement des conducteur pr \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER c \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER demment \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER voqu \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER custom_break l'automobiliste est une vache \u005c xc CUSTOM_NUMBER lait et c'est pas demain que \u005c xc CUSTOM_NUMBER \u005c xa CUSTOM_NUMBER a s'arr \u005c xc CUSTOM_NUMBER \u005c xaatera +p12325 +aVdemocommie : your next original thought will be your first , coward +p12326 +aVi watched obammass place the wreath today .. he seemed bored .. way out of his element custom_break he will be packing up his fat -- whore -- moocow and leaving our country soon +p12327 +aVlow iq , are you that frickin ' dumb . either that or you are an CUSTOM_NUMBER year old . come back when you graduate elementary school . +p12328 +aVthe saying goes if guns kill people then does a spoon make you fat ? you have the choice to eat bad or eat good , you you you ! no one is forcing you to go to these places +p12329 +aVblues you made my afternoon yesterday .. i must have laughed a dozen times picturing you standing there in your trash bags , mayo dripping down your forehead , two thumbs up and a stupid grin on your face . +p12330 +aVare you the moderator of this thread ? +p12331 +aVwhat the fuck you bout a ignorant bitch +p12332 +aVso CUSTOM_NUMBER , were you just too stupid to get the name right ? custom_break custom_break or where's the link for j . powers ? custom_break custom_break crap . i'll take your lame explanation of powers . +p12333 +aVwhen you jump into the air for a shot you are bound to you some muscles in your back or at least stretch them and he's had back problems all year how do you know he's a fake ? +p12334 +aVlit -- your daughter is CUSTOM_NUMBER now ?? where has the time gone ? of course , it must be CUSTOM_NUMBER going on CUSTOM_NUMBER , right ? +p12335 +aVi meant claiming u fuck boi .. bwhahhahahaha +p12336 +aVnobody listen to the dickhead below . he's just trying to get people to like him . custom_break also do not reply to this or you will look like the dickhead . i warned you all . +p12337 +aVbut your still a loser troll ! +p12338 +aVyou may be right . +p12339 +aVyou're just like mitt flopney . +p12340 +aVyou sound queer +p12341 +aVwas your funny boner active ? ) +p12342 +aVmost of those articles are about your tattoo scandal and your ex-coach +p12343 +aVmy favorite pre release hype is twilight princess because i fucking cried my eyes out when i saw link looking that good i just wanted to drop my pants and let miyamoto have his way with me because when he showed that trailer my sister walked into my room and saw me crying and asked me whats the matter so i smacked her and said you fool dont talk while zelda is playing then started watching the trailer again while she cried with me because the trailer was just that awesome +p12344 +aVCUSTOM_AT custom_break custom_break go back to playing your kiddy little anime games in your bedroom that your parents provide for you . +p12345 +aVare you rooted or have unlocked bootloader ? +p12346 +aVloosing in the finals has to get you at least a little bit of respect . +p12347 +aVyea , you guessed it right . i work at microsoft and pussy + kool-aid = as evil as fuck ! +p12348 +aVwho gives a fuck if it's a rental or not let son be . don't be a crab +p12349 +aVyes , you are . you don't need to point it out , we can all see that . +p12350 +aVyou're an idiot and a spammer . custom_break custom_break it's like if mitt romney fusion-danced with the slapchop guy . +p12351 +aVyou know what got thousands k illed it was saddam acting like badazz . and talking shyt and doing stupid shyt . custom_break he just didn't think we would actually put his dumbazzahole away . +p12352 +aVi am a mm fan but he was rather unfair to most of his band members , you cant just blame it on pogo as you dont know nor have you ever spoken to either of them , so shut the fuck up you fucking arseholes , several of mm's band mates have spoken out about what manson was really like to work for and as for poor ginger he was paid lower then any of the other band mates , get a bloody life +p12353 +aVwhen you are ready for this . let me know . i can make this . custom_break ww.thetickledtutu.com +p12354 +aVmensaje a periodicuchos ingleses y gringos : fuck you +p12355 +aV_ fuck_you _ nigger_loving _ faggot_go _ swing_in _ the_trees - with_your _ own_kind _ nigger +p12356 +aVyou are boring custom_break +p12357 +aVby your comment . +p12358 +aVfuck you not working mother fucker !! eat my dick your mother is a bitch +p12359 +aVnkk CUSTOM_NUMBER custom_break custom_break hahahahahahahahaha is that all you got tough guy ? your kind are a dime a dozen .. stfu .. +p12360 +aVwhat a smug basket you are . +p12361 +aVhey , nils , you are silent about muslims killing thousands of muslims including the splitting of children's skulls . you quiet because you can't blame jews for this ? what a pity your concern for humanity does not extend to this murderous behaviour on a grand scale . come out of the closet and say something otherwise you might be called a hypocrite . come on nils , you brave man who enjoys killing animals with your CUSTOM_NUMBER . come on girly man , grow a spine . +p12362 +aVyou must have crack in your bong , as it ain't weed . +p12363 +aVfuckin lame come on wtf stop fucking over my bity shit +p12364 +aVyou shut your ignorant pie hole you little insignificunt insect you !! +p12365 +aVsweetie pie is looking very much like her cousin maggie e .. what a beauty this little one is .. love you all to pieces !! +p12366 +aVball CUSTOM_NUMBER real where are you with your miami g-ayness +p12367 +aVman .. if you are a CUSTOM_NUMBER point shooter , you must love playing with wade and bron . +p12368 +asS'val_ind' +p12369 +(lp12370 +I1395 +aI759 +aI2320 +aI1193 +aI2729 +aI274 +aI1783 +aI5007 +aI551 +aI102 +aI743 +aI6020 +aI5502 +aI1315 +aI11 +aI1275 +aI429 +aI5864 +aI5361 +aI4918 +aI5031 +aI301 +aI495 +aI2187 +aI897 +aI6014 +aI4984 +aI3888 +aI483 +aI4886 +aI51 +aI1719 +aI2210 +aI316 +aI2702 +aI5984 +aI5237 +aI1895 +aI3377 +aI5694 +aI781 +aI287 +aI3510 +aI5966 +aI3537 +aI962 +aI1510 +aI1921 +aI4220 +aI1718 +aI2556 +aI2504 +aI3272 +aI5282 +aI5130 +aI2031 +aI899 +aI5917 +aI4489 +aI474 +aI3826 +aI2441 +aI56 +aI295 +aI2865 +aI3505 +aI4327 +aI991 +aI4087 +aI2061 +aI5923 +aI2821 +aI4914 +aI5868 +aI4509 +aI6150 +aI4945 +aI1479 +aI2754 +aI5699 +aI5968 +aI1472 +aI5749 +aI2026 +aI2545 +aI3896 +aI3619 +aI3198 +aI5419 +aI2520 +aI1614 +aI225 +aI4592 +aI3234 +aI5963 +aI5543 +aI4983 +aI5344 +aI3038 +aI4076 +aI2925 +aI147 +aI4568 +aI5387 +aI370 +aI2244 +aI4874 +aI3165 +aI2840 +aI5151 +aI2171 +aI3931 +aI4456 +aI5887 +aI6169 +aI3989 +aI1877 +aI309 +aI1455 +aI2117 +aI2479 +aI455 +aI3284 +aI2786 +aI4792 +aI1077 +aI2671 +aI4480 +aI244 +aI1457 +aI2544 +aI200 +aI4569 +aI272 +aI4137 +aI2956 +aI4692 +aI2175 +aI3372 +aI5634 +aI3009 +aI5180 +aI2216 +aI997 +aI139 +aI3913 +aI1388 +aI3263 +aI4821 +aI1928 +aI4380 +aI1096 +aI388 +aI1266 +aI5754 +aI5039 +aI2569 +aI3878 +aI4686 +aI3154 +aI360 +aI1675 +aI1336 +aI4440 +aI4421 +aI5988 +aI524 +aI5849 +aI4966 +aI5921 +aI1031 +aI3990 +aI1141 +aI1618 +aI5769 +aI2214 +aI984 +aI1970 +aI6049 +aI2278 +aI1736 +aI5319 +aI4308 +aI5571 +aI3999 +aI4018 +aI1827 +aI3058 +aI3928 +aI3656 +aI1372 +aI1735 +aI73 +aI1189 +aI98 +aI5862 +aI731 +aI6094 +aI5687 +aI2167 +aI3488 +aI4209 +aI3729 +aI761 +aI1125 +aI5326 +aI4312 +aI201 +aI5951 +aI1186 +aI698 +aI2185 +aI3210 +aI5616 +aI5090 +aI2045 +aI4243 +aI1528 +aI2626 +aI1891 +aI1109 +aI2389 +aI2198 +aI4401 +aI2958 +aI4791 +aI4499 +aI2482 +aI5053 +aI3934 +aI4313 +aI5132 +aI1003 +aI85 +aI2776 +aI2351 +aI2815 +aI5707 +aI1488 +aI5926 +aI2972 +aI6058 +aI3799 +aI2311 +aI4075 +aI319 +aI1416 +aI306 +aI1574 +aI5227 +aI2976 +aI3613 +aI2318 +aI1722 +aI264 +aI3337 +aI3844 +aI5738 +aI3006 +aI3385 +aI2944 +aI135 +aI6007 +aI3087 +aI918 +aI5018 +aI4216 +aI5958 +aI2461 +aI1562 +aI4374 +aI628 +aI2407 +aI262 +aI6084 +aI5139 +aI3248 +aI859 +aI2084 +aI596 +aI3470 +aI4247 +aI6145 +aI5736 +aI5964 +aI976 +aI4963 +aI1633 +aI5558 +aI1554 +aI5812 +aI271 +aI1552 +aI5663 +aI6083 +aI3000 +aI1460 +aI645 +aI878 +aI3438 +aI765 +aI4699 +aI5929 +aI3228 +aI1664 +aI4672 +aI4391 +aI3122 +aI5169 +aI3929 +aI1248 +aI2721 +aI1410 +aI3499 +aI4330 +aI3735 +aI130 +aI5223 +aI4214 +aI5884 +aI6005 +aI1689 +aI211 +aI2933 +aI2380 +aI6170 +aI4025 +aI5285 +aI4614 +aI2813 +aI4993 +aI6034 +aI4163 +aI1039 +aI3417 +aI4288 +aI1477 +aI1389 +aI4198 +aI2034 +aI704 +aI1235 +aI2119 +aI1788 +aI4118 +aI4812 +aI5583 +aI4559 +aI3172 +aI6113 +aI543 +aI1860 +aI3261 +aI5636 +aI782 +aI1818 +aI6120 +aI4537 +aI944 +aI5063 +aI1555 +aI5633 +aI5144 +aI3652 +aI2070 +aI2221 +aI3142 +aI2340 +aI2020 +aI2128 +aI4185 +aI185 +aI5944 +aI2357 +aI4811 +aI2006 +aI5967 +aI456 +aI1260 +aI3630 +aI940 +aI740 +aI1615 +aI3130 +aI1702 +aI590 +aI2568 +aI3795 +aI6099 +aI5898 +aI4223 +aI4376 +aI5725 +aI1342 +aI4258 +aI5933 +aI3588 +aI2719 +aI3784 +aI2711 +aI5179 +aI5306 +aI2909 +aI4228 +aI3900 +aI3846 +aI627 +aI771 +aI357 +aI3981 +aI980 +aI3159 +aI1814 +aI635 +aI5191 +aI5882 +aI713 +aI2193 +aI4651 +aI6107 +aI3771 +aI5384 +aI1873 +aI153 +aI4257 +aI4473 +aI3842 +aI118 +aI960 +aI4260 +aI327 +aI3593 +aI564 +aI774 +aI3890 +aI1090 +aI4576 +aI2793 +aI1560 +aI1423 +aI3728 +aI485 +aI3643 +aI3458 +aI5647 +aI32 +aI226 +aI2435 +aI562 +aI183 +aI1653 +aI6168 +aI889 +aI2029 +aI3963 +aI1127 +aI760 +aI3206 +aI4653 +aI2491 +aI4988 +aI1041 +aI506 +aI1865 +aI1250 +aI281 +aI6147 +aI6155 +aI5431 +aI2510 +aI1948 +aI4554 +aI3832 +aI1278 +aI6132 +aI3552 +aI3760 +aI3835 +aI3621 +aI613 +aI1217 +aI1019 +aI3365 +aI6062 +aI2998 +aI5022 +aI1301 +aI6154 +aI5979 +aI292 +aI2358 +aI1402 +aI286 +aI1381 +aI1538 +asS'test_ind' +p12371 +(lp12372 +I1291 +aI5856 +aI987 +aI1912 +aI5678 +aI4122 +aI5466 +aI4302 +aI2085 +aI5052 +aI2150 +aI3749 +aI373 +aI748 +aI3103 +aI2957 +aI4110 +aI6067 +aI1567 +aI1872 +aI5494 +aI4439 +aI5669 +aI5731 +aI5374 +aI195 +aI122 +aI1837 +aI1900 +aI6095 +aI1059 +aI5626 +aI1645 +aI5172 +aI1636 +aI5269 +aI3681 +aI1781 +aI5735 +aI61 +aI3699 +aI2642 +aI4832 +aI5450 +aI1287 +aI1759 +aI619 +aI1361 +aI1219 +aI242 +aI1432 +aI5590 +aI4556 +aI5187 +aI5556 +aI5665 +aI4961 +aI418 +aI4491 +aI66 +aI5750 +aI4019 +aI4531 +aI3071 +aI4407 +aI3849 +aI954 +aI5155 +aI4116 +aI1098 +aI3032 +aI2566 +aI1425 +aI4994 +aI2227 +aI499 +aI4887 +aI4245 +aI4926 +aI3138 +aI2316 +aI3579 +aI2727 +aI5659 +aI2266 +aI2769 +aI1878 +aI5112 +aI4621 +aI305 +aI2456 +aI1774 +aI1448 +aI1465 +aI941 +aI4757 +aI1489 +aI3487 +aI4398 +aI3215 +aI4261 +aI1521 +aI3472 +aI2838 +aI3300 +aI784 +aI2579 +aI4845 +aI2323 +aI2981 +aI2836 +aI810 +aI890 +aI2455 +aI3565 +aI5722 +aI715 +aI6079 +aI1008 +aI1619 +aI3182 +aI1799 +aI1179 +aI3454 +aI1713 +aI4024 +aI5676 +aI552 +aI1340 +aI6027 +aI5404 +aI4979 +aI3920 +aI6123 +aI3336 +aI2825 +aI2215 +aI5454 +aI2274 +aI3288 +aI2611 +aI5142 +aI688 +aI2106 +aI5251 +aI1056 +aI885 +aI184 +aI4662 +aI379 +aI592 +aI666 +aI4880 +aI3270 +aI2982 +aI3176 +aI4577 +aI359 +aI5700 +aI3007 +aI821 +aI214 +aI5808 +aI5316 +aI3841 +aI5925 +aI1681 +aI683 +aI5777 +aI344 +aI2064 +aI3310 +aI5359 +aI2189 +aI4452 +aI1756 +aI3017 +aI4070 +aI4081 +aI210 +aI1354 +aI478 +aI2800 +aI3886 +aI5350 +aI5249 +aI3091 +aI5814 +aI4593 +aI134 +aI5355 +aI2234 +aI3663 +aI6117 +aI3628 +aI3647 +aI3649 +aI5118 +aI1730 +aI2625 +aI798 +aI1605 +aI1576 +aI2317 +aI3636 +aI2605 +aI220 +aI4292 +aI557 +aI4217 +aI6069 +aI2578 +aI5599 +aI550 +aI1987 +aI546 +aI5677 +aI5889 +aI5286 +aI2613 +aI4203 +aI3088 +aI2770 +aI1358 +aI653 +aI2458 +aI4847 +aI778 +aI1881 +aI2662 +aI2073 +aI2610 +aI4403 +aI4319 +aI4976 +aI4589 +aI4872 +aI2507 +aI397 +aI1607 +aI4042 +aI4263 +aI77 +aI5874 +aI190 +aI2108 +aI2391 +aI2983 +aI394 +aI5782 +aI1659 +aI2765 +aI4466 +aI2157 +aI470 +aI352 +aI4069 +aI289 +aI194 +aI1973 +aI1071 +aI724 +aI4870 +aI1088 +aI5713 +aI3608 +aI3838 +aI1908 +aI4050 +aI4229 +aI5396 +aI1764 +aI440 +aI4816 +aI4782 +aI1882 +aI2228 +aI1049 +aI6179 +aI1777 +aI1999 +aI5847 +aI1934 +aI231 +aI1158 +aI644 +aI910 +aI5254 +aI2468 +aI4586 +aI4490 +aI6124 +aI1957 +aI4432 +aI5262 +aI1490 +aI5429 +aI621 +aI96 +aI2881 +aI5869 +aI6128 +aI1649 +aI5008 +aI1476 +aI2684 +aI3780 +aI5482 +aI419 +aI2946 +aI3883 +aI1731 +aI517 +aI1445 +aI366 +aI4472 +aI3199 +aI2522 +aI2239 +aI5880 +aI1413 +aI4068 +aI4682 +aI1601 +aI3974 +aI1126 +aI4599 +aI909 +aI4249 +aI2165 +aI822 +aI3540 +aI1715 +aI115 +aI993 +aI6036 +aI5182 +aI4063 +aI3560 +aI1727 +aI3969 +aI2617 +aI1642 +aI367 +aI3384 +aI1893 +aI3022 +aI1163 +aI5876 +aI2774 +aI3992 +aI946 +aI5201 +aI5341 +aI5632 +aI27 +aI1347 +aI793 +aI6038 +aI3671 +aI6134 +aI1683 +aI486 +aI3840 +aI69 +aI1208 +aI2462 +aI3665 +aI5778 +aI4921 +aI2513 +aI853 +aI2547 +aI5260 +aI5860 +aI4175 +aI1744 +aI961 +aI965 +aI2888 +aI3543 +aI488 +aI3631 +aI4524 +aI3043 +aI4802 +aI1324 +aI4883 +aI1690 +aI2152 +aI5040 +aI3350 +aI3178 +aI3415 +aI4776 +aI53 +aI662 +aI1308 +aI2886 +aI250 +aI2349 +aI450 +aI4884 +aI5520 +aI3754 +aI2608 +aI5885 +aI2643 +aI1309 +aI2683 +aI5567 +aI3382 +aI3806 +aI283 +aI3067 +aI1770 +aI825 +aI498 +aI4059 +aI1753 +aI1484 +aI588 +aI1766 +aI2542 +aI4938 +aI818 +aI4482 +aI751 +aI5211 +aI5761 +aI4975 +aI2879 +aI667 +aI4965 +aI5152 +aI5470 +aI1951 +aI1836 +aI4393 +aI4291 +aI1988 +aI2071 +aI5005 +aI5104 +aI1660 +aI3750 +aI4955 +aI5390 +aI1128 +aI4173 +aI2653 +aI4856 +aI2795 +aI5622 +aI4968 +aI1674 +aI4494 +aI4925 +aI5042 +aI1592 +aI4931 +aI2062 +aI5317 +aI3100 +aI1462 +aI4395 +aI2864 +aI3622 +aI5771 +aI2716 +aI222 +aI5423 +aI5037 +aI3425 +aI4477 +aI1584 +aI5954 +aI2393 +aI5855 +aI3809 +aI1747 +aI3099 +aI2015 +aI3972 +aI2142 +aI3956 +aI6008 +aI4167 +aI5904 +aI3914 +aI2835 +aI4409 +aI5111 +aI4077 +aI5631 +aI964 +aI64 +aI1591 +aI2636 +aI1076 +aI1114 +aI3717 +aI1919 +aI2289 +aI705 +aI2136 +aI5489 +aI247 +aI3430 +aI5508 +aI2739 +aI3723 +aI4890 +aI4405 +aI6082 +aI3688 +aI1861 +aI3605 +aI5867 +aI3153 +aI678 +aI5456 +aI1568 +aI745 +aI14 +aI5956 +aI5082 +aI348 +aI3213 +aI1835 +aI1595 +aI4909 +aI465 +aI4179 +aI5790 +aI4908 +aI3232 +aI3435 +aI632 +aI4055 +aI2254 +aI585 +aI2839 +aI2352 +aI4860 +aI3752 +aI4514 +aI5304 +aI5252 +aI5698 +aI556 +aI5330 +aI1898 +aI496 +aI1191 +aI169 +aI529 +aI4823 +aI4270 +aI5170 +aI3324 +aI617 +aI651 +aI5365 +aI2492 +aI5465 +aI6164 +aI5376 +aI5250 +aI3517 +aI971 +aI5405 +aI5147 +aI1523 +aI227 +aI248 +aI2285 +aI3860 +aI5305 +aI2512 +aI3389 +aI4574 +aI3326 +aI5066 +aI155 +aI1393 +aI4922 +aI1454 +aI1357 +aI4349 +aI151 +aI3301 +aI5588 +aI1720 +aI535 +aI5149 +aI2336 +aI3703 +aI468 +aI4986 +aI3020 +aI5449 +aI819 +aI3801 +aI2307 +aI4013 +aI5896 +aI2713 +aI5576 +aI1625 +aI692 +aI1914 +aI5544 +aI3443 +aI1030 +aI2054 +aI2472 +aI1261 +aI3544 +aI45 +aI531 +aI3328 +aI3325 +aI4112 +aI3977 +aI4978 +aI4685 +aI5427 +aI404 +aI391 +aI1122 +aI223 +aI2066 +aI4903 +aI3243 +aI369 +aI345 +aI2300 +aI4696 +aI2964 +aI925 +aI3654 +aI5113 +aI4071 +aI6130 +aI4414 +aI3531 +aI841 +aI4078 +aI3694 +aI2682 +aI4105 +aI2689 +aI2715 +aI1556 +aI3767 +aI4325 +aI3265 +aI1211 +aI3909 +aI5827 +aI23 +aI1811 +aI1880 +aI2817 +aI4445 +aI4344 +aI6018 +aI2010 +aI5692 +aI2841 +aI5424 +aI2905 +aI1830 +aI2994 +aI3666 +aI1663 +aI3473 +aI3680 +aI4471 +aI2930 +aI4822 +aI2665 +aI315 +aI5989 +aI1524 +aI1956 +aI3496 +aI4483 +aI2037 +aI3815 +aI5320 +aI4919 +aI2945 +aI5386 +aI4635 +aI350 +aI5377 +aI5189 +aI3514 +aI4964 +aI5980 +aI3207 +aI3644 +aI4142 +aI5488 +aI5779 +aI276 +aI647 +aI1668 +aI2235 +aI4997 +aI3359 +aI3421 +aI622 +aI2667 +aI3063 +aI5171 +aI5216 +aI2237 +aI3707 +aI5569 +aI2090 +aI4744 +aI3501 +aI4646 +aI2856 +aI1333 +aI1267 +aI1305 +aI4237 +aI3950 +aI5492 +aI6066 +aI4213 +aI3066 +aI1911 +aI103 +aI1282 +aI2550 +aI5592 +aI3954 +aI5378 +aI3318 +aI959 +aI2417 +aI3971 +aI750 +aI3278 +aI4981 +aI2123 +aI2174 +aI1954 +aI1391 +aI5289 +aI2656 +aI3687 +aI2013 +aI1478 +aI4534 +aI4032 +aI4581 +aI3722 +aI5148 +aI3011 +aI3008 +aI3190 +aI4295 +aI3550 +aI711 +aI5001 +aI539 +aI4053 +aI4244 +aI4709 +aI5563 +aI3893 +aI2966 +aI786 +aI1682 +aI2143 +aI4974 +aI5400 +aI300 +aI3157 +aI4532 +aI5476 +aI2650 +aI2787 +aI2213 +aI4195 +aI1436 +aI3945 +aI3568 +aI4565 +aI3191 +aI4386 +aI5468 +aI5748 +aI5051 +aI5279 +aI5192 +aI1883 +aI2801 +aI4937 +aI4046 +aI3316 +aI5703 +aI2655 +aI3118 +aI2191 +aI2199 +aI159 +aI2745 +aI752 +aI4809 +aI5043 +aI2374 +aI83 +aI4171 +aI299 +aI3578 +aI4106 +aI4753 +aI6149 +aI2918 +aI3633 +aI1981 +aI1793 +aI3491 +aI4649 +aI4907 +aI1182 +aI2262 +aI567 +aI1335 +aI1643 +aI5892 +aI4321 +aI2471 +aI3036 +aI104 +aI4728 +aI128 +aI5990 +aI2096 +aI2977 +aI6159 +aI3603 +aI6037 +aI5755 +aI6171 +aI1758 +aI4208 +aI3220 +aI3959 +aI5528 +aI144 +aI4232 +aI12 +aI4530 +aI4712 +aI3101 +aI4676 +aI2674 +aI892 +aI697 +aI332 +aI3321 +aI3582 +aI5184 +aI3792 +aI5367 +aI3229 +aI3988 +aI1257 +aI5287 +aI387 +aI4902 +aI1959 +aI3388 +aI3843 +aI2314 +aI3236 +aI4493 +aI882 +aI6086 +aI3904 +aI4027 +aI3798 +aI4990 +aI2163 +aI5313 +aI5159 +aI4164 +aI3277 +aI3050 +aI2057 +aI1314 +aI2628 +aI3711 +aI257 +aI558 +aI5853 +aI773 +aI1084 +aI5028 +aI4008 +aI2097 +aI5162 +aI5013 +aI4739 +aI5928 +aI2103 +aI6073 +aI1009 +aI2744 +aI1952 +aI3214 +aI2969 +aI2109 +aI1438 +aI3267 +aI5425 +aI1604 +aI1100 +aI4250 +aI599 +aI4502 +aI2433 +aI71 +aI1691 +aI5719 +aI2889 +aI4688 +aI4743 +aI3870 +aI5981 +aI1967 +aI2281 +aI5295 +aI254 +aI4162 +aI1657 +aI5077 +aI791 +aI1293 +aI4742 +aI414 +aI1034 +aI2180 +aI4417 +aI3599 +aI719 +aI3682 +aI2211 +aI1192 +aI4638 +aI2138 +aI2927 +aI5238 +aI820 +aI3573 +aI5786 +aI3700 +aI3768 +aI2635 +aI1748 +aI4973 +aI4154 +aI4510 +aI2089 +aI422 +aI5996 +aI777 +aI3490 +aI4447 +aI2348 +aI1947 +aI3823 +aI549 +aI1544 +aI6176 +aI501 +aI4595 +aI2527 +aI2176 +aI4801 +aI1 +aI5083 +aI5036 +aI5637 +aI5611 +aI4543 +aI1922 +aI518 +aI2306 +aI5403 +aI2663 +aI2624 +aI4953 +aI2595 +aI2173 +aI3785 +aI4618 +aI1383 +aI5617 +aI5994 +aI4127 +aI4552 +aI4946 +aI116 +aI4588 +aI5006 +aI2941 +aI5871 +aI52 +aI4099 +aI5369 +aI6139 +aI3877 +aI6142 +aI1094 +aI4798 +aI834 +aI111 +aI2759 +aI5720 +aI5024 +aI4343 +aI229 +aI5977 +aI5280 +aI3449 +aI5026 +aI5270 +aI1230 +aI4043 +aI3273 +aI3013 +aI4778 +aI1499 +aI4463 +aI1110 +aI2575 +aI4904 +aI193 +aI2141 +aI4797 +aI5695 +aI1081 +aI4092 +aI5368 +aI3655 +aI2047 +aI948 +aI867 +aI2866 +aI2942 +aI2777 +aI328 +aI839 +aI3953 +aI5205 +aI5217 +aI2240 +aI2115 +aI2346 +aI5997 +aI561 +aI5899 +aI1399 +aI5195 +aI3306 +aI5798 +aI5382 +aI1139 +aI2465 +aI4212 +aI2024 +aI2135 +aI5422 +aI1242 +aI4124 +aI4389 +aI1927 +aI4916 +aI3985 +aI5331 +aI2313 +aI1885 +aI1676 +aI4338 +aI160 +aI1064 +aI2616 +aI2985 +aI5870 +aI2788 +aI1187 +aI5259 +aI935 +aI4678 +aI1667 +aI568 +aI5204 +aI2975 +aI903 +aI1035 +aI5826 +aI3743 +aI2110 +aI2177 +aI780 +aI6115 +aI4503 +aI4659 +aI2208 +aI6023 +aI6137 +aI2898 +aI4385 +aI331 +aI1226 +aI591 +aI3589 +aI4629 +aI755 +aI2233 +aI1228 +aI4230 +aI4236 +aI1899 +aI3251 +aI1858 +aI5562 +aI4770 +aI649 +aI4103 +aI1178 +aI3327 +aI3737 +aI179 +aI2629 +aI209 +aI2418 +aI2884 +aI2834 +aI364 +aI1577 +aI3462 +aI5503 +aI5499 +aI1362 +aI932 +aI368 +aI4136 +aI3966 +aI3761 +aI2341 +aI547 +aI338 +aI5283 +aI3049 +aI1565 +aI403 +aI1147 +aI1181 +aI1537 +aI5081 +aI9 +aI5641 +aI4104 +aI1339 +aI2438 +aI1316 +aI4609 +aI1218 +aI2899 +aI3512 +aI4819 +aI4775 +aI1288 +aI4882 +aI25 +aI4298 +aI6091 +aI425 +aI3296 +aI545 +aI2469 +aI2212 +aI1862 +aI4460 +aI1887 +aI5030 +aI3303 +aI2677 +aI2552 +aI3371 +aI5061 +aI5495 +aI4517 +aI5226 +aI252 +aI3978 +aI1985 +aI2158 +aI355 +aI3930 +aI1658 +aI5015 +aI2276 +aI2798 +aI6105 +aI5002 +aI2634 +aI4724 +aI4920 +aI5751 +aI4838 +aI3850 +aI3542 +aI1283 +aI4934 +aI5893 +aI969 +aI602 +aI3408 +aI650 +aI6121 +aI2308 +aI5589 +aI4130 +aI2500 +aI5655 +aI4035 +asS'train_ind' +p12373 +(lp12374 +I5323 +aI124 +aI6003 +aI5421 +aI2430 +aI417 +aI830 +aI4354 +aI3047 +aI1439 +aI448 +aI3802 +aI2074 +aI657 +aI1621 +aI6114 +aI5261 +aI4501 +aI1869 +aI2048 +aI4123 +aI307 +aI3237 +aI60 +aI1168 +aI1247 +aI504 +aI2012 +aI2344 +aI924 +aI1542 +aI2679 +aI6118 +aI3683 +aI434 +aI4848 +aI4542 +aI5486 +aI3865 +aI757 +aI5910 +aI6061 +aI3033 +aI5661 +aI3409 +aI734 +aI2693 +aI4623 +aI5519 +aI3689 +aI2447 +aI4283 +aI5523 +aI255 +aI1010 +aI5095 +aI2420 +aI4474 +aI1280 +aI1447 +aI4573 +aI5825 +aI2675 +aI1581 +aI5743 +aI800 +aI6015 +aI3404 +aI196 +aI4368 +aI861 +aI1746 +aI1444 +aI4641 +aI2442 +aI4084 +aI126 +aI1896 +aI3340 +aI1545 +aI936 +aI5267 +aI1575 +aI4435 +aI5539 +aI6148 +aI668 +aI5480 +aI555 +aI1289 +aI4284 +aI4074 +aI3398 +aI2962 +aI24 +aI302 +aI1129 +aI5339 +aI166 +aI2681 +aI4487 +aI6029 +aI5832 +aI173 +aI4894 +aI1198 +aI3463 +aI3090 +aI4566 +aI3873 +aI5235 +aI4982 +aI2530 +aI2293 +aI5481 +aI3955 +aI3585 +aI679 +aI963 +aI1154 +aI5093 +aI2948 +aI5224 +aI1285 +aI2030 +aI4311 +aI5197 +aI3407 +aI4768 +aI2604 +aI1974 +aI2887 +aI1972 +aI2403 +aI1838 +aI5844 +aI3322 +aI2078 +aI5509 +aI5580 +aI3653 +aI1418 +aI4605 +aI1688 +aI4129 +aI3219 +aI5605 +aI5491 +aI6057 +aI3742 +aI5877 +aI2609 +aI665 +aI2528 +aI2146 +aI5566 +aI5137 +aI5100 +aI5438 +aI537 +aI611 +aI426 +aI2445 +aI687 +aI2161 +aI2967 +aI3995 +aI2631 +aI3949 +aI3129 +aI1558 +aI4939 +aI901 +aI467 +aI347 +aI642 +aI3029 +aI5091 +aI6045 +aI5690 +aI1078 +aI4484 +aI291 +aI1108 +aI5512 +aI233 +aI5970 +aI5585 +aI2867 +aI3513 +aI2646 +aI1644 +aI3051 +aI4267 +aI1879 +aI5776 +aI3661 +aI6077 +aI241 +aI4631 +aI3970 +aI2736 +aI3892 +aI3060 +aI762 +aI1112 +aI505 +aI3330 +aI1953 +aI576 +aI3739 +aI4725 +aI1906 +aI594 +aI2063 +aI6055 +aI4897 +aI1254 +aI6065 +aI6043 +aI3492 +aI6017 +aI3427 +aI4141 +aI3606 +aI726 +aI3618 +aI776 +aI4166 +aI5551 +aI5629 +aI6161 +aI1638 +aI4305 +aI2127 +aI5141 +aI176 +aI3444 +aI206 +aI2326 +aI3484 +aI1637 +aI4379 +aI3124 +aI4377 +aI2596 +aI2826 +aI342 +aI2088 +aI1132 +aI4113 +aI1067 +aI530 +aI2395 +aI2877 +aI4148 +aI2892 +aI5234 +aI6074 +aI4868 +aI5163 +aI1145 +aI5394 +aI1209 +aI1902 +aI907 +aI5709 +aI5213 +aI3201 +aI5848 +aI676 +aI2470 +aI2619 +aI2337 +aI2785 +aI1294 +aI2355 +aI2164 +aI3947 +aI5811 +aI933 +aI2446 +aI4268 +aI2873 +aI5178 +aI2284 +aI589 +aI5493 +aI1924 +aI2253 +aI1494 +aI2379 +aI3121 +aI763 +aI1390 +aI1543 +aI2428 +aI1518 +aI1229 +aI4468 +aI3524 +aI3028 +aI374 +aI3483 +aI2645 +aI1512 +aI5161 +aI3611 +aI3396 +aI515 +aI939 +aI1795 +aI4610 +aI5284 +aI1709 +aI4143 +aI33 +aI1253 +aI452 +aI1216 +aI1437 +aI4299 +aI4170 +aI1623 +aI1066 +aI5821 +aI5451 +aI3563 +aI2859 +aI1371 +aI4810 +aI4224 +aI5883 +aI2369 +aI1017 +aI2553 +aI3751 +aI5545 +aI2170 +aI3146 +aI2639 +aI5546 +aI5764 +aI2508 +aI3871 +aI4584 +aI968 +aI3002 +aI2333 +aI4037 +aI4020 +aI2901 +aI4575 +aI4980 +aI1042 +aI3131 +aI2014 +aI5985 +aI3120 +aI1134 +aI1384 +aI2778 +aI4307 +aI2454 +aI4196 +aI5232 +aI1992 +aI3485 +aI2114 +aI2648 +aI1165 +aI3935 +aI5119 +aI5094 +aI4187 +aI4771 +aI3247 +aI6158 +aI5439 +aI4865 +aI5475 +aI5445 +aI4571 +aI2929 +aI2415 +aI1866 +aI3818 +aI5064 +aI1933 +aI4915 +aI3111 +aI2497 +aI4549 +aI1698 +aI2094 +aI4357 +aI1910 +aI4453 +aI4082 +aI3126 +aI865 +aI1473 +aI4065 +aI2537 +aI1398 +aI1136 +aI5593 +aI4002 +aI396 +aI6072 +aI1782 +aI22 +aI2242 +aI4691 +aI1185 +aI2460 +aI2920 +aI1121 +aI1963 +aI4351 +aI6000 +aI5838 +aI1801 +aI5035 +aI3464 +aI3915 +aI2955 +aI4152 +aI2987 +aI2722 +aI5618 +aI2741 +aI6144 +aI4238 +aI4202 +aI1559 +aI1140 +aI1978 +aI4031 +aI4835 +aI2439 +aI4400 +aI237 +aI5685 +aI3674 +aI1833 +aI4624 +aI4962 +aI5391 +aI5652 +aI2431 +aI1060 +aI4760 +aI2853 +aI5688 +aI143 +aI4180 +aI125 +aI1708 +aI4149 +aI2283 +aI3819 +aI377 +aI235 +aI2259 +aI3465 +aI3348 +aI5850 +aI4197 +aI2807 +aI536 +aI5595 +aI462 +aI3851 +aI3982 +aI5561 +aI4388 +aI2005 +aI2854 +aI4888 +aI5057 +aI3807 +aI4656 +aI2908 +aI2434 +aI4265 +aI5110 +aI4470 +aI4850 +aI3414 +aI2075 +aI2072 +aI3042 +aI2893 +aI1989 +aI353 +aI4079 +aI3125 +aI4836 +aI4111 +aI1628 +aI37 +aI3829 +aI2060 +aI2953 +aI5975 +aI5208 +aI1379 +aI553 +aI3859 +aI1215 +aI2303 +aI1415 +aI3625 +aI4362 +aI5657 +aI282 +aI2092 +aI5642 +aI4813 +aI5952 +aI4353 +aI2858 +aI3068 +aI1804 +aI681 +aI197 +aI3218 +aI5364 +aI2717 +aI4627 +aI3698 +aI1816 +aI1772 +aI710 +aI6112 +aI4644 +aI3997 +aI5452 +aI1516 +aI5662 +aI2731 +aI2367 +aI441 +aI4560 +aI3406 +aI4121 +aI4854 +aI362 +aI5667 +aI1295 +aI3084 +aI1137 +aI1330 +aI3597 +aI4923 +aI5245 +aI905 +aI3897 +aI5865 +aI5820 +aI4741 +aI4765 +aI978 +aI5744 +aI3497 +aI7 +aI2735 +aI6044 +aI1589 +aI1578 +aI129 +aI1626 +aI1069 +aI3943 +aI609 +aI3486 +aI2101 +aI5927 +aI6156 +aI934 +aI4286 +aI718 +aI3244 +aI4342 +aI2952 +aI6087 +aI2474 +aI2329 +aI5188 +aI2405 +aI2004 +aI1375 +aI5691 +aI1273 +aI4240 +aI445 +aI461 +aI2338 +aI4785 +aI1624 +aI354 +aI5723 +aI684 +aI3855 +aI5768 +aI1867 +aI1847 +aI803 +aI5817 +aI950 +aI3577 +aI2429 +aI3311 +aI4251 +aI3940 +aI3290 +aI1086 +aI4626 +aI5167 +aI2033 +aI569 +aI4450 +aI1907 +aI4523 +aI1739 +aI2310 +aI5129 +aI799 +aI787 +aI1600 +aI5785 +aI6013 +aI986 +aI3386 +aI4089 +aI4226 +aI522 +aI2973 +aI4090 +aI2734 +aI5501 +aI2021 +aI5582 +aI1002 +aI2204 +aI2207 +aI4871 +aI90 +aI1241 +aI858 +aI3629 +aI732 +aI1755 +aI2247 +aI5373 +aI5900 +aI5461 +aI3393 +aI5765 +aI5704 +aI4418 +aI2534 +aI772 +aI943 +aI2685 +aI3967 +aI1463 +aI4561 +aI1131 +aI1262 +aI1099 +aI5176 +aI586 +aI2302 +aI375 +aI3369 +aI1994 +aI1929 +aI4732 +aI3175 +aI951 +aI310 +aI4301 +aI3195 +aI4951 +aI4985 +aI3814 +aI4960 +aI4790 +aI4277 +aI1212 +aI898 +aI5529 +aI659 +aI2794 +aI19 +aI1984 +aI5484 +aI1442 +aI1673 +aI5945 +aI5560 +aI2373 +aI1828 +aI699 +aI4375 +aI3418 +aI4707 +aI330 +aI4572 +aI1864 +aI1734 +aI2521 +aI2878 +aI1650 +aI2979 +aI4168 +aI2837 +aI4718 +aI5689 +aI3128 +aI862 +aI2763 +aI6106 +aI3609 +aI3383 +aI5791 +aI3287 +aI2490 +aI2406 +aI4146 +aI4041 +aI1458 +aI4012 +aI2027 +aI4600 +aI4000 +aI1750 +aI849 +aI809 +aI314 +aI3194 +aI3039 +aI2771 +aI3702 +aI5121 +aI565 +aI2377 +aI4587 +aI616 +aI3942 +aI4967 +aI3936 +aI1486 +aI1935 +aI6046 +aI1014 +aI1000 +aI2206 +aI6010 +aI872 +aI3360 +aI5646 +aI4433 +aI2875 +aI1204 +aI5120 +aI2265 +aI2797 +aI3811 +aI2488 +aI1831 +aI1149 +aI55 +aI94 +aI4927 +aI508 +aI5246 +aI5177 +aI2728 +aI2091 +aI835 +aI4956 +aI44 +aI1133 +aI4066 +aI5718 +aI4189 +aI3004 +aI5759 +aI5413 +aI3976 +aI597 +aI399 +aI142 +aI3139 +aI1958 +aI824 +aI2937 +aI285 +aI2416 +aI2250 +aI2630 +aI6131 +aI4767 +aI4093 +aI3477 +aI2131 +aI3498 +aI3307 +aI2531 +aI3584 +aI2863 +aI637 +aI703 +aI5183 +aI4346 +aI2332 +aI2432 +aI5573 +aI2572 +aI4091 +aI1901 +aI4755 +aI5209 +aI970 +aI3724 +aI598 +aI3786 +aI4557 +aI438 +aI3526 +aI4800 +aI4147 +aI1400 +aI5912 +aI1665 +aI2079 +aI972 +aI171 +aI3238 +aI989 +aI2263 +aI5833 +aI792 +aI4373 +aI1889 +aI4424 +aI1451 +aI1767 +aI1930 +aI4613 +aI638 +aI1440 +aI2688 +aI1588 +aI2582 +aI2833 +aI2067 +aI3720 +aI5460 +aI1249 +aI451 +aI6129 +aI5635 +aI6 +aI5338 +aI2555 +aI361 +aI2041 +aI1222 +aI4859 +aI2767 +aI4336 +aI3460 +aI2386 +aI4634 +aI2270 +aI400 +aI1808 +aI922 +aI3294 +aI5088 +aI1678 +aI2524 +aI2082 +aI3151 +aI1593 +aI1976 +aI3374 +aI146 +aI3162 +aI4428 +aI2226 +aI1564 +aI1842 +aI845 +aI6052 +aI175 +aI1095 +aI4156 +aI2921 +aI5078 +aI5048 +aI5649 +aI5244 +aI466 +aI1582 +aI3391 +aI3168 +aI850 +aI5783 +aI1292 +aI5564 +aI3693 +aI3295 +aI3279 +aI4225 +aI6032 +aI607 +aI709 +aI1692 +aI2402 +aI101 +aI31 +aI3828 +aI1851 +aI779 +aI1349 +aI48 +aI34 +aI520 +aI3285 +aI204 +aI3299 +aI4419 +aI4172 +aI811 +aI1190 +aI358 +aI1916 +aI1769 +aI3381 +aI2991 +aI82 +aI5034 +aI927 +aI1079 +aI5012 +aI437 +aI1529 +aI2350 +aI1635 +aI4174 +aI5693 +aI3598 +aI2288 +aI5596 +aI4833 +aI1116 +aI3932 +aI577 +aI5753 +aI5789 +aI5724 +aI712 +aI5222 +aI4448 +aI2387 +aI4881 +aI5513 +aI1012 +aI4720 +aI2740 +aI1028 +aI308 +aI682 +aI1221 +aI1627 +aI6002 +aI4597 +aI3627 +aI3439 +aI5417 +aI3171 +aI3305 +aI1382 +aI1166 +aI1549 +aI1998 +aI3003 +aI1997 +aI5584 +aI1936 +aI4252 +aI1840 +aI2992 +aI610 +aI5432 +aI1706 +aI5623 +aI1672 +aI4347 +aI5708 +aI2843 +aI1104 +aI2563 +aI3895 +aI5173 +aI4442 +aI2694 +aI2692 +aI479 +aI3555 +aI3222 +aI3276 +aI685 +aI494 +aI381 +aI3073 +aI2183 +aI5672 +aI4253 +aI5906 +aI2113 +aI5872 +aI738 +aI167 +aI4834 +aI4734 +aI1580 +aI3762 +aI2327 +aI3639 +aI78 +aI5697 +aI4538 +aI4200 +aI2017 +aI4062 +aI1854 +aI5440 +aI136 +aI4207 +aI4758 +aI728 +aI2861 +aI3816 +aI5526 +aI2000 +aI4622 +aI3903 +aI3790 +aI2664 +aI5430 +aI3226 +aI6012 +aI5671 +aI471 +aI1173 +aI1443 +aI3137 +aI4596 +aI5705 +aI2257 +aI3432 +aI3342 +aI1701 +aI2742 +aI1995 +aI2408 +aI2437 +aI4444 +aI148 +aI5375 +aI813 +aI3085 +aI3984 +aI3830 +aI92 +aI2896 +aI317 +aI1977 +aI3466 +aI1343 +aI127 +aI3511 +aI1118 +aI3079 +aI5532 +aI3246 +aI5352 +aI408 +aI149 +aI1405 +aI3015 +aI5242 +aI570 +aI3280 +aI4316 +aI2746 +aI2120 +aI1776 +aI424 +aI1449 +aI2700 +aI3994 +aI1868 +aI3812 +aI1894 +aI91 +aI5534 +aI4730 +aI415 +aI3957 +aI3675 +aI5055 +aI2750 +aI5857 +aI112 +aI3461 +aI2129 +aI1944 +aI3574 +aI4991 +aI675 +aI30 +aI1370 +aI3070 +aI5575 +aI2518 +aI1717 +aI1498 +aI3525 +aI640 +aI3161 +aI3189 +aI3960 +aI3759 +aI956 +aI1061 +aI1461 +aI4462 +aI5327 +aI5841 +aI5464 +aI1596 +aI3863 +aI2147 +aI1504 +aI1859 +aI2190 +aI5570 +aI4529 +aI3092 +aI4210 +aI1318 +aI643 +aI490 +aI4580 +aI2294 +aI4430 +aI4254 +aI2243 +aI3824 +aI5444 +aI2267 +aI744 +aI1419 +aI1551 +aI2592 +aI6143 +aI268 +aI457 +aI1802 +aI3482 +aI4896 +aI3776 +aI1694 +aI3518 +aI181 +aI837 +aI1068 +aI3202 +aI527 +aI2280 +aI1368 +aI5215 +aI39 +aI5579 +aI847 +aI5615 +aI3590 +aI571 +aI6053 +aI6001 +aI1824 +aI2780 +aI3725 +aI3576 +aI4315 +aI1703 +aI1252 +aI1093 +aI4969 +aI5554 +aI4766 +aI805 +aI2554 +aI4504 +aI3402 +aI2525 +aI953 +aI1055 +aI5406 +aI188 +aI4047 +aI5762 +aI2965 +aI5941 +aI217 +aI3205 +aI5150 +aI3614 +aI2480 +aI5568 +aI509 +aI1025 +aI1409 +aI1892 +aI1825 +aI5866 +aI5050 +aI4844 +aI3041 +aI2691 +aI6060 +aI1231 +aI1299 +aI405 +aI2219 +aI6180 +aI1284 +aI2 +aI4158 +aI4423 +aI3926 +aI4892 +aI240 +aI5831 +aI2783 +aI5392 +aI2751 +aI4476 +aI2707 +aI2720 +aI828 +aI297 +aI2411 +aI3096 +aI1797 +aI5435 +aI4526 +aI3379 +aI4372 +aI2666 +aI398 +aI1918 +aI3025 +aI5477 +aI2706 +aI5225 +aI3428 +aI6098 +aI2690 +aI16 +aI706 +aI2951 +aI5901 +aI3456 +aI2426 +aI1714 +aI1170 +aI1534 +aI4567 +aI5004 +aI1195 +aI2238 +aI1474 +aI5273 +aI3253 +aI1522 +aI1245 +aI5916 +aI4579 +aI6050 +aI1680 +aI4064 +aI5915 +aI3876 +aI3413 +aI2023 +aI1369 +aI2660 +aI1693 +aI427 +aI407 +aI3083 +aI3673 +aI1950 +aI4275 +aI695 +aI5875 +aI1925 +aI3825 +aI2755 +aI481 +aI100 +aI4735 +aI4553 +aI3556 +aI5542 +aI4085 +aI5366 +aI836 +aI5038 +aI43 +aI4877 +aI4796 +aI1164 +aI3266 +aI5463 +aI3601 +aI2459 +aI4525 +aI928 +aI4181 +aI296 +aI47 +aI3554 +aI3208 +aI5428 +aI3775 +aI5127 +aI5998 +aI5836 +aI5541 +aI4606 +aI5168 +aI6093 +aI4278 +aI5891 +aI4007 +aI3233 +aI1210 +aI2580 +aI4680 +aI2851 +aI3395 +aI5393 +aI2517 +aI714 +aI5653 +aI1553 +aI5600 +aI967 +aI2181 +aI5019 +aI1874 +aI343 +aI1846 +aI1728 +aI2657 +aI5712 +aI4578 +aI5670 +aI2361 +aI1779 +aI5399 +aI2670 +aI4345 +aI3685 +aI431 +aI1932 +aI4612 +aI1130 +aI1535 +aI4422 +aI3530 +aI5859 +aI1648 +aI4206 +aI380 +aI663 +aI435 +aI670 +aI2584 +aI5025 +aI5796 +aI2658 +aI1761 +aI3297 +aI655 +aI5274 +aI484 +aI270 +aI421 +aI725 +aI4932 +aI3891 +aI1380 +aI2043 +aI2083 +aI2511 +aI3095 +aI5530 +aI4194 +aI4335 +aI3313 +aI2489 +aI3941 +aI2130 +aI1991 +aI2051 +aI2506 +aI3921 +aI3831 +aI5263 +aI3217 +aI2261 +aI4837 +aI895 +aI1236 +aI1429 +aI2831 +aI4317 +aI59 +aI152 +aI4551 +aI4 +aI6025 +aI1453 +aI2448 +aI5301 +aI5888 +aI3167 +aI3304 +aI6051 +aI3347 +aI6102 +aI5895 +aI2766 +aI65 +aI6078 +aI3155 +aI1938 +aI1156 +aI3026 +aI1304 +aI4661 +aI1603 +aI5717 +aI6011 +aI3868 +aI5348 +aI5256 +aI5565 +aI2903 +aI3746 +aI1058 +aI5347 +aI5241 +aI3403 +aI2926 +aI4218 +aI3180 +aI2697 +aI482 +aI4535 +aI5686 +aI2974 +aI4590 +aI979 +aI5292 +aI4794 +aI4701 +aI4786 +aI6104 +aI2912 +aI3713 +aI3968 +aI5240 +aI351 +aI5834 +aI2203 +aI3659 +aI4052 +aI4611 +aI5799 +aI952 +aI3898 +aI5067 +aI2028 +aI5640 +aI1723 +aI2375 +aI5557 +aI4036 +aI4119 +aI2819 +aI3645 +aI2762 +aI3010 +aI2466 +aI1724 +aI5324 +aI4396 +aI1733 +aI1006 +aI533 +aI1548 +aI5559 +aI573 +aI5919 +aI931 +aI3252 +aI2971 +aI180 +aI2059 +aI141 +aI3119 +aI2383 +aI3480 +aI1749 +aI1485 +aI2519 +aI3586 +aI3837 +aI4858 +aI5074 +aI2845 +aI3024 +aI5447 +aI4394 +aI3065 +aI17 +aI269 +aI1711 +aI5196 +aI1495 +aI1752 +aI3551 +aI879 +aI3821 +aI2404 +aI1687 +aI2516 +aI5730 +aI2382 +aI2484 +aI4028 +aI2334 +aI5938 +aI3779 +aI4233 +aI1328 +aI2804 +aI4176 +aI3788 +aI1586 +aI2301 +aI1200 +aI81 +aI4820 +aI1433 +aI5296 +aI884 +aI2906 +aI3753 +aI6136 +aI2335 +aI3160 +aI4948 +aI1115 +aI6110 +aI5902 +aI5125 +aI4550 +aI5014 +aI3572 +aI243 +aI4021 +aI3344 +aI4337 +aI856 +aI507 +aI4650 +aI5714 +aI2260 +aI2331 +aI3939 +aI6101 +aI5995 +aI852 +aI150 +aI1258 +aI1356 +aI4898 +aI1670 +aI2112 +aI2822 +aI829 +aI1378 +aI2680 +aI2830 +aI977 +aI182 +aI4639 +aI5325 +aI5109 +aI2104 +aI3664 +aI1527 +aI3317 +aI40 +aI1513 +aI2757 +aI6004 +aI5003 +aI540 +aI608 +aI2245 +aI1632 +aI3650 +aI4841 +aI3839 +aI618 +aI3917 +aI3291 +aI1142 +aI3437 +aI156 +aI1704 +aI4738 +aI477 +aI4266 +aI2567 +aI1669 +aI1897 +aI3034 +aI3494 +aI873 +aI4970 +aI4040 +aI3845 +aI4348 +aI3879 +aI3411 +aI4628 +aI4715 +aI2641 +aI4971 +aI2194 +aI2053 +aI3596 +aI265 +aI5978 +aI2829 +aI5976 +aI4165 +aI4710 +aI2444 +aI3364 +aI3847 +aI121 +aI2907 +aI3223 +aI917 +aI3980 +aI2172 +aI1256 +aI1422 +aI1199 +aI2246 +aI4120 +aI1903 +aI4693 +aI603 +aI6163 +aI5380 +aI4703 +aI2008 +aI2638 +aI2947 +aI2999 +aI4115 +aI6088 +aI323 +aI658 +aI1167 +aI2256 +aI5146 +aI4756 +aI2195 +aI1048 +aI110 +aI4815 +aI5193 +aI1162 +aI5318 +aI6140 +aI1464 +aI4808 +aI5609 +aI2846 +aI2232 +aI1787 +aI3853 +aI5715 +aI2724 +aI2923 +aI2559 +aI3924 +aI5510 +aI4863 +aI2370 +aI3397 +aI1773 +aI2743 +aI887 +aI41 +aI4795 +aI329 +aI2970 +aI187 +aI3221 +aI2932 +aI2855 +aI4949 +aI339 +aI2440 +aI1780 +aI1046 +aI3885 +aI6063 +aI1404 +aI3442 +aI5668 +aI5056 +aI1710 +aI656 +aI2076 +aI3623 +aI3595 +aI5085 +aI5490 +aI1940 +aI5948 +aI2230 +aI313 +aI1612 +aI2360 +aI6152 +aI6048 +aI4086 +aI3923 +aI1511 +aI3535 +aI3541 +aI5407 +aI3104 +aI3274 +aI238 +aI2414 +aI4540 +aI1570 +aI3774 +aI5123 +aI4546 +aI4412 +aI5549 +aI2968 +aI1091 +aI3946 +aI3086 +aI1138 +aI4660 +aI5402 +aI4777 +aI3319 +aI1004 +aI1366 +aI420 +aI1725 +aI1968 +aI260 +aI4940 +aI519 +aI871 +aI1325 +aI1785 +aI735 +aI3979 +aI3624 +aI5096 +aI489 +aI801 +aI3983 +aI428 +aI6122 +aI3875 +aI3431 +aI994 +aI4867 +aI5103 +aI4852 +aI521 +aI3040 +aI1646 +aI1949 +aI1697 +aI3352 +aI1742 +aI74 +aI2849 +aI1468 +aI1629 +aI6103 +aI232 +aI753 +aI4365 +aI4404 +aI5878 +aI926 +aI4215 +aI4475 +aI5806 +aI866 +aI2541 +aI2252 +aI4893 +aI3861 +aI1712 +aI4011 +aI460 +aI3341 +aI2035 +aI212 +aI5514 +aI660 +aI4264 +aI4303 +aI3259 +aI3044 +aI3150 +aI2640 +aI5371 +aI3224 +aI2339 +aI1032 +aI3651 +aI4191 +aI766 +aI4539 +aI631 +aI1610 +aI5075 +aI4293 +aI5518 +aI1942 +aI2588 +aI4972 +aI1926 +aI5506 +aI6172 +aI3854 +aI4878 +aI1057 +aI376 +aI2273 +aI919 +aI322 +aI1863 +aI2668 +aI4830 +aI4675 +aI6174 +aI4360 +aI4188 +aI1641 +aI1563 +aI423 +aI5264 +aI1237 +aI1661 +aI1102 +aI5278 +aI4989 +aI4684 +aI4101 +aI3495 +aI2325 +aI4381 +aI5372 +aI2410 +aI1070 +aI294 +aI3368 +aI4358 +aI4057 +aI5974 +aI915 +aI2160 +aI4857 +aI3059 +aI4469 +aI5601 +aI2388 +aI523 +aI2421 +aI3469 +aI1630 +aI1850 +aI6006 +aI5247 +aI3567 +aI3476 +aI5329 +aI2868 +aI284 +aI5214 +aI5802 +aI236 +aI3648 +aI3320 +aI1608 +aI2659 +aI4331 +aI5574 +aI3570 +aI293 +aI1966 +aI2557 +aI3770 +aI4752 +aI3998 +aI1647 +aI768 +aI2186 +aI4759 +aI4843 +aI2523 +aI1205 +aI2155 +aI2710 +aI4221 +aI1452 +aI6024 +aI694 +aI2400 +aI4356 +aI2443 +aI5293 +aI1738 +aI4296 +aI5271 +aI2050 +aI2345 +aI5683 +aI1092 +aI2577 +aI3258 +aI3519 +aI3734 +aI3667 +aI97 +aI2586 +aI3412 +aI770 +aI1251 +aI5972 +aI981 +aI2772 +aI4457 +aI758 +aI3127 +aI1272 +aI3260 +aI966 +aI6056 +aI4899 +aI5625 +aI1805 +aI5231 +aI3271 +aI4683 +aI5420 +aI5648 +aI340 +aI1022 +aI1540 +aI3533 +aI4875 +aI4869 +aI2371 +aI3787 +aI1434 +aI4930 +aI3539 +aI4135 +aI5971 +aI4426 +aI806 +aI2319 +aI1306 +aI3547 +aI3283 +aI2151 +aI3158 +aI3866 +aI1446 +aI5961 +aI6033 +aI4350 +aI4616 +aI4687 +aI4764 +aI3077 +aI4416 +aI600 +aI3255 +aI1011 +aI5953 +aI239 +aI1043 +aI4001 +aI5426 +aI5842 +aI3773 +aI2950 +aI914 +aI2591 +aI2791 +aI4390 +aI4454 +aI413 +aI5181 +aI2792 +aI2039 +aI475 +aI3123 +aI574 +aI480 +aI2934 +aI4824 +aI4131 +aI5248 +aI1983 +aI2162 +aI3705 +aI1573 +aI6071 +aI199 +aI1765 +aI5379 +aI5644 +aI4397 +aI3562 +aI5257 +aI5016 +aI4097 +aI1063 +aI528 +aI3503 +aI4369 +aI1996 +aI2168 +aI4876 +aI1174 +aI4370 +aI5758 +aI5788 +aI1502 +aI395 +aI2222 +aI916 +aI1839 +aI4367 +aI106 +aI3445 +aI430 +aI1101 +aI1686 +aI3440 +aI3309 +aI1536 +aI1430 +aI1207 +aI3001 +aI3727 +aI1401 +aI3183 +aI3209 +aI1487 +aI5586 +aI4279 +aI5794 +aI1990 +aI2241 +aI1394 +aI2362 +aI826 +aI1113 +aI1909 +aI2672 +aI447 +aI5442 +aI3351 +aI4957 +aI3549 +aI2844 +aI5934 +aI5266 +aI5767 +aI4186 +aI542 +aI1939 +aI6009 +aI3615 +aI2055 +aI5023 +aI2857 +aI1531 +aI6153 +aI5522 +aI2425 +aI3143 +aI3745 +aI4323 +aI2132 +aI1834 +aI5752 +aI1279 +aI1151 +aI3115 +aI1045 +aI1023 +aI5835 +aI6157 +aI4366 +aI3975 +aI4177 +aI3938 +aI1052 +aI3193 +aI945 +aI3740 +aI1332 +aI4803 +aI1348 +aI2599 +aI4570 +aI3114 +aI3105 +aI6173 +aI4006 +aI1013 +aI5398 +aI1533 +aI3197 +aI5145 +aI5239 +aI808 +aI3335 +aI3152 +aI5553 +aI3021 +aI3 +aI2529 +aI4999 +aI1606 +aI5122 +aI3697 +aI99 +aI788 +aI4328 +aI1507 +aI3769 +aI1470 +aI3174 +aI1505 +aI5265 +aI2409 +aI5531 +aI2347 +aI3766 +aI2802 +aI4729 +aI311 +aI444 +aI3797 +aI756 +aI4125 +aI4016 +aI2122 +aI2080 +aI3617 +aI843 +aI433 +aI3481 +aI1915 +aI3571 +aI1852 +aI4030 +aI5581 +aI5020 +aI5354 +aI1532 +aI789 +aI5332 +aI2747 +aI1500 +aI4632 +aI5793 +aI5342 +aI990 +aI4486 +aI2565 +aI623 +aI2040 +aI5253 +aI3858 +aI5639 +aI1054 +aI912 +aI2709 +aI1509 +aI1281 +aI4413 +aI4026 +aI696 +aI612 +aI1986 +aI3927 +aI5027 +aI3587 +aI686 +aI3478 +aI5302 +aI4818 +aI2392 +aI6035 +aI5597 +aI4383 +aI4558 +aI3756 +aI4950 +aI2077 +aI4269 +aI2594 +aI6177 +aI3973 +aI205 +aI21 +aI4827 +aI1844 +aI4431 +aI4826 +aI1609 +aI5479 +aI4083 +aI3353 +aI5969 +aI3827 +aI164 +aI1310 +aI4663 +aI1240 +aI720 +aI2125 +aI3363 +aI3423 +aI3362 +aI2773 +aI1313 +aI493 +aI177 +aI5041 +aI4519 +aI4515 +aI4242 +aI1319 +aI2297 +aI2561 +aI582 +aI1246 +aI4807 +aI1800 +aI290 +aI2943 +aI5991 +aI5472 +aI3620 +aI1082 +aI4910 +aI4911 +aI848 +aI2532 +aI4022 +aI2116 +aI2902 +aI5987 +aI4788 +aI5829 +aI5594 +aI4717 +aI4003 +aI5727 +aI234 +aI1206 +aI1089 +aI1961 +aI3453 +aI5894 +aI1302 +aI2365 +aI1819 +aI1841 +aI3716 +aI2419 +aI5410 +aI382 +aI4387 +aI3922 +aI4853 +aI2007 +aI2390 +aI4437 +aI5498 +aI5165 +aI3027 +aI3672 +aI1374 +aI2872 +aI1223 +aI4987 +aI2258 +aI5062 +aI4138 +aI3479 +aI1662 +aI2574 +aI469 +aI5873 +aI1321 +aI4117 +aI1656 +aI2475 +aI563 +aI5258 +aI2695 +aI105 +aI5134 +aI2315 +aI3991 +aI4182 +aI5079 +aI3410 +aI2931 +aI93 +aI4498 +aI4769 +aI5577 +aI2913 +aI575 +aI4828 +aI4015 +aI4155 +aI5822 +aI2756 +aI1296 +aI2501 +aI5314 +aI6160 +aI3646 +aI5212 +aI371 +aI3719 +aI6068 +aI4114 +aI4929 +aI2576 +aI4774 +aI2764 +aI1157 +aI864 +aI3426 +aI50 +aI677 +aI3641 +aI1300 +aI3376 +aI1007 +aI165 +aI5656 +aI1155 +aI6165 +aI4272 +aI3791 +aI1047 +aI3952 +aI1177 +aI3400 +aI412 +aI3817 +aI2205 +aI6040 +aI5474 +aI2585 +aI3102 +aI4647 +aI947 +aI1810 +aI2832 +aI3089 +aI2505 +aI1594 +aI3302 +aI783 +aI5745 +aI1367 +aI3592 +aI894 +aI5124 +aI6119 +aI3147 +aI949 +aI3669 +aI5610 +aI584 +aI1651 +aI2309 +aI246 +aI0 +aI3468 +aI4259 +aI3074 +aI5843 +aI5336 +aI3536 +aI1845 +aI1037 +aI930 +aI3721 +aI5511 +aI2601 +aI4060 +aI958 +aI5185 +aI4528 +aI995 +aI3023 +aI4751 +aI3405 +aI4211 +aI1263 +aI2615 +aI2427 +aI3836 +aI5538 +aI2651 +aI4607 +aI2105 +aI3399 +aI5795 +aI5747 +aI261 +aI1721 +aI1888 +aI1290 +aI3094 +aI5924 +aI5819 +aI785 +aI5388 +aI3192 +aI1493 +aI4652 +aI721 +aI1053 +aI2897 +aI2698 +aI3349 +aI5281 +aI1491 +aI3113 +aI84 +aI6075 +aI321 +aI1403 +aI2099 +aI1913 +aI5550 +aI2799 +aI4464 +aI5133 +aI4384 +aI1508 +aI4861 +aI992 +aI4913 +aI1471 +aI2911 +aI3738 +aI1040 +aI4359 +aI2118 +aI5029 +aI5733 +aI579 +aI5757 +aI587 +aI823 +aI3149 +aI5942 +aI5328 +aI3741 +aI2590 +aI2593 +aI4246 +aI3081 +aI1274 +aI1338 +aI6162 +aI4846 +aI5297 +aI2993 +aI5770 +aI3581 +aI1520 +aI974 +aI3075 +aI2384 +aI3736 +aI5535 +aI86 +aI2182 +aI3986 +aI436 +aI5383 +aI3789 +aI3783 +aI5496 +aI2423 +aI5478 +aI605 +aI2424 +aI6111 +aI2354 +aI2364 +aI2287 +aI38 +aI3561 +aI833 +aI3062 +aI3676 +aI5505 +aI4924 +aI3186 +aI3446 +aI5914 +aI3764 +aI4748 +aI3241 +aI411 +aI4234 +aI4780 +aI439 +aI273 +aI1789 +aI6080 +aI5787 +aI4698 +aI3948 +aI1975 +aI5497 +aI629 +aI5801 +aI4235 +aI3856 +aI4239 +aI5619 +aI312 +aI3692 +aI5290 +aI3354 +aI5897 +aI1699 +aI266 +aI691 +aI3696 +aI2046 +aI764 +aI1943 +aI5032 +aI4996 +aI2535 +aI1737 +aI3281 +aI1320 +aI5385 +aI1969 +aI3557 +aI4740 +aI1329 +aI3532 +aI2984 +aI3434 +aI5606 +aI870 +aI5960 +aI4941 +aI1526 +aI333 +aI3640 +aI1519 +aI5943 +aI1964 +aI3037 +aI5218 +aI4459 +aI4204 +aI548 +aI5446 +aI4643 +aI3163 +aI4072 +aI2148 +aI174 +aI109 +aI4073 +aI5236 +aI5706 +aI5846 +aI1875 +aI2882 +aI3474 +aI4054 +aI5131 +aI5086 +aI5220 +aI1965 +aI5229 +aI5033 +aI844 +aI1355 +aI3872 +aI1803 +aI1469 +aI1233 +aI1331 +aI4276 +aI3765 +aI6089 +aI4704 +aI1270 +aI13 +aI538 +aI2583 +aI625 +aI1124 +aI2049 +aI4392 +aI8 +aI463 +aI2295 +aI2637 +aI2891 +aI4947 +aI5140 +aI1483 +aI2847 +aI3052 +aI3880 +aI500 +aI4355 +aI896 +aI664 +aI860 +aI5116 +aI3602 +aI3451 +aI5930 +aI5863 +aI5340 +aI1027 +aI4840 +aI2178 +aI1856 +aI145 +aI58 +aI4044 +aI796 +aI4495 +aI2052 +aI1148 +aI1796 +aI170 +aI3108 +aI3782 +aI1598 +aI857 +aI2533 +aI2188 +aI1033 +aI1745 +aI1467 +aI3686 +aI3429 +aI3177 +aI76 +aI6141 +aI1685 +aI3314 +aI1671 +aI5935 +aI5221 +aI4488 +aI674 +aI583 +aI5781 +aI3793 +aI1599 +aI1815 +aI1980 +aI5436 +aI1979 +aI5728 +aI4088 +aI4415 +aI3134 +aI1105 +aI5108 +aI1414 +aI4402 +aI4153 +aI1350 +aI3733 +aI3144 +aI5343 +aI3778 +aI3642 +aI230 +aI2498 +aI5198 +aI2649 +aI497 +aI1431 +aI2220 +aI1786 +aI5890 +aI4160 +aI2587 +aI202 +aI3906 +aI1268 +aI5608 +aI1602 +aI3545 +aI1481 +aI1497 +aI1264 +aI593 +aI1501 +aI5734 +aI985 +aI1768 +aI4289 +aI1826 +aI1762 +aI4905 +aI3516 +aI1616 +aI87 +aI79 +aI4048 +aI2330 +aI5760 +aI4763 +aI2538 +aI5166 +aI4436 +aI3387 +aI5353 +aI5681 +aI5628 +aI5228 +aI2218 +aI5414 +aI868 +aI2598 +aI5275 +aI1243 +aI219 +aI2988 +aI4441 +aI4045 +aI1255 +aI5507 +aI620 +aI2980 +aI3678 +aI1392 +aI4095 +aI975 +aI1135 +aI1303 +aI3566 +aI3521 +aI1716 +aI4992 +aI4478 +aI3964 +aI3944 +aI207 +aI4150 +aI2001 +aI1307 +aI3522 +aI1024 +aI883 +aI1152 +aI5852 +aI1459 +aI5587 +aI2422 +aI1812 +aI648 +aI880 +aI5957 +aI3064 +aI869 +aI1482 +aI3333 +aI385 +aI2758 +aI409 +aI5726 +aI855 +aI3471 +aI2995 +aI5471 +aI1539 +aI3833 +aI636 +aI5277 +aI5174 +aI5298 +aI2378 +aI5627 +aI4700 +aI4274 +aI2100 +aI4814 +aI5907 +aI3857 +aI5000 +aI2737 +aI4256 +aI70 +aI3748 +aI1265 +aI1171 +aI318 +aI458 +aI2806 +aI476 +aI4199 +aI2824 +aI5746 +aI913 +aI1197 +aI3732 +aI1729 +aI4654 +aI2768 +aI5756 +aI5607 +aI5918 +aI902 +aI1001 +aI906 +aI4080 +aI1396 +aI4736 +aI996 +aI2686 +aI4977 +aI4262 +aI2111 +aI4677 +aI4942 +aI3366 +aI641 +aI2192 +aI4806 +aI4126 +aI3905 +aI6031 +aI454 +aI4615 +aI487 +aI1224 +aI1639 +aI5412 +aI4023 +aI162 +aI3523 +aI4408 +aI5630 +aI5858 +aI2589 +aI3632 +aI1360 +aI4500 +aI5058 +aI672 +aI1886 +aI893 +aI4694 +aI3256 +aI5294 +aI938 +aI1525 +aI2748 +aI3257 +aI4010 +aI4564 +aI716 +aI6059 +aI2603 +aI2065 +aI349 +aI1557 +aI1085 +aI741 +aI5658 +aI208 +aI5739 +aI386 +aI4049 +aI1700 +aI815 +aI2805 +aI3227 +aI4666 +aI5107 +aI4290 +aI955 +aI2095 +aI5334 +aI6016 +aI172 +aI5773 +aI5604 +aI510 +aI3506 +aI5315 +aI3996 +aI4772 +aI4520 +aI2453 +aI1684 +aI5922 +aI572 +aI29 +aI393 +aI4096 +aI5210 +aI5322 +aI669 +aI2436 +aI2271 +aI341 +aI4363 +aI267 +aI1421 +aI1466 +aI1050 +aI1427 +aI4159 +aI1020 +aI1119 +aI2353 +aI5740 +aI5861 +aI4583 +aI3355 +aI5158 +aI3230 +aI4193 +aI6166 +aI5335 +aI26 +aI3080 +aI2121 +aI1941 +aI3076 +aI2515 +aI5552 +aI4598 +aI178 +aI4271 +aI1843 +aI3951 +aI5950 +aI3450 +aI3961 +aI1201 +aI363 +aI983 +aI2614 +aI5818 +aI4665 +aI1176 +aI2644 +aI3902 +aI1276 +aI2870 +aI2978 +aI4334 +aI5654 +aI1679 +aI216 +aI2269 +aI3910 +aI2509 +aI1778 +aI1530 +aI1103 +aI5310 +aI5572 +aI5346 +aI2732 +aI4895 +aI3346 +aI2144 +aI2823 +aI2137 +aI532 +aI2816 +aI4227 +aI3323 +aI2827 +aI6039 +aI544 +aI1960 +aI4912 +aI2291 +aI1107 +aI5126 +aI4446 +aI1117 +aI874 +aI2464 +aI1377 +aI2036 +aI3958 +aI4151 +aI851 +aI406 +aI4944 +aI389 +aI1159 +aI1317 +aI1917 +aI3708 +aI3030 +aI6021 +aI1771 +aI277 +aI4285 +aI1857 +aI3184 +aI3380 +aI5102 +aI3668 +aI5418 +aI5732 +aI4033 +aI3394 +aI275 +aI2457 +aI4352 +aI2673 +aI1363 +aI2081 +aI6028 +aI249 +aI1373 +aI492 +aI4750 +aI3343 +aI392 +aI5823 +aI2900 +aI3072 +aI1080 +aI2699 +aI5540 +aI2290 +aI5337 +aI4873 +aI4329 +aI3181 +aI2140 +aI4505 +aI4690 +aI186 +aI5741 +aI4804 +aI920 +aI2543 +aI3626 +aI3564 +aI3691 +aI5614 +aI5947 +aI168 +aI1760 +aI3889 +aI2539 +aI1666 +aI5643 +aI717 +aI1353 +aI1798 +aI2200 +aI1707 +aI4521 +aI1832 +aI3141 +aI280 +aI5645 +aI2874 +aI2398 +aI5839 +aI2451 +aI1904 +aI1541 +aI2011 +aI5069 +aI3069 +aI690 +aI5362 +aI2277 +aI5309 +aI5084 +aI2279 +aI891 +aI5828 +aI5437 +aI3529 +aI606 +aI2738 +aI5651 +aI5804 +aI693 +aI1428 +aI1870 +aI729 +aI5824 +aI1920 +aI2696 +aI634 +aI3447 +aI4282 +aI4831 +aI1271 +aI2473 +aI4184 +aI3188 +aI2775 +aI3329 +aI459 +aI5780 +aI512 +aI3401 +aI5920 +aI4332 +aI503 +aI5219 +aI1327 +aI511 +aI1784 +aI2620 +aI832 +aI63 +aI5982 +aI3268 +aI5054 +aI5675 +aI1234 +aI1397 +aI1051 +aI4933 +aI3852 +aI1232 +aI4793 +aI737 +aI5153 +aI595 +aI215 +aI2600 +aI2842 +aI3014 +aI1146 +aI3245 +aI5620 +aI3390 +aI5156 +aI138 +aI228 +aI4399 +aI4304 +aI5009 +aI1503 +aI2304 +aI446 +aI2149 +aI1569 +aI4885 +aI5409 +aI3800 +aI356 +aI2938 +aI3448 +aI5940 +aI4928 +aI1884 +aI3459 +aI72 +aI5962 +aI3173 +aI2990 +aI680 +aI259 +aI516 +aI1172 +aI5458 +aI5792 +aI923 +aI5230 +aI1945 +aI432 +aI604 +aI5138 +aI5905 +aI6092 +aI2581 +aI5467 +aI3635 +aI1044 +aI5797 +aI4591 +aI1160 +aI3235 +aI4458 +aI2723 +aI4645 +aI3133 +aI4309 +aI1312 +aI4506 +aI3803 +aI5072 +aI1695 +aI3763 +aI3135 +aI5986 +aI1515 +aI727 +aI1937 +aI1550 +aI2068 +aI5621 +aI1817 +aI4943 +aI1791 +aI1849 +aI5395 +aI4326 +aI2038 +aI192 +aI3500 +aI67 +aI1620 +aI1016 +aI2102 +aI4733 +aI298 +aI5598 +aI2546 +aI2779 +aI6126 +aI108 +aI2486 +aI2248 +aI5973 +aI2305 +aI626 +aI2915 +aI4222 +aI2503 +aI5682 +aI3657 +aI3810 +aI2449 +aI5106 +aI4917 +aI2862 +aI624 +aI1640 +aI5462 +aI4508 +aI4297 +aI4492 +aI911 +aI4787 +aI1823 +aI5487 +aI2904 +aI5312 +aI4467 +aI5965 +aI1946 +aI1341 +aI4497 +aI117 +aI3422 +aI3211 +aI137 +aI5434 +aI1120 +aI3781 +aI3289 +aI2264 +aI4548 +aI4640 +aI3249 +aI4427 +aI2016 +aI3709 +aI2852 +aI5160 +aI2133 +aI2002 +aI213 +aI4169 +aI742 +aI2412 +aI3813 +aI1821 +aI1018 +aI5555 +aI3055 +aI5638 +aI5936 +aI1441 +aI5089 +aI4241 +aI4673 +aI736 +aI578 +aI2397 +aI3714 +aI4829 +aI3508 +aI502 +aI2761 +aI5813 +aI526 +aI5673 +aI767 +aI2401 +aI6138 +aI817 +aI4855 +aI4784 +aI491 +aI5080 +aI1775 +aI1435 +aI245 +aI1740 +aI5199 +aI5624 +aI513 +aI4636 +aI18 +aI3918 +aI4306 +aI2928 +aI554 +aI119 +aI5099 +aI2526 +aI5680 +aI5255 +aI3677 +aI4630 +aI654 +aI1322 +aI4479 +aI3005 +aI4339 +aI1161 +aI5684 +aI3730 +aI3250 +aI2467 +aI4721 +aI5993 +aI4451 +aI3604 +aI2229 +aI3690 +aI1344 +aI3520 +aI5105 +aI3684 +aI4952 +aI514 +aI1376 +aI1412 +aI5955 +aI4102 +aI5721 +aI804 +aI1407 +aI5886 +aI6125 +aI4382 +aI6108 +aI2502 +aI2272 +aI4322 +aI1183 +aI3156 +aI42 +aI2935 +aI401 +aI1097 +aI3534 +aI5389 +aI5351 +aI6085 +aI3731 +aI6116 +aI2450 +aI1496 +aI3019 +aI3370 +aI2940 +aI2156 +aI3758 +aI4067 +aI2607 +aI5483 +aI2818 +aI2463 +aI224 +aI2366 +aI5098 +aI2124 +aI89 +aI5194 +aI3600 +aI881 +aI1337 +aI5537 +aI1962 +aI999 +aI5357 +aI3712 +aI4109 +aI5525 +aI746 +aI633 +aI5515 +aI1026 +aI2495 +aI5664 +aI4762 +aI5010 +aI1561 +aI4481 +aI3962 +aI5321 +aI5939 +aI2701 +aI5288 +aI5443 +aI1153 +aI4461 +aI1993 +aI2725 +aI3339 +aI15 +aI1269 +aI4314 +aI4034 +aI1652 +aI2058 +aI3882 +aI2159 +aI133 +aI1411 +aI807 +aI4995 +aI3718 +aI5536 +aI3452 +aI5881 +aI1420 +aI2139 +aI1514 +aI4144 +aI325 +aI5845 +aI5701 +aI2949 +aI5308 +aI5521 +aI646 +aI5448 +aI1613 +aI4522 +aI3660 +aI1385 +aI218 +aI2848 +aI1213 +aI1075 +aI3420 +aI2299 +aI5065 +aI722 +aI673 +aI3715 +aI3548 +aI5 +aI942 +aI3558 +aI3755 +aI3695 +aI2312 +aI2356 +aI5908 +aI1036 +aI5059 +aI2661 +aI5291 +aI5800 +aI4371 +aI4648 +aI6076 +aI1029 +aI730 +aI3509 +aI1905 +aI390 +aI1286 +aI3132 +aI1955 +aI1820 +aI4132 +aI2986 +aI2153 +aI337 +aI615 +aI3315 +aI2812 +aI4378 +aI1194 +aI1364 +aI5175 +aI5207 +aI1677 +aI2959 +aI258 +aI2209 +aI5268 +aI900 +aI2231 +aI3679 +aI5516 +aI5358 +aI3275 +aI1244 +aI5830 +aI4619 +aI1822 +aI2606 +aI4706 +aI2009 +aI937 +aI3862 +aI5135 +aI4094 +aI2562 +aI5784 +aI2814 +aI54 +aI4671 +aI3196 +aI3607 +aI5591 +aI2056 +aI1757 +aI4817 +aI1754 +aI4761 +aI5011 +aI4562 +aI2197 +aI1853 +aI2612 +aI6070 +aI2549 +aI4255 +aI4681 +aI4754 +aI4642 +aI5154 +aI5578 +aI5879 +aI2597 +aI4465 +aI3433 +aI3887 +aI5115 +aI2499 +aI6064 +aI4361 +aI4455 +aI1087 +aI4128 +aI3061 +aI3559 +aI6047 +aI4746 +aI4443 +aI2342 +aI3867 +aI1585 +aI3212 +aI671 +aI3110 +aI708 +aI5774 +aI3367 +aI4839 +aI6026 +aI1169 +aI4541 +aI4723 +aI2322 +aI279 +aI2093 +aI4655 +aI5696 +aI3334 +aI113 +aI1021 +aI2602 +aI3392 +aI2202 +aI534 +aI3357 +aI5202 +aI3772 +aI1408 +aI5370 +aI3881 +aI5049 +aI4544 +aI2749 +aI846 +aI4954 +aI4061 +aI2376 +aI4714 +aI5810 +aI4749 +aI2560 +aI6146 +aI2251 +aI2782 +aI6097 +aI1417 +aI1238 +aI5809 +aI5087 +aI4038 +aI3808 +aI4866 +aI2708 +aI5500 +aI2808 +aI3292 +aI3937 +aI1634 +aI1654 +aI4851 +aI4689 +aI3419 +aI4410 +aI5186 +aI88 +aI3164 +aI5071 +aI1743 +aI2880 +aI2678 +aI4657 +aI4555 +aI4601 +aI1005 +aI4731 +aI2275 +aI4547 +aI3662 +aI3231 +aI4669 +aI5203 +aI3140 +aI278 +aI2916 +aI525 +aI652 +aI1732 +aI3048 +aI4281 +aI4009 +aI4425 +aI876 +aI4145 +aI402 +aI4789 +aI4901 +aI875 +aI1807 +aI4161 +aI2571 +aI324 +aI2811 +aI251 +aI2282 +aI1871 +aI5547 +aI3031 +aI5937 +aI4783 +aI464 +aI908 +aI5469 +aI1074 +aI5946 +aI639 +aI5101 +aI4667 +aI3056 +aI2712 +aI630 +aI3993 +aI2850 +aI5397 +aI3358 +aI3035 +aI2126 +aI5299 +aI700 +aI5903 +aI2876 +aI2919 +aI1763 +aI3093 +aI3312 +aI3046 +aI5349 +aI2184 +aI3869 +aI838 +aI816 +aI2828 +aI1546 +aI114 +aI1751 +aI46 +aI4805 +aI2652 +aI3169 +aI4005 +aI1214 +aI4705 +aI2477 +aI3361 +aI80 +aI1480 +aI2669 +aI3916 +aI2963 +aI2810 +aI1590 +aI5441 +aI131 +aI4602 +aI263 +aI3240 +aI6175 +aI5073 +aI123 +aI3706 +aI3911 +aI4512 +aI2496 +aI4936 +aI4406 +aI449 +aI6090 +aI2703 +aI840 +aI3216 +aI3187 +aI1184 +aI5603 +aI5276 +aI3744 +aI1203 +aI1587 +aI3658 +aI5913 +aI5807 +aI4056 +aI3701 +aI3078 +aI3583 +aI336 +aI62 +aI3416 +aI3166 +aI5803 +aI3726 +aI2803 +aI5307 +aI559 +aI1971 +aI2895 +aI1611 +aI560 +aI1220 +aI2820 +aI4722 +aI383 +aI5851 +aI1741 +aI6019 +aI3308 +aI5455 +aI68 +aI6167 +aI2894 +aI6041 +aI1277 +aI5766 +aI1386 +aI2483 +aI4781 +aI4496 +aI754 +aI3507 +aI2910 +aI3467 +aI5092 +aI2936 +aI2249 +aI2255 +aI472 +aI1631 +aI1144 +aI2996 +aI288 +aI2622 +aI3204 +aI3242 +aI790 +aI4864 +aI2676 +aI5345 +aI795 +aI6109 +aI4140 +aI1982 +aI3225 +aI4670 +aI5206 +aI707 +aI4507 +aI797 +aI3834 +aI2394 +aI4727 +aI5060 +aI3436 +aI4100 +aI723 +aI5233 +aI4998 +aI1062 +aI4900 +aI1583 +aI5742 +aI5047 +aI5524 +aI1456 +aI1065 +aI4231 +aI3710 +aI601 +aI5117 +aI335 +aI4294 +aI2627 +aI3286 +aI4620 +aI3145 +aI2493 +aI3331 +aI4674 +aI5710 +aI5992 +aI794 +aI5136 +aI888 +aI1506 +aI1038 +aI3757 +aI4039 +aI5076 +aI365 +aI1227 +aI5737 +aI4719 +aI3804 +aI863 +aI4668 +aI4603 +aI3591 +aI3109 +aI4658 +aI5959 +aI2623 +aI4825 +aI4708 +aI1424 +aI1566 +aI4183 +aI5660 +aI5533 +aI3777 +aI2413 +aI1387 +aI2760 +aI2989 +aI4310 +aI4341 +aI4157 +aI2536 +aI2790 +aI2558 +aI3112 +aI2494 +aI1073 +aI2042 +aI4058 +aI2997 +aI1352 +aI3098 +aI3012 +aI4959 +aI4906 +aI5128 +aI5527 +aI5243 +aI410 +aI3378 +aI3455 +aI5716 +aI4582 +aI120 +aI3820 +aI3594 +aI1571 +aI3254 +aI4429 +aI1617 +aI929 +aI2551 +aI5164 +aI1855 +aI2917 +aI1072 +aI2809 +aI2018 +aI5931 +aI1579 +aI1334 +aI3610 +aI4773 +aI2618 +aI2324 +aI3504 +aI3107 +aI95 +aI191 +aI189 +aI4014 +aI4190 +aI2169 +aI4205 +aI2396 +aI3864 +aI3796 +aI904 +aI566 +aI988 +aI3638 +aI4201 +aI2939 +aI5517 +aI3874 +aI2098 +aI2286 +aI6022 +aI4518 +aI775 +aI5411 +aI3018 +aI3912 +aI1890 +aI842 +aI5272 +aI3170 +aI453 +aI2485 +aI1876 +aI372 +aI1175 +aI443 +aI5602 +aI581 +aI5044 +aI5805 +aI107 +aI4608 +aI2730 +aI2179 +aI4617 +aI4485 +aI3612 +aI4862 +aI4139 +aI384 +aI4017 +aI4958 +aI35 +aI1345 +aI203 +aI3933 +aI2154 +aI1123 +aI1150 +aI827 +aI4702 +aI2268 +aI739 +aI1597 +aI4726 +aI3082 +aI1188 +aI4594 +aI5459 +aI4695 +aI3269 +aI5433 +aI1806 +aI3345 +aI5679 +aI3747 +aI3901 +aI5300 +aI1426 +aI4511 +aI3185 +aI4108 +aI2452 +aI3264 +aI2022 +aI1323 +aI4711 +aI921 +aI998 +aI5909 +aI3293 +aI5702 +aI2871 +aI4527 +aI2514 +aI378 +aI4320 +aI4799 +aI5612 +aI2343 +aI5068 +aI28 +aI4604 +aI4679 +aI3148 +aI6133 +aI1655 +aI4280 +aI3805 +aI1196 +aI57 +aI3493 +aI2224 +aI1225 +aI36 +aI5017 +aI2328 +aI2225 +aI2954 +aI5815 +aI4745 +aI4585 +aI2753 +aI5303 +aI5837 +aI3203 +aI2025 +aI3569 +aI2752 +aI3925 +aI2003 +aI3528 +aI5983 +aI5711 +aI161 +aI4004 +aI326 +aI4411 +aI2298 +aI4287 +aI304 +aI4438 +aI5999 +aI10 +aI4842 +aI831 +aI4340 +aI140 +aI886 +aI4029 +aI1406 +aI3907 +aI4633 +aI2032 +aI2922 +aI303 +aI4625 +aI4747 +aI2960 +aI2086 +aI2372 +aI20 +aI1517 +aI5911 +aI4318 +aI334 +aI3424 +aI2796 +aI157 +aI854 +aI2883 +aI1572 +aI2476 +aI3016 +aI5381 +aI3546 +aI5415 +aI614 +aI2217 +aI5356 +aI3282 +aI3502 +aI5949 +aI2733 +aI733 +aI2704 +aI2363 +aI2196 +aI5097 +aI6054 +aI1475 +aI6127 +aI6135 +aI3097 +aI2714 +aI4248 +aI5453 +aI2961 +aI2296 +aI4333 +aI3704 +aI3106 +aI4891 +aI3822 +aI4107 +aI1311 +aI1792 +aI1180 +aI4300 +aI2385 +aI4134 +aI3373 +aI2044 +aI5363 +aI3987 +aI4935 +aI4779 +aI3057 +aI3538 +aI4273 +aI4533 +aI1547 +aI1813 +aI3580 +aI3848 +aI1239 +aI1829 +aI2885 +aI1450 +aI2890 +aI5416 +aI580 +aI661 +aI5854 +aI2321 +aI3179 +aI2223 +aI5666 +aI2647 +aI812 +aI6151 +aI3116 +aI6096 +aI4098 +aI1696 +aI3298 +aI3575 +aI154 +aI701 +aI75 +aI5045 +aI256 +aI163 +aI2368 +aI1790 +aI3475 +aI3117 +aI6030 +aI3637 +aI5650 +aI4219 +aI49 +aI5046 +aI221 +aI4716 +aI5548 +aI6081 +aI4051 +aI4889 +aI1794 +aI2621 +aI3356 +aI5674 +aI5360 +aI1351 +aI253 +aI2781 +aI4449 +aI3441 +aI5190 +aI3332 +aI320 +aI3553 +aI4516 +aI4133 +aI2860 +aI1622 +aI2633 +aI2292 +aI3489 +aI689 +aI2201 +aI1143 +aI2145 +aI2632 +aI3515 +aI3053 +aI5763 +aI2705 +aI4664 +aI5932 +aI346 +aI4178 +aI5729 +aI2654 +aI1326 +aI749 +aI132 +aI5143 +aI473 +aI2166 +aI3919 +aI2869 +aI1931 +aI2718 +aI1848 +aI4434 +aI4324 +aI6042 +aI3965 +aI6178 +aI3527 +aI1297 +aI2107 +aI3899 +aI5504 +aI2478 +aI6100 +aI4737 +aI158 +aI2399 +aI5021 +aI2570 +aI814 +aI5457 +aI416 +aI3239 +aI2564 +aI3262 +aI1106 +aI973 +aI4364 +aI4536 +aI3670 +aI5772 +aI2914 +aI3375 +aI1346 +aI2540 +aI3616 +aI3054 +aI5613 +aI541 +aI5070 +aI5775 +aI802 +aI3136 +aI1365 +aI2087 +aI4849 +aI4697 +aI2726 +aI5333 +aI4513 +aI1705 +aI3338 +aI5473 +aI3894 +aI3634 +aI5114 +aI1923 +aI1492 +aI1298 +aI198 +aI2381 +aI5840 +aI4192 +aI702 +aI1726 +aI442 +aI3200 +aI2548 +aI5157 +aI1809 +aI4563 +aI5816 +aI4713 +aI2789 +aI1083 +aI2487 +aI2687 +aI877 +aI1202 +aI3045 +aI1111 +aI957 +aI6181 +aI2134 +aI2359 +aI2236 +aI5408 +aI2019 +aI3457 +aI2069 +aI2924 +aI747 +aI1259 +aI3794 +aI4637 +aI1359 +aI2573 +aI769 +aI4420 +aI5311 +aI4879 +aI5401 +aI4545 +aI5485 +aI5200 +aI1015 +aI2481 +aI3884 +aI3908 +aI2784 +aI982 +as. \ No newline at end of file diff --git a/emoji_overview.png b/emoji_overview.png new file mode 100644 index 0000000..70db6fd Binary files /dev/null and b/emoji_overview.png differ diff --git a/examples/.gitkeep b/examples/.gitkeep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/examples/.gitkeep @@ -0,0 +1 @@ + diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 0000000..6425e8f --- /dev/null +++ b/examples/README.md @@ -0,0 +1,31 @@ +# torchMoji examples + +## Initialization +[create_twitter_vocab.py](create_twitter_vocab.py) +Create a new vocabulary from a tsv file. + +[tokenize_dataset.py](tokenize_dataset.py) +Tokenize a given dataset using the prebuilt vocabulary. + +[vocab_extension.py](vocab_extension.py) +Extend the given vocabulary using dataset-specific words. + +[dataset_split.py](dataset_split.py) +Split a given dataset into training, validation and testing. + +## Use pretrained model/architecture +[score_texts_emojis.py](score_texts_emojis.py) +Use torchMoji to score texts for emoji distribution. + +[encode_texts.py](encode_texts.py) +Use torchMoji to encode the text into 2304-dimensional feature vectors for further modeling/analysis. + +## Transfer learning +[finetune_youtube_last.py](finetune_youtube_last.py) +Finetune the model on the SS-Youtube dataset using the 'last' method. + +[finetune_insults_chain-thaw.py](finetune_insults_chain-thaw.py) +Finetune the model on the Kaggle insults dataset (from blog post) using the 'chain-thaw' method. + +[finetune_semeval_class-avg_f1.py](finetune_semeval_class-avg_f1.py) +Finetune the model on the SemeEval emotion dataset using the 'full' method and evaluate using the class average F1 metric. diff --git a/examples/__init__.py b/examples/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/examples/create_twitter_vocab.py b/examples/create_twitter_vocab.py new file mode 100644 index 0000000..9ca6032 --- /dev/null +++ b/examples/create_twitter_vocab.py @@ -0,0 +1,13 @@ +""" Creates a vocabulary from a tsv file. +""" + +import codecs +import example_helper +from torchmoji.create_vocab import VocabBuilder +from torchmoji.word_generator import TweetWordGenerator + +with codecs.open('../../twitterdata/tweets.2016-09-01', 'rU', 'utf-8') as stream: + wg = TweetWordGenerator(stream) + vb = VocabBuilder(wg) + vb.count_all_words() + vb.save_vocab() diff --git a/examples/dataset_split.py b/examples/dataset_split.py new file mode 100644 index 0000000..45b198d --- /dev/null +++ b/examples/dataset_split.py @@ -0,0 +1,59 @@ +''' +Split a given dataset into three different datasets: training, validation and +testing. + +This is achieved by splitting the given list of sentences into three separate +lists according to either a given ratio (e.g. [0.7, 0.1, 0.2]) or by an +explicit enumeration. The sentences are also tokenised using the given +vocabulary. + +Also splits a given list of dictionaries containing information about +each sentence. + +An additional parameter can be set 'extend_with', which will extend the given +vocabulary with up to 'extend_with' tokens, taken from the training dataset. +''' +from __future__ import print_function, unicode_literals +import example_helper +import json + +from torchmoji.sentence_tokenizer import SentenceTokenizer + +DATASET = [ + 'I am sentence 0', + 'I am sentence 1', + 'I am sentence 2', + 'I am sentence 3', + 'I am sentence 4', + 'I am sentence 5', + 'I am sentence 6', + 'I am sentence 7', + 'I am sentence 8', + 'I am sentence 9 newword', + ] + +INFO_DICTS = [ + {'label': 'sentence 0'}, + {'label': 'sentence 1'}, + {'label': 'sentence 2'}, + {'label': 'sentence 3'}, + {'label': 'sentence 4'}, + {'label': 'sentence 5'}, + {'label': 'sentence 6'}, + {'label': 'sentence 7'}, + {'label': 'sentence 8'}, + {'label': 'sentence 9'}, + ] + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) +st = SentenceTokenizer(vocab, 30) + +# Split using the default split ratio +print(st.split_train_val_test(DATASET, INFO_DICTS)) + +# Split explicitly +print(st.split_train_val_test(DATASET, + INFO_DICTS, + [[0, 1, 2, 4, 9], [5, 6], [7, 8, 3]], + extend_with=1)) diff --git a/examples/encode_texts.py b/examples/encode_texts.py new file mode 100644 index 0000000..48cbe59 --- /dev/null +++ b/examples/encode_texts.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- + +""" Use torchMoji to encode texts into emotional feature vectors. +""" +from __future__ import print_function, division, unicode_literals +import json + +from torchmoji.sentence_tokenizer import SentenceTokenizer +from torchmoji.model_def import torchmoji_feature_encoding +from torchmoji.global_variables import PRETRAINED_PATH, VOCAB_PATH + +TEST_SENTENCES = ['I love mom\'s cooking', + 'I love how you never reply back..', + 'I love cruising with my homies', + 'I love messing with yo mind!!', + 'I love you and now you\'re just gone..', + 'This is shit', + 'This is the shit'] + +maxlen = 30 +batch_size = 32 + +print('Tokenizing using dictionary from {}'.format(VOCAB_PATH)) +with open(VOCAB_PATH, 'r') as f: + vocabulary = json.load(f) +st = SentenceTokenizer(vocabulary, maxlen) +tokenized, _, _ = st.tokenize_sentences(TEST_SENTENCES) + +print('Loading model from {}.'.format(PRETRAINED_PATH)) +model = torchmoji_feature_encoding(PRETRAINED_PATH) +print(model) + +print('Encoding texts..') +encoding = model(tokenized) + +print('First 5 dimensions for sentence: {}'.format(TEST_SENTENCES[0])) +print(encoding[0,:5]) + +# Now you could visualize the encodings to see differences, +# run a logistic regression classifier on top, +# or basically anything you'd like to do. \ No newline at end of file diff --git a/examples/example_helper.py b/examples/example_helper.py new file mode 100644 index 0000000..e6376e0 --- /dev/null +++ b/examples/example_helper.py @@ -0,0 +1,6 @@ +""" Module import helper. +Modifies PATH in order to allow us to import the torchmoji directory. +""" +import sys +from os.path import abspath, dirname +sys.path.insert(0, dirname(dirname(abspath(__file__)))) diff --git a/examples/finetune_insults_chain-thaw.py b/examples/finetune_insults_chain-thaw.py new file mode 100644 index 0000000..0d1fbd1 --- /dev/null +++ b/examples/finetune_insults_chain-thaw.py @@ -0,0 +1,44 @@ +"""Finetuning example. + +Trains the torchMoji model on the kaggle insults dataset, using the 'chain-thaw' +finetuning method and the accuracy metric. See the blog post at +https://medium.com/@bjarkefelbo/what-can-we-learn-from-emojis-6beb165a5ea0 +for more information. Note that results may differ a bit due to slight +changes in preprocessing and train/val/test split. + +The 'chain-thaw' method does the following: +0) Load all weights except for the softmax layer. Extend the embedding layer if + necessary, initialising the new weights with random values. +1) Freeze every layer except the last (softmax) layer and train it. +2) Freeze every layer except the first layer and train it. +3) Freeze every layer except the second etc., until the second last layer. +4) Unfreeze all layers and train entire model. +""" + +from __future__ import print_function +import example_helper +import json +from torchmoji.model_def import torchmoji_transfer +from torchmoji.global_variables import PRETRAINED_PATH +from torchmoji.finetuning import ( + load_benchmark, + finetune) + + +DATASET_PATH = '../data/kaggle-insults/raw.pickle' +nb_classes = 2 + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) + +# Load dataset. Extend the existing vocabulary with up to 10000 tokens from +# the training dataset. +data = load_benchmark(DATASET_PATH, vocab, extend_with=10000) + +# Set up model and finetune. Note that we have to extend the embedding layer +# with the number of tokens added to the vocabulary. +model = torchmoji_transfer(nb_classes, PRETRAINED_PATH, extend_embedding=data['added']) +print(model) +model, acc = finetune(model, data['texts'], data['labels'], nb_classes, + data['batch_size'], method='chain-thaw') +print('Acc: {}'.format(acc)) diff --git a/examples/finetune_semeval_class-avg_f1.py b/examples/finetune_semeval_class-avg_f1.py new file mode 100644 index 0000000..7bcf830 --- /dev/null +++ b/examples/finetune_semeval_class-avg_f1.py @@ -0,0 +1,50 @@ +"""Finetuning example. + +Trains the torchMoji model on the SemEval emotion dataset, using the 'last' +finetuning method and the class average F1 metric. + +The 'last' method does the following: +0) Load all weights except for the softmax layer. Do not add tokens to the + vocabulary and do not extend the embedding layer. +1) Freeze all layers except for the softmax layer. +2) Train. + +The class average F1 metric does the following: +1) For each class, relabel the dataset into binary classification + (belongs to/does not belong to this class). +2) Calculate F1 score for each class. +3) Compute the average of all F1 scores. +""" + +from __future__ import print_function +import example_helper +import json +from torchmoji.finetuning import load_benchmark +from torchmoji.class_avg_finetuning import class_avg_finetune +from torchmoji.model_def import torchmoji_transfer +from torchmoji.global_variables import PRETRAINED_PATH + +DATASET_PATH = '../data/SE0714/raw.pickle' +nb_classes = 3 + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) + + +# Load dataset. Extend the existing vocabulary with up to 10000 tokens from +# the training dataset. +data = load_benchmark(DATASET_PATH, vocab, extend_with=10000) + +# Set up model and finetune. Note that we have to extend the embedding layer +# with the number of tokens added to the vocabulary. +# +# Also note that when using class average F1 to evaluate, the model has to be +# defined with two classes, since the model will be trained for each class +# separately. +model = torchmoji_transfer(2, PRETRAINED_PATH, extend_embedding=data['added']) +print(model) + +# For finetuning however, pass in the actual number of classes. +model, f1 = class_avg_finetune(model, data['texts'], data['labels'], + nb_classes, data['batch_size'], method='last') +print('F1: {}'.format(f1)) diff --git a/examples/finetune_youtube_last.py b/examples/finetune_youtube_last.py new file mode 100644 index 0000000..cd816b8 --- /dev/null +++ b/examples/finetune_youtube_last.py @@ -0,0 +1,35 @@ +"""Finetuning example. + +Trains the torchMoji model on the SS-Youtube dataset, using the 'last' +finetuning method and the accuracy metric. + +The 'last' method does the following: +0) Load all weights except for the softmax layer. Do not add tokens to the + vocabulary and do not extend the embedding layer. +1) Freeze all layers except for the softmax layer. +2) Train. +""" + +from __future__ import print_function +import example_helper +import json +from torchmoji.model_def import torchmoji_transfer +from torchmoji.global_variables import PRETRAINED_PATH, VOCAB_PATH, ROOT_PATH +from torchmoji.finetuning import ( + load_benchmark, + finetune) + +DATASET_PATH = '{}/data/SS-Youtube/raw.pickle'.format(ROOT_PATH) +nb_classes = 2 + +with open(VOCAB_PATH, 'r') as f: + vocab = json.load(f) + +# Load dataset. +data = load_benchmark(DATASET_PATH, vocab) + +# Set up model and finetune +model = torchmoji_transfer(nb_classes, PRETRAINED_PATH) +print(model) +model, acc = finetune(model, data['texts'], data['labels'], nb_classes, data['batch_size'], method='last') +print('Acc: {}'.format(acc)) diff --git a/examples/score_texts_emojis.py b/examples/score_texts_emojis.py new file mode 100644 index 0000000..3ea4d54 --- /dev/null +++ b/examples/score_texts_emojis.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +""" Use torchMoji to score texts for emoji distribution. + +The resulting emoji ids (0-63) correspond to the mapping +in emoji_overview.png file at the root of the torchMoji repo. + +Writes the result to a csv file. +""" +from __future__ import print_function, division, unicode_literals +import example_helper +import json +import csv +import numpy as np + +from torchmoji.sentence_tokenizer import SentenceTokenizer +from torchmoji.model_def import torchmoji_emojis +from torchmoji.global_variables import PRETRAINED_PATH, VOCAB_PATH + +OUTPUT_PATH = 'test_sentences.csv' + +TEST_SENTENCES = ['I love mom\'s cooking', + 'I love how you never reply back..', + 'I love cruising with my homies', + 'I love messing with yo mind!!', + 'I love you and now you\'re just gone..', + 'This is shit', + 'This is the shit'] + + +def top_elements(array, k): + ind = np.argpartition(array, -k)[-k:] + return ind[np.argsort(array[ind])][::-1] + +maxlen = 30 + +print('Tokenizing using dictionary from {}'.format(VOCAB_PATH)) +with open(VOCAB_PATH, 'r') as f: + vocabulary = json.load(f) + +st = SentenceTokenizer(vocabulary, maxlen) + +print('Loading model from {}.'.format(PRETRAINED_PATH)) +model = torchmoji_emojis(PRETRAINED_PATH) +print(model) +print('Running predictions.') +tokenized, _, _ = st.tokenize_sentences(TEST_SENTENCES) +prob = model(tokenized) + +for prob in [prob]: + # Find top emojis for each sentence. Emoji ids (0-63) + # correspond to the mapping in emoji_overview.png + # at the root of the torchMoji repo. + print('Writing results to {}'.format(OUTPUT_PATH)) + scores = [] + for i, t in enumerate(TEST_SENTENCES): + t_tokens = tokenized[i] + t_score = [t] + t_prob = prob[i] + ind_top = top_elements(t_prob, 5) + t_score.append(sum(t_prob[ind_top])) + t_score.extend(ind_top) + t_score.extend([t_prob[ind] for ind in ind_top]) + scores.append(t_score) + print(t_score) + + with open(OUTPUT_PATH, 'wb') as csvfile: + writer = csv.writer(csvfile, delimiter=',', lineterminator='\n') + writer.writerow(['Text', 'Top5%', + 'Emoji_1', 'Emoji_2', 'Emoji_3', 'Emoji_4', 'Emoji_5', + 'Pct_1', 'Pct_2', 'Pct_3', 'Pct_4', 'Pct_5']) + for i, row in enumerate(scores): + try: + writer.writerow(row) + except: + print("Exception at row {}!".format(i)) diff --git a/examples/tokenize_dataset.py b/examples/tokenize_dataset.py new file mode 100644 index 0000000..c36c700 --- /dev/null +++ b/examples/tokenize_dataset.py @@ -0,0 +1,26 @@ +""" +Take a given list of sentences and turn it into a numpy array, where each +number corresponds to a word. Padding is used (number 0) to ensure fixed length +of sentences. +""" + +from __future__ import print_function, unicode_literals +import example_helper +import json +from torchmoji.sentence_tokenizer import SentenceTokenizer + +with open('../model/vocabulary.json', 'r') as f: + vocabulary = json.load(f) + +st = SentenceTokenizer(vocabulary, 30) +test_sentences = [ + '\u2014 -- \u203c !!\U0001F602', + 'Hello world!', + 'This is a sample tweet #example', + ] + +tokens, infos, stats = st.tokenize_sentences(test_sentences) + +print(tokens) +print(infos) +print(stats) diff --git a/examples/vocab_extension.py b/examples/vocab_extension.py new file mode 100644 index 0000000..0d38479 --- /dev/null +++ b/examples/vocab_extension.py @@ -0,0 +1,30 @@ +""" +Extend the given vocabulary using dataset-specific words. + +1. First create a vocabulary for the specific dataset. +2. Find all words not in our vocabulary, but in the dataset vocabulary. +3. Take top X (default=1000) of these words and add them to the vocabulary. +4. Save this combined vocabulary and embedding matrix, which can now be used. +""" + +from __future__ import print_function, unicode_literals +import example_helper +import json +from torchmoji.create_vocab import extend_vocab, VocabBuilder +from torchmoji.word_generator import WordGenerator + +new_words = ['#zzzzaaazzz', 'newword', 'newword'] +word_gen = WordGenerator(new_words) +vb = VocabBuilder(word_gen) +vb.count_all_words() + +with open('../model/vocabulary.json') as f: + vocab = json.load(f) + +print(len(vocab)) +print(vb.word_counts) +extend_vocab(vocab, vb, max_tokens=1) + +# 'newword' should be added because it's more frequent in the given vocab +print(vocab['newword']) +print(len(vocab)) diff --git a/model/.gitkeep b/model/.gitkeep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/model/.gitkeep @@ -0,0 +1 @@ + diff --git a/model/vocabulary.json b/model/vocabulary.json new file mode 100644 index 0000000..fdcb7d2 --- /dev/null +++ b/model/vocabulary.json @@ -0,0 +1,50002 @@ +{ + "CUSTOM_MASK": 0, + "CUSTOM_UNKNOWN": 1, + "CUSTOM_AT": 2, + "CUSTOM_URL": 3, + "CUSTOM_NUMBER": 4, + "CUSTOM_BREAK": 5, + "CUSTOM_BLANK_6": 6, + "CUSTOM_BLANK_7": 7, + "CUSTOM_BLANK_8": 8, + "CUSTOM_BLANK_9": 9, + "the": 10, + ".": 11, + "and": 12, + "you": 13, + ",": 14, + "a": 15, + "for": 16, + "to": 17, + "i": 18, + "!": 19, + "not": 20, + "of": 21, + "this": 22, + "that": 23, + "are": 24, + "was": 25, + "it": 26, + "your": 27, + "is": 28, + "great": 29, + "but": 30, + "with": 31, + "good": 32, + "have": 33, + "..": 34, + "-": 35, + "in": 36, + "they": 37, + "like": 38, + "what": 39, + "all": 40, + "my": 41, + "just": 42, + "one": 43, + "on": 44, + "book": 45, + "very": 46, + "don't": 47, + "get": 48, + "\"": 49, + "!!": 50, + "from": 51, + "about": 52, + "out": 53, + "we": 54, + "time": 55, + "at": 56, + "best": 57, + "had": 58, + "will": 59, + "so": 60, + "?": 61, + "were": 62, + "when": 63, + "as": 64, + "there": 65, + "would": 66, + "be": 67, + "it's": 68, + "can": 69, + "more": 70, + "who": 71, + "too": 72, + "really": 73, + "their": 74, + "people": 75, + "me": 76, + "no": 77, + "here": 78, + "how": 79, + "only": 80, + "has": 81, + "know": 82, + "if": 83, + "our": 84, + "back": 85, + "his": 86, + "love": 87, + "because": 88, + "than": 89, + "some": 90, + "an": 91, + "bad": 92, + "better": 93, + "them": 94, + "money": 95, + "read": 96, + ")": 97, + "little": 98, + "(": 99, + "well": 100, + "ever": 101, + "you're": 102, + "food": 103, + "even": 104, + "place": 105, + "been": 106, + "think": 107, + "then": 108, + "off": 109, + "she": 110, + "now": 111, + "up": 112, + "why": 113, + "buy": 114, + "other": 115, + "movie": 116, + "work": 117, + "over": 118, + "right": 119, + "nice": 120, + "did": 121, + "never": 122, + "much": 123, + "got": 124, + "way": 125, + "do": 126, + "or": 127, + "i'm": 128, + "her": 129, + "should": 130, + "make": 131, + "after": 132, + "fuck": 133, + "product": 134, + "first": 135, + "excellent": 136, + "see": 137, + "service": 138, + "still": 139, + "any": 140, + "could": 141, + "say": 142, + "by": 143, + "didn't": 144, + "does": 145, + "want": 146, + "again": 147, + ":": 148, + "going": 149, + "quality": 150, + "must": 151, + "which": 152, + "new": 153, + "another": 154, + "these": 155, + "its": 156, + "go": 157, + "poor": 158, + "need": 159, + "down": 160, + "made": 161, + "him": 162, + "waste": 163, + "can't": 164, + "worth": 165, + "/": 166, + "life": 167, + "said": 168, + "most": 169, + "fun": 170, + "also": 171, + "shit": 172, + "old": 173, + "being": 174, + "before": 175, + "where": 176, + "big": 177, + "come": 178, + "$": 179, + "look": 180, + "many": 181, + "two": 182, + "man": 183, + "take": 184, + "into": 185, + "game": 186, + "stupid": 187, + "doesn't": 188, + "he": 189, + "nothing": 190, + "price": 191, + "give": 192, + "&": 193, + "awesome": 194, + "i've": 195, + "day": 196, + "use": 197, + "'": 198, + "fucking": 199, + "pretty": 200, + "long": 201, + "something": 202, + "works": 203, + "real": 204, + "us": 205, + "ass": 206, + "worst": 207, + "try": 208, + "same": 209, + "years": 210, + "disappointed": 211, + "those": 212, + "last": 213, + "every": 214, + "thing": 215, + "away": 216, + "review": 217, + "always": 218, + "idiot": 219, + "story": 220, + "sure": 221, + "music": 222, + "wrong": 223, + "while": 224, + "own": 225, + "terrible": 226, + "white": 227, + "year": 228, + "that's": 229, + "amazing": 230, + "cd": 231, + "around": 232, + "please": 233, + "horrible": 234, + "hard": 235, + "perfect": 236, + "enough": 237, + "black": 238, + "went": 239, + "show": 240, + "order": 241, + "disappointing": 242, + "wonderful": 243, + "album": 244, + "yourself": 245, + "came": 246, + "stop": 247, + "next": 248, + "let": 249, + "put": 250, + "dont": 251, + "feel": 252, + "thought": 253, + "few": 254, + "lol": 255, + "far": 256, + "boring": 257, + "times": 258, + "small": 259, + "stars": 260, + "things": 261, + "wait": 262, + "point": 263, + "someone": 264, + "since": 265, + "bitch": 266, + "such": 267, + "ordered": 268, + "anything": 269, + "easy": 270, + "find": 271, + "pay": 272, + "getting": 273, + "fan": 274, + "sound": 275, + "keep": 276, + "yet": 277, + "night": 278, + "dumb": 279, + "obama": 280, + "world": 281, + "lot": 282, + "watch": 283, + "ok": 284, + "used": 285, + "actually": 286, + "both": 287, + "funny": 288, + "beautiful": 289, + "maybe": 290, + "dvd": 291, + "everything": 292, + "am": 293, + "name": 294, + "yes": 295, + "looking": 296, + "home": 297, + "done": 298, + "happy": 299, + "--": 300, + "wow": 301, + "live": 302, + "though": 303, + "family": 304, + "star": 305, + "bit": 306, + "tell": 307, + "job": 308, + "piece": 309, + "guy": 310, + "definitely": 311, + "kids": 312, + "favorite": 313, + "everyone": 314, + "took": 315, + "different": 316, + "room": 317, + "minutes": 318, + "experience": 319, + "anyone": 320, + "left": 321, + "believe": 322, + "told": 323, + "god": 324, + "else": 325, + "makes": 326, + "classic": 327, + "less": 328, + "without": 329, + "eat": 330, + "cheap": 331, + "wanted": 332, + "hot": 333, + "probably": 334, + "hate": 335, + "gay": 336, + "high": 337, + "once": 338, + "talking": 339, + "help": 340, + "true": 341, + "full": 342, + "person": 343, + "free": 344, + "doing": 345, + "call": 346, + "house": 347, + "least": 348, + "may": 349, + "hope": 350, + "needs": 351, + "through": 352, + "trying": 353, + "top": 354, + "restaurant": 355, + "reading": 356, + "won't": 357, + "chicken": 358, + "wasn't": 359, + "care": 360, + "??": 361, + "fact": 362, + "start": 363, + "comment": 364, + "part": 365, + "called": 366, + "end": 367, + "looks": 368, + "expected": 369, + "kind": 370, + "awful": 371, + "stay": 372, + "interesting": 373, + "bar": 374, + "almost": 375, + "mean": 376, + "problem": 377, + "stuff": 378, + "junk": 379, + "guys": 380, + "play": 381, + "asked": 382, + "isn't": 383, + "country": 384, + ";": 385, + "already": 386, + "post": 387, + "having": 388, + "set": 389, + "loved": 390, + "understand": 391, + "series": 392, + "until": 393, + "fans": 394, + "saying": 395, + "i'll": 396, + "deal": 397, + "seen": 398, + "women": 399, + "short": 400, + "talk": 401, + "staff": 402, + "table": 403, + "suck": 404, + "under": 405, + "side": 406, + "making": 407, + "quite": 408, + "cool": 409, + "idea": 410, + "check": 411, + "sorry": 412, + "school": 413, + "found": 414, + "whole": 415, + "friends": 416, + "either": 417, + "tried": 418, + "american": 419, + "u": 420, + "customer": 421, + "vegas": 422, + "second": 423, + "coming": 424, + "crap": 425, + "fine": 426, + "history": 427, + "months": 428, + "video": 429, + "fantastic": 430, + "disappointment": 431, + "half": 432, + "instead": 433, + "team": 434, + "face": 435, + "wish": 436, + "film": 437, + "dick": 438, + "ask": 439, + "mind": 440, + "others": 441, + "fast": 442, + "item": 443, + "might": 444, + "three": 445, + "absolutely": 446, + "friendly": 447, + "comments": 448, + "finally": 449, + "party": 450, + "days": 451, + "menu": 452, + "change": 453, + "working": 454, + "line": 455, + "super": 456, + "couldn't": 457, + "dog": 458, + "against": 459, + "hell": 460, + "gets": 461, + "save": 462, + "complete": 463, + "moron": 464, + "business": 465, + "run": 466, + "girl": 467, + "today": 468, + "water": 469, + "worked": 470, + "head": 471, + "s": 472, + "guess": 473, + "car": 474, + "damn": 475, + "i'd": 476, + "reason": 477, + "nigga": 478, + "case": 479, + "he's": 480, + "yeah": 481, + "fat": 482, + "books": 483, + "wife": 484, + "says": 485, + "lost": 486, + "rock": 487, + "sweet": 488, + "beware": 489, + "cheese": 490, + "state": 491, + "okay": 492, + "pathetic": 493, + "clean": 494, + "written": 495, + "each": 496, + "hey": 497, + "comes": 498, + "cute": 499, + "slow": 500, + "oh": 501, + "fit": 502, + "huge": 503, + "fresh": 504, + "shut": 505, + "course": 506, + "season": 507, + "you'll": 508, + "waiting": 509, + "pizza": 510, + "coffee": 511, + "child": 512, + "phone": 513, + "value": 514, + "sad": 515, + "light": 516, + "simple": 517, + "wouldn't": 518, + "taste": 519, + "friend": 520, + "special": 521, + "children": 522, + "kill": 523, + "simply": 524, + "recommend": 525, + "power": 526, + "decent": 527, + "enjoy": 528, + "e": 529, + "men": 530, + "drink": 531, + "cut": 532, + "seriously": 533, + "lunch": 534, + "hour": 535, + "low": 536, + "remember": 537, + "delicious": 538, + "non": 539, + "dead": 540, + "however": 541, + "open": 542, + "thank": 543, + "broke": 544, + "class": 545, + "sucks": 546, + "mother": 547, + "baby": 548, + "close": 549, + "later": 550, + "area": 551, + "self": 552, + "needed": 553, + "aren't": 554, + "truth": 555, + "boy": 556, + "ignorant": 557, + "support": 558, + "inside": 559, + "gave": 560, + "rest": 561, + "sauce": 562, + "bill": 563, + "picture": 564, + "week": 565, + "store": 566, + "seems": 567, + "blow": 568, + "red": 569, + "hit": 570, + "there's": 571, + "dinner": 572, + "version": 573, + "trash": 574, + "loser": 575, + "news": 576, + "leave": 577, + "word": 578, + "meal": 579, + "gift": 580, + "young": 581, + "drinks": 582, + "mouth": 583, + "totally": 584, + "garbage": 585, + "problems": 586, + "reviews": 587, + "war": 588, + "mom": 589, + "thinking": 590, + "ago": 591, + "bring": 592, + "size": 593, + "expect": 594, + "america": 595, + "past": 596, + "woman": 597, + "worse": 598, + "choice": 599, + "hear": 600, + "front": 601, + "unless": 602, + "matter": 603, + "looked": 604, + "girls": 605, + "rather": 606, + "hours": 607, + "die": 608, + "seem": 609, + "stand": 610, + "heard": 611, + "salad": 612, + "strong": 613, + "hair": 614, + "agree": 615, + "thanks": 616, + "president": 617, + "manager": 618, + "return": 619, + "style": 620, + "bother": 621, + "sick": 622, + "weak": 623, + "paid": 624, + "original": 625, + "missing": 626, + "saw": 627, + "behind": 628, + "during": 629, + "words": 630, + "able": 631, + "thats": 632, + "happened": 633, + "vote": 634, + "lots": 635, + "especially": 636, + "started": 637, + "bought": 638, + "goes": 639, + "son": 640, + "dude": 641, + "gone": 642, + "truly": 643, + "cover": 644, + "hotel": 645, + "games": 646, + "bag": 647, + "walk": 648, + "win": 649, + "song": 650, + "quick": 651, + "hand": 652, + "hole": 653, + "completely": 654, + "between": 655, + "exactly": 656, + "tea": 657, + "outside": 658, + "couple": 659, + "racist": 660, + "sense": 661, + "extremely": 662, + "learn": 663, + "*": 664, + "kid": 665, + "trade": 666, + "plus": 667, + "total": 668, + "location": 669, + "pick": 670, + "large": 671, + "box": 672, + "loves": 673, + "cannot": 674, + "using": 675, + "fool": 676, + "card": 677, + "law": 678, + "broken": 679, + "band": 680, + "information": 681, + "eating": 682, + "they're": 683, + "liked": 684, + "cold": 685, + "sounds": 686, + "living": 687, + "heart": 688, + "means": 689, + "heat": 690, + "group": 691, + "expensive": 692, + "burger": 693, + "toy": 694, + "parents": 695, + "design": 696, + "visit": 697, + "watching": 698, + "meat": 699, + "places": 700, + "act": 701, + "decided": 702, + "player": 703, + "purchase": 704, + "what's": 705, + "number": 706, + "sit": 707, + "obviously": 708, + "soon": 709, + "extra": 710, + "myself": 711, + "listen": 712, + "don": 713, + "collection": 714, + "beat": 715, + "stick": 716, + "husband": 717, + "forget": 718, + "together": 719, + "list": 720, + "company": 721, + "calling": 722, + "knew": 723, + "internet": 724, + "crazy": 725, + "writing": 726, + "human": 727, + "guide": 728, + "helpful": 729, + "songs": 730, + "drive": 731, + "town": 732, + "cause": 733, + "ones": 734, + "opinion": 735, + "beer": 736, + "fake": 737, + "miss": 738, + "late": 739, + "door": 740, + "knows": 741, + "lose": 742, + "fries": 743, + "wonder": 744, + "straight": 745, + "issues": 746, + "greatest": 747, + "death": 748, + "taking": 749, + "you've": 750, + "system": 751, + "brought": 752, + "playing": 753, + "wants": 754, + "spend": 755, + "hold": 756, + "serious": 757, + "average": 758, + "weeks": 759, + "public": 760, + "idiots": 761, + "poorly": 762, + "spot": 763, + "club": 764, + "christmas": 765, + "become": 766, + "joke": 767, + "ugly": 768, + "solid": 769, + "color": 770, + "clear": 771, + "etc": 772, + "city": 773, + "dry": 774, + "troll": 775, + "entire": 776, + "ice": 777, + "single": 778, + "server": 779, + "bread": 780, + "bet": 781, + "useless": 782, + "received": 783, + "four": 784, + "tv": 785, + "add": 786, + "cant": 787, + "stopped": 788, + "marriage": 789, + "ready": 790, + "green": 791, + "breakfast": 792, + "middle": 793, + "cream": 794, + "twice": 795, + "fair": 796, + "dark": 797, + "government": 798, + "highly": 799, + "view": 800, + "gonna": 801, + "overall": 802, + "usually": 803, + "type": 804, + "turn": 805, + "chance": 806, + "office": 807, + "movies": 808, + "takes": 809, + "kidding": 810, + "zero": 811, + "voice": 812, + "busy": 813, + "early": 814, + "prices": 815, + "rice": 816, + "month": 817, + "glad": 818, + "write": 819, + "realize": 820, + "question": 821, + "pussy": 822, + "shows": 823, + "giving": 824, + "whatever": 825, + "speak": 826, + "mad": 827, + "battery": 828, + "english": 829, + "anyway": 830, + "sandwich": 831, + "shot": 832, + "longer": 833, + "born": 834, + "que": 835, + "given": 836, + "felt": 837, + "sex": 838, + "clearly": 839, + "mr.": 840, + "bed": 841, + "pass": 842, + "pure": 843, + "avoid": 844, + "fish": 845, + "choose": 846, + "break": 847, + "level": 848, + "sushi": 849, + "mine": 850, + "entertaining": 851, + "attention": 852, + "rich": 853, + "ball": 854, + "step": 855, + "impressed": 856, + "facts": 857, + "john": 858, + "morning": 859, + "title": 860, + "haven't": 861, + "sent": 862, + "finish": 863, + "dirty": 864, + "control": 865, + "flavor": 866, + "daughter": 867, + "hands": 868, + "air": 869, + "roll": 870, + "cost": 871, + "+": 872, + "five": 873, + "important": 874, + "lady": 875, + "move": 876, + "tough": 877, + "let's": 878, + "issue": 879, + "shop": 880, + "paper": 881, + "arrived": 882, + "enjoyed": 883, + "fucked": 884, + "smart": 885, + "eye": 886, + "beef": 887, + "running": 888, + "walked": 889, + "near": 890, + "street": 891, + "along": 892, + "camera": 893, + "useful": 894, + "wine": 895, + "follow": 896, + "taken": 897, + "sign": 898, + "due": 899, + "dogs": 900, + "welcome": 901, + "action": 902, + "often": 903, + "democrat": 904, + "rude": 905, + "=": 906, + "supposed": 907, + "d": 908, + "smell": 909, + "fuckin": 910, + "king": 911, + "fall": 912, + "boys": 913, + "shame": 914, + "b": 915, + "fried": 916, + "proud": 917, + "lame": 918, + "major": 919, + "nobody": 920, + "charge": 921, + "soo": 922, + "beyond": 923, + "haha": 924, + "amazon": 925, + "respect": 926, + "yours": 927, + "we're": 928, + "loud": 929, + "doubt": 930, + "buying": 931, + "difficult": 932, + "several": 933, + "failed": 934, + "reply": 935, + "steak": 936, + "media": 937, + "blue": 938, + "th": 939, + "computer": 940, + "date": 941, + "disgusting": 942, + "sitting": 943, + "except": 944, + "pictures": 945, + "fight": 946, + "mess": 947, + "rip": 948, + "pm": 949, + "basic": 950, + "art": 951, + "brilliant": 952, + "romney": 953, + "died": 954, + "available": 955, + "kitchen": 956, + "%": 957, + "sometimes": 958, + "grow": 959, + "cup": 960, + "acting": 961, + "alone": 962, + "chocolate": 963, + "based": 964, + "correct": 965, + "soft": 966, + "lies": 967, + "strip": 968, + "age": 969, + "sir": 970, + "page": 971, + "brain": 972, + "body": 973, + "touch": 974, + "comfortable": 975, + "anymore": 976, + "per": 977, + "trip": 978, + "paying": 979, + "worthless": 980, + "hilarious": 981, + "pop": 982, + "send": 983, + "incredible": 984, + "killing": 985, + "deep": 986, + "screen": 987, + "none": 988, + "kept": 989, + "seeing": 990, + "health": 991, + "fire": 992, + "happen": 993, + "ain't": 994, + "gives": 995, + "gotta": 996, + "outstanding": 997, + "she's": 998, + "main": 999, + "answer": 1000, + "laugh": 1001, + "themselves": 1002, + "pool": 1003, + "served": 1004, + "father": 1005, + "race": 1006, + "bunch": 1007, + "soup": 1008, + "tax": 1009, + "didnt": 1010, + "chinese": 1011, + "moving": 1012, + "typical": 1013, + "warm": 1014, + "ridiculous": 1015, + "across": 1016, + "novel": 1017, + "won": 1018, + "tool": 1019, + "hmm": 1020, + "seemed": 1021, + "lives": 1022, + "bitches": 1023, + "liberal": 1024, + "edition": 1025, + "easily": 1026, + "bible": 1027, + "space": 1028, + "cat": 1029, + "de": 1030, + "effort": 1031, + "brown": 1032, + "deserve": 1033, + "spent": 1034, + "forever": 1035, + "t": 1036, + "holy": 1037, + "lovely": 1038, + "road": 1039, + "feeling": 1040, + "apparently": 1041, + "starting": 1042, + "posts": 1043, + "changed": 1044, + "dish": 1045, + "states": 1046, + "wtf": 1047, + "absolute": 1048, + "ahead": 1049, + "weird": 1050, + "bullshit": 1051, + "waitress": 1052, + "w": 1053, + "trouble": 1054, + "rape": 1055, + "blood": 1056, + "weren't": 1057, + "eyes": 1058, + "quickly": 1059, + "warning": 1060, + "evil": 1061, + "nasty": 1062, + "n": 1063, + "performance": 1064, + "walking": 1065, + "lucky": 1066, + "turned": 1067, + "pull": 1068, + "recommended": 1069, + "ended": 1070, + "possible": 1071, + "false": 1072, + "normal": 1073, + "amount": 1074, + "dance": 1075, + "rocks": 1076, + "pack": 1077, + "ate": 1078, + "sister": 1079, + "la": 1080, + "hurt": 1081, + "brother": 1082, + "drop": 1083, + "plan": 1084, + "personal": 1085, + "annoying": 1086, + "summer": 1087, + "within": 1088, + "record": 1089, + "x": 1090, + "trust": 1091, + "floor": 1092, + "meet": 1093, + "c": 1094, + "mistake": 1095, + "tasty": 1096, + "account": 1097, + "fix": 1098, + "dad": 1099, + "silly": 1100, + "sleep": 1101, + "plate": 1102, + "mention": 1103, + "kinda": 1104, + "fabulous": 1105, + "weekend": 1106, + "empty": 1107, + "throw": 1108, + "social": 1109, + "park": 1110, + "sat": 1111, + "selection": 1112, + "machine": 1113, + "sell": 1114, + "cooked": 1115, + "cuz": 1116, + "lying": 1117, + "french": 1118, + "future": 1119, + "honest": 1120, + "heavy": 1121, + "minute": 1122, + "excuse": 1123, + "surprised": 1124, + "wall": 1125, + "shouldn't": 1126, + "likes": 1127, + "waited": 1128, + "although": 1129, + "tasted": 1130, + "atmosphere": 1131, + ":)": 1132, + "skin": 1133, + "general": 1134, + "lack": 1135, + "keeps": 1136, + "luck": 1137, + "seat": 1138, + "wanna": 1139, + "shoes": 1140, + "played": 1141, + "glass": 1142, + "cake": 1143, + "ride": 1144, + "items": 1145, + "surprise": 1146, + "tired": 1147, + "mexican": 1148, + "asking": 1149, + "itself": 1150, + "workout": 1151, + "telling": 1152, + "bottle": 1153, + "lets": 1154, + "buffet": 1155, + "message": 1156, + "share": 1157, + "flat": 1158, + "literally": 1159, + "killed": 1160, + "difference": 1161, + "pain": 1162, + "soul": 1163, + "aint": 1164, + "players": 1165, + "online": 1166, + "ending": 1167, + "fox": 1168, + "asshole": 1169, + "lmao": 1170, + "certainly": 1171, + "board": 1172, + "forgot": 1173, + "science": 1174, + "lie": 1175, + "beginning": 1176, + "you'd": 1177, + "million": 1178, + "offer": 1179, + "mac": 1180, + "happens": 1181, + "college": 1182, + "proof": 1183, + "above": 1184, + "stories": 1185, + "positive": 1186, + "safe": 1187, + "somewhere": 1188, + "dollars": 1189, + "jack": 1190, + "quit": 1191, + "ray": 1192, + "figure": 1193, + "pieces": 1194, + "known": 1195, + "drugs": 1196, + "fell": 1197, + "jesus": 1198, + "hungry": 1199, + "credit": 1200, + "reference": 1201, + "apart": 1202, + "political": 1203, + "parking": 1204, + "copy": 1205, + "pro": 1206, + "bottom": 1207, + "basically": 1208, + "paul": 1209, + "forward": 1210, + "double": 1211, + "saturday": 1212, + "treat": 1213, + "scary": 1214, + "regular": 1215, + "listening": 1216, + "perhaps": 1217, + "balls": 1218, + "cares": 1219, + "sort": 1220, + "las": 1221, + "article": 1222, + "mediocre": 1223, + "honestly": 1224, + "whore": 1225, + "text": 1226, + "retarded": 1227, + "**": 1228, + "omg": 1229, + "drunk": 1230, + "caught": 1231, + "blame": 1232, + "biggest": 1233, + "note": 1234, + "rate": 1235, + "tables": 1236, + "tonight": 1237, + "period": 1238, + "chips": 1239, + "usual": 1240, + "language": 1241, + "re": 1242, + "apple": 1243, + "ugh": 1244, + "wont": 1245, + "imagine": 1246, + "local": 1247, + "everybody": 1248, + "oil": 1249, + "niggas": 1250, + "f": 1251, + "cry": 1252, + "mix": 1253, + "excited": 1254, + "unfortunately": 1255, + "perfectly": 1256, + "spanish": 1257, + "plain": 1258, + "himself": 1259, + "posting": 1260, + "moment": 1261, + "christian": 1262, + "spending": 1263, + "explain": 1264, + "dishes": 1265, + "stuck": 1266, + "study": 1267, + "feet": 1268, + "owner": 1269, + "worry": 1270, + "police": 1271, + "including": 1272, + "smoke": 1273, + "lil": 1274, + "missed": 1275, + "earth": 1276, + "common": 1277, + "match": 1278, + "plenty": 1279, + "track": 1280, + "enjoyable": 1281, + "liberals": 1282, + "div": 1283, + "notice": 1284, + "porn": 1285, + "national": 1286, + "walker": 1287, + "gun": 1288, + "huh": 1289, + "~": 1290, + "shrimp": 1291, + "tip": 1292, + "faith": 1293, + "rights": 1294, + "football": 1295, + "negative": 1296, + "till": 1297, + "plastic": 1298, + "stayed": 1299, + "restaurants": 1300, + "closed": 1301, + "third": 1302, + "dream": 1303, + "ideas": 1304, + "magic": 1305, + "reality": 1306, + "site": 1307, + "federal": 1308, + "americans": 1309, + "female": 1310, + "st": 1311, + "key": 1312, + "misleading": 1313, + "questions": 1314, + "shoot": 1315, + "lazy": 1316, + "skip": 1317, + "wake": 1318, + "min": 1319, + "wing": 1320, + "advice": 1321, + "talent": 1322, + "o": 1323, + "barely": 1324, + "facebook": 1325, + "friday": 1326, + "release": 1327, + "six": 1328, + "fail": 1329, + "dear": 1330, + "joe": 1331, + "claim": 1332, + "where's": 1333, + "david": 1334, + "weight": 1335, + "info": 1336, + "advertised": 1337, + "defective": 1338, + "nope": 1339, + "waiter": 1340, + "r": 1341, + "hype": 1342, + "older": 1343, + "leaving": 1344, + "customers": 1345, + "radio": 1346, + "nor": 1347, + "bacon": 1348, + "modern": 1349, + "hits": 1350, + "birthday": 1351, + "pleased": 1352, + "church": 1353, + "indeed": 1354, + "folks": 1355, + "points": 1356, + "travel": 1357, + "court": 1358, + "photo": 1359, + "rolls": 1360, + "example": 1361, + "jobs": 1362, + "checked": 1363, + "handle": 1364, + "cook": 1365, + "model": 1366, + "anywhere": 1367, + "south": 1368, + "rules": 1369, + "hang": 1370, + "careful": 1371, + "wings": 1372, + "cash": 1373, + "posted": 1374, + "btw": 1375, + "packed": 1376, + "dangerous": 1377, + "ill": 1378, + "bite": 1379, + "queen": 1380, + "loving": 1381, + "author": 1382, + "punk": 1383, + "mixed": 1384, + "religion": 1385, + "brand": 1386, + "option": 1387, + "gorgeous": 1388, + "m": 1389, + "present": 1390, + "allowed": 1391, + "north": 1392, + "crack": 1393, + "tiny": 1394, + "bro": 1395, + "kick": 1396, + "test": 1397, + "judge": 1398, + "boyfriend": 1399, + "cars": 1400, + "nd": 1401, + "whether": 1402, + "united": 1403, + "count": 1404, + "smoking": 1405, + "pork": 1406, + "rooms": 1407, + "chicago": 1408, + "watched": 1409, + "episode": 1410, + "attitude": 1411, + "upon": 1412, + "finished": 1413, + "we've": 1414, + "budget": 1415, + "doctor": 1416, + "learning": 1417, + "blah": 1418, + "round": 1419, + "con": 1420, + "anti": 1421, + "consider": 1422, + "bush": 1423, + "guilty": 1424, + "dessert": 1425, + "thinks": 1426, + "gold": 1427, + "response": 1428, + "standing": 1429, + "wearing": 1430, + "picked": 1431, + "military": 1432, + "evening": 1433, + "options": 1434, + "term": 1435, + "horror": 1436, + "showed": 1437, + "situation": 1438, + "shirt": 1439, + "sunday": 1440, + "bout": 1441, + "pulled": 1442, + "appreciate": 1443, + "yesterday": 1444, + "society": 1445, + "gotten": 1446, + "wear": 1447, + "otherwise": 1448, + "attack": 1449, + "ground": 1450, + "delivery": 1451, + "learned": 1452, + "spicy": 1453, + "gas": 1454, + "private": 1455, + "everyday": 1456, + "energy": 1457, + "smh": 1458, + "feels": 1459, + "bowl": 1460, + "doesnt": 1461, + "filled": 1462, + "form": 1463, + "west": 1464, + "afraid": 1465, + "professional": 1466, + "everywhere": 1467, + "sun": 1468, + "noticed": 1469, + "pre": 1470, + "murder": 1471, + "concert": 1472, + "actual": 1473, + "mark": 1474, + "moved": 1475, + "lord": 1476, + "wild": 1477, + "comedy": 1478, + "george": 1479, + "content": 1480, + "thin": 1481, + "material": 1482, + "ring": 1483, + "nearly": 1484, + "pie": 1485, + "glasses": 1486, + "sexy": 1487, + "employees": 1488, + "cable": 1489, + "continue": 1490, + "heaven": 1491, + "parts": 1492, + "satisfied": 1493, + "hanging": 1494, + "characters": 1495, + "somebody": 1496, + "bomb": 1497, + "legs": 1498, + "website": 1499, + "fault": 1500, + "alot": 1501, + "met": 1502, + "land": 1503, + "impossible": 1504, + "married": 1505, + "james": 1506, + "faggot": 1507, + ":(": 1508, + "plot": 1509, + "hoping": 1510, + "dress": 1511, + "crying": 1512, + "taxes": 1513, + "tacos": 1514, + "laws": 1515, + "illegal": 1516, + "complain": 1517, + "foot": 1518, + "g": 1519, + "republican": 1520, + "confused": 1521, + "diet": 1522, + "egg": 1523, + "secret": 1524, + "k": 1525, + "clothes": 1526, + "weather": 1527, + "prove": 1528, + "boss": 1529, + "ten": 1530, + "quiet": 1531, + "michael": 1532, + "conservative": 1533, + "usa": 1534, + "daily": 1535, + "healthy": 1536, + "mostly": 1537, + "u.s.": 1538, + "wrote": 1539, + "catch": 1540, + "student": 1541, + "strange": 1542, + "powerful": 1543, + "putting": 1544, + "counter": 1545, + "nose": 1546, + "possibly": 1547, + "expecting": 1548, + "force": 1549, + "sugar": 1550, + "windows": 1551, + "students": 1552, + "helped": 1553, + "description": 1554, + "final": 1555, + "republicans": 1556, + "kindle": 1557, + "bathroom": 1558, + "italian": 1559, + "favor": 1560, + "hahaha": 1561, + "memory": 1562, + "china": 1563, + "insurance": 1564, + "ways": 1565, + "carry": 1566, + "overpriced": 1567, + "intelligent": 1568, + "practice": 1569, + "whats": 1570, + "babies": 1571, + "clue": 1572, + "drug": 1573, + "informative": 1574, + "milk": 1575, + "tomorrow": 1576, + "tells": 1577, + "we'll": 1578, + "training": 1579, + "replacement": 1580, + "alright": 1581, + "daddy": 1582, + "unique": 1583, + "exciting": 1584, + "memories": 1585, + "bigger": 1586, + "who's": 1587, + "security": 1588, + "natural": 1589, + "shopping": 1590, + "gross": 1591, + "planet": 1592, + "passed": 1593, + "subject": 1594, + "bright": 1595, + "ignore": 1596, + "winner": 1597, + "peace": 1598, + "center": 1599, + "meant": 1600, + "bloody": 1601, + "buyer": 1602, + "winning": 1603, + "nation": 1604, + "logic": 1605, + "freedom": 1606, + "finding": 1607, + "butt": 1608, + "seconds": 1609, + "campaign": 1610, + "knowing": 1611, + "bless": 1612, + "sing": 1613, + "nails": 1614, + "birth": 1615, + "letting": 1616, + "mini": 1617, + "dull": 1618, + "reasons": 1619, + "un": 1620, + "immediately": 1621, + "pair": 1622, + "boo": 1623, + "drinking": 1624, + "eh": 1625, + "pot": 1626, + "drama": 1627, + "flag": 1628, + "yea": 1629, + "beauty": 1630, + "following": 1631, + "mama": 1632, + "saved": 1633, + "success": 1634, + "stfu": 1635, + "chris": 1636, + "hopefully": 1637, + "yummy": 1638, + "offered": 1639, + "standard": 1640, + "calls": 1641, + "window": 1642, + "ticket": 1643, + "upset": 1644, + "dreams": 1645, + "bland": 1646, + "starts": 1647, + "buddy": 1648, + "hip": 1649, + "breaks": 1650, + "p": 1651, + "noise": 1652, + "considering": 1653, + "dining": 1654, + "girlfriend": 1655, + "opened": 1656, + "print": 1657, + "thoughts": 1658, + "fly": 1659, + "accurate": 1660, + "driving": 1661, + "fiction": 1662, + "harry": 1663, + "sports": 1664, + "recently": 1665, + "sold": 1666, + "shower": 1667, + "metal": 1668, + "earlier": 1669, + "products": 1670, + "speaking": 1671, + "hasn't": 1672, + "station": 1673, + "wanting": 1674, + "wash": 1675, + "wasted": 1676, + "confusing": 1677, + "character": 1678, + "bang": 1679, + "higher": 1680, + "sadly": 1681, + "york": 1682, + "wedding": 1683, + "email": 1684, + "ruined": 1685, + "burn": 1686, + "yep": 1687, + "hello": 1688, + "turns": 1689, + "texas": 1690, + "prison": 1691, + "los": 1692, + "education": 1693, + "bored": 1694, + "wide": 1695, + "results": 1696, + "falling": 1697, + "tight": 1698, + "charged": 1699, + "research": 1700, + "v": 1701, + "smile": 1702, + "retard": 1703, + "singing": 1704, + "market": 1705, + "field": 1706, + "alive": 1707, + "bus": 1708, + "moms": 1709, + "focus": 1710, + "members": 1711, + "member": 1712, + "blind": 1713, + "ppl": 1714, + "resource": 1715, + "building": 1716, + "male": 1717, + "decision": 1718, + "hated": 1719, + "afternoon": 1720, + "losing": 1721, + "certain": 1722, + "freaking": 1723, + "matters": 1724, + "master": 1725, + "angel": 1726, + "nonsense": 1727, + "bike": 1728, + "butter": 1729, + "lasted": 1730, + "holiday": 1731, + "attempt": 1732, + "ladies": 1733, + "outta": 1734, + "im": 1735, + "dare": 1736, + "profile": 1737, + "piss": 1738, + "entertainment": 1739, + "angry": 1740, + "california": 1741, + "staying": 1742, + "horse": 1743, + "smells": 1744, + "leaves": 1745, + "photos": 1746, + "changing": 1747, + "ages": 1748, + "returned": 1749, + "scared": 1750, + "suppose": 1751, + "dollar": 1752, + "lived": 1753, + "[": 1754, + "program": 1755, + "event": 1756, + "thru": 1757, + "crowd": 1758, + "serve": 1759, + "changes": 1760, + "goodness": 1761, + "easier": 1762, + "eggs": 1763, + "deserves": 1764, + "link": 1765, + "casino": 1766, + "threw": 1767, + "east": 1768, + "artist": 1769, + "keeping": 1770, + "teachers": 1771, + "trailer": 1772, + "wet": 1773, + "disqus": 1774, + "conversation": 1775, + "knock": 1776, + "relationship": 1777, + "asian": 1778, + "fear": 1779, + "]": 1780, + "bbq": 1781, + "spring": 1782, + "haters": 1783, + "beach": 1784, + "punch": 1785, + "tho": 1786, + "happening": 1787, + "pic": 1788, + "cards": 1789, + "thick": 1790, + "update": 1791, + "hill": 1792, + "masterpiece": 1793, + "tree": 1794, + "sale": 1795, + "block": 1796, + "addition": 1797, + "breath": 1798, + "famous": 1799, + "twitter": 1800, + "promise": 1801, + "lead": 1802, + "pages": 1803, + "tour": 1804, + "badly": 1805, + "grade": 1806, + "majority": 1807, + "rare": 1808, + "below": 1809, + "dancing": 1810, + "shipping": 1811, + "election": 1812, + "plays": 1813, + "brothers": 1814, + "beginners": 1815, + "lights": 1816, + "besides": 1817, + "incredibly": 1818, + "rap": 1819, + "tom": 1820, + "admit": 1821, + "pissed": 1822, + "towards": 1823, + "community": 1824, + "screw": 1825, + "massage": 1826, + "guns": 1827, + "train": 1828, + "prefer": 1829, + "candy": 1830, + "mentioned": 1831, + "personally": 1832, + "superb": 1833, + "stomach": 1834, + "raw": 1835, + "lower": 1836, + "mood": 1837, + "mins": 1838, + "quote": 1839, + "legal": 1840, + "forum": 1841, + "dying": 1842, + "rating": 1843, + "showing": 1844, + "nights": 1845, + "pray": 1846, + "mystery": 1847, + "yall": 1848, + "desk": 1849, + "grab": 1850, + "hero": 1851, + "journey": 1852, + "software": 1853, + "seated": 1854, + "rd": 1855, + "prepared": 1856, + "swear": 1857, + "orange": 1858, + "sea": 1859, + "likely": 1860, + "feed": 1861, + "priced": 1862, + "iran": 1863, + "cooking": 1864, + "complaining": 1865, + "accept": 1866, + "sub": 1867, + "reasonable": 1868, + "headphones": 1869, + "ha": 1870, + "talked": 1871, + "pants": 1872, + "owned": 1873, + "hardly": 1874, + "monday": 1875, + "obvious": 1876, + "scene": 1877, + "kiss": 1878, + "limited": 1879, + "expectations": 1880, + "neck": 1881, + "hitting": 1882, + "taco": 1883, + "concept": 1884, + "vs": 1885, + "da": 1886, + "adventure": 1887, + "gym": 1888, + "runs": 1889, + "compared": 1890, + "fruit": 1891, + "shoe": 1892, + "choices": 1893, + "stage": 1894, + "filter": 1895, + "nail": 1896, + "l": 1897, + "charger": 1898, + "mike": 1899, + "beans": 1900, + "painful": 1901, + "address": 1902, + "animals": 1903, + "dropped": 1904, + "mouse": 1905, + "they'll": 1906, + "fighting": 1907, + "bucks": 1908, + "bank": 1909, + "honey": 1910, + "anyways": 1911, + "receive": 1912, + "guitar": 1913, + "names": 1914, + "anybody": 1915, + "lmfao": 1916, + "laughing": 1917, + "teacher": 1918, + "opening": 1919, + "covered": 1920, + "shots": 1921, + "switch": 1922, + "source": 1923, + "loss": 1924, + "le": 1925, + "eaten": 1926, + "wind": 1927, + "bags": 1928, + "juice": 1929, + "teeth": 1930, + "talented": 1931, + "ordering": 1932, + "baseball": 1933, + "leg": 1934, + "adults": 1935, + "wars": 1936, + "wit": 1937, + "interested": 1938, + "falls": 1939, + "overrated": 1940, + "pasta": 1941, + "decide": 1942, + "bringing": 1943, + "h": 1944, + "anytime": 1945, + "plane": 1946, + "conservatives": 1947, + "pink": 1948, + "former": 1949, + "knife": 1950, + "grand": 1951, + "justice": 1952, + "mm": 1953, + "del": 1954, + "salty": 1955, + "iphone": 1956, + "crab": 1957, + "helping": 1958, + "added": 1959, + "shall": 1960, + "section": 1961, + "ends": 1962, + "nuts": 1963, + "ya": 1964, + "interest": 1965, + "followed": 1966, + "hop": 1967, + "fingers": 1968, + "process": 1969, + "rush": 1970, + "y": 1971, + "potato": 1972, + "favorites": 1973, + "lines": 1974, + "introduction": 1975, + "fantasy": 1976, + "chain": 1977, + "meaning": 1978, + "purpose": 1979, + "statement": 1980, + "cleaning": 1981, + "join": 1982, + "romance": 1983, + "appointment": 1984, + "corner": 1985, + "salt": 1986, + "previous": 1987, + "umm": 1988, + "videos": 1989, + "position": 1990, + "herself": 1991, + "el": 1992, + "effective": 1993, + "shock": 1994, + "congress": 1995, + "mate": 1996, + "math": 1997, + "basketball": 1998, + "hat": 1999, + "mall": 2000, + "unit": 2001, + "despite": 2002, + "albums": 2003, + "frozen": 2004, + "y'all": 2005, + "rick": 2006, + "em": 2007, + "thai": 2008, + "successful": 2009, + "practical": 2010, + "build": 2011, + "argument": 2012, + "throwing": 2013, + "puts": 2014, + "currently": 2015, + "package": 2016, + "chose": 2017, + "enjoying": 2018, + "chick": 2019, + "holding": 2020, + "pig": 2021, + "rough": 2022, + "aww": 2023, + "ipod": 2024, + "feelings": 2025, + "lock": 2026, + "jump": 2027, + "ran": 2028, + "lacking": 2029, + "miami": 2030, + "management": 2031, + "sides": 2032, + "teach": 2033, + "random": 2034, + "created": 2035, + "driver": 2036, + "audio": 2037, + "smooth": 2038, + "democrats": 2039, + "animal": 2040, + "hide": 2041, + "cookies": 2042, + "chair": 2043, + "heads": 2044, + "sucked": 2045, + "agreed": 2046, + "costs": 2047, + "harder": 2048, + "brings": 2049, + "cats": 2050, + "genius": 2051, + "humor": 2052, + "delivered": 2053, + "youre": 2054, + "lay": 2055, + "score": 2056, + "mail": 2057, + "island": 2058, + "knowledge": 2059, + "meeting": 2060, + "pics": 2061, + "yelp": 2062, + "river": 2063, + "awkward": 2064, + "moon": 2065, + "charges": 2066, + "chill": 2067, + "slightly": 2068, + "hoe": 2069, + "yellow": 2070, + "indian": 2071, + "flight": 2072, + "potatoes": 2073, + "rain": 2074, + "pleasant": 2075, + "recording": 2076, + "pan": 2077, + "bob": 2078, + "pet": 2079, + "dat": 2080, + "potential": 2081, + "blog": 2082, + "hood": 2083, + "grill": 2084, + "hearing": 2085, + "picking": 2086, + "click": 2087, + "willing": 2088, + "adorable": 2089, + "fucks": 2090, + ":-)": 2091, + "sin": 2092, + "spell": 2093, + "pleasure": 2094, + "numbers": 2095, + "saving": 2096, + "edge": 2097, + "pour": 2098, + "culture": 2099, + "san": 2100, + "burgers": 2101, + "elsewhere": 2102, + "tuesday": 2103, + "ima": 2104, + "hospital": 2105, + "crappy": 2106, + "att": 2107, + "raised": 2108, + "salsa": 2109, + "ive": 2110, + "sum": 2111, + "growing": 2112, + "worried": 2113, + "whoever": 2114, + "tale": 2115, + "speech": 2116, + "soundtrack": 2117, + "lesson": 2118, + "tickets": 2119, + "emotional": 2120, + "exam": 2121, + "ii": 2122, + "mental": 2123, + "ignorance": 2124, + "bell": 2125, + "contact": 2126, + "mirror": 2127, + "yay": 2128, + "toast": 2129, + "duck": 2130, + "regardless": 2131, + "israel": 2132, + "interview": 2133, + "uncomfortable": 2134, + "current": 2135, + "jealous": 2136, + "prime": 2137, + "button": 2138, + "stone": 2139, + "ultimate": 2140, + "par": 2141, + "kit": 2142, + "mistakes": 2143, + "alcohol": 2144, + "battle": 2145, + "eventually": 2146, + "exist": 2147, + "al": 2148, + "somehow": 2149, + "doll": 2150, + "begin": 2151, + "lover": 2152, + "ears": 2153, + "provide": 2154, + "blacks": 2155, + "bird": 2156, + "tastes": 2157, + "repeat": 2158, + "project": 2159, + "corn": 2160, + "j": 2161, + "here's": 2162, + "allow": 2163, + "inspiring": 2164, + "signed": 2165, + "disney": 2166, + "chef": 2167, + "everytime": 2168, + "giant": 2169, + "dr.": 2170, + "orders": 2171, + "cousin": 2172, + "wins": 2173, + "uses": 2174, + "ear": 2175, + "craving": 2176, + "marry": 2177, + "range": 2178, + "checking": 2179, + "neither": 2180, + "killer": 2181, + "arms": 2182, + "dan": 2183, + "lousy": 2184, + "grown": 2185, + "flying": 2186, + "nightmare": 2187, + "joint": 2188, + "messed": 2189, + "england": 2190, + "clock": 2191, + "depressing": 2192, + "push": 2193, + "stinks": 2194, + "ship": 2195, + "selling": 2196, + "compare": 2197, + "senior": 2198, + "tech": 2199, + "described": 2200, + "snap": 2201, + "dumbass": 2202, + "penny": 2203, + "odd": 2204, + "accident": 2205, + "terrific": 2206, + "era": 2207, + "lips": 2208, + "solo": 2209, + "realized": 2210, + "bitter": 2211, + "serving": 2212, + "yup": 2213, + "sleeping": 2214, + "wondering": 2215, + "mass": 2216, + "hating": 2217, + "closer": 2218, + "cutting": 2219, + "hurts": 2220, + "coach": 2221, + "understanding": 2222, + "heck": 2223, + "mary": 2224, + "proper": 2225, + "epic": 2226, + "sucking": 2227, + "yoga": 2228, + "fails": 2229, + "#": 2230, + "planning": 2231, + "jazz": 2232, + "touching": 2233, + "embarrassing": 2234, + "career": 2235, + "$$": 2236, + "included": 2237, + "ron": 2238, + "built": 2239, + "joy": 2240, + "foreign": 2241, + "maker": 2242, + "luv": 2243, + "nature": 2244, + "official": 2245, + "en": 2246, + "hi": 2247, + "gang": 2248, + "congrats": 2249, + "blues": 2250, + "para": 2251, + "fucker": 2252, + "ups": 2253, + "insane": 2254, + "mas": 2255, + "breaking": 2256, + "shitty": 2257, + "fits": 2258, + "fixed": 2259, + "remind": 2260, + "naked": 2261, + "nbsp": 2262, + "raise": 2263, + "speed": 2264, + "airport": 2265, + "princess": 2266, + "policy": 2267, + "idol": 2268, + "they've": 2269, + "es": 2270, + "sam": 2271, + "gem": 2272, + "figured": 2273, + "views": 2274, + "bath": 2275, + "arm": 2276, + "express": 2277, + "base": 2278, + "hollywood": 2279, + "tape": 2280, + "protect": 2281, + "freak": 2282, + "followers": 2283, + "ps": 2284, + "headed": 2285, + "whose": 2286, + "reach": 2287, + "twist": 2288, + "noo": 2289, + "uncle": 2290, + "treated": 2291, + "attractive": 2292, + "doctors": 2293, + "cunt": 2294, + "it'll": 2295, + "cross": 2296, + "musical": 2297, + "held": 2298, + "decor": 2299, + "rule": 2300, + "digital": 2301, + "til": 2302, + "creative": 2303, + "google": 2304, + "creepy": 2305, + "user": 2306, + "cast": 2307, + "defense": 2308, + "duty": 2309, + "truck": 2310, + "unbelievable": 2311, + "spirit": 2312, + "headache": 2313, + "mommy": 2314, + "whenever": 2315, + "massive": 2316, + "selfish": 2317, + "calm": 2318, + "blu": 2319, + "shape": 2320, + "tan": 2321, + "classes": 2322, + "row": 2323, + "yo": 2324, + "sending": 2325, + "cancer": 2326, + "sexual": 2327, + "century": 2328, + "dated": 2329, + "medical": 2330, + "sharing": 2331, + "annoyed": 2332, + "behavior": 2333, + "lovers": 2334, + "turning": 2335, + "miles": 2336, + "library": 2337, + "inspiration": 2338, + "today's": 2339, + "topic": 2340, + "romantic": 2341, + "skills": 2342, + "mitt": 2343, + "idiotic": 2344, + "code": 2345, + "plans": 2346, + "purchased": 2347, + "loose": 2348, + "fraud": 2349, + "medium": 2350, + "laptop": 2351, + "struggle": 2352, + "lyrics": 2353, + "constantly": 2354, + "regret": 2355, + "adult": 2356, + "similar": 2357, + "golden": 2358, + "et": 2359, + "disc": 2360, + "lo": 2361, + "press": 2362, + "def": 2363, + "blast": 2364, + "safety": 2365, + "clown": 2366, + "dressed": 2367, + "childish": 2368, + "argue": 2369, + "crime": 2370, + "jail": 2371, + "starbucks": 2372, + "liar": 2373, + "production": 2374, + "impressive": 2375, + "cock": 2376, + "condition": 2377, + "lebron": 2378, + "perfection": 2379, + "propaganda": 2380, + "reader": 2381, + "soy": 2382, + "pulling": 2383, + "concerned": 2384, + "rings": 2385, + "helps": 2386, + "drake": 2387, + "japanese": 2388, + "named": 2389, + "cried": 2390, + "fellow": 2391, + "hoes": 2392, + "teams": 2393, + "he'll": 2394, + "noodles": 2395, + "hahahaha": 2396, + "became": 2397, + "app": 2398, + "lately": 2399, + "tears": 2400, + "multiple": 2401, + "films": 2402, + "florida": 2403, + "properly": 2404, + "people's": 2405, + "com": 2406, + "slap": 2407, + "wednesday": 2408, + "tons": 2409, + "jokes": 2410, + "sky": 2411, + "fascinating": 2412, + "load": 2413, + "variety": 2414, + "steve": 2415, + "voted": 2416, + "jackson": 2417, + "league": 2418, + "economy": 2419, + "funniest": 2420, + "fill": 2421, + "describe": 2422, + "iron": 2423, + "turkey": 2424, + "boots": 2425, + "outdated": 2426, + "fully": 2427, + "somewhat": 2428, + "streets": 2429, + "christ": 2430, + "puppy": 2431, + "defend": 2432, + "ruin": 2433, + "asleep": 2434, + "ah": 2435, + "wise": 2436, + "wayne": 2437, + "phones": 2438, + "nowhere": 2439, + "cheaper": 2440, + "camp": 2441, + "frank": 2442, + "alarm": 2443, + "garlic": 2444, + "phoenix": 2445, + "evidence": 2446, + "sandwiches": 2447, + "holder": 2448, + "tag": 2449, + "bf": 2450, + "politics": 2451, + "sales": 2452, + "belly": 2453, + "rob": 2454, + "garden": 2455, + "bye": 2456, + "steal": 2457, + "employee": 2458, + "sisters": 2459, + "senate": 2460, + "shooting": 2461, + "makeup": 2462, + "span": 2463, + "id": 2464, + "beating": 2465, + "would've": 2466, + "lit": 2467, + "rent": 2468, + "oops": 2469, + "bars": 2470, + "further": 2471, + "thursday": 2472, + "nah": 2473, + "jay": 2474, + "legit": 2475, + "females": 2476, + "messages": 2477, + "planned": 2478, + "booty": 2479, + "pas": 2480, + "sausage": 2481, + "max": 2482, + "features": 2483, + "army": 2484, + "uh": 2485, + "chat": 2486, + "laughed": 2487, + "thousands": 2488, + "devil": 2489, + "meh": 2490, + "momma": 2491, + "assume": 2492, + "filthy": 2493, + "ahh": 2494, + "ooh": 2495, + "screwed": 2496, + "faster": 2497, + "una": 2498, + "stock": 2499, + "gosh": 2500, + "according": 2501, + "snow": 2502, + "innocent": 2503, + "pointless": 2504, + "screaming": 2505, + "rated": 2506, + "vacation": 2507, + "related": 2508, + "delete": 2509, + "rose": 2510, + "whites": 2511, + "woke": 2512, + "les": 2513, + "relax": 2514, + "surprisingly": 2515, + "flash": 2516, + "role": 2517, + "grilled": 2518, + "tall": 2519, + "damaged": 2520, + "channel": 2521, + "booked": 2522, + "london": 2523, + "luke": 2524, + "gon": 2525, + "reminds": 2526, + "trolls": 2527, + "cafe": 2528, + "um": 2529, + "failure": 2530, + "mexico": 2531, + "liking": 2532, + "youtube": 2533, + "asses": 2534, + "target": 2535, + "idk": 2536, + "rid": 2537, + "hall": 2538, + "plz": 2539, + "colors": 2540, + "pretend": 2541, + "traffic": 2542, + "suggest": 2543, + "chelsea": 2544, + "se": 2545, + "cop": 2546, + "bone": 2547, + "smack": 2548, + "stunning": 2549, + "extreme": 2550, + "ex": 2551, + "pregnant": 2552, + "hurting": 2553, + "bc": 2554, + "parties": 2555, + "ohh": 2556, + "required": 2557, + "events": 2558, + "among": 2559, + "winter": 2560, + "younger": 2561, + "toilet": 2562, + "minds": 2563, + "goodnight": 2564, + "finger": 2565, + "seller": 2566, + "relaxing": 2567, + "cases": 2568, + "someone's": 2569, + "faces": 2570, + "limit": 2571, + "congratulations": 2572, + "burrito": 2573, + "weed": 2574, + "schedule": 2575, + "voting": 2576, + "effect": 2577, + "frustrating": 2578, + "cracked": 2579, + "sour": 2580, + "worthy": 2581, + "van": 2582, + "talkin": 2583, + "fancy": 2584, + "tries": 2585, + "blowing": 2586, + "suit": 2587, + "miserable": 2588, + "singer": 2589, + "mission": 2590, + "historical": 2591, + "report": 2592, + "fav": 2593, + "lied": 2594, + "holes": 2595, + "lemon": 2596, + "stole": 2597, + "dave": 2598, + "seats": 2599, + "durable": 2600, + "normally": 2601, + "morons": 2602, + "wifi": 2603, + "blew": 2604, + "essential": 2605, + "ghost": 2606, + "intelligence": 2607, + "ma": 2608, + "pocket": 2609, + "nap": 2610, + "hurry": 2611, + "smaller": 2612, + "generation": 2613, + "schools": 2614, + "hay": 2615, + "network": 2616, + "details": 2617, + "claims": 2618, + "fairly": 2619, + "county": 2620, + "lobster": 2621, + "nervous": 2622, + "benefits": 2623, + "ben": 2624, + "swing": 2625, + "hates": 2626, + "couples": 2627, + "involved": 2628, + "paint": 2629, + "spoiled": 2630, + "seafood": 2631, + "criminal": 2632, + "hater": 2633, + "monkey": 2634, + "sentence": 2635, + "joking": 2636, + "millions": 2637, + "slowly": 2638, + "yum": 2639, + "ur": 2640, + "allah": 2641, + "purple": 2642, + "prince": 2643, + "thunder": 2644, + "skinny": 2645, + "clinton": 2646, + "destroy": 2647, + "promised": 2648, + "legend": 2649, + "grandma": 2650, + "printer": 2651, + "banana": 2652, + "tattoo": 2653, + "entirely": 2654, + "trolling": 2655, + "spread": 2656, + "downtown": 2657, + "hahah": 2658, + "bites": 2659, + "ourselves": 2660, + "burned": 2661, + "crew": 2662, + "direction": 2663, + "shake": 2664, + "split": 2665, + "fam": 2666, + "everyone's": 2667, + "sore": 2668, + "newt": 2669, + "victim": 2670, + "slept": 2671, + "throat": 2672, + "dope": 2673, + "mi": 2674, + "stress": 2675, + "jam": 2676, + "jersey": 2677, + "officially": 2678, + "thankful": 2679, + "result": 2680, + "boston": 2681, + "tank": 2682, + "shown": 2683, + "deleted": 2684, + "errors": 2685, + "definition": 2686, + "sake": 2687, + "teen": 2688, + "monster": 2689, + "co": 2690, + "dip": 2691, + "dislike": 2692, + "bud": 2693, + "mountain": 2694, + "necessary": 2695, + "kevin": 2696, + "portions": 2697, + "aside": 2698, + "strength": 2699, + "brush": 2700, + "aid": 2701, + "remembered": 2702, + "challenge": 2703, + "cow": 2704, + "setting": 2705, + "si": 2706, + "aka": 2707, + "obsessed": 2708, + "stores": 2709, + "prolly": 2710, + "guest": 2711, + "comfy": 2712, + "potter": 2713, + "smiling": 2714, + "pls": 2715, + "tweet": 2716, + "should've": 2717, + "happier": 2718, + "justin": 2719, + "workers": 2720, + "recent": 2721, + "packaging": 2722, + "asap": 2723, + "ban": 2724, + "prayers": 2725, + "dirt": 2726, + "slide": 2727, + "pancakes": 2728, + "standards": 2729, + "handy": 2730, + "yuck": 2731, + "bartender": 2732, + "stupidity": 2733, + "hes": 2734, + "messy": 2735, + "stands": 2736, + "abuse": 2737, + "kills": 2738, + "awe": 2739, + "cheers": 2740, + "tap": 2741, + "wasting": 2742, + "favourite": 2743, + "bio": 2744, + "bay": 2745, + "taught": 2746, + "desperate": 2747, + "precious": 2748, + "risk": 2749, + "cookie": 2750, + "por": 2751, + "ryan": 2752, + "coke": 2753, + "via": 2754, + "stuffed": 2755, + "bear": 2756, + "ms.": 2757, + "neighbors": 2758, + "presentation": 2759, + "vibe": 2760, + "laid": 2761, + "yrs": 2762, + "theory": 2763, + "dealing": 2764, + "search": 2765, + "thriller": 2766, + "awhile": 2767, + "convicted": 2768, + "countries": 2769, + "beats": 2770, + "surely": 2771, + "ho": 2772, + "lip": 2773, + "fi": 2774, + "pad": 2775, + "patio": 2776, + "sensitive": 2777, + "teaching": 2778, + "omfg": 2779, + "wasnt": 2780, + "counts": 2781, + "pressure": 2782, + "mal": 2783, + "locked": 2784, + "goals": 2785, + "background": 2786, + "flimsy": 2787, + "bb": 2788, + "dj": 2789, + "status": 2790, + "lee": 2791, + "flavors": 2792, + "moments": 2793, + "muslim": 2794, + "rolling": 2795, + "hug": 2796, + "pride": 2797, + "buck": 2798, + "arguing": 2799, + "blessed": 2800, + "produce": 2801, + "grey": 2802, + "knocked": 2803, + "seating": 2804, + "kim": 2805, + "apartment": 2806, + "disaster": 2807, + "supporting": 2808, + "mid": 2809, + "particular": 2810, + "spoke": 2811, + "q": 2812, + "pillow": 2813, + "charlie": 2814, + "cos": 2815, + "ink": 2816, + "sony": 2817, + "trap": 2818, + "smith": 2819, + "forced": 2820, + "proven": 2821, + "wisdom": 2822, + "burnt": 2823, + "image": 2824, + "soccer": 2825, + "sleepy": 2826, + "sees": 2827, + "happiness": 2828, + "praying": 2829, + "soda": 2830, + "imma": 2831, + "solution": 2832, + "create": 2833, + "wheel": 2834, + "replace": 2835, + "loyal": 2836, + "june": 2837, + "na": 2838, + "cheer": 2839, + "access": 2840, + "honor": 2841, + "shift": 2842, + "virgin": 2843, + "crawl": 2844, + "cole": 2845, + "curry": 2846, + "xx": 2847, + "awake": 2848, + "fag": 2849, + "ripped": 2850, + "tips": 2851, + "refreshing": 2852, + "hehe": 2853, + "lmaoo": 2854, + "jordan": 2855, + "starving": 2856, + "bra": 2857, + "pa": 2858, + "popular": 2859, + "scream": 2860, + "foods": 2861, + "dressing": 2862, + "pitch": 2863, + "personality": 2864, + "thomas": 2865, + "convenient": 2866, + "homie": 2867, + "listened": 2868, + "construction": 2869, + "notes": 2870, + "sucker": 2871, + "laying": 2872, + "jones": 2873, + "lookin": 2874, + "mo": 2875, + "moves": 2876, + "meals": 2877, + "avi": 2878, + "deliver": 2879, + "yr": 2880, + "goodbye": 2881, + "appetizer": 2882, + "jeans": 2883, + "pump": 2884, + "counting": 2885, + "wouldnt": 2886, + "auto": 2887, + "sturdy": 2888, + "dang": 2889, + "released": 2890, + "plates": 2891, + "aw": 2892, + "property": 2893, + "bday": 2894, + "studying": 2895, + "becoming": 2896, + "vacuum": 2897, + "volume": 2898, + "mr": 2899, + "nicely": 2900, + "peanut": 2901, + "cam": 2902, + "batteries": 2903, + "goin": 2904, + "deserved": 2905, + "babe": 2906, + "fab": 2907, + "finest": 2908, + "follows": 2909, + "unlike": 2910, + "ny": 2911, + "alex": 2912, + "afford": 2913, + "boom": 2914, + "spelling": 2915, + "specific": 2916, + "af": 2917, + "citizens": 2918, + "valley": 2919, + "ton": 2920, + "visiting": 2921, + "goal": 2922, + "comfort": 2923, + "nada": 2924, + "gf": 2925, + "toes": 2926, + "tracks": 2927, + "knees": 2928, + "relevant": 2929, + "bugs": 2930, + "hearts": 2931, + "jimmy": 2932, + "exact": 2933, + "shorts": 2934, + "stays": 2935, + "duh": 2936, + "mile": 2937, + "cheesy": 2938, + "november": 2939, + "amen": 2940, + "hunt": 2941, + "z": 2942, + "sheets": 2943, + "salon": 2944, + "african": 2945, + "sweetie": 2946, + "letter": 2947, + "british": 2948, + "kelly": 2949, + "boat": 2950, + "perform": 2951, + "gt": 2952, + "request": 2953, + "hidden": 2954, + "jacket": 2955, + "grace": 2956, + "sharp": 2957, + "religious": 2958, + "tear": 2959, + "draw": 2960, + "closet": 2961, + "golf": 2962, + "representative": 2963, + "europe": 2964, + "dm": 2965, + "randomly": 2966, + "shocked": 2967, + "baked": 2968, + "moral": 2969, + "rt": 2970, + "upgrade": 2971, + "path": 2972, + "sooner": 2973, + "#1": 2974, + "core": 2975, + "doors": 2976, + "types": 2977, + "refuse": 2978, + "neighborhood": 2979, + "beers": 2980, + "crush": 2981, + "chip": 2982, + "carter": 2983, + "isnt": 2984, + "forgive": 2985, + "socks": 2986, + "sa": 2987, + "ability": 2988, + "sarah": 2989, + "sigh": 2990, + "waking": 2991, + "chest": 2992, + "writer": 2993, + "web": 2994, + "pepper": 2995, + "dem": 2996, + "matt": 2997, + "enter": 2998, + "bond": 2999, + "thumbs": 3000, + "bottles": 3001, + "pricey": 3002, + "taylor": 3003, + "replied": 3004, + "bass": 3005, + "rn": 3006, + "gain": 3007, + "thug": 3008, + "plug": 3009, + "dam": 3010, + "salmon": 3011, + "magazine": 3012, + "onto": 3013, + "install": 3014, + "caused": 3015, + "aware": 3016, + "irrelevant": 3017, + "constitution": 3018, + "bridge": 3019, + "ion": 3020, + "keeper": 3021, + "peter": 3022, + "josh": 3023, + "ashamed": 3024, + "anger": 3025, + "cell": 3026, + "designed": 3027, + "tony": 3028, + "des": 3029, + "hopes": 3030, + "jerk": 3031, + "linda": 3032, + "tweets": 3033, + "portion": 3034, + "combo": 3035, + "august": 3036, + "youu": 3037, + "crash": 3038, + "servers": 3039, + "answers": 3040, + "clueless": 3041, + "burning": 3042, + "bull": 3043, + "tf": 3044, + "lens": 3045, + "stood": 3046, + "leaders": 3047, + "fave": 3048, + "confidence": 3049, + "obama's": 3050, + "kno": 3051, + "corporate": 3052, + ";)": 3053, + "yess": 3054, + "cops": 3055, + "scott": 3056, + "sis": 3057, + "bs": 3058, + "breathe": 3059, + "commercial": 3060, + "throughout": 3061, + "thankyou": 3062, + "balance": 3063, + "hun": 3064, + "keyboard": 3065, + "productive": 3066, + "jus": 3067, + "shout": 3068, + "trick": 3069, + "authentic": 3070, + "biased": 3071, + "ft": 3072, + "debt": 3073, + "angels": 3074, + "ily": 3075, + "hrs": 3076, + "coward": 3077, + "hella": 3078, + "bound": 3079, + "respond": 3080, + "families": 3081, + "dis": 3082, + "pen": 3083, + "april": 3084, + "tht": 3085, + "yelling": 3086, + "irish": 3087, + "could've": 3088, + "india": 3089, + "treatment": 3090, + "explained": 3091, + "shine": 3092, + "cutest": 3093, + "grammar": 3094, + "greek": 3095, + "forgotten": 3096, + "africa": 3097, + "sec": 3098, + "anniversary": 3099, + "separate": 3100, + "ti": 3101, + "tryna": 3102, + "havent": 3103, + "union": 3104, + "episodes": 3105, + "wireless": 3106, + "predictable": 3107, + "dropping": 3108, + "reaction": 3109, + "bothered": 3110, + "direct": 3111, + "ole": 3112, + "ingredients": 3113, + "chief": 3114, + "sayin": 3115, + "clever": 3116, + "riding": 3117, + "spice": 3118, + "error": 3119, + "terms": 3120, + "influence": 3121, + "spam": 3122, + "bias": 3123, + "gettin": 3124, + "studio": 3125, + "birds": 3126, + "ed": 3127, + "wack": 3128, + "ignored": 3129, + "tl": 3130, + "ribs": 3131, + "classy": 3132, + "te": 3133, + "oven": 3134, + "pc": 3135, + "paris": 3136, + "grateful": 3137, + "transfer": 3138, + "worries": 3139, + "oo": 3140, + "bae": 3141, + "darling": 3142, + "wat": 3143, + "snapchat": 3144, + "license": 3145, + "hoped": 3146, + "gays": 3147, + "attentive": 3148, + "corrupt": 3149, + "debut": 3150, + "onion": 3151, + "western": 3152, + "bust": 3153, + "unions": 3154, + "midnight": 3155, + "decisions": 3156, + "friendship": 3157, + "patient": 3158, + "dudes": 3159, + "crispy": 3160, + "crowded": 3161, + "bastard": 3162, + "hiding": 3163, + "toe": 3164, + "opinions": 3165, + "instagram": 3166, + "theater": 3167, + "doin": 3168, + "bruh": 3169, + "blessing": 3170, + "tbh": 3171, + "arrive": 3172, + "talks": 3173, + "squad": 3174, + "greasy": 3175, + "tasting": 3176, + "hook": 3177, + "freakin": 3178, + "mon": 3179, + "fooled": 3180, + "sweat": 3181, + "device": 3182, + "drove": 3183, + "opposite": 3184, + "losers": 3185, + "wrap": 3186, + "passion": 3187, + ",,": 3188, + "belt": 3189, + "cousins": 3190, + "bun": 3191, + "grew": 3192, + "theres": 3193, + "lt": 3194, + "xbox": 3195, + "bands": 3196, + "degree": 3197, + "je": 3198, + "guessing": 3199, + "tongue": 3200, + "robert": 3201, + "header": 3202, + "dads": 3203, + "sunshine": 3204, + "remote": 3205, + "leaks": 3206, + "keys": 3207, + "conversations": 3208, + "gop": 3209, + "garage": 3210, + "walks": 3211, + "android": 3212, + "ouch": 3213, + "//": 3214, + "ham": 3215, + "unhappy": 3216, + "homework": 3217, + "citizen": 3218, + "replying": 3219, + "income": 3220, + "detail": 3221, + "inch": 3222, + "bestfriend": 3223, + "cutie": 3224, + "theme": 3225, + "accepted": 3226, + "cus": 3227, + "childhood": 3228, + "wood": 3229, + "icon": 3230, + "canada": 3231, + "texting": 3232, + "uhh": 3233, + "lonely": 3234, + "chilling": 3235, + "thousand": 3236, + "lick": 3237, + "seasons": 3238, + "babes": 3239, + "texts": 3240, + "muslims": 3241, + "tweeting": 3242, + "va": 3243, + "drivers": 3244, + "affair": 3245, + "twin": 3246, + "gal": 3247, + "depends": 3248, + "july": 3249, + "bby": 3250, + "democratic": 3251, + "returning": 3252, + "finna": 3253, + "pushing": 3254, + "shes": 3255, + "ay": 3256, + "delightful": 3257, + "experienced": 3258, + "moi": 3259, + "steps": 3260, + "utter": 3261, + "puke": 3262, + "nut": 3263, + "suddenly": 3264, + "feature": 3265, + "wishing": 3266, + "jason": 3267, + "partner": 3268, + "offensive": 3269, + "fired": 3270, + "jk": 3271, + "tha": 3272, + "anthony": 3273, + "award": 3274, + "square": 3275, + "silver": 3276, + "disturbing": 3277, + "nyc": 3278, + "washington": 3279, + "generally": 3280, + "wallet": 3281, + "flowers": 3282, + "retweet": 3283, + "lool": 3284, + "mum": 3285, + "thread": 3286, + "advertising": 3287, + "abs": 3288, + "speakers": 3289, + "hahahahaha": 3290, + "debate": 3291, + "arizona": 3292, + "wisconsin": 3293, + "pal": 3294, + "claiming": 3295, + "aye": 3296, + "latest": 3297, + "tu": 3298, + "|": 3299, + "services": 3300, + "degrees": 3301, + "violence": 3302, + "lifetime": 3303, + "handed": 3304, + "austin": 3305, + "eyebrows": 3306, + "oomf": 3307, + "dawg": 3308, + "sequel": 3309, + "cups": 3310, + "aunt": 3311, + "foul": 3312, + "tender": 3313, + "hooked": 3314, + "haircut": 3315, + "mee": 3316, + "ilysm": 3317, + "beast": 3318, + "dies": 3319, + "apologize": 3320, + "tattoos": 3321, + "medicine": 3322, + "stranger": 3323, + "fee": 3324, + "hugs": 3325, + "strawberry": 3326, + "corny": 3327, + "ig": 3328, + "meets": 3329, + "stink": 3330, + "brunch": 3331, + "laughs": 3332, + "shits": 3333, + "leader": 3334, + "diamond": 3335, + "filling": 3336, + "secrets": 3337, + "fr": 3338, + "answered": 3339, + "grind": 3340, + "destroyed": 3341, + "rite": 3342, + "fools": 3343, + "chase": 3344, + "spurs": 3345, + "polish": 3346, + "cheat": 3347, + "village": 3348, + "popcorn": 3349, + "racism": 3350, + "groups": 3351, + "insult": 3352, + "letters": 3353, + "fb": 3354, + "it'd": 3355, + "junior": 3356, + "mf": 3357, + "dating": 3358, + "praise": 3359, + "data": 3360, + "civil": 3361, + "handsome": 3362, + "yawn": 3363, + "como": 3364, + "sweetheart": 3365, + "dnt": 3366, + "virginia": 3367, + "scum": 3368, + "netflix": 3369, + "blocked": 3370, + "cleaned": 3371, + "det": 3372, + "tomato": 3373, + "naw": 3374, + "updated": 3375, + "den": 3376, + "santorum": 3377, + "someday": 3378, + "thx": 3379, + "weekends": 3380, + "addicted": 3381, + "chipotle": 3382, + "flick": 3383, + "mentally": 3384, + "lmfaoo": 3385, + "distance": 3386, + "finals": 3387, + "contract": 3388, + "eww": 3389, + "chicks": 3390, + "scale": 3391, + "eric": 3392, + "southern": 3393, + "woo": 3394, + "fashion": 3395, + "admitted": 3396, + "bean": 3397, + "sized": 3398, + "bug": 3399, + "covers": 3400, + "nick": 3401, + "dictionary": 3402, + "ghetto": 3403, + "blonde": 3404, + "surgery": 3405, + "po": 3406, + "slice": 3407, + "ew": 3408, + "storm": 3409, + "industry": 3410, + "physically": 3411, + "owners": 3412, + "seven": 3413, + "donuts": 3414, + "bon": 3415, + "\"\"": 3416, + "zone": 3417, + "banned": 3418, + "charlotte": 3419, + "doe": 3420, + "reliable": 3421, + "flow": 3422, + "reservation": 3423, + "happiest": 3424, + "perspective": 3425, + "waffle": 3426, + "cap": 3427, + "senator": 3428, + "overly": 3429, + "manage": 3430, + "warranty": 3431, + "preach": 3432, + "hubby": 3433, + "defending": 3434, + "catching": 3435, + "flip": 3436, + "goodmorning": 3437, + "hundreds": 3438, + "mcdonald's": 3439, + "survive": 3440, + "larry": 3441, + "couldnt": 3442, + "sos": 3443, + "onions": 3444, + "stops": 3445, + "tuna": 3446, + "appreciated": 3447, + "function": 3448, + "shirts": 3449, + "peoples": 3450, + "motivation": 3451, + "sarcasm": 3452, + "atleast": 3453, + "commenting": 3454, + "bully": 3455, + "asf": 3456, + "german": 3457, + "becomes": 3458, + "spin": 3459, + "complicated": 3460, + "jumping": 3461, + "tub": 3462, + "central": 3463, + "users": 3464, + "lemme": 3465, + "hp": 3466, + "guard": 3467, + "managed": 3468, + "invite": 3469, + "caring": 3470, + "brazil": 3471, + "^": 3472, + "lettuce": 3473, + "wen": 3474, + "located": 3475, + "compliment": 3476, + "tune": 3477, + "manual": 3478, + "agenda": 3479, + "guarantee": 3480, + "loads": 3481, + "gunna": 3482, + "idc": 3483, + "celebrate": 3484, + "competition": 3485, + "patience": 3486, + "spain": 3487, + "prior": 3488, + "abortion": 3489, + "reminded": 3490, + "campus": 3491, + "leading": 3492, + "earned": 3493, + "refund": 3494, + "hung": 3495, + "ughh": 3496, + "mom's": 3497, + "wave": 3498, + "assuming": 3499, + "delusional": 3500, + "hahahahahaha": 3501, + "bills": 3502, + "session": 3503, + "michelle": 3504, + "connection": 3505, + "deck": 3506, + "complex": 3507, + "ne": 3508, + "sight": 3509, + "ty": 3510, + "karma": 3511, + "fed": 3512, + "dual": 3513, + "hostess": 3514, + "include": 3515, + "washed": 3516, + "hahahah": 3517, + "outfit": 3518, + "directly": 3519, + "lacks": 3520, + "goo": 3521, + "turner": 3522, + "drops": 3523, + "artists": 3524, + "tweeted": 3525, + "visited": 3526, + "yu": 3527, + "belong": 3528, + "mais": 3529, + "combination": 3530, + "slick": 3531, + "equal": 3532, + "educational": 3533, + "ko": 3534, + "basis": 3535, + "ipad": 3536, + "stopping": 3537, + "considered": 3538, + "intense": 3539, + "melt": 3540, + "treasure": 3541, + "cuddle": 3542, + "billion": 3543, + "louis": 3544, + "yard": 3545, + "actions": 3546, + "disagree": 3547, + "brian": 3548, + "articles": 3549, + "uni": 3550, + "clip": 3551, + "anime": 3552, + "whining": 3553, + "signs": 3554, + "editing": 3555, + "che": 3556, + "gee": 3557, + "papa": 3558, + "touched": 3559, + "kings": 3560, + "douche": 3561, + "emoji": 3562, + "tyler": 3563, + "il": 3564, + "blown": 3565, + "couch": 3566, + "twisted": 3567, + "hottest": 3568, + "homemade": 3569, + "coat": 3570, + "lauren": 3571, + "host": 3572, + "bum": 3573, + "download": 3574, + "nuclear": 3575, + "ing": 3576, + "bouta": 3577, + "pho": 3578, + "gracias": 3579, + "gods": 3580, + "prepare": 3581, + "wee": 3582, + "passing": 3583, + "merci": 3584, + "deeply": 3585, + "accidentally": 3586, + "cnn": 3587, + "johnny": 3588, + "circle": 3589, + "conference": 3590, + "pops": 3591, + "generous": 3592, + "omgg": 3593, + "chili": 3594, + "girly": 3595, + "rise": 3596, + "sounded": 3597, + "vanilla": 3598, + "judging": 3599, + "walls": 3600, + "pile": 3601, + "ours": 3602, + "borrow": 3603, + "alike": 3604, + "jake": 3605, + "holds": 3606, + "opportunity": 3607, + "closing": 3608, + "minded": 3609, + "yoo": 3610, + "cakes": 3611, + "irritating": 3612, + "uk": 3613, + "weapons": 3614, + "recipes": 3615, + "petty": 3616, + "existence": 3617, + "hii": 3618, + "desert": 3619, + "suicide": 3620, + "dozen": 3621, + "beg": 3622, + "silent": 3623, + "display": 3624, + "dramatic": 3625, + "grande": 3626, + "curious": 3627, + "kicked": 3628, + "lane": 3629, + "sometime": 3630, + "sweetest": 3631, + "inspirational": 3632, + "insight": 3633, + "tone": 3634, + "shave": 3635, + "crib": 3636, + "rubbish": 3637, + "mode": 3638, + "net": 3639, + "starter": 3640, + "stressed": 3641, + "knee": 3642, + "iced": 3643, + "edit": 3644, + "unable": 3645, + "bedroom": 3646, + "gossip": 3647, + "slut": 3648, + "heading": 3649, + "sudden": 3650, + "electric": 3651, + "basement": 3652, + "cancelled": 3653, + "welfare": 3654, + "relationships": 3655, + "mates": 3656, + "gate": 3657, + "zoo": 3658, + "qui": 3659, + "kisses": 3660, + "chi": 3661, + "cookbook": 3662, + "blanket": 3663, + "mfs": 3664, + "sticks": 3665, + "williams": 3666, + "jane": 3667, + "stairs": 3668, + "amo": 3669, + "dust": 3670, + "asks": 3671, + "lowkey": 3672, + "bow": 3673, + "marketing": 3674, + "crust": 3675, + "soap": 3676, + "darn": 3677, + "semi": 3678, + "march": 3679, + "creating": 3680, + "accent": 3681, + "savage": 3682, + "exhausted": 3683, + "cheating": 3684, + "hadn't": 3685, + "familiar": 3686, + "brave": 3687, + "understood": 3688, + "beginner": 3689, + "parent": 3690, + "therefore": 3691, + "awh": 3692, + "madison": 3693, + "grandpa": 3694, + "grass": 3695, + "nephew": 3696, + "stated": 3697, + "capital": 3698, + "documentary": 3699, + "yass": 3700, + "ik": 3701, + "mane": 3702, + "shoutout": 3703, + "jose": 3704, + "fitness": 3705, + "organized": 3706, + "factory": 3707, + "speaks": 3708, + "substance": 3709, + "nahh": 3710, + "catholic": 3711, + "ang": 3712, + "billy": 3713, + "packing": 3714, + "disrespectful": 3715, + "percent": 3716, + "twins": 3717, + "traditional": 3718, + "tie": 3719, + "ac": 3720, + "texted": 3721, + "stronger": 3722, + "coz": 3723, + "wealth": 3724, + "lift": 3725, + "dias": 3726, + "noisy": 3727, + "responsible": 3728, + "mother's": 3729, + "juicy": 3730, + "graduate": 3731, + "lessons": 3732, + "active": 3733, + "c'est": 3734, + "effects": 3735, + "goat": 3736, + "ms": 3737, + "mentions": 3738, + "pleasee": 3739, + "appropriate": 3740, + "walmart": 3741, + "nos": 3742, + "boot": 3743, + "man's": 3744, + "messing": 3745, + "oz": 3746, + "whos": 3747, + "we'd": 3748, + "ka": 3749, + "scare": 3750, + "bff": 3751, + "mp": 3752, + "enemies": 3753, + "acts": 3754, + "chances": 3755, + "frustrated": 3756, + "waters": 3757, + "swimming": 3758, + "dreaming": 3759, + "staring": 3760, + "movement": 3761, + "marathon": 3762, + "blunt": 3763, + "spare": 3764, + "dates": 3765, + "vampire": 3766, + "continues": 3767, + "ya'll": 3768, + "recall": 3769, + "casa": 3770, + "comeback": 3771, + "bravo": 3772, + "blows": 3773, + "attached": 3774, + "needa": 3775, + "charm": 3776, + "beautifully": 3777, + "whom": 3778, + "lang": 3779, + "slave": 3780, + "kk": 3781, + "russian": 3782, + "loyalty": 3783, + "stalker": 3784, + "nba": 3785, + "stare": 3786, + "mia": 3787, + "gear": 3788, + "longest": 3789, + "triple": 3790, + "mann": 3791, + "rack": 3792, + "tim": 3793, + "hr": 3794, + "mines": 3795, + "rib": 3796, + "niece": 3797, + "pictured": 3798, + "captain": 3799, + "department": 3800, + "perry": 3801, + "faced": 3802, + "flawless": 3803, + "minus": 3804, + "emotions": 3805, + "they'd": 3806, + "hundred": 3807, + "esta": 3808, + "korean": 3809, + "wolf": 3810, + "spoken": 3811, + "magical": 3812, + "lake": 3813, + "charming": 3814, + "celebrity": 3815, + "flawed": 3816, + "sissy": 3817, + "arent": 3818, + "henry": 3819, + "realistic": 3820, + "fights": 3821, + "focused": 3822, + "fml": 3823, + "unexpected": 3824, + "monitor": 3825, + "smoked": 3826, + "emojis": 3827, + "stealing": 3828, + ":d": 3829, + "warned": 3830, + "subway": 3831, + "rat": 3832, + "spit": 3833, + "smelling": 3834, + "owe": 3835, + "prom": 3836, + "freshman": 3837, + "kobe": 3838, + "pee": 3839, + "piano": 3840, + "fck": 3841, + "pero": 3842, + "placed": 3843, + "ish": 3844, + "misses": 3845, + "alert": 3846, + "pills": 3847, + "remove": 3848, + "discount": 3849, + "granny": 3850, + "slim": 3851, + "hardest": 3852, + "wicked": 3853, + "miracle": 3854, + "pounds": 3855, + "ol": 3856, + "irritated": 3857, + "lifestyle": 3858, + "overview": 3859, + "remain": 3860, + "mejor": 3861, + "arrested": 3862, + "protection": 3863, + "spa": 3864, + "japan": 3865, + "worker": 3866, + "aha": 3867, + "trop": 3868, + "lovee": 3869, + "brains": 3870, + "bench": 3871, + "kissing": 3872, + "consistent": 3873, + "facetime": 3874, + "arguments": 3875, + "ashley": 3876, + "martin": 3877, + "heels": 3878, + "danny": 3879, + "excitement": 3880, + "university": 3881, + "nigger": 3882, + "trynna": 3883, + "improvement": 3884, + "automatically": 3885, + "offers": 3886, + "shared": 3887, + "didn": 3888, + "beside": 3889, + "liars": 3890, + "powers": 3891, + "candidate": 3892, + "wth": 3893, + "pit": 3894, + "olive": 3895, + "sets": 3896, + "bonus": 3897, + "fridge": 3898, + "finishing": 3899, + "shoulder": 3900, + "convince": 3901, + "organization": 3902, + "mrs": 3903, + "unfollow": 3904, + "exercise": 3905, + "redneck": 3906, + "conclusion": 3907, + "boards": 3908, + "mobile": 3909, + "chapter": 3910, + "labor": 3911, + "zz": 3912, + "boobs": 3913, + "wishes": 3914, + "mcdonalds": 3915, + "bodies": 3916, + "georgia": 3917, + "feelin": 3918, + "sean": 3919, + "pound": 3920, + "dresses": 3921, + "grocery": 3922, + "chairs": 3923, + "freezing": 3924, + "hypocrite": 3925, + "kinds": 3926, + "governor": 3927, + "yogurt": 3928, + "international": 3929, + "dms": 3930, + "intro": 3931, + "lounge": 3932, + "pub": 3933, + "bobby": 3934, + "answering": 3935, + "votes": 3936, + "dallas": 3937, + "register": 3938, + "vegetarian": 3939, + "adore": 3940, + "execution": 3941, + "fever": 3942, + "france": 3943, + "humans": 3944, + "endless": 3945, + "semester": 3946, + "replaced": 3947, + "santa": 3948, + "juan": 3949, + "advantage": 3950, + "attend": 3951, + "ffs": 3952, + "shawty": 3953, + "doesn": 3954, + "nerves": 3955, + "ni": 3956, + "excuses": 3957, + "ocean": 3958, + "apply": 3959, + "psycho": 3960, + "dye": 3961, + "ai": 3962, + "theirs": 3963, + "tedious": 3964, + "tiger": 3965, + "draft": 3966, + "minor": 3967, + "eats": 3968, + "chin": 3969, + "levels": 3970, + "jim": 3971, + "presence": 3972, + "swallow": 3973, + "bien": 3974, + "incorrect": 3975, + "stadium": 3976, + "quiero": 3977, + "vile": 3978, + "ambiance": 3979, + "grades": 3980, + "spots": 3981, + "ginger": 3982, + "disease": 3983, + "audience": 3984, + "sticky": 3985, + "pos": 3986, + "rapper": 3987, + "trips": 3988, + "trees": 3989, + "ta": 3990, + "convinced": 3991, + "sticking": 3992, + "benefit": 3993, + "ikr": 3994, + "indians": 3995, + "dunno": 3996, + "c'mon": 3997, + "how's": 3998, + "charging": 3999, + "thirsty": 4000, + "embarrassed": 4001, + "girlfriends": 4002, + "bin": 4003, + "basket": 4004, + "she'll": 4005, + "vibes": 4006, + "struggling": 4007, + "stretch": 4008, + "incomplete": 4009, + "raining": 4010, + "mothers": 4011, + "nun": 4012, + "cancel": 4013, + "raped": 4014, + "citizenship": 4015, + "bubble": 4016, + "notch": 4017, + "twat": 4018, + "kool": 4019, + "readers": 4020, + "convo": 4021, + "hangout": 4022, + "cali": 4023, + "appear": 4024, + "whyy": 4025, + "bat": 4026, + "smash": 4027, + "crystal": 4028, + "dale": 4029, + "philly": 4030, + "granted": 4031, + "dr": 4032, + "ego": 4033, + "stream": 4034, + "exams": 4035, + "ios": 4036, + "yaa": 4037, + "cuts": 4038, + "rachel": 4039, + "unreliable": 4040, + "outdoor": 4041, + "pumped": 4042, + "specials": 4043, + "cheesecake": 4044, + "damage": 4045, + "pandora": 4046, + "concern": 4047, + "provoking": 4048, + "buenas": 4049, + "sci": 4050, + "insta": 4051, + "failing": 4052, + "companies": 4053, + "vodka": 4054, + "label": 4055, + "administration": 4056, + "di": 4057, + "allergies": 4058, + "homo": 4059, + "children's": 4060, + "christians": 4061, + "carpet": 4062, + "dc": 4063, + "shy": 4064, + "ad": 4065, + "records": 4066, + "attacks": 4067, + "adam": 4068, + "essay": 4069, + "hats": 4070, + "yah": 4071, + "sober": 4072, + "sentenced": 4073, + "greedy": 4074, + "snack": 4075, + "advance": 4076, + "canon": 4077, + "beard": 4078, + "establishment": 4079, + "tail": 4080, + "alternative": 4081, + "nvm": 4082, + "prob": 4083, + "addiction": 4084, + "unreal": 4085, + "dice": 4086, + "prayer": 4087, + "turd": 4088, + "terror": 4089, + "hmu": 4090, + "fishing": 4091, + "depressed": 4092, + "sport": 4093, + "tem": 4094, + "shades": 4095, + "cupcakes": 4096, + "faithful": 4097, + "thou": 4098, + "hockey": 4099, + "dentist": 4100, + "roof": 4101, + "complaints": 4102, + "cum": 4103, + "ca": 4104, + "layout": 4105, + "begins": 4106, + "bare": 4107, + "listed": 4108, + "investigation": 4109, + "fest": 4110, + "gravy": 4111, + "swim": 4112, + "technology": 4113, + "depth": 4114, + "buffalo": 4115, + "saver": 4116, + "ruining": 4117, + "hire": 4118, + "boa": 4119, + "das": 4120, + "jet": 4121, + "realise": 4122, + "sons": 4123, + "appetizers": 4124, + "vet": 4125, + "mario": 4126, + "tire": 4127, + "understands": 4128, + "rocking": 4129, + "fin": 4130, + "leather": 4131, + "spray": 4132, + "farm": 4133, + "lbs": 4134, + "arrogant": 4135, + "reads": 4136, + "lean": 4137, + "niall": 4138, + "amor": 4139, + "idgaf": 4140, + "oui": 4141, + "discussion": 4142, + "dfc": 4143, + "wore": 4144, + "ayy": 4145, + "argentina": 4146, + "strike": 4147, + "moronic": 4148, + "drives": 4149, + "jessica": 4150, + "clutch": 4151, + "yayy": 4152, + "grave": 4153, + "electr": 4154, + "insightful": 4155, + "individuals": 4156, + "elevator": 4157, + "goodluck": 4158, + "obsession": 4159, + "mask": 4160, + "homosexual": 4161, + "trend": 4162, + "hannah": 4163, + "anna": 4164, + "woods": 4165, + "st.": 4166, + "drawing": 4167, + "veggies": 4168, + "highlight": 4169, + "shade": 4170, + "barack": 4171, + "cough": 4172, + "abt": 4173, + "paradise": 4174, + "cure": 4175, + "laundry": 4176, + "lolol": 4177, + "gusto": 4178, + "tend": 4179, + "selfie": 4180, + "god's": 4181, + "rub": 4182, + "swag": 4183, + "extended": 4184, + "username": 4185, + "dose": 4186, + "pointing": 4187, + "dee": 4188, + "cod": 4189, + "jeff": 4190, + "jerry": 4191, + "ignoring": 4192, + "ross": 4193, + "dime": 4194, + "daniel": 4195, + "educated": 4196, + "crossed": 4197, + "additional": 4198, + "bucket": 4199, + "spectacular": 4200, + "casual": 4201, + "poppin": 4202, + "chop": 4203, + "scottsdale": 4204, + "presidential": 4205, + "mrs.": 4206, + "thoroughly": 4207, + "halloween": 4208, + "creep": 4209, + "drew": 4210, + "injury": 4211, + "papers": 4212, + "nfl": 4213, + "invited": 4214, + "tummy": 4215, + "tooth": 4216, + "protein": 4217, + "crown": 4218, + "ash": 4219, + ":))": 4220, + "that'll": 4221, + "factor": 4222, + "ian": 4223, + "heyy": 4224, + "drill": 4225, + "sox": 4226, + "earn": 4227, + "progress": 4228, + "charles": 4229, + "cent": 4230, + "greeted": 4231, + "underwear": 4232, + "salads": 4233, + "mag": 4234, + "woah": 4235, + "din": 4236, + "choke": 4237, + "nine": 4238, + "inspired": 4239, + "bump": 4240, + "acceptable": 4241, + "resort": 4242, + "suffer": 4243, + "fifth": 4244, + "professor": 4245, + "jewish": 4246, + "waffles": 4247, + "dylan": 4248, + "spoon": 4249, + "vip": 4250, + "upstairs": 4251, + "acc": 4252, + "sarcastic": 4253, + "compatible": 4254, + "flies": 4255, + "os": 4256, + "recognize": 4257, + "bigot": 4258, + "bore": 4259, + "atm": 4260, + "approach": 4261, + "est": 4262, + "blessings": 4263, + "vision": 4264, + "pat": 4265, + "published": 4266, + "drank": 4267, + "cooler": 4268, + "smiles": 4269, + "sink": 4270, + "bros": 4271, + "correctly": 4272, + "wassup": 4273, + "february": 4274, + "signing": 4275, + "chillin": 4276, + "mill": 4277, + "fart": 4278, + "forth": 4279, + "improve": 4280, + "adding": 4281, + "usb": 4282, + "bones": 4283, + "kay": 4284, + "machines": 4285, + "hawaii": 4286, + "improved": 4287, + "selfies": 4288, + "pittsburgh": 4289, + "freaks": 4290, + "sand": 4291, + "vine": 4292, + "waist": 4293, + "cc": 4294, + "nothin": 4295, + "ako": 4296, + "wrapped": 4297, + "complaint": 4298, + "volleyball": 4299, + "ehh": 4300, + "gm": 4301, + "snaps": 4302, + "aa": 4303, + "leads": 4304, + "deny": 4305, + "impact": 4306, + "hatred": 4307, + "inexpensive": 4308, + "tennis": 4309, + "graduation": 4310, + "inaccurate": 4311, + "forehead": 4312, + "fame": 4313, + "hoy": 4314, + "och": 4315, + "germany": 4316, + "snapchats": 4317, + "treats": 4318, + "peeps": 4319, + "informed": 4320, + "flavorful": 4321, + "lists": 4322, + "yeahh": 4323, + "shallow": 4324, + "december": 4325, + "television": 4326, + "cracking": 4327, + "joey": 4328, + "drag": 4329, + "bryan": 4330, + "ayee": 4331, + "cereal": 4332, + "follower": 4333, + "elected": 4334, + "comic": 4335, + "goofy": 4336, + "glory": 4337, + "kong": 4338, + "steel": 4339, + "superior": 4340, + "kicking": 4341, + "breathing": 4342, + "tunes": 4343, + "kitty": 4344, + "cart": 4345, + "treating": 4346, + "braces": 4347, + "constant": 4348, + "stressful": 4349, + "begging": 4350, + "holidays": 4351, + "cinnamon": 4352, + "cramps": 4353, + "promises": 4354, + "offering": 4355, + "hunting": 4356, + "towel": 4357, + "areas": 4358, + "bueno": 4359, + "led": 4360, + "scratch": 4361, + "arsenal": 4362, + "tripping": 4363, + "hacked": 4364, + "pointed": 4365, + "ranch": 4366, + "repair": 4367, + "lewis": 4368, + "hunter": 4369, + "#oomf": 4370, + "downstairs": 4371, + "awsome": 4372, + "hd": 4373, + "removed": 4374, + "shh": 4375, + "bestie": 4376, + "route": 4377, + "lindo": 4378, + "mat": 4379, + "snacks": 4380, + "shady": 4381, + "turnt": 4382, + "tarde": 4383, + "lab": 4384, + "cruel": 4385, + "scenes": 4386, + "relate": 4387, + "development": 4388, + "clubs": 4389, + "yikes": 4390, + ":')": 4391, + "morgan": 4392, + "suspect": 4393, + "speaker": 4394, + "emily": 4395, + "wrist": 4396, + "barry": 4397, + "nowadays": 4398, + "dryer": 4399, + "ctfu": 4400, + "spider": 4401, + "roast": 4402, + "victims": 4403, + "lemonade": 4404, + "cinema": 4405, + "timeline": 4406, + "perfume": 4407, + "disgrace": 4408, + "prick": 4409, + "ye": 4410, + "actor": 4411, + "liverpool": 4412, + "lion": 4413, + "dicks": 4414, + "xbf": 4415, + "mango": 4416, + "er": 4417, + "coconut": 4418, + "wrestling": 4419, + "hyped": 4420, + "enemy": 4421, + "attacking": 4422, + "lamb": 4423, + "comparison": 4424, + "dos": 4425, + "blend": 4426, + ":/": 4427, + "guests": 4428, + "signal": 4429, + "tomatoes": 4430, + "rio": 4431, + "chemistry": 4432, + "australia": 4433, + "batman": 4434, + "boutta": 4435, + "anxiety": 4436, + "soggy": 4437, + "cheaply": 4438, + "mans": 4439, + "slapped": 4440, + "liam": 4441, + "brandon": 4442, + "sunny": 4443, + "intended": 4444, + "sounding": 4445, + "bits": 4446, + "phil": 4447, + "racing": 4448, + "hardcore": 4449, + "voters": 4450, + "sh": 4451, + "motion": 4452, + "thang": 4453, + "sting": 4454, + "textbook": 4455, + "ahaha": 4456, + "avatar": 4457, + "ratchet": 4458, + "peppers": 4459, + "xd": 4460, + "instructions": 4461, + "remix": 4462, + "katie": 4463, + "pimp": 4464, + "royal": 4465, + "doo": 4466, + "immature": 4467, + "washing": 4468, + "october": 4469, + "aah": 4470, + "commit": 4471, + "disgusted": 4472, + "storage": 4473, + "whip": 4474, + "lesbian": 4475, + "nazi": 4476, + "}": 4477, + "(:": 4478, + "fuckers": 4479, + "torture": 4480, + "boyfriends": 4481, + "harm": 4482, + "inches": 4483, + "cleaner": 4484, + "naughty": 4485, + "stressing": 4486, + "apps": 4487, + "leadership": 4488, + "du": 4489, + "functional": 4490, + "zombie": 4491, + "mc": 4492, + "escape": 4493, + "roses": 4494, + "jelly": 4495, + "highest": 4496, + "connect": 4497, + "exchange": 4498, + "drivel": 4499, + "anatomy": 4500, + "twenty": 4501, + "dragon": 4502, + "mars": 4503, + "ridiculously": 4504, + "desserts": 4505, + "spaghetti": 4506, + "offended": 4507, + "accounts": 4508, + "#lrt": 4509, + "portable": 4510, + "waay": 4511, + "folk": 4512, + "shops": 4513, + "backwards": 4514, + "tied": 4515, + "began": 4516, + "fw": 4517, + "ana": 4518, + "italy": 4519, + "fait": 4520, + "clothing": 4521, + "popping": 4522, + "noodle": 4523, + "universe": 4524, + "coast": 4525, + "elementary": 4526, + "punishment": 4527, + "exceptional": 4528, + "therapy": 4529, + "physical": 4530, + "contacts": 4531, + "opener": 4532, + "gel": 4533, + "jajaja": 4534, + "technical": 4535, + "babyy": 4536, + "richard": 4537, + "cocktail": 4538, + "tricks": 4539, + "zayn": 4540, + "scandal": 4541, + "dickhead": 4542, + "experiences": 4543, + "suite": 4544, + "wherever": 4545, + "gaming": 4546, + "spoil": 4547, + "picky": 4548, + "kindly": 4549, + "stalking": 4550, + "attacked": 4551, + "muscle": 4552, + "wayy": 4553, + "stepped": 4554, + "exposed": 4555, + "azz": 4556, + "cheated": 4557, + "johnson": 4558, + "region": 4559, + "nicole": 4560, + "shorty": 4561, + "hint": 4562, + "busted": 4563, + "alien": 4564, + "discuss": 4565, + "lasts": 4566, + "republic": 4567, + "replies": 4568, + "revenge": 4569, + "yung": 4570, + "cherry": 4571, + "ariana": 4572, + "kicks": 4573, + "{": 4574, + "bunny": 4575, + "fa": 4576, + "unfortunate": 4577, + "timing": 4578, + "he'd": 4579, + "mighty": 4580, + "forgetting": 4581, + "jess": 4582, + "forreal": 4583, + "hola": 4584, + "injured": 4585, + "bash": 4586, + "gary": 4587, + "apples": 4588, + "gn": 4589, + "coupon": 4590, + "backs": 4591, + "environment": 4592, + "foundation": 4593, + "voices": 4594, + "freaky": 4595, + "assholes": 4596, + "motherfucker": 4597, + "bald": 4598, + "searching": 4599, + "vegan": 4600, + "reported": 4601, + "spree": 4602, + "greece": 4603, + "gimme": 4604, + "continued": 4605, + "sii": 4606, + "youth": 4607, + "gifts": 4608, + "badass": 4609, + "latin": 4610, + "stolen": 4611, + "troops": 4612, + "yourselves": 4613, + "cashier": 4614, + "pale": 4615, + "bieber": 4616, + "log": 4617, + "shoulda": 4618, + "ng": 4619, + "smoothie": 4620, + "versions": 4621, + "typing": 4622, + "sonic": 4623, + "appears": 4624, + "ken": 4625, + "sheet": 4626, + "humble": 4627, + "mornings": 4628, + "vegetables": 4629, + "atlanta": 4630, + "bent": 4631, + "mis": 4632, + "humanity": 4633, + "liquor": 4634, + "hash": 4635, + "moe": 4636, + "bake": 4637, + "cord": 4638, + "daughters": 4639, + "pisses": 4640, + "tube": 4641, + "progressive": 4642, + "physics": 4643, + "todo": 4644, + "tops": 4645, + "hehehe": 4646, + "melted": 4647, + "lighting": 4648, + "shipped": 4649, + "ap": 4650, + "dey": 4651, + "regarding": 4652, + "committed": 4653, + "compilation": 4654, + "caution": 4655, + "rolled": 4656, + "exit": 4657, + "mainly": 4658, + "sm": 4659, + "sloppy": 4660, + "scam": 4661, + "utterly": 4662, + "demon": 4663, + "unnecessary": 4664, + "practically": 4665, + "numerous": 4666, + "playin": 4667, + "curly": 4668, + "laughter": 4669, + "headset": 4670, + "dia": 4671, + "else's": 4672, + "native": 4673, + "settle": 4674, + "passes": 4675, + "flop": 4676, + "genuinely": 4677, + "september": 4678, + "suggested": 4679, + "niggaz": 4680, + "notifications": 4681, + "ramen": 4682, + "popped": 4683, + "debating": 4684, + "translation": 4685, + "violent": 4686, + "bothering": 4687, + "flower": 4688, + "dreadful": 4689, + "bee": 4690, + "hush": 4691, + "mount": 4692, + "sc": 4693, + "values": 4694, + "terribly": 4695, + "literature": 4696, + "birthdayy": 4697, + "xoxo": 4698, + "silence": 4699, + "opens": 4700, + "flaws": 4701, + "painting": 4702, + "carolina": 4703, + "brick": 4704, + "root": 4705, + "proves": 4706, + "fandom": 4707, + "dump": 4708, + "`": 4709, + "entrees": 4710, + "hangover": 4711, + "arrival": 4712, + "tmrw": 4713, + "weave": 4714, + "mic": 4715, + "stalk": 4716, + "wears": 4717, + "crackers": 4718, + "groupon": 4719, + "universal": 4720, + "chuck": 4721, + "negro": 4722, + "megan": 4723, + "buddies": 4724, + "socialist": 4725, + "roommate": 4726, + "particularly": 4727, + "lawyer": 4728, + "cared": 4729, + "snake": 4730, + "vista": 4731, + "apology": 4732, + "recorded": 4733, + "membership": 4734, + "fry": 4735, + "tires": 4736, + "followback": 4737, + "monkeys": 4738, + "styles": 4739, + "classics": 4740, + "suits": 4741, + "cycle": 4742, + "ashton": 4743, + "refused": 4744, + "admire": 4745, + "caramel": 4746, + "life's": 4747, + "panties": 4748, + "gloves": 4749, + "fare": 4750, + "adapter": 4751, + "comin": 4752, + "scares": 4753, + "feeding": 4754, + "somethin": 4755, + "penalty": 4756, + "np": 4757, + "editor": 4758, + "appearance": 4759, + "jumped": 4760, + "nicest": 4761, + "quotes": 4762, + "coolest": 4763, + "affordable": 4764, + "andy": 4765, + "bears": 4766, + "weirdo": 4767, + "seniors": 4768, + "loove": 4769, + "emotion": 4770, + "au": 4771, + "instant": 4772, + "dig": 4773, + "responsibility": 4774, + "analysis": 4775, + "piercing": 4776, + "disappoint": 4777, + "thrown": 4778, + "meanwhile": 4779, + "dawn": 4780, + "lls": 4781, + "nicki": 4782, + "veggie": 4783, + "''": 4784, + "comprehensive": 4785, + "cupcake": 4786, + "witch": 4787, + "fought": 4788, + "thighs": 4789, + "explanation": 4790, + "lrt": 4791, + "smelled": 4792, + "poetry": 4793, + "lawd": 4794, + "gb": 4795, + "amendment": 4796, + "marks": 4797, + "height": 4798, + "cents": 4799, + "racists": 4800, + "dodger": 4801, + "costume": 4802, + "dissapointed": 4803, + "memorable": 4804, + "pin": 4805, + "emma": 4806, + "threat": 4807, + "checks": 4808, + "approved": 4809, + "hora": 4810, + "yell": 4811, + "ant": 4812, + "timeless": 4813, + "wished": 4814, + "fragile": 4815, + "unfollowed": 4816, + "gps": 4817, + "jungle": 4818, + "thus": 4819, + "flaw": 4820, + "pissing": 4821, + "dough": 4822, + "one's": 4823, + "clap": 4824, + "okc": 4825, + "whoa": 4826, + "houston": 4827, + "eso": 4828, + "ep": 4829, + "^^": 4830, + "heater": 4831, + "dummy": 4832, + "locker": 4833, + "pity": 4834, + "pete": 4835, + "peep": 4836, + "crimes": 4837, + "links": 4838, + "entree": 4839, + "poster": 4840, + "eva": 4841, + "colour": 4842, + "punched": 4843, + "canadian": 4844, + "frfr": 4845, + "amber": 4846, + "cab": 4847, + "underrated": 4848, + "palm": 4849, + "pays": 4850, + "\\": 4851, + "application": 4852, + "clowns": 4853, + "panda": 4854, + "supporters": 4855, + "toys": 4856, + "shove": 4857, + "tanto": 4858, + "sneak": 4859, + "stephen": 4860, + "trained": 4861, + "pretentious": 4862, + "penis": 4863, + "probs": 4864, + "welp": 4865, + "nana": 4866, + "festival": 4867, + "jacob": 4868, + "jajajaja": 4869, + "parker": 4870, + "ma'am": 4871, + "nurse": 4872, + "ankle": 4873, + "tempted": 4874, + "champion": 4875, + "mud": 4876, + "executive": 4877, + "hw": 4878, + "tengo": 4879, + "picks": 4880, + "causes": 4881, + "dedicated": 4882, + "ba": 4883, + "facial": 4884, + "wreck": 4885, + "pierced": 4886, + "bummer": 4887, + "responded": 4888, + "pineapple": 4889, + "quarter": 4890, + "thot": 4891, + "loses": 4892, + "siempre": 4893, + "expert": 4894, + "foh": 4895, + "rant": 4896, + "provided": 4897, + "shaking": 4898, + "wipe": 4899, + "furious": 4900, + "figures": 4901, + "blade": 4902, + "gurl": 4903, + "#np": 4904, + "dummies": 4905, + "roasted": 4906, + "#blessed": 4907, + "jesse": 4908, + "string": 4909, + "karen": 4910, + "bitching": 4911, + "unfair": 4912, + "xp": 4913, + "hah": 4914, + "poo": 4915, + "xo": 4916, + "conspiracy": 4917, + "financial": 4918, + "ruins": 4919, + "referring": 4920, + "advanced": 4921, + "retards": 4922, + "nudes": 4923, + "strap": 4924, + "eve": 4925, + "decides": 4926, + "inte": 4927, + "nerve": 4928, + "michigan": 4929, + "amy": 4930, + "pudding": 4931, + "naa": 4932, + "toaster": 4933, + "poop": 4934, + "ironic": 4935, + "politicians": 4936, + "catholics": 4937, + "fees": 4938, + "seattle": 4939, + "islam": 4940, + "mayor": 4941, + "cowboy": 4942, + "thumb": 4943, + "imy": 4944, + "wana": 4945, + "cuddling": 4946, + "jr.": 4947, + "hasta": 4948, + "woulda": 4949, + "mel": 4950, + "biblical": 4951, + "coverage": 4952, + "pets": 4953, + "reception": 4954, + "tests": 4955, + "increase": 4956, + "faulty": 4957, + "networks": 4958, + "map": 4959, + "maria": 4960, + "traveling": 4961, + "skirt": 4962, + "pizzas": 4963, + "nachos": 4964, + "ohio": 4965, + "tits": 4966, + "surprising": 4967, + "toward": 4968, + "sf": 4969, + "lovin": 4970, + "pleaded": 4971, + "furniture": 4972, + "cozy": 4973, + "otp": 4974, + "slices": 4975, + "courage": 4976, + "shawn": 4977, + "baby's": 4978, + "toppings": 4979, + "multi": 4980, + "heated": 4981, + "blasting": 4982, + "phenomenal": 4983, + "neat": 4984, + "lana": 4985, + "rides": 4986, + "memorial": 4987, + "spinach": 4988, + "chasing": 4989, + "fuckk": 4990, + "drum": 4991, + "slip": 4992, + "vida": 4993, + "ordinary": 4994, + "ab": 4995, + "afterwards": 4996, + "yelled": 4997, + "hindi": 4998, + "determined": 4999, + "bella": 5000, + "valid": 5001, + "slight": 5002, + "buttons": 5003, + "honesty": 5004, + "luckily": 5005, + "ver": 5006, + "jean": 5007, + "deja": 5008, + "retweeted": 5009, + "temporary": 5010, + "sends": 5011, + "boi": 5012, + "betta": 5013, + "confirmed": 5014, + "gawd": 5015, + "women's": 5016, + "txt": 5017, + "pill": 5018, + "purse": 5019, + "shelf": 5020, + "lipstick": 5021, + "eight": 5022, + "pun": 5023, + "awards": 5024, + "technically": 5025, + "lisa": 5026, + "foolish": 5027, + "kik": 5028, + "recovery": 5029, + "piercings": 5030, + "mercy": 5031, + "retweets": 5032, + "adventures": 5033, + "twilight": 5034, + "gum": 5035, + "moore": 5036, + "january": 5037, + "bowling": 5038, + "trippin": 5039, + "shyt": 5040, + "temperature": 5041, + "o'clock": 5042, + "returns": 5043, + "sono": 5044, + "yaay": 5045, + "yeaa": 5046, + "deeper": 5047, + "shining": 5048, + "sings": 5049, + "cruise": 5050, + "examples": 5051, + "compliments": 5052, + "soldier": 5053, + "idek": 5054, + ";3": 5055, + "runner": 5056, + "boxing": 5057, + "booth": 5058, + "cigarette": 5059, + "rave": 5060, + "reservations": 5061, + "hahahahah": 5062, + "perf": 5063, + "oscar": 5064, + "bargain": 5065, + "closest": 5066, + "fatty": 5067, + "lastnight": 5068, + "wikipedia": 5069, + "deadass": 5070, + "az": 5071, + "consistently": 5072, + "ratings": 5073, + "uu": 5074, + "auntie": 5075, + "hoo": 5076, + "softball": 5077, + "format": 5078, + "instantly": 5079, + "gaga": 5080, + "bestfriends": 5081, + "tee": 5082, + "porque": 5083, + "jennifer": 5084, + "asl": 5085, + "dumbest": 5086, + "noon": 5087, + "chile": 5088, + "shadow": 5089, + "stale": 5090, + "boxes": 5091, + "ight": 5092, + "stats": 5093, + "kyle": 5094, + "perks": 5095, + "length": 5096, + "meds": 5097, + "encore": 5098, + "drain": 5099, + "businesses": 5100, + "encourage": 5101, + "barn": 5102, + "rider": 5103, + "aaron": 5104, + "stank": 5105, + "vagina": 5106, + "playoffs": 5107, + "bruhh": 5108, + "fallen": 5109, + "desire": 5110, + "recipe": 5111, + "fil": 5112, + "homies": 5113, + "hotels": 5114, + "compelling": 5115, + "med": 5116, + "amp": 5117, + "sites": 5118, + "amazingly": 5119, + "philosophy": 5120, + "updates": 5121, + "pregnancy": 5122, + "mug": 5123, + "includes": 5124, + "cracks": 5125, + "worlds": 5126, + "depending": 5127, + "hbd": 5128, + "quiz": 5129, + "impression": 5130, + "braids": 5131, + "resist": 5132, + "realizing": 5133, + "accepting": 5134, + "microwave": 5135, + "pace": 5136, + "thankss": 5137, + "shitt": 5138, + "qualified": 5139, + "performing": 5140, + "ga": 5141, + "choosing": 5142, + "accomplished": 5143, + "proved": 5144, + "muscles": 5145, + "victoria": 5146, + "gates": 5147, + "dormir": 5148, + "babygirl": 5149, + "bleeding": 5150, + "omw": 5151, + "nicer": 5152, + "pitcher": 5153, + "worn": 5154, + "tower": 5155, + "genre": 5156, + "engaging": 5157, + "som": 5158, + "forcing": 5159, + "playlist": 5160, + "dems": 5161, + "relief": 5162, + "rey": 5163, + "basics": 5164, + "gray": 5165, + "mature": 5166, + "offense": 5167, + "explaining": 5168, + "mint": 5169, + "mashed": 5170, + "bait": 5171, + "suspense": 5172, + "mushrooms": 5173, + "eu": 5174, + "rarely": 5175, + "jew": 5176, + "sleeps": 5177, + "gotchu": 5178, + "p.s.": 5179, + "sara": 5180, + "annoy": 5181, + "nite": 5182, + "stones": 5183, + "baking": 5184, + "laura": 5185, + "iloveyou": 5186, + "sweater": 5187, + "andrew": 5188, + "olds": 5189, + "thinkin": 5190, + "keith": 5191, + "texture": 5192, + "races": 5193, + "judgement": 5194, + "asia": 5195, + "buenos": 5196, + "burns": 5197, + "greet": 5198, + "stupidest": 5199, + "signature": 5200, + "smacked": 5201, + "studies": 5202, + "ama": 5203, + "tryin": 5204, + "genuine": 5205, + "terry": 5206, + "thugs": 5207, + "tribute": 5208, + "wala": 5209, + "reminder": 5210, + "molly": 5211, + "morals": 5212, + "nomore": 5213, + "rihanna": 5214, + "shocking": 5215, + "gutted": 5216, + "bold": 5217, + "champions": 5218, + "makin": 5219, + "whipped": 5220, + "seasoned": 5221, + "kenny": 5222, + "disrespect": 5223, + "she'd": 5224, + "naman": 5225, + "spiritual": 5226, + "certificate": 5227, + "cope": 5228, + "tommy": 5229, + "vast": 5230, + "emotionally": 5231, + "confident": 5232, + "ultra": 5233, + "collective": 5234, + "alabama": 5235, + "vid": 5236, + "pumpkin": 5237, + "occasion": 5238, + ":p": 5239, + "birthdays": 5240, + "larger": 5241, + "allen": 5242, + "bagel": 5243, + "torn": 5244, + "eachother": 5245, + "stating": 5246, + "hearted": 5247, + "raising": 5248, + "password": 5249, + "brownies": 5250, + "kayla": 5251, + "commentary": 5252, + "iv": 5253, + "investment": 5254, + "madness": 5255, + "geez": 5256, + "grandparents": 5257, + "swift": 5258, + "cocktails": 5259, + "discovered": 5260, + "cheney": 5261, + "uniform": 5262, + "leak": 5263, + "lime": 5264, + "pushed": 5265, + "diss": 5266, + "primary": 5267, + "nash": 5268, + "buzzing": 5269, + "strawberries": 5270, + "gucci": 5271, + "dolor": 5272, + "robin": 5273, + "practices": 5274, + "hispanic": 5275, + "meg": 5276, + "neva": 5277, + "naive": 5278, + "graduated": 5279, + "reagan": 5280, + "tout": 5281, + "pockets": 5282, + "championship": 5283, + "stubborn": 5284, + "routine": 5285, + "yas": 5286, + "priceless": 5287, + "sue": 5288, + "invisible": 5289, + "rainbow": 5290, + "ache": 5291, + "suffering": 5292, + "projects": 5293, + "wwe": 5294, + "trey": 5295, + "file": 5296, + "opera": 5297, + "blaming": 5298, + "cheeks": 5299, + "flex": 5300, + "tumblr": 5301, + "sang": 5302, + "whine": 5303, + "dim": 5304, + "questionable": 5305, + "rainy": 5306, + "hai": 5307, + "wa": 5308, + "serves": 5309, + "rogers": 5310, + "scoop": 5311, + "rescue": 5312, + "brat": 5313, + "bruce": 5314, + "warfare": 5315, + "pitiful": 5316, + "ally": 5317, + "permission": 5318, + "seeking": 5319, + "teenage": 5320, + "detailed": 5321, + "hardware": 5322, + "heroes": 5323, + "scent": 5324, + "satisfaction": 5325, + "exception": 5326, + "pipe": 5327, + "weirdest": 5328, + "esse": 5329, + "secretly": 5330, + "syrup": 5331, + "kanye": 5332, + "drawn": 5333, + "brutal": 5334, + "carrying": 5335, + "demand": 5336, + "communist": 5337, + "ireland": 5338, + "wonderfully": 5339, + "bullying": 5340, + "nipple": 5341, + "delight": 5342, + "uno": 5343, + "beds": 5344, + "adds": 5345, + "arrest": 5346, + "logical": 5347, + "und": 5348, + "roller": 5349, + "jon": 5350, + "outlet": 5351, + "goods": 5352, + "crushed": 5353, + "nerd": 5354, + "calum": 5355, + "inspire": 5356, + "monsters": 5357, + "cds": 5358, + "bah": 5359, + "mayo": 5360, + "finds": 5361, + "explains": 5362, + "recognized": 5363, + "reunion": 5364, + "upp": 5365, + "lighter": 5366, + "grr": 5367, + "comer": 5368, + "unlimited": 5369, + "harsh": 5370, + "taxpayers": 5371, + "fourth": 5372, + "jews": 5373, + "j'ai": 5374, + "zombies": 5375, + "horny": 5376, + "flu": 5377, + "acted": 5378, + "trillion": 5379, + "fyi": 5380, + "cons": 5381, + "damned": 5382, + "angle": 5383, + "visits": 5384, + "sack": 5385, + "colored": 5386, + "forest": 5387, + "beyonce": 5388, + "gospel": 5389, + "directions": 5390, + "poco": 5391, + "allergic": 5392, + "itunes": 5393, + "okayy": 5394, + "hoodie": 5395, + "trilogy": 5396, + "licking": 5397, + "agent": 5398, + "fade": 5399, + "unusual": 5400, + "naps": 5401, + "intellectual": 5402, + "upside": 5403, + "cracker": 5404, + "velvet": 5405, + "rats": 5406, + "pedicure": 5407, + "cocky": 5408, + "grease": 5409, + "homeless": 5410, + "tch": 5411, + "donut": 5412, + "waves": 5413, + "retweeting": 5414, + "samsung": 5415, + "tay": 5416, + "ace": 5417, + "urge": 5418, + "strategy": 5419, + "frame": 5420, + "engaged": 5421, + "spreading": 5422, + "str": 5423, + "biography": 5424, + "equally": 5425, + "neighbor": 5426, + "damnn": 5427, + "accused": 5428, + "miller": 5429, + "vc": 5430, + "wade": 5431, + "tysm": 5432, + "ideal": 5433, + "haa": 5434, + "nightmares": 5435, + "kung": 5436, + "shoulders": 5437, + "sizes": 5438, + "illinois": 5439, + "doc": 5440, + "han": 5441, + "ly": 5442, + "curse": 5443, + "favs": 5444, + "sheep": 5445, + "backpack": 5446, + "voy": 5447, + "nike": 5448, + "router": 5449, + "justify": 5450, + "leo": 5451, + "bebe": 5452, + "ihop": 5453, + "rates": 5454, + "ford": 5455, + "callin": 5456, + "brazilian": 5457, + "lowest": 5458, + "coo": 5459, + "script": 5460, + "rapist": 5461, + "equipment": 5462, + "belle": 5463, + "espn": 5464, + "disappear": 5465, + "pigs": 5466, + "neil": 5467, + "der": 5468, + "sits": 5469, + "politician": 5470, + "taxi": 5471, + "whoop": 5472, + "sempre": 5473, + "lotion": 5474, + "lobby": 5475, + "teens": 5476, + "browns": 5477, + "gotcha": 5478, + "rejected": 5479, + "russia": 5480, + "creation": 5481, + "yaass": 5482, + "elvis": 5483, + "warrior": 5484, + "vale": 5485, + "trending": 5486, + "theatre": 5487, + "receipt": 5488, + "destiny": 5489, + "jackie": 5490, + "wire": 5491, + "mexicans": 5492, + "vol": 5493, + "paso": 5494, + "loosing": 5495, + "flirt": 5496, + "dom": 5497, + "anne": 5498, + "kennedy": 5499, + "screenshot": 5500, + "loaded": 5501, + "judges": 5502, + "selena": 5503, + "category": 5504, + "wax": 5505, + "dad's": 5506, + "edited": 5507, + "bedtime": 5508, + "hunger": 5509, + "camping": 5510, + "kate": 5511, + "comparing": 5512, + "sexist": 5513, + "director": 5514, + "requested": 5515, + "horrid": 5516, + "avocado": 5517, + "donate": 5518, + "narrow": 5519, + "matthew": 5520, + "jasmine": 5521, + "regime": 5522, + "rs": 5523, + "lap": 5524, + "fback": 5525, + "throws": 5526, + "writes": 5527, + "gtfo": 5528, + "diego": 5529, + "communication": 5530, + "rental": 5531, + "ripoff": 5532, + "stamps": 5533, + "creek": 5534, + "fuuck": 5535, + "everything's": 5536, + "fairy": 5537, + "pretending": 5538, + "sassy": 5539, + "produced": 5540, + "pony": 5541, + "cuddles": 5542, + "westbrook": 5543, + "balanced": 5544, + "smashed": 5545, + "rocky": 5546, + "blank": 5547, + "habit": 5548, + "cameron": 5549, + "props": 5550, + "feds": 5551, + "critical": 5552, + "celebrating": 5553, + "despise": 5554, + "twerk": 5555, + "strangers": 5556, + "liberty": 5557, + "managers": 5558, + "visual": 5559, + "scored": 5560, + "damnit": 5561, + "division": 5562, + "biscuits": 5563, + "appeared": 5564, + "lamp": 5565, + "giants": 5566, + "sample": 5567, + "whatsoever": 5568, + "presents": 5569, + "vent": 5570, + "interior": 5571, + "performances": 5572, + "assignment": 5573, + "ella": 5574, + "activities": 5575, + "individual": 5576, + "grandmother": 5577, + "spelled": 5578, + ":3": 5579, + "caps": 5580, + "girll": 5581, + "chatting": 5582, + "dvds": 5583, + "killin": 5584, + "attorney": 5585, + "honored": 5586, + "pouring": 5587, + "perfecto": 5588, + "disneyland": 5589, + "shell": 5590, + "worship": 5591, + "deleting": 5592, + "daddy's": 5593, + "sources": 5594, + "spy": 5595, + "supported": 5596, + "bounce": 5597, + "pressed": 5598, + "lads": 5599, + "mdrr": 5600, + "thee": 5601, + "powder": 5602, + "reached": 5603, + "despicable": 5604, + "needless": 5605, + "happily": 5606, + "loco": 5607, + "bipolar": 5608, + "messiah": 5609, + "nuggets": 5610, + "world's": 5611, + "wakes": 5612, + "venue": 5613, + "peaceful": 5614, + "ceiling": 5615, + "hashtag": 5616, + "hum": 5617, + "ave": 5618, + "surprises": 5619, + "receiving": 5620, + "loll": 5621, + "persons": 5622, + "leggings": 5623, + "lucy": 5624, + "gluten": 5625, + "presented": 5626, + "patrick": 5627, + "insulting": 5628, + "switched": 5629, + "yaas": 5630, + "frustration": 5631, + "crooked": 5632, + "whaat": 5633, + "forces": 5634, + "feliz": 5635, + "chosen": 5636, + "turtle": 5637, + "inlove": 5638, + "berry": 5639, + "lad": 5640, + "madonna": 5641, + "amanda": 5642, + "economics": 5643, + "worthwhile": 5644, + "polite": 5645, + "ina": 5646, + "invest": 5647, + "entertain": 5648, + "rockin": 5649, + "barbie": 5650, + "valuable": 5651, + "corporations": 5652, + "smarter": 5653, + "highway": 5654, + "supports": 5655, + "detroit": 5656, + "companion": 5657, + "boredom": 5658, + "swollen": 5659, + "tools": 5660, + "tragic": 5661, + "pedophile": 5662, + "choir": 5663, + "surrounded": 5664, + "catfish": 5665, + "outrageous": 5666, + "daw": 5667, + "hack": 5668, + "engine": 5669, + "responding": 5670, + "estoy": 5671, + "collect": 5672, + "pac": 5673, + "legally": 5674, + "friggin": 5675, + "muy": 5676, + "apologies": 5677, + "metro": 5678, + "ahah": 5679, + "devils": 5680, + "deals": 5681, + "rapists": 5682, + "contest": 5683, + "comme": 5684, + "isn": 5685, + "prize": 5686, + "pleasantly": 5687, + "numb": 5688, + "soldiers": 5689, + "unbelievably": 5690, + "sike": 5691, + "paranoid": 5692, + "sim": 5693, + "ce": 5694, + "souls": 5695, + "shed": 5696, + "pose": 5697, + "notebook": 5698, + "blocks": 5699, + "kissed": 5700, + "brb": 5701, + "photography": 5702, + "earrings": 5703, + "photographer": 5704, + "tmr": 5705, + "fucken": 5706, + "significant": 5707, + "wheels": 5708, + "worrying": 5709, + "breast": 5710, + "dumber": 5711, + "believes": 5712, + "shampoo": 5713, + "friend's": 5714, + "refill": 5715, + "mindless": 5716, + "sauces": 5717, + "knoww": 5718, + "ease": 5719, + "hemmings": 5720, + "arab": 5721, + "intriguing": 5722, + "gabby": 5723, + "desperately": 5724, + "motor": 5725, + "#2": 5726, + "matching": 5727, + "cocaine": 5728, + "u're": 5729, + "impress": 5730, + "iraq": 5731, + "abby": 5732, + "compact": 5733, + "houses": 5734, + "jamie": 5735, + "motivated": 5736, + "thrilled": 5737, + "dried": 5738, + "oi": 5739, + "jeep": 5740, + "scumbag": 5741, + "subtweet": 5742, + "realised": 5743, + "wives": 5744, + "insecure": 5745, + "carried": 5746, + "siento": 5747, + "men's": 5748, + "crisp": 5749, + "cities": 5750, + "mums": 5751, + "biting": 5752, + "faves": 5753, + "demi": 5754, + "minority": 5755, + "moderate": 5756, + "satisfying": 5757, + "organic": 5758, + "rushed": 5759, + "assistant": 5760, + "rotten": 5761, + "funky": 5762, + "hugging": 5763, + "fluffy": 5764, + "fork": 5765, + "hammer": 5766, + "inner": 5767, + "centre": 5768, + "sleeve": 5769, + "superficial": 5770, + "repetitive": 5771, + "backed": 5772, + "locations": 5773, + "broad": 5774, + "define": 5775, + "eminem": 5776, + "tournament": 5777, + "horribly": 5778, + "rubber": 5779, + "workouts": 5780, + "glue": 5781, + "applied": 5782, + "wyd": 5783, + "brock": 5784, + "nan": 5785, + "puerto": 5786, + "wealthy": 5787, + "operation": 5788, + "weekly": 5789, + "melissa": 5790, + "graphics": 5791, + "viewing": 5792, + "tequila": 5793, + "canceled": 5794, + "peak": 5795, + "naturally": 5796, + "ain": 5797, + "trail": 5798, + "pancake": 5799, + "kingdom": 5800, + "i'ma": 5801, + "trump": 5802, + "flirting": 5803, + "byee": 5804, + "tonight's": 5805, + "outfits": 5806, + "floyd": 5807, + "grabbed": 5808, + "thankfully": 5809, + "craig": 5810, + "whilst": 5811, + "murdered": 5812, + "wonders": 5813, + "rains": 5814, + "healing": 5815, + "corona": 5816, + "milwaukee": 5817, + "vines": 5818, + "dm's": 5819, + "bri": 5820, + "puppies": 5821, + "peach": 5822, + "opponent": 5823, + "mikey": 5824, + "tad": 5825, + "dp": 5826, + "straw": 5827, + "whiny": 5828, + "buzz": 5829, + "believing": 5830, + "amateur": 5831, + "karaoke": 5832, + "negativity": 5833, + "whack": 5834, + "ard": 5835, + "immigration": 5836, + "gullible": 5837, + "dammit": 5838, + "associate": 5839, + "breed": 5840, + "tasteless": 5841, + "weakness": 5842, + "andrea": 5843, + "creamy": 5844, + "succeed": 5845, + "lololol": 5846, + "defensive": 5847, + "calories": 5848, + "leaf": 5849, + "halfway": 5850, + "bt": 5851, + "testing": 5852, + "proving": 5853, + "fighter": 5854, + "earphones": 5855, + "reunited": 5856, + "havin": 5857, + "uneducated": 5858, + "collapse": 5859, + "throwback": 5860, + "disappeared": 5861, + "weeknd": 5862, + "milkshake": 5863, + "hillary": 5864, + ":((": 5865, + "misery": 5866, + "urban": 5867, + "hers": 5868, + "snoring": 5869, + "specifically": 5870, + "causing": 5871, + "addictive": 5872, + "eyed": 5873, + "skype": 5874, + "whoops": 5875, + "toddler": 5876, + "emergency": 5877, + "holla": 5878, + "fu": 5879, + "entry": 5880, + "nutella": 5881, + "trek": 5882, + "vehicle": 5883, + "haven": 5884, + "sip": 5885, + "efficient": 5886, + "tent": 5887, + "defo": 5888, + "tomorrow's": 5889, + "languages": 5890, + "hihi": 5891, + "strikes": 5892, + "thorough": 5893, + "champ": 5894, + "officer": 5895, + "mushroom": 5896, + "++": 5897, + "realy": 5898, + "vocals": 5899, + "revolution": 5900, + "imagination": 5901, + "buns": 5902, + "challenging": 5903, + "seek": 5904, + "champagne": 5905, + "solar": 5906, + "pros": 5907, + "chem": 5908, + "reviewers": 5909, + "disturbed": 5910, + "russell": 5911, + "roots": 5912, + "outs": 5913, + "coco": 5914, + "growth": 5915, + "pole": 5916, + "fluff": 5917, + "steady": 5918, + "yeaah": 5919, + "cotton": 5920, + "envy": 5921, + "saint": 5922, + "invented": 5923, + "logo": 5924, + "ape": 5925, + "showers": 5926, + "stamp": 5927, + "diamonds": 5928, + "sesh": 5929, + "dealer": 5930, + "fifa": 5931, + "hills": 5932, + "mala": 5933, + "fist": 5934, + "finale": 5935, + "bonito": 5936, + "lunches": 5937, + "funds": 5938, + "gr": 5939, + "salute": 5940, + "rumors": 5941, + "vintage": 5942, + "hatin": 5943, + "kayo": 5944, + "jade": 5945, + "merely": 5946, + "brad": 5947, + "hazard": 5948, + "cigarettes": 5949, + "gained": 5950, + "thoo": 5951, + "siri": 5952, + "jeez": 5953, + "bo": 5954, + "dean": 5955, + "secretary": 5956, + "patiently": 5957, + "ahahaha": 5958, + "steam": 5959, + "panic": 5960, + "margarita": 5961, + "lid": 5962, + "method": 5963, + "nuff": 5964, + "jgh": 5965, + "roger": 5966, + "dios": 5967, + "gallon": 5968, + "abortions": 5969, + "cooks": 5970, + "cody": 5971, + "reputation": 5972, + "montreal": 5973, + "lex": 5974, + "carne": 5975, + "upload": 5976, + "woman's": 5977, + "jar": 5978, + "fwm": 5979, + "saints": 5980, + "awee": 5981, + "acknowledge": 5982, + "affect": 5983, + "dats": 5984, + "sdv": 5985, + "expose": 5986, + "bih": 5987, + "sneaky": 5988, + "harris": 5989, + "funeral": 5990, + "rapping": 5991, + "nationality": 5992, + "orientation": 5993, + "william": 5994, + "comp": 5995, + "):": 5996, + "whaa": 5997, + "madden": 5998, + "taller": 5999, + "cave": 6000, + "jamming": 6001, + "australian": 6002, + "murray": 6003, + "zimmerman": 6004, + "foreal": 6005, + "tanning": 6006, + "ja": 6007, + "pains": 6008, + "magnificent": 6009, + "stinky": 6010, + "mariah": 6011, + "drowning": 6012, + "cries": 6013, + "pinky": 6014, + "embrace": 6015, + "greens": 6016, + "sweets": 6017, + "shuffle": 6018, + "juvenile": 6019, + "mil": 6020, + "satan": 6021, + "sophomore": 6022, + "coworkers": 6023, + "supply": 6024, + "ir": 6025, + "shifts": 6026, + "dive": 6027, + "headaches": 6028, + "rangers": 6029, + "racial": 6030, + "survived": 6031, + "cabeza": 6032, + "superman": 6033, + "homosexuality": 6034, + "cal": 6035, + "subs": 6036, + "global": 6037, + "deadly": 6038, + "grip": 6039, + "heating": 6040, + "aight": 6041, + "dub": 6042, + "alice": 6043, + "noches": 6044, + "dayy": 6045, + "paycheck": 6046, + "pt": 6047, + "hut": 6048, + "males": 6049, + "beatles": 6050, + "entrance": 6051, + "kristen": 6052, + "rts": 6053, + "tatted": 6054, + "awhh": 6055, + "ketchup": 6056, + "systems": 6057, + "actors": 6058, + "freaked": 6059, + "gente": 6060, + "playa": 6061, + "cloud": 6062, + "clients": 6063, + "stripper": 6064, + "filet": 6065, + "dissapointing": 6066, + "frog": 6067, + "bish": 6068, + "anonymous": 6069, + "fellas": 6070, + "primer": 6071, + "guacamole": 6072, + "streak": 6073, + "integrity": 6074, + "prep": 6075, + "vomit": 6076, + "feeder": 6077, + "biology": 6078, + "matches": 6079, + "joseph": 6080, + "independent": 6081, + "wiz": 6082, + "banks": 6083, + "lurking": 6084, + "dorm": 6085, + "muffin": 6086, + "nous": 6087, + "foo": 6088, + "pattern": 6089, + "limits": 6090, + "srsly": 6091, + "teddy": 6092, + "castle": 6093, + "gentleman": 6094, + "arse": 6095, + "trashy": 6096, + "posters": 6097, + "pricing": 6098, + "diaries": 6099, + "diaper": 6100, + "shattered": 6101, + "ll": 6102, + "puedo": 6103, + "privilege": 6104, + "hopeless": 6105, + "slay": 6106, + "nao": 6107, + "believers": 6108, + "psychology": 6109, + "titties": 6110, + "depression": 6111, + "relaxed": 6112, + "tested": 6113, + "rico": 6114, + "disco": 6115, + "needing": 6116, + "indoor": 6117, + "bulls": 6118, + "girl's": 6119, + "aged": 6120, + "discussing": 6121, + "ee": 6122, + "cows": 6123, + "steph": 6124, + "obrigada": 6125, + "graphic": 6126, + "duhh": 6127, + "topped": 6128, + "frequent": 6129, + "obamas": 6130, + "remake": 6131, + "fountain": 6132, + "mvp": 6133, + "vocabulary": 6134, + "dud": 6135, + "scandals": 6136, + "talaga": 6137, + "skies": 6138, + "divine": 6139, + "everr": 6140, + "kan": 6141, + "strict": 6142, + "trainer": 6143, + "allowing": 6144, + "rage": 6145, + "broccoli": 6146, + "nations": 6147, + "horses": 6148, + "alexis": 6149, + "units": 6150, + "shouldnt": 6151, + "compete": 6152, + "shaved": 6153, + "prescription": 6154, + "handful": 6155, + "unacceptable": 6156, + "captivating": 6157, + "denial": 6158, + "correction": 6159, + "crushing": 6160, + "queens": 6161, + "terrified": 6162, + "porch": 6163, + "fo": 6164, + "jajajajaja": 6165, + "laughable": 6166, + "deus": 6167, + "aswell": 6168, + "ted": 6169, + "roman": 6170, + "oohh": 6171, + "rising": 6172, + "madre": 6173, + "hustle": 6174, + "scheduled": 6175, + "amigos": 6176, + "banging": 6177, + "buff": 6178, + "shutup": 6179, + "nude": 6180, + "dine": 6181, + "cking": 6182, + "sweating": 6183, + "noche": 6184, + "pickles": 6185, + "bein": 6186, + "donald": 6187, + "wag": 6188, + "sur": 6189, + "tn": 6190, + "premise": 6191, + "grad": 6192, + "whatsapp": 6193, + "computers": 6194, + "belief": 6195, + "that'd": 6196, + "faded": 6197, + "jaja": 6198, + "rally": 6199, + "tru": 6200, + "reports": 6201, + "miley": 6202, + "vhs": 6203, + "watches": 6204, + "chats": 6205, + "dire": 6206, + "funk": 6207, + "maths": 6208, + "bartenders": 6209, + "amusing": 6210, + "allows": 6211, + "mah": 6212, + "ricky": 6213, + "grinding": 6214, + "crunch": 6215, + "sunglasses": 6216, + "adopted": 6217, + "spark": 6218, + "mixtape": 6219, + "cheeky": 6220, + "clifford": 6221, + "chopped": 6222, + "chilled": 6223, + "eyebrow": 6224, + "uhm": 6225, + "butterflies": 6226, + "kat": 6227, + "floors": 6228, + "goddamn": 6229, + "monica": 6230, + "supportive": 6231, + "butts": 6232, + "filters": 6233, + "creeping": 6234, + "woohoo": 6235, + "chloe": 6236, + "dun": 6237, + "sayang": 6238, + "commercials": 6239, + "elite": 6240, + "celebration": 6241, + "payday": 6242, + "saves": 6243, + "downhill": 6244, + "jams": 6245, + "aliens": 6246, + "images": 6247, + "latte": 6248, + "contain": 6249, + "qt": 6250, + "bargaining": 6251, + "edges": 6252, + "confusion": 6253, + "indicted": 6254, + "homes": 6255, + "booze": 6256, + "hateful": 6257, + "patients": 6258, + "roads": 6259, + "trial": 6260, + "nancy": 6261, + "tales": 6262, + "ellen": 6263, + "models": 6264, + "strongly": 6265, + "tiring": 6266, + "cleveland": 6267, + "tray": 6268, + "paragraph": 6269, + "dutch": 6270, + "listing": 6271, + "blocking": 6272, + "encanta": 6273, + "slower": 6274, + "francisco": 6275, + "listens": 6276, + "sexiest": 6277, + "itt": 6278, + "galaxy": 6279, + "amigo": 6280, + "hookah": 6281, + "hm": 6282, + "kudos": 6283, + "thanksgiving": 6284, + "reforms": 6285, + "manchester": 6286, + "whores": 6287, + "patty": 6288, + "ale": 6289, + "rear": 6290, + "blake": 6291, + "nipples": 6292, + "cheek": 6293, + "lush": 6294, + "amazed": 6295, + "towels": 6296, + "economic": 6297, + "syria": 6298, + "claimed": 6299, + "fags": 6300, + "bracelet": 6301, + "beloved": 6302, + "suggestions": 6303, + "hs": 6304, + "deluxe": 6305, + "iont": 6306, + "lecture": 6307, + "unknown": 6308, + "must've": 6309, + "olivia": 6310, + "shitting": 6311, + "various": 6312, + "hart": 6313, + "typos": 6314, + "deff": 6315, + "shark": 6316, + "bastards": 6317, + "huhu": 6318, + "enlightening": 6319, + "hoop": 6320, + "bride": 6321, + "mani": 6322, + "champs": 6323, + "julia": 6324, + "xean": 6325, + "retire": 6326, + "hassle": 6327, + "bogus": 6328, + "priorities": 6329, + "babysitting": 6330, + "href": 6331, + "achieve": 6332, + "grows": 6333, + "faux": 6334, + "pearl": 6335, + "replay": 6336, + "puzzle": 6337, + "sexually": 6338, + "delivers": 6339, + "jealousy": 6340, + "deli": 6341, + "moist": 6342, + "danger": 6343, + "highschool": 6344, + "cartoon": 6345, + "))": 6346, + "diary": 6347, + "arena": 6348, + "attracted": 6349, + "curl": 6350, + "efforts": 6351, + "hahahha": 6352, + "fella": 6353, + "kfc": 6354, + "wifey": 6355, + "sock": 6356, + "chew": 6357, + "sorta": 6358, + "painted": 6359, + "covering": 6360, + "gusta": 6361, + "pause": 6362, + "waits": 6363, + "overwhelming": 6364, + "steven": 6365, + "juss": 6366, + "gripping": 6367, + "nursing": 6368, + "rft": 6369, + "abused": 6370, + "nobody's": 6371, + "reject": 6372, + "bestest": 6373, + "sd": 6374, + "cha": 6375, + "yang": 6376, + "itch": 6377, + "cuss": 6378, + "flame": 6379, + "printing": 6380, + "dreading": 6381, + "ari": 6382, + "maan": 6383, + "razor": 6384, + "remembering": 6385, + "thirst": 6386, + "msg": 6387, + "pita": 6388, + "vamos": 6389, + "sol": 6390, + "celtics": 6391, + "ann": 6392, + "heey": 6393, + "upcoming": 6394, + "doug": 6395, + "wright": 6396, + "rabbit": 6397, + "eres": 6398, + "situations": 6399, + "horas": 6400, + "goddess": 6401, + "jr": 6402, + "guessed": 6403, + "chu": 6404, + "chavez": 6405, + "thoughtful": 6406, + "identity": 6407, + "prettiest": 6408, + "decade": 6409, + "monthly": 6410, + "#sorrynotsorry": 6411, + "retail": 6412, + "moody": 6413, + "substitute": 6414, + "stiff": 6415, + "libs": 6416, + "masters": 6417, + "louisiana": 6418, + "haunting": 6419, + "speechless": 6420, + "este": 6421, + "ultimately": 6422, + "hahaa": 6423, + "mtv": 6424, + "woken": 6425, + "alyssa": 6426, + "tiene": 6427, + "bitchh": 6428, + "muchh": 6429, + "overcooked": 6430, + "greatly": 6431, + "grounded": 6432, + "coworker": 6433, + "travis": 6434, + "commented": 6435, + "dancer": 6436, + "principles": 6437, + "snapped": 6438, + "temper": 6439, + "unemployed": 6440, + "fold": 6441, + "pooh": 6442, + "diva": 6443, + "hotter": 6444, + "concerts": 6445, + "fund": 6446, + "idols": 6447, + "hahahahahahaha": 6448, + "og": 6449, + "takin": 6450, + "supposedly": 6451, + "asi": 6452, + "materials": 6453, + "emails": 6454, + "steaks": 6455, + "tropical": 6456, + "hallway": 6457, + "deceptive": 6458, + "flew": 6459, + "hungover": 6460, + "interests": 6461, + "carl": 6462, + "une": 6463, + "pinterest": 6464, + "hurricane": 6465, + "overnight": 6466, + "appetite": 6467, + "plzz": 6468, + "fridays": 6469, + "boyy": 6470, + "shaped": 6471, + "sided": 6472, + "roommates": 6473, + "lite": 6474, + "thankyouu": 6475, + "european": 6476, + "espresso": 6477, + "destroying": 6478, + "bakery": 6479, + "duke": 6480, + "jewelry": 6481, + "stud": 6482, + "supreme": 6483, + "scratched": 6484, + "avec": 6485, + "remaining": 6486, + "tagged": 6487, + "pads": 6488, + "partying": 6489, + "maintenance": 6490, + "consistency": 6491, + "inappropriate": 6492, + "divorce": 6493, + "crave": 6494, + "lightweight": 6495, + "convos": 6496, + "capable": 6497, + "meu": 6498, + "committee": 6499, + "thailand": 6500, + "rlly": 6501, + "fm": 6502, + "fitting": 6503, + "betty": 6504, + "diner": 6505, + "lightskin": 6506, + "tofu": 6507, + "bury": 6508, + "mustard": 6509, + "claro": 6510, + "meats": 6511, + "approaching": 6512, + "belongs": 6513, + "cheering": 6514, + "cliff": 6515, + "solve": 6516, + "whiskey": 6517, + "lucas": 6518, + "haley": 6519, + "unlucky": 6520, + "sells": 6521, + "thanking": 6522, + "essays": 6523, + "stake": 6524, + "dunkin": 6525, + "yan": 6526, + "represent": 6527, + "setup": 6528, + "extraordinary": 6529, + "bowls": 6530, + "nag": 6531, + "wendy's": 6532, + "heh": 6533, + "freeze": 6534, + "hail": 6535, + "liquid": 6536, + "kitten": 6537, + "courts": 6538, + "combined": 6539, + "blender": 6540, + "kylie": 6541, + "measure": 6542, + "instance": 6543, + "duele": 6544, + "ds": 6545, + "montana": 6546, + "timer": 6547, + "leaking": 6548, + "grant": 6549, + "truu": 6550, + "acid": 6551, + "parade": 6552, + "goose": 6553, + "heavenly": 6554, + "mattress": 6555, + "journal": 6556, + "lah": 6557, + "winners": 6558, + "watchin": 6559, + "sincerely": 6560, + "harmony": 6561, + "bellagio": 6562, + "menus": 6563, + "stack": 6564, + "whisper": 6565, + "typo": 6566, + "mutual": 6567, + "defiantly": 6568, + "blink": 6569, + "interviews": 6570, + "nevermind": 6571, + "blogs": 6572, + "beau": 6573, + "broth": 6574, + "chewy": 6575, + "phase": 6576, + "liner": 6577, + "dec": 6578, + "candle": 6579, + "buds": 6580, + "funnier": 6581, + "gentle": 6582, + "tao": 6583, + "skipped": 6584, + "spamming": 6585, + "kpop": 6586, + "mucho": 6587, + "mph": 6588, + "acoustic": 6589, + "ova": 6590, + "vicky": 6591, + "faggots": 6592, + "glove": 6593, + "require": 6594, + "jai": 6595, + "district": 6596, + "hermosa": 6597, + "hacer": 6598, + "cooker": 6599, + "trigger": 6600, + "siblings": 6601, + "pues": 6602, + "oppa": 6603, + "posing": 6604, + "submit": 6605, + "arts": 6606, + "practicing": 6607, + "watermelon": 6608, + "crunchy": 6609, + "brooke": 6610, + "cameras": 6611, + "attempted": 6612, + "shorter": 6613, + "dragged": 6614, + "spongebob": 6615, + "chops": 6616, + "algebra": 6617, + "representatives": 6618, + "coulda": 6619, + "repeating": 6620, + "guaranteed": 6621, + "definately": 6622, + "storyline": 6623, + "traitor": 6624, + "oreos": 6625, + "twerking": 6626, + ":-(": 6627, + "woow": 6628, + "corruption": 6629, + "insults": 6630, + "diana": 6631, + "sorted": 6632, + "nostalgia": 6633, + "coughing": 6634, + "knowledgeable": 6635, + "flags": 6636, + "alhamdulillah": 6637, + "climb": 6638, + "installed": 6639, + "completed": 6640, + "greater": 6641, + "bananas": 6642, + "migraine": 6643, + "hunny": 6644, + "candles": 6645, + "recommendation": 6646, + "apparent": 6647, + "microsoft": 6648, + "jo": 6649, + "tortilla": 6650, + "asians": 6651, + "child's": 6652, + "necklace": 6653, + "pokemon": 6654, + "craft": 6655, + "mam": 6656, + "nearby": 6657, + "aussi": 6658, + "err": 6659, + "ahora": 6660, + "hows": 6661, + "homecoming": 6662, + "manny": 6663, + "sweats": 6664, + "formula": 6665, + "northern": 6666, + "cuisine": 6667, + "bathrooms": 6668, + "elle": 6669, + "asada": 6670, + "eagle": 6671, + "highlights": 6672, + "rushing": 6673, + "empire": 6674, + "rome": 6675, + "elegant": 6676, + "rollin": 6677, + "tellin": 6678, + "wan": 6679, + "hypocrites": 6680, + "worms": 6681, + "manners": 6682, + "tori": 6683, + "minimal": 6684, + "louder": 6685, + "expression": 6686, + "greatness": 6687, + "maggot": 6688, + "referred": 6689, + "chocolates": 6690, + "dame": 6691, + "newspaper": 6692, + "sympathy": 6693, + "squeeze": 6694, + "disk": 6695, + "brows": 6696, + "ex's": 6697, + "pairs": 6698, + "zach": 6699, + "coaches": 6700, + "challenged": 6701, + "wats": 6702, + "patch": 6703, + "countdown": 6704, + "brownie": 6705, + "nae": 6706, + "thief": 6707, + "unhealthy": 6708, + "polls": 6709, + "baee": 6710, + "stoked": 6711, + "lib": 6712, + "lefty": 6713, + "cardio": 6714, + "holaa": 6715, + "ronald": 6716, + "curls": 6717, + "#love": 6718, + "missin": 6719, + "devices": 6720, + "downs": 6721, + "writers": 6722, + "generic": 6723, + "nomination": 6724, + "feb": 6725, + "wid": 6726, + "triste": 6727, + "bumping": 6728, + "cutee": 6729, + "insert": 6730, + "chills": 6731, + "screamed": 6732, + "cd's": 6733, + "dork": 6734, + "bonita": 6735, + "reverse": 6736, + "rofl": 6737, + "initial": 6738, + "heavily": 6739, + "anxious": 6740, + "agora": 6741, + "orleans": 6742, + "preaching": 6743, + "joel": 6744, + "understandable": 6745, + "sliced": 6746, + "mentioning": 6747, + "buys": 6748, + "foster": 6749, + "actress": 6750, + "upper": 6751, + "controller": 6752, + "yee": 6753, + "relatively": 6754, + "discover": 6755, + "edible": 6756, + "holly": 6757, + "bankrupt": 6758, + "toi": 6759, + "beth": 6760, + "oreo": 6761, + "glow": 6762, + ">": 6763, + "domestic": 6764, + "creates": 6765, + "cage": 6766, + "classroom": 6767, + "hace": 6768, + "behave": 6769, + "riot": 6770, + "bend": 6771, + "heartbreaking": 6772, + "soros": 6773, + "heal": 6774, + "msnbc": 6775, + "vie": 6776, + "pond": 6777, + "tommorow": 6778, + "tat": 6779, + "scooter": 6780, + "academic": 6781, + "witness": 6782, + "minimum": 6783, + "judged": 6784, + "aahh": 6785, + "pillows": 6786, + "katy": 6787, + "maps": 6788, + "gals": 6789, + "tearing": 6790, + "reasonably": 6791, + "hairs": 6792, + "cooling": 6793, + "bullet": 6794, + "opportunities": 6795, + "murderer": 6796, + "hose": 6797, + "payers": 6798, + "periods": 6799, + "kindness": 6800, + "refills": 6801, + "sydney": 6802, + "infront": 6803, + "shakes": 6804, + "christianity": 6805, + "moree": 6806, + "port": 6807, + "drained": 6808, + "insomnia": 6809, + "intentions": 6810, + "conditions": 6811, + "shook": 6812, + "buffets": 6813, + "rod": 6814, + "carlos": 6815, + "tab": 6816, + "xmas": 6817, + "sana": 6818, + "gordon": 6819, + "darkness": 6820, + "skipping": 6821, + "hermoso": 6822, + "interpretation": 6823, + "pennsylvania": 6824, + "rational": 6825, + "oldest": 6826, + "jenny": 6827, + "elections": 6828, + "gut": 6829, + "o-o": 6830, + "warriors": 6831, + "haunted": 6832, + "meek": 6833, + "helloo": 6834, + "fuss": 6835, + "expired": 6836, + "consumer": 6837, + "ratio": 6838, + "flavored": 6839, + "frequently": 6840, + "noted": 6841, + "gender": 6842, + "arthur": 6843, + "whale": 6844, + "dot": 6845, + "britney": 6846, + "danielle": 6847, + "slipping": 6848, + "static": 6849, + "contains": 6850, + "watering": 6851, + "eff": 6852, + "orlando": 6853, + "singers": 6854, + "hawaiian": 6855, + "temp": 6856, + "imessage": 6857, + "noah": 6858, + "promo": 6859, + "faire": 6860, + "costa": 6861, + "ss": 6862, + "microphone": 6863, + "pins": 6864, + "atl": 6865, + "existing": 6866, + "campbell": 6867, + "radical": 6868, + "verdad": 6869, + "joined": 6870, + "robbed": 6871, + "recordings": 6872, + "premier": 6873, + "bummed": 6874, + "slavery": 6875, + "autumn": 6876, + "exists": 6877, + "trophy": 6878, + "dizzy": 6879, + "nosey": 6880, + "jb": 6881, + "ganas": 6882, + "panera": 6883, + "abroad": 6884, + "knives": 6885, + "familia": 6886, + "paste": 6887, + "romney's": 6888, + "clark": 6889, + "actin": 6890, + "subtweeting": 6891, + "plss": 6892, + "america's": 6893, + "eddie": 6894, + "odds": 6895, + "rays": 6896, + "tanks": 6897, + "amd": 6898, + "thots": 6899, + "sleepover": 6900, + "fixing": 6901, + "connor": 6902, + "sunset": 6903, + "runnin": 6904, + "xec": 6905, + "bailey": 6906, + "inviting": 6907, + "authority": 6908, + "halo": 6909, + "greys": 6910, + "jaw": 6911, + "wah": 6912, + "scores": 6913, + "boba": 6914, + "thanx": 6915, + "ke": 6916, + ":'(": 6917, + "defence": 6918, + "sentences": 6919, + "brag": 6920, + "maggie": 6921, + "rep": 6922, + "introduce": 6923, + "jackass": 6924, + "su": 6925, + "grazie": 6926, + "darker": 6927, + "((": 6928, + "paige": 6929, + "joe's": 6930, + "mellow": 6931, + "hitler": 6932, + "regrets": 6933, + "bihh": 6934, + "emo": 6935, + "pulls": 6936, + "garmin": 6937, + "gangster": 6938, + "belated": 6939, + "maddie": 6940, + "toxic": 6941, + "patrons": 6942, + "crybaby": 6943, + "skinned": 6944, + "cuter": 6945, + "liz": 6946, + "mar": 6947, + "rad": 6948, + "hairy": 6949, + "skating": 6950, + "tm": 6951, + "programs": 6952, + "readable": 6953, + "strings": 6954, + "papi": 6955, + "mhmm": 6956, + "quoting": 6957, + "screenshots": 6958, + "snitch": 6959, + "nw": 6960, + "inn": 6961, + "sheesh": 6962, + "enjoys": 6963, + "stereo": 6964, + "dreads": 6965, + "calamari": 6966, + "circus": 6967, + "streaming": 6968, + "apologized": 6969, + "unprofessional": 6970, + "ballet": 6971, + "reckless": 6972, + "workin": 6973, + "ditch": 6974, + "kettle": 6975, + "everybody's": 6976, + "attitudes": 6977, + "pakistan": 6978, + "ads": 6979, + "brooklyn": 6980, + "drm": 6981, + "fathers": 6982, + "lb": 6983, + "js": 6984, + "ninja": 6985, + "mainstream": 6986, + "shxt": 6987, + "yous": 6988, + "theyre": 6989, + "awk": 6990, + "margaritas": 6991, + "nga": 6992, + "fuk": 6993, + "flights": 6994, + ">>": 6995, + "phat": 6996, + "lynch": 6997, + "aggravated": 6998, + "boca": 6999, + "favour": 7000, + "collar": 7001, + "proposed": 7002, + "approve": 7003, + "mega": 7004, + "stroke": 7005, + "lasting": 7006, + "solutions": 7007, + "oranges": 7008, + "stunt": 7009, + "tradition": 7010, + "hyper": 7011, + "polo": 7012, + "korea": 7013, + "scoring": 7014, + "combat": 7015, + "anal": 7016, + "consequences": 7017, + "simon": 7018, + "nathan": 7019, + "nazis": 7020, + "beaten": 7021, + "lions": 7022, + "welcomed": 7023, + "freshly": 7024, + "cara": 7025, + "paced": 7026, + "printed": 7027, + "launch": 7028, + "activity": 7029, + "shiny": 7030, + "profit": 7031, + "coaster": 7032, + "sirens": 7033, + "skull": 7034, + "assignments": 7035, + "labour": 7036, + "letdown": 7037, + "smiled": 7038, + "dreamed": 7039, + "pala": 7040, + "dans": 7041, + "gina": 7042, + "dipping": 7043, + "downgrade": 7044, + "stylish": 7045, + "bk": 7046, + "spilled": 7047, + "curve": 7048, + "truely": 7049, + "executed": 7050, + "trading": 7051, + "pong": 7052, + "politically": 7053, + "sandy": 7054, + "ou": 7055, + "ethics": 7056, + "importantly": 7057, + "verse": 7058, + "sofa": 7059, + "pirates": 7060, + "noises": 7061, + "preparing": 7062, + "fbi": 7063, + "panasonic": 7064, + "petit": 7065, + "witnessed": 7066, + "surface": 7067, + "sickening": 7068, + "doubts": 7069, + "lesbians": 7070, + "bi": 7071, + "gap": 7072, + "annoys": 7073, + "dissapointment": 7074, + "shite": 7075, + "allegedly": 7076, + "resources": 7077, + "reaching": 7078, + "catchy": 7079, + "beings": 7080, + "concise": 7081, + "ich": 7082, + "sia": 7083, + "keef": 7084, + "mason": 7085, + "critics": 7086, + "presidents": 7087, + "brah": 7088, + "kita": 7089, + "nate": 7090, + "carefully": 7091, + "oml": 7092, + "wut": 7093, + "downloaded": 7094, + "witty": 7095, + "bbl": 7096, + "illustrations": 7097, + "refs": 7098, + "nanny": 7099, + "mein": 7100, + "trapped": 7101, + "mart": 7102, + "colorado": 7103, + "everyones": 7104, + "fiesta": 7105, + "puta": 7106, + "ano": 7107, + "breeze": 7108, + "squats": 7109, + "jen": 7110, + "luh": 7111, + "selections": 7112, + "fcking": 7113, + "logan": 7114, + "jeremy": 7115, + "irony": 7116, + "poker": 7117, + "sammy": 7118, + "clay": 7119, + "julie": 7120, + "jst": 7121, + "addicting": 7122, + "brotha": 7123, + "globe": 7124, + "frankly": 7125, + "inna": 7126, + "soothing": 7127, + "gta": 7128, + "thier": 7129, + "grumpy": 7130, + "smug": 7131, + "stopp": 7132, + "ugliest": 7133, + "brief": 7134, + "pencil": 7135, + "i.e.": 7136, + "dd": 7137, + "mob": 7138, + "parked": 7139, + "leftovers": 7140, + "elbow": 7141, + "novels": 7142, + "reviewer": 7143, + "hummus": 7144, + "laser": 7145, + "rubbing": 7146, + "whoo": 7147, + "lily": 7148, + "notification": 7149, + "assembly": 7150, + "arrogance": 7151, + "palace": 7152, + "lungs": 7153, + "graduating": 7154, + "bama": 7155, + "wahh": 7156, + "twit": 7157, + "wagon": 7158, + "abe": 7159, + "border": 7160, + "alan": 7161, + "temple": 7162, + "tease": 7163, + "convincing": 7164, + "rotation": 7165, + "loan": 7166, + "puede": 7167, + "continuous": 7168, + "sandals": 7169, + "ahahah": 7170, + "mami": 7171, + "mdr": 7172, + "calendar": 7173, + "lou": 7174, + "tripe": 7175, + "noite": 7176, + "shay": 7177, + "mercii": 7178, + "cordless": 7179, + "shore": 7180, + "peanuts": 7181, + "mild": 7182, + "ser": 7183, + "grinder": 7184, + "prevent": 7185, + "firm": 7186, + "refrigerator": 7187, + "horrendous": 7188, + "foam": 7189, + "romeo": 7190, + "calor": 7191, + "gona": 7192, + "warming": 7193, + "mummy": 7194, + "pp": 7195, + "knocking": 7196, + "ram": 7197, + "nu": 7198, + "blankets": 7199, + "plants": 7200, + "mixture": 7201, + "fascist": 7202, + "bello": 7203, + "fooling": 7204, + "esa": 7205, + "bagels": 7206, + "fort": 7207, + "siesta": 7208, + "columbus": 7209, + "inc": 7210, + "pe": 7211, + "ali": 7212, + "connected": 7213, + "barber": 7214, + "marine": 7215, + "strips": 7216, + "restroom": 7217, + "annie": 7218, + "erin": 7219, + "islamic": 7220, + "bruno": 7221, + "nickname": 7222, + "sundays": 7223, + "blunts": 7224, + "chic": 7225, + "gd": 7226, + "durant": 7227, + "crashed": 7228, + "momento": 7229, + "saber": 7230, + "handbook": 7231, + "navy": 7232, + "killers": 7233, + "species": 7234, + "aj": 7235, + "agencies": 7236, + "inbox": 7237, + "grey's": 7238, + "designer": 7239, + "pra": 7240, + "pedi": 7241, + "plant": 7242, + "hoot": 7243, + "embarrass": 7244, + "dominican": 7245, + "cr": 7246, + "jwu": 7247, + "mitch": 7248, + "biscuit": 7249, + "hipster": 7250, + "focusing": 7251, + "pies": 7252, + "bikini": 7253, + "waa": 7254, + "peeped": 7255, + "electronic": 7256, + "truee": 7257, + "circumstances": 7258, + "wya": 7259, + "imo": 7260, + "facility": 7261, + "wii": 7262, + "repeatedly": 7263, + "blush": 7264, + "df": 7265, + "baker": 7266, + "courtney": 7267, + "revealed": 7268, + "painfully": 7269, + "imbecile": 7270, + "underground": 7271, + "nat": 7272, + "delayed": 7273, + "marie": 7274, + "cuties": 7275, + "gg": 7276, + "philippines": 7277, + "deficit": 7278, + "realest": 7279, + "definitive": 7280, + "beaut": 7281, + "lashes": 7282, + "canadians": 7283, + "movin": 7284, + "deer": 7285, + "teenagers": 7286, + "maya": 7287, + "alcoholic": 7288, + "sadness": 7289, + "titanic": 7290, + "oklahoma": 7291, + "feminist": 7292, + "flood": 7293, + ".i.p": 7294, + "theo": 7295, + "thirty": 7296, + "favorited": 7297, + "playoff": 7298, + "seasoning": 7299, + "toronto": 7300, + "poverty": 7301, + "spinning": 7302, + "joining": 7303, + "extras": 7304, + "#rt": 7305, + "lunes": 7306, + "edward": 7307, + "valet": 7308, + "appt": 7309, + "kathy": 7310, + "pronto": 7311, + "realist": 7312, + "incompetent": 7313, + "youll": 7314, + "raping": 7315, + "smfh": 7316, + "guy's": 7317, + "phrase": 7318, + "vegetable": 7319, + "tonite": 7320, + "hips": 7321, + "nikki": 7322, + "eatin": 7323, + "weights": 7324, + "casinos": 7325, + "spoiler": 7326, + "inferior": 7327, + "drones": 7328, + "cyber": 7329, + "scholarship": 7330, + "careless": 7331, + "sessions": 7332, + "minaj": 7333, + "population": 7334, + "britain": 7335, + "parody": 7336, + "proposal": 7337, + "destruction": 7338, + "driveway": 7339, + "smokin": 7340, + "promote": 7341, + "carol": 7342, + "penguin": 7343, + "scrolling": 7344, + "brittany": 7345, + "freezer": 7346, + "prank": 7347, + "brew": 7348, + "mirrors": 7349, + "smelly": 7350, + "retirement": 7351, + "boost": 7352, + "naah": 7353, + "platter": 7354, + "persona": 7355, + "caption": 7356, + "entered": 7357, + "yeh": 7358, + "moods": 7359, + "uplifting": 7360, + "esteem": 7361, + "impatient": 7362, + "madrid": 7363, + "delay": 7364, + "toddlers": 7365, + "skate": 7366, + "tigers": 7367, + "chad": 7368, + "athletic": 7369, + "respectful": 7370, + "researched": 7371, + "broo": 7372, + "skins": 7373, + "motherfuckers": 7374, + "marcus": 7375, + "buses": 7376, + "cardboard": 7377, + "odio": 7378, + "mock": 7379, + "mixer": 7380, + "distracted": 7381, + "accomplish": 7382, + "randy": 7383, + "babee": 7384, + "creme": 7385, + "volta": 7386, + "describes": 7387, + "blueberry": 7388, + "understatement": 7389, + "classical": 7390, + "blamed": 7391, + "mignon": 7392, + "genesis": 7393, + "obnoxious": 7394, + "incest": 7395, + "bliss": 7396, + "promptly": 7397, + "puberty": 7398, + "niggah": 7399, + "deceiving": 7400, + "cliche": 7401, + "hottie": 7402, + "threats": 7403, + "pirate": 7404, + "questioning": 7405, + "weakest": 7406, + "therapist": 7407, + "abandoned": 7408, + "wi": 7409, + "macaroni": 7410, + "sau": 7411, + "platform": 7412, + "regards": 7413, + "alfredo": 7414, + "lugar": 7415, + "moaning": 7416, + "billionaires": 7417, + "originally": 7418, + "existed": 7419, + "bd": 7420, + "lasagna": 7421, + "sexuality": 7422, + "sierra": 7423, + "gabriel": 7424, + "rely": 7425, + "aria": 7426, + "wynn": 7427, + "shi": 7428, + "definite": 7429, + "landed": 7430, + "illegals": 7431, + "creatures": 7432, + "welcoming": 7433, + "todd": 7434, + "novo": 7435, + "democracy": 7436, + "evans": 7437, + "premium": 7438, + "terrorists": 7439, + "mute": 7440, + "bleed": 7441, + "appreciation": 7442, + "ow": 7443, + "nas": 7444, + "glo": 7445, + "camps": 7446, + "tuned": 7447, + "handles": 7448, + "unforgettable": 7449, + "tia": 7450, + "automatic": 7451, + "songz": 7452, + ";-)": 7453, + "chandler": 7454, + "potty": 7455, + "possibility": 7456, + "vice": 7457, + "lakers": 7458, + "territory": 7459, + "mickey": 7460, + "favoriting": 7461, + "mhm": 7462, + "remarkable": 7463, + "heartless": 7464, + "dw": 7465, + "guts": 7466, + "rained": 7467, + "gutter": 7468, + "retired": 7469, + "mlrt": 7470, + "cba": 7471, + "whatt": 7472, + "ese": 7473, + "daisy": 7474, + "applications": 7475, + "complained": 7476, + "r.i.p.": 7477, + "exposing": 7478, + "wink": 7479, + "patron": 7480, + "intention": 7481, + "mornin": 7482, + "classified": 7483, + "farmers": 7484, + "psych": 7485, + "unrealistic": 7486, + "satisfy": 7487, + "thigh": 7488, + "discs": 7489, + "hysterical": 7490, + "dragging": 7491, + "remains": 7492, + "creeps": 7493, + "meow": 7494, + "biggie": 7495, + "beneath": 7496, + "believed": 7497, + "motherfucking": 7498, + "promoting": 7499, + "trucks": 7500, + "literal": 7501, + "dairy": 7502, + "nc": 7503, + "gig": 7504, + "ranting": 7505, + "athlete": 7506, + "aids": 7507, + "dash": 7508, + "cringe": 7509, + "jan": 7510, + "reminding": 7511, + "kardashian": 7512, + "ava": 7513, + "rocket": 7514, + "thnx": 7515, + "meatballs": 7516, + "fashioned": 7517, + "mga": 7518, + "joints": 7519, + "crashing": 7520, + "vos": 7521, + "oliver": 7522, + "viva": 7523, + "oysters": 7524, + "mascara": 7525, + "ellie": 7526, + "hahahahahahahaha": 7527, + "trusted": 7528, + "criticism": 7529, + "baba": 7530, + "hookers": 7531, + "organizer": 7532, + "buut": 7533, + "baltimore": 7534, + "certified": 7535, + "command": 7536, + "puking": 7537, + "fusion": 7538, + "mondays": 7539, + "grandmas": 7540, + "owns": 7541, + "container": 7542, + "attempting": 7543, + "conditioning": 7544, + "fetus": 7545, + "prompt": 7546, + "colorful": 7547, + "overwhelmed": 7548, + "credibility": 7549, + "ist": 7550, + "cuff": 7551, + "studied": 7552, + "tampa": 7553, + "waitresses": 7554, + "aggressive": 7555, + "absurd": 7556, + "booking": 7557, + "clouds": 7558, + "libtard": 7559, + "dancers": 7560, + "reggae": 7561, + "agency": 7562, + "stable": 7563, + "follback": 7564, + "payments": 7565, + "fui": 7566, + "cologne": 7567, + "eastern": 7568, + "kaya": 7569, + "stylist": 7570, + "packs": 7571, + "promising": 7572, + "passionate": 7573, + "switching": 7574, + "knw": 7575, + "miguel": 7576, + "glorious": 7577, + "segue": 7578, + "rien": 7579, + "sista": 7580, + "loveyou": 7581, + "demanding": 7582, + "gtf": 7583, + "nominee": 7584, + "cuando": 7585, + "tory": 7586, + "greg": 7587, + "myth": 7588, + "sup": 7589, + "saddest": 7590, + "nurses": 7591, + "avoiding": 7592, + "leaked": 7593, + "stingy": 7594, + "buena": 7595, + "antonio": 7596, + "timely": 7597, + "willy": 7598, + "gram": 7599, + "bom": 7600, + "bathing": 7601, + "bubba": 7602, + "vans": 7603, + "baddest": 7604, + "xaf": 7605, + "museum": 7606, + "uncles": 7607, + "jenna": 7608, + "woww": 7609, + "announced": 7610, + "buyers": 7611, + "predict": 7612, + "proceeded": 7613, + "revision": 7614, + "knight": 7615, + "inform": 7616, + "dimples": 7617, + "angeles": 7618, + "objective": 7619, + "exited": 7620, + "household": 7621, + "scout": 7622, + "elizabeth": 7623, + "purchasing": 7624, + "shii": 7625, + "mn": 7626, + "lexi": 7627, + "rot": 7628, + "nina": 7629, + "waiters": 7630, + "client": 7631, + "struck": 7632, + "bam": 7633, + "vendors": 7634, + "privacy": 7635, + "blades": 7636, + "clips": 7637, + "pickle": 7638, + "christina": 7639, + "howard": 7640, + "eyelashes": 7641, + "usher": 7642, + "sally": 7643, + "lawrence": 7644, + "brisket": 7645, + "stoned": 7646, + "badd": 7647, + "newest": 7648, + "subtitles": 7649, + "professionals": 7650, + "plaza": 7651, + "uber": 7652, + "anyone's": 7653, + "joker": 7654, + "creature": 7655, + "umbrella": 7656, + "oatmeal": 7657, + "legendary": 7658, + "chubby": 7659, + "stellar": 7660, + "explode": 7661, + "flush": 7662, + "mozzarella": 7663, + "conditioner": 7664, + "percentage": 7665, + "adequate": 7666, + "banter": 7667, + "dodgers": 7668, + "kenya": 7669, + "chains": 7670, + "calvin": 7671, + "tick": 7672, + "ancient": 7673, + "judy": 7674, + "okaay": 7675, + "uneven": 7676, + "saga": 7677, + "cs": 7678, + "attended": 7679, + "cowboys": 7680, + "popularity": 7681, + "confirm": 7682, + "oxygen": 7683, + "::": 7684, + "cowardly": 7685, + "imaginary": 7686, + "yal": 7687, + "other's": 7688, + "tuck": 7689, + "antes": 7690, + "enchiladas": 7691, + "unicorn": 7692, + "stg": 7693, + "ofc": 7694, + "dre": 7695, + "pll": 7696, + "rubbed": 7697, + "stainless": 7698, + "niggaa": 7699, + "caesar": 7700, + "complimentary": 7701, + "poke": 7702, + "yankees": 7703, + "toss": 7704, + "shameless": 7705, + "vids": 7706, + "tis": 7707, + "coupons": 7708, + "instruction": 7709, + "destination": 7710, + "shameful": 7711, + "disturb": 7712, + "luxury": 7713, + "cheetos": 7714, + "banking": 7715, + "shaving": 7716, + "shiit": 7717, + "tt": 7718, + "cartridge": 7719, + "fuckery": 7720, + "pepperoni": 7721, + "puff": 7722, + "buggy": 7723, + "cuh": 7724, + "introduced": 7725, + "exquisite": 7726, + "semana": 7727, + "evolution": 7728, + "backing": 7729, + "farts": 7730, + "tourists": 7731, + "receipts": 7732, + "sneezing": 7733, + "lifting": 7734, + "existent": 7735, + "quoted": 7736, + "processed": 7737, + "shaver": 7738, + "ck": 7739, + "heartbroken": 7740, + "hh": 7741, + "juego": 7742, + "embarrassment": 7743, + "pone": 7744, + "sneakers": 7745, + "legacy": 7746, + "lottery": 7747, + "freshmen": 7748, + "summary": 7749, + "gelato": 7750, + "stan": 7751, + "ringing": 7752, + "beck": 7753, + "threaten": 7754, + "luna": 7755, + "natalie": 7756, + "flipping": 7757, + "esto": 7758, + "sumn": 7759, + "fined": 7760, + "dong": 7761, + "fog": 7762, + "qualities": 7763, + "vanessa": 7764, + "pounding": 7765, + "talm": 7766, + "tolerance": 7767, + "drown": 7768, + "stepping": 7769, + "noone": 7770, + "barley": 7771, + "draws": 7772, + "jj": 7773, + "lacked": 7774, + "dolls": 7775, + "singapore": 7776, + "glitter": 7777, + "cheeseburger": 7778, + "directed": 7779, + "op": 7780, + "mgm": 7781, + "rebel": 7782, + "#excited": 7783, + "scroll": 7784, + "shush": 7785, + "epa": 7786, + "cigar": 7787, + "bandwagon": 7788, + "fuzzy": 7789, + "samee": 7790, + "installation": 7791, + "flops": 7792, + "determine": 7793, + "bradley": 7794, + "robot": 7795, + "somebody's": 7796, + "obey": 7797, + "awwh": 7798, + "sweatshirt": 7799, + "okk": 7800, + "inconsistent": 7801, + "deffo": 7802, + "cuddled": 7803, + "believer": 7804, + "delish": 7805, + "defeat": 7806, + "tin": 7807, + "burritos": 7808, + "illness": 7809, + "scallops": 7810, + "mansion": 7811, + "tossed": 7812, + "prof": 7813, + "mio": 7814, + "prettier": 7815, + "meaningful": 7816, + "manu": 7817, + "association": 7818, + "newly": 7819, + "franco": 7820, + "bullets": 7821, + "marvelous": 7822, + "finance": 7823, + "waitin": 7824, + "balling": 7825, + "ought": 7826, + "dances": 7827, + "supporter": 7828, + "breathtaking": 7829, + "petite": 7830, + "cheddar": 7831, + "guidance": 7832, + "courses": 7833, + "troy": 7834, + "unreadable": 7835, + "mash": 7836, + "wtff": 7837, + "nandos": 7838, + "laden": 7839, + "screwing": 7840, + "mysterious": 7841, + "tae": 7842, + "lesser": 7843, + "a's": 7844, + "jacked": 7845, + "advertisement": 7846, + "poisoning": 7847, + "authors": 7848, + "mets": 7849, + "publicly": 7850, + "balloon": 7851, + "partisan": 7852, + "priority": 7853, + "cia": 7854, + "rookie": 7855, + "tempe": 7856, + "hallelujah": 7857, + "harden": 7858, + "squirrel": 7859, + "newcastle": 7860, + "sob": 7861, + "firing": 7862, + "nugget": 7863, + "midget": 7864, + "receiver": 7865, + "remembers": 7866, + "facing": 7867, + "constructed": 7868, + "wilson": 7869, + "requires": 7870, + "suggestion": 7871, + "involves": 7872, + "scratches": 7873, + "basil": 7874, + "mosquito": 7875, + "sp": 7876, + "lawn": 7877, + "wenger": 7878, + "rly": 7879, + "gah": 7880, + "lincoln": 7881, + "entertained": 7882, + "outcome": 7883, + "atrocious": 7884, + "egypt": 7885, + "kendrick": 7886, + "tapes": 7887, + "portland": 7888, + "filipino": 7889, + "quicker": 7890, + "typically": 7891, + "rocked": 7892, + "pedro": 7893, + "rounds": 7894, + "feedback": 7895, + "hippie": 7896, + "concepts": 7897, + "wannabe": 7898, + "grabs": 7899, + "poland": 7900, + "yolo": 7901, + "giveaway": 7902, + "recieved": 7903, + "boob": 7904, + "newer": 7905, + "engineering": 7906, + "sao": 7907, + "teenager": 7908, + "burst": 7909, + "loong": 7910, + "cmon": 7911, + "suspended": 7912, + "bonjour": 7913, + "reporting": 7914, + "specialty": 7915, + "mitchell": 7916, + "borders": 7917, + "doa": 7918, + "esp": 7919, + "susan": 7920, + "tsk": 7921, + "superstar": 7922, + "debit": 7923, + "cult": 7924, + "wheres": 7925, + "craziest": 7926, + "anderson": 7927, + "expand": 7928, + "adopt": 7929, + "deciding": 7930, + "bonding": 7931, + "tina": 7932, + "warmer": 7933, + "tanned": 7934, + "brake": 7935, + "sweaty": 7936, + "how'd": 7937, + "char": 7938, + "syndrome": 7939, + "truths": 7940, + "celebrities": 7941, + "cone": 7942, + "settled": 7943, + "attending": 7944, + "pistol": 7945, + "marley": 7946, + "melts": 7947, + "morningg": 7948, + "cinderella": 7949, + "jerks": 7950, + "ayyee": 7951, + "johns": 7952, + "preferred": 7953, + "flames": 7954, + "denying": 7955, + "feast": 7956, + "locals": 7957, + "govt": 7958, + "amounts": 7959, + "denny's": 7960, + "mermaid": 7961, + "creator": 7962, + "something's": 7963, + "snakes": 7964, + "obg": 7965, + "mierda": 7966, + "increased": 7967, + "element": 7968, + "abusing": 7969, + "instructor": 7970, + "stitches": 7971, + "crossing": 7972, + "musicians": 7973, + "learnt": 7974, + "scooby": 7975, + "bukas": 7976, + "bluetooth": 7977, + "necessarily": 7978, + "rondo": 7979, + "otra": 7980, + "hahha": 7981, + "shuttle": 7982, + "tortillas": 7983, + "dab": 7984, + "parte": 7985, + "thrilling": 7986, + "geek": 7987, + "ditto": 7988, + "syrian": 7989, + "straighten": 7990, + "twitcon": 7991, + "gadget": 7992, + "increasing": 7993, + "hiking": 7994, + "#retweet": 7995, + "carnival": 7996, + "achievement": 7997, + "flagged": 7998, + "jajajajajaja": 7999, + "victory": 8000, + "ick": 8001, + "convert": 8002, + "sittin": 8003, + "birthdaay": 8004, + "felony": 8005, + "varsity": 8006, + "rappers": 8007, + "affairs": 8008, + "casually": 8009, + "indirect": 8010, + "carrier": 8011, + "why'd": 8012, + "branch": 8013, + "pastor": 8014, + "leon": 8015, + "beta": 8016, + "pals": 8017, + "bras": 8018, + "fred": 8019, + "marijuana": 8020, + "sacrifice": 8021, + "midterm": 8022, + "pfft": 8023, + "eyeliner": 8024, + "phony": 8025, + "payment": 8026, + "tx": 8027, + "seeds": 8028, + "bearing": 8029, + "caroline": 8030, + "aching": 8031, + "bubbles": 8032, + "ayye": 8033, + "tiffany": 8034, + "pr": 8035, + "swerve": 8036, + "scariest": 8037, + "cricket": 8038, + "residents": 8039, + "wallah": 8040, + "batch": 8041, + "yahoo": 8042, + "livin": 8043, + "bitchy": 8044, + "viable": 8045, + "davis": 8046, + "colleges": 8047, + "blackberry": 8048, + "clicking": 8049, + "hamburger": 8050, + "homophobic": 8051, + "fence": 8052, + "contemporary": 8053, + "shortly": 8054, + "alarms": 8055, + "protective": 8056, + "stephanie": 8057, + "satire": 8058, + "bootleg": 8059, + "formal": 8060, + "bizarre": 8061, + "backyard": 8062, + "chapters": 8063, + "syd": 8064, + "luis": 8065, + "itchy": 8066, + "hayes": 8067, + "console": 8068, + "mes": 8069, + "fasho": 8070, + "seal": 8071, + "fruity": 8072, + "sword": 8073, + "literary": 8074, + "credible": 8075, + "nashville": 8076, + "surf": 8077, + "vietnamese": 8078, + "roar": 8079, + "heritage": 8080, + "boyfriend's": 8081, + "opted": 8082, + "gifted": 8083, + "virginity": 8084, + "orr": 8085, + "truffle": 8086, + "liv": 8087, + "ciao": 8088, + "unfollowing": 8089, + "warped": 8090, + "occasions": 8091, + "kendall": 8092, + "honda": 8093, + "statements": 8094, + "headline": 8095, + "teasing": 8096, + "chargers": 8097, + "grapes": 8098, + "fears": 8099, + "mt": 8100, + "files": 8101, + "fullest": 8102, + "a.m.": 8103, + "possession": 8104, + "sister's": 8105, + "aggy": 8106, + "bruises": 8107, + "lilly": 8108, + "peggy": 8109, + "regional": 8110, + "goodies": 8111, + "fulfill": 8112, + "yuh": 8113, + "dissatisfied": 8114, + "sept": 8115, + "independence": 8116, + "gladly": 8117, + "ranbir": 8118, + "noww": 8119, + "father's": 8120, + "ruby": 8121, + "eater": 8122, + "fue": 8123, + "meme": 8124, + "tvs": 8125, + "masses": 8126, + "shines": 8127, + "jonathan": 8128, + "qualify": 8129, + "rooting": 8130, + "righteous": 8131, + "happyy": 8132, + "derek": 8133, + "raspberry": 8134, + "accounting": 8135, + "uggs": 8136, + "ff": 8137, + "melting": 8138, + "tragedy": 8139, + "collecting": 8140, + "amour": 8141, + "panel": 8142, + "sensible": 8143, + "billions": 8144, + "kasi": 8145, + "massachusetts": 8146, + "fudge": 8147, + "deposit": 8148, + "sha": 8149, + "nalang": 8150, + "buen": 8151, + "occupied": 8152, + "yuk": 8153, + "oomfs": 8154, + "rented": 8155, + "babysit": 8156, + "criminals": 8157, + "mocha": 8158, + "overlooked": 8159, + "touches": 8160, + "celtic": 8161, + "cnt": 8162, + "lightning": 8163, + "scrap": 8164, + "scrub": 8165, + "petition": 8166, + "forbid": 8167, + "wshh": 8168, + "easiest": 8169, + "chico": 8170, + "noticing": 8171, + "pens": 8172, + "sera": 8173, + "brighter": 8174, + "legends": 8175, + "sickness": 8176, + "quad": 8177, + "slipped": 8178, + "dominos": 8179, + "outlets": 8180, + "ot": 8181, + "samples": 8182, + "vinegar": 8183, + "bel": 8184, + "vinyl": 8185, + "sht": 8186, + "isso": 8187, + "soaked": 8188, + "beaucoup": 8189, + "sheeran": 8190, + "reasoned": 8191, + "mundo": 8192, + "cleared": 8193, + "yoou": 8194, + "permanent": 8195, + "insist": 8196, + "programming": 8197, + "bangs": 8198, + "roach": 8199, + "desired": 8200, + "spill": 8201, + "advise": 8202, + "oral": 8203, + "flexing": 8204, + "hittin": 8205, + "malik": 8206, + "rosie": 8207, + "butterfly": 8208, + "omf": 8209, + "dragons": 8210, + "stations": 8211, + "shannon": 8212, + "ww": 8213, + "steer": 8214, + "snooze": 8215, + "mushy": 8216, + "nothing's": 8217, + "religions": 8218, + "decoration": 8219, + "jamaican": 8220, + "contribute": 8221, + "elephant": 8222, + "owes": 8223, + "nunca": 8224, + "nighty": 8225, + "icecream": 8226, + "nov": 8227, + "sixth": 8228, + "marco": 8229, + "purely": 8230, + "jammin": 8231, + "pilot": 8232, + "credits": 8233, + "wasn": 8234, + "skirts": 8235, + "cartoons": 8236, + "purposes": 8237, + "puppet": 8238, + "equivalent": 8239, + "shoddy": 8240, + "supernatural": 8241, + "carrots": 8242, + "fuel": 8243, + "tak": 8244, + "md": 8245, + "sliders": 8246, + "institutions": 8247, + "wheat": 8248, + "ouii": 8249, + "commie": 8250, + "hears": 8251, + "raven": 8252, + "year's": 8253, + "rank": 8254, + "nem": 8255, + "costco": 8256, + "involving": 8257, + "trimmer": 8258, + "#thestruggle": 8259, + "infinity": 8260, + "o.o": 8261, + "mistress": 8262, + "rhymes": 8263, + "nic": 8264, + "techniques": 8265, + "housing": 8266, + "spotify": 8267, + "weapon": 8268, + "manicure": 8269, + "yh": 8270, + "hahahahahah": 8271, + "bid": 8272, + "pup": 8273, + "hussein": 8274, + "cabinet": 8275, + "zen": 8276, + "deaf": 8277, + "hilton": 8278, + "micah": 8279, + "tard": 8280, + "penn": 8281, + "ops": 8282, + "saddam": 8283, + "vino": 8284, + "micro": 8285, + "creo": 8286, + "towers": 8287, + "bribery": 8288, + "forms": 8289, + "zoe": 8290, + "millionaire": 8291, + "baes": 8292, + "stevie": 8293, + "poured": 8294, + "when's": 8295, + "digging": 8296, + "lv": 8297, + "sneeze": 8298, + "payed": 8299, + "hike": 8300, + "serena": 8301, + "retro": 8302, + "kindergarten": 8303, + "oregon": 8304, + "ciara": 8305, + "bleach": 8306, + "carrie": 8307, + "echo": 8308, + "#lt": 8309, + "intimate": 8310, + "hv": 8311, + "uploaded": 8312, + "dignity": 8313, + "girlie": 8314, + "pats": 8315, + "borderline": 8316, + "shouting": 8317, + "trio": 8318, + "kris": 8319, + "sprint": 8320, + "peyton": 8321, + "erica": 8322, + "dum": 8323, + ":o": 8324, + "smoothies": 8325, + "almond": 8326, + "leah": 8327, + "mountains": 8328, + "popeyes": 8329, + "recommendations": 8330, + "whataburger": 8331, + "prostitute": 8332, + "lifted": 8333, + "gummy": 8334, + "leaky": 8335, + "infection": 8336, + "fortune": 8337, + "airplane": 8338, + "#dead": 8339, + "engineers": 8340, + "decline": 8341, + "frankie": 8342, + "tj": 8343, + "commission": 8344, + "clapping": 8345, + "molesters": 8346, + "olympics": 8347, + "ting": 8348, + "li": 8349, + "pitching": 8350, + "miranda": 8351, + "omelet": 8352, + "appeal": 8353, + "driven": 8354, + "santos": 8355, + "knights": 8356, + "promotion": 8357, + "brooks": 8358, + "crop": 8359, + "shovel": 8360, + "easter": 8361, + "advocate": 8362, + "cables": 8363, + "entering": 8364, + "intentionally": 8365, + "trendy": 8366, + "filth": 8367, + "appealing": 8368, + "iphones": 8369, + "hiring": 8370, + "protector": 8371, + "toasted": 8372, + "besties": 8373, + "urself": 8374, + "bases": 8375, + "mb": 8376, + "ethnic": 8377, + "morality": 8378, + "brace": 8379, + "adams": 8380, + "amaze": 8381, + "carrot": 8382, + "cans": 8383, + "mk": 8384, + "protected": 8385, + "almighty": 8386, + "neon": 8387, + "commenter": 8388, + "dyke": 8389, + "jessie": 8390, + "copies": 8391, + "tayo": 8392, + "trite": 8393, + "demain": 8394, + "breakdown": 8395, + "broadway": 8396, + "disapointed": 8397, + "journalism": 8398, + "dani": 8399, + "threatened": 8400, + "argued": 8401, + "ve": 8402, + "revealing": 8403, + "barcelona": 8404, + "profits": 8405, + "nay": 8406, + "alicia": 8407, + "cyrus": 8408, + "pep": 8409, + "slippers": 8410, + "symbol": 8411, + "bruise": 8412, + "permit": 8413, + "dah": 8414, + "maroon": 8415, + "paterno": 8416, + "amigas": 8417, + "likee": 8418, + "dread": 8419, + "eef": 8420, + "groceries": 8421, + "mandatory": 8422, + "slam": 8423, + "survival": 8424, + "sole": 8425, + "reveal": 8426, + "estate": 8427, + "muffins": 8428, + "sucka": 8429, + "donkey": 8430, + "ayo": 8431, + "whitney": 8432, + "blogging": 8433, + "exo": 8434, + "rebecca": 8435, + "pressing": 8436, + "scheme": 8437, + "custom": 8438, + "loner": 8439, + "manning": 8440, + "amsterdam": 8441, + "ctfuu": 8442, + "pasa": 8443, + "educate": 8444, + "yees": 8445, + "poison": 8446, + "cooper": 8447, + "sticker": 8448, + "statistics": 8449, + "jordan's": 8450, + "impersonates": 8451, + "motorcycle": 8452, + "indiana": 8453, + "cheerleader": 8454, + "oily": 8455, + "birther": 8456, + "cookout": 8457, + "versatile": 8458, + "handled": 8459, + "aff": 8460, + "lifee": 8461, + "attraction": 8462, + "yg": 8463, + "gag": 8464, + "habits": 8465, + "swiss": 8466, + "guilt": 8467, + "smallest": 8468, + "batter": 8469, + "selected": 8470, + "infant": 8471, + "rugby": 8472, + "flavorless": 8473, + "swinging": 8474, + "professors": 8475, + "aim": 8476, + "prima": 8477, + "politely": 8478, + "becky": 8479, + "cthe": 8480, + "cucumber": 8481, + "dennis": 8482, + "simplistic": 8483, + "libturd": 8484, + "blockquote": 8485, + "eternity": 8486, + "wonderland": 8487, + "structure": 8488, + "upgraded": 8489, + "jewel": 8490, + "irrational": 8491, + "polar": 8492, + "(;": 8493, + "raps": 8494, + "canyon": 8495, + "henny": 8496, + "stab": 8497, + "stanley": 8498, + "accessory": 8499, + "violets": 8500, + "subtweets": 8501, + "snapping": 8502, + "artistic": 8503, + "fleek": 8504, + "massages": 8505, + "#fml": 8506, + "abysmal": 8507, + "ditching": 8508, + "needle": 8509, + "filing": 8510, + "depend": 8511, + "excelente": 8512, + "requirement": 8513, + "regard": 8514, + "surround": 8515, + "marc": 8516, + "hombre": 8517, + "ngl": 8518, + "decades": 8519, + "uma": 8520, + "bothers": 8521, + "todos": 8522, + "conflict": 8523, + "andre": 8524, + "backup": 8525, + "od": 8526, + "gains": 8527, + "sophie": 8528, + "differently": 8529, + "slayed": 8530, + "dexter": 8531, + "consists": 8532, + "naruto": 8533, + "alternate": 8534, + "autocorrect": 8535, + "hobby": 8536, + "permanently": 8537, + "deprived": 8538, + "macbook": 8539, + "safely": 8540, + "tore": 8541, + "calculator": 8542, + "sliding": 8543, + "farted": 8544, + "appointments": 8545, + "chickens": 8546, + "detective": 8547, + "bre": 8548, + "underneath": 8549, + "kuya": 8550, + "corey": 8551, + "tactics": 8552, + "antenna": 8553, + "dusty": 8554, + "outrage": 8555, + "palms": 8556, + "locks": 8557, + "<<": 8558, + "iowa": 8559, + "deception": 8560, + "alma": 8561, + "sashimi": 8562, + "fishy": 8563, + "glee": 8564, + "sweatpants": 8565, + "butthurt": 8566, + "lifesaver": 8567, + "damm": 8568, + "regularly": 8569, + "importance": 8570, + "smashing": 8571, + "richest": 8572, + "stalked": 8573, + "suitable": 8574, + "cravings": 8575, + "volunteer": 8576, + "fur": 8577, + "flipped": 8578, + "tucked": 8579, + "virus": 8580, + "coolin": 8581, + "claire": 8582, + "accents": 8583, + "alla": 8584, + "gras": 8585, + "diff": 8586, + "cola": 8587, + "gud": 8588, + "grandad": 8589, + "wardrobe": 8590, + "riveting": 8591, + "willie": 8592, + "libre": 8593, + "distract": 8594, + "bbc": 8595, + "floating": 8596, + "thts": 8597, + "sparks": 8598, + "nokia": 8599, + "todayy": 8600, + "chez": 8601, + "hardy": 8602, + "aap": 8603, + "hamilton": 8604, + "aller": 8605, + "rug": 8606, + "jada": 8607, + "danced": 8608, + "apt": 8609, + "lcd": 8610, + "intern": 8611, + "provides": 8612, + "strongest": 8613, + "borrowed": 8614, + "closes": 8615, + "belive": 8616, + "sizing": 8617, + "confuse": 8618, + "gourmet": 8619, + "knicks": 8620, + "snore": 8621, + "bonfire": 8622, + "worm": 8623, + "assistance": 8624, + "preview": 8625, + "academy": 8626, + "guh": 8627, + "ships": 8628, + "techno": 8629, + "refollow": 8630, + "effing": 8631, + "dubai": 8632, + "bikes": 8633, + "trains": 8634, + "holmes": 8635, + "chewing": 8636, + "singh": 8637, + "fiance": 8638, + "mamas": 8639, + "engage": 8640, + "dearly": 8641, + "fifty": 8642, + "policies": 8643, + "deaths": 8644, + "acknowledged": 8645, + "grabbing": 8646, + "lace": 8647, + "unusable": 8648, + "aunty": 8649, + "manila": 8650, + "cabbage": 8651, + "chefs": 8652, + "reserved": 8653, + "herb": 8654, + "geometry": 8655, + "wooden": 8656, + "martini": 8657, + "oop": 8658, + "scotland": 8659, + "mod": 8660, + "cherish": 8661, + "hml": 8662, + "hol": 8663, + "ibiza": 8664, + "#nw": 8665, + "immediate": 8666, + "spears": 8667, + "stains": 8668, + "scarf": 8669, + "cuisinart": 8670, + "tide": 8671, + "tara": 8672, + "utah": 8673, + "nighter": 8674, + "mg": 8675, + "mcm": 8676, + "wig": 8677, + "context": 8678, + "entitled": 8679, + "wound": 8680, + "evan": 8681, + "tennessee": 8682, + "requests": 8683, + "dui": 8684, + "gangsta": 8685, + "sims": 8686, + "titles": 8687, + "continuing": 8688, + "okie": 8689, + "mere": 8690, + "parece": 8691, + "yeess": 8692, + "unwanted": 8693, + "vocal": 8694, + "trim": 8695, + "sus": 8696, + "secular": 8697, + "=)": 8698, + "gentlemen": 8699, + "idiocy": 8700, + "groove": 8701, + "vendor": 8702, + "coin": 8703, + "yupp": 8704, + "#loveyou": 8705, + "fireworks": 8706, + "applause": 8707, + "nadie": 8708, + "removing": 8709, + "homee": 8710, + "sei": 8711, + "potentially": 8712, + "hooters": 8713, + "rainbows": 8714, + "zac": 8715, + "vince": 8716, + "tuesdays": 8717, + "abraham": 8718, + "clumsy": 8719, + "lust": 8720, + "portugal": 8721, + "goon": 8722, + "t'aime": 8723, + "gambling": 8724, + "ignores": 8725, + "coma": 8726, + "pretzel": 8727, + "quest": 8728, + "minions": 8729, + "novice": 8730, + "disappoints": 8731, + "bulky": 8732, + "cray": 8733, + "timee": 8734, + "confessions": 8735, + "vacations": 8736, + "divided": 8737, + "iu": 8738, + "quantity": 8739, + "arrangements": 8740, + "grasp": 8741, + "diapers": 8742, + "pg": 8743, + "coincidence": 8744, + "bffs": 8745, + "chunks": 8746, + "fl": 8747, + "corners": 8748, + "warn": 8749, + "faking": 8750, + "jp": 8751, + "celebrated": 8752, + "struggles": 8753, + "nauseous": 8754, + "barrel": 8755, + "upsetting": 8756, + "steroids": 8757, + "originals": 8758, + "reilly": 8759, + "stove": 8760, + "helmet": 8761, + "doom": 8762, + "cube": 8763, + "maid": 8764, + "veterans": 8765, + "rum": 8766, + "benny": 8767, + "exes": 8768, + "attract": 8769, + "shane": 8770, + "solved": 8771, + "edgy": 8772, + "accommodating": 8773, + "val": 8774, + "scaring": 8775, + "leeds": 8776, + "watery": 8777, + "demo": 8778, + "lollipop": 8779, + "medieval": 8780, + "bittersweet": 8781, + "anastasia": 8782, + "crowds": 8783, + "spiders": 8784, + "galore": 8785, + "seed": 8786, + "tacky": 8787, + "doubled": 8788, + "hoover": 8789, + "stickers": 8790, + "anthem": 8791, + "heartbeat": 8792, + "skill": 8793, + "merry": 8794, + "registered": 8795, + "dinners": 8796, + "jonas": 8797, + "challenges": 8798, + "dense": 8799, + "nikon": 8800, + "horn": 8801, + "elitist": 8802, + "victor": 8803, + "jared": 8804, + "doctrine": 8805, + "elderly": 8806, + "pope": 8807, + "amoo": 8808, + "sketchy": 8809, + "stroller": 8810, + "icing": 8811, + "strictly": 8812, + "worldwide": 8813, + "genial": 8814, + "mai": 8815, + "frm": 8816, + "caffeine": 8817, + "bww": 8818, + "bums": 8819, + "mf's": 8820, + "aux": 8821, + "positions": 8822, + "applies": 8823, + "rumor": 8824, + "banged": 8825, + "float": 8826, + "lolz": 8827, + "quesadilla": 8828, + "shooter": 8829, + "cuban": 8830, + "insanity": 8831, + "filming": 8832, + "gots": 8833, + "pea": 8834, + "applying": 8835, + "scanner": 8836, + "myspace": 8837, + "secs": 8838, + "merch": 8839, + "supper": 8840, + "gorg": 8841, + "nhi": 8842, + "edd": 8843, + "shredded": 8844, + "thermometer": 8845, + "grits": 8846, + "represents": 8847, + "glance": 8848, + "titled": 8849, + "sacred": 8850, + "riley": 8851, + "brit": 8852, + "saturdays": 8853, + "justified": 8854, + "mj": 8855, + "hired": 8856, + "priest": 8857, + "sew": 8858, + "voicemail": 8859, + "longg": 8860, + "gma": 8861, + "wraps": 8862, + "crawling": 8863, + "warren": 8864, + "dana": 8865, + "duo": 8866, + "ants": 8867, + "secure": 8868, + "estar": 8869, + "quirky": 8870, + "performed": 8871, + "shaq": 8872, + "platinum": 8873, + "nak": 8874, + "ranked": 8875, + "#rip": 8876, + "employed": 8877, + "terrorist": 8878, + "drunken": 8879, + "#happy": 8880, + "manque": 8881, + "potus": 8882, + "grape": 8883, + "delta": 8884, + "cj": 8885, + "widescreen": 8886, + "viernes": 8887, + "brett": 8888, + "tweeps": 8889, + "sorts": 8890, + "vehicles": 8891, + "providing": 8892, + "shelby": 8893, + "cowards": 8894, + "crawfish": 8895, + "faint": 8896, + "opponents": 8897, + "manner": 8898, + "discovery": 8899, + "dental": 8900, + "spacious": 8901, + "stripped": 8902, + "sprite": 8903, + "allegiance": 8904, + "mentality": 8905, + "cranky": 8906, + "marrying": 8907, + "horrific": 8908, + "poems": 8909, + "you's": 8910, + "chai": 8911, + "menos": 8912, + "denver": 8913, + "probation": 8914, + "fabric": 8915, + "steering": 8916, + "decker": 8917, + "ins": 8918, + "tart": 8919, + "lining": 8920, + "twists": 8921, + "ilysfm": 8922, + "heather": 8923, + "mesa": 8924, + "quo": 8925, + "loaf": 8926, + "snowing": 8927, + "pleease": 8928, + "consist": 8929, + "prayed": 8930, + "dyed": 8931, + "fuckboy": 8932, + "steamed": 8933, + "reduced": 8934, + "quien": 8935, + "relieved": 8936, + "benedict": 8937, + "preparation": 8938, + "fangirl": 8939, + "beefing": 8940, + "dishonest": 8941, + "sublime": 8942, + "ballin": 8943, + "nets": 8944, + "edinburgh": 8945, + "capcom": 8946, + "excellence": 8947, + "fighters": 8948, + "java": 8949, + "speedy": 8950, + "swings": 8951, + "previously": 8952, + "poem": 8953, + "pod": 8954, + "programme": 8955, + "frown": 8956, + "naww": 8957, + "bong": 8958, + "adios": 8959, + "sweetness": 8960, + "oc": 8961, + "britt": 8962, + "fckn": 8963, + "ont": 8964, + "hahahahha": 8965, + "object": 8966, + "thong": 8967, + "chillen": 8968, + "departments": 8969, + "comics": 8970, + "packet": 8971, + "bees": 8972, + "monopoly": 8973, + "murderers": 8974, + "hays": 8975, + "andd": 8976, + "tends": 8977, + "sketch": 8978, + "ethan": 8979, + "nicht": 8980, + "inept": 8981, + "gen": 8982, + "cue": 8983, + "poetic": 8984, + "task": 8985, + "booboo": 8986, + "footage": 8987, + "handling": 8988, + "parmesan": 8989, + "memphis": 8990, + "backk": 8991, + "hiccups": 8992, + "khan": 8993, + "cuffed": 8994, + "contempt": 8995, + "grandson": 8996, + "relations": 8997, + "bitched": 8998, + "weigh": 8999, + "bunches": 9000, + "peed": 9001, + "hawk": 9002, + "jag": 9003, + "casey": 9004, + "crepe": 9005, + "jawn": 9006, + "buss": 9007, + "recognition": 9008, + "undercover": 9009, + "flaming": 9010, + "balloons": 9011, + "tripped": 9012, + "overseas": 9013, + "tempura": 9014, + "screams": 9015, + "regretting": 9016, + "alaska": 9017, + "kapoor": 9018, + "cb": 9019, + "cryin": 9020, + "jas": 9021, + "belieber": 9022, + "downloading": 9023, + "elect": 9024, + "protecting": 9025, + "tb": 9026, + "specially": 9027, + "chow": 9028, + "boycott": 9029, + "gyro": 9030, + "birmingham": 9031, + "brother's": 9032, + "buh": 9033, + "diagnosis": 9034, + "sesame": 9035, + "requirements": 9036, + "clingy": 9037, + "savannah": 9038, + "thingy": 9039, + "lease": 9040, + "flashlight": 9041, + "loop": 9042, + "equality": 9043, + "mutuals": 9044, + "logged": 9045, + "kurt": 9046, + "mormon": 9047, + "manga": 9048, + "gimmick": 9049, + "hometown": 9050, + "uptown": 9051, + "creativity": 9052, + "dipped": 9053, + "eek": 9054, + "roomie": 9055, + "shotgun": 9056, + "prog": 9057, + "eagles": 9058, + "manufacturer": 9059, + "unpleasant": 9060, + "tissue": 9061, + "screens": 9062, + "rode": 9063, + "references": 9064, + "greeting": 9065, + "khi": 9066, + "indonesia": 9067, + "allergy": 9068, + "defends": 9069, + "encouraging": 9070, + "pint": 9071, + "iight": 9072, + "reviewing": 9073, + "aloud": 9074, + "pepsi": 9075, + "essentially": 9076, + "wcw": 9077, + "leslie": 9078, + "fina": 9079, + "zoom": 9080, + "pense": 9081, + "sb": 9082, + "memoir": 9083, + "sleepless": 9084, + "parks": 9085, + "dh": 9086, + "springs": 9087, + "nt": 9088, + "fuc": 9089, + "reflection": 9090, + "watered": 9091, + "coldplay": 9092, + "heights": 9093, + "snuggle": 9094, + "dispute": 9095, + "motorola": 9096, + "testament": 9097, + "accuse": 9098, + "crisis": 9099, + "burden": 9100, + "decorated": 9101, + "slime": 9102, + "hollow": 9103, + "ska": 9104, + "zip": 9105, + "recover": 9106, + "packages": 9107, + "hugged": 9108, + "upscale": 9109, + "flesh": 9110, + "blair": 9111, + "manufactured": 9112, + "fs": 9113, + "munchies": 9114, + "hee": 9115, + "supplies": 9116, + "init": 9117, + "beliebers": 9118, + "teriyaki": 9119, + "yey": 9120, + "ju": 9121, + "funded": 9122, + "terrorism": 9123, + "designs": 9124, + "edc": 9125, + "tags": 9126, + "lawdd": 9127, + "positivity": 9128, + "uninspired": 9129, + "rooster": 9130, + "tomar": 9131, + "jc": 9132, + "slides": 9133, + "admittedly": 9134, + "jill": 9135, + "chan": 9136, + "litter": 9137, + "inherit": 9138, + "eggplant": 9139, + "otw": 9140, + "converse": 9141, + "yeen": 9142, + "slot": 9143, + "hasnt": 9144, + "someones": 9145, + "gahh": 9146, + "tweaking": 9147, + "fruits": 9148, + "exotic": 9149, + "bck": 9150, + "maine": 9151, + "boii": 9152, + "prisons": 9153, + "theft": 9154, + "dk": 9155, + "meth": 9156, + "lp": 9157, + "afro": 9158, + "addict": 9159, + "reflect": 9160, + "walkin": 9161, + "convenience": 9162, + "grammatical": 9163, + "shooters": 9164, + "sane": 9165, + "trout": 9166, + "mouths": 9167, + "pjs": 9168, + "charity": 9169, + "aqui": 9170, + "binge": 9171, + "hawks": 9172, + "yun": 9173, + "rosa": 9174, + "sync": 9175, + "graders": 9176, + "einstein": 9177, + "ra": 9178, + "exercising": 9179, + "bobo": 9180, + "jamaica": 9181, + "explore": 9182, + "subtle": 9183, + "cretin": 9184, + "alguien": 9185, + "#goodnight": 9186, + "established": 9187, + "stain": 9188, + "elses": 9189, + "braun": 9190, + "niggers": 9191, + "irwin": 9192, + "lml": 9193, + "healthcare": 9194, + "adaptation": 9195, + "dynamic": 9196, + "elf": 9197, + "insights": 9198, + "eli": 9199, + "surrender": 9200, + "impersonating": 9201, + "abc": 9202, + "bcs": 9203, + "faut": 9204, + "involve": 9205, + "referendum": 9206, + "supervisor": 9207, + "vic": 9208, + "sandusky": 9209, + "gc": 9210, + "passport": 9211, + "pickup": 9212, + "react": 9213, + "limp": 9214, + "roughly": 9215, + "iggy": 9216, + "kami": 9217, + "anyhow": 9218, + "rope": 9219, + "aamir": 9220, + "landing": 9221, + "nuevo": 9222, + "boosie": 9223, + "refresh": 9224, + "weep": 9225, + "creepin": 9226, + "squid": 9227, + "elders": 9228, + "thrones": 9229, + "pb": 9230, + "aaliyah": 9231, + "curtis": 9232, + "reduce": 9233, + "sua": 9234, + "thicker": 9235, + "tupac": 9236, + "barking": 9237, + "picnic": 9238, + "balcony": 9239, + "jojo": 9240, + "fkn": 9241, + "iam": 9242, + "trance": 9243, + "aches": 9244, + "sleeper": 9245, + "rag": 9246, + "quando": 9247, + "luggage": 9248, + "mold": 9249, + "ariel": 9250, + "contracts": 9251, + "ph": 9252, + "hbo": 9253, + "devin": 9254, + "libero": 9255, + "shucks": 9256, + "aspect": 9257, + "gilbert": 9258, + "homosexuals": 9259, + "justin's": 9260, + "lyin": 9261, + "ugghh": 9262, + "swallowed": 9263, + "scissors": 9264, + "bulb": 9265, + "cho": 9266, + "cape": 9267, + "clone": 9268, + "allegations": 9269, + "thoe": 9270, + "ankles": 9271, + "tots": 9272, + "enfin": 9273, + "crusty": 9274, + "llama": 9275, + "dese": 9276, + "discussions": 9277, + "adrian": 9278, + "tit": 9279, + "doubles": 9280, + "kansas": 9281, + "incase": 9282, + "liver": 9283, + "chainsaw": 9284, + "slightest": 9285, + "forcefully": 9286, + "lola": 9287, + "jacks": 9288, + "rang": 9289, + "filed": 9290, + "kodak": 9291, + "lor": 9292, + "peeling": 9293, + "awwe": 9294, + "jumper": 9295, + "puttin": 9296, + "reminiscing": 9297, + "pleasing": 9298, + "nephews": 9299, + "windy": 9300, + "saudades": 9301, + "moose": 9302, + "condom": 9303, + "minding": 9304, + "desires": 9305, + "dept": 9306, + "meses": 9307, + "bitchs": 9308, + "governments": 9309, + "lurk": 9310, + "listo": 9311, + "entre": 9312, + "updating": 9313, + "climbing": 9314, + "virtual": 9315, + "douglas": 9316, + "#nowplaying": 9317, + "feat": 9318, + "plugs": 9319, + "allat": 9320, + "savings": 9321, + "odor": 9322, + "meantime": 9323, + "alley": 9324, + "mmo": 9325, + "boarding": 9326, + "asparagus": 9327, + "tokyo": 9328, + "technique": 9329, + "photoshop": 9330, + "preciate": 9331, + "wingstop": 9332, + "suspicious": 9333, + "ganda": 9334, + "metallica": 9335, + "affection": 9336, + "spices": 9337, + "dayss": 9338, + "demons": 9339, + "steakhouse": 9340, + "camper": 9341, + "wife's": 9342, + "godbless": 9343, + ";;": 9344, + "dedication": 9345, + "alas": 9346, + "iss": 9347, + "ct": 9348, + "hispanics": 9349, + "ufc": 9350, + "bruised": 9351, + "ouais": 9352, + "sentimental": 9353, + "fiscal": 9354, + "punching": 9355, + "chooses": 9356, + "drums": 9357, + "harper": 9358, + "tucker": 9359, + "juntos": 9360, + "sandra": 9361, + "pools": 9362, + "earl": 9363, + "hideous": 9364, + "concentrate": 9365, + "ky": 9366, + "premiere": 9367, + "valentines": 9368, + "aunts": 9369, + "crepes": 9370, + "assault": 9371, + "travels": 9372, + "enchanting": 9373, + "mixing": 9374, + "ambience": 9375, + "av": 9376, + "proportion": 9377, + "son's": 9378, + "tryouts": 9379, + "runners": 9380, + "overthinking": 9381, + "agreeing": 9382, + "assad": 9383, + "obvi": 9384, + "iz": 9385, + "splendid": 9386, + "mofo": 9387, + "innings": 9388, + "guyss": 9389, + "stuffy": 9390, + "oww": 9391, + "myrtle": 9392, + "kelsey": 9393, + "bells": 9394, + "nationals": 9395, + "wondered": 9396, + "lackluster": 9397, + "fond": 9398, + "chemical": 9399, + "halls": 9400, + "applebee's": 9401, + "eller": 9402, + "totes": 9403, + "flips": 9404, + "wetback": 9405, + "khalifa": 9406, + "waah": 9407, + "beliefs": 9408, + "defined": 9409, + "glenn": 9410, + "whistle": 9411, + "crock": 9412, + "posh": 9413, + "differences": 9414, + "suitcase": 9415, + "spoilers": 9416, + "slacking": 9417, + "soliciting": 9418, + "serial": 9419, + "commitment": 9420, + "puddle": 9421, + "wed": 9422, + "savages": 9423, + "hospitals": 9424, + "muthafucka": 9425, + "tourist": 9426, + "abbey": 9427, + "abusive": 9428, + "snoop": 9429, + "foto": 9430, + "t'es": 9431, + "avb": 9432, + "diploma": 9433, + "durability": 9434, + "architecture": 9435, + "labeled": 9436, + "moderator": 9437, + "trunk": 9438, + "wallpaper": 9439, + "sans": 9440, + "passenger": 9441, + "friendships": 9442, + "shidd": 9443, + "convention": 9444, + "legislation": 9445, + "methods": 9446, + "destined": 9447, + "transaction": 9448, + "cajun": 9449, + "drying": 9450, + "poppy": 9451, + "amused": 9452, + "pretzels": 9453, + "baggers": 9454, + "goodie": 9455, + "joyce": 9456, + "achievements": 9457, + "avenue": 9458, + "manger": 9459, + "extensive": 9460, + "indie": 9461, + "ikaw": 9462, + "filler": 9463, + "websites": 9464, + "ge": 9465, + "skillet": 9466, + "performer": 9467, + "overload": 9468, + "monte": 9469, + "ihy": 9470, + "venezuela": 9471, + "blond": 9472, + "toothbrush": 9473, + "animation": 9474, + "summers": 9475, + "avengers": 9476, + "#ff": 9477, + "fate": 9478, + "stinker": 9479, + "reward": 9480, + "losses": 9481, + "cursed": 9482, + "todays": 9483, + "wale": 9484, + "veins": 9485, + "maryland": 9486, + "feeds": 9487, + "#winning": 9488, + "starve": 9489, + "hahahaa": 9490, + "hogan": 9491, + "announce": 9492, + "finn": 9493, + "kush": 9494, + "corrected": 9495, + "boyz": 9496, + "essence": 9497, + "lutely": 9498, + "brianna": 9499, + "rubs": 9500, + "anon": 9501, + "tapas": 9502, + "jury": 9503, + "kai": 9504, + "relatives": 9505, + "consumers": 9506, + "pussies": 9507, + "heterosexuals": 9508, + "rev": 9509, + "jt": 9510, + "taxpayer": 9511, + "impaired": 9512, + "refer": 9513, + "olives": 9514, + "walang": 9515, + "hence": 9516, + "gpa": 9517, + "accessories": 9518, + "disapointment": 9519, + "libtards": 9520, + "tutor": 9521, + "baddie": 9522, + "aggravating": 9523, + "unstable": 9524, + "quan": 9525, + "dmv": 9526, + "dvd's": 9527, + "audition": 9528, + "occupy": 9529, + "commenters": 9530, + "jaa": 9531, + "withdrawals": 9532, + "teresa": 9533, + "mos": 9534, + "spanked": 9535, + "hehehehe": 9536, + "wizard": 9537, + "murdering": 9538, + "krispy": 9539, + "wwii": 9540, + "mer": 9541, + "duncan": 9542, + "forgettable": 9543, + "wht": 9544, + "mimi": 9545, + "tuff": 9546, + "consenting": 9547, + "edf": 9548, + "mistaken": 9549, + "skank": 9550, + "quebec": 9551, + "rightt": 9552, + "cells": 9553, + "drinker": 9554, + "parenthood": 9555, + "crude": 9556, + "crazyy": 9557, + "suh": 9558, + "donee": 9559, + "seth": 9560, + "brasil": 9561, + "negatives": 9562, + "heartbreak": 9563, + "angie": 9564, + "clinic": 9565, + "maintain": 9566, + "peas": 9567, + "cheapest": 9568, + "onn": 9569, + "venetian": 9570, + "assumed": 9571, + "sworn": 9572, + "unsafe": 9573, + "doughnuts": 9574, + "cunts": 9575, + "pajamas": 9576, + "phantom": 9577, + "contents": 9578, + "gaining": 9579, + "ahahahaha": 9580, + "verified": 9581, + "scientific": 9582, + "excelent": 9583, + "reds": 9584, + "thy": 9585, + "foi": 9586, + "wiping": 9587, + "sleepin": 9588, + "xed": 9589, + "beanie": 9590, + "cine": 9591, + "vamps": 9592, + "slander": 9593, + "council": 9594, + "ralph": 9595, + "merchandise": 9596, + "collectors": 9597, + "occupiers": 9598, + "radar": 9599, + "temps": 9600, + "tipsy": 9601, + "beverage": 9602, + "xea": 9603, + "caveat": 9604, + "sige": 9605, + "interrupted": 9606, + "missy": 9607, + "plutocrats": 9608, + "hott": 9609, + "select": 9610, + "putin": 9611, + "imagined": 9612, + "imitation": 9613, + "wedge": 9614, + "kd": 9615, + "pineapples": 9616, + "joshua": 9617, + "arrow": 9618, + "porno": 9619, + "miso": 9620, + "tempting": 9621, + "flicks": 9622, + "felicia": 9623, + "pi": 9624, + "trainers": 9625, + "janet": 9626, + "spotted": 9627, + "isaiah": 9628, + "gin": 9629, + "initially": 9630, + "exempt": 9631, + "cabin": 9632, + "paperback": 9633, + "greed": 9634, + "wanker": 9635, + "knots": 9636, + "guna": 9637, + "bop": 9638, + "seu": 9639, + "murders": 9640, + "gasoline": 9641, + "smiley": 9642, + "vraiment": 9643, + "cvs": 9644, + "swore": 9645, + "pinch": 9646, + "cutter": 9647, + "chump": 9648, + "nee": 9649, + "channels": 9650, + "consumed": 9651, + "topping": 9652, + "bingo": 9653, + "announcement": 9654, + "gardening": 9655, + "principal": 9656, + "reunite": 9657, + "gna": 9658, + "chaos": 9659, + "acne": 9660, + "infinite": 9661, + "nailed": 9662, + "blushing": 9663, + "collins": 9664, + "seguindo": 9665, + "kentucky": 9666, + "respected": 9667, + "modest": 9668, + "asdfghjkl": 9669, + "dumped": 9670, + "gems": 9671, + "uff": 9672, + "splash": 9673, + "ski": 9674, + "roy": 9675, + "ona": 9676, + "sluts": 9677, + "bey": 9678, + "abit": 9679, + "guise": 9680, + "consisted": 9681, + "dumplings": 9682, + "dna": 9683, + "br": 9684, + "canes": 9685, + "wouldve": 9686, + "sho": 9687, + "opp": 9688, + "probability": 9689, + "necesito": 9690, + "starters": 9691, + "tix": 9692, + "oldies": 9693, + "thrill": 9694, + "sherlock": 9695, + "luckiest": 9696, + "vez": 9697, + "curling": 9698, + "bryant": 9699, + "stew": 9700, + "bark": 9701, + "becca": 9702, + "ravioli": 9703, + "brainwashed": 9704, + "phillips": 9705, + "bol": 9706, + "#oops": 9707, + "caleb": 9708, + "hong": 9709, + "disapointing": 9710, + "waterproof": 9711, + "stared": 9712, + "mex": 9713, + "gran": 9714, + "smackdown": 9715, + "sophia": 9716, + "argh": 9717, + "investigating": 9718, + "partially": 9719, + "fines": 9720, + "twatching": 9721, + "emailed": 9722, + "calculus": 9723, + "aand": 9724, + "toilets": 9725, + "duper": 9726, + "myy": 9727, + "tablet": 9728, + "<": 9729, + "fragrance": 9730, + "boiling": 9731, + "cheguei": 9732, + "summertime": 9733, + "recorder": 9734, + "nasa": 9735, + "remotely": 9736, + "profession": 9737, + "yer": 9738, + "defeated": 9739, + "shid": 9740, + "#cantwait": 9741, + "conversion": 9742, + "portrait": 9743, + "graham": 9744, + "blurry": 9745, + "erm": 9746, + "boiled": 9747, + "motto": 9748, + "touchy": 9749, + "sangria": 9750, + "tempo": 9751, + "occasionally": 9752, + "pastries": 9753, + "hav": 9754, + "cocoa": 9755, + "insanely": 9756, + "motive": 9757, + "isaac": 9758, + "lien": 9759, + "mamma": 9760, + "stir": 9761, + "lego": 9762, + "doee": 9763, + "whooping": 9764, + "catcher": 9765, + "pierce": 9766, + "chanel": 9767, + "squat": 9768, + "gaf": 9769, + "dreamt": 9770, + "reviewed": 9771, + "shred": 9772, + "bdubs": 9773, + "colombia": 9774, + "accuracy": 9775, + "uga": 9776, + "prose": 9777, + "russians": 9778, + "jog": 9779, + "scan": 9780, + "franklin": 9781, + "tou": 9782, + "dinosaur": 9783, + "reynolds": 9784, + "tow": 9785, + "schleep": 9786, + "punish": 9787, + "cirque": 9788, + "huhuhu": 9789, + "kak": 9790, + "improper": 9791, + "smokey": 9792, + "scope": 9793, + "noir": 9794, + "wines": 9795, + "cheerleaders": 9796, + "exhausting": 9797, + "sheer": 9798, + "dora": 9799, + "ahs": 9800, + "tshirt": 9801, + "thiss": 9802, + "patterns": 9803, + "melody": 9804, + "preference": 9805, + "expansion": 9806, + "arriving": 9807, + "oldie": 9808, + "igual": 9809, + "unsatisfied": 9810, + "sunrise": 9811, + "bp": 9812, + "owl": 9813, + "villa": 9814, + "vitamin": 9815, + "christopher": 9816, + "severe": 9817, + "disabled": 9818, + "chess": 9819, + "camila": 9820, + "extension": 9821, + "grabe": 9822, + "mister": 9823, + "tomorrows": 9824, + "pusha": 9825, + "strippers": 9826, + "overtime": 9827, + "gassed": 9828, + "rubio": 9829, + "caribbean": 9830, + "vi": 9831, + "undefeated": 9832, + "pf": 9833, + "closely": 9834, + "nintendo": 9835, + "dunk": 9836, + "fucc": 9837, + "sabrina": 9838, + "maze": 9839, + "immigrants": 9840, + "gamble": 9841, + "loading": 9842, + "artwork": 9843, + "grader": 9844, + "sweaters": 9845, + "meditation": 9846, + "lyric": 9847, + "funding": 9848, + "condoms": 9849, + "responses": 9850, + "ofcourse": 9851, + "husbands": 9852, + "ilove": 9853, + "fallin": 9854, + "vivo": 9855, + "salts": 9856, + "humorous": 9857, + "awakening": 9858, + "planes": 9859, + "greetings": 9860, + "sabes": 9861, + "brakes": 9862, + "trevor": 9863, + "resident": 9864, + "maple": 9865, + "kid's": 9866, + "itching": 9867, + "realism": 9868, + "soups": 9869, + "opposition": 9870, + "lively": 9871, + "allies": 9872, + "miracles": 9873, + "nota": 9874, + "cussing": 9875, + "plague": 9876, + "salted": 9877, + "flexible": 9878, + "rewind": 9879, + "l's": 9880, + "gatorade": 9881, + "directioner": 9882, + "bottoms": 9883, + "packers": 9884, + "shadows": 9885, + "scars": 9886, + "scholarships": 9887, + "blatantly": 9888, + "spencer": 9889, + "tinder": 9890, + "managing": 9891, + "illiterate": 9892, + "sunburn": 9893, + "motivate": 9894, + "rhythm": 9895, + "ivy": 9896, + "moonlight": 9897, + "ungrateful": 9898, + "cafeteria": 9899, + "resolution": 9900, + "mods": 9901, + "juniors": 9902, + "#3": 9903, + "flattering": 9904, + "obvio": 9905, + "shares": 9906, + "engagement": 9907, + "slaw": 9908, + "calc": 9909, + "frappe": 9910, + "comprehension": 9911, + "tribal": 9912, + "julian": 9913, + "anniversaire": 9914, + "soulja": 9915, + "forsure": 9916, + "tebow": 9917, + "offend": 9918, + "ripping": 9919, + "mcdonald": 9920, + "canned": 9921, + "ebay": 9922, + "oem": 9923, + "temptation": 9924, + "sass": 9925, + "doritos": 9926, + "horizon": 9927, + "capacity": 9928, + "procrastinating": 9929, + "barbecue": 9930, + "bombs": 9931, + "fran": 9932, + "zealand": 9933, + "reporter": 9934, + "curiosity": 9935, + "kmsl": 9936, + "carly": 9937, + "betting": 9938, + "industrial": 9939, + "cubs": 9940, + "counseling": 9941, + "tights": 9942, + "survey": 9943, + "youngest": 9944, + "manson": 9945, + "gnight": 9946, + "malaysia": 9947, + "nostalgic": 9948, + "releases": 9949, + "cena": 9950, + "seas": 9951, + "lovey": 9952, + "askin": 9953, + "veteran": 9954, + "sins": 9955, + "lindaa": 9956, + "ounce": 9957, + "yelpers": 9958, + "latinos": 9959, + "givin": 9960, + "delicate": 9961, + "legitimate": 9962, + "possessed": 9963, + "notion": 9964, + "extensions": 9965, + "slaves": 9966, + "brighten": 9967, + "viene": 9968, + "victoria's": 9969, + "ding": 9970, + "disposable": 9971, + "bumps": 9972, + "haitian": 9973, + "loon": 9974, + "musician": 9975, + "booths": 9976, + "motel": 9977, + "weasel": 9978, + "bugging": 9979, + "choking": 9980, + "hanger": 9981, + "leftist": 9982, + "bundle": 9983, + "openly": 9984, + "soph": 9985, + "bmw": 9986, + "crashes": 9987, + "sniff": 9988, + "washer": 9989, + "urs": 9990, + "audacity": 9991, + "arrives": 9992, + "farms": 9993, + "whipping": 9994, + "godd": 9995, + "curved": 9996, + "heel": 9997, + "nomo": 9998, + "tutorial": 9999, + "dublin": 10000, + "tanner": 10001, + "defended": 10002, + "universities": 10003, + "moss": 10004, + "algo": 10005, + "separation": 10006, + "shrugs": 10007, + "glasgow": 10008, + "rants": 10009, + "nigel": 10010, + "salary": 10011, + "delusion": 10012, + "blur": 10013, + "twelve": 10014, + "comedian": 10015, + "ganna": 10016, + "lames": 10017, + "contra": 10018, + "positively": 10019, + "sweeter": 10020, + "encountered": 10021, + "tiff": 10022, + "mddr": 10023, + "erase": 10024, + "scottish": 10025, + "changer": 10026, + "collage": 10027, + "genetic": 10028, + "brink": 10029, + "wipes": 10030, + "bugger": 10031, + "successfully": 10032, + "suarez": 10033, + "incident": 10034, + "sauna": 10035, + "confirmation": 10036, + "adele": 10037, + "derp": 10038, + "responsibilities": 10039, + "wage": 10040, + "prostitution": 10041, + "rec": 10042, + "internship": 10043, + "lamar": 10044, + "ownership": 10045, + "nbs": 10046, + "dialogue": 10047, + "whew": 10048, + "moo": 10049, + "earliest": 10050, + "annual": 10051, + "inshallah": 10052, + "cited": 10053, + "alter": 10054, + "ki": 10055, + "errands": 10056, + "purge": 10057, + "lax": 10058, + "typed": 10059, + "perverted": 10060, + "fluke": 10061, + "buildings": 10062, + "urgh": 10063, + "gea": 10064, + "stomp": 10065, + "choked": 10066, + "custard": 10067, + "competitive": 10068, + "primo": 10069, + "irresponsible": 10070, + "nappy": 10071, + "keepin": 10072, + "fricken": 10073, + "courteous": 10074, + "differ": 10075, + "placement": 10076, + "foil": 10077, + "freestyle": 10078, + "toni": 10079, + "deserving": 10080, + "accountable": 10081, + "sprouts": 10082, + "investigate": 10083, + "yells": 10084, + "expense": 10085, + "ducks": 10086, + "meatball": 10087, + "geeked": 10088, + "kev": 10089, + "dome": 10090, + "avery": 10091, + "salamat": 10092, + "nirvana": 10093, + "chairman": 10094, + "downside": 10095, + "flakes": 10096, + "bonnie": 10097, + "reckon": 10098, + "nig": 10099, + "yon": 10100, + "opps": 10101, + "aku": 10102, + "teas": 10103, + "boner": 10104, + "trayvon": 10105, + "brandy": 10106, + "teaches": 10107, + "distracting": 10108, + "shabby": 10109, + "muero": 10110, + "packaged": 10111, + "tension": 10112, + "starring": 10113, + "tapos": 10114, + "beh": 10115, + "nonetheless": 10116, + "circles": 10117, + "cher": 10118, + "bigtime": 10119, + "treadmill": 10120, + "wendy": 10121, + "ea": 10122, + "inflated": 10123, + "dodge": 10124, + "coloring": 10125, + "canal": 10126, + "cloudy": 10127, + "kiddo": 10128, + "misplaced": 10129, + "slaying": 10130, + "discipline": 10131, + "edwards": 10132, + "gila": 10133, + "bola": 10134, + "ji": 10135, + "gif": 10136, + "behalf": 10137, + "influences": 10138, + "mano": 10139, + "clicked": 10140, + "showered": 10141, + "peel": 10142, + "flattered": 10143, + "alr": 10144, + "legalize": 10145, + "chunky": 10146, + "prediction": 10147, + "criticize": 10148, + "alto": 10149, + "nightt": 10150, + "rust": 10151, + "replacing": 10152, + "mack": 10153, + "braid": 10154, + "opposed": 10155, + "storms": 10156, + "toby": 10157, + "critic": 10158, + "boxers": 10159, + "engrossing": 10160, + "clash": 10161, + "skimpy": 10162, + "stoner": 10163, + "nieces": 10164, + "spoiling": 10165, + "captured": 10166, + "frosting": 10167, + "layer": 10168, + "geography": 10169, + "ilyy": 10170, + "snapchatting": 10171, + "absent": 10172, + "trashed": 10173, + "richmond": 10174, + "grisham": 10175, + "ulit": 10176, + "suggesting": 10177, + "marilyn": 10178, + "tna": 10179, + "darlin": 10180, + "hectic": 10181, + "marching": 10182, + "hoodies": 10183, + "weezy": 10184, + "largest": 10185, + "bankruptcy": 10186, + "bangers": 10187, + "singles": 10188, + "bg": 10189, + "doggy": 10190, + "breezy": 10191, + "nam": 10192, + "std": 10193, + "nicholas": 10194, + "peeve": 10195, + "vac": 10196, + "undercooked": 10197, + "hostile": 10198, + "regulations": 10199, + "intent": 10200, + "boogie": 10201, + "gwen": 10202, + "voter": 10203, + "shipment": 10204, + "okey": 10205, + "queso": 10206, + "rin": 10207, + "ayce": 10208, + "trill": 10209, + "ptdrr": 10210, + "hollering": 10211, + "conscious": 10212, + "angela": 10213, + "likewise": 10214, + "talker": 10215, + "bron": 10216, + "lovelies": 10217, + "mills": 10218, + "dew": 10219, + "batting": 10220, + "mali": 10221, + "sensor": 10222, + "rehearsal": 10223, + "suspenseful": 10224, + "gown": 10225, + "sweety": 10226, + "vous": 10227, + "td": 10228, + "dealt": 10229, + "poll": 10230, + "snl": 10231, + "monroe": 10232, + "hints": 10233, + "barbara": 10234, + "laa": 10235, + "overweight": 10236, + "denied": 10237, + "moma": 10238, + "pastry": 10239, + "jogging": 10240, + "profound": 10241, + "tamales": 10242, + "purposely": 10243, + "anit": 10244, + "fuckn": 10245, + "perpetual": 10246, + "awn": 10247, + "cornbread": 10248, + "venus": 10249, + "fundamental": 10250, + "vou": 10251, + "wages": 10252, + "irritate": 10253, + "jour": 10254, + "ahi": 10255, + "giggle": 10256, + "kc": 10257, + "outt": 10258, + "heath": 10259, + "funn": 10260, + "promoted": 10261, + "concerning": 10262, + "goddammit": 10263, + "generations": 10264, + "resigned": 10265, + "bts": 10266, + "mwah": 10267, + "distorted": 10268, + "happend": 10269, + "brands": 10270, + "remarks": 10271, + "roasting": 10272, + "goosebumps": 10273, + "iranian": 10274, + "runny": 10275, + "memes": 10276, + "nako": 10277, + "cautious": 10278, + "nyquil": 10279, + "siya": 10280, + "clarity": 10281, + "heartwarming": 10282, + "hayy": 10283, + "fri": 10284, + "diving": 10285, + "nickelback": 10286, + "vest": 10287, + "favourites": 10288, + "nutrition": 10289, + "onna": 10290, + "colder": 10291, + "valentine": 10292, + "turtles": 10293, + "cudi": 10294, + "lmbo": 10295, + "pag": 10296, + "dishwasher": 10297, + "ther": 10298, + "desperation": 10299, + "enforce": 10300, + "har": 10301, + "alleged": 10302, + "tattooed": 10303, + "jenner": 10304, + "carbon": 10305, + "mismo": 10306, + "collector": 10307, + "headphone": 10308, + "reallyy": 10309, + "communicate": 10310, + "sappy": 10311, + "jolly": 10312, + "kickin": 10313, + "advisor": 10314, + "travelling": 10315, + "parenting": 10316, + "disagrees": 10317, + "trivia": 10318, + "heroine": 10319, + "cranberry": 10320, + "sampler": 10321, + "stereotypes": 10322, + "jackets": 10323, + "recital": 10324, + "alls": 10325, + "tau": 10326, + "cx": 10327, + "slammed": 10328, + "nova": 10329, + "trusting": 10330, + "mindset": 10331, + "violated": 10332, + "smokes": 10333, + "homegirl": 10334, + "fez": 10335, + "principle": 10336, + "fatto": 10337, + "athletes": 10338, + "napping": 10339, + "juju": 10340, + "preachy": 10341, + "classmates": 10342, + "targeting": 10343, + "falta": 10344, + "declare": 10345, + "bruv": 10346, + "illustrated": 10347, + "phew": 10348, + "terrifying": 10349, + "heree": 10350, + "valentine's": 10351, + "comical": 10352, + "jumps": 10353, + "behaviour": 10354, + "norman": 10355, + "finesse": 10356, + "patriot": 10357, + "estas": 10358, + "unattractive": 10359, + "nom": 10360, + "thanked": 10361, + "intermediate": 10362, + "lpm": 10363, + "skittles": 10364, + "adidas": 10365, + "degeneres": 10366, + "culinary": 10367, + "paperwork": 10368, + "whys": 10369, + "spaces": 10370, + "von": 10371, + "notices": 10372, + "clippers": 10373, + "tre": 10374, + "costumes": 10375, + "checkout": 10376, + "concrete": 10377, + "fckin": 10378, + "damon": 10379, + "laughin": 10380, + "tunnel": 10381, + "padre": 10382, + "daamn": 10383, + "verizon": 10384, + "cider": 10385, + "fallout": 10386, + "lg": 10387, + "accessible": 10388, + "speeding": 10389, + "sniffing": 10390, + "transparent": 10391, + "relative": 10392, + "reset": 10393, + "repeats": 10394, + "reduction": 10395, + "exclusive": 10396, + "dissing": 10397, + "bree": 10398, + "sem": 10399, + "wierd": 10400, + "catches": 10401, + "supplement": 10402, + "prints": 10403, + "inbred": 10404, + "functionality": 10405, + "hdmi": 10406, + "jae": 10407, + "youngin": 10408, + "blackjack": 10409, + "kenyan": 10410, + "brady": 10411, + "obrigado": 10412, + "sofia": 10413, + "battles": 10414, + "binding": 10415, + "huff": 10416, + "endorsed": 10417, + "pang": 10418, + "atlas": 10419, + "wretched": 10420, + "puck": 10421, + "marked": 10422, + "fangirling": 10423, + "euro": 10424, + "dramatically": 10425, + "peek": 10426, + "aquarium": 10427, + "hulk": 10428, + "cuteness": 10429, + "tagging": 10430, + "fukin": 10431, + "suction": 10432, + "pesto": 10433, + "prophecy": 10434, + "windshield": 10435, + "fierce": 10436, + "uniforms": 10437, + "oxford": 10438, + "porter": 10439, + "keen": 10440, + "mari": 10441, + "rican": 10442, + "opinionated": 10443, + "dank": 10444, + "fro": 10445, + "omm": 10446, + "quem": 10447, + "moan": 10448, + "sums": 10449, + "describing": 10450, + "mop": 10451, + "yearbook": 10452, + "redo": 10453, + "ronnie": 10454, + "skips": 10455, + "tate": 10456, + "kmt": 10457, + "stitch": 10458, + "svu": 10459, + "hiphop": 10460, + "j's": 10461, + "pans": 10462, + "compassion": 10463, + "stewart": 10464, + "decorations": 10465, + "bosh": 10466, + "bumpin": 10467, + "gloria": 10468, + "personnel": 10469, + "roberts": 10470, + "sdds": 10471, + "jv": 10472, + "novela": 10473, + "electronics": 10474, + "dukes": 10475, + "chipped": 10476, + "rocker": 10477, + "tolerate": 10478, + "reggie": 10479, + "henderson": 10480, + "#help": 10481, + "soz": 10482, + "represented": 10483, + "dakota": 10484, + "xs": 10485, + "rapes": 10486, + "nelson": 10487, + "conscience": 10488, + "translate": 10489, + "reliability": 10490, + "condolences": 10491, + "bonne": 10492, + "swap": 10493, + "darkskin": 10494, + "bcuz": 10495, + "lag": 10496, + "cloth": 10497, + "sperm": 10498, + "skateboard": 10499, + "mccain": 10500, + "fearless": 10501, + "adventurous": 10502, + "wt": 10503, + "loudly": 10504, + "endure": 10505, + "scrubs": 10506, + "omar": 10507, + "complimented": 10508, + "respects": 10509, + "lindsey": 10510, + "csm": 10511, + "hesitate": 10512, + "assist": 10513, + "inning": 10514, + "mosquitos": 10515, + "pasty": 10516, + "crucial": 10517, + "madd": 10518, + "saudade": 10519, + "reps": 10520, + "altogether": 10521, + "personas": 10522, + "queer": 10523, + "pedophiles": 10524, + "meter": 10525, + "peor": 10526, + "daughter's": 10527, + "afghanistan": 10528, + "silk": 10529, + "viewers": 10530, + "stoop": 10531, + "bragging": 10532, + "exercises": 10533, + "lagi": 10534, + "yew": 10535, + "outa": 10536, + "topics": 10537, + "logitech": 10538, + "gtfoh": 10539, + "gibson": 10540, + "raging": 10541, + "activists": 10542, + "tats": 10543, + "santiago": 10544, + "babs": 10545, + "meetings": 10546, + "#dying": 10547, + "appearing": 10548, + "grams": 10549, + "unintelligent": 10550, + "healthier": 10551, + "scenario": 10552, + "jokers": 10553, + "=))": 10554, + "punks": 10555, + "allie": 10556, + "bianca": 10557, + "viewer": 10558, + "unbearable": 10559, + "linked": 10560, + "sneezed": 10561, + "jajajajajajaja": 10562, + "kiddin": 10563, + "animated": 10564, + "violate": 10565, + "textbooks": 10566, + "failures": 10567, + "spirits": 10568, + "thursdays": 10569, + "hub": 10570, + "omelette": 10571, + "searched": 10572, + "relaxation": 10573, + "hurr": 10574, + "clarification": 10575, + "texter": 10576, + "heheh": 10577, + "cursing": 10578, + "depths": 10579, + "comforting": 10580, + "#perfect": 10581, + "doofus": 10582, + "celeb": 10583, + "organize": 10584, + "infested": 10585, + "booster": 10586, + "ghosts": 10587, + "ign": 10588, + "nicee": 10589, + "gathering": 10590, + "bm": 10591, + "contributions": 10592, + "bigots": 10593, + "ada": 10594, + "hailey": 10595, + "aaww": 10596, + "iceberg": 10597, + "tuition": 10598, + "sheriff": 10599, + "nia": 10600, + "samurai": 10601, + "parasites": 10602, + "rae": 10603, + "yumm": 10604, + "resting": 10605, + "goodmorningg": 10606, + "survivor": 10607, + "maddy": 10608, + "wha": 10609, + "rethink": 10610, + "bas": 10611, + "epitome": 10612, + "muito": 10613, + "cultural": 10614, + "alam": 10615, + "twitters": 10616, + "mice": 10617, + "relatable": 10618, + "perkins": 10619, + "vietnam": 10620, + "canvas": 10621, + "gauge": 10622, + "donna": 10623, + "crabs": 10624, + "hooray": 10625, + "ties": 10626, + "mayer": 10627, + "bachelor": 10628, + "napkins": 10629, + "mommas": 10630, + "tighter": 10631, + "worldstar": 10632, + "compares": 10633, + "login": 10634, + "bouncer": 10635, + "christie": 10636, + "degenerate": 10637, + "tremendous": 10638, + "stocked": 10639, + "pronounce": 10640, + "cass": 10641, + "lunacy": 10642, + "lacrosse": 10643, + "poser": 10644, + "fwu": 10645, + "assure": 10646, + "enthusiasm": 10647, + "developed": 10648, + "marina": 10649, + "kardashians": 10650, + "weirdos": 10651, + "klan": 10652, + "partners": 10653, + "clause": 10654, + "lineup": 10655, + "curled": 10656, + "honeymoon": 10657, + "miriam": 10658, + "chorizo": 10659, + "entitlement": 10660, + "wal": 10661, + "mafia": 10662, + "wes": 10663, + "grief": 10664, + "elements": 10665, + "campy": 10666, + "#lol": 10667, + "bumped": 10668, + "kidnapping": 10669, + "tricky": 10670, + "mandalay": 10671, + "suga": 10672, + "ping": 10673, + "mole": 10674, + "font": 10675, + "admitting": 10676, + "expectation": 10677, + "cramp": 10678, + "asthma": 10679, + "neighbours": 10680, + "mit": 10681, + "fajitas": 10682, + "blowin": 10683, + "downfall": 10684, + "savior": 10685, + "zack": 10686, + "martinez": 10687, + "representing": 10688, + "pimple": 10689, + "kittens": 10690, + "rach": 10691, + "recalled": 10692, + "chilly": 10693, + "mechanic": 10694, + "assumptions": 10695, + "spout": 10696, + "pleaase": 10697, + "mustang": 10698, + "author's": 10699, + "tweetin": 10700, + "nemo": 10701, + "stabbed": 10702, + "#turnup": 10703, + "lone": 10704, + "screws": 10705, + "southwest": 10706, + "smoker": 10707, + "bryson": 10708, + "#loveit": 10709, + "gore": 10710, + "somos": 10711, + "gripe": 10712, + "fills": 10713, + "decorating": 10714, + "sade": 10715, + "gi": 10716, + "bricks": 10717, + "gudda": 10718, + "nya": 10719, + "soak": 10720, + "issued": 10721, + "accusing": 10722, + "weddings": 10723, + "wrestlers": 10724, + "ceremony": 10725, + "gatsby": 10726, + "mercedes": 10727, + "sg": 10728, + "ett": 10729, + "rash": 10730, + "judicial": 10731, + "sung": 10732, + "niv": 10733, + "decency": 10734, + "copying": 10735, + "effectively": 10736, + "yaayy": 10737, + "baths": 10738, + "linear": 10739, + "malaise": 10740, + "yur": 10741, + "medication": 10742, + "stahp": 10743, + "adjust": 10744, + "lotta": 10745, + "jacking": 10746, + "formed": 10747, + "idi": 10748, + "pam": 10749, + "oprah": 10750, + "tottenham": 10751, + "communists": 10752, + "assemble": 10753, + "tipped": 10754, + "obese": 10755, + "flour": 10756, + "pedophilia": 10757, + "suicidal": 10758, + "hangs": 10759, + "bottled": 10760, + "begun": 10761, + "yoruba": 10762, + "flexin": 10763, + "hopeful": 10764, + "arctic": 10765, + "whooped": 10766, + "digits": 10767, + "latino": 10768, + "iknow": 10769, + "jumbo": 10770, + "harassment": 10771, + "domingo": 10772, + "#truth": 10773, + "hopping": 10774, + "allison": 10775, + "rhetoric": 10776, + "marissa": 10777, + "sander": 10778, + "derrick": 10779, + "ey": 10780, + "leftover": 10781, + "deluded": 10782, + "juicer": 10783, + "ohmygod": 10784, + "revise": 10785, + "reversed": 10786, + "decir": 10787, + "pilates": 10788, + "tyga": 10789, + "lyfe": 10790, + "#wtf": 10791, + "flock": 10792, + "lik": 10793, + "chilli": 10794, + "curves": 10795, + "maintained": 10796, + "turnup": 10797, + "dealership": 10798, + "gomez": 10799, + "needy": 10800, + "ccw": 10801, + "brushes": 10802, + "fields": 10803, + "fetish": 10804, + "ven": 10805, + "molesting": 10806, + "irritates": 10807, + "battlefield": 10808, + "staple": 10809, + "stacy": 10810, + "believable": 10811, + "chevy": 10812, + "themed": 10813, + "blizzard": 10814, + "behold": 10815, + "drawer": 10816, + "griffin": 10817, + "overdue": 10818, + "omfgg": 10819, + "clam": 10820, + "migos": 10821, + "swept": 10822, + "unimpressed": 10823, + "threads": 10824, + "approached": 10825, + "lined": 10826, + "advert": 10827, + "freedoms": 10828, + "plumber": 10829, + "scrambled": 10830, + "tracy": 10831, + "featured": 10832, + "waved": 10833, + "elevators": 10834, + "honors": 10835, + "samantha": 10836, + "directioners": 10837, + "centuries": 10838, + "snatch": 10839, + "arabic": 10840, + "unexpectedly": 10841, + "directing": 10842, + "ref": 10843, + "banner": 10844, + "ilyt": 10845, + "dove": 10846, + "veo": 10847, + "rt's": 10848, + "participate": 10849, + "confession": 10850, + "desde": 10851, + "versa": 10852, + "a'f": 10853, + "kent": 10854, + "helen": 10855, + "berkeley": 10856, + "bigg": 10857, + "family's": 10858, + "eventful": 10859, + "freeway": 10860, + "declined": 10861, + "sharia": 10862, + "sorryy": 10863, + "tiempo": 10864, + "mono": 10865, + "aren": 10866, + "glorified": 10867, + "dismissed": 10868, + "cuffing": 10869, + "guards": 10870, + "pacific": 10871, + "hahahhaha": 10872, + "ayoo": 10873, + "gardens": 10874, + "frio": 10875, + "nj": 10876, + "chased": 10877, + "israelis": 10878, + "whatchu": 10879, + "bahaha": 10880, + "basta": 10881, + "sipping": 10882, + "marvel": 10883, + "motives": 10884, + "lulu": 10885, + "elijah": 10886, + "dann": 10887, + "cronies": 10888, + "crafts": 10889, + "forgets": 10890, + "ingat": 10891, + "alpha": 10892, + "ness": 10893, + "ls": 10894, + "congressional": 10895, + "gamers": 10896, + "ladder": 10897, + "lightly": 10898, + "ancestors": 10899, + "chart": 10900, + "contraception": 10901, + "boobies": 10902, + "duties": 10903, + "freckles": 10904, + "ges": 10905, + "independents": 10906, + "sheeple": 10907, + "trippy": 10908, + "trait": 10909, + "fatal": 10910, + "brenda": 10911, + "turbo": 10912, + "fulfilled": 10913, + "d.c.": 10914, + "grossly": 10915, + "humour": 10916, + "quitter": 10917, + "grandfather": 10918, + "albert": 10919, + "stepdad": 10920, + "significantly": 10921, + "wavy": 10922, + "acordei": 10923, + "karate": 10924, + "zipper": 10925, + "ment": 10926, + "impeached": 10927, + "stretching": 10928, + "bhi": 10929, + "acl": 10930, + "een": 10931, + "folding": 10932, + "contacted": 10933, + "breaker": 10934, + "youve": 10935, + "franchise": 10936, + "licensed": 10937, + "chisholm": 10938, + "releasing": 10939, + "skeptical": 10940, + "conceited": 10941, + "curtains": 10942, + "chapstick": 10943, + "scar": 10944, + "tr": 10945, + "dripping": 10946, + "nuh": 10947, + "sterling": 10948, + "spine": 10949, + "sage": 10950, + "drip": 10951, + "loml": 10952, + "eyeballs": 10953, + "reactions": 10954, + "drift": 10955, + "dell": 10956, + "derby": 10957, + "mussels": 10958, + "disgust": 10959, + "cassie": 10960, + "hayley": 10961, + "gingrich": 10962, + "ouu": 10963, + "compromise": 10964, + "outchea": 10965, + "francis": 10966, + "ndaa": 10967, + "cosmo": 10968, + "mv": 10969, + "facetiming": 10970, + "david's": 10971, + "butler": 10972, + "apartments": 10973, + "traits": 10974, + "virgins": 10975, + "tta": 10976, + "wbu": 10977, + "africans": 10978, + "telly": 10979, + "sophisticated": 10980, + "humanist": 10981, + "diverse": 10982, + "hoodrat": 10983, + "mysteries": 10984, + "grain": 10985, + "cuzzo": 10986, + "harassing": 10987, + "pharmacy": 10988, + "piggy": 10989, + "tink": 10990, + "tatum": 10991, + "remark": 10992, + "punished": 10993, + "nshit": 10994, + "dresser": 10995, + "phillip": 10996, + "cruz": 10997, + "layers": 10998, + "condit": 10999, + "locking": 11000, + "plotting": 11001, + "homeboy": 11002, + "savory": 11003, + "ucking": 11004, + "breitbart": 11005, + "foxnews": 11006, + "courtesy": 11007, + "kreme": 11008, + "grub": 11009, + "pardon": 11010, + "pimples": 11011, + "finee": 11012, + "philip": 11013, + "concerns": 11014, + "stuffing": 11015, + "riff": 11016, + "dial": 11017, + "sta": 11018, + "thaanks": 11019, + "shakespeare": 11020, + "eddi": 11021, + "fakes": 11022, + "icy": 11023, + "colin": 11024, + "gols": 11025, + "cussed": 11026, + "rusty": 11027, + "hoje": 11028, + "sharks": 11029, + "offset": 11030, + "alrighty": 11031, + "dildo": 11032, + "talents": 11033, + "jazzy": 11034, + "flowing": 11035, + "legislature": 11036, + "yoouu": 11037, + "spoils": 11038, + "markets": 11039, + "inability": 11040, + "stance": 11041, + "offerings": 11042, + "horoscope": 11043, + "gravity": 11044, + "cm": 11045, + "ecb": 11046, + "sellers": 11047, + "discontinued": 11048, + "xbb": 11049, + "implicated": 11050, + "oj": 11051, + "needles": 11052, + "heroic": 11053, + "busting": 11054, + "swedish": 11055, + "flyer": 11056, + "hump": 11057, + "carb": 11058, + "why's": 11059, + "illogical": 11060, + "crosses": 11061, + "mortal": 11062, + "tgfad": 11063, + "ilym": 11064, + "graciass": 11065, + "continent": 11066, + "tomo": 11067, + "pinned": 11068, + "stares": 11069, + "wvu": 11070, + "smear": 11071, + "deux": 11072, + "snob": 11073, + "pairing": 11074, + "racketeering": 11075, + "ar": 11076, + "rodeo": 11077, + "mildly": 11078, + "ebd": 11079, + "peeing": 11080, + "ranker": 11081, + "girlies": 11082, + "zumba": 11083, + "midterms": 11084, + "tv's": 11085, + "unoriginal": 11086, + "eazy": 11087, + "superhero": 11088, + "sri": 11089, + "negro's": 11090, + "broads": 11091, + "nixon": 11092, + "lantern": 11093, + "gateway": 11094, + "sly": 11095, + "electable": 11096, + "kam": 11097, + "charts": 11098, + "surrounding": 11099, + "mfers": 11100, + "obozo": 11101, + "whatcha": 11102, + "codes": 11103, + "untill": 11104, + "bhai": 11105, + "segment": 11106, + "joked": 11107, + "avid": 11108, + "douchebag": 11109, + "foie": 11110, + "squash": 11111, + "sgk": 11112, + "wednesdays": 11113, + "teammates": 11114, + "fome": 11115, + "cured": 11116, + "quiere": 11117, + "unre": 11118, + "hen": 11119, + "obongo": 11120, + "b's": 11121, + "gabe": 11122, + "edbc": 11123, + "sweden": 11124, + "spelt": 11125, + "leash": 11126, + "speeches": 11127, + "devoted": 11128, + "quero": 11129, + "sleeves": 11130, + "plum": 11131, + "muscular": 11132, + "lava": 11133, + "tai": 11134, + "hamster": 11135, + "crawled": 11136, + "penguins": 11137, + "immigrant": 11138, + "marshall": 11139, + "rejection": 11140, + "louie": 11141, + "indicated": 11142, + "nigg": 11143, + "takeout": 11144, + "housekeeping": 11145, + "pablo": 11146, + "shack": 11147, + "carson": 11148, + "hog": 11149, + "tc": 11150, + "tong": 11151, + "resolve": 11152, + "fastest": 11153, + "hid": 11154, + "richer": 11155, + "ifb": 11156, + "rehab": 11157, + "slumped": 11158, + "ultimo": 11159, + "prostitutes": 11160, + "unblock": 11161, + "vets": 11162, + "thesis": 11163, + "tel": 11164, + "sincere": 11165, + "wolves": 11166, + "delighted": 11167, + "reall": 11168, + "parole": 11169, + "perff": 11170, + "harvey": 11171, + "night's": 11172, + "copied": 11173, + "connections": 11174, + "cory": 11175, + "quince": 11176, + "remastered": 11177, + "grammy": 11178, + "arnold": 11179, + "stirring": 11180, + "chambers": 11181, + "knot": 11182, + "assured": 11183, + "entonces": 11184, + "brainless": 11185, + "akin": 11186, + "theaters": 11187, + "d's": 11188, + "girrl": 11189, + "cheetah": 11190, + "titty": 11191, + "suis": 11192, + "ponytail": 11193, + "ranger": 11194, + "nelly": 11195, + "#teamfollowback": 11196, + "expressed": 11197, + "chit": 11198, + "oath": 11199, + "investors": 11200, + "privileges": 11201, + "geniuses": 11202, + "lea": 11203, + "uninteresting": 11204, + "riddance": 11205, + "#tired": 11206, + "clancy": 11207, + "terminal": 11208, + "beneficial": 11209, + "ranks": 11210, + "paths": 11211, + "messes": 11212, + "fc": 11213, + "distant": 11214, + "portuguese": 11215, + "amiga": 11216, + "glimpse": 11217, + "elbows": 11218, + "photoshoot": 11219, + "schooled": 11220, + "climax": 11221, + "sociology": 11222, + "leap": 11223, + "musica": 11224, + "froze": 11225, + "madi": 11226, + "banger": 11227, + "eleven": 11228, + "lmk": 11229, + "homer": 11230, + "annd": 11231, + "buried": 11232, + "magically": 11233, + "edits": 11234, + "alligator": 11235, + "beb": 11236, + "#finally": 11237, + "paula": 11238, + "trophies": 11239, + "textin": 11240, + "neymar": 11241, + "vlog": 11242, + "nxt": 11243, + "outback": 11244, + "tot": 11245, + "regan": 11246, + "glowing": 11247, + "ele": 11248, + "verde": 11249, + "burner": 11250, + "bitchess": 11251, + "packer": 11252, + "triggered": 11253, + "arch": 11254, + "kinky": 11255, + "palette": 11256, + "regulars": 11257, + "compassionate": 11258, + "plural": 11259, + "nigga's": 11260, + "columbia": 11261, + "mush": 11262, + "encouraged": 11263, + "#smh": 11264, + "minnesota": 11265, + "alexa": 11266, + "rail": 11267, + "starved": 11268, + "pumping": 11269, + "mustache": 11270, + "misunderstanding": 11271, + "vu": 11272, + "baller": 11273, + "shitted": 11274, + "dinah": 11275, + "db": 11276, + "counted": 11277, + "pitched": 11278, + "marvin": 11279, + "venting": 11280, + "grenade": 11281, + "commander": 11282, + "holders": 11283, + "psa": 11284, + "harvard": 11285, + "inadequate": 11286, + "audi": 11287, + "ashy": 11288, + "admission": 11289, + "controls": 11290, + "dearest": 11291, + "chickfila": 11292, + "affects": 11293, + "uggh": 11294, + "lolololol": 11295, + "touchdown": 11296, + "filmed": 11297, + "coca": 11298, + "wheeling": 11299, + "lluvia": 11300, + "mira": 11301, + "afghan": 11302, + "grandma's": 11303, + "wiped": 11304, + "lindoo": 11305, + "saudi": 11306, + "jhene": 11307, + "publisher": 11308, + "cilantro": 11309, + "slapping": 11310, + "cuppa": 11311, + "amin": 11312, + "canny": 11313, + "soulful": 11314, + "where'd": 11315, + "repeated": 11316, + "diners": 11317, + "feathers": 11318, + "husband's": 11319, + "repairs": 11320, + "inedible": 11321, + "#please": 11322, + "sailor": 11323, + "hunted": 11324, + "minister": 11325, + "racks": 11326, + "unwatchable": 11327, + "spontaneous": 11328, + "bigotry": 11329, + "hihihi": 11330, + "tang": 11331, + "lays": 11332, + "chicos": 11333, + "soaking": 11334, + "pollo": 11335, + "tangled": 11336, + "refuses": 11337, + "bets": 11338, + "joan": 11339, + "minha": 11340, + "seein": 11341, + "unfriendly": 11342, + "nonsensical": 11343, + "abilities": 11344, + "brushing": 11345, + "awkwardly": 11346, + "sabe": 11347, + "jerky": 11348, + "swears": 11349, + "yankee": 11350, + "bile": 11351, + "ruth": 11352, + "pitchers": 11353, + "seahawks": 11354, + "founding": 11355, + "suns": 11356, + "sketchers": 11357, + "pff": 11358, + "deodorant": 11359, + "coaching": 11360, + "demented": 11361, + "notifs": 11362, + "risky": 11363, + "bla": 11364, + "nonstop": 11365, + "kidnap": 11366, + "comb": 11367, + "jd": 11368, + "crafted": 11369, + "beverages": 11370, + "kl": 11371, + "contrary": 11372, + "snickers": 11373, + "distraction": 11374, + "spitting": 11375, + "frickin": 11376, + "somethings": 11377, + "compound": 11378, + "cassette": 11379, + "tornado": 11380, + "actively": 11381, + "bachata": 11382, + "unsure": 11383, + "scratching": 11384, + "lu": 11385, + "drinkin": 11386, + "woop": 11387, + "shoots": 11388, + "loans": 11389, + "cleats": 11390, + "suerte": 11391, + "sponge": 11392, + "alexander": 11393, + "arcade": 11394, + "yhu": 11395, + "awareness": 11396, + "unnatural": 11397, + "capture": 11398, + "broadcast": 11399, + "accommodate": 11400, + "courageous": 11401, + "boxed": 11402, + "amongst": 11403, + "resume": 11404, + "kms": 11405, + "bistro": 11406, + "bashing": 11407, + "shin": 11408, + "fifteen": 11409, + "panama": 11410, + "calle": 11411, + "pedal": 11412, + "poignant": 11413, + "sicko": 11414, + "revenue": 11415, + "mixes": 11416, + "coins": 11417, + "cookin": 11418, + "farting": 11419, + "ahahahah": 11420, + "gene": 11421, + "cindy": 11422, + "pitt": 11423, + "transplant": 11424, + "confuses": 11425, + "dq": 11426, + "wawa": 11427, + "juliet": 11428, + "analogy": 11429, + "descendants": 11430, + "espero": 11431, + "procrastination": 11432, + "warner": 11433, + "sunk": 11434, + "bumper": 11435, + "coursework": 11436, + "puzzling": 11437, + "noses": 11438, + "hippy": 11439, + "seams": 11440, + "labels": 11441, + "lanes": 11442, + "takeover": 11443, + "cedar": 11444, + "underestimate": 11445, + "knoow": 11446, + "farewell": 11447, + "intellectually": 11448, + "somo": 11449, + "tack": 11450, + "revising": 11451, + "swallowing": 11452, + "bachelorette": 11453, + "xl": 11454, + "linksys": 11455, + "somthing": 11456, + "reasoning": 11457, + "clubbing": 11458, + "depot": 11459, + "bj": 11460, + "deuces": 11461, + "toujours": 11462, + "carmen": 11463, + "bishh": 11464, + "hustler": 11465, + "raving": 11466, + "innovative": 11467, + "bub": 11468, + "boredd": 11469, + "bae's": 11470, + "tickle": 11471, + "soundcloud": 11472, + "lance": 11473, + "colours": 11474, + "oct": 11475, + "joes": 11476, + "luhh": 11477, + "rita": 11478, + "stranded": 11479, + "oak": 11480, + "ro": 11481, + "naan": 11482, + "messaging": 11483, + "melanie": 11484, + "scenery": 11485, + "martial": 11486, + "civilized": 11487, + "messenger": 11488, + "sponsored": 11489, + "t's": 11490, + "jalen": 11491, + "lesbo": 11492, + "anthology": 11493, + "oyster": 11494, + "performs": 11495, + "tissues": 11496, + "killa": 11497, + "skilled": 11498, + "typa": 11499, + "niggahs": 11500, + "publicity": 11501, + "morn": 11502, + "gemini": 11503, + "darren": 11504, + "tres": 11505, + "phi": 11506, + "billboard": 11507, + "islands": 11508, + "hobbit": 11509, + "quarters": 11510, + "woahh": 11511, + "mwa": 11512, + "brown's": 11513, + "payroll": 11514, + "receptionist": 11515, + "cane": 11516, + "dodo": 11517, + "dined": 11518, + "lectures": 11519, + "cite": 11520, + "gab": 11521, + "medications": 11522, + "soulmate": 11523, + "mailed": 11524, + "allan": 11525, + "cement": 11526, + "kemp": 11527, + "kia": 11528, + "doodle": 11529, + "tri": 11530, + "milton": 11531, + "paragraphs": 11532, + "harbor": 11533, + "sal": 11534, + "ridin": 11535, + "haay": 11536, + "prego": 11537, + "uhmm": 11538, + "crushes": 11539, + "ruthless": 11540, + "diesel": 11541, + "traps": 11542, + "displays": 11543, + "distinction": 11544, + "trader": 11545, + "kickback": 11546, + "optional": 11547, + ";;)": 11548, + "hallways": 11549, + "severely": 11550, + "liability": 11551, + "drafts": 11552, + "qualifying": 11553, + "experiment": 11554, + "vive": 11555, + "uploading": 11556, + "outing": 11557, + "camel": 11558, + "dev": 11559, + "braves": 11560, + "silverware": 11561, + "shelter": 11562, + "motivational": 11563, + "unlock": 11564, + "shrek": 11565, + "#wcw": 11566, + "wordy": 11567, + "sama": 11568, + "nacho": 11569, + "d'accord": 11570, + "contributed": 11571, + "straps": 11572, + "agrees": 11573, + "nigha": 11574, + "spew": 11575, + "kg": 11576, + "attempts": 11577, + "pshh": 11578, + "vai": 11579, + "yaw": 11580, + "nvr": 11581, + "sundae": 11582, + "hosting": 11583, + "cater": 11584, + "appreciates": 11585, + "dude's": 11586, + "swearing": 11587, + "psyche": 11588, + "usage": 11589, + "tobacco": 11590, + "steals": 11591, + "magcon": 11592, + "psh": 11593, + "detention": 11594, + "poutine": 11595, + "wrecking": 11596, + "spoons": 11597, + "separated": 11598, + "chou": 11599, + "additionally": 11600, + "contemplating": 11601, + "ry": 11602, + "secondly": 11603, + "import": 11604, + "rim": 11605, + "purchases": 11606, + "registration": 11607, + "electricity": 11608, + "zoned": 11609, + "awks": 11610, + "erotic": 11611, + "ward": 11612, + "reed": 11613, + "bangin": 11614, + "buckets": 11615, + "preferably": 11616, + "newspapers": 11617, + "notre": 11618, + "milan": 11619, + "akong": 11620, + "huck": 11621, + "wrecked": 11622, + "creeped": 11623, + "cheerleading": 11624, + "jays": 11625, + "handing": 11626, + "eternal": 11627, + "perception": 11628, + "imaginative": 11629, + "debbie": 11630, + "vague": 11631, + "passengers": 11632, + "primero": 11633, + "sila": 11634, + "goodbyes": 11635, + "bbg": 11636, + "crocs": 11637, + "vampires": 11638, + "rpg": 11639, + "eish": 11640, + "weaver": 11641, + "parrot": 11642, + "torres": 11643, + "knit": 11644, + "interact": 11645, + "bene": 11646, + "fuming": 11647, + "pots": 11648, + "pornstar": 11649, + "invitation": 11650, + "ribeye": 11651, + "sya": 11652, + "tlc": 11653, + "awesomeness": 11654, + "flashbacks": 11655, + "heavens": 11656, + "hungryy": 11657, + "baad": 11658, + "pacman": 11659, + "alsina": 11660, + "playstation": 11661, + "sneaking": 11662, + "suites": 11663, + "sephora": 11664, + "wenn": 11665, + "voce": 11666, + "barb": 11667, + "faucet": 11668, + "stoopid": 11669, + "senses": 11670, + "bulbs": 11671, + "flashback": 11672, + "eager": 11673, + "emptor": 11674, + "overs": 11675, + "favored": 11676, + "expressions": 11677, + "melhor": 11678, + "unnie": 11679, + "bundles": 11680, + "publish": 11681, + "pj": 11682, + "bridges": 11683, + "slang": 11684, + "jerseys": 11685, + "mu": 11686, + "escaped": 11687, + "ridge": 11688, + "bahahaha": 11689, + "meta": 11690, + "narrative": 11691, + "lul": 11692, + "puffs": 11693, + "skiing": 11694, + "okok": 11695, + "hazel": 11696, + "harley": 11697, + "triumph": 11698, + "ineffective": 11699, + "upbeat": 11700, + "excessive": 11701, + "clearing": 11702, + "lier": 11703, + "brushed": 11704, + "gallery": 11705, + "owen": 11706, + "introductory": 11707, + "sensual": 11708, + "skater": 11709, + "wells": 11710, + "tweeter": 11711, + "erika": 11712, + "hairstyle": 11713, + "lawyers": 11714, + "serio": 11715, + "acceptance": 11716, + "enchilada": 11717, + "gritty": 11718, + "oasis": 11719, + "recycled": 11720, + "peaches": 11721, + "ticked": 11722, + "venture": 11723, + "ssy": 11724, + "waving": 11725, + "jest": 11726, + "projection": 11727, + "stella": 11728, + "redeeming": 11729, + "slowest": 11730, + "drawings": 11731, + "sewing": 11732, + "magnet": 11733, + "lala": 11734, + "silently": 11735, + "hacking": 11736, + "demonstrate": 11737, + "dictate": 11738, + "turkish": 11739, + "kane": 11740, + "shelves": 11741, + "precisely": 11742, + "hala": 11743, + "u'll": 11744, + "muppet": 11745, + "weekday": 11746, + "gears": 11747, + "largo": 11748, + "suree": 11749, + "caesars": 11750, + "founded": 11751, + "millennium": 11752, + "pres": 11753, + "walter": 11754, + "bracket": 11755, + "simpsons": 11756, + "bball": 11757, + "hawt": 11758, + "flamingo": 11759, + "visually": 11760, + "rah": 11761, + "j'aime": 11762, + "slippery": 11763, + "channing": 11764, + "tg": 11765, + "tolerated": 11766, + "swell": 11767, + "ideology": 11768, + "poet": 11769, + "tonightt": 11770, + "modeling": 11771, + "tenders": 11772, + "hahhaha": 11773, + "plugged": 11774, + "risotto": 11775, + "spooky": 11776, + "documents": 11777, + "robbie": 11778, + "bomber": 11779, + "slots": 11780, + "brie": 11781, + "dolphins": 11782, + "ppv": 11783, + "watt": 11784, + "devastated": 11785, + "banquet": 11786, + "hon": 11787, + "sasha": 11788, + "toothpaste": 11789, + "lukewarm": 11790, + "crank": 11791, + "quoi": 11792, + "functions": 11793, + "bribe": 11794, + "reporters": 11795, + "maxi": 11796, + "devon": 11797, + "sector": 11798, + "homeland": 11799, + "sebastian": 11800, + "morally": 11801, + "knocks": 11802, + "darkest": 11803, + "subscription": 11804, + "boyf": 11805, + "slid": 11806, + "princes": 11807, + "matte": 11808, + "denise": 11809, + "felicidades": 11810, + "refilled": 11811, + "cultures": 11812, + "vas": 11813, + "whatevs": 11814, + "juices": 11815, + "guru": 11816, + "seizure": 11817, + "robinson": 11818, + "contrived": 11819, + "matty": 11820, + "#goodmorning": 11821, + "hooks": 11822, + "decorate": 11823, + "cruising": 11824, + "stained": 11825, + "dixie": 11826, + "continually": 11827, + "socialism": 11828, + "jkjk": 11829, + "ware": 11830, + "sosa": 11831, + "advised": 11832, + "wales": 11833, + "camo": 11834, + "dijo": 11835, + "nhs": 11836, + "existe": 11837, + "presidency": 11838, + "cactus": 11839, + "casting": 11840, + "endlessly": 11841, + "daycare": 11842, + "coating": 11843, + "dwn": 11844, + "mofos": 11845, + "agony": 11846, + "manhattan": 11847, + "collab": 11848, + "guac": 11849, + "diabetic": 11850, + "wrk": 11851, + "interpret": 11852, + "dipshit": 11853, + "witcha": 11854, + "rehash": 11855, + "showering": 11856, + "sweep": 11857, + "testify": 11858, + "cheater": 11859, + "cashing": 11860, + "ngayon": 11861, + "jfk": 11862, + "paranormal": 11863, + "rm": 11864, + "blaze": 11865, + "voodoo": 11866, + "banning": 11867, + "distortion": 11868, + "revoked": 11869, + "woot": 11870, + "subpar": 11871, + "clan": 11872, + "cheeses": 11873, + "tuh": 11874, + "admin": 11875, + "defect": 11876, + "xdd": 11877, + "muna": 11878, + "skool": 11879, + "retreat": 11880, + "chrome": 11881, + "theses": 11882, + "malfunction": 11883, + "subjects": 11884, + "ala": 11885, + "harass": 11886, + "rips": 11887, + "daylight": 11888, + "dayum": 11889, + "your'e": 11890, + "asu": 11891, + "interstate": 11892, + "macro": 11893, + "nominated": 11894, + "pena": 11895, + "clique": 11896, + "glen": 11897, + "indecisive": 11898, + "owning": 11899, + "fronting": 11900, + "muah": 11901, + "jacksonville": 11902, + "medal": 11903, + "maximum": 11904, + "onesie": 11905, + "taylor's": 11906, + "ditched": 11907, + "submitting": 11908, + "settings": 11909, + "bullied": 11910, + "revisited": 11911, + "seasonal": 11912, + "robots": 11913, + "camels": 11914, + "forgiven": 11915, + "fundraising": 11916, + "civilization": 11917, + "shirtless": 11918, + "sac": 11919, + "quinn": 11920, + "copper": 11921, + "reserve": 11922, + "#missyou": 11923, + "mississippi": 11924, + "lifestyles": 11925, + "helper": 11926, + "crutches": 11927, + "appalling": 11928, + "attendant": 11929, + "insisted": 11930, + "nog": 11931, + "ws": 11932, + "#thankyou": 11933, + "rl": 11934, + "steaming": 11935, + "relive": 11936, + "especial": 11937, + "oii": 11938, + "chica": 11939, + "husky": 11940, + "foreverr": 11941, + "feces": 11942, + "introducing": 11943, + "maternity": 11944, + "tabs": 11945, + "virtually": 11946, + "churches": 11947, + "bloated": 11948, + "memo": 11949, + "puss": 11950, + "enjoyment": 11951, + "attendance": 11952, + "kenzie": 11953, + "exceptionally": 11954, + "stupider": 11955, + "thurs": 11956, + "stressin": 11957, + "yaya": 11958, + "rabid": 11959, + "timberlake": 11960, + "fairness": 11961, + "curtain": 11962, + "rex": 11963, + "produces": 11964, + "cheered": 11965, + "#why": 11966, + "grounds": 11967, + "bmx": 11968, + "perm": 11969, + "saul": 11970, + "mouthing": 11971, + "respectfully": 11972, + "asco": 11973, + "planner": 11974, + "csi": 11975, + "younow": 11976, + "redundant": 11977, + "benjamin": 11978, + "lyrical": 11979, + "milkshakes": 11980, + "beiber": 11981, + "cosy": 11982, + "orton": 11983, + "aur": 11984, + "fe": 11985, + "pd": 11986, + "carbs": 11987, + "nerds": 11988, + "vulnerable": 11989, + "aug": 11990, + "knob": 11991, + "turds": 11992, + "dots": 11993, + "suicides": 11994, + "prepping": 11995, + "croissant": 11996, + "oversized": 11997, + "donations": 11998, + "audrey": 11999, + "pow": 12000, + "throwin": 12001, + "sowwy": 12002, + "amnesia": 12003, + "coons": 12004, + "leaning": 12005, + "forgiveness": 12006, + "sch": 12007, + "jacuzzi": 12008, + "retainer": 12009, + "tryn": 12010, + "occur": 12011, + "carey": 12012, + "oy": 12013, + "hennessy": 12014, + "parfait": 12015, + "cynical": 12016, + "havnt": 12017, + "btch": 12018, + "invaluable": 12019, + "monde": 12020, + "messaged": 12021, + "drummer": 12022, + "fwy": 12023, + "another's": 12024, + "dt": 12025, + "competing": 12026, + "heals": 12027, + "waxed": 12028, + "censor": 12029, + "witchu": 12030, + "km": 12031, + "aussie": 12032, + "ambition": 12033, + "cardiff": 12034, + "whet": 12035, + "pulp": 12036, + "shortage": 12037, + "thirteen": 12038, + "highkey": 12039, + "guides": 12040, + "earring": 12041, + "lols": 12042, + "sap": 12043, + "moreover": 12044, + "maher": 12045, + "alors": 12046, + "stool": 12047, + "curb": 12048, + "bosses": 12049, + "yw": 12050, + "disguise": 12051, + "criticized": 12052, + "ut": 12053, + "yesterday's": 12054, + "quel": 12055, + "freezes": 12056, + "pug": 12057, + "dik": 12058, + "mille": 12059, + "stalin": 12060, + "levi": 12061, + "bail": 12062, + "hiv": 12063, + "misunderstood": 12064, + "tackle": 12065, + "harlem": 12066, + "bunnies": 12067, + "lynn": 12068, + "sippin": 12069, + "yessir": 12070, + "lama": 12071, + "banco": 12072, + "otr": 12073, + "mendes": 12074, + "imperfections": 12075, + "dominicans": 12076, + "kitchenaid": 12077, + "gamer": 12078, + "bred": 12079, + "wud": 12080, + "ak": 12081, + "aisle": 12082, + "chunk": 12083, + "kar": 12084, + "gifs": 12085, + "marxist": 12086, + "sucky": 12087, + "fatass": 12088, + "watson": 12089, + "dyin": 12090, + "nora": 12091, + "mandy": 12092, + "hangin": 12093, + "interviewed": 12094, + "ingles": 12095, + "reel": 12096, + "quitting": 12097, + "hablar": 12098, + "wired": 12099, + "communism": 12100, + "warehouse": 12101, + "stumbled": 12102, + "charms": 12103, + "spoilt": 12104, + "alotta": 12105, + "addicts": 12106, + "pilots": 12107, + "shutting": 12108, + "tbf": 12109, + "sakit": 12110, + "faked": 12111, + "rambling": 12112, + "jets": 12113, + "dealers": 12114, + "sparkle": 12115, + "toyota": 12116, + "syracuse": 12117, + "balotelli": 12118, + "dor": 12119, + "belkin": 12120, + "#loveher": 12121, + "nano": 12122, + "subjected": 12123, + "indication": 12124, + "neglected": 12125, + "featuring": 12126, + "beautifull": 12127, + "legalized": 12128, + "vitamins": 12129, + "belgium": 12130, + "bryce": 12131, + "lloyd": 12132, + "conception": 12133, + "pela": 12134, + "futures": 12135, + "xox": 12136, + "hunters": 12137, + "holland": 12138, + "ikea": 12139, + "eclectic": 12140, + "liberalism": 12141, + "elephants": 12142, + "aburro": 12143, + "brilliance": 12144, + "faker": 12145, + "obsolete": 12146, + "dynamite": 12147, + "murphy": 12148, + "quizzes": 12149, + "looser": 12150, + "amazingg": 12151, + "emm": 12152, + "litt": 12153, + "ure": 12154, + "ode": 12155, + "daay": 12156, + "disjointed": 12157, + "xanax": 12158, + "mata": 12159, + "shouts": 12160, + "doy": 12161, + "studios": 12162, + "obvs": 12163, + ":\")": 12164, + "bicycle": 12165, + "cramped": 12166, + "stall": 12167, + "robe": 12168, + "minorities": 12169, + "nole": 12170, + "rewarded": 12171, + "sibling": 12172, + "demands": 12173, + "grim": 12174, + "exaggeration": 12175, + "edi": 12176, + "vivid": 12177, + "apologizing": 12178, + "blondes": 12179, + "manly": 12180, + "oakland": 12181, + "##": 12182, + "pbs": 12183, + "motivating": 12184, + "violin": 12185, + "slutty": 12186, + "sanity": 12187, + "condo": 12188, + "stunting": 12189, + "assessment": 12190, + "signals": 12191, + "avoided": 12192, + "bounty": 12193, + "glued": 12194, + "harrison": 12195, + "affected": 12196, + "wrapping": 12197, + "cooperate": 12198, + "sinclair": 12199, + "warmth": 12200, + "armies": 12201, + "bling": 12202, + "pagi": 12203, + "sausages": 12204, + "jammed": 12205, + "sharpener": 12206, + "bathtub": 12207, + "npr": 12208, + "indy": 12209, + "sleek": 12210, + "willingness": 12211, + "chino": 12212, + "fatter": 12213, + "dgaf": 12214, + "vanity": 12215, + "fk": 12216, + "agh": 12217, + "berlin": 12218, + "comparable": 12219, + "sewer": 12220, + "#justsaying": 12221, + "mya": 12222, + "discounts": 12223, + "reflects": 12224, + "yards": 12225, + "visto": 12226, + "niya": 12227, + "giraffe": 12228, + "nye": 12229, + "lindos": 12230, + "subscribe": 12231, + "inane": 12232, + "toda": 12233, + "condescending": 12234, + "matrix": 12235, + "experiencing": 12236, + "encounter": 12237, + "ata": 12238, + "classless": 12239, + "whispers": 12240, + "sinatra": 12241, + "woody": 12242, + "spanking": 12243, + "networking": 12244, + "linux": 12245, + "outdoors": 12246, + "battling": 12247, + "energetic": 12248, + "dynasty": 12249, + "pseudo": 12250, + "improving": 12251, + "bedding": 12252, + "invites": 12253, + "sobbing": 12254, + "schooling": 12255, + "ceviche": 12256, + "iris": 12257, + "mower": 12258, + "licked": 12259, + "campaigns": 12260, + "graciaas": 12261, + "jaz": 12262, + "lysm": 12263, + "rebels": 12264, + "shill": 12265, + "chorus": 12266, + "herr": 12267, + "baja": 12268, + "izzy": 12269, + "maintaining": 12270, + "rewards": 12271, + "senseless": 12272, + "occasional": 12273, + "homicide": 12274, + "ciroc": 12275, + "sociopath": 12276, + "caddy": 12277, + "getaway": 12278, + "fanny": 12279, + "theology": 12280, + "groovy": 12281, + "autobiography": 12282, + "kilt": 12283, + "gota": 12284, + "edgar": 12285, + "throwbacks": 12286, + "instrument": 12287, + "avii": 12288, + "messi": 12289, + "inconvenience": 12290, + "roids": 12291, + "fye": 12292, + "spilt": 12293, + "gars": 12294, + "ratchets": 12295, + "diabetes": 12296, + "distinct": 12297, + "remixes": 12298, + "isa": 12299, + "chels": 12300, + "bombing": 12301, + "keke": 12302, + "wildin": 12303, + "campaigning": 12304, + "inconvenient": 12305, + "delivering": 12306, + "poder": 12307, + "noble": 12308, + "srry": 12309, + "candidates": 12310, + "fitted": 12311, + "sudan": 12312, + "ch": 12313, + "enamore": 12314, + "jel": 12315, + "inserted": 12316, + "kebab": 12317, + "eliminated": 12318, + "uy": 12319, + "cama": 12320, + "rj": 12321, + "calming": 12322, + "trampoline": 12323, + "cookware": 12324, + "teaser": 12325, + "king's": 12326, + "trades": 12327, + "tgif": 12328, + "bunk": 12329, + "connecting": 12330, + "deport": 12331, + "econ": 12332, + "caf": 12333, + "brow": 12334, + "libertarian": 12335, + "creeper": 12336, + "outer": 12337, + "parasite": 12338, + "granddaughter": 12339, + "rudely": 12340, + "indulgent": 12341, + "sharon": 12342, + "molester": 12343, + "apa": 12344, + "somalia": 12345, + "norm": 12346, + "duet": 12347, + "nene": 12348, + "smacking": 12349, + "beep": 12350, + "godzilla": 12351, + "shan": 12352, + "airline": 12353, + "renting": 12354, + "lahat": 12355, + "vincent": 12356, + "broski": 12357, + "cree": 12358, + "gill": 12359, + "locally": 12360, + "flats": 12361, + "myles": 12362, + "exceeded": 12363, + "bankers": 12364, + "boos": 12365, + "pine": 12366, + "puffy": 12367, + "listeners": 12368, + "octopus": 12369, + "subsequently": 12370, + "troubles": 12371, + "impeccable": 12372, + "arr": 12373, + "gotti": 12374, + "injustice": 12375, + "fkin": 12376, + "dodging": 12377, + "underestimating": 12378, + "bes": 12379, + "debatable": 12380, + "thrift": 12381, + "simpson": 12382, + "slack": 12383, + "tiredd": 12384, + "boil": 12385, + "index": 12386, + "snort": 12387, + "cleans": 12388, + "mica": 12389, + "goodd": 12390, + "dissappointed": 12391, + "mats": 12392, + "orchestra": 12393, + "jamba": 12394, + "realizes": 12395, + "naming": 12396, + "tbt": 12397, + "cushion": 12398, + "cannon": 12399, + "scalp": 12400, + "tristan": 12401, + "wand": 12402, + "gs": 12403, + "royce": 12404, + "acha": 12405, + "hibachi": 12406, + "intel": 12407, + "drafted": 12408, + "puzzled": 12409, + "whit": 12410, + "murderous": 12411, + "swea": 12412, + "granola": 12413, + "patterson": 12414, + "bleh": 12415, + "banda": 12416, + "paychecks": 12417, + "billionaire": 12418, + "queue": 12419, + "waisted": 12420, + "hiya": 12421, + "sprayed": 12422, + "shouldve": 12423, + "unreasonable": 12424, + "mds": 12425, + "kidnapped": 12426, + "equals": 12427, + "lenses": 12428, + "constitutional": 12429, + "paramore": 12430, + "epson": 12431, + "facetimed": 12432, + "stooge": 12433, + "suprise": 12434, + "frat": 12435, + "#ohwell": 12436, + "encourages": 12437, + "whateva": 12438, + "figuring": 12439, + "#goals": 12440, + "offs": 12441, + "disorganized": 12442, + "vulgar": 12443, + "cp": 12444, + "hypocrisy": 12445, + "sensational": 12446, + "visible": 12447, + "catherine": 12448, + "loot": 12449, + "shells": 12450, + "thanku": 12451, + "drogba": 12452, + "cous": 12453, + "carmel": 12454, + "vaseline": 12455, + "tw": 12456, + "danke": 12457, + "waayy": 12458, + "recruit": 12459, + "celine": 12460, + "munch": 12461, + "tiara": 12462, + "hitch": 12463, + "lauryn": 12464, + "strep": 12465, + "#facts": 12466, + "mediterranean": 12467, + "tango": 12468, + "ameen": 12469, + "sam's": 12470, + "toshiba": 12471, + "putain": 12472, + "nigerian": 12473, + "surfing": 12474, + "lindsay": 12475, + "sen": 12476, + "growling": 12477, + "exs": 12478, + "sacked": 12479, + "slob": 12480, + "kanina": 12481, + "bakit": 12482, + "pecan": 12483, + "encyclopedia": 12484, + "showcase": 12485, + "jello": 12486, + "witchcraft": 12487, + "buzzin": 12488, + "oppose": 12489, + "cox": 12490, + "importa": 12491, + "rom": 12492, + "carlson": 12493, + "sry": 12494, + "simplified": 12495, + "TM": 12496, + "sams": 12497, + "remover": 12498, + "tripod": 12499, + "martha": 12500, + "steep": 12501, + "gracious": 12502, + "anticipated": 12503, + "writings": 12504, + "apocalypse": 12505, + "abi": 12506, + "budgets": 12507, + "medias": 12508, + "#follow": 12509, + "overcome": 12510, + "wounded": 12511, + "thas": 12512, + "immaculate": 12513, + "errbody": 12514, + "gala": 12515, + "pits": 12516, + "pension": 12517, + "iffy": 12518, + "ducking": 12519, + "achieved": 12520, + "sw": 12521, + "fading": 12522, + "rewarding": 12523, + "sections": 12524, + "nicky": 12525, + "sunburnt": 12526, + "usda": 12527, + "comped": 12528, + "dnc": 12529, + "tidy": 12530, + "recovering": 12531, + "giggles": 12532, + "wok": 12533, + "visitors": 12534, + "verbally": 12535, + "oddly": 12536, + "bribes": 12537, + "littlest": 12538, + "polluted": 12539, + "ahaa": 12540, + "compelled": 12541, + "brewer": 12542, + "paws": 12543, + "ruled": 12544, + "louise": 12545, + "detector": 12546, + "belts": 12547, + "duude": 12548, + "bethany": 12549, + "excellant": 12550, + "schedules": 12551, + "sheen": 12552, + "dices": 12553, + "wellington": 12554, + "schoolers": 12555, + "bruuh": 12556, + "ugg": 12557, + "norton": 12558, + "database": 12559, + "malone": 12560, + "forma": 12561, + "leche": 12562, + "rig": 12563, + "prius": 12564, + "pedometer": 12565, + "poorest": 12566, + "phucking": 12567, + "attachment": 12568, + "suzy": 12569, + "ashes": 12570, + "proceed": 12571, + "momentos": 12572, + "tardes": 12573, + "enlightened": 12574, + "flynn": 12575, + "rediculous": 12576, + "crazies": 12577, + "hijack": 12578, + "kale": 12579, + "turf": 12580, + "tense": 12581, + "revisit": 12582, + "arabs": 12583, + "ironing": 12584, + "i'mma": 12585, + "indoors": 12586, + "cuba": 12587, + "#not": 12588, + "crooks": 12589, + "coleslaw": 12590, + "inadvertently": 12591, + "fortunate": 12592, + "bbm": 12593, + "dwell": 12594, + "autotune": 12595, + "youtuber": 12596, + "input": 12597, + "consuming": 12598, + "crumbs": 12599, + "nossa": 12600, + "couldn": 12601, + "sux": 12602, + "chowder": 12603, + "nickel": 12604, + "beso": 12605, + "bernie": 12606, + "amateurish": 12607, + "praised": 12608, + "koch": 12609, + "cargo": 12610, + "cbs": 12611, + "humidity": 12612, + "transition": 12613, + "urgent": 12614, + "#awkward": 12615, + "dumbasses": 12616, + "kors": 12617, + "toner": 12618, + "underestimated": 12619, + "fisher": 12620, + "firms": 12621, + "lavish": 12622, + "prosperity": 12623, + "beards": 12624, + "rica": 12625, + "threatening": 12626, + ";d": 12627, + "zay": 12628, + "olympus": 12629, + "euros": 12630, + "toms": 12631, + "surplus": 12632, + "nanaman": 12633, + "evidently": 12634, + "dependable": 12635, + "cl": 12636, + "chalk": 12637, + "cramping": 12638, + "institution": 12639, + "crackin": 12640, + "prejudice": 12641, + "darius": 12642, + "tablets": 12643, + "transformers": 12644, + "dreamy": 12645, + "macs": 12646, + "harry's": 12647, + "barney": 12648, + "bea": 12649, + "injection": 12650, + "snatched": 12651, + "kiki": 12652, + "kirk": 12653, + "gavin": 12654, + "herbs": 12655, + "workmanship": 12656, + "hausa": 12657, + "cheryl": 12658, + "stresses": 12659, + "trumps": 12660, + "clerk": 12661, + "tss": 12662, + "wasabi": 12663, + "belittling": 12664, + "kiara": 12665, + "drought": 12666, + "fades": 12667, + "cleansing": 12668, + "fica": 12669, + "fictional": 12670, + "shirley": 12671, + "minnie": 12672, + "ami": 12673, + "leh": 12674, + "#thankful": 12675, + "seria": 12676, + "alphabet": 12677, + "lastly": 12678, + "joys": 12679, + "layed": 12680, + "pft": 12681, + "palestinians": 12682, + "misrepresented": 12683, + "trillions": 12684, + "buttercup": 12685, + "remedy": 12686, + "workbook": 12687, + "amazes": 12688, + "bahamas": 12689, + "personable": 12690, + "gabi": 12691, + "grove": 12692, + "problematic": 12693, + "nn": 12694, + "arsed": 12695, + "amas": 12696, + "captions": 12697, + "dl": 12698, + "ashit": 12699, + "passe": 12700, + "wedges": 12701, + "unto": 12702, + "fvck": 12703, + "redemption": 12704, + "parallel": 12705, + "cardinal": 12706, + "settling": 12707, + "gallons": 12708, + "eliminate": 12709, + "heartfelt": 12710, + "obrigadaa": 12711, + "kb": 12712, + "couches": 12713, + "versus": 12714, + "gibberish": 12715, + "warp": 12716, + "deadline": 12717, + "nahi": 12718, + "carries": 12719, + "sont": 12720, + "instrumental": 12721, + "historic": 12722, + "felicidad": 12723, + "tqt": 12724, + "anda": 12725, + "tatt": 12726, + "weh": 12727, + "ivan": 12728, + "staples": 12729, + "admits": 12730, + "suprised": 12731, + "uproar": 12732, + "nbc": 12733, + "caitlin": 12734, + "impractical": 12735, + "bouncing": 12736, + "warmed": 12737, + "inclined": 12738, + "jorge": 12739, + "molest": 12740, + "edm": 12741, + "inactive": 12742, + "comforter": 12743, + "buttery": 12744, + "gutless": 12745, + "maturity": 12746, + "habla": 12747, + "messin": 12748, + "youx": 12749, + "approximately": 12750, + "gli": 12751, + "kels": 12752, + "thompson": 12753, + "observed": 12754, + "tiller": 12755, + "incapable": 12756, + "friday's": 12757, + "tammy": 12758, + "divisive": 12759, + "pap": 12760, + "betrayed": 12761, + "termites": 12762, + "representation": 12763, + "royalty": 12764, + "factual": 12765, + "contributor": 12766, + "conservatism": 12767, + "hilary": 12768, + "tener": 12769, + "kiwi": 12770, + "revised": 12771, + "lmaaoo": 12772, + "injuries": 12773, + "tramp": 12774, + "aiko": 12775, + "medicare": 12776, + "oovoo": 12777, + "timmy": 12778, + "dock": 12779, + "bosch": 12780, + "humidifier": 12781, + "associates": 12782, + "batshit": 12783, + "approval": 12784, + "sued": 12785, + "ingredient": 12786, + "appointed": 12787, + "prisoners": 12788, + "philosophies": 12789, + "gyal": 12790, + "gymnastics": 12791, + "flooded": 12792, + "dessa": 12793, + "pedo": 12794, + "sikh": 12795, + "autograph": 12796, + "clocked": 12797, + "mahal": 12798, + "shouted": 12799, + "culpa": 12800, + "commerce": 12801, + "precis": 12802, + "simm": 12803, + "competitors": 12804, + "usable": 12805, + "tarts": 12806, + "buggin": 12807, + "corned": 12808, + "benz": 12809, + "shield": 12810, + "jalapeno": 12811, + "sid": 12812, + "functioning": 12813, + "jordans": 12814, + "pear": 12815, + "tenias": 12816, + "ans": 12817, + "pastel": 12818, + "witnesses": 12819, + "gigi": 12820, + "gorilla": 12821, + "attire": 12822, + "rockets": 12823, + "conduct": 12824, + "wisely": 12825, + "spouting": 12826, + "persecution": 12827, + "sino": 12828, + "rat's": 12829, + "anita": 12830, + "mandate": 12831, + "goverment": 12832, + "hopped": 12833, + "prescribed": 12834, + "peacefully": 12835, + "alittle": 12836, + "goof": 12837, + "leonardo": 12838, + "walgreens": 12839, + "jajajaj": 12840, + "wesley": 12841, + "cain": 12842, + "pavement": 12843, + "cappuccino": 12844, + "christine": 12845, + "imposed": 12846, + "sixteen": 12847, + "reese": 12848, + "scorpio": 12849, + "realising": 12850, + "declared": 12851, + "splitting": 12852, + "boy's": 12853, + "bulk": 12854, + "guardian": 12855, + "dilemma": 12856, + "talmbout": 12857, + "homicidal": 12858, + "vin": 12859, + "boiler": 12860, + "vermin": 12861, + "you'r": 12862, + "takers": 12863, + "smartest": 12864, + "lub": 12865, + "eyeball": 12866, + "gumbo": 12867, + "mignonne": 12868, + "risa": 12869, + "speculations": 12870, + "alli": 12871, + "bec": 12872, + "qb": 12873, + "goodnightt": 12874, + "slippin": 12875, + "meddling": 12876, + "guapo": 12877, + "migraines": 12878, + "persians": 12879, + "panini": 12880, + "voz": 12881, + "tesco": 12882, + "profoundly": 12883, + "goldfish": 12884, + "anchor": 12885, + "muddy": 12886, + "quietly": 12887, + "sellout": 12888, + ";p": 12889, + "surreal": 12890, + "bms": 12891, + "affluent": 12892, + "gameplay": 12893, + "accomplishment": 12894, + "john's": 12895, + "werent": 12896, + "lingerie": 12897, + "knitting": 12898, + "previews": 12899, + "hacks": 12900, + "jenkins": 12901, + "devoid": 12902, + "hdm": 12903, + "jcpenney": 12904, + "nightclub": 12905, + "complains": 12906, + "bach": 12907, + "niche": 12908, + "selfless": 12909, + "doggie": 12910, + "bentley": 12911, + "gov": 12912, + "simplicity": 12913, + "fundraiser": 12914, + "dimwit": 12915, + "seared": 12916, + "o.k.": 12917, + "earbuds": 12918, + "oriented": 12919, + "happybirthday": 12920, + "isolated": 12921, + "stat": 12922, + "debates": 12923, + "newborn": 12924, + "relentless": 12925, + "feo": 12926, + "waitstaff": 12927, + "dog's": 12928, + "ows": 12929, + "payne": 12930, + "captures": 12931, + "bronca": 12932, + "whereas": 12933, + "psychopath": 12934, + "lve": 12935, + "niners": 12936, + "customs": 12937, + "finishes": 12938, + "freddy": 12939, + "indicate": 12940, + "birthplace": 12941, + "dar": 12942, + "periscope": 12943, + "garganta": 12944, + "hunk": 12945, + "gws": 12946, + "tourney": 12947, + "revelation": 12948, + "overturned": 12949, + "brass": 12950, + "peu": 12951, + "drenched": 12952, + "tails": 12953, + "shuts": 12954, + "smithereens": 12955, + "zama": 12956, + "coleman": 12957, + "mei": 12958, + "transmitter": 12959, + "peppermint": 12960, + "sickk": 12961, + "blvd": 12962, + "what'd": 12963, + "sponsor": 12964, + "mechanical": 12965, + "#4": 12966, + "dieing": 12967, + "rca": 12968, + "geeks": 12969, + "yacht": 12970, + "param": 12971, + "mugs": 12972, + "triangle": 12973, + "froyo": 12974, + "definetly": 12975, + "amnesty": 12976, + "brunette": 12977, + "telephone": 12978, + "doughnut": 12979, + "chronicles": 12980, + "rouge": 12981, + "novio": 12982, + "pwede": 12983, + "beauties": 12984, + "frost": 12985, + "unconditionally": 12986, + "mortgage": 12987, + "trippen": 12988, + "insidious": 12989, + "tricked": 12990, + "pda": 12991, + "broom": 12992, + "psp": 12993, + "pursuit": 12994, + "rebuild": 12995, + "dependent": 12996, + "hollister": 12997, + "coffeemaker": 12998, + "palmeiras": 12999, + "ronaldo": 13000, + "statutory": 13001, + "melodic": 13002, + "bluray": 13003, + "symptoms": 13004, + "lemons": 13005, + "mesmerizing": 13006, + "contributors": 13007, + "sucha": 13008, + "mains": 13009, + "versace": 13010, + "oval": 13011, + "swat": 13012, + "nico": 13013, + "waitt": 13014, + "nf": 13015, + "shelley": 13016, + "alway": 13017, + "advertise": 13018, + "fufu": 13019, + "blisters": 13020, + "primaries": 13021, + "merde": 13022, + "sympathetic": 13023, + "squirrels": 13024, + "steamer": 13025, + "frying": 13026, + "#family": 13027, + "voucher": 13028, + "collector's": 13029, + "blaring": 13030, + "immune": 13031, + "lilttle": 13032, + "portrayal": 13033, + "sealed": 13034, + "abel": 13035, + "chores": 13036, + "shum": 13037, + "buffy": 13038, + "boneless": 13039, + "fetty": 13040, + "drooling": 13041, + "gurll": 13042, + "pissy": 13043, + "warms": 13044, + "hamas": 13045, + "evasion": 13046, + "amenities": 13047, + "sighs": 13048, + "swan": 13049, + "misdemeanor": 13050, + "explanations": 13051, + "corp": 13052, + "procrastinate": 13053, + "tiro": 13054, + "flaky": 13055, + "gentil": 13056, + "tienes": 13057, + "efron": 13058, + "mathematical": 13059, + "bestt": 13060, + "chewed": 13061, + "touring": 13062, + "commentators": 13063, + "hago": 13064, + "kaitlyn": 13065, + "papas": 13066, + "body's": 13067, + "hospitality": 13068, + "aaw": 13069, + "modem": 13070, + "builder": 13071, + "musty": 13072, + "kommer": 13073, + "ignoramus": 13074, + "marshmallows": 13075, + "dispenser": 13076, + "hambre": 13077, + "om": 13078, + "#off": 13079, + "personalities": 13080, + "otro": 13081, + "iranians": 13082, + "roadhouse": 13083, + "physician": 13084, + "bak": 13085, + "hotdog": 13086, + "grudges": 13087, + "exploring": 13088, + "bot": 13089, + "giver": 13090, + "outlook": 13091, + "toad": 13092, + "knackered": 13093, + "hallo": 13094, + "douch": 13095, + "rover": 13096, + "slaps": 13097, + "irked": 13098, + "limo": 13099, + "ku": 13100, + "daft": 13101, + "#proud": 13102, + "interaction": 13103, + "knowin": 13104, + "lawwd": 13105, + "trace": 13106, + "encouragement": 13107, + "technicals": 13108, + "kahit": 13109, + "dej": 13110, + "transformation": 13111, + "normani": 13112, + "kerry": 13113, + "reese's": 13114, + "i's": 13115, + "edhe": 13116, + "tvd": 13117, + "itd": 13118, + "madam": 13119, + "harold": 13120, + "tile": 13121, + "day's": 13122, + "manzo": 13123, + "strait": 13124, + "golfer": 13125, + "sprinkles": 13126, + "koo": 13127, + "travesty": 13128, + "doj": 13129, + "palmer": 13130, + "tyrants": 13131, + "descriptions": 13132, + "favors": 13133, + "lingering": 13134, + "eligible": 13135, + "muted": 13136, + "implying": 13137, + "smoothly": 13138, + "electrical": 13139, + "#oomfs": 13140, + "jenn": 13141, + "noel": 13142, + "chopper": 13143, + "hanna": 13144, + "subbing": 13145, + "masterful": 13146, + "producer": 13147, + "fulani": 13148, + "diaa": 13149, + "austerity": 13150, + "donor": 13151, + "engineer": 13152, + "toll": 13153, + "throbbing": 13154, + "#yay": 13155, + "technician": 13156, + "cleanliness": 13157, + "msm": 13158, + "clams": 13159, + "gloss": 13160, + "sparkling": 13161, + "unga": 13162, + "repeal": 13163, + "regina": 13164, + "wu": 13165, + "hea": 13166, + "ballotelli": 13167, + "statute": 13168, + "brent": 13169, + "pensions": 13170, + "assigned": 13171, + "maliciously": 13172, + "hoops": 13173, + "conjuring": 13174, + "fukuoka": 13175, + "binder": 13176, + "peeping": 13177, + "paw": 13178, + "crook": 13179, + "empathy": 13180, + "disgruntled": 13181, + "branches": 13182, + "sneering": 13183, + "inspires": 13184, + "readings": 13185, + "junto": 13186, + "trent": 13187, + "vow": 13188, + "alinsky": 13189, + "cuttin": 13190, + "gussa": 13191, + "coasters": 13192, + "goodevening": 13193, + "wiff": 13194, + "lobbyist": 13195, + "pleas": 13196, + "samuel": 13197, + "tmw": 13198, + "cheesesteak": 13199, + "helado": 13200, + "stocking": 13201, + "cuenta": 13202, + "rashi": 13203, + "#ouch": 13204, + "veal": 13205, + "aweful": 13206, + "vetted": 13207, + "bowie": 13208, + "buffs": 13209, + "tracking": 13210, + "repub": 13211, + "elmo": 13212, + "pelosi": 13213, + "tam": 13214, + "daniels": 13215, + "caller": 13216, + "zito": 13217, + "snowman": 13218, + "widgets": 13219, + "anelka": 13220, + "symphony": 13221, + "column": 13222, + "googled": 13223, + "bxtch": 13224, + "sabotage": 13225, + "tumbling": 13226, + "legislative": 13227, + "interfere": 13228, + "interface": 13229, + "offline": 13230, + "sporting": 13231, + "manufacturing": 13232, + "globalist": 13233, + "deletes": 13234, + "snuggled": 13235, + "everlasting": 13236, + "turnin": 13237, + "congratulation": 13238, + "roles": 13239, + "hillbilly": 13240, + "korn": 13241, + "anyday": 13242, + "shortfall": 13243, + "parroting": 13244, + "tiniest": 13245, + "maddow": 13246, + "anarchy": 13247, + "districts": 13248, + "reg": 13249, + "impressions": 13250, + "humid": 13251, + "idec": 13252, + "kara": 13253, + "#mcm": 13254, + "nobel": 13255, + "defame": 13256, + "imagining": 13257, + "disks": 13258, + "fireball": 13259, + "arsehole": 13260, + "kaka": 13261, + "patricia": 13262, + "haired": 13263, + "penalties": 13264, + "peru": 13265, + "wooh": 13266, + "minion": 13267, + "pastrami": 13268, + "cosas": 13269, + "qu'il": 13270, + "breh": 13271, + "ringtone": 13272, + "rebellious": 13273, + "cuzz": 13274, + "cottage": 13275, + "commence": 13276, + "boutique": 13277, + "weren": 13278, + "fortunately": 13279, + "proposals": 13280, + "blended": 13281, + "luther": 13282, + "evolve": 13283, + "personhood": 13284, + "estado": 13285, + "flavour": 13286, + "ecdc": 13287, + "vcr": 13288, + "thor": 13289, + "linkin": 13290, + "mirage": 13291, + "mujh": 13292, + "boxer": 13293, + "chainz": 13294, + "mehh": 13295, + "obummer": 13296, + "mina": 13297, + "soml": 13298, + "congresswoman": 13299, + "rting": 13300, + "spiderman": 13301, + "salga": 13302, + "redistribution": 13303, + "hahahahahahah": 13304, + "nursery": 13305, + "mae": 13306, + "katherine": 13307, + "constitutionally": 13308, + "wheelchair": 13309, + "casio": 13310, + "pumps": 13311, + "hc": 13312, + "rephrase": 13313, + "fleet": 13314, + "xfd": 13315, + "mandating": 13316, + "zee": 13317, + "chatted": 13318, + "toro": 13319, + "geordie": 13320, + "clinical": 13321, + "mechanics": 13322, + "shet": 13323, + "poking": 13324, + "shania": 13325, + "lend": 13326, + "outline": 13327, + "adulthood": 13328, + "ebf": 13329, + "shenanigans": 13330, + "arghh": 13331, + "aja": 13332, + "jungwirth": 13333, + "goto": 13334, + "diggin": 13335, + "khung": 13336, + "xef": 13337, + "lizard": 13338, + "operate": 13339, + "dio": 13340, + "extramarital": 13341, + "nigiri": 13342, + "teabaggers": 13343, + "runaway": 13344, + "yepp": 13345, + "celona": 13346, + "verka": 13347, + "midea": 13348, + "dvr": 13349, + "wiggle": 13350, + "bollen": 13351, + "laraza": 13352, + "eadt": 13353, + "xenomorphs": 13354, + "lizzie": 13355, + "zaxbys": 13356, + "edfi": 13357, + "bouncers": 13358, + "odumbo": 13359, + "gobie": 13360, + "patriots": 13361, + "siegelman": 13362, + "workshop": 13363, + "hmp": 13364, + "stayin": 13365, + "fuera": 13366, + "kee": 13367, + "toya": 13368, + "dmed": 13369, + "draining": 13370, + "housewives": 13371, + "toots": 13372, + "sidewalk": 13373, + "#no": 13374, + "specify": 13375, + "beverly": 13376, + "avg": 13377, + "fukn": 13378, + "manda": 13379, + "barbershop": 13380, + "transport": 13381, + "piling": 13382, + "nevada": 13383, + "downn": 13384, + "unborn": 13385, + "tyson": 13386, + "hablo": 13387, + "storytelling": 13388, + ";(": 13389, + "deplorable": 13390, + "disrespected": 13391, + "cancun": 13392, + "alliance": 13393, + "hos": 13394, + "capturing": 13395, + "bru": 13396, + "geeking": 13397, + "distasteful": 13398, + "dolphin": 13399, + "questioned": 13400, + "takeaway": 13401, + "marcos": 13402, + "unlocked": 13403, + "unconditional": 13404, + "assortment": 13405, + "lopez": 13406, + "depp": 13407, + "brill": 13408, + "sigo": 13409, + "munchkin": 13410, + "sideways": 13411, + "rv": 13412, + "neverr": 13413, + "fremont": 13414, + "morris": 13415, + "isle": 13416, + "frontin": 13417, + "slag": 13418, + "zucchini": 13419, + "twas": 13420, + "foolishness": 13421, + "vacay": 13422, + "ste": 13423, + "geo": 13424, + "makers": 13425, + "preferences": 13426, + "dopey": 13427, + "matched": 13428, + "yaself": 13429, + "cutiee": 13430, + "rednecks": 13431, + "graves": 13432, + "flatter": 13433, + "stacks": 13434, + "hahahahahahahahaha": 13435, + "teller": 13436, + "deceased": 13437, + "#sorry": 13438, + "ri": 13439, + "rye": 13440, + "mist": 13441, + "#bye": 13442, + "dogg": 13443, + "julio": 13444, + "riight": 13445, + "underwhelming": 13446, + "comida": 13447, + "backstreet": 13448, + "soviet": 13449, + "kendra": 13450, + "veer": 13451, + "preventing": 13452, + "artichoke": 13453, + "selamat": 13454, + "counselor": 13455, + "enormous": 13456, + "rato": 13457, + "capitalism": 13458, + "servant": 13459, + "excite": 13460, + "invention": 13461, + "shrinking": 13462, + "frames": 13463, + "smdh": 13464, + "agg": 13465, + "bitty": 13466, + "carafe": 13467, + "refreshed": 13468, + "floats": 13469, + "snuck": 13470, + "performers": 13471, + "encantas": 13472, + "shoo": 13473, + "firmly": 13474, + "brighton": 13475, + "prosper": 13476, + "adoro": 13477, + "rendition": 13478, + "maleficent": 13479, + "emmanuel": 13480, + "tellement": 13481, + "aries": 13482, + "letterman": 13483, + "gums": 13484, + "brava": 13485, + "vaca": 13486, + "cheats": 13487, + "sunshines": 13488, + "gothic": 13489, + "fireplace": 13490, + "#amen": 13491, + "philips": 13492, + "exploded": 13493, + "downer": 13494, + "noticeable": 13495, + "eden": 13496, + "blogger": 13497, + "lurkin": 13498, + "uninformed": 13499, + "babby": 13500, + "internal": 13501, + "funnel": 13502, + "blower": 13503, + "dinosaurs": 13504, + "wires": 13505, + "leavin": 13506, + "touche": 13507, + "wot": 13508, + "quieres": 13509, + "iya": 13510, + "cavs": 13511, + "mahone": 13512, + "lady's": 13513, + "ensure": 13514, + "#soexcited": 13515, + "nicks": 13516, + "chap": 13517, + "sinus": 13518, + "rp": 13519, + "hormones": 13520, + "sic": 13521, + "disconnected": 13522, + "carlo": 13523, + "jah": 13524, + "hesitation": 13525, + "hershey": 13526, + "cosa": 13527, + "retain": 13528, + "ez": 13529, + "kaylee": 13530, + "drowned": 13531, + "frightening": 13532, + "haunt": 13533, + "milf": 13534, + "swipe": 13535, + "ruben": 13536, + "detox": 13537, + "karla": 13538, + "doyle": 13539, + "contagious": 13540, + "rivers": 13541, + "shaun": 13542, + "contigo": 13543, + "unfinished": 13544, + "muss": 13545, + "stunk": 13546, + "dobranoc": 13547, + "napkin": 13548, + "mare": 13549, + "trials": 13550, + "selves": 13551, + "malo": 13552, + "botox": 13553, + "sandisk": 13554, + "sow": 13555, + "maury": 13556, + "tk": 13557, + "beginner's": 13558, + "homesick": 13559, + "meghan": 13560, + "imysm": 13561, + "eloquent": 13562, + "cools": 13563, + "camcorder": 13564, + "herman": 13565, + "#bestfriend": 13566, + "scarred": 13567, + "layin": 13568, + "frightened": 13569, + "cocks": 13570, + "gratuity": 13571, + "publishing": 13572, + "bends": 13573, + "doh": 13574, + "dues": 13575, + "nigguh": 13576, + "powered": 13577, + "bod": 13578, + "elena": 13579, + "hve": 13580, + "cesar": 13581, + "instruments": 13582, + "unorganized": 13583, + "namin": 13584, + "bawling": 13585, + "specs": 13586, + "lovato": 13587, + "zo": 13588, + "dominoes": 13589, + "dynamics": 13590, + "necessity": 13591, + "lecturing": 13592, + "stockton": 13593, + "ayoko": 13594, + "comfortably": 13595, + "detect": 13596, + ";))": 13597, + "cuute": 13598, + "iba": 13599, + "shockingly": 13600, + "florence": 13601, + "palazzo": 13602, + "polished": 13603, + "leer": 13604, + "eduardo": 13605, + "whitey": 13606, + "muse": 13607, + "copped": 13608, + "bacc": 13609, + "rubbery": 13610, + "drakes": 13611, + "concussion": 13612, + "nie": 13613, + "nawl": 13614, + "wandering": 13615, + "supplied": 13616, + "booed": 13617, + "ringo": 13618, + "thangs": 13619, + "wuv": 13620, + "shakira": 13621, + "microscope": 13622, + "compatibility": 13623, + "yak": 13624, + "trends": 13625, + "rhyme": 13626, + "fax": 13627, + "flea": 13628, + "puto": 13629, + "crate": 13630, + "pase": 13631, + "supermarket": 13632, + "bracelets": 13633, + "deepest": 13634, + "dere": 13635, + "headband": 13636, + "mikes": 13637, + "loudest": 13638, + "pts": 13639, + "uglier": 13640, + "wap": 13641, + "confess": 13642, + "jurassic": 13643, + "greatt": 13644, + "criteria": 13645, + "verge": 13646, + "aubrey": 13647, + "experts": 13648, + "wits": 13649, + "waxing": 13650, + "jerry's": 13651, + "dewalt": 13652, + "sideline": 13653, + "effin": 13654, + "#iloveyou": 13655, + "battered": 13656, + "timex": 13657, + "peasant": 13658, + "todas": 13659, + "jut": 13660, + "meatloaf": 13661, + "unpredictable": 13662, + "voyage": 13663, + "makasih": 13664, + "drifting": 13665, + "idiota": 13666, + "bcos": 13667, + "licks": 13668, + "consideration": 13669, + "violet": 13670, + "robbers": 13671, + "enforcement": 13672, + "headlines": 13673, + "mana": 13674, + "external": 13675, + "pendant": 13676, + "flashing": 13677, + "packets": 13678, + "hbu": 13679, + "overdone": 13680, + "patties": 13681, + "satisfactory": 13682, + "mastering": 13683, + "blt": 13684, + "correcting": 13685, + "flannel": 13686, + "optimistic": 13687, + "unhelpful": 13688, + "originality": 13689, + "angles": 13690, + "uncertain": 13691, + "craziness": 13692, + "alongside": 13693, + "shea": 13694, + "strangely": 13695, + "width": 13696, + "worcester": 13697, + "misspell": 13698, + "fury": 13699, + "duermo": 13700, + "dedicate": 13701, + "stroll": 13702, + "glazed": 13703, + "freddie": 13704, + "aii": 13705, + "consume": 13706, + "creed": 13707, + "capabilities": 13708, + "biz": 13709, + "avril": 13710, + "pitbull": 13711, + "sola": 13712, + "foreigners": 13713, + "bria": 13714, + "halt": 13715, + "cosmopolitan": 13716, + "ambitious": 13717, + "marshmallow": 13718, + "sav": 13719, + "#respect": 13720, + "ths": 13721, + "barca": 13722, + "curfew": 13723, + "bamboo": 13724, + "axe": 13725, + "straightening": 13726, + "recognizes": 13727, + "bruschetta": 13728, + "lodge": 13729, + "stretched": 13730, + "dolla": 13731, + "downright": 13732, + "reliever": 13733, + "essentials": 13734, + "gne": 13735, + "uv": 13736, + "fringe": 13737, + "punches": 13738, + "twitta": 13739, + "inspection": 13740, + "howling": 13741, + "restart": 13742, + "horan": 13743, + "breakup": 13744, + "venice": 13745, + "madly": 13746, + "tasha": 13747, + "raiders": 13748, + "genie": 13749, + "duff": 13750, + "transferred": 13751, + "ite": 13752, + "mcc": 13753, + "diablo": 13754, + "fryer": 13755, + "hotline": 13756, + "sexier": 13757, + "slays": 13758, + "mara": 13759, + "prix": 13760, + "weiner": 13761, + "person's": 13762, + "sunday's": 13763, + "reaally": 13764, + "ppls": 13765, + "nastiest": 13766, + "groupie": 13767, + "deceive": 13768, + "berries": 13769, + "vicious": 13770, + "submitted": 13771, + "dito": 13772, + "pedicures": 13773, + "gambino": 13774, + "helicopter": 13775, + "veg": 13776, + "shortened": 13777, + "goshh": 13778, + "collections": 13779, + "twatch": 13780, + "slicer": 13781, + "michaels": 13782, + "roaches": 13783, + "lump": 13784, + "unbreakable": 13785, + "cassidy": 13786, + "junkie": 13787, + "twerkin": 13788, + "estimate": 13789, + "latina": 13790, + "pacifier": 13791, + "socially": 13792, + "intellect": 13793, + "lighten": 13794, + "graduates": 13795, + "necks": 13796, + "heartburn": 13797, + "sloth": 13798, + "rr": 13799, + "shuffling": 13800, + "virgo": 13801, + "unite": 13802, + "sprained": 13803, + "youtubers": 13804, + "wk": 13805, + "ess": 13806, + "wording": 13807, + "venom": 13808, + "rims": 13809, + "karina": 13810, + "sophomores": 13811, + "continuously": 13812, + "canceling": 13813, + "jaws": 13814, + "suing": 13815, + "ip": 13816, + "emoji's": 13817, + "imissyou": 13818, + "luxor": 13819, + "stripes": 13820, + "smoky": 13821, + "shocker": 13822, + "sayo": 13823, + "shapes": 13824, + "titans": 13825, + "spectacle": 13826, + "lullaby": 13827, + "fluid": 13828, + "deed": 13829, + "garrett": 13830, + "durk": 13831, + "barrett": 13832, + "favv": 13833, + "hashtags": 13834, + "philadelphia": 13835, + "pursuing": 13836, + "timbs": 13837, + "traded": 13838, + "dolly": 13839, + "atlantic": 13840, + "sabi": 13841, + "tp": 13842, + "diane": 13843, + "onee": 13844, + "frosted": 13845, + "identical": 13846, + "g'night": 13847, + "plies": 13848, + "melon": 13849, + "otto": 13850, + "charleston": 13851, + "mayne": 13852, + "taurus": 13853, + "tq": 13854, + "weakk": 13855, + "restless": 13856, + "epl": 13857, + "weeds": 13858, + "partynextdoor": 13859, + "auburn": 13860, + "liable": 13861, + "greats": 13862, + "morrow": 13863, + "theatrical": 13864, + "bolo": 13865, + "popper": 13866, + "barnes": 13867, + "crisps": 13868, + "demasiado": 13869, + "cubes": 13870, + "dike": 13871, + "bristol": 13872, + "pitches": 13873, + "chef's": 13874, + "segui": 13875, + "unthinkable": 13876, + "acabo": 13877, + "buster": 13878, + "hais": 13879, + "cynthia": 13880, + "deformed": 13881, + "slump": 13882, + "dustin": 13883, + "country's": 13884, + "oki": 13885, + "semen": 13886, + "bolt": 13887, + "tame": 13888, + "forte": 13889, + "hank": 13890, + "atta": 13891, + "chapel": 13892, + "sprung": 13893, + "articulate": 13894, + "kian": 13895, + "sparkly": 13896, + "#5": 13897, + "shuffler": 13898, + "spilling": 13899, + "griffith": 13900, + "responds": 13901, + "leonard": 13902, + "scholarly": 13903, + "foe": 13904, + "definetely": 13905, + "genes": 13906, + "naomi": 13907, + "outraged": 13908, + "maga": 13909, + "overhyped": 13910, + "slush": 13911, + "hizo": 13912, + "isis": 13913, + "pq": 13914, + ":*{": 13915, + "targeted": 13916, + "torta": 13917, + "gonn": 13918, + "bimbo": 13919, + "kj": 13920, + "chuva": 13921, + "peice": 13922, + "pickled": 13923, + "genious": 13924, + "yahh": 13925, + "hatee": 13926, + "princesses": 13927, + "aluminum": 13928, + "mardi": 13929, + "maa": 13930, + "circuit": 13931, + "fone": 13932, + "arkansas": 13933, + "waahh": 13934, + "barista": 13935, + "flooding": 13936, + "lov": 13937, + "oth": 13938, + "hurtin": 13939, + "nuns": 13940, + "aspects": 13941, + "gloomy": 13942, + "sinner": 13943, + "#thanks": 13944, + "tulog": 13945, + "#life": 13946, + "briana": 13947, + "laptops": 13948, + "baka": 13949, + "pov": 13950, + "widely": 13951, + "eyy": 13952, + "scotty": 13953, + "loo": 13954, + "nest": 13955, + "fxck": 13956, + "ayer": 13957, + "melbourne": 13958, + "pistachios": 13959, + "leann": 13960, + "marinated": 13961, + "numbered": 13962, + "hawkins": 13963, + "welcomee": 13964, + "jamal": 13965, + "loathing": 13966, + "keystone": 13967, + "lord's": 13968, + "ultraviolet": 13969, + "carts": 13970, + "photograph": 13971, + "toma": 13972, + "bai": 13973, + "evry": 13974, + "mama's": 13975, + "ocd": 13976, + "squeezed": 13977, + "coldest": 13978, + "gaby": 13979, + "buzzed": 13980, + "vape": 13981, + "pioneer": 13982, + "deceitful": 13983, + "feta": 13984, + "paired": 13985, + "rt'd": 13986, + "seventeen": 13987, + "#lovehim": 13988, + "heeyy": 13989, + "tickled": 13990, + "sodas": 13991, + "clientele": 13992, + "marinara": 13993, + "tapping": 13994, + "luvv": 13995, + "kiddos": 13996, + "babys": 13997, + "positives": 13998, + "irs": 13999, + "veronica": 14000, + "dada": 14001, + "backseat": 14002, + "wil": 14003, + "honoring": 14004, + "betch": 14005, + "rowdy": 14006, + "malibu": 14007, + "desktop": 14008, + "waco": 14009, + "donde": 14010, + "kha": 14011, + "badge": 14012, + "lhh": 14013, + "shud": 14014, + "seminar": 14015, + "pullman": 14016, + "deactivate": 14017, + "cousin's": 14018, + "mislead": 14019, + "nouvelle": 14020, + "tally": 14021, + "#subtweet": 14022, + "drool": 14023, + "leggo": 14024, + "documentation": 14025, + "startin": 14026, + "magazines": 14027, + "hb": 14028, + "norway": 14029, + "lotus": 14030, + "bulldog": 14031, + "jeremiah": 14032, + "dafuq": 14033, + "mens": 14034, + "manages": 14035, + "insignificant": 14036, + "incorrectly": 14037, + "m's": 14038, + "austen": 14039, + "gts": 14040, + "agreement": 14041, + "oitnb": 14042, + "neo": 14043, + "bluegrass": 14044, + "buongiorno": 14045, + "maiden": 14046, + "stuffs": 14047, + "nav": 14048, + "ie": 14049, + "cuddly": 14050, + "awaiting": 14051, + "enchanted": 14052, + "countless": 14053, + "flo": 14054, + "acrylic": 14055, + "#followback": 14056, + "coby": 14057, + "overthink": 14058, + "tarzan": 14059, + "latch": 14060, + "utilize": 14061, + "exacto": 14062, + "puzzles": 14063, + "claudia": 14064, + "develop": 14065, + "pox": 14066, + "marriages": 14067, + "tours": 14068, + "spewing": 14069, + "towns": 14070, + "party's": 14071, + "lifts": 14072, + "wildest": 14073, + "celebrations": 14074, + "rindu": 14075, + "essex": 14076, + "mediocrity": 14077, + "accompanied": 14078, + "disorder": 14079, + "awwhh": 14080, + "straightener": 14081, + "thoughh": 14082, + "goggles": 14083, + "ville": 14084, + "duvet": 14085, + "insider": 14086, + "dimensions": 14087, + "hairspray": 14088, + "acct": 14089, + "sham": 14090, + "blahh": 14091, + "yale": 14092, + "butthole": 14093, + "bridget": 14094, + "artificial": 14095, + "pencils": 14096, + "vain": 14097, + "inconsiderate": 14098, + "gtg": 14099, + "#sick": 14100, + "coats": 14101, + "cougar": 14102, + "singin": 14103, + "apologetic": 14104, + "aburrimiento": 14105, + "unc": 14106, + "nicknames": 14107, + "hayden": 14108, + "improvements": 14109, + "hooking": 14110, + "#obsessed": 14111, + "remy": 14112, + "investing": 14113, + "alfie": 14114, + "janoskians": 14115, + "choc": 14116, + "jacobs": 14117, + "dyingg": 14118, + "kidney": 14119, + "trashing": 14120, + "awwee": 14121, + "brews": 14122, + "salir": 14123, + "mailbox": 14124, + "deadd": 14125, + "catering": 14126, + "lingo": 14127, + "buckle": 14128, + "celebs": 14129, + "sinks": 14130, + "gan": 14131, + "fountains": 14132, + "sinking": 14133, + "touchdowns": 14134, + "hustlers": 14135, + "psychic": 14136, + "spike": 14137, + "credentials": 14138, + "suckin": 14139, + "qatar": 14140, + "kt": 14141, + "almonds": 14142, + "weekdays": 14143, + "straightened": 14144, + "minors": 14145, + "farther": 14146, + "poly": 14147, + "hable": 14148, + "jajajajajajajaja": 14149, + "sahara": 14150, + "trinity": 14151, + "apologise": 14152, + "bale": 14153, + "sobering": 14154, + "exhibit": 14155, + "playground": 14156, + "pisces": 14157, + "dino": 14158, + "horchata": 14159, + "seventh": 14160, + "alec": 14161, + "maann": 14162, + "indispensable": 14163, + "orgasm": 14164, + "aroma": 14165, + "congratulate": 14166, + "blackout": 14167, + "lids": 14168, + "newcomers": 14169, + "oke": 14170, + "sneaker": 14171, + "smothered": 14172, + "existant": 14173, + "labs": 14174, + "cierto": 14175, + "bombed": 14176, + "welsh": 14177, + "marginal": 14178, + "ts": 14179, + "presto": 14180, + "arranged": 14181, + "prettyy": 14182, + "optical": 14183, + "throne": 14184, + "flan": 14185, + "connector": 14186, + "anniv": 14187, + "balsamic": 14188, + "peer": 14189, + "mozart": 14190, + "payback": 14191, + "arrange": 14192, + "quota": 14193, + "thunderstorm": 14194, + "mimosas": 14195, + "enthusiast": 14196, + ";s": 14197, + "predicting": 14198, + "pare": 14199, + "snitchin": 14200, + "roomies": 14201, + "grail": 14202, + "calf": 14203, + "mona": 14204, + "preston": 14205, + "cheerful": 14206, + "bows": 14207, + "libra": 14208, + "snores": 14209, + "tubes": 14210, + "scientist": 14211, + "pullin": 14212, + "vlogs": 14213, + "containers": 14214, + "insulted": 14215, + "elliot": 14216, + "wether": 14217, + "o's": 14218, + "masturbation": 14219, + "gbu": 14220, + "tunnels": 14221, + "photographs": 14222, + "iconic": 14223, + "thinkers": 14224, + "khloe": 14225, + "tita": 14226, + "lipsticks": 14227, + "incidents": 14228, + "deliverance": 14229, + "pathetically": 14230, + "yeaahh": 14231, + "abridged": 14232, + "reign": 14233, + "yeap": 14234, + "historia": 14235, + "advil": 14236, + "centered": 14237, + "persian": 14238, + "programmed": 14239, + "protesting": 14240, + "mames": 14241, + "mentira": 14242, + "femme": 14243, + "tiramisu": 14244, + "provocative": 14245, + "cya": 14246, + "troop": 14247, + "bourbon": 14248, + "folded": 14249, + "absence": 14250, + "haul": 14251, + "awwn": 14252, + "transgender": 14253, + "luz": 14254, + "hobo": 14255, + "tighten": 14256, + "redbull": 14257, + "hahahahahha": 14258, + "obesity": 14259, + "infected": 14260, + "toned": 14261, + "criticizing": 14262, + "nosy": 14263, + "lmaao": 14264, + "sorely": 14265, + "yout": 14266, + "raisin": 14267, + "prevented": 14268, + "niqqa": 14269, + "bloggers": 14270, + "divergent": 14271, + "frosty": 14272, + "structures": 14273, + "onda": 14274, + "podcast": 14275, + "riders": 14276, + "healed": 14277, + "hearty": 14278, + "gens": 14279, + "cleaners": 14280, + "sensation": 14281, + "sailing": 14282, + "compromised": 14283, + "anticipation": 14284, + "wea": 14285, + "maxine": 14286, + "void": 14287, + "inevitable": 14288, + "buddha": 14289, + "cartridges": 14290, + "louisville": 14291, + "llego": 14292, + "latter": 14293, + "#exhausted": 14294, + "kingston": 14295, + "establish": 14296, + "erky": 14297, + "prometheus": 14298, + "tint": 14299, + "clowning": 14300, + "probable": 14301, + "procedure": 14302, + "avant": 14303, + "feather": 14304, + "pennies": 14305, + "emerging": 14306, + "checkin": 14307, + "reprint": 14308, + "mila": 14309, + "lydia": 14310, + "sailors": 14311, + "stacked": 14312, + "snug": 14313, + "diagnose": 14314, + "perch": 14315, + "officials": 14316, + "ell": 14317, + "lifeless": 14318, + "surviving": 14319, + "listener": 14320, + "historically": 14321, + "zodiac": 14322, + "dudee": 14323, + "trays": 14324, + "pooped": 14325, + "closure": 14326, + "pixels": 14327, + "steelers": 14328, + "grilling": 14329, + "plush": 14330, + "syg": 14331, + "puro": 14332, + "scrimmage": 14333, + "gigantic": 14334, + "memorize": 14335, + "bisque": 14336, + "vanish": 14337, + "nearest": 14338, + "dez": 14339, + "yucky": 14340, + "uninspiring": 14341, + "dormirr": 14342, + "pushy": 14343, + "unsatisfying": 14344, + "bf's": 14345, + "smhh": 14346, + "var": 14347, + "foodie": 14348, + "slips": 14349, + "crossfit": 14350, + "footy": 14351, + "resign": 14352, + "evenings": 14353, + "haze": 14354, + "derivative": 14355, + "ensemble": 14356, + "announcers": 14357, + "disliking": 14358, + "sunflower": 14359, + "vb": 14360, + "conquer": 14361, + "#win": 14362, + "#done": 14363, + "aging": 14364, + "forbes": 14365, + "dillon": 14366, + "rounded": 14367, + "woops": 14368, + "trifling": 14369, + "gordo": 14370, + "money's": 14371, + "firefly": 14372, + "orang": 14373, + "prozac": 14374, + "worrisome": 14375, + "yuppie": 14376, + "safari": 14377, + "lettin": 14378, + "vera": 14379, + "peters": 14380, + "removal": 14381, + "vending": 14382, + "scientifically": 14383, + "napa": 14384, + "mongolian": 14385, + "besos": 14386, + "handwriting": 14387, + "denim": 14388, + "breads": 14389, + "expiration": 14390, + "indo": 14391, + "styling": 14392, + "conveniently": 14393, + "neighbour": 14394, + "slurpee": 14395, + "#leo": 14396, + "marble": 14397, + "bfs": 14398, + "novelty": 14399, + "#ugh": 14400, + "workk": 14401, + "werk": 14402, + "tome": 14403, + "atomic": 14404, + "romp": 14405, + "dismal": 14406, + "vaya": 14407, + "royals": 14408, + "dangerously": 14409, + "sigma": 14410, + "heartbreaker": 14411, + "classmate": 14412, + "nigeria": 14413, + "mmhmm": 14414, + "hairline": 14415, + "soleil": 14416, + "dalton": 14417, + "fires": 14418, + "pensar": 14419, + "visuals": 14420, + "mormons": 14421, + "cas": 14422, + "dapat": 14423, + "endorse": 14424, + "bratz": 14425, + "dent": 14426, + "chemicals": 14427, + "reid": 14428, + "hubs": 14429, + "negros": 14430, + "unemployment": 14431, + "loca": 14432, + "hahahahhaha": 14433, + "#fact": 14434, + "carte": 14435, + "quaint": 14436, + "mashallah": 14437, + "ers": 14438, + "minutos": 14439, + "explosion": 14440, + "holocaust": 14441, + "tuscaloosa": 14442, + "herrera": 14443, + "newbies": 14444, + "manipulate": 14445, + "exterior": 14446, + "ergo": 14447, + "walnut": 14448, + "haan": 14449, + "marquee": 14450, + "wilding": 14451, + "unimpressive": 14452, + "incompatible": 14453, + "studs": 14454, + "thatt": 14455, + "prepares": 14456, + "bubbly": 14457, + "madame": 14458, + "unread": 14459, + "hangovers": 14460, + "demographic": 14461, + "imu": 14462, + "trina": 14463, + "facilities": 14464, + "correctness": 14465, + "pinto": 14466, + "unfunny": 14467, + "analyst": 14468, + "fym": 14469, + "#mylife": 14470, + "wif": 14471, + "patrol": 14472, + "rockstar": 14473, + "snowboarding": 14474, + "diass": 14475, + "orthodontist": 14476, + "auch": 14477, + "ultima": 14478, + "lukey": 14479, + "sunscreen": 14480, + "dawgs": 14481, + "pelo": 14482, + ";33": 14483, + "gracie": 14484, + "bates": 14485, + "walla": 14486, + "pyramid": 14487, + "eaters": 14488, + "sabbath": 14489, + "chrissy": 14490, + "contributing": 14491, + "earthquake": 14492, + "smd": 14493, + "sabado": 14494, + "jules": 14495, + "holster": 14496, + "hector": 14497, + "/:": 14498, + "dancin": 14499, + "bac": 14500, + "gypsy": 14501, + "upsets": 14502, + "tlk": 14503, + "magnetic": 14504, + "downton": 14505, + "cheyenne": 14506, + "newbie": 14507, + "raided": 14508, + "beads": 14509, + "valve": 14510, + "#perfection": 14511, + "rewatching": 14512, + "bismillah": 14513, + "intimidating": 14514, + "texters": 14515, + "twitching": 14516, + "mcflurry": 14517, + "clearance": 14518, + "toothache": 14519, + "dug": 14520, + "unprotected": 14521, + "tutorials": 14522, + "fundamentalist": 14523, + "bridal": 14524, + "kath": 14525, + "egyptian": 14526, + "propose": 14527, + "preschool": 14528, + "rodney": 14529, + "#sadtweet": 14530, + "clyde": 14531, + "tierno": 14532, + "wholeheartedly": 14533, + "rep.": 14534, + "diy": 14535, + "xavier": 14536, + "pitbulls": 14537, + "sorting": 14538, + "parliament": 14539, + "timed": 14540, + "gimmicks": 14541, + "restored": 14542, + "hdtv": 14543, + "citrus": 14544, + "opposing": 14545, + "placer": 14546, + "placing": 14547, + "perk": 14548, + "implement": 14549, + "scumbags": 14550, + "breaded": 14551, + "idkk": 14552, + "lavender": 14553, + "#sad": 14554, + "horrifying": 14555, + "#pisces": 14556, + "applaud": 14557, + "kite": 14558, + "sj": 14559, + "fantasize": 14560, + "tues": 14561, + "nialler": 14562, + "ado": 14563, + "pico": 14564, + "tater": 14565, + "lui": 14566, + "aus": 14567, + "fondue": 14568, + "violations": 14569, + "stray": 14570, + "ellis": 14571, + "lass": 14572, + "llegue": 14573, + "sonny": 14574, + "carnitas": 14575, + "cud": 14576, + "fussing": 14577, + "resurrected": 14578, + "ruling": 14579, + "stinking": 14580, + "compass": 14581, + "kenz": 14582, + "p.m.": 14583, + "unlikely": 14584, + "beginnings": 14585, + "santana": 14586, + "elimination": 14587, + "animosity": 14588, + "snitching": 14589, + "discussed": 14590, + "implemented": 14591, + "bloke": 14592, + "astonishing": 14593, + "illuminati": 14594, + "fcked": 14595, + "trails": 14596, + "dissin": 14597, + "carpets": 14598, + "babbyy": 14599, + "forrest": 14600, + "anecdotal": 14601, + "andrews": 14602, + "squealing": 14603, + "checkers": 14604, + "obscure": 14605, + "taxing": 14606, + "judaism": 14607, + "innuendo": 14608, + "bloom": 14609, + "mahi": 14610, + "godfather": 14611, + "fsu": 14612, + "jumpin": 14613, + "braxton": 14614, + "mentor": 14615, + "macon": 14616, + "chili's": 14617, + "criminally": 14618, + "baack": 14619, + "jonah": 14620, + "stacey": 14621, + "evaa": 14622, + "tapped": 14623, + "bose": 14624, + "swole": 14625, + "drags": 14626, + "#jealous": 14627, + "adjustable": 14628, + "tweeters": 14629, + "galing": 14630, + "arrangement": 14631, + "barf": 14632, + "irresistible": 14633, + "io": 14634, + "sr": 14635, + "hammock": 14636, + "nbd": 14637, + "displeased": 14638, + "hannity": 14639, + "controlling": 14640, + "psychological": 14641, + "bobs": 14642, + "kilig": 14643, + "partial": 14644, + "folder": 14645, + "nott": 14646, + "ahem": 14647, + "greaat": 14648, + "againn": 14649, + "gio": 14650, + "queda": 14651, + "shredder": 14652, + "chamber": 14653, + "lmfaaoo": 14654, + "appliance": 14655, + "fasting": 14656, + "wager": 14657, + "quedo": 14658, + "auditions": 14659, + "eco": 14660, + "coated": 14661, + "diarrhea": 14662, + "aloha": 14663, + "mastered": 14664, + "l.a.": 14665, + "kathniel": 14666, + "fanboys": 14667, + "document": 14668, + "forgiving": 14669, + "unsatisfactory": 14670, + "mort": 14671, + "playboy": 14672, + "quesadillas": 14673, + "troye": 14674, + "themes": 14675, + "wym": 14676, + "sobrang": 14677, + "googles": 14678, + "solely": 14679, + "landslide": 14680, + "aqua": 14681, + "bussiness": 14682, + "salesman": 14683, + "executives": 14684, + "jinx": 14685, + "whereabouts": 14686, + "scot": 14687, + "millers": 14688, + "shoved": 14689, + "brudda": 14690, + "cette": 14691, + "eles": 14692, + "mick": 14693, + "scotch": 14694, + "piper": 14695, + "vital": 14696, + "buti": 14697, + "harvest": 14698, + "holdin": 14699, + "guinea": 14700, + "complement": 14701, + "thuggin": 14702, + "mum's": 14703, + "mads": 14704, + "reside": 14705, + "ribbon": 14706, + "soledad": 14707, + "bikinis": 14708, + "sisi": 14709, + "melo": 14710, + "theories": 14711, + "strikers": 14712, + "baaby": 14713, + "geekin": 14714, + "subtweeted": 14715, + "bigoted": 14716, + "threshold": 14717, + "daa": 14718, + "finde": 14719, + "bbe": 14720, + "precise": 14721, + "malcolm": 14722, + "utensils": 14723, + "rc": 14724, + "esos": 14725, + "lightening": 14726, + "washes": 14727, + "#cancer": 14728, + "quilt": 14729, + "tribe": 14730, + "billing": 14731, + "lefties": 14732, + "dante": 14733, + "sigue": 14734, + "drivin": 14735, + "zoey": 14736, + "tutti": 14737, + "leech": 14738, + "fetch": 14739, + "controlled": 14740, + "chester": 14741, + "prophets": 14742, + "intend": 14743, + "walt": 14744, + "jonny": 14745, + "gnocchi": 14746, + "departure": 14747, + "niyo": 14748, + "jours": 14749, + "heavier": 14750, + "lows": 14751, + "loops": 14752, + "chucks": 14753, + "syntax": 14754, + "abuses": 14755, + "spotless": 14756, + "boarder": 14757, + "colton": 14758, + "rumble": 14759, + "melodies": 14760, + "toot": 14761, + "#dailytweet": 14762, + "falafel": 14763, + "fosters": 14764, + "goth": 14765, + "leopard": 14766, + "blowed": 14767, + "(':": 14768, + "remaster": 14769, + "reals": 14770, + "discovering": 14771, + "watchu": 14772, + "haces": 14773, + "offender": 14774, + "brulee": 14775, + "gilmore": 14776, + "shaky": 14777, + "coachella": 14778, + "relocate": 14779, + "awfully": 14780, + "rusted": 14781, + "bali": 14782, + "legitimately": 14783, + "ducked": 14784, + "jaguars": 14785, + "squares": 14786, + "possibilities": 14787, + "kart": 14788, + "interactive": 14789, + "#memories": 14790, + "s'mores": 14791, + "nutty": 14792, + "celeste": 14793, + "jit": 14794, + "raymond": 14795, + "acrylics": 14796, + "barefoot": 14797, + "verdade": 14798, + "nena": 14799, + "waddup": 14800, + "rosemary": 14801, + "masks": 14802, + "levine": 14803, + "thinner": 14804, + "finallyy": 14805, + "combine": 14806, + "processor": 14807, + "heartache": 14808, + "dane": 14809, + "parm": 14810, + "swimsuit": 14811, + "rebuttal": 14812, + "baggy": 14813, + "proposition": 14814, + "tutto": 14815, + "guitarist": 14816, + "aimless": 14817, + "kein": 14818, + "nadia": 14819, + "biitch": 14820, + "perfecta": 14821, + "celery": 14822, + "midwest": 14823, + "illusion": 14824, + "sorority": 14825, + "wheeler": 14826, + "immoral": 14827, + "tudo": 14828, + "soir": 14829, + "msgs": 14830, + "flute": 14831, + "ryan's": 14832, + "payer": 14833, + "sparky": 14834, + "inhale": 14835, + "discourse": 14836, + "apologist": 14837, + "jamais": 14838, + "invested": 14839, + "deliberate": 14840, + "matthews": 14841, + "dandy": 14842, + "excel": 14843, + "seaweed": 14844, + "ae": 14845, + "wast": 14846, + "joyful": 14847, + "relieve": 14848, + "gus": 14849, + "rows": 14850, + "tio": 14851, + "suited": 14852, + "eleanor": 14853, + "sms": 14854, + "grunt": 14855, + "superstition": 14856, + "skylar": 14857, + "parang": 14858, + "reserves": 14859, + "thunderstorms": 14860, + "alt": 14861, + "hugo": 14862, + "micheal": 14863, + "#annoyed": 14864, + "lux": 14865, + "beckham": 14866, + "ptn": 14867, + "obv": 14868, + "abiding": 14869, + "spends": 14870, + "atheists": 14871, + "shaker": 14872, + "mocking": 14873, + "divas": 14874, + "colombian": 14875, + "#firstworldproblems": 14876, + "moses": 14877, + "dnd": 14878, + "serbian": 14879, + "mfer": 14880, + "butch": 14881, + "#pll": 14882, + "cor": 14883, + "pentagon": 14884, + "dit": 14885, + "meanest": 14886, + "strive": 14887, + "provoke": 14888, + "pamper": 14889, + "misled": 14890, + "bonuses": 14891, + "dangg": 14892, + "bickering": 14893, + "escuela": 14894, + "dubs": 14895, + "reform": 14896, + "g's": 14897, + "involvement": 14898, + "disclose": 14899, + "toque": 14900, + "default": 14901, + "amazon's": 14902, + "balled": 14903, + "sampled": 14904, + "rival": 14905, + "entiendo": 14906, + "waterfall": 14907, + "lsu": 14908, + "spuds": 14909, + "diminished": 14910, + "ingram": 14911, + "sadie": 14912, + "accompany": 14913, + "tractor": 14914, + "pcb": 14915, + "leicester": 14916, + "phx": 14917, + "spite": 14918, + "nikes": 14919, + "yuu": 14920, + "fidel": 14921, + "yarn": 14922, + "extend": 14923, + "producers": 14924, + "operating": 14925, + "prone": 14926, + "alwayss": 14927, + "#aries": 14928, + "scheduling": 14929, + "rises": 14930, + "mii": 14931, + "tele": 14932, + "chinatown": 14933, + "esses": 14934, + "californian": 14935, + "inject": 14936, + "flys": 14937, + "intrigue": 14938, + "sheffield": 14939, + "kidd": 14940, + "compulsory": 14941, + "erik": 14942, + "#inlove": 14943, + "tex": 14944, + "dawgg": 14945, + "fuxk": 14946, + "forty": 14947, + "myriad": 14948, + "bookstore": 14949, + "overslept": 14950, + "dosent": 14951, + "della": 14952, + "insecurities": 14953, + "undies": 14954, + "predators": 14955, + "cheaters": 14956, + "wearin": 14957, + "patriotism": 14958, + "peaks": 14959, + "amelia": 14960, + "#bored": 14961, + "expects": 14962, + "jeezy": 14963, + "shawdy": 14964, + "pups": 14965, + "stimulate": 14966, + "maggots": 14967, + "pk": 14968, + "scattered": 14969, + "b'day": 14970, + "resolved": 14971, + "plowed": 14972, + "#classic": 14973, + "tiresome": 14974, + "skates": 14975, + "brodie": 14976, + "beam": 14977, + "fucktard": 14978, + "declaring": 14979, + "shaa": 14980, + "volcano": 14981, + "boundaries": 14982, + "flyers": 14983, + "nadal": 14984, + "jude": 14985, + "degrade": 14986, + "pajama": 14987, + "dion": 14988, + "jax": 14989, + "dribble": 14990, + "unannounced": 14991, + "manos": 14992, + "arsene": 14993, + "#amazing": 14994, + "brook": 14995, + "wiser": 14996, + "aghh": 14997, + "salons": 14998, + "guurl": 14999, + "ojala": 15000, + "escalated": 15001, + "kira": 15002, + "carla": 15003, + "instructional": 15004, + "brewing": 15005, + "withdrawal": 15006, + "abbie": 15007, + "brilliantly": 15008, + "dismayed": 15009, + "spandex": 15010, + "plentiful": 15011, + "pearls": 15012, + "tomorow": 15013, + "libro": 15014, + "abide": 15015, + "dramas": 15016, + "rmft": 15017, + "chlo": 15018, + "creds": 15019, + "restrooms": 15020, + "critique": 15021, + "monday's": 15022, + "pasok": 15023, + "springer": 15024, + "kinder": 15025, + "herd": 15026, + "estudiar": 15027, + "threesome": 15028, + "coupe": 15029, + "bil": 15030, + "uck": 15031, + "mayonnaise": 15032, + "fairytale": 15033, + "tuning": 15034, + "softly": 15035, + "hem": 15036, + "transferring": 15037, + "volumes": 15038, + "palestinian": 15039, + "chopping": 15040, + "unwritten": 15041, + "pigeon": 15042, + "volt": 15043, + "toughest": 15044, + "spiced": 15045, + "vocab": 15046, + "resistance": 15047, + "enrique": 15048, + "barry's": 15049, + "faved": 15050, + "squirt": 15051, + "showin": 15052, + "revival": 15053, + "backstage": 15054, + "designers": 15055, + "pricy": 15056, + "struggled": 15057, + "lilo": 15058, + "chuckle": 15059, + "truthful": 15060, + "mcgraw": 15061, + "love's": 15062, + "griddle": 15063, + "xoxoxo": 15064, + "cannes": 15065, + "clinging": 15066, + "matin": 15067, + "lube": 15068, + "wey": 15069, + "nung": 15070, + "brody": 15071, + "spirited": 15072, + "escobar": 15073, + "dulce": 15074, + "bombastic": 15075, + "bridesmaids": 15076, + "disadvantage": 15077, + "caked": 15078, + "lmmfao": 15079, + "heii": 15080, + "visa": 15081, + "traveler": 15082, + "bullpen": 15083, + "pak": 15084, + "cami": 15085, + "laziness": 15086, + "obj": 15087, + "jaime": 15088, + "coffees": 15089, + "reno": 15090, + "kissin": 15091, + "karl": 15092, + "dysfunctional": 15093, + "diaas": 15094, + "deez": 15095, + "uganda": 15096, + "nascar": 15097, + "overheard": 15098, + "smokers": 15099, + "unavailable": 15100, + "sergio": 15101, + "olly": 15102, + "ftw": 15103, + "pansy": 15104, + "inherited": 15105, + "soar": 15106, + "ollie": 15107, + "milo": 15108, + "chomping": 15109, + "trickle": 15110, + "knowledgable": 15111, + "boul": 15112, + "#yolo": 15113, + "hooker": 15114, + "tomoz": 15115, + "kiwis": 15116, + "tus": 15117, + "strokes": 15118, + "grinch": 15119, + "inicio": 15120, + "veces": 15121, + "lexus": 15122, + "pimpin": 15123, + "stash": 15124, + "seemingly": 15125, + "rascal": 15126, + "vee": 15127, + "playful": 15128, + "wacko": 15129, + "muh": 15130, + "tweakin": 15131, + "grips": 15132, + "aborted": 15133, + "elmer": 15134, + "beaches": 15135, + "watershed": 15136, + "explicit": 15137, + "nod": 15138, + "athens": 15139, + "festivities": 15140, + "#noshame": 15141, + "shipments": 15142, + "rebate": 15143, + "#bff": 15144, + "babysitter": 15145, + "civic": 15146, + "realization": 15147, + "ecstatic": 15148, + "calorie": 15149, + "dreary": 15150, + "cradle": 15151, + "argentine": 15152, + "lifes": 15153, + "establishments": 15154, + "animo": 15155, + "iloveyouu": 15156, + "wattpad": 15157, + "bem": 15158, + "doch": 15159, + "stung": 15160, + "panthers": 15161, + "#foreveralone": 15162, + "feisty": 15163, + "tas": 15164, + "slumber": 15165, + "goats": 15166, + "hudson": 15167, + "bagged": 15168, + "kame": 15169, + "ci": 15170, + "conmigo": 15171, + "secondary": 15172, + "wacky": 15173, + "scientology": 15174, + "puso": 15175, + "dele": 15176, + "disliked": 15177, + "lei": 15178, + "misguided": 15179, + "kicker": 15180, + "coup": 15181, + "pumpkins": 15182, + "klein": 15183, + "perceived": 15184, + "relay": 15185, + "lc": 15186, + "macklemore": 15187, + "ferdinand": 15188, + "sleepp": 15189, + "richie": 15190, + "respective": 15191, + "pringles": 15192, + "paddle": 15193, + "ridicule": 15194, + "inventory": 15195, + "antibiotics": 15196, + "twitpic": 15197, + "diversity": 15198, + "mutha": 15199, + "bush's": 15200, + "sakin": 15201, + "chilis": 15202, + "engraved": 15203, + "qualification": 15204, + "fallacy": 15205, + "asinine": 15206, + "revolutionary": 15207, + "zeppelin": 15208, + "jayden": 15209, + "employee's": 15210, + "conform": 15211, + "hides": 15212, + "appetizing": 15213, + "aiming": 15214, + "yalls": 15215, + "thaat": 15216, + "#90sbabyfollowtrain": 15217, + "meaty": 15218, + "protests": 15219, + "delays": 15220, + "fascism": 15221, + "bh": 15222, + "utd": 15223, + "vancouver": 15224, + "requesting": 15225, + "nsa": 15226, + "reverend": 15227, + "winds": 15228, + "snuggles": 15229, + "blinds": 15230, + "skunk": 15231, + "forbidden": 15232, + "hoax": 15233, + "llorar": 15234, + "felix": 15235, + "howe": 15236, + "tty": 15237, + "mps": 15238, + "discard": 15239, + "ony": 15240, + "nola": 15241, + "eyeshadow": 15242, + "junky": 15243, + "prefect": 15244, + "businessman": 15245, + "misrepresentation": 15246, + "might've": 15247, + "djs": 15248, + "ilk": 15249, + "floral": 15250, + "ample": 15251, + "floss": 15252, + "baa": 15253, + "#gemini": 15254, + "#wishfulthinking": 15255, + "editions": 15256, + "mingle": 15257, + "dwight": 15258, + "reissue": 15259, + "aab": 15260, + "twd": 15261, + "stylus": 15262, + "nit": 15263, + "rantings": 15264, + "satellite": 15265, + "rudy": 15266, + "#thankgod": 15267, + "spotty": 15268, + "thaank": 15269, + "irl": 15270, + "shole": 15271, + "suckers": 15272, + "cumple": 15273, + "unintended": 15274, + "enamorada": 15275, + "tnx": 15276, + "mw": 15277, + "snowball": 15278, + "shipper": 15279, + "claps": 15280, + "septum": 15281, + "rollers": 15282, + "cellphone": 15283, + "lampard": 15284, + "week's": 15285, + "barbaric": 15286, + "ebony": 15287, + "devotional": 15288, + "disguised": 15289, + "searing": 15290, + "faithfully": 15291, + "airwaves": 15292, + "olympic": 15293, + "denna": 15294, + "jars": 15295, + "bn": 15296, + "retainers": 15297, + "brandi": 15298, + "lowlife": 15299, + "slums": 15300, + "paxton": 15301, + "collectively": 15302, + "presentations": 15303, + "donnie": 15304, + "jajaj": 15305, + "repaired": 15306, + "diddy": 15307, + "mousse": 15308, + "flippin": 15309, + "anf": 15310, + "pushes": 15311, + "accidents": 15312, + "hiss": 15313, + "fanatic": 15314, + "alternatives": 15315, + "senile": 15316, + "tama": 15317, + "cherries": 15318, + "dressage": 15319, + "ambulance": 15320, + "#fav": 15321, + "kimmy": 15322, + "heterosexual": 15323, + "tories": 15324, + "occupying": 15325, + "puked": 15326, + "donald's": 15327, + "irks": 15328, + "declaration": 15329, + "fenna": 15330, + "hammered": 15331, + "straws": 15332, + "recommending": 15333, + "baggage": 15334, + "kinks": 15335, + "luke's": 15336, + "developing": 15337, + "proclaim": 15338, + "missouri": 15339, + "hurst": 15340, + "adoption": 15341, + "exaggerating": 15342, + "pc's": 15343, + "pipes": 15344, + "payton": 15345, + "dint": 15346, + "kang": 15347, + "musically": 15348, + "#salute": 15349, + "empanadas": 15350, + "originated": 15351, + "charities": 15352, + "skint": 15353, + "suju": 15354, + "stomachs": 15355, + "fredo": 15356, + "fug": 15357, + "baboon": 15358, + "hj": 15359, + "compressor": 15360, + "suave": 15361, + "agents": 15362, + "telegraph": 15363, + "ingay": 15364, + "blurred": 15365, + "concierge": 15366, + "#tmlt": 15367, + "nips": 15368, + "summit": 15369, + "eliminates": 15370, + "pours": 15371, + "eureka": 15372, + "patches": 15373, + "crawford": 15374, + "alumni": 15375, + "enthusiastic": 15376, + "woe": 15377, + "splits": 15378, + "veil": 15379, + "nissan": 15380, + "mounting": 15381, + "wallflower": 15382, + "#scorpio": 15383, + "stp": 15384, + "gooey": 15385, + "insipid": 15386, + "meanie": 15387, + "winded": 15388, + "y'a": 15389, + "agad": 15390, + "pedigree": 15391, + "whispering": 15392, + "verses": 15393, + "panther": 15394, + "cora": 15395, + "awayy": 15396, + "streaks": 15397, + "dm'd": 15398, + "brendan": 15399, + "hesitant": 15400, + "breasts": 15401, + "cadillac": 15402, + "zebra": 15403, + "jovi": 15404, + "mx": 15405, + "tucson": 15406, + "certainty": 15407, + "costly": 15408, + "whaatt": 15409, + "mosquitoes": 15410, + "glam": 15411, + "imperial": 15412, + "tfti": 15413, + "gimmie": 15414, + "gump": 15415, + "slayer": 15416, + "reppin": 15417, + "quart": 15418, + "ia": 15419, + "princesa": 15420, + "licensing": 15421, + "uss": 15422, + "callous": 15423, + "discounted": 15424, + "comprehend": 15425, + "vontade": 15426, + "livid": 15427, + "smelt": 15428, + "tailgate": 15429, + "crow": 15430, + "nyo": 15431, + "awaited": 15432, + "momo": 15433, + "panty": 15434, + "appalled": 15435, + "grin": 15436, + "espalda": 15437, + "kristen's": 15438, + "attorneys": 15439, + "supa": 15440, + "alison": 15441, + "voir": 15442, + "piping": 15443, + "maccies": 15444, + "deviant": 15445, + "cuhh": 15446, + "heeded": 15447, + "gesture": 15448, + "descent": 15449, + "lonesome": 15450, + "farmer": 15451, + "pulse": 15452, + "colleagues": 15453, + "todaay": 15454, + "phoebe": 15455, + "poked": 15456, + "paz": 15457, + "finer": 15458, + "katana": 15459, + "fob": 15460, + "revolt": 15461, + "o'donnell": 15462, + "competent": 15463, + "traveled": 15464, + "cz": 15465, + "rebound": 15466, + "mccann": 15467, + "cycling": 15468, + "amore": 15469, + "jaden": 15470, + "substandard": 15471, + "pv": 15472, + "#followme": 15473, + "chore": 15474, + "bu": 15475, + "childrens": 15476, + "cloths": 15477, + "lbvs": 15478, + "counterparts": 15479, + "snapchatted": 15480, + "binoculars": 15481, + "flows": 15482, + "angelina": 15483, + "rappin": 15484, + "aldean": 15485, + "psychotic": 15486, + "unsolicited": 15487, + "austrian": 15488, + "avis": 15489, + "tft": 15490, + "beefin": 15491, + "enquirer": 15492, + "muuch": 15493, + "antics": 15494, + "ammunition": 15495, + "loin": 15496, + "southerners": 15497, + "interrupt": 15498, + "mcdo": 15499, + "hodgson": 15500, + "overgrown": 15501, + "vill": 15502, + "rimes": 15503, + "veto": 15504, + "phoney": 15505, + "teamo": 15506, + "shopped": 15507, + "ein": 15508, + "pebbles": 15509, + "souvenir": 15510, + "jimin": 15511, + "unstoppable": 15512, + "angus": 15513, + "indirects": 15514, + "raves": 15515, + "tamale": 15516, + "jolie": 15517, + "smiths": 15518, + "hugh": 15519, + "cigs": 15520, + "chihuahua": 15521, + "gather": 15522, + "asswipe": 15523, + "extremist": 15524, + "observe": 15525, + "dispose": 15526, + "explicitly": 15527, + "goons": 15528, + "boeing": 15529, + "twitch": 15530, + "labyu": 15531, + "unfollows": 15532, + "irene": 15533, + "ling": 15534, + "limbaugh": 15535, + "vais": 15536, + "gl": 15537, + "whut": 15538, + "burton": 15539, + "oxo": 15540, + "amuse": 15541, + "yb": 15542, + "#fail": 15543, + "songwriter": 15544, + "innocents": 15545, + "prosciutto": 15546, + "#ifwedate": 15547, + "wc": 15548, + "tar": 15549, + "michael's": 15550, + "exposure": 15551, + "dormi": 15552, + "mesh": 15553, + "#batb": 15554, + "jajajajaj": 15555, + "loovvee": 15556, + "lorde": 15557, + "hamburgers": 15558, + "soapbox": 15559, + "meine": 15560, + "zara": 15561, + "authorities": 15562, + "wass": 15563, + "connie": 15564, + "dubbed": 15565, + "wander": 15566, + "lolo": 15567, + "thieves": 15568, + "milky": 15569, + "gat": 15570, + "counterfeit": 15571, + "hooping": 15572, + "fertilizer": 15573, + "reread": 15574, + "mojito": 15575, + "harness": 15576, + "ymcmb": 15577, + "friendzone": 15578, + "sniper": 15579, + "portfolio": 15580, + "output": 15581, + "auf": 15582, + "overr": 15583, + "dep": 15584, + "doctor's": 15585, + "civilians": 15586, + "astounding": 15587, + "slur": 15588, + "blacked": 15589, + "katrina": 15590, + "ramadan": 15591, + "aite": 15592, + "renee": 15593, + "disregarded": 15594, + "wonton": 15595, + "bahala": 15596, + "separately": 15597, + "recieve": 15598, + "kp": 15599, + "saucy": 15600, + "nip": 15601, + "denmark": 15602, + "laps": 15603, + "obamacare": 15604, + "ag": 15605, + "#taurus": 15606, + "tyra": 15607, + "trans": 15608, + "weathers": 15609, + "burgundy": 15610, + "rejoice": 15611, + "gently": 15612, + "giggling": 15613, + ".s.a": 15614, + "comrade": 15615, + "programmers": 15616, + "strapped": 15617, + "publication": 15618, + "rted": 15619, + "raises": 15620, + "vamp": 15621, + "dolce": 15622, + "espera": 15623, + "nonexistent": 15624, + "anh": 15625, + "lovable": 15626, + "disgraceful": 15627, + "ets": 15628, + "tito": 15629, + "eddy": 15630, + "dracula": 15631, + "hotdogs": 15632, + "tangina": 15633, + "roflmao": 15634, + "bronx": 15635, + "#mufc": 15636, + "explorer": 15637, + "dehydrated": 15638, + "itll": 15639, + "protesters": 15640, + "tommorrow": 15641, + "yam": 15642, + "giddy": 15643, + "refurbished": 15644, + "murdoch": 15645, + "judgmental": 15646, + "willian": 15647, + "bussin": 15648, + "browsing": 15649, + "verify": 15650, + "tani": 15651, + "albeit": 15652, + "converted": 15653, + "nutshell": 15654, + "qbs": 15655, + "fastball": 15656, + "berger": 15657, + "kau": 15658, + "oceans": 15659, + "#bittersweet": 15660, + "progresses": 15661, + "regarded": 15662, + "bourne": 15663, + "hypocritical": 15664, + "derived": 15665, + "tipping": 15666, + "saame": 15667, + "daddies": 15668, + "inquisition": 15669, + "transportation": 15670, + "redone": 15671, + "wks": 15672, + "fresno": 15673, + "etch": 15674, + "chronic": 15675, + "riled": 15676, + "grooming": 15677, + "raider": 15678, + "camille": 15679, + "frick": 15680, + "charmed": 15681, + "herbal": 15682, + "servants": 15683, + "torch": 15684, + "saban": 15685, + "lamps": 15686, + "suffered": 15687, + "mary's": 15688, + "clears": 15689, + "asif": 15690, + "crazier": 15691, + "condemn": 15692, + "precautions": 15693, + "squeaky": 15694, + "unsophisticated": 15695, + "kitties": 15696, + "kel": 15697, + "tati": 15698, + "recovered": 15699, + "cabrera": 15700, + "teeny": 15701, + "clunky": 15702, + "logging": 15703, + "refrigerators": 15704, + "lightskins": 15705, + "brightens": 15706, + "trousers": 15707, + "mamaya": 15708, + "officers": 15709, + "tarot": 15710, + "macho": 15711, + "#work": 15712, + "oms": 15713, + "cn": 15714, + "bullies": 15715, + "rubin": 15716, + "zionist": 15717, + "cv": 15718, + "sl": 15719, + "beet": 15720, + "kiana": 15721, + "algunos": 15722, + "winding": 15723, + "lakes": 15724, + "miners": 15725, + "lyk": 15726, + "airlines": 15727, + "displayed": 15728, + "switzerland": 15729, + "pourquoi": 15730, + "hybrid": 15731, + "bishop": 15732, + "stages": 15733, + "lunchtime": 15734, + "refusal": 15735, + "wishful": 15736, + "kinect": 15737, + "heaps": 15738, + "clarify": 15739, + "conclusions": 15740, + "bummy": 15741, + "((:": 15742, + "lexie": 15743, + "operative": 15744, + "ramsey": 15745, + "shortest": 15746, + "adjustment": 15747, + "nils": 15748, + "mccartney": 15749, + "trig": 15750, + "straights": 15751, + "glitch": 15752, + "apparel": 15753, + "aunties": 15754, + "invasion": 15755, + "weber": 15756, + "xfactor": 15757, + "oss": 15758, + "grupo": 15759, + "ijs": 15760, + "hyo": 15761, + "bollywood": 15762, + "#swerve": 15763, + "rigging": 15764, + "deceived": 15765, + "cockroach": 15766, + "transports": 15767, + "offenders": 15768, + "gossipy": 15769, + "pecker": 15770, + "absorbed": 15771, + "iq": 15772, + "neanderthal": 15773, + "celts": 15774, + "wooww": 15775, + "thet": 15776, + "droppings": 15777, + "aura": 15778, + "nila": 15779, + "emphasis": 15780, + "cones": 15781, + "suspension": 15782, + "tagal": 15783, + "initials": 15784, + "trauma": 15785, + "topless": 15786, + "associated": 15787, + "mfn": 15788, + "pharma": 15789, + "suprisingly": 15790, + "mandarin": 15791, + "dismiss": 15792, + "#muchlove": 15793, + "goodafternoon": 15794, + "saya": 15795, + "apes": 15796, + "instructors": 15797, + "angelic": 15798, + "comrades": 15799, + "anywho": 15800, + "tards": 15801, + "simplement": 15802, + "frills": 15803, + "wknd": 15804, + "determination": 15805, + "j'suis": 15806, + "#thebest": 15807, + "invaders": 15808, + "maniac": 15809, + "mite": 15810, + "try's": 15811, + "tirade": 15812, + "yiee": 15813, + "ahha": 15814, + "aquarius": 15815, + "fatigue": 15816, + "loovee": 15817, + "stuntin": 15818, + "zhang": 15819, + "willow": 15820, + "cropped": 15821, + "coochie": 15822, + "completamente": 15823, + "jeni": 15824, + "equity": 15825, + "osu": 15826, + "slashing": 15827, + "tes": 15828, + "macy's": 15829, + "demonstrating": 15830, + "frisbee": 15831, + "braided": 15832, + "unclear": 15833, + "bishops": 15834, + "radicals": 15835, + "dae": 15836, + "raid": 15837, + "governors": 15838, + "pickers": 15839, + "twinning": 15840, + "ahahahahaha": 15841, + "viendo": 15842, + "socket": 15843, + "freshness": 15844, + "spotlight": 15845, + "calves": 15846, + "pj's": 15847, + "ferrari": 15848, + "specsavers": 15849, + "coop": 15850, + "vegetarians": 15851, + "kimora": 15852, + "ideological": 15853, + "sumbody": 15854, + "fuks": 15855, + "mojo": 15856, + "huts": 15857, + "thnks": 15858, + "buffoon": 15859, + "ov": 15860, + "ung": 15861, + "grudge": 15862, + "joggers": 15863, + "shopper": 15864, + "committing": 15865, + "bbs": 15866, + "gyros": 15867, + "nifty": 15868, + "rst": 15869, + "chandelier": 15870, + "dingy": 15871, + "golfing": 15872, + "spells": 15873, + "mujer": 15874, + "pogi": 15875, + "bluff": 15876, + "fgs": 15877, + "blueberries": 15878, + "moisturizer": 15879, + "wishin": 15880, + "makayla": 15881, + "o'neil": 15882, + "chipmunk": 15883, + "magnum": 15884, + "connects": 15885, + "#tbt": 15886, + "hoard": 15887, + "denzel": 15888, + "spiral": 15889, + "bing": 15890, + "disappearing": 15891, + "tropics": 15892, + "chapped": 15893, + "sufficient": 15894, + "splurge": 15895, + "pending": 15896, + "volunteering": 15897, + "intoxicated": 15898, + "miniature": 15899, + "shaw": 15900, + "showtime": 15901, + "absorbing": 15902, + "cupid": 15903, + "headass": 15904, + "guitars": 15905, + "gents": 15906, + "pageant": 15907, + "pinta": 15908, + "defoe": 15909, + "vdd": 15910, + "haii": 15911, + "roger's": 15912, + "who'd": 15913, + "nal": 15914, + "sail": 15915, + "examination": 15916, + "restrict": 15917, + "straightforward": 15918, + "pinche": 15919, + "fled": 15920, + "saludos": 15921, + "widow": 15922, + "sentinel": 15923, + "ministry": 15924, + "balik": 15925, + "ussr": 15926, + "sunlight": 15927, + "frogs": 15928, + "mayday": 15929, + "meron": 15930, + "blazing": 15931, + "henna": 15932, + "marty": 15933, + "ley": 15934, + "acuerdo": 15935, + "senpai": 15936, + "jakes": 15937, + "gfs": 15938, + "timehop": 15939, + "deterred": 15940, + "vibrant": 15941, + "jeffrey": 15942, + "innocence": 15943, + "abuela": 15944, + "organizing": 15945, + "jogar": 15946, + "grindin": 15947, + "womanhood": 15948, + "combinations": 15949, + "posed": 15950, + "tabloids": 15951, + "tuner": 15952, + "thotties": 15953, + "aladdin": 15954, + "garcia": 15955, + "burp": 15956, + "condiments": 15957, + "clinched": 15958, + "contained": 15959, + "charmin": 15960, + "divorced": 15961, + "#icant": 15962, + "lng": 15963, + "nouveau": 15964, + "roc": 15965, + "loling": 15966, + "imani": 15967, + "snowed": 15968, + "comming": 15969, + "urine": 15970, + "scallop": 15971, + "silky": 15972, + "quits": 15973, + "moly": 15974, + "malay": 15975, + "boats": 15976, + "renew": 15977, + "hu": 15978, + "hollaa": 15979, + "dicaprio": 15980, + "moneyy": 15981, + "loveyouu": 15982, + "chau": 15983, + "kenneth": 15984, + "spazz": 15985, + "bojangles": 15986, + "shepherd": 15987, + "dumbshit": 15988, + "serenity": 15989, + "divisions": 15990, + "cantik": 15991, + "#yes": 15992, + "ruff": 15993, + "estamos": 15994, + "#sagittarius": 15995, + "exploration": 15996, + "estaba": 15997, + "viral": 15998, + "dissolved": 15999, + "pmsl": 16000, + "tanya": 16001, + "crippled": 16002, + "garfield": 16003, + "grinds": 16004, + "hercules": 16005, + "leeches": 16006, + "angst": 16007, + "tba": 16008, + "llf": 16009, + "implementation": 16010, + "aca": 16011, + "bib": 16012, + "gorge": 16013, + "#shoutout": 16014, + "eel": 16015, + "contend": 16016, + "leigh": 16017, + "webcam": 16018, + "monger": 16019, + "gator": 16020, + "monk": 16021, + "underwhelmed": 16022, + "wrench": 16023, + "icky": 16024, + "ashanti": 16025, + "subscribers": 16026, + "crystals": 16027, + "otha": 16028, + "krystal": 16029, + "edamame": 16030, + "villain": 16031, + "ela": 16032, + "ulta": 16033, + "uncut": 16034, + "feminine": 16035, + "ecuador": 16036, + "slp": 16037, + "rubes": 16038, + "clocks": 16039, + "hairdresser": 16040, + "censored": 16041, + "birdman": 16042, + "wei": 16043, + "cucumbers": 16044, + "malam": 16045, + "ambient": 16046, + "inspirits": 16047, + "neutral": 16048, + "chyna": 16049, + "omega": 16050, + "fiber": 16051, + "delegates": 16052, + "scrutiny": 16053, + "xc": 16054, + "alreadyy": 16055, + "oppars": 16056, + "caesar's": 16057, + "dalee": 16058, + "praises": 16059, + "vibing": 16060, + "jug": 16061, + "hoco": 16062, + "unm": 16063, + "quand": 16064, + "slamming": 16065, + "buch": 16066, + "koontz": 16067, + "newton": 16068, + "legalizing": 16069, + "begged": 16070, + "#stop": 16071, + "cabana": 16072, + "booklet": 16073, + "mutilation": 16074, + "whyte": 16075, + "mesma": 16076, + "ulster": 16077, + "nvidia": 16078, + "meltdown": 16079, + "publix": 16080, + ":33": 16081, + "widespread": 16082, + "polluting": 16083, + "pecking": 16084, + "lagging": 16085, + "powerpoint": 16086, + "sampling": 16087, + "ple": 16088, + "wistful": 16089, + "lawsuits": 16090, + "jeje": 16091, + "wrestle": 16092, + "lent": 16093, + "expressing": 16094, + "distractions": 16095, + "bleu": 16096, + "dolo": 16097, + "passando": 16098, + "aly": 16099, + "qaeda": 16100, + "twain": 16101, + "disappointments": 16102, + "staffed": 16103, + "gambas": 16104, + "bachmann": 16105, + "polarizing": 16106, + "intrigued": 16107, + "cheerios": 16108, + "broncos": 16109, + "fru": 16110, + "ej": 16111, + "insides": 16112, + "warum": 16113, + "prayin": 16114, + "choreography": 16115, + "fais": 16116, + "refusing": 16117, + "sanchez": 16118, + "allday": 16119, + "disclosure": 16120, + "wo": 16121, + "jordyn": 16122, + "irking": 16123, + "otc": 16124, + "molestation": 16125, + "reschedule": 16126, + "overboard": 16127, + "rivals": 16128, + "ics": 16129, + "fuuk": 16130, + "gyms": 16131, + "breadsticks": 16132, + "solos": 16133, + "winston": 16134, + "scratchy": 16135, + "veritas": 16136, + "wyatt": 16137, + "clipper": 16138, + "himm": 16139, + "netherlands": 16140, + "#prt": 16141, + "snuggling": 16142, + "rectum": 16143, + "advocating": 16144, + "haircuts": 16145, + "tweak": 16146, + "scrumptious": 16147, + "maxwell": 16148, + "superstitions": 16149, + "clase": 16150, + "drunkard": 16151, + "hann": 16152, + "omgosh": 16153, + "jails": 16154, + "pervasive": 16155, + "enterprise": 16156, + "motha": 16157, + "pelos": 16158, + "gigs": 16159, + "enforcing": 16160, + "rink": 16161, + "ike": 16162, + "keyshia": 16163, + "hein": 16164, + "honour": 16165, + "avenge": 16166, + "ob": 16167, + "marines": 16168, + "butcher": 16169, + "rf": 16170, + "officiating": 16171, + "colds": 16172, + "lara": 16173, + "makita": 16174, + "jueves": 16175, + "bedd": 16176, + "shat": 16177, + "neh": 16178, + "perv": 16179, + "undocumented": 16180, + "fuckboys": 16181, + "tfios": 16182, + "hahahahaa": 16183, + "hsm": 16184, + "neta": 16185, + "kuz": 16186, + "rifle": 16187, + "tierra": 16188, + "shocks": 16189, + "kin": 16190, + "barrio": 16191, + "fea": 16192, + "groupies": 16193, + "irreplaceable": 16194, + "pronounced": 16195, + "wembley": 16196, + "weaves": 16197, + "observation": 16198, + "giirl": 16199, + "kenyans": 16200, + "fetuses": 16201, + "sandwhich": 16202, + "workforce": 16203, + "stacking": 16204, + "sling": 16205, + "wizards": 16206, + "smuggled": 16207, + "replaying": 16208, + "guhh": 16209, + "perpetuating": 16210, + "robbery": 16211, + "hazelnut": 16212, + "snows": 16213, + "glizzy": 16214, + "missions": 16215, + "lands": 16216, + "avicii": 16217, + "polaroid": 16218, + "booger": 16219, + "imm": 16220, + "mechanism": 16221, + "witches": 16222, + "compton": 16223, + "confinement": 16224, + "crip": 16225, + "jingle": 16226, + "cures": 16227, + "wohoo": 16228, + "rumours": 16229, + "wakin": 16230, + "hitchens": 16231, + "ayaw": 16232, + "choco": 16233, + "pouch": 16234, + "tmm": 16235, + "ainn": 16236, + "#thestruggleisreal": 16237, + "cryingg": 16238, + "yeezy": 16239, + "rested": 16240, + "prada": 16241, + "lactose": 16242, + "stabbing": 16243, + "armor": 16244, + "gassing": 16245, + "brewery": 16246, + "difficulty": 16247, + "resistant": 16248, + "scifi": 16249, + "descriptive": 16250, + "umps": 16251, + "knapp": 16252, + "vacaciones": 16253, + "colegio": 16254, + "nerdy": 16255, + "penalized": 16256, + "deconstruction": 16257, + "fsa": 16258, + "pon": 16259, + "transmission": 16260, + "esque": 16261, + "baskets": 16262, + "skewers": 16263, + "huhh": 16264, + "aced": 16265, + "soso": 16266, + "beanies": 16267, + "shrieking": 16268, + "allez": 16269, + "ceo": 16270, + "#happygirl": 16271, + "specialist": 16272, + "surgeon": 16273, + "alienating": 16274, + "gotchuu": 16275, + "gana": 16276, + "barrier": 16277, + "mints": 16278, + "stans": 16279, + "gemma": 16280, + "safer": 16281, + "sheldon": 16282, + "meaningless": 16283, + "anong": 16284, + "hulu": 16285, + "proceeds": 16286, + "congressman": 16287, + "donated": 16288, + "o'leary": 16289, + "yoself": 16290, + "spammed": 16291, + "josie": 16292, + "vad": 16293, + "selfishly": 16294, + "sleepovers": 16295, + "weaker": 16296, + "pints": 16297, + "teary": 16298, + "rns": 16299, + "flatbread": 16300, + "chronically": 16301, + "dictators": 16302, + "cuffin": 16303, + "lordd": 16304, + "blck": 16305, + "mir": 16306, + "petulant": 16307, + "stimulus": 16308, + "mois": 16309, + "cams": 16310, + "promoter": 16311, + "matt's": 16312, + "hmph": 16313, + "sickest": 16314, + "lever": 16315, + "spokesman": 16316, + "formatting": 16317, + "youd": 16318, + "arrests": 16319, + "novia": 16320, + "festive": 16321, + "sigueme": 16322, + "ani": 16323, + "c's": 16324, + "claws": 16325, + "cocksucker": 16326, + "drita": 16327, + "escuchar": 16328, + "sexyy": 16329, + "fuckedup": 16330, + "clergy": 16331, + "kyra": 16332, + "fuhh": 16333, + "fuse": 16334, + "problema": 16335, + "glock": 16336, + "dreck": 16337, + "pushers": 16338, + "surge": 16339, + "correspondent": 16340, + "psst": 16341, + "rita's": 16342, + "probz": 16343, + "cui": 16344, + "scourge": 16345, + "poached": 16346, + "raved": 16347, + "trooper": 16348, + "queeny": 16349, + "warlord": 16350, + "hurtful": 16351, + "thankk": 16352, + "pmo": 16353, + "clapped": 16354, + "deb": 16355, + "hombres": 16356, + "immensely": 16357, + "tracklisting": 16358, + "tees": 16359, + "beethoven": 16360, + "simone": 16361, + "goddamned": 16362, + "disregard": 16363, + "rollercoaster": 16364, + "bik": 16365, + "antique": 16366, + "sociopaths": 16367, + "becuz": 16368, + "attic": 16369, + "nadaa": 16370, + "sn": 16371, + "amoor": 16372, + "#libra": 16373, + "stoning": 16374, + "famously": 16375, + "gh": 16376, + "scandalous": 16377, + "fright": 16378, + "braised": 16379, + "varied": 16380, + "microwaved": 16381, + "fanfic": 16382, + "hahahhaa": 16383, + "erased": 16384, + "hablando": 16385, + "looll": 16386, + "fse": 16387, + "sorrow": 16388, + "palate": 16389, + "cliches": 16390, + "barrack": 16391, + "diplomats": 16392, + "partier": 16393, + "digest": 16394, + "reece": 16395, + "crackhead": 16396, + "judgy": 16397, + "redeem": 16398, + "talkn": 16399, + "flogged": 16400, + "commies": 16401, + "fantasia": 16402, + "cashiers": 16403, + "followme": 16404, + "brightest": 16405, + "gorda": 16406, + "verry": 16407, + "yow": 16408, + "wrongs": 16409, + "obstruction": 16410, + "vrai": 16411, + "decently": 16412, + "refunded": 16413, + "accidently": 16414, + "yt": 16415, + "hoeing": 16416, + "zuckerberg": 16417, + "cancelling": 16418, + "#throwback": 16419, + "endings": 16420, + "goody": 16421, + "tatts": 16422, + "lethal": 16423, + "coffey": 16424, + "oblivious": 16425, + "syrians": 16426, + "myers": 16427, + "partyy": 16428, + "chant": 16429, + "clamp": 16430, + "malls": 16431, + "nyt": 16432, + "reposts": 16433, + "reevaluate": 16434, + "destroys": 16435, + "morgen": 16436, + "keurig": 16437, + "backbone": 16438, + "teat": 16439, + "yeeah": 16440, + "eastenders": 16441, + "nightly": 16442, + "overpowering": 16443, + "schoolboy": 16444, + "gnna": 16445, + "intake": 16446, + "scented": 16447, + "bro's": 16448, + "naahh": 16449, + "aviv": 16450, + "queria": 16451, + "iloveyousomuch": 16452, + "juggalo": 16453, + "commanded": 16454, + "safeway": 16455, + "documentaries": 16456, + "flair": 16457, + "peeled": 16458, + "pasar": 16459, + "derulo": 16460, + "vinaigrette": 16461, + "lynched": 16462, + "probar": 16463, + "devastating": 16464, + "unlawful": 16465, + "court's": 16466, + "persecuted": 16467, + "sandal": 16468, + "pix": 16469, + "meredith": 16470, + "ezra": 16471, + "policia": 16472, + "goodwill": 16473, + "geraldo": 16474, + "vitriolic": 16475, + "tilley": 16476, + "mania": 16477, + "emperor": 16478, + "thrash": 16479, + "hygiene": 16480, + "digger": 16481, + "zones": 16482, + "nho": 16483, + "navigate": 16484, + "shordy": 16485, + "aiden": 16486, + "delaware": 16487, + "rachet": 16488, + "adrenaline": 16489, + "trumpet": 16490, + "#jk": 16491, + "haney": 16492, + "forks": 16493, + "mando": 16494, + "teacher's": 16495, + "sk": 16496, + "supplier": 16497, + "humm": 16498, + "paisley": 16499, + "chucky": 16500, + "ethanol": 16501, + "dhe": 16502, + "lifespan": 16503, + "greets": 16504, + "cig": 16505, + "mot": 16506, + "dming": 16507, + "letto": 16508, + "sehun": 16509, + "lee's": 16510, + "scarlet": 16511, + "docs": 16512, + "busters": 16513, + "couldve": 16514, + "purses": 16515, + "tote": 16516, + "waging": 16517, + "sanctions": 16518, + "infertile": 16519, + "dissappointing": 16520, + "#sohappy": 16521, + "senhor": 16522, + "ballots": 16523, + "riri": 16524, + "quindi": 16525, + "overdose": 16526, + "misdirection": 16527, + "trample": 16528, + "yawning": 16529, + "pinnacle": 16530, + "wonga": 16531, + "mich": 16532, + "simmons": 16533, + "goalie": 16534, + "grandbabies": 16535, + "babbitt": 16536, + "formulaic": 16537, + "vemos": 16538, + "demagoguery": 16539, + "booties": 16540, + "adriana": 16541, + "incomes": 16542, + "argentinians": 16543, + "dibs": 16544, + "plis": 16545, + "#aquarius": 16546, + "deserts": 16547, + "creams": 16548, + "protest": 16549, + "invasions": 16550, + "evelyn": 16551, + "reaches": 16552, + "masala": 16553, + "ede": 16554, + "runway": 16555, + "sanders": 16556, + "strategies": 16557, + "suckle": 16558, + "moldy": 16559, + "cobra": 16560, + "sahib": 16561, + "ect": 16562, + "perrie": 16563, + "naka": 16564, + "treatments": 16565, + "infiltrated": 16566, + "yeet": 16567, + "notified": 16568, + "unblocked": 16569, + "miserably": 16570, + "tempt": 16571, + "tyler's": 16572, + "economies": 16573, + "artsy": 16574, + "instinct": 16575, + "assertion": 16576, + "shithouse": 16577, + "cleanse": 16578, + "dispelling": 16579, + "cu": 16580, + "identify": 16581, + "shoutouts": 16582, + "kosh": 16583, + "ecf": 16584, + "sarebbe": 16585, + "hotties": 16586, + "dimensional": 16587, + "soch": 16588, + "lynching": 16589, + "votos": 16590, + "responder": 16591, + "omron": 16592, + "announcements": 16593, + "breading": 16594, + "natin": 16595, + "heres": 16596, + "odysseus": 16597, + "absolutly": 16598, + "cardinals": 16599, + "theocracy": 16600, + "rachael": 16601, + "entrusted": 16602, + "diagnosed": 16603, + "d.a.": 16604, + "altro": 16605, + "housewife": 16606, + "dastardly": 16607, + "begining": 16608, + "lescott": 16609, + "grayson": 16610, + "rooftop": 16611, + "clickers": 16612, + "scotus": 16613, + "detonate": 16614, + "#virgo": 16615, + "hefty": 16616, + "casket": 16617, + "halftime": 16618, + "dinning": 16619, + "liners": 16620, + "yk": 16621, + "dimple": 16622, + "commute": 16623, + "rabbits": 16624, + "mamamia": 16625, + "conor": 16626, + "peasants": 16627, + "presenting": 16628, + "coal": 16629, + "hashim": 16630, + "bffl": 16631, + "blasted": 16632, + "#what": 16633, + "shyte": 16634, + "infused": 16635, + "asda": 16636, + "muschamp": 16637, + "quid": 16638, + "lizzy": 16639, + "endangering": 16640, + "iran's": 16641, + "willis": 16642, + "huckabee": 16643, + "storming": 16644, + "garth": 16645, + "equated": 16646, + "oomf's": 16647, + "sai": 16648, + "elsa": 16649, + "tinted": 16650, + "blossom": 16651, + "menace": 16652, + "gibbon": 16653, + "appreciating": 16654, + "mossad": 16655, + "proudly": 16656, + "sarap": 16657, + "#annoying": 16658, + "everythingg": 16659, + "mystic": 16660, + "judiciary": 16661, + "germs": 16662, + "habitually": 16663, + "darts": 16664, + "populace": 16665, + "musicals": 16666, + "snowstorms": 16667, + "wrongdoing": 16668, + "continuation": 16669, + "clogged": 16670, + "jillian": 16671, + "gabbar": 16672, + "fiscally": 16673, + "cornwell": 16674, + "leeching": 16675, + "mcdonnell": 16676, + "middleman": 16677, + "unconstitutional": 16678, + "bladder": 16679, + "tal": 16680, + "#thewalkingdead": 16681, + "kyla": 16682, + "carving": 16683, + "#nf": 16684, + "vla": 16685, + "utility": 16686, + "crickets": 16687, + "candidacy": 16688, + "nausea": 16689, + "protections": 16690, + "hollyoaks": 16691, + "duplicate": 16692, + "ashlee": 16693, + "sphincter": 16694, + "lambert": 16695, + "za": 16696, + "brittney": 16697, + "spank": 16698, + "donny": 16699, + "xae": 16700, + "prosecutors": 16701, + "ravens": 16702, + "eeww": 16703, + "abundance": 16704, + "nhl": 16705, + "gayy": 16706, + "site's": 16707, + "coral": 16708, + "pree": 16709, + "hotness": 16710, + "foams": 16711, + "rancho": 16712, + "quede": 16713, + "thermos": 16714, + "l'ho": 16715, + "juries": 16716, + "indulge": 16717, + "celular": 16718, + "pampers": 16719, + "getcha": 16720, + "ceramic": 16721, + "collin": 16722, + "crumble": 16723, + "accuser": 16724, + "swoop": 16725, + "stuart": 16726, + "highs": 16727, + "boleh": 16728, + "antisocial": 16729, + "crunk": 16730, + "easterners": 16731, + "clara": 16732, + "sonn": 16733, + "droppin": 16734, + "immortal": 16735, + "imperials": 16736, + "wank": 16737, + "dovey": 16738, + "pleassee": 16739, + "moderators": 16740, + "contour": 16741, + "ook": 16742, + "zelda": 16743, + "munroe": 16744, + "visions": 16745, + "ideologue": 16746, + "trapping": 16747, + "wonderfull": 16748, + "fixes": 16749, + "woes": 16750, + "anathema": 16751, + "udi": 16752, + "cinquenta": 16753, + "condoned": 16754, + "dill": 16755, + "wimpy": 16756, + "mumma": 16757, + "jurisprudence": 16758, + "satin": 16759, + "parity": 16760, + "corazon": 16761, + "as'f": 16762, + "candies": 16763, + "shae": 16764, + "boosting": 16765, + "blinded": 16766, + "overlook": 16767, + "belgian": 16768, + "allt": 16769, + "buat": 16770, + "arum": 16771, + "aloe": 16772, + "spirituality": 16773, + "underwater": 16774, + "stupide": 16775, + "sshh": 16776, + "trumbo": 16777, + "skye": 16778, + "lords": 16779, + "yap": 16780, + "hostesses": 16781, + "blazer": 16782, + "bathe": 16783, + "wetbacks": 16784, + "missyou": 16785, + "dui's": 16786, + "esperando": 16787, + "tonsils": 16788, + "romper": 16789, + "hostage": 16790, + "crony": 16791, + "rodriguez": 16792, + "kisser": 16793, + "whoaa": 16794, + "aspiring": 16795, + "trivializing": 16796, + "wisc": 16797, + "righties": 16798, + "dai": 16799, + "shufflers": 16800, + "tonights": 16801, + "acquitted": 16802, + "halsey": 16803, + "sears": 16804, + "mustapha": 16805, + "charcoal": 16806, + "kalifornia": 16807, + "puneet": 16808, + "restitution": 16809, + "valerie": 16810, + "marker": 16811, + "prey": 16812, + "tweenie": 16813, + "pampered": 16814, + "malia": 16815, + "jrpg": 16816, + "cretinous": 16817, + "erode": 16818, + "algum": 16819, + "developers": 16820, + "sulked": 16821, + "austin's": 16822, + "enis": 16823, + "sandow": 16824, + "nm": 16825, + "digo": 16826, + "grossed": 16827, + "chey": 16828, + "sanyu": 16829, + "pl": 16830, + "eb": 16831, + "wittle": 16832, + "ridiculousness": 16833, + "#music": 16834, + "smirk": 16835, + "director's": 16836, + "skydome": 16837, + "wang": 16838, + "mathematics": 16839, + "perjury": 16840, + "skit": 16841, + "moto": 16842, + "cada": 16843, + "git": 16844, + "horns": 16845, + "tter": 16846, + "usted": 16847, + "petrol": 16848, + "jerome": 16849, + "billie": 16850, + "bitchslap": 16851, + "stimulating": 16852, + "idont": 16853, + "catalog": 16854, + "brackets": 16855, + "interactions": 16856, + "renaissance": 16857, + "tomarrow": 16858, + "fresher": 16859, + "internationalist": 16860, + "rancid": 16861, + "indentured": 16862, + "fx": 16863, + "c.d.": 16864, + "progs": 16865, + "hallmark": 16866, + "commissar": 16867, + "tangy": 16868, + "everythings": 16869, + "brides": 16870, + "=]]": 16871, + "maynor": 16872, + "addressed": 16873, + "vikings": 16874, + "anglos": 16875, + "sorbet": 16876, + "clownish": 16877, + "ncaa": 16878, + "#sotired": 16879, + "trong": 16880, + "raleigh": 16881, + "mumford": 16882, + "fugate": 16883, + "poppa": 16884, + "stephanopoulos": 16885, + "mandates": 16886, + "quy": 16887, + "millie": 16888, + "retorts": 16889, + "knowit": 16890, + "flown": 16891, + "alvin": 16892, + "ticking": 16893, + "moyles": 16894, + "iot": 16895, + "salem": 16896, + "prophesied": 16897, + "tamar": 16898, + "loft": 16899, + "contador": 16900, + "pitiable": 16901, + "kimchi": 16902, + "indictments": 16903, + "#priceless": 16904, + "statue": 16905, + "lawmakers": 16906, + "policewoman": 16907, + "blitzer": 16908, + "deactivated": 16909, + "unelected": 16910, + "pervert": 16911, + "avail": 16912, + "bab": 16913, + "legals": 16914, + "stevens": 16915, + "norelco": 16916, + "foda": 16917, + "rell": 16918, + "lattes": 16919, + "enquanto": 16920, + "scolari": 16921, + "appreciative": 16922, + "intimidated": 16923, + "stapler": 16924, + "kase": 16925, + "cob": 16926, + "fats": 16927, + "weakminded": 16928, + "darfur": 16929, + "kerner": 16930, + "elton": 16931, + "provee": 16932, + "howeva": 16933, + "festivals": 16934, + "#realtalk": 16935, + "logica": 16936, + "ec": 16937, + "jacquees": 16938, + "pu": 16939, + "toffee": 16940, + "dorms": 16941, + "teabagger": 16942, + "phone's": 16943, + "pnya": 16944, + "saudi's": 16945, + "argies": 16946, + "thieve": 16947, + "eeda": 16948, + "farz": 16949, + "untd": 16950, + "squalor": 16951, + "gp": 16952, + "#friends": 16953, + "listenin": 16954, + "asab": 16955, + "victorian": 16956, + "pasado": 16957, + "legge": 16958, + "serenade": 16959, + "repealed": 16960, + "refineries": 16961, + "fuckya": 16962, + "dumbazz": 16963, + "afucking": 16964, + "bisexual": 16965, + "criar": 16966, + "tossing": 16967, + "ira": 16968, + "jayla": 16969, + "swtor": 16970, + "jpe": 16971, + "eng": 16972, + "stark": 16973, + "verd": 16974, + "vilket": 16975, + "jordanians": 16976, + "dado": 16977, + "narnia": 16978, + "cece": 16979, + "jhc": 16980, + "dominique": 16981, + "lucia": 16982, + "stockholders": 16983, + "entitlements": 16984, + "hardcover": 16985, + "photogenic": 16986, + "azzhole": 16987, + "collaboration": 16988, + "eiffel": 16989, + "olbermann": 16990, + "gameday": 16991, + "titanium": 16992, + "screenshotted": 16993, + "hyde": 16994, + "diced": 16995, + "misinformation": 16996, + "malouda": 16997, + "winnie": 16998, + "keg": 16999, + "hafner": 17000, + "besmirch": 17001, + "#awesome": 17002, + "hadn": 17003, + "shiitt": 17004, + "cyou": 17005, + "marginalize": 17006, + "kehlani": 17007, + "privata": 17008, + "sasebo": 17009, + "aipac": 17010, + "lindie": 17011, + "gwapo": 17012, + "majors": 17013, + "beckel": 17014, + "zaddy": 17015, + "int": 17016, + "payrolls": 17017, + "despotic": 17018, + "lawmaker": 17019, + "conducteur": 17020, + "biofuel": 17021, + "bushwhackers": 17022, + "pomegranate": 17023, + "citizenry": 17024, + "aimed": 17025, + "murtha": 17026, + "nghi": 17027, + "howick": 17028, + "packwood": 17029, + "massacre": 17030, + "scripture": 17031, + "motivates": 17032, + "margaret": 17033, + "passable": 17034, + "innan": 17035, + "arbeitet": 17036, + "buts": 17037, + "isolationist": 17038, + "moochelle": 17039, + "embarassing": 17040, + "laurinaitis": 17041, + "panetta": 17042, + "wrenching": 17043, + "haih": 17044, + "venga": 17045, + "array": 17046, + "stormfront": 17047, + "rechargeable": 17048, + "#mtvhottest": 17049, + "interleague": 17050, + "plist": 17051, + "monserrate": 17052, + "fianza": 17053, + "bambaataa": 17054, + "schollys": 17055, + "memphiz": 17056, + "bcus": 17057, + "cartilage": 17058, + "isheep": 17059, + "pier": 17060, + "rugged": 17061, + "succeding": 17062, + "notorious": 17063, + "vary": 17064, + "dsts": 17065, + "lori": 17066, + "redistributing": 17067, + "discorso": 17068, + "bltch": 17069, + "delusi": 17070, + "pissin": 17071, + "itches": 17072, + "whatta": 17073, + "exynos": 17074, + "beater": 17075, + "lder": 17076, + "kless": 17077, + "touhey": 17078, + "powwa": 17079, + "angelica": 17080, + "profligate": 17081, + "bitsko": 17082, + "#7": 17083, + "g.o.p.": 17084, + "balack": 17085, + "liao": 17086, + "feuded": 17087, + "overweening": 17088, + "exual": 17089, + "interference": 17090, + "bondholders": 17091, + "quaida": 17092, + "sirasa": 17093, + "growapair": 17094, + "demtards": 17095, + "oavsett": 17096, + "demint": 17097, + "oposicion": 17098, + "imbiciles": 17099, + "thegop": 17100, + "ecdi": 17101, + "clint": 17102, + "hickey": 17103, + "digas": 17104, + "verga": 17105, + "landon": 17106, + "slash": 17107, + "alex's": 17108, + "bridesmaid": 17109, + "whhyy": 17110, + "cruelty": 17111, + "blatant": 17112, + "measuring": 17113, + "fry's": 17114, + "busiest": 17115, + "robbins": 17116, + "yano": 17117, + "forecast": 17118, + "exellent": 17119, + "wallace": 17120, + "bending": 17121, + "yams": 17122, + "lauren's": 17123, + "sleepyy": 17124, + "chaser": 17125, + "tomorroww": 17126, + "porsche": 17127, + "nebraska": 17128, + "hosts": 17129, + "belfast": 17130, + "teh": 17131, + "casper": 17132, + "smith's": 17133, + "poquito": 17134, + "flake": 17135, + "tux": 17136, + "understaffed": 17137, + ":-))": 17138, + "stefan": 17139, + "badminton": 17140, + "bronze": 17141, + "hecho": 17142, + "recomend": 17143, + "audiobook": 17144, + "dami": 17145, + "brownskin": 17146, + "carr": 17147, + "bastille": 17148, + "magnifique": 17149, + "fianc": 17150, + "wounds": 17151, + "fir": 17152, + "cierra": 17153, + "participating": 17154, + "bgc": 17155, + "nighas": 17156, + "doubted": 17157, + "projector": 17158, + "mak": 17159, + "odee": 17160, + "quickest": 17161, + "woof": 17162, + "enthusiasts": 17163, + "drills": 17164, + "colleen": 17165, + "cst": 17166, + "ceilings": 17167, + "irving": 17168, + "partido": 17169, + "haate": 17170, + "pookie": 17171, + "fussy": 17172, + "knockout": 17173, + "professionalism": 17174, + "#lovethem": 17175, + "scrabble": 17176, + "heidi": 17177, + "saggy": 17178, + "accordingly": 17179, + "organ": 17180, + "fridayy": 17181, + "azalea": 17182, + "reproduction": 17183, + "fanbase": 17184, + "kali": 17185, + "certo": 17186, + "tuu": 17187, + "sorte": 17188, + "clarke": 17189, + "ere": 17190, + "sprayer": 17191, + "underwood": 17192, + "pienso": 17193, + "lockdown": 17194, + "lindas": 17195, + "simplest": 17196, + "martinis": 17197, + "mackenzie": 17198, + "malapit": 17199, + "musta": 17200, + "thongs": 17201, + "hice": 17202, + "chanyeol": 17203, + "vomiting": 17204, + "roomy": 17205, + "j'en": 17206, + "lookout": 17207, + "casi": 17208, + "enthralling": 17209, + "vienna": 17210, + "jin": 17211, + "trustworthy": 17212, + "brazy": 17213, + "school's": 17214, + "pnd": 17215, + "toto": 17216, + "mtn": 17217, + "cours": 17218, + "bonnet": 17219, + "oracle": 17220, + "#fingerscrossed": 17221, + "mayhem": 17222, + "robyn": 17223, + "volunteers": 17224, + "cri": 17225, + "assalamualaikum": 17226, + "heart's": 17227, + "cf": 17228, + "whn": 17229, + "oils": 17230, + "dabs": 17231, + "gallo": 17232, + "tmi": 17233, + "reconsider": 17234, + "bennett": 17235, + "cram": 17236, + "kana": 17237, + "clues": 17238, + "maw": 17239, + "sway": 17240, + "trimmed": 17241, + "choppy": 17242, + "dougie": 17243, + "foolin": 17244, + "nk": 17245, + "poses": 17246, + "nocturnal": 17247, + "pledge": 17248, + "renewed": 17249, + "luxurious": 17250, + "kits": 17251, + "derien": 17252, + "bandana": 17253, + "ttyl": 17254, + "#addicted": 17255, + "weighed": 17256, + "percy": 17257, + "narration": 17258, + "monique": 17259, + "mythology": 17260, + "extent": 17261, + "crummy": 17262, + "imperfect": 17263, + "ln": 17264, + "#preach": 17265, + "truss": 17266, + "#yum": 17267, + "spiritually": 17268, + "estos": 17269, + "kml": 17270, + "bouncy": 17271, + "ozzy": 17272, + "magnets": 17273, + "ht": 17274, + "varieties": 17275, + "pobre": 17276, + "psalm": 17277, + "#nervous": 17278, + "rara": 17279, + "snotty": 17280, + "roadtrip": 17281, + "x's": 17282, + "lennon": 17283, + "gaps": 17284, + "seguro": 17285, + "opt": 17286, + "contrast": 17287, + "yellowtail": 17288, + "lain": 17289, + "fricking": 17290, + "yuup": 17291, + "stalkers": 17292, + "tamia": 17293, + "callie": 17294, + "softer": 17295, + "lacey": 17296, + "popsicle": 17297, + "floppy": 17298, + "jefferson": 17299, + "tivo": 17300, + "simp": 17301, + "remained": 17302, + "readyy": 17303, + "hound": 17304, + "lotr": 17305, + "lyf": 17306, + "gros": 17307, + "blondie": 17308, + "funday": 17309, + "pinches": 17310, + "#capricorn": 17311, + "esok": 17312, + "chiefs": 17313, + "salami": 17314, + "mija": 17315, + "hoed": 17316, + "designated": 17317, + "pizzeria": 17318, + "sitter": 17319, + "throats": 17320, + "sami": 17321, + "ghana": 17322, + "milly": 17323, + "jawns": 17324, + "lm": 17325, + "porridge": 17326, + "pursue": 17327, + "movements": 17328, + "codeine": 17329, + "pple": 17330, + "availability": 17331, + "#daymade": 17332, + "exhaust": 17333, + "properties": 17334, + "rehearsals": 17335, + "thn": 17336, + "slushy": 17337, + "unbothered": 17338, + "dory": 17339, + "baguette": 17340, + "ui": 17341, + "heats": 17342, + "emmy": 17343, + "fille": 17344, + "cae": 17345, + "spouse": 17346, + "angelo": 17347, + "deliciously": 17348, + "napoleon": 17349, + "connecticut": 17350, + "#greysanatomy": 17351, + "tbm": 17352, + "nsync": 17353, + "mange": 17354, + "cathy": 17355, + "wasp": 17356, + "excitedd": 17357, + "curt": 17358, + "daydream": 17359, + "provider": 17360, + "prophet": 17361, + "locos": 17362, + "nadine": 17363, + "collected": 17364, + "organised": 17365, + "makeover": 17366, + "attracts": 17367, + "remington": 17368, + "saddle": 17369, + "(&;": 17370, + "nothings": 17371, + "claw": 17372, + "freaken": 17373, + "golds": 17374, + "pedestrian": 17375, + "maldito": 17376, + "salsas": 17377, + "philosophical": 17378, + "swamp": 17379, + "nuit": 17380, + "coffin": 17381, + "maganda": 17382, + "thr": 17383, + "seductive": 17384, + "dernier": 17385, + "fiasco": 17386, + "pretended": 17387, + "obligated": 17388, + "ilu": 17389, + "nuvi": 17390, + "sdd": 17391, + "rue": 17392, + "lan": 17393, + "congratss": 17394, + "memorized": 17395, + "outgoing": 17396, + "pao": 17397, + "koala": 17398, + "beaver": 17399, + "peg": 17400, + "baddies": 17401, + "wiper": 17402, + "fuq": 17403, + "fulfilling": 17404, + "strangest": 17405, + "daryl": 17406, + "moth": 17407, + "lamest": 17408, + "mayweather": 17409, + "zu": 17410, + "gosling": 17411, + "zion": 17412, + "shrink": 17413, + "luckyy": 17414, + "nb": 17415, + "caitlyn": 17416, + "dodgy": 17417, + "helpless": 17418, + "coarse": 17419, + "evaluation": 17420, + "urghh": 17421, + "paintings": 17422, + "restore": 17423, + "stalks": 17424, + "kristin": 17425, + "majestic": 17426, + "kyrie": 17427, + "wd": 17428, + "thottie": 17429, + "unicorns": 17430, + "jodi": 17431, + "squishy": 17432, + "trinidad": 17433, + "titan": 17434, + "drake's": 17435, + "#teamnosleep": 17436, + "remeber": 17437, + "geesh": 17438, + "devil's": 17439, + "headlights": 17440, + "ounces": 17441, + "cisco": 17442, + "odyssey": 17443, + "mikayla": 17444, + "occurred": 17445, + "cdfu": 17446, + "#heyboo": 17447, + "bona": 17448, + "#omg": 17449, + "predicted": 17450, + "puns": 17451, + "ces": 17452, + "aioli": 17453, + "holler": 17454, + "qua": 17455, + "stereotypical": 17456, + "fois": 17457, + "sweatin": 17458, + "tier": 17459, + "taps": 17460, + "tyrone": 17461, + "ml": 17462, + "edwin": 17463, + "arugula": 17464, + "laguna": 17465, + "cages": 17466, + "gory": 17467, + "wendys": 17468, + "cat's": 17469, + "dejo": 17470, + "irk": 17471, + "anaconda": 17472, + "praising": 17473, + "glaze": 17474, + "stumble": 17475, + "thermostat": 17476, + "daniela": 17477, + "pur": 17478, + "agua": 17479, + "#pt": 17480, + "guinness": 17481, + "frites": 17482, + "inter": 17483, + "bora": 17484, + "obsessing": 17485, + "nolan": 17486, + "#storyofmylife": 17487, + "hampton": 17488, + "stripping": 17489, + "pqp": 17490, + "asylum": 17491, + "sinister": 17492, + "bolts": 17493, + "usc": 17494, + "j'adore": 17495, + "stem": 17496, + "addy": 17497, + "#summer": 17498, + "component": 17499, + "poles": 17500, + "invalid": 17501, + "browse": 17502, + "nobodies": 17503, + "#6": 17504, + "airports": 17505, + "omds": 17506, + "witcho": 17507, + "curving": 17508, + "slab": 17509, + "rapid": 17510, + "kourtney": 17511, + "aimee": 17512, + "#wow": 17513, + "dolled": 17514, + "natasha": 17515, + "infamous": 17516, + "sprinkled": 17517, + "asa": 17518, + "vinci": 17519, + "comebacks": 17520, + "camelback": 17521, + "donating": 17522, + "dj's": 17523, + "creepers": 17524, + "inferno": 17525, + "xoxox": 17526, + "amish": 17527, + "undecided": 17528, + "expo": 17529, + "amusement": 17530, + "everynight": 17531, + "starburst": 17532, + "bandz": 17533, + "cielo": 17534, + "booy": 17535, + "bitchin": 17536, + "pistachio": 17537, + "toasty": 17538, + "dreamer": 17539, + "twister": 17540, + "tkt": 17541, + "kathryn": 17542, + "emily's": 17543, + "gurrl": 17544, + "modo": 17545, + "dei": 17546, + "chuu": 17547, + "mommy's": 17548, + "adobe": 17549, + "fundamentals": 17550, + "lash": 17551, + "atlantis": 17552, + "paella": 17553, + "balm": 17554, + "remastering": 17555, + "icons": 17556, + "russ": 17557, + "ze": 17558, + "grandkids": 17559, + "salvador": 17560, + "cambridge": 17561, + "camaro": 17562, + "outsiders": 17563, + "birthday's": 17564, + "krups": 17565, + "gdnight": 17566, + "interrupting": 17567, + "duped": 17568, + "announcing": 17569, + "chiropractor": 17570, + "monthsary": 17571, + "fiona": 17572, + "nominate": 17573, + "foreva": 17574, + "nv": 17575, + "fillet": 17576, + "steamy": 17577, + "hols": 17578, + "humming": 17579, + "doomed": 17580, + "lena": 17581, + "tubing": 17582, + "hannah's": 17583, + "bbz": 17584, + "bmt": 17585, + "apush": 17586, + "eep": 17587, + "jell": 17588, + "kimberly": 17589, + "tickles": 17590, + "hysterically": 17591, + "mouf": 17592, + "sarah's": 17593, + "romans": 17594, + "reruns": 17595, + "gasp": 17596, + "midi": 17597, + "piled": 17598, + "vastly": 17599, + "ahhaha": 17600, + "hugely": 17601, + "poof": 17602, + "bursting": 17603, + "ricotta": 17604, + "gmorning": 17605, + "quintessential": 17606, + "dwayne": 17607, + "passer": 17608, + "halle": 17609, + "tahoe": 17610, + "audios": 17611, + "gratitude": 17612, + "americas": 17613, + "spellbinding": 17614, + "cleavage": 17615, + "bullshitting": 17616, + "#cool": 17617, + "tches": 17618, + "burlesque": 17619, + "arnt": 17620, + "vibrating": 17621, + "ridden": 17622, + "brittle": 17623, + "stu": 17624, + "ao": 17625, + "servings": 17626, + "croissants": 17627, + "yanno": 17628, + "aired": 17629, + "unpacking": 17630, + "warnings": 17631, + "mesmo": 17632, + "dips": 17633, + "disbelief": 17634, + "cinematic": 17635, + "essa": 17636, + "ammo": 17637, + "kiddies": 17638, + "wilderness": 17639, + "jocelyn": 17640, + "sml": 17641, + "chaotic": 17642, + "pamphlet": 17643, + "bitten": 17644, + "salvation": 17645, + "macy": 17646, + "logs": 17647, + "scramble": 17648, + "landmark": 17649, + "domo": 17650, + "hiatus": 17651, + "girrll": 17652, + "thank's": 17653, + "andres": 17654, + "lss": 17655, + "seekers": 17656, + "#pissed": 17657, + "snapback": 17658, + "taped": 17659, + "topper": 17660, + "mri": 17661, + "reluctant": 17662, + "deh": 17663, + "bidding": 17664, + "tiana": 17665, + "origin": 17666, + "panicking": 17667, + "teared": 17668, + "gong": 17669, + "elastic": 17670, + "#kca": 17671, + "coon": 17672, + "ent": 17673, + "sax": 17674, + "unbeatable": 17675, + "markers": 17676, + "burr": 17677, + "minee": 17678, + "knuckles": 17679, + "flashy": 17680, + "juntas": 17681, + "fah": 17682, + "pest": 17683, + "tumble": 17684, + "eyelash": 17685, + "grapefruit": 17686, + "dissertation": 17687, + "ommgg": 17688, + "donation": 17689, + "hacker": 17690, + "doubting": 17691, + "nz": 17692, + "eps": 17693, + "neighbourhood": 17694, + "amir": 17695, + "mulan": 17696, + "armed": 17697, + "tones": 17698, + "sennheiser": 17699, + "lung": 17700, + "mags": 17701, + "valencia": 17702, + "mao": 17703, + "eeh": 17704, + "khalil": 17705, + "sirloin": 17706, + "sidney": 17707, + "mlb": 17708, + "rinse": 17709, + "colleague": 17710, + "tic": 17711, + "laurel": 17712, + "sweatshirts": 17713, + "radiohead": 17714, + "biking": 17715, + "apollo": 17716, + "soundtracks": 17717, + "brunettes": 17718, + "raccoon": 17719, + "diam": 17720, + "influenced": 17721, + "intensity": 17722, + "precision": 17723, + "glitches": 17724, + "#goodtimes": 17725, + "pleaser": 17726, + "nevertheless": 17727, + "gaah": 17728, + "callate": 17729, + "snuff": 17730, + "oxtail": 17731, + "shoppin": 17732, + "ark": 17733, + "journeys": 17734, + "breakin": 17735, + "loc": 17736, + "danish": 17737, + "levi's": 17738, + "ermm": 17739, + "contesta": 17740, + "alhamdulilah": 17741, + "vita": 17742, + "dass": 17743, + "baru": 17744, + "vibin": 17745, + "isabel": 17746, + "#tgif": 17747, + "relation": 17748, + "hunni": 17749, + "exceptions": 17750, + "#fuck": 17751, + "bouquet": 17752, + "surroundings": 17753, + "igualmente": 17754, + "bbygirl": 17755, + "#truelove": 17756, + "khaled": 17757, + "caramelized": 17758, + "disappears": 17759, + "hustling": 17760, + "alrdy": 17761, + "yeezus": 17762, + "unico": 17763, + "sugary": 17764, + "difficulties": 17765, + "guyz": 17766, + "fluent": 17767, + "cork": 17768, + "towie": 17769, + "gerald": 17770, + "thnk": 17771, + "upgrading": 17772, + "ru": 17773, + "matured": 17774, + "tonsillitis": 17775, + "dashboard": 17776, + "skyline": 17777, + "finessed": 17778, + "bearable": 17779, + "casserole": 17780, + "ohmygosh": 17781, + "cartel": 17782, + "churros": 17783, + "bushes": 17784, + "millenium": 17785, + "tampon": 17786, + "goodnite": 17787, + "dieting": 17788, + "flashes": 17789, + "suggests": 17790, + "imiss": 17791, + "delightfully": 17792, + "wop": 17793, + "terrace": 17794, + "opo": 17795, + "unimaginative": 17796, + "washy": 17797, + "newport": 17798, + "installing": 17799, + "scoops": 17800, + "bios": 17801, + "prays": 17802, + "tings": 17803, + "someplace": 17804, + "coyote": 17805, + "martes": 17806, + "erick": 17807, + "truue": 17808, + "caso": 17809, + "cincinnati": 17810, + "completes": 17811, + "songg": 17812, + "snail": 17813, + "sef": 17814, + "mika": 17815, + "dimension": 17816, + "waka": 17817, + "keller": 17818, + "unnoticed": 17819, + "bob's": 17820, + "heros": 17821, + "diba": 17822, + "awaits": 17823, + "landscape": 17824, + "homey": 17825, + "hahahhahaha": 17826, + "gage": 17827, + "summerlin": 17828, + "shrimps": 17829, + "advertized": 17830, + "salve": 17831, + "merchant": 17832, + "gossiping": 17833, + "sequels": 17834, + "lmfaao": 17835, + "sips": 17836, + "eclipse": 17837, + "mimosa": 17838, + "morrison": 17839, + "daww": 17840, + "finland": 17841, + "ivory": 17842, + "ahold": 17843, + "crotch": 17844, + "cuddy": 17845, + "travelers": 17846, + "umma": 17847, + "o:": 17848, + "bollocks": 17849, + "vuelve": 17850, + "plasma": 17851, + "offices": 17852, + "ultrasound": 17853, + "bussing": 17854, + "wer": 17855, + "firmware": 17856, + "complimenting": 17857, + "ashley's": 17858, + "werewolf": 17859, + "cambia": 17860, + "lecturer": 17861, + "shittiest": 17862, + "betrayal": 17863, + "dimes": 17864, + "atcha": 17865, + "iyaa": 17866, + "esther": 17867, + "mma": 17868, + "hickies": 17869, + "damian": 17870, + "testimony": 17871, + "escort": 17872, + "innit": 17873, + "lifeguard": 17874, + "dokie": 17875, + "clit": 17876, + "dood": 17877, + "tambien": 17878, + "justine": 17879, + "jedi": 17880, + "levantar": 17881, + "vocalist": 17882, + "hendrix": 17883, + "intolerant": 17884, + "sumthin": 17885, + "lolly": 17886, + "spills": 17887, + "chirping": 17888, + "cords": 17889, + "hal": 17890, + "womb": 17891, + "hahahahahahahahahaha": 17892, + "frap": 17893, + "watever": 17894, + "westside": 17895, + "fernando": 17896, + "drea": 17897, + "sed": 17898, + "fightin": 17899, + "preacher": 17900, + "vv": 17901, + "wallahi": 17902, + "vault": 17903, + "upfront": 17904, + "attach": 17905, + "maestro": 17906, + "dodged": 17907, + "bans": 17908, + ");": 17909, + "rudeness": 17910, + "collard": 17911, + "tutoring": 17912, + "exploding": 17913, + "pooping": 17914, + "ils": 17915, + "collide": 17916, + "poodle": 17917, + "corinthians": 17918, + "uyy": 17919, + "cabo": 17920, + "roxy": 17921, + "combos": 17922, + "girlfriend's": 17923, + "clout": 17924, + "raisins": 17925, + "sodium": 17926, + "contribution": 17927, + "jupiter": 17928, + "peruvian": 17929, + "momma's": 17930, + "lima": 17931, + "troubled": 17932, + "axel": 17933, + "ptddr": 17934, + "tshirts": 17935, + "ola": 17936, + "muahh": 17937, + "shedding": 17938, + "panza": 17939, + "slider": 17940, + "pendeja": 17941, + "viewed": 17942, + "zune": 17943, + "accidental": 17944, + "foggy": 17945, + "oye": 17946, + "minecraft": 17947, + "judgment": 17948, + "cuesta": 17949, + "scraped": 17950, + "aguanto": 17951, + "powdered": 17952, + "passive": 17953, + "shrugged": 17954, + "donne": 17955, + "grandpas": 17956, + "rb": 17957, + "treasures": 17958, + "reigns": 17959, + "entr": 17960, + "seriousness": 17961, + "weenie": 17962, + "teammate": 17963, + "guidebook": 17964, + "curds": 17965, + "rewatch": 17966, + ":]": 17967, + "cinco": 17968, + "kip": 17969, + "unfollowers": 17970, + "cobbler": 17971, + "certification": 17972, + "bff's": 17973, + "slimy": 17974, + "ebook": 17975, + "wrapper": 17976, + "fanta": 17977, + "stupidly": 17978, + "buisness": 17979, + "wrists": 17980, + "olaf": 17981, + "kroger": 17982, + "marrow": 17983, + "repulsive": 17984, + "corpus": 17985, + "itty": 17986, + "gustas": 17987, + "sizzling": 17988, + "quantum": 17989, + "prisoner": 17990, + "babyboy": 17991, + "measures": 17992, + "magina": 17993, + "cancellation": 17994, + "ferris": 17995, + "undone": 17996, + "who'll": 17997, + "sparkles": 17998, + "abigail": 17999, + "ritz": 18000, + "monty": 18001, + "tylenol": 18002, + "vem": 18003, + "burke": 18004, + "claus": 18005, + "charlie's": 18006, + "juega": 18007, + "creamed": 18008, + "ishh": 18009, + "retake": 18010, + "shakin": 18011, + "dv": 18012, + "faults": 18013, + "vengeance": 18014, + "translator": 18015, + "photographers": 18016, + "fainted": 18017, + "daytime": 18018, + "devoured": 18019, + "bahahahaha": 18020, + "katsu": 18021, + "plodding": 18022, + "freely": 18023, + "cait": 18024, + "nudity": 18025, + "qdoba": 18026, + "jap": 18027, + "phrases": 18028, + "://": 18029, + "darl": 18030, + "annoyance": 18031, + "amc": 18032, + "fattest": 18033, + "truffles": 18034, + "fishes": 18035, + "peng": 18036, + "yoh": 18037, + "spazzing": 18038, + "daring": 18039, + "sweetdreams": 18040, + "excalibur": 18041, + "sweeping": 18042, + "envelope": 18043, + "bahay": 18044, + "sauteed": 18045, + "calzone": 18046, + ":|": 18047, + "blanco": 18048, + "jukebox": 18049, + "comee": 18050, + "corps": 18051, + "wantin": 18052, + "pensando": 18053, + "environmental": 18054, + "enhanced": 18055, + "breakers": 18056, + "hatchet": 18057, + "moderately": 18058, + "butchered": 18059, + "springfield": 18060, + "miedo": 18061, + "handheld": 18062, + "corral": 18063, + "crayons": 18064, + "birthdaayy": 18065, + "keaton": 18066, + "tmrrw": 18067, + "whips": 18068, + "fack": 18069, + "graveyard": 18070, + "herpes": 18071, + "insyaallah": 18072, + "katelyn": 18073, + "fer": 18074, + "baffled": 18075, + "u've": 18076, + "keisha": 18077, + "uruguay": 18078, + "renovated": 18079, + "inshaallah": 18080, + "purp": 18081, + "bouts": 18082, + "compte": 18083, + "controversial": 18084, + "koi": 18085, + "desi": 18086, + "scarlett": 18087, + "accs": 18088, + "hahhaa": 18089, + "rand": 18090, + "bisous": 18091, + "stepmom": 18092, + "adaptor": 18093, + "manee": 18094, + "bofl": 18095, + "pawn": 18096, + "procrastinator": 18097, + "sanctuary": 18098, + "jalapenos": 18099, + "measurements": 18100, + "punta": 18101, + "swearr": 18102, + "swaggy": 18103, + "jsuis": 18104, + "ahahha": 18105, + "ayah": 18106, + "grier": 18107, + "rooney": 18108, + "whales": 18109, + "prestige": 18110, + "nome": 18111, + "sermon": 18112, + "gayest": 18113, + "msu": 18114, + "madea": 18115, + "bett": 18116, + "jajajajajajajajaja": 18117, + "sweeper": 18118, + "silicone": 18119, + "thrills": 18120, + "deuce": 18121, + "wary": 18122, + "verte": 18123, + "hunna": 18124, + "#bestfriends": 18125, + "bangtan": 18126, + "res": 18127, + "designing": 18128, + "furry": 18129, + "funnyy": 18130, + "jab": 18131, + "disappointingly": 18132, + "rudest": 18133, + "kena": 18134, + "incoming": 18135, + "liess": 18136, + "whisky": 18137, + "#onedirection": 18138, + "sou": 18139, + "slug": 18140, + "laker": 18141, + "juste": 18142, + "razr": 18143, + "marking": 18144, + "lint": 18145, + "scouts": 18146, + "duuh": 18147, + "capri": 18148, + "bcoz": 18149, + "locate": 18150, + "heed": 18151, + "dfl": 18152, + "eighth": 18153, + "highland": 18154, + "easton": 18155, + "unplugged": 18156, + "#confused": 18157, + "#beautiful": 18158, + "keychain": 18159, + "bleachers": 18160, + "dreaded": 18161, + "slipknot": 18162, + "zante": 18163, + "ons": 18164, + "kelly's": 18165, + "pastas": 18166, + "raison": 18167, + "limitations": 18168, + "onwards": 18169, + "reccomend": 18170, + "heheheh": 18171, + "reba": 18172, + "ofn": 18173, + "inventive": 18174, + "timothy": 18175, + "caro": 18176, + "tommrow": 18177, + "armani": 18178, + "pike": 18179, + "preseason": 18180, + "iyou": 18181, + "doris": 18182, + "rafa": 18183, + "lam": 18184, + "cansada": 18185, + "bran": 18186, + "spectrum": 18187, + "passage": 18188, + "uc": 18189, + "godly": 18190, + "socal": 18191, + "printers": 18192, + "topshop": 18193, + "magician": 18194, + "seeker": 18195, + "warrant": 18196, + "bons": 18197, + "#hilarious": 18198, + "aujourd'hui": 18199, + "processing": 18200, + "voicemails": 18201, + "moes": 18202, + "sql": 18203, + "wishy": 18204, + "drizzy": 18205, + "traumatized": 18206, + "colby": 18207, + "knuckle": 18208, + "biker": 18209, + "muchx": 18210, + "candice": 18211, + "kappa": 18212, + "preschoolers": 18213, + "shelly": 18214, + "cpr": 18215, + "lengthy": 18216, + "aree": 18217, + "babess": 18218, + "lordy": 18219, + "mystical": 18220, + "visitor": 18221, + "aham": 18222, + "vw": 18223, + "tomlinson": 18224, + "yuss": 18225, + "what're": 18226, + "cliched": 18227, + "calms": 18228, + "walkers": 18229, + "otter": 18230, + "fargo": 18231, + "stunned": 18232, + "\\\\": 18233, + "tampons": 18234, + "opus": 18235, + "temporarily": 18236, + "sloow": 18237, + "hells": 18238, + "girlss": 18239, + "creations": 18240, + "#socute": 18241, + "inspector": 18242, + "#crying": 18243, + "reveiw": 18244, + "reminiscent": 18245, + "partied": 18246, + "#on": 18247, + "asff": 18248, + "catchin": 18249, + "takis": 18250, + "kindest": 18251, + "slr": 18252, + "vp": 18253, + "juro": 18254, + "perfectt": 18255, + "tying": 18256, + "bodied": 18257, + "alana": 18258, + "wholesome": 18259, + "shah": 18260, + "guapa": 18261, + "poe": 18262, + "#10": 18263, + "hopelessly": 18264, + "yorkshire": 18265, + "ilysmm": 18266, + "styrofoam": 18267, + "nicca": 18268, + "roshes": 18269, + "shank": 18270, + "biceps": 18271, + "oster": 18272, + "bats": 18273, + "lotto": 18274, + "individually": 18275, + "substantial": 18276, + "senti": 18277, + "tournaments": 18278, + "ks": 18279, + "bossy": 18280, + "cauliflower": 18281, + "nth": 18282, + "aftertaste": 18283, + "hablame": 18284, + "riverside": 18285, + "screening": 18286, + "vein": 18287, + "swelling": 18288, + "hq": 18289, + "holi": 18290, + "abba": 18291, + "tema": 18292, + "venues": 18293, + "ib": 18294, + "dn": 18295, + "timers": 18296, + "sobra": 18297, + "fic": 18298, + "gamecube": 18299, + "oso": 18300, + "envie": 18301, + "portraits": 18302, + "tyrese": 18303, + "pickin": 18304, + "grandchildren": 18305, + "towed": 18306, + "vivir": 18307, + "choo": 18308, + "sonrisa": 18309, + "tnt": 18310, + "gv": 18311, + "parle": 18312, + "sidelines": 18313, + "mahogany": 18314, + "ipa": 18315, + "sag": 18316, + "there'll": 18317, + "hula": 18318, + "#believe": 18319, + "yeyy": 18320, + ".i.a": 18321, + "pendejo": 18322, + "brats": 18323, + "bernard": 18324, + "roster": 18325, + "nono": 18326, + "texans": 18327, + "unsaid": 18328, + "wrath": 18329, + "obsessive": 18330, + "crees": 18331, + "amm": 18332, + "camden": 18333, + "fantasies": 18334, + "#bae": 18335, + "gonee": 18336, + "weighs": 18337, + "lololololol": 18338, + "cheeseburgers": 18339, + "glendale": 18340, + "confront": 18341, + "looney": 18342, + "objects": 18343, + "niice": 18344, + "christy": 18345, + "mow": 18346, + "ncis": 18347, + "maui": 18348, + "fuccin": 18349, + "unnecessarily": 18350, + "joanna": 18351, + "economical": 18352, + "flashed": 18353, + "profanity": 18354, + "layla": 18355, + "adverts": 18356, + "sandler": 18357, + "torturing": 18358, + "ballads": 18359, + "tris": 18360, + "fotos": 18361, + "craze": 18362, + "delectable": 18363, + "dmx": 18364, + "temptations": 18365, + "shiz": 18366, + "sheila": 18367, + "roulette": 18368, + "leek": 18369, + "blanc": 18370, + "=(": 18371, + "replacements": 18372, + "semaine": 18373, + "tiles": 18374, + "module": 18375, + "picslip": 18376, + "arthritis": 18377, + "excess": 18378, + "dayumm": 18379, + "stiles": 18380, + "jungkook": 18381, + "bookie": 18382, + "drawback": 18383, + "neglect": 18384, + "snitches": 18385, + "slit": 18386, + "retarted": 18387, + "grunge": 18388, + "assed": 18389, + "subbed": 18390, + "subscribed": 18391, + "yen": 18392, + "#whoops": 18393, + "overlooking": 18394, + "tans": 18395, + "ull": 18396, + "gool": 18397, + "americana": 18398, + "hedgehog": 18399, + "advisory": 18400, + "ironically": 18401, + "gabs": 18402, + "sobre": 18403, + "moisture": 18404, + "tilapia": 18405, + "fallon": 18406, + "tavern": 18407, + "heb": 18408, + "thinly": 18409, + "ebola": 18410, + "vh": 18411, + "wobbly": 18412, + "byron": 18413, + "smut": 18414, + "sprees": 18415, + "cosmic": 18416, + "lupe": 18417, + "predator": 18418, + "tenderloin": 18419, + "wiring": 18420, + "exhale": 18421, + "abrazo": 18422, + "hk": 18423, + "aurora": 18424, + "macaroons": 18425, + "abeg": 18426, + "wrinkles": 18427, + "oats": 18428, + "cobb": 18429, + "bry": 18430, + "cris": 18431, + "recycling": 18432, + "superbly": 18433, + "shootin": 18434, + "marisa": 18435, + "matts": 18436, + "ariana's": 18437, + "swagg": 18438, + "pau": 18439, + "bubblegum": 18440, + "caliber": 18441, + "velcro": 18442, + "feminism": 18443, + "weirdness": 18444, + "statuses": 18445, + "boondocks": 18446, + "buenass": 18447, + "bandit": 18448, + "fini": 18449, + "misspelled": 18450, + "aston": 18451, + "vieja": 18452, + "invitations": 18453, + "lenny": 18454, + "directors": 18455, + "activated": 18456, + "snoozer": 18457, + "cruddy": 18458, + "lengua": 18459, + "favourited": 18460, + "editorial": 18461, + "elder": 18462, + "tuyo": 18463, + "wad": 18464, + "watchable": 18465, + "bluffing": 18466, + "bootcamp": 18467, + "racer": 18468, + "techs": 18469, + "verdict": 18470, + "hadda": 18471, + "mcds": 18472, + "keri": 18473, + "canto": 18474, + "eugene": 18475, + "#21": 18476, + "hermosoo": 18477, + "breakthrough": 18478, + "jewels": 18479, + "latinas": 18480, + "seatbelt": 18481, + "scholar": 18482, + "delights": 18483, + "snappin": 18484, + "brightened": 18485, + "whey": 18486, + "friction": 18487, + "stunningly": 18488, + "reflections": 18489, + "vogue": 18490, + "knockoff": 18491, + "i'am": 18492, + "twats": 18493, + "cago": 18494, + "lalo": 18495, + "solving": 18496, + "disrespecting": 18497, + "taiwan": 18498, + "tew": 18499, + "drawers": 18500, + "jace": 18501, + "bishes": 18502, + "entertainer": 18503, + "lockscreen": 18504, + "nottingham": 18505, + "mahomies": 18506, + "leo's": 18507, + "sundress": 18508, + "carpenter": 18509, + "overated": 18510, + "wally": 18511, + "financially": 18512, + "#goaway": 18513, + "cumbersome": 18514, + "drains": 18515, + "destiny's": 18516, + "bxtches": 18517, + "vball": 18518, + "fig": 18519, + "clases": 18520, + "qc": 18521, + "striking": 18522, + "sammie": 18523, + "phoned": 18524, + "loneliness": 18525, + "expanded": 18526, + "comcast": 18527, + "loveu": 18528, + "wetter": 18529, + "koko": 18530, + "electro": 18531, + "remorse": 18532, + "t.v.": 18533, + "autism": 18534, + "sicker": 18535, + "mankind": 18536, + "hull": 18537, + "dunked": 18538, + "snicker": 18539, + "capricorn": 18540, + "socorro": 18541, + "omaha": 18542, + "reheated": 18543, + "bookshelf": 18544, + "deathly": 18545, + "vinny": 18546, + "lovvee": 18547, + "tut": 18548, + "tierna": 18549, + "senioritis": 18550, + "hipsters": 18551, + "burro": 18552, + "tubs": 18553, + "abomination": 18554, + "sequence": 18555, + "mau": 18556, + "justo": 18557, + "manor": 18558, + "reuniting": 18559, + "coping": 18560, + "comps": 18561, + "simba": 18562, + "explosive": 18563, + "dbz": 18564, + "professionally": 18565, + "camino": 18566, + "ahahahahah": 18567, + "heroin": 18568, + "iono": 18569, + "seb": 18570, + "crossover": 18571, + "remodeled": 18572, + "stools": 18573, + "accepts": 18574, + "dismissal": 18575, + "homeroom": 18576, + "uf": 18577, + "noe": 18578, + "#fb": 18579, + "underage": 18580, + "shinee": 18581, + "tougher": 18582, + "pierre": 18583, + "coisa": 18584, + "paperweight": 18585, + "yy": 18586, + "dumpster": 18587, + "boaa": 18588, + "considerate": 18589, + "rory": 18590, + "voila": 18591, + "shrug": 18592, + "transformer": 18593, + "aba": 18594, + "nik": 18595, + "unfit": 18596, + "academia": 18597, + "sourdough": 18598, + "bloods": 18599, + "seguir": 18600, + "operator": 18601, + "composer": 18602, + "expanding": 18603, + "splitter": 18604, + "fleas": 18605, + "respectable": 18606, + "applebees": 18607, + "endearing": 18608, + "daytona": 18609, + "repetition": 18610, + "menudo": 18611, + "decadent": 18612, + "handshake": 18613, + "depiction": 18614, + "pagii": 18615, + "wann": 18616, + "youngins": 18617, + "watts": 18618, + "bruuhh": 18619, + "nonstick": 18620, + "virtue": 18621, + "regalo": 18622, + "foward": 18623, + "flirty": 18624, + "estou": 18625, + "tess": 18626, + "bounced": 18627, + "albany": 18628, + "ox": 18629, + "adhesive": 18630, + "escuchando": 18631, + "dissed": 18632, + "hosted": 18633, + "cee": 18634, + "rhino": 18635, + "pantry": 18636, + "tasteful": 18637, + "freshest": 18638, + "#9": 18639, + "rx": 18640, + "ev": 18641, + "dayz": 18642, + "generator": 18643, + "breastfeeding": 18644, + "hicks": 18645, + "bleeds": 18646, + "ferry": 18647, + "beforehand": 18648, + "tartare": 18649, + "benadryl": 18650, + "adorbs": 18651, + "jcole": 18652, + "lia": 18653, + "coney": 18654, + "bubs": 18655, + "rih": 18656, + "#5sosfam": 18657, + "mugged": 18658, + "{}:": 18659, + "vendo": 18660, + "kirsten": 18661, + "#i": 18662, + "uzi": 18663, + "silva": 18664, + "dx": 18665, + "spm": 18666, + "hannibal": 18667, + "moonshine": 18668, + "pizzaa": 18669, + "translated": 18670, + "papaya": 18671, + "amorr": 18672, + "whippin": 18673, + "hermosaa": 18674, + "harassed": 18675, + "groom": 18676, + "yayayay": 18677, + "wpp": 18678, + "retiring": 18679, + "hahaah": 18680, + "dozens": 18681, + "sagittarius": 18682, + "champaign": 18683, + "sprinkle": 18684, + "comedians": 18685, + "kalin": 18686, + "plumbing": 18687, + "yeay": 18688, + "howw": 18689, + "sawyer": 18690, + "ripe": 18691, + "reef": 18692, + "humping": 18693, + "dumpling": 18694, + "ropes": 18695, + "padded": 18696, + "fray": 18697, + "bambi": 18698, + "ritual": 18699, + "ud": 18700, + "#grateful": 18701, + "manz": 18702, + "doorbell": 18703, + "mochi": 18704, + "fareal": 18705, + "sighh": 18706, + "sayy": 18707, + "fedex": 18708, + "tester": 18709, + "beatiful": 18710, + "owner's": 18711, + "fern": 18712, + "flor": 18713, + "laur": 18714, + "timetable": 18715, + "jackpot": 18716, + "tantrum": 18717, + "himym": 18718, + "fleece": 18719, + "switches": 18720, + "marred": 18721, + "ses": 18722, + "raggedy": 18723, + "luvs": 18724, + "consecutive": 18725, + "#letsgo": 18726, + "striped": 18727, + "skrillex": 18728, + "convoluted": 18729, + "#helpme": 18730, + "dune": 18731, + "inhaler": 18732, + "prequel": 18733, + "drugged": 18734, + "dreamin": 18735, + "tait": 18736, + "mangos": 18737, + "pyjamas": 18738, + "tolerable": 18739, + "cleanser": 18740, + "llss": 18741, + "ug": 18742, + "orto": 18743, + "volver": 18744, + "smalls": 18745, + "flirts": 18746, + "pikachu": 18747, + "keepers": 18748, + "conner": 18749, + "nopee": 18750, + "byob": 18751, + "nando's": 18752, + "book's": 18753, + "freeman": 18754, + "rihanna's": 18755, + "pms": 18756, + "viking": 18757, + "unproductive": 18758, + "radiator": 18759, + "acquired": 18760, + "mercury": 18761, + "morrendo": 18762, + "threaded": 18763, + "quiera": 18764, + "capitol": 18765, + "farce": 18766, + "vii": 18767, + "craps": 18768, + "usefull": 18769, + "chopsticks": 18770, + "#true": 18771, + "wb": 18772, + "swirl": 18773, + "shelton": 18774, + "cupboard": 18775, + "joda": 18776, + "#sleepy": 18777, + "crabby": 18778, + "fdb": 18779, + "getcho": 18780, + "levante": 18781, + "engineered": 18782, + "posta": 18783, + "sistaa": 18784, + "rejects": 18785, + "tun": 18786, + "imposible": 18787, + "gil": 18788, + "northwest": 18789, + "esoo": 18790, + "tims": 18791, + "ucla": 18792, + "swisher": 18793, + "analog": 18794, + "hehehehehe": 18795, + "dicen": 18796, + "kim's": 18797, + "fling": 18798, + "ipods": 18799, + "keek": 18800, + "bottomless": 18801, + "wool": 18802, + "prawns": 18803, + "passwords": 18804, + "sweethearts": 18805, + "brewed": 18806, + "meagan": 18807, + "culo": 18808, + "cigars": 18809, + "pixie": 18810, + "kya": 18811, + "reaal": 18812, + "shawarma": 18813, + "coffe": 18814, + "genio": 18815, + "gnite": 18816, + "popsicles": 18817, + "regretted": 18818, + "python": 18819, + "weirdly": 18820, + "crud": 18821, + "raiva": 18822, + "merda": 18823, + "kewl": 18824, + "gregory": 18825, + "hy": 18826, + "bombay": 18827, + "rams": 18828, + "dieu": 18829, + "postponed": 18830, + "concha": 18831, + "abandon": 18832, + "ek": 18833, + "opa": 18834, + "arc": 18835, + "samba": 18836, + "eatery": 18837, + "celosa": 18838, + "ire": 18839, + "scrape": 18840, + "tutu": 18841, + "gauges": 18842, + "gefeliciteerd": 18843, + "grille": 18844, + "wahoo": 18845, + "nuffin": 18846, + "intervention": 18847, + "soil": 18848, + "livestream": 18849, + "twinkle": 18850, + "liter": 18851, + "resto": 18852, + "framed": 18853, + "mh": 18854, + "fleetwood": 18855, + "o_o": 18856, + "#yummy": 18857, + "cardigan": 18858, + "fractured": 18859, + "mbf": 18860, + "cambio": 18861, + "#godisgood": 18862, + "cease": 18863, + "swivel": 18864, + "t'f": 18865, + "rox": 18866, + "cringing": 18867, + "surfer": 18868, + "lieing": 18869, + "taj": 18870, + "deliciousness": 18871, + "transfers": 18872, + "riddled": 18873, + "tolkien": 18874, + "kangaroo": 18875, + "mong": 18876, + "#toofunny": 18877, + "bart": 18878, + "yaah": 18879, + "rematch": 18880, + "dubstep": 18881, + "dy": 18882, + "dries": 18883, + "diga": 18884, + "bbys": 18885, + "biatch": 18886, + "ortho": 18887, + "j'avoue": 18888, + "hebrew": 18889, + "hortons": 18890, + "stormy": 18891, + "sparse": 18892, + "#motivation": 18893, + "juga": 18894, + "sneaks": 18895, + "suv": 18896, + "spoof": 18897, + "idky": 18898, + "alil": 18899, + "arby's": 18900, + "twinny": 18901, + "crossroads": 18902, + "prairie": 18903, + "producing": 18904, + "crusted": 18905, + "elaine": 18906, + "guided": 18907, + "kari": 18908, + "irons": 18909, + "halibut": 18910, + "enserio": 18911, + "dawson": 18912, + "gramps": 18913, + "tightly": 18914, + "vo": 18915, + "hilariously": 18916, + "careers": 18917, + "anticipating": 18918, + "carton": 18919, + "esas": 18920, + "#killmenow": 18921, + "sprinkler": 18922, + "amped": 18923, + "duerme": 18924, + "mejores": 18925, + "duct": 18926, + "fallow": 18927, + "twisting": 18928, + "grills": 18929, + "wigs": 18930, + "dented": 18931, + "misty": 18932, + "jugar": 18933, + "tonic": 18934, + "tropicana": 18935, + "chews": 18936, + "falcons": 18937, + "unaware": 18938, + "elliott": 18939, + "bette": 18940, + "repost": 18941, + "proverbs": 18942, + "grainy": 18943, + "situated": 18944, + "craftsmanship": 18945, + "sigues": 18946, + "seuss": 18947, + "anotha": 18948, + "stereotype": 18949, + "monotonous": 18950, + "handicap": 18951, + "hardwood": 18952, + "nombre": 18953, + "ohkay": 18954, + "desiree": 18955, + "zendaya": 18956, + "savor": 18957, + "truthfully": 18958, + "indescribable": 18959, + "recycle": 18960, + "striker": 18961, + "wateva": 18962, + "measured": 18963, + "brainer": 18964, + "everthing": 18965, + "windsor": 18966, + "gcse": 18967, + "sgt": 18968, + "hare": 18969, + "netgear": 18970, + "conan": 18971, + "ibuprofen": 18972, + "hypnotic": 18973, + "chatty": 18974, + "maad": 18975, + "illest": 18976, + "raunchy": 18977, + "palabras": 18978, + "#seriously": 18979, + "lyss": 18980, + "calphalon": 18981, + "strangle": 18982, + "bruins": 18983, + "napped": 18984, + "txting": 18985, + "scheming": 18986, + "anw": 18987, + "brightness": 18988, + "wipers": 18989, + "planted": 18990, + "brutally": 18991, + "wrestler": 18992, + "shrunk": 18993, + "unpack": 18994, + "muthafuckas": 18995, + "stil": 18996, + "americanized": 18997, + "wordd": 18998, + "nessa": 18999, + "southside": 19000, + "hermano": 19001, + "laurie": 19002, + "refers": 19003, + "grizzly": 19004, + "manuel": 19005, + "rodgers": 19006, + "luscious": 19007, + "restoration": 19008, + "akon": 19009, + "completing": 19010, + "famm": 19011, + "accomplishments": 19012, + "django": 19013, + "feud": 19014, + "athletics": 19015, + "operated": 19016, + "tartar": 19017, + "donovan": 19018, + "screenshotting": 19019, + "trabajo": 19020, + "pocahontas": 19021, + "fitz": 19022, + "verbal": 19023, + "refrain": 19024, + "sleazy": 19025, + "ojos": 19026, + "trappin": 19027, + "maka": 19028, + "zane": 19029, + "crimson": 19030, + "godmother": 19031, + "tous": 19032, + "quiche": 19033, + "appropriately": 19034, + "vibrate": 19035, + "flaunt": 19036, + "snot": 19037, + "stretches": 19038, + "credo": 19039, + "ren": 19040, + "duda": 19041, + "ramp": 19042, + "tomb": 19043, + "bantu": 19044, + "ching": 19045, + "defines": 19046, + "ming": 19047, + "songwriting": 19048, + "padding": 19049, + "competitions": 19050, + "xxl": 19051, + "llueva": 19052, + "chuffed": 19053, + "drunks": 19054, + "bonitos": 19055, + "lj": 19056, + "muthafuckin": 19057, + "gerard": 19058, + "haappy": 19059, + "diee": 19060, + "clayton": 19061, + "rewrite": 19062, + "mish": 19063, + "fiji": 19064, + "dsl": 19065, + "tikka": 19066, + "yuhh": 19067, + "danny's": 19068, + "remodel": 19069, + "frizzy": 19070, + "hermosos": 19071, + "tah": 19072, + "ack": 19073, + "greatful": 19074, + "ricardo": 19075, + "tagalog": 19076, + "omgee": 19077, + "#scared": 19078, + "tremendously": 19079, + "gawdd": 19080, + "naks": 19081, + "julius": 19082, + "unos": 19083, + "errybody": 19084, + "regionals": 19085, + "slushie": 19086, + "armpit": 19087, + "omo": 19088, + "widd": 19089, + "tchau": 19090, + "apex": 19091, + "myths": 19092, + "wolverine": 19093, + "weary": 19094, + "boo's": 19095, + "disney's": 19096, + "kirby": 19097, + "newsfeed": 19098, + "snowy": 19099, + "eastwood": 19100, + "westerns": 19101, + "comedic": 19102, + "luego": 19103, + "pei": 19104, + "eagerly": 19105, + "shittest": 19106, + "penne": 19107, + "roaming": 19108, + "defects": 19109, + "imagery": 19110, + "probly": 19111, + "oot": 19112, + "peut": 19113, + "serie": 19114, + "crease": 19115, + "#stressed": 19116, + "aliyah": 19117, + "#8": 19118, + "chesney": 19119, + "daming": 19120, + "legged": 19121, + "learners": 19122, + "}}": 19123, + "bate": 19124, + "unanswered": 19125, + "fosho": 19126, + "tram": 19127, + "gf's": 19128, + "wnt": 19129, + "tosh": 19130, + "centennial": 19131, + "sais": 19132, + "dopest": 19133, + "despues": 19134, + "qual": 19135, + "saranghae": 19136, + "defender": 19137, + "hibernate": 19138, + "raya": 19139, + "informing": 19140, + "scorpion": 19141, + "comedies": 19142, + "cosby": 19143, + "headers": 19144, + "bitxh": 19145, + "laced": 19146, + "phd": 19147, + "jeremih": 19148, + "imessages": 19149, + "colt": 19150, + "michaela": 19151, + "encanto": 19152, + "eastside": 19153, + "fuzz": 19154, + "degrassi": 19155, + "writer's": 19156, + "huhuhuhu": 19157, + "programmer": 19158, + "fetched": 19159, + "lief": 19160, + "aesthetic": 19161, + "wna": 19162, + "creasing": 19163, + "favouriting": 19164, + "hablas": 19165, + "vapid": 19166, + "enrolled": 19167, + "haga": 19168, + "lawwdd": 19169, + "ayan": 19170, + "upgrades": 19171, + "resulted": 19172, + "pom": 19173, + "campo": 19174, + "lot's": 19175, + "raul": 19176, + "whoopin": 19177, + "hipp": 19178, + "wrangler": 19179, + "rugrats": 19180, + "wifed": 19181, + "burnin": 19182, + "newark": 19183, + "blockbuster": 19184, + "bolton": 19185, + "implausible": 19186, + "thermal": 19187, + "honeywell": 19188, + "faze": 19189, + "championships": 19190, + "wr": 19191, + "juiced": 19192, + "seguimos": 19193, + "aguante": 19194, + "=d": 19195, + "bugatti": 19196, + "maids": 19197, + "vertical": 19198, + "responsive": 19199, + "booming": 19200, + "jpp": 19201, + "tmmrw": 19202, + "bool": 19203, + "eekk": 19204, + "shittin": 19205, + "semangat": 19206, + "megs": 19207, + "skeleton": 19208, + "selective": 19209, + "litterally": 19210, + "recognise": 19211, + "tilt": 19212, + "skyping": 19213, + "elegance": 19214, + "suffice": 19215, + "mmh": 19216, + "buenaas": 19217, + "digi": 19218, + "lorenzo": 19219, + "emosh": 19220, + "voltage": 19221, + "nailer": 19222, + "suffers": 19223, + "experimental": 19224, + "gilinsky": 19225, + "womens": 19226, + "siim": 19227, + "pupusas": 19228, + "abnormal": 19229, + "blister": 19230, + "gol": 19231, + "netball": 19232, + "ninjas": 19233, + "importante": 19234, + "pubs": 19235, + "pareil": 19236, + "dusted": 19237, + "downgraded": 19238, + "fascinated": 19239, + "cringey": 19240, + "elaborate": 19241, + "idaho": 19242, + "railroad": 19243, + "maldita": 19244, + "aee": 19245, + "z's": 19246, + "lover's": 19247, + "okaayy": 19248, + "inducing": 19249, + "craigslist": 19250, + "mula": 19251, + "jakarta": 19252, + "shayla": 19253, + "savvy": 19254, + "reveals": 19255, + "o'brien": 19256, + "jig": 19257, + "talkative": 19258, + "jody": 19259, + "blackpool": 19260, + "fuucckk": 19261, + "nikka": 19262, + "porfavor": 19263, + "picturing": 19264, + "mor": 19265, + "kys": 19266, + "tomorrowland": 19267, + "sunburned": 19268, + "kona": 19269, + "dominate": 19270, + "unremarkable": 19271, + "whateverr": 19272, + "childs": 19273, + "maam": 19274, + "dave's": 19275, + "ruler": 19276, + "creer": 19277, + "janelle": 19278, + "altered": 19279, + "highlighter": 19280, + "nfb": 19281, + "rampage": 19282, + "mohawk": 19283, + "primera": 19284, + "prop": 19285, + "who've": 19286, + "salam": 19287, + "summer's": 19288, + "primarily": 19289, + "streams": 19290, + "capo": 19291, + "flee": 19292, + "predictions": 19293, + "pricks": 19294, + "beauts": 19295, + "strain": 19296, + "tash": 19297, + "tiki": 19298, + "caprese": 19299, + "bess": 19300, + "fandoms": 19301, + "maxx": 19302, + "pharrell": 19303, + "boobie": 19304, + "unintentionally": 19305, + "frontier": 19306, + "shambles": 19307, + "reminisce": 19308, + "anndd": 19309, + "#11": 19310, + "trivial": 19311, + "fuu": 19312, + "gettn": 19313, + "tounge": 19314, + "encima": 19315, + "breakfasts": 19316, + "multiplayer": 19317, + "wwa": 19318, + "als": 19319, + "wildly": 19320, + "barbers": 19321, + "theree": 19322, + "austria": 19323, + "xm": 19324, + "snobby": 19325, + "baton": 19326, + "anybody's": 19327, + "ic": 19328, + "shld": 19329, + "footsteps": 19330, + "awkwardness": 19331, + "recomended": 19332, + "#lfc": 19333, + "jensen": 19334, + "donc": 19335, + "undo": 19336, + "isit": 19337, + "carajo": 19338, + "grandmom": 19339, + "realer": 19340, + "laawd": 19341, + "liza": 19342, + "ora": 19343, + "semua": 19344, + "wagner": 19345, + "#judgeme": 19346, + "pesos": 19347, + "quran": 19348, + "builds": 19349, + "wildlife": 19350, + "kamu": 19351, + "thickness": 19352, + "pleasures": 19353, + "beeping": 19354, + "siente": 19355, + "laterr": 19356, + "aventura": 19357, + "damien": 19358, + "woaah": 19359, + "jumpers": 19360, + "owed": 19361, + "reuben": 19362, + "puse": 19363, + "teapot": 19364, + "wwf": 19365, + "ranging": 19366, + "unplayable": 19367, + "jasmin": 19368, + "scarier": 19369, + "fashoo": 19370, + "sikee": 19371, + "pampering": 19372, + "massager": 19373, + "bleak": 19374, + "matey": 19375, + "pointer": 19376, + "pueblo": 19377, + "shaggy": 19378, + "brantley": 19379, + "mehn": 19380, + "unwell": 19381, + "sloww": 19382, + "matilda": 19383, + "unprepared": 19384, + "supplements": 19385, + "carlton": 19386, + ":-d": 19387, + "aber": 19388, + "wider": 19389, + "livre": 19390, + "bants": 19391, + "dts": 19392, + "dickens": 19393, + "charred": 19394, + "veux": 19395, + "yaz": 19396, + "jagged": 19397, + "tfw": 19398, + "ini": 19399, + "teehee": 19400, + "marvellous": 19401, + "invincible": 19402, + "whistling": 19403, + "robbing": 19404, + "cinnabon": 19405, + "bjs": 19406, + "javi": 19407, + "soa": 19408, + "unity": 19409, + "crammed": 19410, + "emblem": 19411, + "quack": 19412, + "visor": 19413, + "chewers": 19414, + "hogwarts": 19415, + "trailers": 19416, + "laters": 19417, + "sep": 19418, + "lowered": 19419, + "yday": 19420, + "authenticity": 19421, + "goulding": 19422, + "alonee": 19423, + "standby": 19424, + "hov": 19425, + "nang": 19426, + "emailing": 19427, + "iwas": 19428, + "scientists": 19429, + "puree": 19430, + "baekhyun": 19431, + "josh's": 19432, + "learns": 19433, + "incoherent": 19434, + "flappy": 19435, + "gingerbread": 19436, + "revolves": 19437, + "upwards": 19438, + "omd": 19439, + "sholl": 19440, + "gmfu": 19441, + "gratis": 19442, + "jlo": 19443, + "alton": 19444, + "calla": 19445, + "squeezing": 19446, + "#great": 19447, + "pepe": 19448, + "bulletproof": 19449, + "bento": 19450, + "coughs": 19451, + "improves": 19452, + "builders": 19453, + "demais": 19454, + "#snapchat": 19455, + "gurls": 19456, + "bradford": 19457, + "#legend": 19458, + "transit": 19459, + "screamin": 19460, + "#18": 19461, + "nerf": 19462, + "screenplay": 19463, + "journals": 19464, + "jason's": 19465, + "drizzle": 19466, + "paps": 19467, + "paul's": 19468, + "kawaii": 19469, + "humbled": 19470, + "chasin": 19471, + "starr": 19472, + "remakes": 19473, + "insufficient": 19474, + "numbing": 19475, + "abound": 19476, + "truest": 19477, + "wiggles": 19478, + "allowance": 19479, + "maddi": 19480, + "rambo": 19481, + "terminator": 19482, + "mourning": 19483, + "liq": 19484, + "chao": 19485, + "dicho": 19486, + "tasks": 19487, + "kissy": 19488, + "twix": 19489, + "lackin": 19490, + "smth": 19491, + "exiting": 19492, + "chord": 19493, + "ouui": 19494, + "bromance": 19495, + "copyright": 19496, + "unfaithful": 19497, + "cancion": 19498, + "disclaimer": 19499, + "peli": 19500, + "kant": 19501, + "exceeds": 19502, + "tmp": 19503, + "verbose": 19504, + "lucci": 19505, + "mixtapes": 19506, + "manera": 19507, + "pica": 19508, + "negra": 19509, + "kickboxing": 19510, + "afterward": 19511, + "hashbrowns": 19512, + "faltaba": 19513, + "skydiving": 19514, + "accurately": 19515, + "entrenar": 19516, + "#priorities": 19517, + "divide": 19518, + "vacant": 19519, + "faye": 19520, + "genetics": 19521, + "hier": 19522, + "wuut": 19523, + "frankenstein": 19524, + "lucid": 19525, + "horseradish": 19526, + "cryy": 19527, + "massively": 19528, + "lloro": 19529, + "problemo": 19530, + "quee": 19531, + "irra": 19532, + "convertible": 19533, + "tuesday's": 19534, + "poner": 19535, + "clair": 19536, + "liyah": 19537, + "reliving": 19538, + "spraying": 19539, + "boyss": 19540, + "quincy": 19541, + "breathless": 19542, + "googling": 19543, + "tessa": 19544, + "kesha": 19545, + "montgomery": 19546, + "owee": 19547, + "viens": 19548, + "airplanes": 19549, + "enamora": 19550, + "corrupted": 19551, + "sehr": 19552, + "arroz": 19553, + "flare": 19554, + "climate": 19555, + "tamara": 19556, + "wobble": 19557, + "reeally": 19558, + "fugly": 19559, + "omegle": 19560, + "youxx": 19561, + "installment": 19562, + "semanas": 19563, + "ticks": 19564, + "grimy": 19565, + "paranoia": 19566, + "caking": 19567, + "accompanying": 19568, + "#lazy": 19569, + "mugging": 19570, + "atmospheric": 19571, + "craazy": 19572, + "hahhahaha": 19573, + "slipper": 19574, + "baile": 19575, + "imax": 19576, + "tor": 19577, + "jodie": 19578, + "shortcake": 19579, + "idfwu": 19580, + "everton": 19581, + "k's": 19582, + "ufo": 19583, + "components": 19584, + "dea": 19585, + "puma": 19586, + "ef": 19587, + "contender": 19588, + "trish": 19589, + "profiles": 19590, + "jazmine": 19591, + "recess": 19592, + "fucka": 19593, + "sharpie": 19594, + "victorious": 19595, + "soaps": 19596, + "rapped": 19597, + "txts": 19598, + "aisles": 19599, + "#relationshipgoals": 19600, + "{{": 19601, + "cemetery": 19602, + "stl": 19603, + "ainda": 19604, + "excruciating": 19605, + "t'd": 19606, + "persuade": 19607, + "thundering": 19608, + "pant": 19609, + "banal": 19610, + "stair": 19611, + "chippy": 19612, + "seperate": 19613, + "jenni": 19614, + "ethiopian": 19615, + "choppa": 19616, + "callum": 19617, + "astrology": 19618, + "wonna": 19619, + "communications": 19620, + "cashed": 19621, + "cheatin": 19622, + "ade": 19623, + "clad": 19624, + "cual": 19625, + "marriott": 19626, + "wishh": 19627, + "yaar": 19628, + "nino": 19629, + "nother": 19630, + "flap": 19631, + "bue": 19632, + "siestaa": 19633, + "kidz": 19634, + "condensed": 19635, + "reflective": 19636, + "commas": 19637, + "sonia": 19638, + "meann": 19639, + "zayn's": 19640, + "erotica": 19641, + "apron": 19642, + "hoee": 19643, + "adjusted": 19644, + "fuji": 19645, + "backwoods": 19646, + "llegar": 19647, + "hopkins": 19648, + "wld": 19649, + "brussels": 19650, + "madeline": 19651, + "stargate": 19652, + "induction": 19653, + "boop": 19654, + "slugs": 19655, + "coeur": 19656, + "babe's": 19657, + "eyeing": 19658, + "waait": 19659, + "lipgloss": 19660, + "graziee": 19661, + "sophmore": 19662, + "zedd": 19663, + "airing": 19664, + "hippo": 19665, + "groomer": 19666, + "consciousness": 19667, + "gruesome": 19668, + "stfuu": 19669, + "linds": 19670, + "sacrifices": 19671, + "anoche": 19672, + "flatware": 19673, + "whispered": 19674, + "jtfo": 19675, + "slowing": 19676, + "candid": 19677, + "heaters": 19678, + "sobs": 19679, + "faz": 19680, + "haw": 19681, + "trev": 19682, + "sentir": 19683, + "elise": 19684, + "sacramento": 19685, + "sirius": 19686, + "majorly": 19687, + "waster": 19688, + "socialize": 19689, + "undergrad": 19690, + "slasher": 19691, + "communicating": 19692, + "wilted": 19693, + "winters": 19694, + "paola": 19695, + "buhh": 19696, + "feelins": 19697, + "#heaven": 19698, + "tsa": 19699, + "mallory": 19700, + "wakeup": 19701, + "adhd": 19702, + "entries": 19703, + "nani": 19704, + "ticklish": 19705, + "immense": 19706, + "dart": 19707, + "replica": 19708, + "thicke": 19709, + "aviation": 19710, + "triplets": 19711, + "#netflix": 19712, + "hue": 19713, + "plantronics": 19714, + "seals": 19715, + "oaks": 19716, + "carroll": 19717, + "metabolism": 19718, + "narrator": 19719, + "spade": 19720, + "inaccuracies": 19721, + "shag": 19722, + "storyteller": 19723, + "pressured": 19724, + "arianna": 19725, + "infants": 19726, + "uugghh": 19727, + "deliveries": 19728, + "kristina": 19729, + "blackmail": 19730, + "mixers": 19731, + "tenerife": 19732, + "wellness": 19733, + "ustedes": 19734, + "zachary": 19735, + "hanks": 19736, + "alfred": 19737, + "jerker": 19738, + "concealer": 19739, + "monumental": 19740, + "bane": 19741, + "ignition": 19742, + "residence": 19743, + "shivering": 19744, + "uncalled": 19745, + "nans": 19746, + "sinuses": 19747, + "boro": 19748, + "hari": 19749, + "aerosmith": 19750, + "clans": 19751, + "blasphemy": 19752, + "pwease": 19753, + "abstract": 19754, + "ared": 19755, + "gogo": 19756, + "dominic": 19757, + "fakest": 19758, + "payin": 19759, + "plaid": 19760, + "prizes": 19761, + "boulder": 19762, + "walao": 19763, + "clogs": 19764, + "judgemental": 19765, + "lebanon": 19766, + "preciso": 19767, + "porra": 19768, + "rogue": 19769, + "shoving": 19770, + "formation": 19771, + "airy": 19772, + "ree": 19773, + "tlkn": 19774, + "surfboard": 19775, + "sisterhood": 19776, + "hermana": 19777, + "eid": 19778, + "errday": 19779, + "#suckstosuck": 19780, + "diz": 19781, + "abu": 19782, + "cattle": 19783, + "chords": 19784, + "#liestoldontwitter": 19785, + "ommg": 19786, + "ns": 19787, + "rachel's": 19788, + "amazin": 19789, + "kayak": 19790, + "otay": 19791, + "aburrido": 19792, + "boris": 19793, + "oscars": 19794, + "snappy": 19795, + "memoirs": 19796, + "pompous": 19797, + "motown": 19798, + "vise": 19799, + "hahahahahahahah": 19800, + "protects": 19801, + "overflowing": 19802, + "aboard": 19803, + "parti": 19804, + "augustus": 19805, + "aire": 19806, + "pssh": 19807, + "navigation": 19808, + "hokey": 19809, + "noow": 19810, + "habibi": 19811, + "costing": 19812, + "firehouse": 19813, + "miley's": 19814, + "bizkit": 19815, + "iove": 19816, + "glare": 19817, + "thenn": 19818, + "parlor": 19819, + "indifferent": 19820, + "bibi": 19821, + "wills": 19822, + "flopped": 19823, + "ando": 19824, + "teamwork": 19825, + "tienen": 19826, + "blackened": 19827, + "billed": 19828, + "oclock": 19829, + "transform": 19830, + "remainder": 19831, + "dyson": 19832, + "bx": 19833, + "paintball": 19834, + "hunn": 19835, + "immaturity": 19836, + "scarves": 19837, + "stability": 19838, + "climbed": 19839, + "babble": 19840, + "bonfires": 19841, + "luhan": 19842, + "indonesian": 19843, + "roosevelt": 19844, + "newman": 19845, + "lovebug": 19846, + "lox": 19847, + "frontline": 19848, + "fatima": 19849, + "#gh": 19850, + "dirtiest": 19851, + "voltei": 19852, + "overblown": 19853, + "preorder": 19854, + "jusko": 19855, + "mgk": 19856, + "accord": 19857, + "#fitfam": 19858, + "wena": 19859, + "stout": 19860, + "grit": 19861, + "bayern": 19862, + "viewpoint": 19863, + "paro": 19864, + "badder": 19865, + "mmhm": 19866, + "unseen": 19867, + "suckss": 19868, + "hughes": 19869, + "mace": 19870, + "quinoa": 19871, + "unrated": 19872, + "knotts": 19873, + "isabella": 19874, + "gulf": 19875, + "fuui": 19876, + "watchers": 19877, + "massaging": 19878, + "redskins": 19879, + "uncontrollably": 19880, + "grasshopper": 19881, + "coulter": 19882, + "stooges": 19883, + "preordered": 19884, + "flatts": 19885, + "invent": 19886, + "moro": 19887, + "overkill": 19888, + "hershey's": 19889, + "emerald": 19890, + "#fitness": 19891, + "documented": 19892, + "physiology": 19893, + "grooves": 19894, + "diets": 19895, + "juu": 19896, + "muddled": 19897, + "chanson": 19898, + "taker": 19899, + "cheep": 19900, + "confronted": 19901, + "norwich": 19902, + "croutons": 19903, + "hickeys": 19904, + "cel": 19905, + "tenho": 19906, + "goodmornin": 19907, + "inspirations": 19908, + "stoopp": 19909, + "shizz": 19910, + "buzzer": 19911, + "stalls": 19912, + "kylee": 19913, + "playback": 19914, + "cowgirl": 19915, + "nini": 19916, + "pia": 19917, + "hoopin": 19918, + "kombat": 19919, + "hooper": 19920, + "refried": 19921, + "longevity": 19922, + "jajajajajaj": 19923, + "crochet": 19924, + "bahama": 19925, + "beasts": 19926, + "partly": 19927, + "corvette": 19928, + "calmed": 19929, + "#cute": 19930, + "southampton": 19931, + "sososo": 19932, + "kann": 19933, + "tomoro": 19934, + "merit": 19935, + "companions": 19936, + "#follow4follow": 19937, + "biebs": 19938, + "ecstasy": 19939, + "subwoofer": 19940, + "felling": 19941, + "approx": 19942, + "llega": 19943, + "avocados": 19944, + "midland": 19945, + "kiddie": 19946, + "fukk": 19947, + "behaving": 19948, + "summa": 19949, + "het": 19950, + "sab": 19951, + "historian": 19952, + "coloured": 19953, + "fak": 19954, + "soppy": 19955, + "pornhub": 19956, + "marlon": 19957, + "lapar": 19958, + "parcel": 19959, + "nordstrom": 19960, + "bringin": 19961, + "concoction": 19962, + "rem": 19963, + "vacances": 19964, + "outfitters": 19965, + "composition": 19966, + "noting": 19967, + "airways": 19968, + "admiring": 19969, + "obsess": 19970, + "toh": 19971, + "godson": 19972, + "ikon": 19973, + "gamma": 19974, + "revoir": 19975, + "screwdriver": 19976, + "rotisserie": 19977, + "stunner": 19978, + "horrors": 19979, + "burberry": 19980, + "stored": 19981, + "progression": 19982, + "wildwood": 19983, + "researching": 19984, + "concentration": 19985, + "stanky": 19986, + "pati": 19987, + "whelp": 19988, + "lk": 19989, + "lalala": 19990, + "butters": 19991, + "smartass": 19992, + "sacd": 19993, + "plots": 19994, + "hyping": 19995, + "presh": 19996, + "chanting": 19997, + "hunnit": 19998, + "refresher": 19999, + "powderpuff": 20000, + "dazed": 20001, + "ems": 20002, + "moee": 20003, + "yeey": 20004, + "shoppers": 20005, + "psychedelic": 20006, + "bailed": 20007, + "malt": 20008, + "honk": 20009, + "hitchcock": 20010, + "exactement": 20011, + "#notcool": 20012, + "adores": 20013, + "slaughter": 20014, + "tgt": 20015, + "yippee": 20016, + "obgg": 20017, + "falcon": 20018, + "demanded": 20019, + "ino": 20020, + "whatevaa": 20021, + "parental": 20022, + "ramon": 20023, + "babycakes": 20024, + "lin": 20025, + "serviced": 20026, + "clare": 20027, + "kasey": 20028, + "vouchers": 20029, + "shu": 20030, + "haiti": 20031, + "okra": 20032, + "awl": 20033, + "sullivan": 20034, + "flw": 20035, + "synthetic": 20036, + "facetimes": 20037, + "flexibility": 20038, + "hacen": 20039, + "alba": 20040, + "hale": 20041, + "iguess": 20042, + "seh": 20043, + "kakak": 20044, + "paypal": 20045, + "noitee": 20046, + "bleached": 20047, + "perez": 20048, + "excites": 20049, + "bcz": 20050, + "misfits": 20051, + "wby": 20052, + "enojo": 20053, + "clemson": 20054, + "stings": 20055, + "hoess": 20056, + "tendencies": 20057, + "redbox": 20058, + "enlightenment": 20059, + "homeboys": 20060, + "dylan's": 20061, + "bender": 20062, + "shepard": 20063, + "proximity": 20064, + "prod": 20065, + "briefly": 20066, + "heap": 20067, + "tipo": 20068, + "mkay": 20069, + "duro": 20070, + "#tvd": 20071, + "deanna": 20072, + "powerhouse": 20073, + "rugs": 20074, + "cabinets": 20075, + "blowout": 20076, + "glamorous": 20077, + "gad": 20078, + "zaxby's": 20079, + "astronomy": 20080, + "domino's": 20081, + "jm": 20082, + "largely": 20083, + "mlk": 20084, + "pettiness": 20085, + "mascot": 20086, + "circular": 20087, + "hauntingly": 20088, + "eternally": 20089, + "phobia": 20090, + "mwaa": 20091, + "tete": 20092, + "meilleure": 20093, + "boo'd": 20094, + "persuasion": 20095, + "lois": 20096, + "ironman": 20097, + "fajita": 20098, + "gia": 20099, + "orphan": 20100, + "wagyu": 20101, + "amores": 20102, + "itis": 20103, + "painless": 20104, + "#gross": 20105, + "bul": 20106, + "mddrr": 20107, + "madagascar": 20108, + "intuitive": 20109, + "frances": 20110, + "y'know": 20111, + "restrictions": 20112, + "jadine": 20113, + "hitta": 20114, + "diia": 20115, + "poolside": 20116, + "hatch": 20117, + "discouraged": 20118, + "quieroo": 20119, + "mundane": 20120, + "fakin": 20121, + "rivalry": 20122, + "baileys": 20123, + "cristian": 20124, + "andreas": 20125, + "fraction": 20126, + "pushin": 20127, + "honoured": 20128, + "stinkin": 20129, + "munich": 20130, + "influential": 20131, + "brandon's": 20132, + "foxy": 20133, + "#sogood": 20134, + "signage": 20135, + "erked": 20136, + "pongo": 20137, + "spins": 20138, + "delonghi": 20139, + "#lmao": 20140, + "munching": 20141, + "behaved": 20142, + "#mentionto": 20143, + "chug": 20144, + "thea": 20145, + "malaysian": 20146, + "tingling": 20147, + "forming": 20148, + "#swag": 20149, + "toke": 20150, + "excused": 20151, + "outrageously": 20152, + "glo'd": 20153, + "javier": 20154, + "terra": 20155, + "tenemos": 20156, + "knoo": 20157, + "michele": 20158, + "dammnn": 20159, + "get's": 20160, + "evaluate": 20161, + "mun": 20162, + "grate": 20163, + "empowering": 20164, + "overhead": 20165, + "nueva": 20166, + "bearded": 20167, + "aces": 20168, + "sheetz": 20169, + "whichever": 20170, + "bl": 20171, + "macarons": 20172, + "androids": 20173, + "stamina": 20174, + "maurice": 20175, + "buyin": 20176, + "dorothy": 20177, + "riches": 20178, + "tortured": 20179, + "mattered": 20180, + "nh": 20181, + "liam's": 20182, + "hayfever": 20183, + "risks": 20184, + "lore": 20185, + "brr": 20186, + "bateria": 20187, + "#truestory": 20188, + "mileage": 20189, + "simpler": 20190, + "sellin": 20191, + "mailing": 20192, + "exhaustion": 20193, + "scones": 20194, + "notify": 20195, + "cove": 20196, + "hairr": 20197, + "caree": 20198, + "lovve": 20199, + "violation": 20200, + "castro": 20201, + "story's": 20202, + "swagger": 20203, + "kayy": 20204, + "dwarf": 20205, + "ara": 20206, + "uoeno": 20207, + "celibate": 20208, + "fewer": 20209, + "boardwalk": 20210, + "#bitch": 20211, + "treo": 20212, + "ooi": 20213, + "patti": 20214, + "#offline": 20215, + "bins": 20216, + "rw": 20217, + "moscato": 20218, + "bieber's": 20219, + "compatable": 20220, + "quarterback": 20221, + "loko": 20222, + "alignment": 20223, + "glossy": 20224, + "deeds": 20225, + "roaring": 20226, + "assorted": 20227, + "spades": 20228, + "skimp": 20229, + "alondra": 20230, + "firework": 20231, + "geared": 20232, + "t'as": 20233, + "enamorado": 20234, + "ptdr": 20235, + "tastic": 20236, + "newborns": 20237, + "ouvindo": 20238, + "mande": 20239, + "jass": 20240, + "zak": 20241, + "stunts": 20242, + "devotion": 20243, + "escorted": 20244, + "pranks": 20245, + "buddhism": 20246, + "refreshingly": 20247, + "helpp": 20248, + "lek": 20249, + "sabar": 20250, + "inattentive": 20251, + "doughy": 20252, + "natalia": 20253, + "campfire": 20254, + "nighttime": 20255, + "tim's": 20256, + "babylon": 20257, + "briefs": 20258, + "jun": 20259, + "buffett": 20260, + "lovess": 20261, + "origins": 20262, + "adobo": 20263, + "jack's": 20264, + "armpits": 20265, + "bayou": 20266, + "kierra": 20267, + "reeks": 20268, + "wimp": 20269, + "bucking": 20270, + "#damn": 20271, + "sabia": 20272, + "cassandra": 20273, + "imported": 20274, + "complexion": 20275, + "suburban": 20276, + "noob": 20277, + "synopsis": 20278, + "desculpa": 20279, + "ante": 20280, + "crosby": 20281, + "cramming": 20282, + "tiesto": 20283, + "kait": 20284, + "alexia": 20285, + "bdayy": 20286, + "roberto": 20287, + "ovo": 20288, + "bologna": 20289, + "bonsoir": 20290, + "walnuts": 20291, + "costumer": 20292, + "clearer": 20293, + "tata": 20294, + "clicks": 20295, + "inquired": 20296, + "mounted": 20297, + "gracioso": 20298, + "tye": 20299, + "saco": 20300, + "ports": 20301, + "freshers": 20302, + "rhett": 20303, + "asado": 20304, + "badger": 20305, + "bawl": 20306, + "toledo": 20307, + "boulevard": 20308, + "skinnier": 20309, + "souvenirs": 20310, + "roma": 20311, + "canton": 20312, + "aide": 20313, + "friendss": 20314, + "creamer": 20315, + "informational": 20316, + "whim": 20317, + "courtyard": 20318, + "resorts": 20319, + "lado": 20320, + "jinxed": 20321, + "dosen't": 20322, + "fou": 20323, + "infuriating": 20324, + "bitchass": 20325, + "buutt": 20326, + "musique": 20327, + "vuelta": 20328, + "centro": 20329, + "lw": 20330, + "maybee": 20331, + "troppo": 20332, + "creepiest": 20333, + "editors": 20334, + "chicas": 20335, + "grouchy": 20336, + "taxis": 20337, + "carefree": 20338, + "#byefelicia": 20339, + "electronica": 20340, + "marcel": 20341, + "bumming": 20342, + "paramount": 20343, + "(-:": 20344, + "perro": 20345, + "suspend": 20346, + "sledding": 20347, + "scanning": 20348, + "fps": 20349, + "fraudulent": 20350, + "pinball": 20351, + "turntable": 20352, + "vick": 20353, + "bunn": 20354, + "timber": 20355, + "clocking": 20356, + "tgi": 20357, + "superbowl": 20358, + "dique": 20359, + "igot": 20360, + "lionel": 20361, + "insensitive": 20362, + "responde": 20363, + "solves": 20364, + "tongues": 20365, + "stoke": 20366, + "certeza": 20367, + "ernie": 20368, + "omelets": 20369, + "ouija": 20370, + "revolve": 20371, + "lockers": 20372, + "confetti": 20373, + "hookup": 20374, + "kenna": 20375, + "#muchneeded": 20376, + "dara": 20377, + "judith": 20378, + "harriet": 20379, + "wiener": 20380, + "therapeutic": 20381, + "wel": 20382, + "ikno": 20383, + "cheez": 20384, + "klaus": 20385, + "pianist": 20386, + "maging": 20387, + "lisp": 20388, + "eem": 20389, + "itv": 20390, + "targets": 20391, + "#college": 20392, + "privileged": 20393, + "yorkie": 20394, + "#justsayin": 20395, + "envidia": 20396, + "mommys": 20397, + "weirder": 20398, + "evocative": 20399, + "seinfeld": 20400, + "olvido": 20401, + "wanelo": 20402, + "voyager": 20403, + "ame": 20404, + "mike's": 20405, + "hecka": 20406, + "kash": 20407, + "polly": 20408, + "taehyung": 20409, + "traditions": 20410, + "slop": 20411, + "quicken": 20412, + "hippies": 20413, + "ledge": 20414, + "demeanor": 20415, + "expire": 20416, + "kn": 20417, + "brazilians": 20418, + "enticing": 20419, + "tiffany's": 20420, + "expires": 20421, + "benches": 20422, + "owls": 20423, + "centipede": 20424, + "meo": 20425, + "afternoons": 20426, + "horrified": 20427, + "lexis": 20428, + "hernandez": 20429, + "pixar": 20430, + "weds": 20431, + "mocks": 20432, + "libby": 20433, + "buenoo": 20434, + "aall": 20435, + "amar": 20436, + "jasper": 20437, + "volley": 20438, + "eyelids": 20439, + "zing": 20440, + "oriental": 20441, + "naya": 20442, + "vacuuming": 20443, + "ramsay": 20444, + "dickheads": 20445, + "pandas": 20446, + "landlord": 20447, + "recruiting": 20448, + "yogas": 20449, + "breanna": 20450, + "rustic": 20451, + "emerson": 20452, + "tickling": 20453, + "reina": 20454, + "jem": 20455, + "digress": 20456, + "lento": 20457, + "metaphor": 20458, + "planets": 20459, + "compensate": 20460, + "kuwait": 20461, + "cristina": 20462, + "#scandal": 20463, + "cot": 20464, + "castles": 20465, + "styled": 20466, + "workplace": 20467, + "perfectos": 20468, + "kala": 20469, + "cfa": 20470, + "unconvincing": 20471, + "saturday's": 20472, + "ul": 20473, + "rents": 20474, + "mermaids": 20475, + "picasso": 20476, + "renewal": 20477, + "charley": 20478, + "operations": 20479, + "imho": 20480, + "annabelle": 20481, + "sware": 20482, + "funerals": 20483, + "grading": 20484, + "hops": 20485, + "definatly": 20486, + "bangkok": 20487, + "priscilla": 20488, + "encantaa": 20489, + "siestita": 20490, + "chlorine": 20491, + "masterpieces": 20492, + "detergent": 20493, + "wontons": 20494, + "brits": 20495, + "macchiato": 20496, + "routines": 20497, + "buble": 20498, + "juli": 20499, + "fives": 20500, + "footlocker": 20501, + "conair": 20502, + "trough": 20503, + "cherokee": 20504, + "gabrielle": 20505, + "bsb": 20506, + "vero": 20507, + "#nowwatching": 20508, + "hardwell": 20509, + "cancels": 20510, + "recap": 20511, + "incense": 20512, + "milestone": 20513, + "ub": 20514, + "rama": 20515, + "rattle": 20516, + "mend": 20517, + "weaknesses": 20518, + "awesomely": 20519, + "boolin": 20520, + "crane": 20521, + "growin": 20522, + "scott's": 20523, + "winn": 20524, + "lau": 20525, + "yelper": 20526, + "cabezaa": 20527, + "tum": 20528, + "taro": 20529, + "gameboy": 20530, + "bitterness": 20531, + "#goodluck": 20532, + "partake": 20533, + "applicable": 20534, + "acaba": 20535, + "tom's": 20536, + "burg": 20537, + "fallback": 20538, + "pregame": 20539, + "nagging": 20540, + "betcha": 20541, + "lanez": 20542, + "babydaddy": 20543, + "homeworks": 20544, + "blesses": 20545, + "fila": 20546, + "bitchez": 20547, + "gato": 20548, + "bray": 20549, + "contacting": 20550, + "dap": 20551, + "hopper": 20552, + "insect": 20553, + "novices": 20554, + "lighters": 20555, + "ripper": 20556, + "scammed": 20557, + "fixe": 20558, + "tryout": 20559, + "pauline": 20560, + "witnessing": 20561, + "arcadia": 20562, + "lowe": 20563, + "increases": 20564, + "mmk": 20565, + "sq": 20566, + "suede": 20567, + "gasket": 20568, + "sched": 20569, + "teething": 20570, + "time's": 20571, + "rods": 20572, + "reacher": 20573, + "disgustingly": 20574, + "boating": 20575, + "#happytweet": 20576, + "taping": 20577, + "imac": 20578, + "counters": 20579, + "acoustics": 20580, + "fuerte": 20581, + "birdy": 20582, + "stoners": 20583, + "lard": 20584, + "doggies": 20585, + "slapen": 20586, + "mim": 20587, + "pretends": 20588, + "veryy": 20589, + "submarine": 20590, + "demi's": 20591, + "matar": 20592, + "ewe": 20593, + "fiend": 20594, + "creole": 20595, + "numba": 20596, + "marion": 20597, + "guatemala": 20598, + "sights": 20599, + "krazy": 20600, + "fwed": 20601, + "pluck": 20602, + "mornight": 20603, + "hei": 20604, + "aau": 20605, + "yhh": 20606, + "firee": 20607, + "midst": 20608, + "perky": 20609, + "pagan": 20610, + "lancaster": 20611, + "toenails": 20612, + "moons": 20613, + "indulgence": 20614, + "caviar": 20615, + "eras": 20616, + "colts": 20617, + "dodgeball": 20618, + "claroo": 20619, + "ottawa": 20620, + "dammn": 20621, + "canciones": 20622, + "pud": 20623, + "leafs": 20624, + "mistletoe": 20625, + "simultaneously": 20626, + "lees": 20627, + "earning": 20628, + "sweeties": 20629, + "bronchitis": 20630, + "rescheduled": 20631, + "examen": 20632, + "#nolife": 20633, + "#hungry": 20634, + "timeout": 20635, + "seaside": 20636, + "aynen": 20637, + "alaskan": 20638, + "dunks": 20639, + "residue": 20640, + "barbra": 20641, + "conceived": 20642, + "unworthy": 20643, + "pollen": 20644, + "lmboo": 20645, + "brice": 20646, + "joss": 20647, + "parachute": 20648, + "pique": 20649, + "paling": 20650, + "overprotective": 20651, + "twinn": 20652, + "#gym": 20653, + "bonitas": 20654, + "bestfriendd": 20655, + "#sleep": 20656, + "quieter": 20657, + "laces": 20658, + "ookay": 20659, + "halal": 20660, + "kbye": 20661, + "starvation": 20662, + "stench": 20663, + "#teamiphone": 20664, + "fizz": 20665, + "valeu": 20666, + "ranking": 20667, + "giveaways": 20668, + "hangers": 20669, + "#oitnb": 20670, + "fwd": 20671, + "ongoing": 20672, + "parkway": 20673, + "memorex": 20674, + "obstacles": 20675, + "adorn": 20676, + "aver": 20677, + "hunnie": 20678, + "tripp": 20679, + "benji": 20680, + "kilo": 20681, + "mine's": 20682, + "fore": 20683, + "greener": 20684, + "#mtvstars": 20685, + "fcr": 20686, + "#whatislife": 20687, + "mater": 20688, + "pout": 20689, + "spatula": 20690, + "quickie": 20691, + "dover": 20692, + "jord": 20693, + "nylon": 20694, + "valor": 20695, + "j'arrive": 20696, + "hor": 20697, + "hana": 20698, + "fucck": 20699, + "corpse": 20700, + "forgetful": 20701, + "yayay": 20702, + "ernest": 20703, + "namaste": 20704, + "midgets": 20705, + "fingernails": 20706, + "apprentice": 20707, + "smilee": 20708, + "zeus": 20709, + "kell": 20710, + "gazing": 20711, + "futbol": 20712, + "clave": 20713, + "hamstring": 20714, + "homegirls": 20715, + "#beliebers": 20716, + "equation": 20717, + "puppets": 20718, + "aay": 20719, + "trusts": 20720, + "yasmin": 20721, + "ho's": 20722, + "fuller": 20723, + "spec": 20724, + "hamlet": 20725, + "mahomie": 20726, + "muhammad": 20727, + "scrapbook": 20728, + "minuets": 20729, + "dtfl": 20730, + "sansa": 20731, + "fuego": 20732, + "smacks": 20733, + "thangg": 20734, + "warmers": 20735, + "stylists": 20736, + "paa": 20737, + "cutters": 20738, + "snowflake": 20739, + "imagino": 20740, + "unleashed": 20741, + "chen": 20742, + "changs": 20743, + "resemblance": 20744, + "ua": 20745, + "crafty": 20746, + "waterloo": 20747, + "luff": 20748, + "ei": 20749, + "inexperienced": 20750, + "bugged": 20751, + "nakakainis": 20752, + "handbag": 20753, + "katie's": 20754, + "sherman": 20755, + "dissappointment": 20756, + "maison": 20757, + "handmade": 20758, + "vom": 20759, + "greenville": 20760, + "sian": 20761, + "#peace": 20762, + "fuckingg": 20763, + "yeayy": 20764, + "revolting": 20765, + "rolex": 20766, + "#squad": 20767, + "approves": 20768, + "stawp": 20769, + "mandem": 20770, + "wristband": 20771, + "noah's": 20772, + "layered": 20773, + "hisself": 20774, + "#yess": 20775, + "alta": 20776, + "peachy": 20777, + "junkies": 20778, + "twerked": 20779, + "ballroom": 20780, + "#weird": 20781, + "fan's": 20782, + "registers": 20783, + "ouf": 20784, + "#cantsleep": 20785, + "princeton": 20786, + "revisionist": 20787, + "kennel": 20788, + "bitte": 20789, + "prefers": 20790, + "bulgogi": 20791, + "jvc": 20792, + "banh": 20793, + "udon": 20794, + "kieran": 20795, + "raff": 20796, + "journalist": 20797, + "powell": 20798, + "unica": 20799, + "viber": 20800, + "roti": 20801, + "granite": 20802, + "kidrauhl": 20803, + "#random": 20804, + "lakas": 20805, + "yellin": 20806, + "col": 20807, + "randoms": 20808, + "thorpe": 20809, + "breve": 20810, + "gagging": 20811, + "alejandro": 20812, + "fergie": 20813, + "atheist": 20814, + "serendipity": 20815, + "darcy": 20816, + "spooning": 20817, + "suure": 20818, + "cinematography": 20819, + "frente": 20820, + "dialog": 20821, + "o'reilly": 20822, + "verano": 20823, + "alisha": 20824, + "chapman": 20825, + "renovation": 20826, + "mieux": 20827, + "devour": 20828, + "polenta": 20829, + "presley": 20830, + "kainis": 20831, + "raffle": 20832, + "lordt": 20833, + "regency": 20834, + "vegans": 20835, + "recharge": 20836, + "customize": 20837, + "mst": 20838, + "preciosa": 20839, + "fillings": 20840, + "rigged": 20841, + "cumin": 20842, + "pointe": 20843, + "iceland": 20844, + "furthest": 20845, + "plaisir": 20846, + "dives": 20847, + "saan": 20848, + "roo": 20849, + "smellin": 20850, + "ringer": 20851, + "bournemouth": 20852, + "bonds": 20853, + "jaylen": 20854, + "allot": 20855, + "maravilhosa": 20856, + "sakes": 20857, + "farr": 20858, + "forensic": 20859, + "bakers": 20860, + "ovaries": 20861, + "peeves": 20862, + "ergh": 20863, + "hostel": 20864, + "longing": 20865, + "chang": 20866, + "hurtss": 20867, + "olha": 20868, + "envious": 20869, + "sophomoric": 20870, + "tepid": 20871, + "aerobics": 20872, + "harmful": 20873, + "coucou": 20874, + "arabia": 20875, + "dg": 20876, + "alaa": 20877, + "funnest": 20878, + "kangen": 20879, + ":'))": 20880, + "surly": 20881, + "retriever": 20882, + "html": 20883, + "srk": 20884, + "mecca": 20885, + "nosotros": 20886, + "chaz": 20887, + "bap": 20888, + "niall's": 20889, + "scarpetta": 20890, + "relying": 20891, + "footloose": 20892, + "bigbang": 20893, + "speakin": 20894, + "haah": 20895, + "semesters": 20896, + "rotating": 20897, + "midway": 20898, + "#k": 20899, + "perdu": 20900, + "buttered": 20901, + "==d": 20902, + "dykes": 20903, + "inclusive": 20904, + "breakout": 20905, + "beatin": 20906, + "leagues": 20907, + "yin": 20908, + "succeeded": 20909, + "carnage": 20910, + "corelle": 20911, + "termine": 20912, + "#yourewelcome": 20913, + "kabob": 20914, + "clarkson": 20915, + "whimsical": 20916, + "#takemeback": 20917, + "ontario": 20918, + "realm": 20919, + "jawline": 20920, + "trafford": 20921, + "eto": 20922, + "raspberries": 20923, + "expelled": 20924, + "baabe": 20925, + "#gameofthrones": 20926, + "uterus": 20927, + "ust": 20928, + "bonded": 20929, + "whistles": 20930, + "mmkay": 20931, + "pew": 20932, + "raquel": 20933, + "estimated": 20934, + "grammys": 20935, + "caralho": 20936, + "practiced": 20937, + "yorker": 20938, + "#birthday": 20939, + "rivera": 20940, + "cabs": 20941, + "naval": 20942, + "sunbed": 20943, + "dozing": 20944, + "congratz": 20945, + "mcguire": 20946, + "esperar": 20947, + "#dontjudgeme": 20948, + "dicked": 20949, + "fumes": 20950, + "whatnot": 20951, + "dremel": 20952, + "reassuring": 20953, + "dije": 20954, + "bypass": 20955, + "yehey": 20956, + "fgl": 20957, + "theresa": 20958, + "gata": 20959, + "#qna": 20960, + "corrections": 20961, + "siss": 20962, + "melvin": 20963, + "mule": 20964, + "consumption": 20965, + "pw": 20966, + "buonanotte": 20967, + "stef": 20968, + "nook": 20969, + "vicks": 20970, + "helluva": 20971, + "vamoos": 20972, + "delilah": 20973, + "disposal": 20974, + "alcoholics": 20975, + "compensation": 20976, + "unbalanced": 20977, + "unexplainable": 20978, + "shaft": 20979, + "bando": 20980, + "botched": 20981, + "#hurryup": 20982, + "divino": 20983, + "jfc": 20984, + "endurance": 20985, + "glaring": 20986, + "illegally": 20987, + "corrie": 20988, + "masa": 20989, + "#sarcasm": 20990, + "nai": 20991, + "hyung": 20992, + "magellan": 20993, + "treble": 20994, + "wrestlemania": 20995, + "motivator": 20996, + "g'day": 20997, + "awnn": 20998, + "marketplace": 20999, + "awak": 21000, + "vaginas": 21001, + "shaken": 21002, + "alexandria": 21003, + "anthony's": 21004, + "tardee": 21005, + "bv": 21006, + "viste": 21007, + "liga": 21008, + "fishin": 21009, + "gianna": 21010, + "amazeballs": 21011, + "rasta": 21012, + "weezer": 21013, + "nakakatamad": 21014, + "sriracha": 21015, + "fuh": 21016, + "cohen": 21017, + "aidan": 21018, + "resemble": 21019, + "migo": 21020, + "despair": 21021, + "arguably": 21022, + "whopping": 21023, + "assembled": 21024, + "snupe": 21025, + "whitening": 21026, + "snag": 21027, + "yeezys": 21028, + "untold": 21029, + "pallet": 21030, + "compression": 21031, + "yoghurt": 21032, + "dyl": 21033, + "shanks": 21034, + "#happybirthday": 21035, + "pumas": 21036, + "evident": 21037, + "rural": 21038, + "joder": 21039, + "sorrows": 21040, + "boosted": 21041, + "downward": 21042, + "mete": 21043, + "ine": 21044, + "meandering": 21045, + "scenarios": 21046, + "laziest": 21047, + "busier": 21048, + "fashionable": 21049, + "achieving": 21050, + "sanitizer": 21051, + "tryed": 21052, + "kiosk": 21053, + "heffa": 21054, + "pugs": 21055, + "amis": 21056, + "bw": 21057, + "ong": 21058, + "risking": 21059, + "bissell": 21060, + "melodrama": 21061, + "tinker": 21062, + "#me": 21063, + "tranny": 21064, + "xi": 21065, + "wiv": 21066, + "notte": 21067, + "pcs": 21068, + "primos": 21069, + "mislabeled": 21070, + "clapton": 21071, + "raro": 21072, + "banjo": 21073, + "chestnut": 21074, + "hobbies": 21075, + "dankjewel": 21076, + "metallic": 21077, + "togo": 21078, + "kats": 21079, + "mook": 21080, + "jangan": 21081, + "rake": 21082, + "digs": 21083, + "chalkboard": 21084, + "tapi": 21085, + "#success": 21086, + "sidekick": 21087, + "motorcycles": 21088, + "hazza": 21089, + "rearrange": 21090, + "lightskinned": 21091, + "fixtures": 21092, + "perry's": 21093, + "org": 21094, + "converter": 21095, + "moa": 21096, + "pacers": 21097, + "nunu": 21098, + "ballad": 21099, + "mothafucka": 21100, + "referral": 21101, + "chipping": 21102, + "relleno": 21103, + "ganun": 21104, + "hibernation": 21105, + "tsunami": 21106, + "restock": 21107, + "jtm": 21108, + "jermaine": 21109, + "promoters": 21110, + "nath": 21111, + "agatha": 21112, + "pied": 21113, + "berg": 21114, + "yeast": 21115, + "istg": 21116, + "mato": 21117, + "graceful": 21118, + "kaleb": 21119, + "etiquette": 21120, + "untouchable": 21121, + "adjusting": 21122, + "lollipops": 21123, + "caterpillar": 21124, + "weighing": 21125, + "dahil": 21126, + "titi": 21127, + "knoe": 21128, + "incubus": 21129, + "pinot": 21130, + "yoko": 21131, + "nakaka": 21132, + "spikes": 21133, + "knooww": 21134, + "slayy": 21135, + "seoul": 21136, + "trabajar": 21137, + "#pumped": 21138, + "sapphire": 21139, + "beyonce's": 21140, + "stocks": 21141, + "depresses": 21142, + "amaazing": 21143, + "tragus": 21144, + "offspring": 21145, + "whisperer": 21146, + "wassupp": 21147, + "overcharged": 21148, + "baskin": 21149, + "unlv": 21150, + "mosh": 21151, + "thur": 21152, + "vamo": 21153, + "potatoe": 21154, + "everest": 21155, + "fabian": 21156, + "tweaked": 21157, + "simmer": 21158, + "keegan": 21159, + "tweethearts": 21160, + "artisan": 21161, + "armour": 21162, + "kass": 21163, + "fumble": 21164, + "subtitle": 21165, + "collapsed": 21166, + "wandered": 21167, + "idgi": 21168, + "unbiased": 21169, + "amateurs": 21170, + "hinge": 21171, + "gottah": 21172, + "waterfalls": 21173, + "malas": 21174, + "groban": 21175, + "fking": 21176, + "puh": 21177, + "haz": 21178, + "#twitter": 21179, + "spits": 21180, + "lina": 21181, + "mowing": 21182, + "uncommon": 21183, + "ventured": 21184, + "begs": 21185, + "rotate": 21186, + "cruisin": 21187, + "dikes": 21188, + "yearly": 21189, + "chama": 21190, + "damages": 21191, + "daang": 21192, + "shatter": 21193, + "upright": 21194, + "shawtyy": 21195, + "orgullo": 21196, + "rescued": 21197, + "commons": 21198, + "nigh": 21199, + "photoshopped": 21200, + "pooch": 21201, + "ropa": 21202, + "norris": 21203, + "reborn": 21204, + "guardians": 21205, + "beggin": 21206, + "terri": 21207, + "matulog": 21208, + "sadder": 21209, + "reminders": 21210, + "wussup": 21211, + "phonee": 21212, + "nuthin": 21213, + "baylor": 21214, + "fux": 21215, + "spaced": 21216, + "unas": 21217, + "driver's": 21218, + "jealously": 21219, + "quentin": 21220, + "wong": 21221, + "preachh": 21222, + "mullet": 21223, + "dentists": 21224, + "boas": 21225, + "dziekuje": 21226, + "yoy": 21227, + "#teenwolf": 21228, + "lili": 21229, + "fvcking": 21230, + "carbonara": 21231, + "dungeon": 21232, + "salman": 21233, + "adolescent": 21234, + "rire": 21235, + "amy's": 21236, + "encuentro": 21237, + "kathleen": 21238, + "drilling": 21239, + "awesomee": 21240, + "frustrates": 21241, + "geology": 21242, + "pottery": 21243, + "sahn": 21244, + "tbfh": 21245, + "cuerpo": 21246, + "stockholm": 21247, + "aircraft": 21248, + "ukulele": 21249, + "aaron's": 21250, + "continental": 21251, + "bumpy": 21252, + "concord": 21253, + "sitcom": 21254, + "timeshare": 21255, + "jn": 21256, + "appearances": 21257, + "congo": 21258, + "steele": 21259, + "wich": 21260, + "norma": 21261, + "salle": 21262, + "sod": 21263, + "twittaa": 21264, + "insects": 21265, + "tenth": 21266, + "baklava": 21267, + "activate": 21268, + "glamour": 21269, + "beets": 21270, + "scoot": 21271, + "dunn": 21272, + "remarkably": 21273, + "graffiti": 21274, + "putt": 21275, + "#rude": 21276, + "fad": 21277, + "aero": 21278, + "nutritional": 21279, + "plantains": 21280, + "sequal": 21281, + "decaf": 21282, + "fanatics": 21283, + "busses": 21284, + "contractions": 21285, + "barbeque": 21286, + "sneezes": 21287, + "doze": 21288, + "nique": 21289, + "seiko": 21290, + "consultant": 21291, + "bedside": 21292, + "crichton": 21293, + "succulent": 21294, + "underappreciated": 21295, + "hardworking": 21296, + "neyo": 21297, + "slowed": 21298, + "pelicula": 21299, + "kaayo": 21300, + "arrows": 21301, + "thass": 21302, + "cruiser": 21303, + "squared": 21304, + "nothingg": 21305, + "avi's": 21306, + "koolaid": 21307, + "lotsa": 21308, + "forewarned": 21309, + "parent's": 21310, + "handset": 21311, + "sylvia": 21312, + "monitors": 21313, + "#ew": 21314, + "cockroaches": 21315, + "shreds": 21316, + "candace": 21317, + "ardd": 21318, + "d'amour": 21319, + "escalator": 21320, + "posole": 21321, + "twatchin": 21322, + "probe": 21323, + "crayon": 21324, + "freshener": 21325, + "#thuglife": 21326, + "marbles": 21327, + "asset": 21328, + "pluto": 21329, + "jackson's": 21330, + "diver": 21331, + "referee": 21332, + "adjacent": 21333, + "fettuccine": 21334, + "sadd": 21335, + "consultation": 21336, + "logan's": 21337, + "ghastly": 21338, + "epi": 21339, + "savers": 21340, + "coursee": 21341, + "foreman": 21342, + "tonta": 21343, + "maintenant": 21344, + "xtra": 21345, + "insists": 21346, + "caes": 21347, + "chicka": 21348, + "cub": 21349, + "mockingjay": 21350, + "catfished": 21351, + "harmless": 21352, + "hollandaise": 21353, + "pamela": 21354, + "shiid": 21355, + "scales": 21356, + "niqqas": 21357, + "shanghai": 21358, + "infomercial": 21359, + "nero": 21360, + "bustin": 21361, + "zulu": 21362, + "frioo": 21363, + "jud": 21364, + "palang": 21365, + "lexy": 21366, + "coldstone": 21367, + "outlaw": 21368, + "yogurtland": 21369, + "#ily": 21370, + "vex": 21371, + "upto": 21372, + "nochee": 21373, + "carded": 21374, + "tml": 21375, + "vacuumed": 21376, + "see's": 21377, + "rusts": 21378, + "doorstep": 21379, + "subaru": 21380, + "plump": 21381, + "hijab": 21382, + "bbyy": 21383, + "#nosleep": 21384, + "motions": 21385, + "snapshot": 21386, + "paddy": 21387, + "dazzling": 21388, + "aisha": 21389, + "carpaccio": 21390, + "erykah": 21391, + "caca": 21392, + "soreness": 21393, + "#iwish": 21394, + "#bangbang": 21395, + "foolery": 21396, + "fuxking": 21397, + "followup": 21398, + "postage": 21399, + "haynes": 21400, + "illuminating": 21401, + "creased": 21402, + "friendzoned": 21403, + "sherry": 21404, + "reggaeton": 21405, + "interacting": 21406, + "powerade": 21407, + "aspire": 21408, + "icee": 21409, + "george's": 21410, + "shinning": 21411, + "nomas": 21412, + "assassin": 21413, + "ito": 21414, + "chipmunks": 21415, + "ahmad": 21416, + "backward": 21417, + "latex": 21418, + "nonchalant": 21419, + "equipped": 21420, + "kitkat": 21421, + "attendants": 21422, + "jacky": 21423, + "ordeal": 21424, + "robins": 21425, + "conflicted": 21426, + "lucked": 21427, + "mxm": 21428, + "gott": 21429, + "aq": 21430, + "assumption": 21431, + "j'vais": 21432, + "vm": 21433, + "dumping": 21434, + "doubtful": 21435, + "bj's": 21436, + "fronts": 21437, + "hives": 21438, + "fawk": 21439, + "dayton": 21440, + "rowland": 21441, + "robust": 21442, + "gladiator": 21443, + "tackled": 21444, + "harp": 21445, + "tevin": 21446, + "opposites": 21447, + "tony's": 21448, + "plethora": 21449, + "marquis": 21450, + "avalon": 21451, + "wayne's": 21452, + "worded": 21453, + "ryt": 21454, + "mayb": 21455, + "apache": 21456, + "stomping": 21457, + "waterpik": 21458, + "joins": 21459, + "#emabiggestfans1d": 21460, + "strolling": 21461, + "tracey": 21462, + "#goodday": 21463, + "#always": 21464, + "lexx": 21465, + "vapor": 21466, + "itz": 21467, + "saddened": 21468, + "bodyguard": 21469, + "loveliest": 21470, + "teachings": 21471, + "devine": 21472, + "gangsters": 21473, + "cantina": 21474, + "kelvin": 21475, + "skyler": 21476, + "rochester": 21477, + "rene": 21478, + "kraft": 21479, + "dirk": 21480, + "megan's": 21481, + "drowsy": 21482, + "granddaddy": 21483, + "scraping": 21484, + "balancing": 21485, + "hijo": 21486, + "drawling": 21487, + "tra": 21488, + "grime": 21489, + "moths": 21490, + "durham": 21491, + "juke": 21492, + "charter": 21493, + "actresses": 21494, + "wh": 21495, + "terrance": 21496, + "orchard": 21497, + "terrell": 21498, + "vibration": 21499, + "adderall": 21500, + "tulsa": 21501, + "rk": 21502, + "ehem": 21503, + "cleanest": 21504, + "swansea": 21505, + "ange": 21506, + "smoove": 21507, + "brennan": 21508, + "jimi": 21509, + "plated": 21510, + "challenger": 21511, + "paparazzi": 21512, + "chale": 21513, + "caucasian": 21514, + "muchos": 21515, + "speeds": 21516, + "crusher": 21517, + "appliances": 21518, + "archer": 21519, + "biotch": 21520, + "preform": 21521, + "cougars": 21522, + "gotham": 21523, + "gathered": 21524, + "pleasex": 21525, + "sosfam": 21526, + "trisha": 21527, + "kobe's": 21528, + "tug": 21529, + "donalds": 21530, + "partiu": 21531, + "awoke": 21532, + "higgins": 21533, + "enduring": 21534, + "cgi": 21535, + "enters": 21536, + "ifs": 21537, + "ashleigh": 21538, + "gatta": 21539, + "temprano": 21540, + "tycoon": 21541, + "old's": 21542, + "panicked": 21543, + "blazers": 21544, + "nozzle": 21545, + "auction": 21546, + "somali": 21547, + "gramma": 21548, + "dayxx": 21549, + "cellular": 21550, + "reek": 21551, + "lowes": 21552, + "snowboard": 21553, + "knockin": 21554, + "groundbreaking": 21555, + "gga": 21556, + "relish": 21557, + "kiera": 21558, + "cheddars": 21559, + "hillarious": 21560, + "pneumonia": 21561, + "#crazy": 21562, + "tidur": 21563, + "wrinkle": 21564, + "prelims": 21565, + "gday": 21566, + "blitz": 21567, + "mound": 21568, + "#god": 21569, + "embracing": 21570, + "linking": 21571, + "swung": 21572, + "gaye": 21573, + "wolfe": 21574, + "suuper": 21575, + "jazmin": 21576, + "psalms": 21577, + "bead": 21578, + "hans": 21579, + "cancers": 21580, + "domain": 21581, + "waisting": 21582, + "eoc": 21583, + "reacting": 21584, + "caved": 21585, + "gorgeouss": 21586, + "dennys": 21587, + "sas": 21588, + "applesauce": 21589, + "cameo": 21590, + "assistindo": 21591, + "catered": 21592, + "commentator": 21593, + "cyprus": 21594, + "nawh": 21595, + "perth": 21596, + "yeww": 21597, + "annoyingly": 21598, + "#killme": 21599, + "mach": 21600, + "llevo": 21601, + "dioss": 21602, + "marian": 21603, + "darlings": 21604, + "persistent": 21605, + "felicity": 21606, + "kilos": 21607, + "diggity": 21608, + "bankroll": 21609, + "sel": 21610, + "kaitlin": 21611, + "nauseating": 21612, + "heaven's": 21613, + "constipated": 21614, + "remixed": 21615, + "tricking": 21616, + "decay": 21617, + "intensely": 21618, + "collectible": 21619, + "exactlyy": 21620, + "uuh": 21621, + "jennings": 21622, + "oli": 21623, + "sega": 21624, + "grreat": 21625, + "eg": 21626, + "breeds": 21627, + "brioche": 21628, + "jung": 21629, + "icant": 21630, + "antok": 21631, + "#12": 21632, + "corse": 21633, + "maman": 21634, + "untrue": 21635, + "astro": 21636, + "fuii": 21637, + "ovation": 21638, + "winked": 21639, + "offence": 21640, + "rags": 21641, + "azul": 21642, + "vamping": 21643, + "crumb": 21644, + "homerun": 21645, + "schlock": 21646, + "harmonies": 21647, + "slackin": 21648, + "katt": 21649, + "mariana": 21650, + "resturant": 21651, + "stopper": 21652, + "cw": 21653, + "rg": 21654, + "bref": 21655, + "filme": 21656, + "likey": 21657, + "syempre": 21658, + "lambs": 21659, + "viaje": 21660, + "braiding": 21661, + "instincts": 21662, + "supero": 21663, + "ramos": 21664, + "pooper": 21665, + "#staystrong": 21666, + "relates": 21667, + "crocodile": 21668, + "kmart": 21669, + "earphone": 21670, + "grandmothers": 21671, + "baw": 21672, + "micky": 21673, + "finder": 21674, + "peels": 21675, + "raptors": 21676, + "enhance": 21677, + "mejorr": 21678, + "susie": 21679, + "flooring": 21680, + "enuff": 21681, + "unf": 21682, + "dolph": 21683, + "incomprehensible": 21684, + "outage": 21685, + "unappealing": 21686, + "soonn": 21687, + "lamborghini": 21688, + "ves": 21689, + "#prettylittleliars": 21690, + "specified": 21691, + "chik": 21692, + "jugg": 21693, + "daydreaming": 21694, + "restaurant's": 21695, + "sy": 21696, + "nje": 21697, + "vernon": 21698, + "likeable": 21699, + "pinched": 21700, + "eczema": 21701, + "lat": 21702, + "restricted": 21703, + "yi": 21704, + "kandi": 21705, + "peso": 21706, + "wew": 21707, + "cantt": 21708, + "rtt": 21709, + "paints": 21710, + "jailbreak": 21711, + "fams": 21712, + "scrolled": 21713, + "diseases": 21714, + "knoxville": 21715, + "echoes": 21716, + "romo": 21717, + "wp": 21718, + "cripple": 21719, + "ghz": 21720, + "threading": 21721, + "golly": 21722, + "toute": 21723, + "lav": 21724, + "alrightt": 21725, + "inserts": 21726, + "vivian": 21727, + "scrappy": 21728, + "mollie": 21729, + "mover": 21730, + "karmas": 21731, + "hairdressers": 21732, + "discriminate": 21733, + "webster": 21734, + "hoagie": 21735, + "asb": 21736, + "dota": 21737, + "gringo": 21738, + "#night": 21739, + "rapidly": 21740, + "textures": 21741, + "drastically": 21742, + "#holla": 21743, + "imaa": 21744, + "hardwork": 21745, + "hitter": 21746, + "lunatic": 21747, + "blooded": 21748, + "dejar": 21749, + "reboot": 21750, + "anxiously": 21751, + "gerber": 21752, + "impala": 21753, + "clive": 21754, + "perspectives": 21755, + "#22": 21756, + "abercrombie": 21757, + "georgie": 21758, + "orgy": 21759, + "yoongi": 21760, + "scholars": 21761, + "learner": 21762, + "conditioned": 21763, + "poets": 21764, + "emma's": 21765, + "setback": 21766, + "prouder": 21767, + "hahahaah": 21768, + "hahahahahhaha": 21769, + "peux": 21770, + "smirnoff": 21771, + "cellar": 21772, + "enlighten": 21773, + "trojan": 21774, + "gyoza": 21775, + "kleenex": 21776, + "pete's": 21777, + "whitesides": 21778, + "ludicrous": 21779, + "definitly": 21780, + "garde": 21781, + "rashad": 21782, + "manipulative": 21783, + "artistry": 21784, + "salut": 21785, + "impulse": 21786, + "huevos": 21787, + "drawbacks": 21788, + "regarde": 21789, + "motherfuckin": 21790, + "brawl": 21791, + "chiraq": 21792, + "#daddysgirl": 21793, + "justins": 21794, + "physio": 21795, + "#buffy": 21796, + "hertz": 21797, + "moni": 21798, + "lahh": 21799, + "powershot": 21800, + "jock": 21801, + "laffy": 21802, + "liike": 21803, + "reader's": 21804, + "plank": 21805, + "bellend": 21806, + "happenin": 21807, + "thrive": 21808, + "unappreciated": 21809, + "yoda": 21810, + "cannoli": 21811, + "ymca": 21812, + "joyeux": 21813, + "meus": 21814, + "cavities": 21815, + "mateo": 21816, + "curriculum": 21817, + "mwahh": 21818, + "amos": 21819, + "insomnio": 21820, + "earpiece": 21821, + "lebanese": 21822, + "breakable": 21823, + "seam": 21824, + "roshe": 21825, + "demolished": 21826, + "hammond": 21827, + "whhy": 21828, + "#emabiggestfansjustinbieber": 21829, + "dreamland": 21830, + "gangs": 21831, + "nostrils": 21832, + "homage": 21833, + "birfday": 21834, + "crunches": 21835, + "pigeons": 21836, + "layover": 21837, + "workhorse": 21838, + "interracial": 21839, + "effortless": 21840, + "tidal": 21841, + "baik": 21842, + "webbie": 21843, + "spiked": 21844, + "necklaces": 21845, + "scorpios": 21846, + "kylie's": 21847, + "uglies": 21848, + "coding": 21849, + "rata": 21850, + "benson": 21851, + "hinges": 21852, + "sunbeam": 21853, + "okee": 21854, + "licorice": 21855, + "inquire": 21856, + "unwind": 21857, + "lol'd": 21858, + "llamas": 21859, + "rung": 21860, + "airs": 21861, + "possum": 21862, + "gid": 21863, + "valued": 21864, + "thruu": 21865, + "nuestro": 21866, + "concur": 21867, + "chauffeur": 21868, + "aberdeen": 21869, + "entiende": 21870, + "resurrection": 21871, + "akron": 21872, + "pears": 21873, + "perfumes": 21874, + "dayzz": 21875, + "eonni": 21876, + "#fuckyou": 21877, + "arabian": 21878, + "vim": 21879, + "beamer": 21880, + "evenly": 21881, + "observing": 21882, + "willingly": 21883, + "trolley": 21884, + "syllabus": 21885, + "yamaha": 21886, + "lakeside": 21887, + "penthouse": 21888, + "cutt": 21889, + "fdp": 21890, + "b.s.": 21891, + "psshh": 21892, + "refunds": 21893, + "kenapa": 21894, + "spreads": 21895, + "facials": 21896, + "ati": 21897, + "troopers": 21898, + "exchanged": 21899, + "pulitzer": 21900, + ":dd": 21901, + "colossal": 21902, + "ansel": 21903, + "bev": 21904, + "cashew": 21905, + "adored": 21906, + "wasup": 21907, + "fora": 21908, + "tendency": 21909, + "redeemed": 21910, + "venti": 21911, + "delhi": 21912, + "ballers": 21913, + "squished": 21914, + "hepburn": 21915, + "remodeling": 21916, + "ellos": 21917, + "swerving": 21918, + "bdays": 21919, + "striving": 21920, + "migs": 21921, + "nigerians": 21922, + "aways": 21923, + "minis": 21924, + "advent": 21925, + "medley": 21926, + "claustrophobic": 21927, + "aggravate": 21928, + "neglecting": 21929, + "medyo": 21930, + "librarian": 21931, + "gago": 21932, + "licence": 21933, + "exploitation": 21934, + "prenatal": 21935, + "quay": 21936, + "gdmorning": 21937, + "unappetizing": 21938, + "#soproud": 21939, + "pimping": 21940, + "masaya": 21941, + "hover": 21942, + "tym": 21943, + "aldub": 21944, + "imaginable": 21945, + "beefy": 21946, + "graded": 21947, + "hahahahhahaha": 21948, + "paused": 21949, + "margherita": 21950, + "biff": 21951, + "faltan": 21952, + "retelling": 21953, + "elliptical": 21954, + "toca": 21955, + "autre": 21956, + "viet": 21957, + "#amas": 21958, + "kermit": 21959, + "ugliness": 21960, + "#hallelujah": 21961, + "adri": 21962, + "gba": 21963, + "yawns": 21964, + "kayaking": 21965, + "venir": 21966, + ":s": 21967, + "eyre": 21968, + "moscow": 21969, + "dookie": 21970, + "uneasy": 21971, + "jessica's": 21972, + "defeats": 21973, + "shamrock": 21974, + "pakistani": 21975, + "acknowledging": 21976, + "#spoiled": 21977, + "arbor": 21978, + "sunroof": 21979, + "longtime": 21980, + "shattering": 21981, + "sensitivity": 21982, + "weston": 21983, + "impatiently": 21984, + "poopy": 21985, + "lr": 21986, + "joyous": 21987, + "thursday's": 21988, + "luster": 21989, + "assumes": 21990, + "claptrap": 21991, + "bebee": 21992, + "mockingbird": 21993, + "auditorium": 21994, + "avoir": 21995, + "muppets": 21996, + "gail": 21997, + "anthropology": 21998, + "#embarrassing": 21999, + "prem": 22000, + "nutcracker": 22001, + "harrah's": 22002, + "affecting": 22003, + "saviour": 22004, + "alexandra": 22005, + "otf": 22006, + "curvy": 22007, + "swoon": 22008, + "garland": 22009, + "drawlin": 22010, + "filtered": 22011, + "franks": 22012, + "comm": 22013, + "catchup": 22014, + "brithday": 22015, + "pistols": 22016, + "baristas": 22017, + "chants": 22018, + "healer": 22019, + "kayla's": 22020, + "shisha": 22021, + "strategic": 22022, + "muchas": 22023, + "hymns": 22024, + "prevents": 22025, + "jamaicans": 22026, + "vibrator": 22027, + "ipads": 22028, + "bouchon": 22029, + "fangirls": 22030, + "therapists": 22031, + "franken": 22032, + "cushions": 22033, + "tabloid": 22034, + "jiffy": 22035, + "siting": 22036, + "adik": 22037, + "hellaa": 22038, + "flawlessly": 22039, + "haves": 22040, + "lumpy": 22041, + "datt": 22042, + "bumble": 22043, + "spies": 22044, + "wanda": 22045, + "blaine": 22046, + "bubby": 22047, + "dinnerware": 22048, + "ouchh": 22049, + "bulldogs": 22050, + "ovaa": 22051, + "hummingbird": 22052, + "jambalaya": 22053, + "rereading": 22054, + "admirable": 22055, + "bookbag": 22056, + "betsy": 22057, + "squadd": 22058, + "intimidate": 22059, + "grosse": 22060, + "#nfb": 22061, + "mourinho": 22062, + "chins": 22063, + "toning": 22064, + "attachments": 22065, + "psyched": 22066, + "tuscan": 22067, + "chucked": 22068, + "splints": 22069, + "plead": 22070, + "shai": 22071, + "g'morning": 22072, + "instagrams": 22073, + "arlington": 22074, + "grater": 22075, + "gar": 22076, + "temperatures": 22077, + "itu": 22078, + "lasagne": 22079, + "downey": 22080, + "yogi": 22081, + "activation": 22082, + "colonial": 22083, + "mudding": 22084, + "busta": 22085, + "slanted": 22086, + "horoscopes": 22087, + "joanne": 22088, + "kevin's": 22089, + "parin": 22090, + "lucifer": 22091, + "bryan's": 22092, + "smurf": 22093, + "lebrons": 22094, + "kelli": 22095, + "munchkins": 22096, + "amari": 22097, + "bmth": 22098, + "php": 22099, + "vuelvo": 22100, + "jajajajajajajajajaja": 22101, + "merece": 22102, + "misma": 22103, + "injections": 22104, + "#food": 22105, + "granny's": 22106, + "#boom": 22107, + "postal": 22108, + "becuase": 22109, + "damp": 22110, + "swords": 22111, + "busch": 22112, + "bago": 22113, + "darth": 22114, + "debs": 22115, + "belongings": 22116, + "hoome": 22117, + "notebooks": 22118, + "exhibition": 22119, + "leva": 22120, + "pornography": 22121, + "uve": 22122, + "sumo": 22123, + "scrubbing": 22124, + "carl's": 22125, + "somee": 22126, + "physique": 22127, + "redhead": 22128, + "meanings": 22129, + "huntington": 22130, + "prawn": 22131, + "sperrys": 22132, + "radioactive": 22133, + "giselle": 22134, + "mec": 22135, + "satay": 22136, + "bores": 22137, + "makan": 22138, + "mince": 22139, + "arriba": 22140, + "sendin": 22141, + "omarion": 22142, + "absolutley": 22143, + "intuition": 22144, + "#forever": 22145, + "jw": 22146, + "drizzled": 22147, + "nutter": 22148, + "abang": 22149, + "winnin": 22150, + "finis": 22151, + "summed": 22152, + "sickly": 22153, + "unfamiliar": 22154, + "#birthdaytweet": 22155, + "gingers": 22156, + "pods": 22157, + "acho": 22158, + "truuee": 22159, + "istanbul": 22160, + "yeeaahh": 22161, + "ahoy": 22162, + "dex": 22163, + "amei": 22164, + "drab": 22165, + "carve": 22166, + "pleases": 22167, + "neal": 22168, + "rovers": 22169, + "plantain": 22170, + "mammy": 22171, + "refilling": 22172, + "twerks": 22173, + "chs": 22174, + "thaa": 22175, + "cameron's": 22176, + "induced": 22177, + "deborah": 22178, + "geat": 22179, + "assisted": 22180, + "pothead": 22181, + "hugot": 22182, + "decorative": 22183, + "addison": 22184, + "#collegelife": 22185, + "inked": 22186, + "anchorman": 22187, + "ido": 22188, + "concerto": 22189, + "yus": 22190, + "exaggerated": 22191, + "recruitment": 22192, + "puddles": 22193, + "unusually": 22194, + "concession": 22195, + "cuhz": 22196, + "turnover": 22197, + "niight": 22198, + "[[": 22199, + "digan": 22200, + "royale": 22201, + "radius": 22202, + "hubby's": 22203, + "morocco": 22204, + "patriotic": 22205, + "teleport": 22206, + "hocus": 22207, + "bebo": 22208, + "canister": 22209, + "uo": 22210, + "drumming": 22211, + "diaz": 22212, + "morg": 22213, + "geographic": 22214, + "encounters": 22215, + "breaths": 22216, + "chee": 22217, + "sexiness": 22218, + "plymouth": 22219, + "dois": 22220, + "beleive": 22221, + "tue": 22222, + "lott": 22223, + ":,)": 22224, + "tania": 22225, + "dents": 22226, + "mails": 22227, + "idem": 22228, + "selena's": 22229, + "#thevoice": 22230, + "mutant": 22231, + "wkwk": 22232, + "bacardi": 22233, + "thinker": 22234, + "shippers": 22235, + "#weak": 22236, + "underated": 22237, + "circa": 22238, + "brita": 22239, + "terrence": 22240, + "haayy": 22241, + "neverland": 22242, + "addresses": 22243, + "disastrous": 22244, + "barks": 22245, + "platters": 22246, + "els": 22247, + "hahahahahahha": 22248, + "productivity": 22249, + "aftermath": 22250, + "procedures": 22251, + "butternut": 22252, + "dro": 22253, + "vey": 22254, + "boomer": 22255, + "jls": 22256, + "#a": 22257, + "seminal": 22258, + "brung": 22259, + "eno": 22260, + "bugg": 22261, + "snitched": 22262, + "hedge": 22263, + "#17": 22264, + "survivors": 22265, + "gees": 22266, + "telescope": 22267, + "busog": 22268, + "haram": 22269, + "michelin": 22270, + "lalalala": 22271, + "vuitton": 22272, + "aunque": 22273, + "winged": 22274, + "pauvre": 22275, + "poppers": 22276, + "soho": 22277, + "recommends": 22278, + "lovie": 22279, + "soucis": 22280, + "chelsea's": 22281, + "jeopardy": 22282, + "u'r": 22283, + "tyl": 22284, + "brova": 22285, + "echt": 22286, + "beetle": 22287, + "unofficial": 22288, + "slogan": 22289, + "niggass": 22290, + "qq": 22291, + "judas": 22292, + "aft": 22293, + "pire": 22294, + "tootsie": 22295, + "chock": 22296, + "molly's": 22297, + "tff": 22298, + "consent": 22299, + "dislikes": 22300, + "#overit": 22301, + "ouai": 22302, + "armstrong": 22303, + "wuu": 22304, + "belleza": 22305, + "quail": 22306, + "janae": 22307, + "connoisseur": 22308, + "yana": 22309, + "aiight": 22310, + "khakis": 22311, + "controllers": 22312, + "H": 22313, + "brahh": 22314, + "f'n": 22315, + "limping": 22316, + "boe": 22317, + "odell": 22318, + "swam": 22319, + "cuticles": 22320, + "bullshittin": 22321, + "jana": 22322, + "bew": 22323, + "stumbling": 22324, + "worldd": 22325, + "preface": 22326, + "fender": 22327, + "starvingg": 22328, + "btches": 22329, + "sixties": 22330, + "seldom": 22331, + "blissful": 22332, + "gardener": 22333, + "cosmetics": 22334, + "#decisions": 22335, + "labeling": 22336, + "baptized": 22337, + "northeast": 22338, + "intentional": 22339, + "mazda": 22340, + "civ": 22341, + "hunnid": 22342, + "#halamadrid": 22343, + "ams": 22344, + "num": 22345, + "#shutup": 22346, + "marathons": 22347, + "layouts": 22348, + "phuck": 22349, + "fanboy": 22350, + "bleep": 22351, + "sardines": 22352, + "jadi": 22353, + "kailangan": 22354, + "playlists": 22355, + "jiggle": 22356, + "educating": 22357, + "pleasse": 22358, + "teal": 22359, + "hhaha": 22360, + "nile": 22361, + "cheapo": 22362, + "blends": 22363, + "nob": 22364, + "envelopes": 22365, + "piles": 22366, + "admirer": 22367, + "asos": 22368, + "saddens": 22369, + "outtie": 22370, + "irritation": 22371, + "sge": 22372, + "conceded": 22373, + "baloney": 22374, + "altos": 22375, + "redux": 22376, + "gostosa": 22377, + "lest": 22378, + "scuba": 22379, + "winks": 22380, + "thay": 22381, + "hydrated": 22382, + "sats": 22383, + "mang": 22384, + "emi": 22385, + "agus": 22386, + "tek": 22387, + "secured": 22388, + "tamed": 22389, + "partition": 22390, + "treatise": 22391, + "magaluf": 22392, + "token": 22393, + "taffy": 22394, + "totoo": 22395, + "vamoss": 22396, + "#favorite": 22397, + "westfield": 22398, + "overalls": 22399, + "monsieur": 22400, + "rails": 22401, + "drips": 22402, + "suckered": 22403, + "infinitely": 22404, + "how're": 22405, + "mambo": 22406, + "variations": 22407, + "vite": 22408, + "greene": 22409, + "cosplay": 22410, + "refined": 22411, + "cebu": 22412, + "blech": 22413, + "friendliest": 22414, + "padilla": 22415, + "filles": 22416, + "assists": 22417, + "flavoring": 22418, + "scooped": 22419, + "aldo": 22420, + "krista": 22421, + "tweep": 22422, + "dominated": 22423, + "caress": 22424, + "hoho": 22425, + "flavours": 22426, + "rojo": 22427, + "insecurity": 22428, + "falsely": 22429, + "shifting": 22430, + "variation": 22431, + "stamped": 22432, + "vance": 22433, + "chalked": 22434, + "israeli": 22435, + "spiteful": 22436, + "unfriended": 22437, + "bilingual": 22438, + "tac": 22439, + "aula": 22440, + "#oneday": 22441, + "foreals": 22442, + "morta": 22443, + "kae": 22444, + "webb": 22445, + "wedgie": 22446, + "realidad": 22447, + "sunderland": 22448, + "dons": 22449, + "defs": 22450, + "brussel": 22451, + "raced": 22452, + "tehe": 22453, + "galleria": 22454, + "sext": 22455, + "kaso": 22456, + "gawwd": 22457, + "taquitos": 22458, + "duran": 22459, + "mariachi": 22460, + "isang": 22461, + "sunsets": 22462, + "folow": 22463, + "deans": 22464, + "shutter": 22465, + "dogging": 22466, + "#noo": 22467, + "taper": 22468, + "chivalry": 22469, + "#5sos": 22470, + "granddad": 22471, + "boone": 22472, + "pleeaassee": 22473, + "innovation": 22474, + "#home": 22475, + "booring": 22476, + "cade": 22477, + "eighteen": 22478, + "#23": 22479, + "eateries": 22480, + "chula": 22481, + "standout": 22482, + "pones": 22483, + "splinter": 22484, + "tybg": 22485, + "copycat": 22486, + "dede": 22487, + "boney": 22488, + "criterion": 22489, + "promotions": 22490, + "finessing": 22491, + "fossil": 22492, + "vermont": 22493, + "steakhouses": 22494, + "#drake": 22495, + "kayleigh": 22496, + "sky's": 22497, + "alden": 22498, + "racking": 22499, + "sth": 22500, + "revelations": 22501, + "greensboro": 22502, + "vdara": 22503, + "badu": 22504, + "rapture": 22505, + "jak": 22506, + "reusable": 22507, + "#ahh": 22508, + "l'amour": 22509, + "lh": 22510, + "lazer": 22511, + "kanye's": 22512, + "developer": 22513, + "uso": 22514, + "paraguay": 22515, + "pointers": 22516, + "nicole's": 22517, + "hirap": 22518, + "genres": 22519, + "purifier": 22520, + "lob": 22521, + "blackboard": 22522, + "tmj": 22523, + "sank": 22524, + "niagara": 22525, + "hogwash": 22526, + "factors": 22527, + "bpa": 22528, + "eerie": 22529, + "tonto": 22530, + "kain": 22531, + "reiki": 22532, + "#girlproblems": 22533, + "primark": 22534, + "tapioca": 22535, + "iman": 22536, + "shun": 22537, + "fuckinn": 22538, + "grimey": 22539, + "t.i.": 22540, + "hamachi": 22541, + "boogers": 22542, + "mua": 22543, + "garrix": 22544, + "anaheim": 22545, + "gaay": 22546, + "unpacked": 22547, + "schooler": 22548, + "ashlyn": 22549, + "spartan": 22550, + "hehee": 22551, + "cinemas": 22552, + "pirated": 22553, + "meetup": 22554, + "karma's": 22555, + "mcchicken": 22556, + "lambo": 22557, + "piranha": 22558, + "discrimination": 22559, + "eos": 22560, + "ikk": 22561, + "bucked": 22562, + "terminology": 22563, + "otis": 22564, + "shaded": 22565, + "enjoyy": 22566, + "archie": 22567, + "momentum": 22568, + "congested": 22569, + "honked": 22570, + "tuloy": 22571, + "shawn's": 22572, + "#20": 22573, + "mccoy": 22574, + "stride": 22575, + "lic": 22576, + "gaz": 22577, + "biological": 22578, + "rowan": 22579, + "earplugs": 22580, + "lele": 22581, + "fantastically": 22582, + "obvioo": 22583, + "handicapped": 22584, + "boringg": 22585, + "sopranos": 22586, + "decked": 22587, + "flamenco": 22588, + "lychee": 22589, + "setter": 22590, + "intensive": 22591, + "yayo": 22592, + "bibby": 22593, + "evo": 22594, + "deadpool": 22595, + "couture": 22596, + "ferg": 22597, + "targus": 22598, + "tmro": 22599, + "rollie": 22600, + "honduras": 22601, + "dung": 22602, + "italians": 22603, + "dinero": 22604, + "connectors": 22605, + "ranchers": 22606, + "superr": 22607, + "norfolk": 22608, + "kosher": 22609, + "]]": 22610, + "lte": 22611, + "athena": 22612, + "eraser": 22613, + "tenor": 22614, + "expertise": 22615, + "joseline": 22616, + "pocus": 22617, + "tailor": 22618, + "fay": 22619, + "rumour": 22620, + "instrumentals": 22621, + "shins": 22622, + "ypu": 22623, + "bianco": 22624, + "agin": 22625, + "dua": 22626, + "ironed": 22627, + "rafael": 22628, + "distribution": 22629, + "enroll": 22630, + "excessively": 22631, + "unsuccessful": 22632, + "tracker": 22633, + "stomachache": 22634, + "frl": 22635, + "rockers": 22636, + "gators": 22637, + "mindy": 22638, + "racket": 22639, + "undoubtedly": 22640, + "nev": 22641, + "dubious": 22642, + "recien": 22643, + "loosely": 22644, + "coughed": 22645, + "#s": 22646, + "vader": 22647, + "groupchat": 22648, + "agian": 22649, + "classe": 22650, + "capsule": 22651, + "oya": 22652, + "nakakaiyak": 22653, + "molto": 22654, + "stockings": 22655, + "glide": 22656, + "d'acc": 22657, + "menchies": 22658, + "#raw": 22659, + "blinking": 22660, + "#pray": 22661, + "hardd": 22662, + "pyle": 22663, + "casita": 22664, + "friggen": 22665, + "academics": 22666, + "#oldtvisthebest": 22667, + "underworld": 22668, + "nickelodeon": 22669, + "fiine": 22670, + "hahahahahahahahahahaha": 22671, + "adjustments": 22672, + "conway": 22673, + "productions": 22674, + "cantando": 22675, + "indicator": 22676, + "shrooms": 22677, + "scampi": 22678, + "sienna": 22679, + "autistic": 22680, + "mgmt": 22681, + "subliminal": 22682, + "chub": 22683, + "guiding": 22684, + "moans": 22685, + "tava": 22686, + "cristiano": 22687, + "creamfields": 22688, + "panels": 22689, + "fletcher": 22690, + "observations": 22691, + "blouse": 22692, + "gising": 22693, + "disconnect": 22694, + "expresso": 22695, + "grid": 22696, + "hollin": 22697, + "painter": 22698, + "intact": 22699, + "dorian": 22700, + "tlkin": 22701, + "furthermore": 22702, + "fanks": 22703, + "huaraches": 22704, + "potent": 22705, + "trench": 22706, + "dared": 22707, + "mannequin": 22708, + "depress": 22709, + "fiery": 22710, + "gowns": 22711, + "merlin": 22712, + "cest": 22713, + "lubbock": 22714, + "longlast": 22715, + "mckenna": 22716, + "crows": 22717, + "bolognese": 22718, + "canteen": 22719, + "nuttin": 22720, + "fluids": 22721, + "cg": 22722, + "ih": 22723, + "fucckk": 22724, + "coles": 22725, + "snapper": 22726, + "andy's": 22727, + "spotting": 22728, + "unloyal": 22729, + "fantabulous": 22730, + "peepin": 22731, + "movie's": 22732, + "#pathetic": 22733, + "pelotuda": 22734, + "friendliness": 22735, + "spiciness": 22736, + "composed": 22737, + "fireproof": 22738, + "kensington": 22739, + "squeak": 22740, + "dixon": 22741, + "anecdotes": 22742, + "poptarts": 22743, + "noona": 22744, + "trigga": 22745, + "infectious": 22746, + "agr": 22747, + "apc": 22748, + "jiggy": 22749, + "nala": 22750, + "fathom": 22751, + "quartet": 22752, + "nathan's": 22753, + "boon": 22754, + "buttermilk": 22755, + "morbid": 22756, + "categories": 22757, + "uuhh": 22758, + "mubarak": 22759, + "temporada": 22760, + "musics": 22761, + "kasama": 22762, + "livee": 22763, + "razors": 22764, + "flushed": 22765, + "baybee": 22766, + "wrecker": 22767, + "talia": 22768, + "duel": 22769, + "quads": 22770, + "tinny": 22771, + "uncooked": 22772, + "elm": 22773, + "choreo": 22774, + "youn": 22775, + "perfected": 22776, + "crazzy": 22777, + "nosotras": 22778, + "kal": 22779, + "draya": 22780, + "#mademyday": 22781, + "sonicare": 22782, + "planing": 22783, + "ineed": 22784, + "farah": 22785, + "volunteered": 22786, + "playbook": 22787, + "speedway": 22788, + "flyin": 22789, + "blackhawks": 22790, + "alegro": 22791, + "#teenchoice": 22792, + "heartbreaks": 22793, + "wae": 22794, + "#imissyou": 22795, + "amanda's": 22796, + "snooty": 22797, + "stern": 22798, + "simulator": 22799, + "founders": 22800, + "folds": 22801, + "pleeaase": 22802, + "camry": 22803, + "coded": 22804, + "#fuckit": 22805, + "pacsun": 22806, + "blames": 22807, + "expenses": 22808, + "hogs": 22809, + "heehee": 22810, + "pringle": 22811, + "slows": 22812, + "martina": 22813, + "norwegian": 22814, + "aspen": 22815, + "rendering": 22816, + "mcfly": 22817, + "babiess": 22818, + "chimichanga": 22819, + "guidelines": 22820, + "bests": 22821, + "petting": 22822, + "petsmart": 22823, + "clutter": 22824, + "allways": 22825, + "nonono": 22826, + "braa": 22827, + "wdf": 22828, + "snsd": 22829, + "cabron": 22830, + "growl": 22831, + "sparrow": 22832, + "#toocute": 22833, + "abril": 22834, + "palestine": 22835, + "blanks": 22836, + "oakley": 22837, + "anak": 22838, + "walsh": 22839, + "mommies": 22840, + "beige": 22841, + "espinosa": 22842, + "masquerading": 22843, + "tristeza": 22844, + "iverson": 22845, + "whopper": 22846, + "miserables": 22847, + "pronunciation": 22848, + "pedals": 22849, + "hazardous": 22850, + "giraffes": 22851, + "slappin": 22852, + "iglesias": 22853, + "podia": 22854, + "crowns": 22855, + "#1omf": 22856, + "eta": 22857, + "dislocated": 22858, + "isu": 22859, + "controversy": 22860, + "anywayss": 22861, + "approaches": 22862, + "barre": 22863, + "bighead": 22864, + "arianator": 22865, + "workaholics": 22866, + "hoola": 22867, + "#twd": 22868, + "bdt": 22869, + "smilin": 22870, + "psi": 22871, + "#ballislife": 22872, + "pierde": 22873, + "bangerz": 22874, + "affectionate": 22875, + "janice": 22876, + "nighters": 22877, + "unfocused": 22878, + "tumbler": 22879, + "#determined": 22880, + "naar": 22881, + "fowl": 22882, + "neice": 22883, + "ter": 22884, + "wie": 22885, + "#instagram": 22886, + "dorky": 22887, + "silliness": 22888, + "#13": 22889, + "mavs": 22890, + "joystick": 22891, + "flint": 22892, + "aggie": 22893, + "mcd": 22894, + "darkskins": 22895, + "kickass": 22896, + "anyones": 22897, + "blooming": 22898, + "alerts": 22899, + "blacker": 22900, + "jeeps": 22901, + "longhorn": 22902, + "#boo": 22903, + "tuhh": 22904, + "ambassador": 22905, + "jom": 22906, + "famille": 22907, + "croatia": 22908, + "twitcam": 22909, + "#cfc": 22910, + "whacked": 22911, + "stallion": 22912, + "cheesing": 22913, + "selfs": 22914, + "raspy": 22915, + "moroccan": 22916, + "arie": 22917, + "segundo": 22918, + "drinkers": 22919, + "dropout": 22920, + "viv": 22921, + "lansing": 22922, + "hell's": 22923, + "tongs": 22924, + "batty": 22925, + "entertains": 22926, + "n'est": 22927, + "moe's": 22928, + "translations": 22929, + "pokes": 22930, + "afterschool": 22931, + "waldorf": 22932, + "stinging": 22933, + "unloved": 22934, + "hyfr": 22935, + "composure": 22936, + "ames": 22937, + "aggravation": 22938, + "abouta": 22939, + "encantan": 22940, + "ax": 22941, + "minneapolis": 22942, + "mckenzie": 22943, + "owens": 22944, + "abort": 22945, + "dors": 22946, + "extender": 22947, + "wantt": 22948, + "nisha": 22949, + "dina": 22950, + "delaney": 22951, + "carriage": 22952, + "darwin": 22953, + "rapids": 22954, + "clima": 22955, + "bailar": 22956, + "fp": 22957, + "automated": 22958, + "cutlery": 22959, + "patrick's": 22960, + "molesta": 22961, + "indigo": 22962, + "gutom": 22963, + "#whyy": 22964, + "spawn": 22965, + "virgos": 22966, + "presentable": 22967, + "shorted": 22968, + "registering": 22969, + "compulsive": 22970, + "extinct": 22971, + "sayings": 22972, + "babymama": 22973, + "proms": 22974, + "trimming": 22975, + "lounging": 22976, + "ferret": 22977, + "prepaid": 22978, + "podium": 22979, + "dogged": 22980, + "strut": 22981, + "caga": 22982, + "manic": 22983, + "#loveya": 22984, + "katamad": 22985, + "springsteen": 22986, + "reem": 22987, + "totaled": 22988, + "dmb": 22989, + "dslr": 22990, + "ethic": 22991, + "tiredness": 22992, + "damaging": 22993, + "erbody": 22994, + "revolving": 22995, + "embole": 22996, + "twig": 22997, + "shivers": 22998, + "tomm": 22999, + "#you": 23000, + "akward": 23001, + "impromptu": 23002, + "thxx": 23003, + "glitters": 23004, + "scarface": 23005, + "broadcasting": 23006, + "ouh": 23007, + "reload": 23008, + "obnoxiously": 23009, + "aminn": 23010, + "tomboy": 23011, + "charmer": 23012, + "spams": 23013, + "haciendo": 23014, + "leuk": 23015, + "massa": 23016, + "pharmacist": 23017, + "replaceable": 23018, + "organise": 23019, + "santi": 23020, + "shabu": 23021, + "juicing": 23022, + "cortez": 23023, + "segunda": 23024, + "#oh": 23025, + "dente": 23026, + "budden": 23027, + "listoo": 23028, + "harlequin": 23029, + "ids": 23030, + "oblivion": 23031, + "wednesday's": 23032, + "reyes": 23033, + "wv": 23034, + "ext": 23035, + "chloe's": 23036, + "reflex": 23037, + "#gn": 23038, + "hoi": 23039, + "lf": 23040, + "garnish": 23041, + "untouched": 23042, + "bailee": 23043, + "massaged": 23044, + "pelotudo": 23045, + "lawson": 23046, + "aptly": 23047, + "complements": 23048, + "yvette": 23049, + "ricans": 23050, + "ether": 23051, + "cornwall": 23052, + "borrowing": 23053, + "misha": 23054, + "daiquiri": 23055, + "#scary": 23056, + "bearly": 23057, + "odeio": 23058, + "respecting": 23059, + "captioning": 23060, + "riddle": 23061, + "foxx": 23062, + "fagget": 23063, + "eyesight": 23064, + "aun": 23065, + "sprints": 23066, + "panang": 23067, + "mol": 23068, + "jigga": 23069, + "cuzin": 23070, + "kiya": 23071, + "vibrates": 23072, + "radios": 23073, + "prodigy": 23074, + "leanne": 23075, + "duno": 23076, + "authorized": 23077, + "joc": 23078, + "freud": 23079, + "inyo": 23080, + "rendered": 23081, + "publishers": 23082, + "downing": 23083, + "inexcusable": 23084, + "sexta": 23085, + "pagod": 23086, + "#growup": 23087, + "#wut": 23088, + "blanca": 23089, + "illustration": 23090, + "wick": 23091, + "dior": 23092, + "spat": 23093, + "exorcist": 23094, + "melatonin": 23095, + "desmond": 23096, + "alexus": 23097, + "smores": 23098, + "alias": 23099, + "moby": 23100, + "awaken": 23101, + "highlander": 23102, + "tacobell": 23103, + "shores": 23104, + "wonka": 23105, + "enzo": 23106, + "speculation": 23107, + "#rns": 23108, + "roberto's": 23109, + "satanic": 23110, + "skateboarding": 23111, + "honeys": 23112, + "sangat": 23113, + "resembles": 23114, + "thotty": 23115, + "toddy": 23116, + "caravan": 23117, + "#stfu": 23118, + "sauced": 23119, + "edibles": 23120, + "gorgonzola": 23121, + "tracked": 23122, + "takecare": 23123, + "scripts": 23124, + "#twoff": 23125, + "shem": 23126, + "devious": 23127, + "daredevil": 23128, + "fuimos": 23129, + "souffle": 23130, + "centers": 23131, + "peterson": 23132, + "iwant": 23133, + "vday": 23134, + "rarity": 23135, + "stayy": 23136, + "belles": 23137, + "acacia": 23138, + "transformed": 23139, + "rei": 23140, + "semis": 23141, + "complexity": 23142, + "cred": 23143, + "sar": 23144, + "colon": 23145, + "repay": 23146, + "wakas": 23147, + ";/3": 23148, + "paasa": 23149, + "eita": 23150, + "dyan": 23151, + "fd": 23152, + "mire": 23153, + "havana": 23154, + "#imdone": 23155, + "unplanned": 23156, + "suburbs": 23157, + "mineral": 23158, + "cranberries": 23159, + "dyer": 23160, + "f'd": 23161, + "niko": 23162, + "compre": 23163, + "chime": 23164, + "buhay": 23165, + "concierto": 23166, + "cookbooks": 23167, + "rhapsody": 23168, + "tryst": 23169, + "wannaa": 23170, + "unheard": 23171, + "hdp": 23172, + "sunbathing": 23173, + "kesayangan": 23174, + "identification": 23175, + "btr": 23176, + "melancholy": 23177, + "monta": 23178, + "evet": 23179, + "afar": 23180, + "alanis": 23181, + "thi": 23182, + "poi": 23183, + "shorties": 23184, + "shmoney": 23185, + "seasonings": 23186, + "evolving": 23187, + "siick": 23188, + "separating": 23189, + "mueroo": 23190, + "bestiee": 23191, + "darryl": 23192, + "gizmo": 23193, + "iloveyoutoo": 23194, + "walkway": 23195, + "bcp": 23196, + "#lucky": 23197, + "edith": 23198, + "nobodys": 23199, + "inbetweeners": 23200, + "huehue": 23201, + "hitachi": 23202, + "uninterested": 23203, + "polka": 23204, + "cornball": 23205, + "loren": 23206, + "#honestyhour": 23207, + "mova": 23208, + "blaster": 23209, + "accommodation": 23210, + "felipe": 23211, + "trumpets": 23212, + "ned": 23213, + "fairies": 23214, + "bens": 23215, + "bison": 23216, + "southeast": 23217, + "crews": 23218, + "pdf": 23219, + "tenia": 23220, + "assim": 23221, + "bbw": 23222, + "joaquin": 23223, + "leaned": 23224, + ";o": 23225, + "clarissa": 23226, + "mfc": 23227, + "blk": 23228, + "chris's": 23229, + "clipped": 23230, + "#godbless": 23231, + "sporty": 23232, + "honking": 23233, + "blueprint": 23234, + "gadgets": 23235, + "cello": 23236, + "bok": 23237, + "schwinn": 23238, + "throwed": 23239, + "wsp": 23240, + "kyungsoo": 23241, + "#whyme": 23242, + "#starving": 23243, + "trues": 23244, + "kuwtk": 23245, + "premises": 23246, + "carved": 23247, + "fable": 23248, + "#loser": 23249, + "tread": 23250, + "hoody": 23251, + "materialistic": 23252, + "loveable": 23253, + "daze": 23254, + "#macbarbie07giveaway": 23255, + "divina": 23256, + "deadlines": 23257, + "reflecting": 23258, + "yayayayay": 23259, + "icloud": 23260, + "terio": 23261, + "oe": 23262, + "tyree": 23263, + "hurray": 23264, + "drastic": 23265, + "puyat": 23266, + "firstly": 23267, + "rea": 23268, + "wutt": 23269, + "#supernatural": 23270, + "j'y": 23271, + "udah": 23272, + "gags": 23273, + ":-/": 23274, + "whens": 23275, + "#four": 23276, + "apres": 23277, + "jameson": 23278, + "deflated": 23279, + "lai": 23280, + "prescriptions": 23281, + "nfs": 23282, + "nes": 23283, + "salio": 23284, + "nakita": 23285, + "suffocate": 23286, + "helmets": 23287, + "trike": 23288, + "spittin": 23289, + "jiayou": 23290, + "quilting": 23291, + "haunts": 23292, + "lavigne": 23293, + "lure": 23294, + "#goodvibes": 23295, + "disown": 23296, + "#ynwa": 23297, + "facee": 23298, + "coc": 23299, + "trunks": 23300, + "tenes": 23301, + "cliffhanger": 23302, + "vela": 23303, + "flourish": 23304, + "whomever": 23305, + "midday": 23306, + "vents": 23307, + "srs": 23308, + "verra": 23309, + "indispensible": 23310, + "clasp": 23311, + "complementary": 23312, + "shui": 23313, + "forevaa": 23314, + "birdie": 23315, + "errthang": 23316, + "surfaces": 23317, + "groomed": 23318, + "dunking": 23319, + "amarte": 23320, + "clubhouse": 23321, + "macintosh": 23322, + "hg": 23323, + "bathed": 23324, + "clog": 23325, + "hairstylist": 23326, + "breathes": 23327, + "flocka": 23328, + "masseuse": 23329, + "smoother": 23330, + "czech": 23331, + "foodies": 23332, + "ahahahahahaha": 23333, + "elevated": 23334, + "#awk": 23335, + "crushin": 23336, + "chaps": 23337, + "shanice": 23338, + "hahahahhaa": 23339, + "hittas": 23340, + "bullock": 23341, + "ranges": 23342, + "rockabilly": 23343, + "nightlife": 23344, + "vane": 23345, + "narcissistic": 23346, + "drifted": 23347, + "shortie": 23348, + "masturbate": 23349, + "paki": 23350, + "eew": 23351, + "hollie": 23352, + "fftb": 23353, + "gundam": 23354, + "exatamente": 23355, + "morri": 23356, + "maverick": 23357, + "soles": 23358, + "armageddon": 23359, + "hagas": 23360, + "prevention": 23361, + "deactivating": 23362, + "#prevtweet": 23363, + "cavity": 23364, + "#onpoint": 23365, + "junction": 23366, + "sistah": 23367, + "longboard": 23368, + "preeing": 23369, + "grieving": 23370, + "mojitos": 23371, + "qe": 23372, + "viejo": 23373, + "antarctica": 23374, + "wm": 23375, + ":*({": 23376, + "#loner": 23377, + "ceases": 23378, + "lemongrass": 23379, + "rainforest": 23380, + "marsh": 23381, + "halen": 23382, + "desayuno": 23383, + "feng": 23384, + "gamee": 23385, + "suffocating": 23386, + "quilts": 23387, + "meerci": 23388, + "bhs": 23389, + "sean's": 23390, + "toasting": 23391, + "rumba": 23392, + "evolved": 23393, + "infections": 23394, + "dolan": 23395, + "rentals": 23396, + "cheery": 23397, + "uwi": 23398, + "masakit": 23399, + "poxa": 23400, + "diehard": 23401, + "aburrida": 23402, + "degrading": 23403, + "mayra": 23404, + "baha": 23405, + "decatur": 23406, + "#gameday": 23407, + "poops": 23408, + "provolone": 23409, + "nell": 23410, + "esperaba": 23411, + "skeet": 23412, + "brian's": 23413, + "ganon": 23414, + "overbearing": 23415, + "protectors": 23416, + "alyssa's": 23417, + "maluma": 23418, + "fuuckk": 23419, + "weaak": 23420, + "seduction": 23421, + "ungrounded": 23422, + "interviewing": 23423, + "missionary": 23424, + "duds": 23425, + "waab": 23426, + "frr": 23427, + "starship": 23428, + "headbands": 23429, + "mobbin": 23430, + "#clutch": 23431, + "p's": 23432, + "squatting": 23433, + "quiser": 23434, + "participation": 23435, + "lagoon": 23436, + "tryina": 23437, + "adtr": 23438, + "jaguar": 23439, + "#workflow": 23440, + "grosses": 23441, + "boomin": 23442, + "ahw": 23443, + "#happyfriday": 23444, + "lobe": 23445, + "confirming": 23446, + "earlyy": 23447, + "shaping": 23448, + "fixture": 23449, + "padres": 23450, + "sws": 23451, + "smallville": 23452, + "firewire": 23453, + "domino": 23454, + "conquered": 23455, + "ojo": 23456, + "fxcking": 23457, + "acabou": 23458, + "knickers": 23459, + "kamusta": 23460, + "coolers": 23461, + "alterations": 23462, + "wce": 23463, + "emperor's": 23464, + "condiment": 23465, + "#heartbroken": 23466, + "shutdown": 23467, + "tez": 23468, + "sexo": 23469, + "choses": 23470, + "coldd": 23471, + "signings": 23472, + "jure": 23473, + "company's": 23474, + "wastes": 23475, + "hayss": 23476, + "jejeje": 23477, + "sizzle": 23478, + "heladoo": 23479, + "wavey": 23480, + "darian": 23481, + "themm": 23482, + "diem": 23483, + "sacks": 23484, + "aine": 23485, + "pleasurable": 23486, + "mortified": 23487, + "meditate": 23488, + "reeves": 23489, + "lawsuit": 23490, + "plagiarism": 23491, + "mwaah": 23492, + "rollins": 23493, + "lew": 23494, + "#nohomo": 23495, + "proportions": 23496, + "aeropostale": 23497, + "tens": 23498, + "marsala": 23499, + "accustomed": 23500, + "chronicle": 23501, + "irritable": 23502, + "enrollment": 23503, + "eame": 23504, + "keypad": 23505, + "downloads": 23506, + "#neveragain": 23507, + "atkins": 23508, + "cansancio": 23509, + "indestructible": 23510, + "helena": 23511, + "betray": 23512, + "plano": 23513, + "possessive": 23514, + "weve": 23515, + "looses": 23516, + "kidneys": 23517, + "obtain": 23518, + "friendd": 23519, + "besst": 23520, + "reprise": 23521, + "snatching": 23522, + "hick": 23523, + "reindeer": 23524, + "meech": 23525, + "nick's": 23526, + "jayz": 23527, + "cheeto": 23528, + "propoganda": 23529, + "adam's": 23530, + "youngsters": 23531, + "paco": 23532, + "jordy": 23533, + "cranking": 23534, + "meany": 23535, + "ide": 23536, + "verlo": 23537, + "closets": 23538, + "delirious": 23539, + "bij": 23540, + "acura": 23541, + "nats": 23542, + "flicked": 23543, + "tactical": 23544, + "sands": 23545, + "rindo": 23546, + "entourage": 23547, + "annoyin": 23548, + "kalbi": 23549, + "onyx": 23550, + "chuckie": 23551, + "romaine": 23552, + "carols": 23553, + "wonderwall": 23554, + "muerte": 23555, + "#typical": 23556, + "saigon": 23557, + "htc": 23558, + "sammich": 23559, + "parce": 23560, + "brotherhood": 23561, + "bacteria": 23562, + "mnl": 23563, + "monologue": 23564, + "ecu": 23565, + "humane": 23566, + "punto": 23567, + "pbr": 23568, + "lani": 23569, + "uglyy": 23570, + "reassurance": 23571, + "#15": 23572, + "soeur": 23573, + "docking": 23574, + "corbin": 23575, + "chases": 23576, + "sandpaper": 23577, + "punctuation": 23578, + "ewan": 23579, + "gratuitous": 23580, + "postman": 23581, + "crumbles": 23582, + "#sosad": 23583, + "roaster": 23584, + "cabello": 23585, + "boomerang": 23586, + "chaud": 23587, + "guap": 23588, + "reconditioned": 23589, + "bagging": 23590, + "portal": 23591, + "luuv": 23592, + "vicki": 23593, + "carolyn": 23594, + "coors": 23595, + "ewh": 23596, + "romero": 23597, + "<3": 23598, + "joo": 23599, + "nuisance": 23600, + "exhibits": 23601, + "fizzy": 23602, + "lithium": 23603, + "dolores": 23604, + "wrinkled": 23605, + "ryder": 23606, + "bgt": 23607, + "uw": 23608, + "gass": 23609, + "cluster": 23610, + "benihana": 23611, + "losin": 23612, + "promotes": 23613, + "preposterous": 23614, + "danni": 23615, + "fanfics": 23616, + "mimi's": 23617, + "greyson": 23618, + "bert": 23619, + "roland": 23620, + "onnat": 23621, + "analyze": 23622, + "sill": 23623, + "jkk": 23624, + "copping": 23625, + "orginal": 23626, + "providence": 23627, + "acres": 23628, + "getchu": 23629, + "cuhs": 23630, + "psy": 23631, + "intersection": 23632, + "starch": 23633, + "pimps": 23634, + "southwestern": 23635, + "nop": 23636, + "anorexic": 23637, + "posey": 23638, + "hahahh": 23639, + "recreation": 23640, + "ombre": 23641, + "turbotax": 23642, + "soc": 23643, + "nervios": 23644, + "confit": 23645, + "nastyy": 23646, + "luce": 23647, + "getter": 23648, + "chilean": 23649, + "foxes": 23650, + "duets": 23651, + "dumps": 23652, + "tightened": 23653, + "leisure": 23654, + "macam": 23655, + "civics": 23656, + "meyer": 23657, + "ashton's": 23658, + "superstars": 23659, + "gopro": 23660, + "vidcon": 23661, + "yawl": 23662, + "flicking": 23663, + "ssoo": 23664, + "invade": 23665, + "coronas": 23666, + "completly": 23667, + "veut": 23668, + "bougie": 23669, + "sonics": 23670, + "surname": 23671, + "hyu": 23672, + "#comeback": 23673, + "intricate": 23674, + "dess": 23675, + "lexmark": 23676, + "programmes": 23677, + "floods": 23678, + "naptime": 23679, + "mase": 23680, + "ornament": 23681, + "ddnt": 23682, + "technicians": 23683, + "fiddle": 23684, + "llegando": 23685, + "premature": 23686, + "spliff": 23687, + "brochure": 23688, + "compendium": 23689, + "trae": 23690, + "swt": 23691, + "yknow": 23692, + "baguio": 23693, + "imagines": 23694, + "roomate": 23695, + "mf'n": 23696, + "nasal": 23697, + "sadie's": 23698, + "mccarthy": 23699, + "receives": 23700, + "murphy's": 23701, + "beacon": 23702, + "escaping": 23703, + "pattie": 23704, + "everythin": 23705, + "routes": 23706, + "texan": 23707, + "piped": 23708, + "sharpening": 23709, + "photographic": 23710, + "suckas": 23711, + "nakakamiss": 23712, + "furminator": 23713, + "ballerina": 23714, + "cardi": 23715, + "bagay": 23716, + "extraordinarily": 23717, + "loosen": 23718, + "astronaut": 23719, + "enigma": 23720, + "robby": 23721, + "jiji": 23722, + "rawr": 23723, + "remade": 23724, + "farmer's": 23725, + "swishers": 23726, + "dubsmash": 23727, + "#yikes": 23728, + "presenter": 23729, + "celoso": 23730, + "succes": 23731, + "capability": 23732, + "adopting": 23733, + "atop": 23734, + "perdon": 23735, + "diversion": 23736, + "insurgent": 23737, + "ld": 23738, + "enferma": 23739, + "mildew": 23740, + "fect": 23741, + "mba": 23742, + "crema": 23743, + "patton": 23744, + "brigada": 23745, + "outlander": 23746, + "lagged": 23747, + "#lifeisgood": 23748, + "flyy": 23749, + "lovatics": 23750, + "debo": 23751, + "shiet": 23752, + "personalized": 23753, + "erk": 23754, + "demonic": 23755, + "wingman": 23756, + "vineyard": 23757, + "prague": 23758, + "watcha": 23759, + "uugh": 23760, + "evanescence": 23761, + "definitions": 23762, + "booker": 23763, + "q's": 23764, + "vivi": 23765, + "pyrex": 23766, + "kelan": 23767, + "lobsters": 23768, + "sence": 23769, + "lentil": 23770, + "huggies": 23771, + "italia": 23772, + "uniquely": 23773, + "tailgating": 23774, + "wkend": 23775, + "softest": 23776, + "habitat": 23777, + "yolk": 23778, + "cualquier": 23779, + "laughably": 23780, + "#pushawardskathniels": 23781, + "welcomes": 23782, + "sheds": 23783, + "lesley": 23784, + "gassin": 23785, + "multiply": 23786, + "copa": 23787, + "bronson": 23788, + "student's": 23789, + "cristo": 23790, + "mazing": 23791, + "ahre": 23792, + "swanky": 23793, + "mac's": 23794, + "pointy": 23795, + "vanished": 23796, + "jollibee": 23797, + "lighted": 23798, + "cna": 23799, + "salgo": 23800, + "saturn": 23801, + "marvin's": 23802, + "cert": 23803, + "iaint": 23804, + "personne": 23805, + "kellie": 23806, + "structured": 23807, + "nur": 23808, + "shleep": 23809, + "#16": 23810, + "confidential": 23811, + "listings": 23812, + "bhe": 23813, + "phillies": 23814, + "ginuwine": 23815, + "ouat": 23816, + "nanti": 23817, + "eileen": 23818, + "kirsty": 23819, + "blending": 23820, + "crossword": 23821, + "detour": 23822, + "poorer": 23823, + "jerrys": 23824, + "nochees": 23825, + "postin": 23826, + "roosters": 23827, + "clarinet": 23828, + "sled": 23829, + "boyd": 23830, + "arg": 23831, + "recuerdos": 23832, + "carrey": 23833, + "finalmente": 23834, + "copier": 23835, + "disloyal": 23836, + "roam": 23837, + "wildcats": 23838, + "harmonica": 23839, + "misinformed": 23840, + "chink": 23841, + "tastier": 23842, + "ilysmx": 23843, + "stratosphere": 23844, + "helium": 23845, + "#dedication": 23846, + "movers": 23847, + "hables": 23848, + "fearing": 23849, + "advertisements": 23850, + "lleva": 23851, + "saut": 23852, + "boyce": 23853, + "pacing": 23854, + "name's": 23855, + "dancefloor": 23856, + "isles": 23857, + "assassins": 23858, + "yanna": 23859, + "dubbing": 23860, + "navigator": 23861, + "ziggy": 23862, + "preppy": 23863, + "corrects": 23864, + "assign": 23865, + "pleaasee": 23866, + "montage": 23867, + "neighbor's": 23868, + "cluttered": 23869, + "antidote": 23870, + "prosecco": 23871, + "jelena": 23872, + "sube": 23873, + "swimmer": 23874, + "brea": 23875, + "hopin": 23876, + "albino": 23877, + "querer": 23878, + "trav": 23879, + "carver": 23880, + "ozil": 23881, + "dickeating": 23882, + "oder": 23883, + "await": 23884, + "jessi": 23885, + "wowed": 23886, + "valentina": 23887, + "curries": 23888, + "martins": 23889, + "niki": 23890, + "aga": 23891, + "adapt": 23892, + "plottin": 23893, + "pfb": 23894, + "notable": 23895, + "peeler": 23896, + "sketches": 23897, + "perra": 23898, + "comprar": 23899, + "juz": 23900, + "footie": 23901, + "qu'on": 23902, + "guetta": 23903, + "majesty": 23904, + "renamed": 23905, + "dvi": 23906, + "pail": 23907, + "understated": 23908, + "acabei": 23909, + "sammi": 23910, + "improv": 23911, + "clack": 23912, + "fondo": 23913, + "weell": 23914, + "diciembre": 23915, + "dancehall": 23916, + "everythang": 23917, + "garner": 23918, + "evn": 23919, + "#score": 23920, + "brisk": 23921, + "#neverforget": 23922, + "clover": 23923, + "shone": 23924, + "bieen": 23925, + "formerly": 23926, + "howl": 23927, + "medicated": 23928, + "ratchetness": 23929, + "aayy": 23930, + "kickoff": 23931, + "habanero": 23932, + "minging": 23933, + "snacking": 23934, + "inefficient": 23935, + "abundant": 23936, + "wilder": 23937, + "honeyy": 23938, + "gre": 23939, + "mothafuckin": 23940, + "loonngg": 23941, + "samoan": 23942, + "parting": 23943, + "heirloom": 23944, + "cecilia": 23945, + "salesperson": 23946, + "#worthit": 23947, + "posers": 23948, + "scone": 23949, + "forreals": 23950, + "prelim": 23951, + "victorias": 23952, + "bii": 23953, + "patronizing": 23954, + "uneventful": 23955, + "robb": 23956, + "pate": 23957, + "optimism": 23958, + "carefull": 23959, + "energized": 23960, + "peers": 23961, + "staph": 23962, + "manicures": 23963, + "dyeing": 23964, + "levanto": 23965, + "shad": 23966, + "followin": 23967, + "frenzy": 23968, + "denton": 23969, + "boohoo": 23970, + "nicolas": 23971, + "buddhist": 23972, + "hahaaha": 23973, + "bren": 23974, + "tenner": 23975, + "motherhood": 23976, + "relieving": 23977, + "adrianna": 23978, + "redd": 23979, + "purity": 23980, + "shading": 23981, + "ninth": 23982, + "cosmos": 23983, + "spun": 23984, + "freddy's": 23985, + "devant": 23986, + "tacoma": 23987, + "embarrassingly": 23988, + "m'a": 23989, + "cont": 23990, + "regents": 23991, + "witt": 23992, + "finely": 23993, + "niggs": 23994, + "bandaid": 23995, + "#girlfriendtweet": 23996, + "turquoise": 23997, + "tenga": 23998, + "stomped": 23999, + "formatted": 24000, + "blushes": 24001, + "sno": 24002, + "unsettling": 24003, + "tostada": 24004, + "cleo": 24005, + "lucozade": 24006, + "yesh": 24007, + "vx": 24008, + "sprays": 24009, + "nochess": 24010, + "salvatore": 24011, + "#realshit": 24012, + "butthead": 24013, + "perder": 24014, + "coupled": 24015, + "hourss": 24016, + "precal": 24017, + "youse": 24018, + "gent": 24019, + "handwritten": 24020, + "melhores": 24021, + "jannah": 24022, + "longs": 24023, + "hotspot": 24024, + "pip": 24025, + "vouch": 24026, + "jacob's": 24027, + "jee": 24028, + "removes": 24029, + "obstacle": 24030, + "tuya": 24031, + "limb": 24032, + "clamps": 24033, + "disgusts": 24034, + "maal": 24035, + "selca": 24036, + "sweg": 24037, + "vixen": 24038, + "saxophone": 24039, + "calendars": 24040, + "lawl": 24041, + "vows": 24042, + "automotive": 24043, + "waant": 24044, + "talentless": 24045, + "shit's": 24046, + "mammoth": 24047, + "yeeaah": 24048, + "dno": 24049, + "#kuwtk": 24050, + "exclusively": 24051, + "renovations": 24052, + "okiee": 24053, + "obscene": 24054, + "amr": 24055, + "arianators": 24056, + "suzanne": 24057, + "completion": 24058, + "noot": 24059, + "tarea": 24060, + "morniing": 24061, + "ganja": 24062, + "mariah's": 24063, + "poisoned": 24064, + "wilton": 24065, + "swimmers": 24066, + "jive": 24067, + "inflatable": 24068, + "rookies": 24069, + "rtd": 24070, + "marv": 24071, + "fingertips": 24072, + "flemme": 24073, + "scorpions": 24074, + "launched": 24075, + "amorzinho": 24076, + "lmn": 24077, + "youi": 24078, + "ijust": 24079, + "biter": 24080, + "cheesey": 24081, + "comfiest": 24082, + "spas": 24083, + "scarecrow": 24084, + "#workout": 24085, + "philosopher": 24086, + "whaddup": 24087, + "jaan": 24088, + "grandee": 24089, + "goofball": 24090, + "gareth": 24091, + "perdi": 24092, + "soree": 24093, + "mek": 24094, + "jg": 24095, + "pfftt": 24096, + "gw": 24097, + "malade": 24098, + "hihihihi": 24099, + "relaxer": 24100, + "steppin": 24101, + "lexington": 24102, + "#timeflies": 24103, + "candied": 24104, + "erking": 24105, + "hanson": 24106, + "knobs": 24107, + "bornday": 24108, + "holyy": 24109, + "woodstock": 24110, + "lifelong": 24111, + "ungodly": 24112, + "burgh": 24113, + "stanford": 24114, + "ifwy": 24115, + "ponderous": 24116, + "sakura": 24117, + "brenna": 24118, + "incompetence": 24119, + "oowee": 24120, + "handcuffs": 24121, + "caspar": 24122, + "bibs": 24123, + "#hollyoaks": 24124, + "yeo": 24125, + "pibe": 24126, + "swapped": 24127, + "#cbb": 24128, + "#progress": 24129, + "valla": 24130, + "posture": 24131, + "retour": 24132, + "concordo": 24133, + "mamaa": 24134, + "consult": 24135, + "slyly": 24136, + "exits": 24137, + "deandre": 24138, + "ehn": 24139, + "raja": 24140, + "toenail": 24141, + "samedi": 24142, + "queremos": 24143, + "geezer": 24144, + "folback": 24145, + "badtrip": 24146, + "hija": 24147, + "saben": 24148, + "bohemian": 24149, + "unt": 24150, + "insomniac": 24151, + "leroy": 24152, + "brookie": 24153, + "europa": 24154, + "estan": 24155, + "explodes": 24156, + "randall": 24157, + "contented": 24158, + "colourful": 24159, + "moviee": 24160, + "ue": 24161, + "raj": 24162, + "swerved": 24163, + "boils": 24164, + "#catfish": 24165, + "ahmed": 24166, + "kareem": 24167, + "promotional": 24168, + "aiai": 24169, + "playable": 24170, + "rnb": 24171, + "gaahh": 24172, + "slate": 24173, + "ican": 24174, + "bei": 24175, + "sembreak": 24176, + "efficiently": 24177, + "hummer": 24178, + "loopy": 24179, + "retractable": 24180, + "housee": 24181, + "kds": 24182, + "mensaje": 24183, + "smartphone": 24184, + "abd": 24185, + "enamoro": 24186, + "cosmetology": 24187, + "absorb": 24188, + "fds": 24189, + "nevaa": 24190, + "cypher": 24191, + "guadalupe": 24192, + "shears": 24193, + "terimakasih": 24194, + "eachothers": 24195, + "engines": 24196, + "mommie": 24197, + "capone": 24198, + "lorraine": 24199, + "#19": 24200, + "muck": 24201, + "chia": 24202, + "gardner": 24203, + "skim": 24204, + "pricier": 24205, + "haaha": 24206, + "gregg": 24207, + "anus": 24208, + "hoppin": 24209, + "josiah": 24210, + "kayden": 24211, + "nuu": 24212, + "taeyeon": 24213, + "greyhound": 24214, + "pasted": 24215, + "doms": 24216, + "bronzer": 24217, + "peck": 24218, + "landscaping": 24219, + "ohmy": 24220, + "slayin": 24221, + "freed": 24222, + "buku": 24223, + "amanha": 24224, + "coven": 24225, + "syncing": 24226, + "norah": 24227, + "canso": 24228, + "uup": 24229, + "dominant": 24230, + "zi": 24231, + "maki": 24232, + "traumatic": 24233, + "#guilty": 24234, + "ddr": 24235, + "dulu": 24236, + "muzak": 24237, + "todavia": 24238, + "grandpa's": 24239, + "patronize": 24240, + "#fun": 24241, + "clothed": 24242, + "loathe": 24243, + "withh": 24244, + "memorabilia": 24245, + "chiill": 24246, + "shs": 24247, + "openings": 24248, + "soprano": 24249, + "#lonely": 24250, + "preserve": 24251, + "cody's": 24252, + "niamh": 24253, + "mig": 24254, + "spinner": 24255, + "dunham": 24256, + "luc": 24257, + "teeter": 24258, + "matee": 24259, + "pedis": 24260, + "poncho": 24261, + "aya": 24262, + "petits": 24263, + "#roadtrip": 24264, + "richards": 24265, + "jollof": 24266, + "favee": 24267, + "rosary": 24268, + "vibrations": 24269, + "heaux": 24270, + "nobu": 24271, + "yunno": 24272, + "jongin": 24273, + "customized": 24274, + "pared": 24275, + "ferrell": 24276, + "deon": 24277, + "watcher": 24278, + "knox": 24279, + "grandchild": 24280, + "denny": 24281, + "escargot": 24282, + "musketeers": 24283, + "jewellery": 24284, + "chinky": 24285, + "godsend": 24286, + "drone": 24287, + "effed": 24288, + "ethernet": 24289, + "scrooge": 24290, + "extract": 24291, + "davidson": 24292, + "baylee": 24293, + "satisfies": 24294, + "buddie": 24295, + "goodmornight": 24296, + "#christmas": 24297, + "porta": 24298, + "keenan": 24299, + "towson": 24300, + "exodus": 24301, + "quieras": 24302, + "countin": 24303, + "presale": 24304, + "strand": 24305, + "yoyo": 24306, + "denada": 24307, + "styx": 24308, + "#24": 24309, + "niyah": 24310, + "sinful": 24311, + "morir": 24312, + "ponies": 24313, + "robes": 24314, + "okii": 24315, + "brutha": 24316, + "scanned": 24317, + "dumbed": 24318, + "#needsleep": 24319, + "famo": 24320, + "loom": 24321, + "winky": 24322, + "dona": 24323, + "burped": 24324, + "altering": 24325, + "orgasmic": 24326, + "#mlrt": 24327, + "erratic": 24328, + "ore": 24329, + "boyband": 24330, + "porcelain": 24331, + "murs": 24332, + "interpretations": 24333, + "savanna": 24334, + "#petpeeve": 24335, + "wolfgang": 24336, + "keyboards": 24337, + "scissor": 24338, + "diffrent": 24339, + "brayden": 24340, + "profe": 24341, + "goonies": 24342, + "maravilhoso": 24343, + "araw": 24344, + "namjoon": 24345, + "jos": 24346, + "cary": 24347, + "definate": 24348, + "palo": 24349, + "deaad": 24350, + "modified": 24351, + "seize": 24352, + "institute": 24353, + "stitching": 24354, + "complemented": 24355, + "hairdryer": 24356, + "johnnie": 24357, + "traders": 24358, + "#justwaitonit": 24359, + "spur": 24360, + "baldwin": 24361, + "seduce": 24362, + "hoarder": 24363, + "amando": 24364, + "drier": 24365, + "#boss": 24366, + "definitivamente": 24367, + "spoonful": 24368, + "daddyy": 24369, + "penang": 24370, + "cholesterol": 24371, + "deen": 24372, + "sirve": 24373, + "cualquiera": 24374, + "jim's": 24375, + "frys": 24376, + "superheroes": 24377, + "tuscany": 24378, + "gunshots": 24379, + "geisha": 24380, + "wankers": 24381, + "kaila": 24382, + "ludacris": 24383, + "fal": 24384, + "camz": 24385, + "chatter": 24386, + "superlative": 24387, + "wehh": 24388, + "exaggerate": 24389, + "wining": 24390, + "consisting": 24391, + "ahahahha": 24392, + "friendlier": 24393, + "achilles": 24394, + "churro": 24395, + "aayyee": 24396, + "autographs": 24397, + "loveyoutoo": 24398, + "captains": 24399, + "dippin": 24400, + "fellowship": 24401, + "comi": 24402, + "empezar": 24403, + "nodding": 24404, + "guam": 24405, + "ratch": 24406, + "battleship": 24407, + "voglio": 24408, + "surtout": 24409, + "unimportant": 24410, + "saque": 24411, + "acrobatics": 24412, + "waltz": 24413, + "silverado": 24414, + "hilarity": 24415, + "proclaimed": 24416, + "#single": 24417, + "pubes": 24418, + "icu": 24419, + "reacted": 24420, + "joce": 24421, + "vaughn": 24422, + "noh": 24423, + "sexting": 24424, + "homiee": 24425, + "remedies": 24426, + "cordial": 24427, + "gurrll": 24428, + "melhoras": 24429, + "queen's": 24430, + "lotss": 24431, + "excellently": 24432, + "insha'allah": 24433, + "aggression": 24434, + "distress": 24435, + "booyy": 24436, + "decks": 24437, + "fiver": 24438, + "hamper": 24439, + "strengths": 24440, + "ransom": 24441, + "dominion": 24442, + "elias": 24443, + "revive": 24444, + "containing": 24445, + "overcoming": 24446, + "capers": 24447, + "boxset": 24448, + "stroking": 24449, + "morgan's": 24450, + "betterr": 24451, + "teamoo": 24452, + "scents": 24453, + "kr": 24454, + "bao": 24455, + "rascals": 24456, + "imitate": 24457, + "baliw": 24458, + "#idiot": 24459, + "lafayette": 24460, + "gezellig": 24461, + "rhodes": 24462, + "swiped": 24463, + "gino": 24464, + "rylee": 24465, + "#school": 24466, + "dankje": 24467, + "wib": 24468, + "misters": 24469, + "alia": 24470, + "wichita": 24471, + "grimaldi's": 24472, + "admiration": 24473, + "hye": 24474, + "choker": 24475, + "mcr": 24476, + "twenties": 24477, + "crocker": 24478, + "bermuda": 24479, + "coil": 24480, + "flannels": 24481, + "wallets": 24482, + "swimsuits": 24483, + "secondhand": 24484, + "bleaching": 24485, + "crest": 24486, + "legion": 24487, + "recruiter": 24488, + "coastal": 24489, + "fg": 24490, + "aral": 24491, + "rehashed": 24492, + "addie": 24493, + "humility": 24494, + "cheesin": 24495, + "captioned": 24496, + "lagos": 24497, + "siga": 24498, + "narcos": 24499, + "fernet": 24500, + "carina": 24501, + "chong": 24502, + "kd's": 24503, + "dashed": 24504, + "bestfriend's": 24505, + "besitos": 24506, + "soothes": 24507, + "kota": 24508, + "#karma": 24509, + "bally's": 24510, + "touchin": 24511, + "gether": 24512, + "calmly": 24513, + "flavoured": 24514, + "donte": 24515, + "duces": 24516, + "tangerine": 24517, + "flexed": 24518, + "elk": 24519, + "useable": 24520, + "zoning": 24521, + "juust": 24522, + "lacy": 24523, + "shuddup": 24524, + "authoritative": 24525, + "travelled": 24526, + ".k.a": 24527, + "discomfort": 24528, + "reluctantly": 24529, + "destinee": 24530, + "frustrate": 24531, + "phenomenon": 24532, + "biebers": 24533, + "employment": 24534, + "maia": 24535, + "risen": 24536, + "ibu": 24537, + "chelsey": 24538, + "bakes": 24539, + "literate": 24540, + "hunty": 24541, + "frappuccino": 24542, + "teri": 24543, + "cah": 24544, + "kaskade": 24545, + "architect": 24546, + "chapo": 24547, + "btfu": 24548, + "yalla": 24549, + "sinners": 24550, + "winchester": 24551, + "saffron": 24552, + "booted": 24553, + "eehh": 24554, + "slc": 24555, + "nightyy": 24556, + "ponder": 24557, + "fidelity": 24558, + "whiz": 24559, + "jefe": 24560, + "sunflowers": 24561, + "mcd's": 24562, + "ziti": 24563, + "sofi": 24564, + "monterrey": 24565, + "havoc": 24566, + "spencer's": 24567, + "levy": 24568, + "infact": 24569, + "violently": 24570, + "madrugada": 24571, + "edison": 24572, + "whiney": 24573, + "pecans": 24574, + "aoki": 24575, + "tiime": 24576, + "biltmore": 24577, + "helpin": 24578, + "lanyard": 24579, + "wristbands": 24580, + "legos": 24581, + "issa": 24582, + "directv": 24583, + "mesmerized": 24584, + "slicing": 24585, + "casing": 24586, + "fiancee": 24587, + "audible": 24588, + "dru": 24589, + "kendal": 24590, + "shithead": 24591, + "cheezy": 24592, + "gummies": 24593, + "announcer": 24594, + "groin": 24595, + "medals": 24596, + "rutgers": 24597, + "folders": 24598, + "ferguson": 24599, + "bled": 24600, + "inseparable": 24601, + "daddys": 24602, + "magnolia": 24603, + "relating": 24604, + "comiendo": 24605, + "thalia": 24606, + "vlw": 24607, + "eliza": 24608, + "huuge": 24609, + "contemplate": 24610, + "boothang": 24611, + "bails": 24612, + "allstar": 24613, + "slant": 24614, + "bukan": 24615, + "ingrid": 24616, + "sloot": 24617, + "vampin": 24618, + "#nobueno": 24619, + "city's": 24620, + "bacchanal": 24621, + "nko": 24622, + "flora": 24623, + "bussed": 24624, + "locura": 24625, + "yuri": 24626, + "s'cute": 24627, + "multitasking": 24628, + "primitive": 24629, + "digit": 24630, + "ict": 24631, + "chet": 24632, + "stutter": 24633, + "sedih": 24634, + "ying": 24635, + "#party": 24636, + "timberlands": 24637, + "pliss": 24638, + "nash's": 24639, + "jks": 24640, + "tswift": 24641, + "polk": 24642, + "regal": 24643, + "delux": 24644, + "ratito": 24645, + "agitated": 24646, + "slams": 24647, + "mastery": 24648, + "overuse": 24649, + "#nyc": 24650, + "linings": 24651, + "cedric": 24652, + "spence": 24653, + "cathedral": 24654, + "chiller": 24655, + "laughtrip": 24656, + "snails": 24657, + "nosebleed": 24658, + "wicca": 24659, + "tyy": 24660, + "dedicating": 24661, + "swine": 24662, + "desirable": 24663, + "bila": 24664, + "burping": 24665, + "plunge": 24666, + "zap": 24667, + "socializing": 24668, + "#followmecam": 24669, + "eau": 24670, + "footballer": 24671, + "crumbled": 24672, + "barbacoa": 24673, + "caters": 24674, + "paneer": 24675, + "eccentric": 24676, + "shopaholic": 24677, + "hairstyles": 24678, + "chirp": 24679, + "housemates": 24680, + "vag": 24681, + "fingered": 24682, + "vaguely": 24683, + "meeh": 24684, + "approachable": 24685, + "earns": 24686, + "repping": 24687, + "blob": 24688, + "suka": 24689, + "hillsong": 24690, + "baptist": 24691, + "unresponsive": 24692, + "#perf": 24693, + "mams": 24694, + "burt": 24695, + "transported": 24696, + "peoria": 24697, + "educators": 24698, + "budding": 24699, + "repackaged": 24700, + "miya": 24701, + "jumpsuit": 24702, + "frauds": 24703, + "#14": 24704, + "paulo": 24705, + "solomon": 24706, + "chorando": 24707, + "esl": 24708, + "rotting": 24709, + "fosse": 24710, + "lengths": 24711, + "#fuckoff": 24712, + "mansfield": 24713, + "trimester": 24714, + "tinashe": 24715, + "limes": 24716, + "futuristic": 24717, + "siced": 24718, + "pish": 24719, + "bestseller": 24720, + "marginally": 24721, + "gerrard": 24722, + "washable": 24723, + "tweezers": 24724, + "babi": 24725, + "molasses": 24726, + "#whatever": 24727, + "#watchout": 24728, + "sma": 24729, + "violating": 24730, + "slope": 24731, + "silicon": 24732, + "eldest": 24733, + "siren": 24734, + "towing": 24735, + "restraining": 24736, + "ponerme": 24737, + "restarted": 24738, + "cheesed": 24739, + "foreigner": 24740, + "cuello": 24741, + "aunt's": 24742, + "huevo": 24743, + "pai": 24744, + "boombox": 24745, + "tallest": 24746, + "minty": 24747, + "yanni": 24748, + "criss": 24749, + "unsanitary": 24750, + "chocolat": 24751, + "#haha": 24752, + "jellyfish": 24753, + "fillers": 24754, + "chea": 24755, + "upsell": 24756, + "ergonomic": 24757, + "busser": 24758, + "hostility": 24759, + "crafting": 24760, + "frequented": 24761, + "canoe": 24762, + "melodramatic": 24763, + "dick's": 24764, + "stuffer": 24765, + "salah": 24766, + "dag": 24767, + "zy": 24768, + "destin": 24769, + "followw": 24770, + "osx": 24771, + "#praying": 24772, + "ganyan": 24773, + "rhode": 24774, + "punishing": 24775, + "mariam": 24776, + "boluda": 24777, + "cutesy": 24778, + "everbody": 24779, + "paralyzed": 24780, + "tarantino": 24781, + "dangit": 24782, + "vt": 24783, + "constructive": 24784, + "#disappointed": 24785, + "gravel": 24786, + "hibernating": 24787, + "#naptime": 24788, + "yank": 24789, + "belter": 24790, + "voss": 24791, + "moorning": 24792, + "westin": 24793, + "celos": 24794, + "unfriend": 24795, + "tabasco": 24796, + "vient": 24797, + "cling": 24798, + "limbo": 24799, + "aburroo": 24800, + "hurdles": 24801, + "pawpaw": 24802, + "destructive": 24803, + "milking": 24804, + "this'll": 24805, + "inspect": 24806, + "daammnn": 24807, + "bitties": 24808, + "tandoori": 24809, + "gratin": 24810, + "aman": 24811, + "motorway": 24812, + "diatribe": 24813, + "fuun": 24814, + "ahhahaha": 24815, + "facinating": 24816, + "#pain": 24817, + "blowjob": 24818, + "cay": 24819, + "erryday": 24820, + "funna": 24821, + "deedee": 24822, + "pinching": 24823, + "lamee": 24824, + "howdy": 24825, + "#fatty": 24826, + "diosa": 24827, + "jul": 24828, + "carousel": 24829, + "absences": 24830, + "disservice": 24831, + "effortlessly": 24832, + "#singlelife": 24833, + "strapless": 24834, + "toon": 24835, + "orbit": 24836, + "fren": 24837, + "staircase": 24838, + "foreheads": 24839, + "sportscenter": 24840, + "lel": 24841, + "tlist": 24842, + "rancher": 24843, + "kaiyak": 24844, + "cokes": 24845, + "sone": 24846, + "retrieve": 24847, + "txted": 24848, + "bret": 24849, + "pina": 24850, + "musicianship": 24851, + "pano": 24852, + "undiscovered": 24853, + "subjective": 24854, + "#dontcare": 24855, + "ulcer": 24856, + "aircon": 24857, + "nicola": 24858, + "acknowledgement": 24859, + "characterization": 24860, + "hindsight": 24861, + "tardy": 24862, + "mfa": 24863, + "moh": 24864, + "eine": 24865, + "portrayed": 24866, + "adi": 24867, + "dmd": 24868, + "woth": 24869, + "sicilian": 24870, + "aggressively": 24871, + "scruffy": 24872, + "swish": 24873, + "pancit": 24874, + "novas": 24875, + "holden": 24876, + "escola": 24877, + "pizza's": 24878, + "anna's": 24879, + "baek": 24880, + "tesla": 24881, + "conventional": 24882, + "psg": 24883, + "sterile": 24884, + "frequency": 24885, + "overheats": 24886, + "winking": 24887, + "sentiment": 24888, + "germans": 24889, + "quieren": 24890, + "ballon": 24891, + "paulina": 24892, + "idle": 24893, + "nin": 24894, + "ret": 24895, + "icarly": 24896, + "writen": 24897, + "carseat": 24898, + "joeys": 24899, + "oxymoron": 24900, + "#tb": 24901, + "tomas": 24902, + "tmo": 24903, + "outkast": 24904, + "verbatim": 24905, + "fn": 24906, + "womp": 24907, + "dkm": 24908, + "omgomgomg": 24909, + "nanna": 24910, + "buddy's": 24911, + "grandaddy": 24912, + "geese": 24913, + "clockwork": 24914, + "bobbie": 24915, + "gett": 24916, + "submission": 24917, + "daz": 24918, + "cosmetic": 24919, + "olvide": 24920, + "wyo": 24921, + "rhys": 24922, + "barbados": 24923, + "isolation": 24924, + "lauderdale": 24925, + "ginormous": 24926, + "yayaya": 24927, + "gillian": 24928, + "partnership": 24929, + "dha": 24930, + "jamie's": 24931, + "firefighter": 24932, + "tortas": 24933, + "soulmates": 24934, + "waldo": 24935, + "#friday": 24936, + "additions": 24937, + "peacock": 24938, + "fabolous": 24939, + "ramadhan": 24940, + "valeria": 24941, + "unauthorized": 24942, + "jaded": 24943, + "foundations": 24944, + "kaye": 24945, + "vr": 24946, + "rudolph": 24947, + "thrillers": 24948, + "painkillers": 24949, + "faving": 24950, + "teased": 24951, + "pcd": 24952, + "milli": 24953, + "realmente": 24954, + "customer's": 24955, + "moulin": 24956, + "shoota": 24957, + "bounds": 24958, + "fabulously": 24959, + "outright": 24960, + "producto": 24961, + "ast": 24962, + "persuaded": 24963, + "terk": 24964, + "daayy": 24965, + "physco": 24966, + "goldberg": 24967, + "tootie": 24968, + "#gtfo": 24969, + "dura": 24970, + "varnish": 24971, + "kaiser": 24972, + "ambrose": 24973, + "hermit": 24974, + "overwhelmingly": 24975, + "tanga": 24976, + "fuvk": 24977, + "declining": 24978, + "uhum": 24979, + "outsider": 24980, + "sls": 24981, + "daays": 24982, + "beatle": 24983, + "grossest": 24984, + "inbetween": 24985, + "sayangg": 24986, + "durango": 24987, + "brim": 24988, + "deserted": 24989, + "befor": 24990, + "excluded": 24991, + "millionth": 24992, + "shiver": 24993, + "remembrance": 24994, + "potion": 24995, + "hahahahahaa": 24996, + "jetta": 24997, + "lyssa": 24998, + "moreno": 24999, + "dorks": 25000, + "siang": 25001, + "mont": 25002, + "pearly": 25003, + "spaz": 25004, + "cooled": 25005, + "sudah": 25006, + "luckk": 25007, + "pabebe": 25008, + "purr": 25009, + "delena": 25010, + "andi": 25011, + "carnegie": 25012, + "monterey": 25013, + "cypress": 25014, + "mente": 25015, + "hive": 25016, + "anton": 25017, + "strung": 25018, + "paloma": 25019, + "umbrellas": 25020, + "pedantic": 25021, + "keem": 25022, + "#twins": 25023, + "pele": 25024, + "comma": 25025, + "gane": 25026, + "tatiana": 25027, + "prospect": 25028, + "ustream": 25029, + "tainted": 25030, + "alissa": 25031, + "mangoes": 25032, + "otl": 25033, + "deliberately": 25034, + "remotes": 25035, + "suspected": 25036, + "hablan": 25037, + "babydoll": 25038, + "saloon": 25039, + "brining": 25040, + "roth": 25041, + "moustache": 25042, + "siguro": 25043, + "magnifying": 25044, + "doorway": 25045, + "unethical": 25046, + "glittery": 25047, + "dlc": 25048, + "watercolor": 25049, + "f's": 25050, + "scarfs": 25051, + "interlude": 25052, + "auguri": 25053, + "forevs": 25054, + "michelle's": 25055, + "linguine": 25056, + "booa": 25057, + "frustrations": 25058, + "upstate": 25059, + "alhamdullilah": 25060, + "cancha": 25061, + "monorail": 25062, + "wechat": 25063, + "aguilera": 25064, + "tiered": 25065, + "frere": 25066, + "continua": 25067, + "brum": 25068, + "#mm": 25069, + "snippet": 25070, + "favorable": 25071, + "squidward": 25072, + "plato": 25073, + "chulo": 25074, + "sloan": 25075, + "cpu": 25076, + "slushies": 25077, + "sommelier": 25078, + "saa": 25079, + "downed": 25080, + "feeble": 25081, + "wir": 25082, + "snooki": 25083, + "douchebags": 25084, + "butterscotch": 25085, + "gainesville": 25086, + "fins": 25087, + "likable": 25088, + "medio": 25089, + "highh": 25090, + "moyes": 25091, + "masculine": 25092, + "al's": 25093, + "anymoree": 25094, + "petal": 25095, + "eventhough": 25096, + "#real": 25097, + "devo": 25098, + "shauna": 25099, + "walkman": 25100, + "guestlist": 25101, + "depended": 25102, + "gaze": 25103, + "smarty": 25104, + "tides": 25105, + "peculiar": 25106, + "wasteful": 25107, + "bundled": 25108, + "cici": 25109, + "lolzz": 25110, + "mhs": 25111, + "preggo": 25112, + "apaixonada": 25113, + "corporation": 25114, + "embarassed": 25115, + "ihate": 25116, + "protagonist": 25117, + "couscous": 25118, + "wholee": 25119, + "humanities": 25120, + "sammy's": 25121, + "serene": 25122, + "chainsmokers": 25123, + "joni": 25124, + "searches": 25125, + "sped": 25126, + "koss": 25127, + "uncle's": 25128, + "custody": 25129, + "fresco": 25130, + "comparisons": 25131, + "jags": 25132, + "null": 25133, + "potions": 25134, + "hipped": 25135, + "withdraw": 25136, + "vierness": 25137, + "screensaver": 25138, + "surfers": 25139, + "nigguhs": 25140, + "branded": 25141, + "dubb": 25142, + "hikes": 25143, + "apologizes": 25144, + "ded": 25145, + "bestf": 25146, + "propane": 25147, + "marlene": 25148, + "evie": 25149, + "ope": 25150, + "uploads": 25151, + "cole's": 25152, + "byebye": 25153, + "sacrificed": 25154, + "addressing": 25155, + "snapple": 25156, + "erks": 25157, + "grisham's": 25158, + "bedrooms": 25159, + "clancy's": 25160, + "minho": 25161, + "rotc": 25162, + "fayetteville": 25163, + "tii": 25164, + "matchbox": 25165, + "haggard": 25166, + "player's": 25167, + "ello": 25168, + "phs": 25169, + "daniella": 25170, + "safest": 25171, + "kookie": 25172, + "sonoo": 25173, + "chutney": 25174, + "befriend": 25175, + "shmurda": 25176, + "nih": 25177, + "hamsters": 25178, + "generously": 25179, + "skyzone": 25180, + "lags": 25181, + "irvine": 25182, + "hydro": 25183, + "ucf": 25184, + "regions": 25185, + "shitter": 25186, + "#justinbieber": 25187, + "arias": 25188, + "kitchens": 25189, + "sanitary": 25190, + "equations": 25191, + "uglass": 25192, + "snazzy": 25193, + "mraz": 25194, + "kordei": 25195, + "jessy": 25196, + "gahd": 25197, + "cussler": 25198, + "warmly": 25199, + "airsoft": 25200, + "bobble": 25201, + "tidying": 25202, + "rt'ing": 25203, + "yield": 25204, + "smog": 25205, + "vixx": 25206, + "abbott": 25207, + "cari": 25208, + "#yass": 25209, + "liife": 25210, + "defining": 25211, + "#london": 25212, + "fourteen": 25213, + "clinicals": 25214, + "zapper": 25215, + "zoomed": 25216, + "bossed": 25217, + "beagle": 25218, + "krissy": 25219, + "calgary": 25220, + "sistas": 25221, + "modelling": 25222, + "chugging": 25223, + "tantrums": 25224, + "lifeproof": 25225, + "digestive": 25226, + "condone": 25227, + "jheez": 25228, + "taryn": 25229, + "penelope": 25230, + "craftsman": 25231, + "chuckles": 25232, + "omen": 25233, + "residential": 25234, + "competitor": 25235, + "ventilation": 25236, + "merica": 25237, + "demise": 25238, + "juno": 25239, + "golfers": 25240, + "internally": 25241, + "unix": 25242, + "comendo": 25243, + "jheeze": 25244, + "maknae": 25245, + "bosta": 25246, + "gabriella": 25247, + "stationary": 25248, + "#justkidding": 25249, + "crazzyy": 25250, + "shellac": 25251, + "sewage": 25252, + "pilgrim": 25253, + "lobo": 25254, + "fences": 25255, + "birch": 25256, + "requiem": 25257, + "disability": 25258, + "caloor": 25259, + "euu": 25260, + "crescent": 25261, + "#shopping": 25262, + "grl": 25263, + "schoolwork": 25264, + "unleash": 25265, + "#truu": 25266, + "twoo": 25267, + "saad": 25268, + "flakey": 25269, + "#mybad": 25270, + "zoe's": 25271, + "pluckers": 25272, + "psychologist": 25273, + "madison's": 25274, + "modi": 25275, + "medico": 25276, + "licenses": 25277, + "calma": 25278, + "clerks": 25279, + "sender": 25280, + "havee": 25281, + "merp": 25282, + "helix": 25283, + "extravagant": 25284, + "tsu": 25285, + "lim": 25286, + "yada": 25287, + "blasts": 25288, + "memorizing": 25289, + "fofa": 25290, + "chos": 25291, + "subtweetin": 25292, + "precalc": 25293, + "hollered": 25294, + "juggling": 25295, + "communion": 25296, + "finances": 25297, + "ceramics": 25298, + "agreements": 25299, + "ost": 25300, + "initiative": 25301, + "chy": 25302, + "ethnicity": 25303, + "janitor": 25304, + "nominations": 25305, + "tenants": 25306, + "dollhouse": 25307, + "muahaha": 25308, + "mmg": 25309, + "paja": 25310, + "totalmente": 25311, + "niggaas": 25312, + "soporto": 25313, + "marre": 25314, + "nods": 25315, + "overpowered": 25316, + "historians": 25317, + "vidaa": 25318, + "sixty": 25319, + "hungary": 25320, + "accommodated": 25321, + "lsd": 25322, + "baron": 25323, + "acai": 25324, + "geh": 25325, + "manager's": 25326, + "disorders": 25327, + "pact": 25328, + "ploy": 25329, + "extremly": 25330, + "whuut": 25331, + "cyn": 25332, + "wai": 25333, + "ikrr": 25334, + "wrinkly": 25335, + "rundown": 25336, + "doobie": 25337, + "jumpy": 25338, + "shoveling": 25339, + "kx": 25340, + "jarvis": 25341, + "strengthen": 25342, + "#tweetyourrecentemojis": 25343, + "#perksofdatingme": 25344, + "leapfrog": 25345, + "jobless": 25346, + "reloaded": 25347, + "scolded": 25348, + "#myfav": 25349, + "taa": 25350, + "sippy": 25351, + "tempered": 25352, + "corte": 25353, + "elevate": 25354, + "asp": 25355, + "kalau": 25356, + "retrospective": 25357, + "choi": 25358, + "telepathy": 25359, + "enclosure": 25360, + "corridos": 25361, + "boarded": 25362, + "#happiness": 25363, + "exorcism": 25364, + "crass": 25365, + "monaco": 25366, + "expedition": 25367, + "erie": 25368, + "mejoor": 25369, + "campers": 25370, + "ots": 25371, + "loki": 25372, + "exceed": 25373, + "framing": 25374, + "sentiments": 25375, + "cuffs": 25376, + "max's": 25377, + "scrolls": 25378, + "gestures": 25379, + "scripted": 25380, + "gale": 25381, + "#funny": 25382, + "stupendous": 25383, + "hemingway": 25384, + "#boring": 25385, + "hhmm": 25386, + "bigfoot": 25387, + "#virgos": 25388, + "unapologetic": 25389, + "waw": 25390, + "car's": 25391, + "visionary": 25392, + "baffles": 25393, + "forgave": 25394, + "ingenious": 25395, + "jamm": 25396, + "circuits": 25397, + "marx": 25398, + "circumstance": 25399, + "viagra": 25400, + "miter": 25401, + "#xfactor": 25402, + "falando": 25403, + "sloths": 25404, + "skippy": 25405, + "recite": 25406, + "#congrats": 25407, + "thankgod": 25408, + "insoportable": 25409, + "stills": 25410, + "righht": 25411, + "attractions": 25412, + "bakersfield": 25413, + "blinding": 25414, + "kwento": 25415, + "frisco": 25416, + "doorstop": 25417, + "deje": 25418, + "niccas": 25419, + "dressings": 25420, + "pri": 25421, + "sundresses": 25422, + "wuz": 25423, + "#shit": 25424, + "hermosas": 25425, + "tingle": 25426, + "shifted": 25427, + "maria's": 25428, + "littles": 25429, + "schmidt": 25430, + "lvl": 25431, + "#simple": 25432, + "ilyx": 25433, + "ducky": 25434, + "reste": 25435, + "naaw": 25436, + "giirrll": 25437, + "entrepreneur": 25438, + "music's": 25439, + "jerking": 25440, + "jor": 25441, + "keanu": 25442, + "aswel": 25443, + "khaki": 25444, + "nicki's": 25445, + "church's": 25446, + "spidey": 25447, + "orgasms": 25448, + "spinal": 25449, + "#sundayfunday": 25450, + "beignets": 25451, + "#bliss": 25452, + "atx": 25453, + "vaa": 25454, + "marys": 25455, + "slacks": 25456, + "seeming": 25457, + "cy": 25458, + "squads": 25459, + "#directioners": 25460, + "kaylin": 25461, + "incentive": 25462, + "ayn": 25463, + "advantages": 25464, + "trin": 25465, + "sweetened": 25466, + "rhcp": 25467, + "contre": 25468, + "carter's": 25469, + "peppa": 25470, + "johnny's": 25471, + "lunar": 25472, + "mgr": 25473, + "trys": 25474, + "jelous": 25475, + "intresting": 25476, + "saliva": 25477, + "nordic": 25478, + "viola": 25479, + "occurrence": 25480, + "hur": 25481, + "lacie": 25482, + "curso": 25483, + "grads": 25484, + "locs": 25485, + "d'aww": 25486, + "nectar": 25487, + "#stupid": 25488, + "mourn": 25489, + "televisions": 25490, + "mvps": 25491, + "tmobile": 25492, + "gtta": 25493, + "cuse": 25494, + "gall": 25495, + "kapagod": 25496, + "raptor": 25497, + "trell": 25498, + "spud": 25499, + "writting": 25500, + "fritters": 25501, + "forevermore": 25502, + "soonest": 25503, + "jeffery": 25504, + "natapos": 25505, + "implants": 25506, + "e.g.": 25507, + "parei": 25508, + "#lss": 25509, + "scruff": 25510, + "cullen": 25511, + "capsules": 25512, + "keepsake": 25513, + "plata": 25514, + "potstickers": 25515, + "flopping": 25516, + "fleur": 25517, + "dutty": 25518, + "coyotes": 25519, + "detectives": 25520, + "johnson's": 25521, + "pogba": 25522, + "#knowyouranon": 25523, + "westlife": 25524, + "#vote5sos": 25525, + "miraculous": 25526, + "leprechaun": 25527, + "practise": 25528, + "aims": 25529, + "aesthetics": 25530, + "clones": 25531, + "whiter": 25532, + "origami": 25533, + "pasan": 25534, + "squish": 25535, + "duckling": 25536, + "headd": 25537, + "seedy": 25538, + "sprout": 25539, + "canta": 25540, + "corded": 25541, + "nakakapagod": 25542, + "gnarly": 25543, + "factss": 25544, + "sorriso": 25545, + "sind": 25546, + "preachers": 25547, + "vroom": 25548, + "#arrow": 25549, + "pauly": 25550, + "allright": 25551, + "attracting": 25552, + "soca": 25553, + "vert": 25554, + "ayden": 25555, + "flask": 25556, + "reyna": 25557, + "rftt": 25558, + "tron": 25559, + "zig": 25560, + "dazzle": 25561, + "tbell": 25562, + "pum": 25563, + "chiles": 25564, + "solitaire": 25565, + "tommo": 25566, + "byrd": 25567, + "recreate": 25568, + "tweeties": 25569, + "headlight": 25570, + "chipper": 25571, + "handball": 25572, + "meilleur": 25573, + "detailing": 25574, + "rotary": 25575, + "futsal": 25576, + "pounded": 25577, + "catalogue": 25578, + "ands": 25579, + "janeiro": 25580, + "uns": 25581, + "swiping": 25582, + "malta": 25583, + "#smile": 25584, + "chang's": 25585, + "taboo": 25586, + "reputable": 25587, + "lejos": 25588, + "barbies": 25589, + "botch": 25590, + "fodder": 25591, + "singlee": 25592, + "alina": 25593, + "eric's": 25594, + "lata": 25595, + "izz": 25596, + "porfa": 25597, + "#insomnia": 25598, + "suitcases": 25599, + "voor": 25600, + "#bless": 25601, + "gunner": 25602, + "dirtbag": 25603, + "caveman": 25604, + "eskimo": 25605, + "frisky": 25606, + "wahlberg": 25607, + "iso": 25608, + "natty": 25609, + "bienvenida": 25610, + "carls": 25611, + "jabra": 25612, + "rhymed": 25613, + "jmu": 25614, + "#promise": 25615, + "kelley": 25616, + "unfold": 25617, + "bal": 25618, + "wilde": 25619, + "beginers": 25620, + "thankks": 25621, + "bombshell": 25622, + "tmz": 25623, + "febrero": 25624, + "siam": 25625, + "robs": 25626, + "snarky": 25627, + "egos": 25628, + "reflux": 25629, + "#really": 25630, + "macbeth": 25631, + "gouging": 25632, + "shitless": 25633, + "advices": 25634, + "threes": 25635, + "letss": 25636, + "y'alls": 25637, + "aj's": 25638, + "discription": 25639, + "starin": 25640, + "brightly": 25641, + "fattening": 25642, + "twizzlers": 25643, + "#sigh": 25644, + "instructed": 25645, + "contractor": 25646, + "crapped": 25647, + "verb": 25648, + "ethical": 25649, + "wahl": 25650, + "ouut": 25651, + "flipagram": 25652, + "participated": 25653, + "astros": 25654, + "quake": 25655, + "spiffy": 25656, + "jargon": 25657, + "finaly": 25658, + "dueces": 25659, + "dundee": 25660, + "horizontal": 25661, + "sandlot": 25662, + "taser": 25663, + "libras": 25664, + "conrad": 25665, + "winehouse": 25666, + "wrongly": 25667, + "forza": 25668, + "weekendd": 25669, + "tastebuds": 25670, + "stalkin": 25671, + "empieza": 25672, + "puedes": 25673, + "replaces": 25674, + "chemo": 25675, + "thxs": 25676, + "brisbane": 25677, + "ptv": 25678, + "surgeries": 25679, + "flustered": 25680, + "stethoscope": 25681, + "xans": 25682, + "ramblings": 25683, + "elbowed": 25684, + "#sofunny": 25685, + "tippy": 25686, + "snd": 25687, + "mcmillan": 25688, + "lookn": 25689, + "focuses": 25690, + "bahahah": 25691, + "wrecks": 25692, + "staahp": 25693, + "mfas": 25694, + "bloopers": 25695, + "literacy": 25696, + "fein": 25697, + "percolator": 25698, + "condolence": 25699, + "theatres": 25700, + "barker": 25701, + "carmex": 25702, + "j'avais": 25703, + "twinnie": 25704, + "persuasive": 25705, + "#madeintheam": 25706, + "troubling": 25707, + "deviled": 25708, + "twitches": 25709, + "ostrich": 25710, + "buckeye": 25711, + "adv": 25712, + "monsoon": 25713, + "#lame": 25714, + "diagnostic": 25715, + "armenian": 25716, + "busboy": 25717, + "tol": 25718, + "oyy": 25719, + "tapestry": 25720, + "huntsville": 25721, + "revived": 25722, + "#motavatormonday": 25723, + "chola": 25724, + "jokingly": 25725, + "plains": 25726, + "corgi": 25727, + "pouting": 25728, + "ganar": 25729, + "pry": 25730, + "isla": 25731, + "sere": 25732, + "fuking": 25733, + "scarce": 25734, + "experiments": 25735, + "rerun": 25736, + "rhonda": 25737, + "#vegas": 25738, + "lickin": 25739, + "spaceship": 25740, + "dean's": 25741, + "ladybug": 25742, + "orayt": 25743, + "aussies": 25744, + "#notfair": 25745, + "junie": 25746, + "withdraws": 25747, + "despertar": 25748, + "sash": 25749, + "guarding": 25750, + "fckd": 25751, + "trenton": 25752, + "merengue": 25753, + "unreleased": 25754, + "davinci": 25755, + "aime": 25756, + "kitsch": 25757, + "noelle": 25758, + "ngga": 25759, + "crine": 25760, + "scorching": 25761, + "armys": 25762, + "wentworth": 25763, + "circulation": 25764, + "steve's": 25765, + "polishing": 25766, + "rotel": 25767, + "fennel": 25768, + "#isthatweird": 25769, + "marky": 25770, + "twinkie": 25771, + "#lukebryan": 25772, + "opaa": 25773, + "sluggish": 25774, + "numero": 25775, + "breakdowns": 25776, + "varies": 25777, + "relevance": 25778, + "thorn": 25779, + "gandhi": 25780, + "rochelle": 25781, + "exposition": 25782, + "surpassed": 25783, + "chimi": 25784, + "barrow": 25785, + "forgives": 25786, + "mustangs": 25787, + "psu": 25788, + "liquids": 25789, + "synth": 25790, + "jayda": 25791, + "mindd": 25792, + "thumping": 25793, + "kryptonite": 25794, + "handouts": 25795, + "wrappers": 25796, + "jimmy's": 25797, + "monitoring": 25798, + "lfc": 25799, + "anemic": 25800, + "baroque": 25801, + "scriptures": 25802, + "exp": 25803, + "aiken": 25804, + "investor": 25805, + "copenhagen": 25806, + "smashburger": 25807, + "parabens": 25808, + "yawner": 25809, + "denis": 25810, + "larissa": 25811, + "rir": 25812, + "assisting": 25813, + "gardeners": 25814, + "porto": 25815, + "dreamers": 25816, + "cuzo": 25817, + "rhyming": 25818, + "xml": 25819, + "rapido": 25820, + "bois": 25821, + "highlighted": 25822, + "confirms": 25823, + "figurati": 25824, + "frigging": 25825, + "whee": 25826, + "fwh": 25827, + "nikita": 25828, + "firefighters": 25829, + "amu": 25830, + "sun's": 25831, + "prolli": 25832, + "yeoo": 25833, + "expansive": 25834, + "kink": 25835, + "afterall": 25836, + "chalet": 25837, + "whisk": 25838, + "punt": 25839, + "celebratory": 25840, + "budweiser": 25841, + "phases": 25842, + "plat": 25843, + "occupation": 25844, + "kayne": 25845, + "religiously": 25846, + "hearin": 25847, + "quickness": 25848, + "ohk": 25849, + "#tityfollowtrain": 25850, + "barred": 25851, + "amenn": 25852, + "pillars": 25853, + "readily": 25854, + "master's": 25855, + "lulz": 25856, + "leila": 25857, + "repetitious": 25858, + "server's": 25859, + "bambam": 25860, + "rubbermaid": 25861, + "lista": 25862, + "bis": 25863, + "missus": 25864, + "treasured": 25865, + "freight": 25866, + "lighthearted": 25867, + "currency": 25868, + "accompaniment": 25869, + "hbcu": 25870, + "shaming": 25871, + "cantaloupe": 25872, + "preachin": 25873, + "didi": 25874, + "pappy": 25875, + "naples": 25876, + "consulting": 25877, + "diggy": 25878, + "juliana": 25879, + "cousinn": 25880, + "hovering": 25881, + "organs": 25882, + "jamz": 25883, + "sheryl": 25884, + "guwop": 25885, + "merrier": 25886, + "astonishingly": 25887, + "complications": 25888, + "fool's": 25889, + "likin": 25890, + "#weekend": 25891, + "lonng": 25892, + "portsmouth": 25893, + "kiddy": 25894, + "graacias": 25895, + "fofo": 25896, + "sparked": 25897, + "zeke": 25898, + "eighties": 25899, + "inexplicable": 25900, + "bawal": 25901, + "ilyssm": 25902, + "hozier": 25903, + "zayns": 25904, + "goku": 25905, + "rapunzel": 25906, + "chasers": 25907, + "tumor": 25908, + "optics": 25909, + "nationwide": 25910, + "dares": 25911, + "brendon": 25912, + "indirectly": 25913, + "linens": 25914, + "pines": 25915, + "snoopy": 25916, + "buffer": 25917, + "funnies": 25918, + "suho": 25919, + "nathaniel": 25920, + "kei": 25921, + "thins": 25922, + "changin": 25923, + "poms": 25924, + "mistakenly": 25925, + "belting": 25926, + "milfs": 25927, + "notif": 25928, + "#empire": 25929, + "undead": 25930, + "ballpark": 25931, + "chacos": 25932, + "awfull": 25933, + "hoochie": 25934, + "jajajajajajaj": 25935, + "lora": 25936, + "pavilion": 25937, + "seventies": 25938, + "plucking": 25939, + "mumbo": 25940, + "somedays": 25941, + "bartending": 25942, + "diameter": 25943, + "uke": 25944, + "hormonal": 25945, + "mijo": 25946, + "shortcomings": 25947, + "#thirsty": 25948, + "weeping": 25949, + "#jesus": 25950, + "vue": 25951, + "holt": 25952, + "insulated": 25953, + "shia": 25954, + "headboard": 25955, + "asha": 25956, + "drs": 25957, + "mili": 25958, + "meli": 25959, + "vega": 25960, + "lizards": 25961, + "lyrically": 25962, + "threatens": 25963, + "nibble": 25964, + "#followtrick": 25965, + "tua": 25966, + "resulting": 25967, + "felizz": 25968, + "imaging": 25969, + "ihh": 25970, + "menopause": 25971, + "feminists": 25972, + "mothafuckas": 25973, + "mati": 25974, + "ateneo": 25975, + "#bedtime": 25976, + "emotionless": 25977, + "parsons": 25978, + "adoroo": 25979, + "#motivated": 25980, + "haya": 25981, + "indianapolis": 25982, + "infatuated": 25983, + "crackle": 25984, + "chardonnay": 25985, + "slo": 25986, + "iit": 25987, + "intimacy": 25988, + "pego": 25989, + "artpop": 25990, + "underdog": 25991, + "chix": 25992, + "hanggang": 25993, + "budge": 25994, + "lenox": 25995, + "whatever's": 25996, + "radiant": 25997, + "#belieber": 25998, + "enclosed": 25999, + "yik": 26000, + "waterfront": 26001, + "jagger": 26002, + "lucy's": 26003, + "eatting": 26004, + "cannabis": 26005, + "strainer": 26006, + "piff": 26007, + "bajo": 26008, + "flickering": 26009, + "jes": 26010, + "fireman": 26011, + "speciality": 26012, + "repellent": 26013, + "ethereal": 26014, + "anne's": 26015, + "cycles": 26016, + "grandes": 26017, + "georgetown": 26018, + "iloveu": 26019, + "truman": 26020, + "droga": 26021, + "pozole": 26022, + "scenic": 26023, + "bawi": 26024, + "ayos": 26025, + "karlie": 26026, + "implies": 26027, + "lester": 26028, + "ridic": 26029, + "insiders": 26030, + "rahh": 26031, + "adulting": 26032, + "odu": 26033, + "yearss": 26034, + "#onelove": 26035, + "intuit": 26036, + "moins": 26037, + "yehh": 26038, + "playaa": 26039, + "gradually": 26040, + "comeover": 26041, + "specifics": 26042, + "suena": 26043, + "fuckas": 26044, + "kunis": 26045, + "genia": 26046, + "jajajja": 26047, + "laila": 26048, + "ollg": 26049, + "#faith": 26050, + "amarillo": 26051, + "incomparable": 26052, + "shotted": 26053, + "#sexy": 26054, + "papaw": 26055, + "possess": 26056, + "dayx": 26057, + "#cowboysnation": 26058, + "isabelle": 26059, + "scraps": 26060, + "ponytails": 26061, + "beijos": 26062, + "rowling": 26063, + "reebok": 26064, + "farrah": 26065, + "#eastenders": 26066, + "uncontrollable": 26067, + "scratcher": 26068, + "goss": 26069, + "pastors": 26070, + "skid": 26071, + "gotdamn": 26072, + "irri": 26073, + "footballs": 26074, + "hinting": 26075, + "feared": 26076, + "relaxes": 26077, + "charisma": 26078, + "planting": 26079, + "omgsh": 26080, + "caribou": 26081, + "anche": 26082, + "efficiency": 26083, + "spear": 26084, + "whitest": 26085, + "noviembre": 26086, + "tyre": 26087, + "imagina": 26088, + "ria": 26089, + "backpacking": 26090, + "rmb": 26091, + "unrelated": 26092, + "#twitterafterdark": 26093, + "dreamcast": 26094, + "clownin": 26095, + "yolanda": 26096, + "noope": 26097, + "yvonne": 26098, + "frees": 26099, + "deter": 26100, + "starbs": 26101, + "captive": 26102, + "bluffin": 26103, + "lense": 26104, + "somone": 26105, + "geeze": 26106, + "totaly": 26107, + "paolo": 26108, + "osea": 26109, + "mark's": 26110, + "hemsworth": 26111, + "proxima": 26112, + "bobbi": 26113, + "nanas": 26114, + "nutted": 26115, + "confessed": 26116, + "stahpp": 26117, + "intercom": 26118, + "maas": 26119, + "#wce": 26120, + "yeye": 26121, + "#happymonday": 26122, + "keeks": 26123, + "faa": 26124, + "accommodations": 26125, + "baseline": 26126, + "bandage": 26127, + "chilee": 26128, + "underclassmen": 26129, + "whateves": 26130, + "sr.": 26131, + "arte": 26132, + "pranked": 26133, + "vga": 26134, + "realistically": 26135, + "#cheers": 26136, + "kelsie": 26137, + "dioos": 26138, + "dejan": 26139, + "johanna": 26140, + "lys": 26141, + "grandads": 26142, + "stripe": 26143, + "compartment": 26144, + "masturbating": 26145, + "consequence": 26146, + "jacques": 26147, + "pris": 26148, + "levis": 26149, + "flores": 26150, + "k.o.": 26151, + "mcqueen": 26152, + "petals": 26153, + "ashtray": 26154, + "crawls": 26155, + "urgency": 26156, + "sudoku": 26157, + "dal": 26158, + "medo": 26159, + "outfield": 26160, + "destroyer": 26161, + "helicopters": 26162, + "lunges": 26163, + "pta": 26164, + "taty": 26165, + "captivated": 26166, + "calidad": 26167, + "germ": 26168, + "sciences": 26169, + "brotherly": 26170, + "phonics": 26171, + "leavers": 26172, + "tec": 26173, + "agosto": 26174, + "justt": 26175, + "queres": 26176, + "gatherings": 26177, + "jay's": 26178, + "shonda": 26179, + "meditations": 26180, + "naz": 26181, + "mathew": 26182, + "fungus": 26183, + "stun": 26184, + "starred": 26185, + "gahdamn": 26186, + "execute": 26187, + "riffs": 26188, + "forwards": 26189, + "recollection": 26190, + "dac": 26191, + "yeep": 26192, + "wyoming": 26193, + "pictorial": 26194, + "orion": 26195, + "speedo": 26196, + "#tgfad": 26197, + "lekker": 26198, + "mori": 26199, + "lumps": 26200, + "cdg": 26201, + "easel": 26202, + "goers": 26203, + "launching": 26204, + "cbb": 26205, + "bouche": 26206, + "psn": 26207, + "chimes": 26208, + "wooah": 26209, + "banyak": 26210, + "bata": 26211, + "tomtom": 26212, + "glider": 26213, + "snorting": 26214, + "snoozing": 26215, + "specifications": 26216, + "saturated": 26217, + "sig": 26218, + "unabridged": 26219, + "sharpen": 26220, + "aires": 26221, + "cornrows": 26222, + "perfectionist": 26223, + "oneday": 26224, + "osaka": 26225, + "skyy": 26226, + "dasia": 26227, + "intersting": 26228, + "stag": 26229, + "mufasa": 26230, + "ricoo": 26231, + "#woo": 26232, + "uptight": 26233, + "liee": 26234, + "yearr": 26235, + "tude": 26236, + "malfunctioning": 26237, + "bocelli": 26238, + "fatt": 26239, + "filipinos": 26240, + "unassuming": 26241, + "essen": 26242, + "xq": 26243, + "pelican": 26244, + "versatility": 26245, + "len": 26246, + "tomorro": 26247, + "plow": 26248, + "roasts": 26249, + "natives": 26250, + "hiciste": 26251, + "noor": 26252, + "busca": 26253, + "earthy": 26254, + "lullabies": 26255, + "corridor": 26256, + "saltiness": 26257, + "achy": 26258, + "personified": 26259, + "americano": 26260, + "shakers": 26261, + "hallows": 26262, + "obi": 26263, + "litty": 26264, + "yixing": 26265, + "sleepyhead": 26266, + "kerr": 26267, + "sprinting": 26268, + "babyshower": 26269, + "orgulho": 26270, + "shaves": 26271, + "marques": 26272, + "seamless": 26273, + "caliente": 26274, + "dragonball": 26275, + "wilmington": 26276, + "blacklist": 26277, + "mumbai": 26278, + "lighthouse": 26279, + "angel's": 26280, + "uconn": 26281, + "taft": 26282, + "yella": 26283, + "sens": 26284, + "triflin": 26285, + "goblin": 26286, + "bic": 26287, + "housework": 26288, + "kohls": 26289, + "scorer": 26290, + "ida": 26291, + "decrease": 26292, + "msn": 26293, + "#word": 26294, + "nau": 26295, + "lohan": 26296, + "defenders": 26297, + "madder": 26298, + "progressing": 26299, + "#marryme": 26300, + "dapper": 26301, + "secretive": 26302, + "founder": 26303, + "recliner": 26304, + "penat": 26305, + "horizons": 26306, + "cache": 26307, + "canine": 26308, + "meen": 26309, + "excluding": 26310, + "uhg": 26311, + "poptart": 26312, + "curr": 26313, + "nyla": 26314, + "#girlcode": 26315, + "chichi": 26316, + "overcrowded": 26317, + "diay": 26318, + "kyles": 26319, + "brooke's": 26320, + "#fake": 26321, + "darby": 26322, + "carwash": 26323, + "mino": 26324, + "conductor": 26325, + "jokin": 26326, + "abby's": 26327, + "biryani": 26328, + "baybay": 26329, + "martian": 26330, + "#boyfriend": 26331, + "querido": 26332, + "ceasar": 26333, + "abrupt": 26334, + "fiends": 26335, + "jennie": 26336, + "catholicism": 26337, + "jajajajja": 26338, + "semaines": 26339, + "punked": 26340, + "specialties": 26341, + "paciencia": 26342, + "goblet": 26343, + "muggin": 26344, + "leches": 26345, + "budapest": 26346, + "callas": 26347, + "macadamia": 26348, + "dpmo": 26349, + "bodum": 26350, + "timezones": 26351, + "craved": 26352, + "tourism": 26353, + "kvm": 26354, + "mink": 26355, + "linen": 26356, + "leavee": 26357, + "deployment": 26358, + "tactic": 26359, + "tayler": 26360, + "raheem": 26361, + "trackball": 26362, + "admired": 26363, + "beaner": 26364, + "joshy": 26365, + "carnaval": 26366, + "fiestas": 26367, + "putas": 26368, + "mufuckas": 26369, + "fingering": 26370, + "jehovah": 26371, + "cala": 26372, + "twitter's": 26373, + "braking": 26374, + "rattled": 26375, + "kaak": 26376, + "dba": 26377, + "#selfie": 26378, + "anos": 26379, + "certificates": 26380, + "dimanche": 26381, + "alee": 26382, + "jvais": 26383, + "arf": 26384, + "dagger": 26385, + "babied": 26386, + "bogo": 26387, + "bedford": 26388, + "sisterr": 26389, + "panget": 26390, + "marketed": 26391, + "soothe": 26392, + "compilations": 26393, + "postcard": 26394, + "goodlooks": 26395, + "inda": 26396, + "amie": 26397, + "txtn": 26398, + "ngantuk": 26399, + "misfire": 26400, + "routing": 26401, + "troublesome": 26402, + "kot": 26403, + "unplug": 26404, + "mahn": 26405, + "emoticon": 26406, + "generosity": 26407, + "spendin": 26408, + "duas": 26409, + "twinkies": 26410, + "wasps": 26411, + "dissatisfaction": 26412, + "coordinator": 26413, + "bombb": 26414, + "miniseries": 26415, + "gymm": 26416, + "#fatgirlproblems": 26417, + "fiskars": 26418, + "felicitaciones": 26419, + "ignite": 26420, + "teres": 26421, + "beijing": 26422, + "welding": 26423, + "alles": 26424, + "moco": 26425, + "boise": 26426, + "pakyu": 26427, + "emptiness": 26428, + "chantel": 26429, + "bronco": 26430, + "turnn": 26431, + "abc's": 26432, + "browser": 26433, + "prepped": 26434, + "cockiness": 26435, + "registry": 26436, + "conversing": 26437, + "#sos": 26438, + "gulp": 26439, + "insisting": 26440, + "shithole": 26441, + "gambler": 26442, + "ericka": 26443, + "dashing": 26444, + "laura's": 26445, + "chimney": 26446, + "eggnog": 26447, + "inhaled": 26448, + "ayt": 26449, + "mera": 26450, + "betul": 26451, + "tendon": 26452, + "avon": 26453, + "esoteric": 26454, + "droid": 26455, + "eyess": 26456, + "kabobs": 26457, + "#wideawake": 26458, + "kailey": 26459, + "garment": 26460, + "lowering": 26461, + "llover": 26462, + "alf": 26463, + "bravery": 26464, + "fists": 26465, + "gonzalez": 26466, + "overheating": 26467, + "yoi": 26468, + "#tooexcited": 26469, + "everday": 26470, + "pol": 26471, + "benchmark": 26472, + "akala": 26473, + "#misshim": 26474, + "accountant": 26475, + "noch": 26476, + "parish": 26477, + "disick": 26478, + "freebies": 26479, + "#thanksmom": 26480, + "snobs": 26481, + "cie": 26482, + "procrastinated": 26483, + "taz": 26484, + "besito": 26485, + "protocol": 26486, + "honorable": 26487, + "marinade": 26488, + "bienvenido": 26489, + "tatoo": 26490, + "nobodyy": 26491, + "stalling": 26492, + "#frustrated": 26493, + "ooppss": 26494, + "hogging": 26495, + "leur": 26496, + "precioso": 26497, + "recon": 26498, + "rosy": 26499, + "bureau": 26500, + "uninvited": 26501, + "awaay": 26502, + "tamam": 26503, + "overflow": 26504, + "meteor": 26505, + "whata": 26506, + "gimp": 26507, + "faculty": 26508, + "concentrated": 26509, + "cleanup": 26510, + "#missher": 26511, + "#wecantdateif": 26512, + "embarrasing": 26513, + "redoing": 26514, + "scottie": 26515, + "#iloveit": 26516, + "strengthens": 26517, + "jacqueline": 26518, + "soaring": 26519, + "exhaustive": 26520, + "backwood": 26521, + "playas": 26522, + "balances": 26523, + "ici": 26524, + "portray": 26525, + "tending": 26526, + "variable": 26527, + "hablamos": 26528, + "overreacting": 26529, + "emptied": 26530, + "charot": 26531, + "bella's": 26532, + "meadows": 26533, + "interacted": 26534, + "chopin": 26535, + "month's": 26536, + "naging": 26537, + "saca": 26538, + "contests": 26539, + "olivia's": 26540, + "baaee": 26541, + "bordering": 26542, + "carpool": 26543, + "knockerz": 26544, + "blac": 26545, + "symbols": 26546, + "foodd": 26547, + "prendre": 26548, + "invicta": 26549, + "unfulfilled": 26550, + "iup": 26551, + "miller's": 26552, + "laff": 26553, + "dari": 26554, + "cann": 26555, + "kare": 26556, + "phoning": 26557, + "tinkerbell": 26558, + "pars": 26559, + "barkley": 26560, + "fluorescent": 26561, + "bizzle": 26562, + "woodlands": 26563, + "shuttup": 26564, + "midfield": 26565, + "oink": 26566, + "ahahhaha": 26567, + "ukraine": 26568, + "standin": 26569, + "ambers": 26570, + "jigsaw": 26571, + "pasadena": 26572, + "vendredi": 26573, + "adelaide": 26574, + "bada": 26575, + "groupons": 26576, + "cleopatra": 26577, + "habe": 26578, + "edmonton": 26579, + "ashely": 26580, + "sadistic": 26581, + "pees": 26582, + "stahhp": 26583, + "haitians": 26584, + "shelbs": 26585, + "samosas": 26586, + "gettysburg": 26587, + "patsy": 26588, + "ques": 26589, + "skewer": 26590, + "tyvm": 26591, + "belonged": 26592, + "pinkberry": 26593, + "#quote": 26594, + "sumthing": 26595, + "tmh": 26596, + "daniel's": 26597, + "choy": 26598, + "zorro": 26599, + "implied": 26600, + "#believetour": 26601, + "ggas": 26602, + "saison": 26603, + "xv": 26604, + "peewee": 26605, + "ortiz": 26606, + "floored": 26607, + "richardson": 26608, + "portillos": 26609, + "fitbit": 26610, + "hag": 26611, + "onesies": 26612, + "mujeres": 26613, + "critters": 26614, + "choral": 26615, + "forr": 26616, + "#baby": 26617, + "usefulness": 26618, + "initiation": 26619, + "kus": 26620, + "shimmy": 26621, + "xt": 26622, + "scavenger": 26623, + "nature's": 26624, + "ruzzle": 26625, + "bubbling": 26626, + "ventura": 26627, + "energizer": 26628, + "#starbucks": 26629, + "laisse": 26630, + "obliged": 26631, + "fumbled": 26632, + "bossa": 26633, + "cked": 26634, + "sleepwell": 26635, + "nl": 26636, + "rejecting": 26637, + "band's": 26638, + "realshit": 26639, + "fcks": 26640, + "shee": 26641, + "dimitri": 26642, + "screeching": 26643, + "#yumm": 26644, + "hooligans": 26645, + "getta": 26646, + "finnish": 26647, + "oka": 26648, + "bachi": 26649, + "lorena": 26650, + "heavyweight": 26651, + "touristy": 26652, + "jac": 26653, + "sugars": 26654, + "rh": 26655, + "intolerance": 26656, + "ihave": 26657, + "illusions": 26658, + "barton": 26659, + "aforementioned": 26660, + "tijuana": 26661, + "pompeii": 26662, + "nana's": 26663, + "advertises": 26664, + "anythin": 26665, + "hair's": 26666, + "descansa": 26667, + "girling": 26668, + "rosetta": 26669, + "hammy": 26670, + "vivement": 26671, + "#mentionsomeonebeautiful": 26672, + "gu": 26673, + "commando": 26674, + "phonecall": 26675, + "dil": 26676, + "packin": 26677, + "tull": 26678, + "entrar": 26679, + "dabbing": 26680, + "haylee": 26681, + "bengals": 26682, + "rowing": 26683, + "hurried": 26684, + "ambitions": 26685, + "rhianna": 26686, + "caant": 26687, + "owh": 26688, + "aubree": 26689, + "namee": 26690, + "paradigm": 26691, + "roomba": 26692, + "measurement": 26693, + "#relaxing": 26694, + "bog": 26695, + "peta": 26696, + "piola": 26697, + "wowza": 26698, + "lis": 26699, + "megadeth": 26700, + "oouu": 26701, + "stilted": 26702, + "goldie": 26703, + "#frozen": 26704, + "cane's": 26705, + "auditioning": 26706, + "tedium": 26707, + "machete": 26708, + "ray's": 26709, + "triumphant": 26710, + "snapbacks": 26711, + "realness": 26712, + "r's": 26713, + "dickk": 26714, + "suspects": 26715, + "snorted": 26716, + "#glee": 26717, + "mysteriously": 26718, + "humbug": 26719, + "sweated": 26720, + "cumbia": 26721, + "hungout": 26722, + "mcbusted": 26723, + "shana": 26724, + "alzheimer's": 26725, + "penge": 26726, + "whiplash": 26727, + "lottie": 26728, + "creators": 26729, + "rebounds": 26730, + "aanndd": 26731, + "idris": 26732, + "elisa": 26733, + "#best": 26734, + "listenable": 26735, + "sial": 26736, + "penises": 26737, + "bouffe": 26738, + "genocide": 26739, + "lalalalala": 26740, + "adrienne": 26741, + "pentax": 26742, + "chinos": 26743, + "#wishmeluck": 26744, + "unforgivable": 26745, + "distinctive": 26746, + "libraries": 26747, + "unopened": 26748, + "simplemente": 26749, + "moisturizing": 26750, + "fulla": 26751, + "boast": 26752, + "sicky": 26753, + "caint": 26754, + "scold": 26755, + "reaper": 26756, + "#pause": 26757, + "sugga": 26758, + "fagg": 26759, + "misfortune": 26760, + "natal": 26761, + "unlikeable": 26762, + "forearm": 26763, + "psychiatrist": 26764, + "there'd": 26765, + "lolololololol": 26766, + "fisherman": 26767, + "sainsburys": 26768, + "byyee": 26769, + "kirko": 26770, + "stingray": 26771, + "roe": 26772, + "theirselves": 26773, + "paisa": 26774, + "gallagher": 26775, + "#inspiration": 26776, + "zappa": 26777, + "dryers": 26778, + "#onceuponatime": 26779, + "euphoria": 26780, + "bind": 26781, + "#lhhatl": 26782, + "hablen": 26783, + "itss": 26784, + "hitman": 26785, + "jakey": 26786, + "elo": 26787, + "duration": 26788, + "labyrinth": 26789, + "amma": 26790, + "spielberg": 26791, + "lupa": 26792, + "scooping": 26793, + "eveer": 26794, + "crl": 26795, + "improbable": 26796, + "glover": 26797, + "substituted": 26798, + "janis": 26799, + "#reunited": 26800, + "pnc": 26801, + "headsets": 26802, + "lassie": 26803, + "hypnotized": 26804, + "fajr": 26805, + "meters": 26806, + "valen": 26807, + "nichole": 26808, + "wahahaha": 26809, + "dur": 26810, + "offbeat": 26811, + "nil": 26812, + "javon": 26813, + "manc": 26814, + "yeti": 26815, + "tianna": 26816, + "bazaar": 26817, + "heem": 26818, + "slurp": 26819, + "pliers": 26820, + "tks": 26821, + "tremendo": 26822, + "dhat": 26823, + "foremost": 26824, + "chucking": 26825, + "piensa": 26826, + "mbc": 26827, + "wheree": 26828, + "nowt": 26829, + "cld": 26830, + "gustavo": 26831, + "quasi": 26832, + "eq": 26833, + "overwrought": 26834, + "stealth": 26835, + "galveston": 26836, + "butta": 26837, + "hangry": 26838, + "urwell": 26839, + "paseo": 26840, + "erry": 26841, + "jajajajajajajajajajaja": 26842, + "overloaded": 26843, + "unadulterated": 26844, + "riviera": 26845, + "luca": 26846, + "#wwe": 26847, + "yeass": 26848, + "discourage": 26849, + "stringy": 26850, + "usps": 26851, + "godawful": 26852, + "irme": 26853, + "tine": 26854, + "checker": 26855, + "alum": 26856, + "zippers": 26857, + "querida": 26858, + "cana": 26859, + "jong": 26860, + "smitten": 26861, + "lending": 26862, + "parfum": 26863, + "cansado": 26864, + "linger": 26865, + "opi": 26866, + "tampoco": 26867, + "wigan": 26868, + "#nofriends": 26869, + "#juststop": 26870, + "beachh": 26871, + "pahaha": 26872, + "lanta": 26873, + "timelines": 26874, + "woefully": 26875, + "bonsai": 26876, + "diagrams": 26877, + "superwoman": 26878, + "popeye": 26879, + "moneys": 26880, + "synthesis": 26881, + "strobe": 26882, + "lgbt": 26883, + "rearranged": 26884, + "departed": 26885, + "maaf": 26886, + "voix": 26887, + "russel": 26888, + "theyll": 26889, + "ono": 26890, + "tightest": 26891, + "futon": 26892, + "vpn": 26893, + "#2omf": 26894, + "head's": 26895, + "dimly": 26896, + "lectured": 26897, + "bungee": 26898, + "unused": 26899, + "plastered": 26900, + "ohana": 26901, + "chillout": 26902, + "damper": 26903, + "lounges": 26904, + "cooperating": 26905, + "mischief": 26906, + "iftar": 26907, + "#football": 26908, + "#hmm": 26909, + "deco": 26910, + "shure": 26911, + "bonkers": 26912, + "snowflakes": 26913, + "bullsh": 26914, + "boutaa": 26915, + "#onrepeat": 26916, + "hou": 26917, + "rhetorical": 26918, + "seester": 26919, + "murk": 26920, + "panoramic": 26921, + "guava": 26922, + "purrfect": 26923, + "iyak": 26924, + "roscoe": 26925, + "bushy": 26926, + "employ": 26927, + "doses": 26928, + "artichokes": 26929, + "imyt": 26930, + "mouthed": 26931, + "hhahaha": 26932, + "housemate": 26933, + "punjabi": 26934, + "uli": 26935, + "heist": 26936, + "chrysler": 26937, + "kodaline": 26938, + "blehh": 26939, + "sanding": 26940, + "ales": 26941, + "explosions": 26942, + "buu": 26943, + "amina": 26944, + "theoretical": 26945, + "quita": 26946, + "tostadas": 26947, + "burnout": 26948, + "hoffman": 26949, + "twatched": 26950, + "capitalize": 26951, + "discouraging": 26952, + "causee": 26953, + "investigator": 26954, + "backside": 26955, + "boggling": 26956, + "lilac": 26957, + "ghanaian": 26958, + "hassan": 26959, + "uncomfortably": 26960, + "prism": 26961, + "clooney": 26962, + "bristles": 26963, + "notts": 26964, + "spyro": 26965, + "sagging": 26966, + "tlga": 26967, + "glastonbury": 26968, + "endorsement": 26969, + "trashcan": 26970, + "seryoso": 26971, + "highlands": 26972, + "piglet": 26973, + "pretender": 26974, + "phish": 26975, + "toolbox": 26976, + "distraught": 26977, + "ffa": 26978, + "crackheads": 26979, + "dressy": 26980, + "#leggo": 26981, + "combs": 26982, + "eurgh": 26983, + "batt": 26984, + "lieu": 26985, + "tranquilo": 26986, + "toothless": 26987, + "revisiting": 26988, + "strained": 26989, + "kaa": 26990, + "renewing": 26991, + "camouflage": 26992, + "philippine": 26993, + "krewella": 26994, + "apocalyptic": 26995, + "separates": 26996, + "hati": 26997, + "idcc": 26998, + "broadband": 26999, + "amplifier": 27000, + "emirates": 27001, + "breadmaker": 27002, + "sixflags": 27003, + "sigan": 27004, + "bebs": 27005, + "mrw": 27006, + "kaykay": 27007, + "gak": 27008, + "orchid": 27009, + "anythingg": 27010, + "rubia": 27011, + "mattresses": 27012, + "retrospect": 27013, + "shieet": 27014, + "eggrolls": 27015, + "nanay": 27016, + "setlist": 27017, + "sombody": 27018, + "skits": 27019, + "halves": 27020, + "albanian": 27021, + "gaff": 27022, + "impacted": 27023, + "ruth's": 27024, + "chav": 27025, + "bissh": 27026, + "dilated": 27027, + "convection": 27028, + "jeter": 27029, + "mierdaa": 27030, + "zaria": 27031, + "squashed": 27032, + "stuttering": 27033, + "leppard": 27034, + "carvery": 27035, + "howie": 27036, + "p.o.s.": 27037, + "ux": 27038, + "riah": 27039, + "wholly": 27040, + "brothas": 27041, + "spying": 27042, + "carley": 27043, + "#afc": 27044, + "hoyy": 27045, + "matchmaker": 27046, + "revine": 27047, + "#turndownforwhat": 27048, + "tzatziki": 27049, + "allegiant": 27050, + "tami": 27051, + "vd": 27052, + "mouthful": 27053, + "huskies": 27054, + "connors": 27055, + "oof": 27056, + "donk": 27057, + "princesse": 27058, + "giroud": 27059, + "classrooms": 27060, + "lmmfaoo": 27061, + "#thankyoujesus": 27062, + "peeking": 27063, + "#bbuk": 27064, + "masyado": 27065, + "ontem": 27066, + "instructive": 27067, + "lindoss": 27068, + "bachelors": 27069, + "pukul": 27070, + "breeding": 27071, + "clarence": 27072, + "travelogue": 27073, + "cuzzin": 27074, + "proofread": 27075, + "diplo": 27076, + "orthodox": 27077, + "deion": 27078, + "survives": 27079, + "cobain": 27080, + "miguel's": 27081, + "spontaneously": 27082, + "janine": 27083, + "bucky": 27084, + "bex": 27085, + "everyonee": 27086, + "terrier": 27087, + "somebodies": 27088, + "contestant": 27089, + "outdone": 27090, + "gabbie": 27091, + "tana": 27092, + "sipon": 27093, + "glade": 27094, + "grants": 27095, + "lark": 27096, + "stairway": 27097, + "tempos": 27098, + "bjork": 27099, + "enshallah": 27100, + "#teamlesbian": 27101, + "#familytime": 27102, + "anointed": 27103, + "angers": 27104, + "souped": 27105, + "tackles": 27106, + "jer": 27107, + "pristine": 27108, + "nii": 27109, + "substitution": 27110, + "pleaassee": 27111, + "drummers": 27112, + "fraser": 27113, + "skn": 27114, + "bawled": 27115, + "cadbury": 27116, + "muff": 27117, + "olvida": 27118, + "snippets": 27119, + "surgical": 27120, + "desks": 27121, + "trois": 27122, + "chocked": 27123, + "darnell": 27124, + "xan": 27125, + "hampshire": 27126, + "neatly": 27127, + "nutritious": 27128, + "homed": 27129, + "chabon": 27130, + "grattis": 27131, + "iver": 27132, + "mucha": 27133, + "hypnosis": 27134, + "cleverly": 27135, + "#ha": 27136, + "masquerade": 27137, + "worksheet": 27138, + "jayy": 27139, + "simulation": 27140, + "arielle": 27141, + "newyork": 27142, + "renditions": 27143, + "nato": 27144, + "alrite": 27145, + "zeta": 27146, + "fiat": 27147, + "starlight": 27148, + "biggy": 27149, + "quedan": 27150, + "punny": 27151, + "warmest": 27152, + "wwat": 27153, + "myra": 27154, + "anticipate": 27155, + "greeat": 27156, + "disagreements": 27157, + "chum": 27158, + "taylors": 27159, + ")):": 27160, + "thesaurus": 27161, + "tuxedo": 27162, + "anamorphic": 27163, + "canning": 27164, + "tasia": 27165, + "vicariously": 27166, + "drawls": 27167, + "slags": 27168, + "mutt": 27169, + "analyzing": 27170, + "cabaret": 27171, + "inception": 27172, + "fouls": 27173, + "proactive": 27174, + "presume": 27175, + "gillette": 27176, + "brielle": 27177, + "piscine": 27178, + "monsta": 27179, + "toodles": 27180, + "nialls": 27181, + "rez": 27182, + "tomando": 27183, + "hurted": 27184, + "heya": 27185, + "snapchating": 27186, + "uncool": 27187, + "entendi": 27188, + "mookie": 27189, + "#ughh": 27190, + "#free": 27191, + "recipient": 27192, + "#nopainnogain": 27193, + "#dumbass": 27194, + "infrared": 27195, + "grotesque": 27196, + "homeschooling": 27197, + "testosterone": 27198, + "unlistenable": 27199, + "gels": 27200, + "vips": 27201, + "hackers": 27202, + "omelettes": 27203, + "#rolltide": 27204, + "plantation": 27205, + "lovatic": 27206, + "puth": 27207, + "d'un": 27208, + "suertee": 27209, + "ibm": 27210, + "sosososo": 27211, + "gutta": 27212, + "hurrah": 27213, + "nxgga": 27214, + "hathaway": 27215, + "undergraduate": 27216, + "llueve": 27217, + "wildcat": 27218, + "sich": 27219, + "fanfiction": 27220, + "haley's": 27221, + "showroom": 27222, + "#thankyoulord": 27223, + "luigi": 27224, + "mdss": 27225, + "socials": 27226, + "dali": 27227, + "nwts": 27228, + "attends": 27229, + "practitioner": 27230, + "chuvaa": 27231, + "droit": 27232, + "#missit": 27233, + "aesthetically": 27234, + "duuhh": 27235, + "leans": 27236, + "contestants": 27237, + "lotions": 27238, + "cammy": 27239, + "dek": 27240, + "#springbreak": 27241, + "merienda": 27242, + "homme": 27243, + "beasting": 27244, + "exo's": 27245, + "sophie's": 27246, + "mizzou": 27247, + "stafford": 27248, + "haann": 27249, + "dinky": 27250, + "trudeau": 27251, + "#ratchet": 27252, + "tallahassee": 27253, + "hl": 27254, + "harkins": 27255, + "#good": 27256, + "trini": 27257, + "claude": 27258, + "nesha": 27259, + "indirecting": 27260, + "momm": 27261, + "attn": 27262, + "keyword": 27263, + "accomplishing": 27264, + "cussin": 27265, + "awarded": 27266, + "#sike": 27267, + "sentimiento": 27268, + "fics": 27269, + "wuss": 27270, + "sacrificing": 27271, + "isac": 27272, + "armin": 27273, + "goodman": 27274, + "melly": 27275, + "hahahahahahahahah": 27276, + "yasmine": 27277, + "sliver": 27278, + "sarcastically": 27279, + "watford": 27280, + "yanks": 27281, + "#100": 27282, + "sixers": 27283, + "branding": 27284, + "beams": 27285, + "naija": 27286, + "claire's": 27287, + "#girlfriend": 27288, + "perfeito": 27289, + "tingly": 27290, + "hohoho": 27291, + "eugh": 27292, + "#sweetdreams": 27293, + "igbo": 27294, + "rodilla": 27295, + "carryout": 27296, + "jodeci": 27297, + "molten": 27298, + "cafes": 27299, + "lq": 27300, + "enya": 27301, + "thon": 27302, + "hoe's": 27303, + "mew": 27304, + "puce": 27305, + "agnes": 27306, + "aftershave": 27307, + "frida": 27308, + "gretchen": 27309, + "grabber": 27310, + "validation": 27311, + "mashaallah": 27312, + "optic": 27313, + "realities": 27314, + "tackling": 27315, + "chega": 27316, + "province": 27317, + "dosnt": 27318, + "gladys": 27319, + "spartacus": 27320, + "emoticons": 27321, + "afta": 27322, + "tellem": 27323, + "chamberlain": 27324, + "pistons": 27325, + "fazer": 27326, + "scooters": 27327, + "milanesas": 27328, + "dedo": 27329, + "kapag": 27330, + "thoee": 27331, + "boomers": 27332, + "bushnell": 27333, + "reaallyy": 27334, + "ely": 27335, + "tortoise": 27336, + "manana": 27337, + "teflon": 27338, + "grimm": 27339, + "subtract": 27340, + "medusa": 27341, + "haappyy": 27342, + "anytimee": 27343, + "#sotrue": 27344, + "vase": 27345, + "swingin": 27346, + "footballers": 27347, + "playtime": 27348, + "feeler": 27349, + "generals": 27350, + "bucs": 27351, + "pro's": 27352, + "twirl": 27353, + "marche": 27354, + "watermelons": 27355, + "duffle": 27356, + "skeptic": 27357, + "graces": 27358, + "gerry": 27359, + "aruba": 27360, + "#towie": 27361, + "prueba": 27362, + "wannabes": 27363, + "#wahh": 27364, + "splashed": 27365, + "boludo": 27366, + "#dwts": 27367, + "aniston": 27368, + "singular": 27369, + "mumbling": 27370, + "architectural": 27371, + "grimes": 27372, + "gorillas": 27373, + "confederate": 27374, + "soupy": 27375, + "slacker": 27376, + "planed": 27377, + "#homesweethome": 27378, + "hae": 27379, + "tmmr": 27380, + "irreverent": 27381, + "peeta": 27382, + "contradiction": 27383, + "takde": 27384, + "skyscraper": 27385, + "rebirth": 27386, + "cinta": 27387, + "tori's": 27388, + "kristy": 27389, + "ben's": 27390, + "resolutions": 27391, + "plea": 27392, + "augusta": 27393, + "deftones": 27394, + "termino": 27395, + "drumline": 27396, + "camryn": 27397, + "swift's": 27398, + "dumbb": 27399, + "#sucks": 27400, + "lurked": 27401, + "tengok": 27402, + "unattended": 27403, + "portobello": 27404, + "iswear": 27405, + "budd": 27406, + "scrawny": 27407, + "churchill": 27408, + "wasent": 27409, + "yong": 27410, + "sme": 27411, + "coed": 27412, + "ged": 27413, + "prez": 27414, + "soulless": 27415, + "qu": 27416, + "bebes": 27417, + "extravaganza": 27418, + "kama": 27419, + "dietary": 27420, + "aldi": 27421, + "podes": 27422, + "mamii": 27423, + "cornell": 27424, + "midtown": 27425, + "thinkn": 27426, + "mounts": 27427, + "cpt": 27428, + "marta": 27429, + "scraper": 27430, + "andar": 27431, + "freshie": 27432, + "darien": 27433, + "subbin": 27434, + "wuvv": 27435, + "camilla": 27436, + "elites": 27437, + "secreto": 27438, + "octubre": 27439, + "fink": 27440, + "gerardo": 27441, + "brando": 27442, + "manufacture": 27443, + "hailee": 27444, + "modules": 27445, + "moccasins": 27446, + "nuke": 27447, + "mandi": 27448, + "capt": 27449, + "hurtt": 27450, + "promposal": 27451, + "headin": 27452, + "sonoma": 27453, + "woven": 27454, + "pegs": 27455, + "bbyg": 27456, + "kesa": 27457, + "atee": 27458, + "sayinn": 27459, + "bargains": 27460, + "curses": 27461, + "daria": 27462, + "stds": 27463, + "removable": 27464, + "pairings": 27465, + "ender's": 27466, + "flinch": 27467, + "graco": 27468, + "epiphany": 27469, + "dorado": 27470, + "gash": 27471, + "considerably": 27472, + "hhs": 27473, + "discharge": 27474, + "dormido": 27475, + "bailando": 27476, + "recession": 27477, + "seul": 27478, + "napaka": 27479, + "lice": 27480, + "dominating": 27481, + "i'v": 27482, + "muere": 27483, + "neighboring": 27484, + "jj's": 27485, + "enuf": 27486, + "lastima": 27487, + "bfast": 27488, + "greeks": 27489, + "foow": 27490, + "tweety": 27491, + "#yesplease": 27492, + "finns": 27493, + "needd": 27494, + "sniffles": 27495, + "destino": 27496, + "feu": 27497, + ";/": 27498, + "prev": 27499, + "radish": 27500, + "blazin": 27501, + "dickies": 27502, + "ledger": 27503, + "uii": 27504, + "mead": 27505, + "crois": 27506, + "fala": 27507, + "mms": 27508, + "albuquerque": 27509, + "jugs": 27510, + "tyty": 27511, + "beba": 27512, + "finnah": 27513, + "#savage": 27514, + "jumbled": 27515, + "solver": 27516, + "aweh": 27517, + "pancho": 27518, + "morse": 27519, + "mce": 27520, + "dictator": 27521, + "neighborhoods": 27522, + "popo": 27523, + "sidewalks": 27524, + "#buzzing": 27525, + "epps": 27526, + "staffs": 27527, + "gremlin": 27528, + "armchair": 27529, + "burps": 27530, + "wla": 27531, + "similarly": 27532, + "pussycat": 27533, + "tomara": 27534, + "taco's": 27535, + "thrifty": 27536, + "connelly": 27537, + "epp": 27538, + "#ijs": 27539, + "chelle": 27540, + "dusk": 27541, + "navidad": 27542, + "ahahahahahah": 27543, + "marmalade": 27544, + "dreadfully": 27545, + "devoirs": 27546, + "whr": 27547, + "abyss": 27548, + "muahahaha": 27549, + "robo": 27550, + "killas": 27551, + "fafsa": 27552, + "bahahahahaha": 27553, + "manifesto": 27554, + "pulak": 27555, + "#chill": 27556, + "gimmicky": 27557, + "glassware": 27558, + "lvg": 27559, + "socked": 27560, + "cashmere": 27561, + "dollas": 27562, + "eyebags": 27563, + "wnna": 27564, + "gk": 27565, + "hayward": 27566, + "lyke": 27567, + "bwahahaha": 27568, + "slender": 27569, + "cookouts": 27570, + "#coys": 27571, + "hooy": 27572, + "appeals": 27573, + "bendito": 27574, + "clicker": 27575, + "igloo": 27576, + "mcgregor": 27577, + "colada": 27578, + "paralysis": 27579, + "repent": 27580, + "bou": 27581, + "leatherman": 27582, + "icey": 27583, + "starry": 27584, + "angela's": 27585, + "jijiji": 27586, + "lorax": 27587, + "craic": 27588, + "e's": 27589, + "nr": 27590, + "bebi": 27591, + "fem": 27592, + "palatable": 27593, + "howard's": 27594, + "hyperventilating": 27595, + "houston's": 27596, + "vales": 27597, + "cherie": 27598, + "turgid": 27599, + "demonstration": 27600, + "huddle": 27601, + "#r": 27602, + "dhs": 27603, + "blanche": 27604, + "summ": 27605, + "limitless": 27606, + "jl": 27607, + "crayola": 27608, + "modification": 27609, + "elote": 27610, + "slidin": 27611, + "prophetic": 27612, + "vidal": 27613, + "harrys": 27614, + "mantra": 27615, + "similarities": 27616, + "vertigo": 27617, + "#letsgetit": 27618, + "usernames": 27619, + "cheque": 27620, + "lexa": 27621, + "motors": 27622, + "parler": 27623, + "stardust": 27624, + "arrowhead": 27625, + "wheelers": 27626, + "navel": 27627, + "checklist": 27628, + "bots": 27629, + "drippin": 27630, + "resembled": 27631, + "manziel": 27632, + "illustrator": 27633, + "perfectas": 27634, + "hardback": 27635, + "scouting": 27636, + "serviceable": 27637, + "repertoire": 27638, + "ful": 27639, + "exchanging": 27640, + "avenged": 27641, + "immersion": 27642, + "rida": 27643, + "affiliated": 27644, + "rickey": 27645, + "kavos": 27646, + "swans": 27647, + "#tfios": 27648, + "estuvo": 27649, + "interruption": 27650, + "sadies": 27651, + "omb": 27652, + "predicament": 27653, + "beautifuls": 27654, + "teu": 27655, + "solidly": 27656, + "dm'ing": 27657, + "winder": 27658, + "sauerkraut": 27659, + "invoice": 27660, + "choix": 27661, + "crosse": 27662, + "jia": 27663, + "nonfiction": 27664, + "wimbledon": 27665, + "insha": 27666, + "#bbn": 27667, + "summerr": 27668, + "hoods": 27669, + "skis": 27670, + "determines": 27671, + "perla": 27672, + "aargh": 27673, + "longlife": 27674, + "eon": 27675, + "sns": 27676, + "olee": 27677, + "rend": 27678, + "sprain": 27679, + "vermicelli": 27680, + "gano": 27681, + "slagging": 27682, + "optimus": 27683, + "conflicts": 27684, + "glanced": 27685, + "diias": 27686, + "enana": 27687, + "frizz": 27688, + "fritas": 27689, + "gaal": 27690, + "pitty": 27691, + "collision": 27692, + "barked": 27693, + "regale": 27694, + "peat": 27695, + "mamacita": 27696, + "northface": 27697, + "zit": 27698, + "whirl": 27699, + "emilia": 27700, + "sheeran's": 27701, + "intoxicating": 27702, + "admins": 27703, + "finales": 27704, + "xena": 27705, + "geneva": 27706, + "purest": 27707, + "stubbed": 27708, + "emt": 27709, + "oregano": 27710, + "v's": 27711, + "reccomended": 27712, + "buffering": 27713, + "excursion": 27714, + "msc": 27715, + "smackin": 27716, + "rena": 27717, + "ragrets": 27718, + "magna": 27719, + "nostril": 27720, + "forensics": 27721, + "timezone": 27722, + "apenas": 27723, + "sleepers": 27724, + "sponsors": 27725, + "dandruff": 27726, + "assassination": 27727, + "futuro": 27728, + "lair": 27729, + "bestfrann": 27730, + "vevo": 27731, + "lyon": 27732, + "katniss": 27733, + "finicky": 27734, + "#cringe": 27735, + "napp": 27736, + "nlng": 27737, + "bidness": 27738, + "schemin": 27739, + "harvester": 27740, + "fie": 27741, + "underpowered": 27742, + "presente": 27743, + "ix": 27744, + "corniest": 27745, + "northside": 27746, + "corrector": 27747, + "costello": 27748, + "darrell": 27749, + "glitchy": 27750, + "arrepiento": 27751, + "employer": 27752, + "fascination": 27753, + "vcu": 27754, + "eheh": 27755, + "artist's": 27756, + "curler": 27757, + "dumbo": 27758, + "sludge": 27759, + "ssi": 27760, + "filmmaking": 27761, + "pales": 27762, + "dobby": 27763, + "remi": 27764, + "lort": 27765, + "grammer": 27766, + "proposing": 27767, + "dilf": 27768, + "eme": 27769, + "mavericks": 27770, + "#t": 27771, + "thingg": 27772, + "yiu": 27773, + "statues": 27774, + "lundi": 27775, + "escapes": 27776, + "compro": 27777, + "aerial": 27778, + "laney": 27779, + "insulation": 27780, + "layman": 27781, + "huns": 27782, + "sockets": 27783, + "napoli": 27784, + "recognised": 27785, + "brunswick": 27786, + "slammin": 27787, + "dort": 27788, + "vea": 27789, + "haiss": 27790, + "#stoked": 27791, + "plese": 27792, + "unbroken": 27793, + "voit": 27794, + "banget": 27795, + "paano": 27796, + "utensil": 27797, + "porterhouse": 27798, + "kooks": 27799, + "alberto": 27800, + "adaption": 27801, + "tubby": 27802, + "tommy's": 27803, + "terminar": 27804, + "pasukan": 27805, + "scooper": 27806, + "#bbloggers": 27807, + "u'd": 27808, + "murda": 27809, + "mesquite": 27810, + "regarder": 27811, + "fakee": 27812, + "fuggin": 27813, + "mensa": 27814, + "humongous": 27815, + "experimenting": 27816, + "audiences": 27817, + "kori": 27818, + "crappiest": 27819, + "kody": 27820, + "meng": 27821, + "aggravates": 27822, + "cept": 27823, + "julia's": 27824, + "planer": 27825, + "tyrell": 27826, + "storing": 27827, + "hepa": 27828, + "agoo": 27829, + "foley": 27830, + "confidently": 27831, + "nami": 27832, + "zesty": 27833, + "ahahaa": 27834, + "latee": 27835, + "alchemist": 27836, + "cooll": 27837, + "demos": 27838, + "suckk": 27839, + "sprinkling": 27840, + "cholo": 27841, + "enought": 27842, + "mamba": 27843, + "iwanna": 27844, + "bonanza": 27845, + "groomers": 27846, + "jerusalem": 27847, + "disturbingly": 27848, + "gaga's": 27849, + "cherished": 27850, + "idrk": 27851, + "blunder": 27852, + "guapos": 27853, + "resentment": 27854, + "deadbeat": 27855, + "exceedingly": 27856, + "mashup": 27857, + "jackie's": 27858, + "portioned": 27859, + "vicinity": 27860, + "thump": 27861, + "uncensored": 27862, + "grt": 27863, + "apricot": 27864, + "gamestop": 27865, + "dutches": 27866, + "valentino": 27867, + "contesto": 27868, + "capa": 27869, + "ipaq": 27870, + "softy": 27871, + "connectivity": 27872, + "gentille": 27873, + "omission": 27874, + "subhanallah": 27875, + "lemony": 27876, + "pubic": 27877, + "unni": 27878, + "obligation": 27879, + "moore's": 27880, + "quirks": 27881, + "futurama": 27882, + "#bbl": 27883, + "cincy": 27884, + "css": 27885, + "#m": 27886, + "smeared": 27887, + "altar": 27888, + "chaa": 27889, + "rhi": 27890, + "bratty": 27891, + "cardiac": 27892, + "soars": 27893, + "alaina": 27894, + "treatin": 27895, + "sledgehammer": 27896, + "frowned": 27897, + "chut": 27898, + "bitch's": 27899, + "carmelo": 27900, + "observant": 27901, + "amira": 27902, + "hahahhahahaha": 27903, + "sari": 27904, + "coconuts": 27905, + "calum's": 27906, + "corto": 27907, + "putrid": 27908, + "transactions": 27909, + "broma": 27910, + "stealer": 27911, + "transforming": 27912, + "#brazil": 27913, + "akira": 27914, + "rsvp": 27915, + "integration": 27916, + "sombrero": 27917, + "proofs": 27918, + "tcu": 27919, + "merlot": 27920, + "broncaa": 27921, + "exhilarating": 27922, + "bitin": 27923, + "toiletries": 27924, + "bellydance": 27925, + "taya": 27926, + "stakes": 27927, + "alejandra": 27928, + "fucced": 27929, + "comel": 27930, + "tzu": 27931, + "ckin": 27932, + "loled": 27933, + "gosto": 27934, + "boosts": 27935, + "misread": 27936, + "salma": 27937, + "stoping": 27938, + "harmonizers": 27939, + "#salty": 27940, + "dortmund": 27941, + "liddo": 27942, + "lowe's": 27943, + "spore": 27944, + "koolin": 27945, + "hartford": 27946, + "frother": 27947, + "idw": 27948, + "stephan": 27949, + "kausap": 27950, + "maz": 27951, + "beastie": 27952, + "courtney's": 27953, + "#yr": 27954, + "carpe": 27955, + "millionaires": 27956, + "resisting": 27957, + "fakeness": 27958, + "montr": 27959, + "ori": 27960, + "mandela": 27961, + "gav": 27962, + "blacc": 27963, + "utopia": 27964, + "sykes": 27965, + "#procrastination": 27966, + "santo": 27967, + "yeas": 27968, + "ramble": 27969, + "jeepers": 27970, + "piers": 27971, + "lez": 27972, + "greta": 27973, + "deceit": 27974, + "tos": 27975, + "walkie": 27976, + "perl": 27977, + "#thatawkwardmoment": 27978, + "nach": 27979, + "assez": 27980, + "calculate": 27981, + "brothaa": 27982, + "prend": 27983, + "#thatisall": 27984, + "ced": 27985, + "covenant": 27986, + "yeeaa": 27987, + "video's": 27988, + "instigating": 27989, + "#keeper": 27990, + "pasalubong": 27991, + "darle": 27992, + "tastiest": 27993, + "emilio": 27994, + "gooll": 27995, + "giovanni": 27996, + "cliffs": 27997, + "demille": 27998, + "contradictory": 27999, + "spenser": 28000, + "prelude": 28001, + "replays": 28002, + "thrice": 28003, + "hots": 28004, + "esteban": 28005, + "brio": 28006, + "wonderin": 28007, + "dentro": 28008, + "dayday": 28009, + "tilted": 28010, + "pik": 28011, + "flume": 28012, + "ed's": 28013, + "fraternity": 28014, + "brutality": 28015, + "ithink": 28016, + "tock": 28017, + "billy's": 28018, + "#ouat": 28019, + "plase": 28020, + "glows": 28021, + "hone": 28022, + "starvin": 28023, + "reflected": 28024, + "kate's": 28025, + "stratford": 28026, + "jhi": 28027, + "haribo": 28028, + "trademark": 28029, + "restocking": 28030, + "acquainted": 28031, + "#petty": 28032, + "#butreally": 28033, + "multimedia": 28034, + "sensei": 28035, + "shiloh": 28036, + "dentista": 28037, + "teaming": 28038, + "footlong": 28039, + "#sweet": 28040, + "ignant": 28041, + "exclamation": 28042, + "rabia": 28043, + "interruptions": 28044, + "jammies": 28045, + "refuge": 28046, + "coolness": 28047, + "passin": 28048, + "sultan": 28049, + "earbud": 28050, + "alamo": 28051, + "converting": 28052, + "blimey": 28053, + "assistants": 28054, + "yl": 28055, + "debris": 28056, + "willpower": 28057, + "dne": 28058, + "sparing": 28059, + "hotel's": 28060, + "disinterested": 28061, + "podcasts": 28062, + "hysteria": 28063, + "breaky": 28064, + "wl": 28065, + "#tybg": 28066, + "bashed": 28067, + "irregular": 28068, + "canopy": 28069, + "utmost": 28070, + "valleys": 28071, + "thankuu": 28072, + "paracetamol": 28073, + "yelped": 28074, + "forro": 28075, + "presses": 28076, + "pute": 28077, + "roscoes": 28078, + "priceline": 28079, + "fonda": 28080, + "caz": 28081, + "swindle": 28082, + "maar": 28083, + "revere": 28084, + "hakkasan": 28085, + "besh": 28086, + "plucked": 28087, + "gtr": 28088, + "weeknight": 28089, + "dengan": 28090, + "censorship": 28091, + "pinocchio": 28092, + "readin": 28093, + "desastre": 28094, + "lumpia": 28095, + "goober": 28096, + "clogging": 28097, + "conozco": 28098, + "likkle": 28099, + "occult": 28100, + "snagged": 28101, + "faints": 28102, + "nad": 28103, + "whirlpool": 28104, + "pst": 28105, + "fomo": 28106, + "chillest": 28107, + "tbs": 28108, + "nonna": 28109, + "wrt": 28110, + "aslong": 28111, + "kaay": 28112, + "vtech": 28113, + "stoney": 28114, + "tragically": 28115, + "smother": 28116, + "intex": 28117, + "etsy": 28118, + "swordfish": 28119, + "recognizing": 28120, + "mcdowell": 28121, + "punya": 28122, + "haus": 28123, + "timberland": 28124, + "tge": 28125, + "solange": 28126, + "spose": 28127, + "#1d": 28128, + "muggy": 28129, + "afterlife": 28130, + "#impatient": 28131, + "ool": 28132, + "braden": 28133, + "sully": 28134, + "aviso": 28135, + "lovelife": 28136, + "masterchef": 28137, + "narry": 28138, + "#freebiefriday": 28139, + "herbert": 28140, + "fugg": 28141, + "peppered": 28142, + "progressively": 28143, + "solider": 28144, + "pax": 28145, + "scarey": 28146, + "tokens": 28147, + "shawna": 28148, + "cingular": 28149, + "parklife": 28150, + "metric": 28151, + "blessin": 28152, + "impressing": 28153, + "beeb": 28154, + "chested": 28155, + "melanin": 28156, + "fiz": 28157, + "alvarez": 28158, + "#depressed": 28159, + "hungarian": 28160, + "stefani": 28161, + "unpopular": 28162, + "#stopit": 28163, + "lyy": 28164, + "pillar": 28165, + "powerpuff": 28166, + "lolita": 28167, + "lukes": 28168, + "pumasok": 28169, + "marquez": 28170, + "overdrive": 28171, + "percussion": 28172, + "sultry": 28173, + "sweaa": 28174, + "aps": 28175, + "rusting": 28176, + "#gutted": 28177, + "prude": 28178, + "roy's": 28179, + "px": 28180, + "#hellyeah": 28181, + "reedus": 28182, + "stealin": 28183, + "tranquila": 28184, + "bosan": 28185, + "jaylin": 28186, + "hakeem": 28187, + "maynard": 28188, + "slaughtered": 28189, + "increible": 28190, + "#datenight": 28191, + "activist": 28192, + "ltr": 28193, + "sofas": 28194, + "unsaved": 28195, + "raindrops": 28196, + "unmatched": 28197, + "titus": 28198, + "flipper": 28199, + "subscriber": 28200, + "abbs": 28201, + "sincerity": 28202, + "#soiknowitsreal": 28203, + "sthu": 28204, + "unwilling": 28205, + "revlon": 28206, + "rangoon": 28207, + "blake's": 28208, + "maneuver": 28209, + "contradicting": 28210, + "artemis": 28211, + "leisurely": 28212, + "reap": 28213, + "teppanyaki": 28214, + "prospective": 28215, + "decidedly": 28216, + "breville": 28217, + "soja": 28218, + "stems": 28219, + "formulas": 28220, + "amplified": 28221, + "flaked": 28222, + "cici's": 28223, + "#notokay": 28224, + "inkjet": 28225, + "shamed": 28226, + "lapit": 28227, + "kocham": 28228, + "samething": 28229, + "informs": 28230, + "nariz": 28231, + "reduces": 28232, + "saludo": 28233, + "nim": 28234, + "davon": 28235, + "skaters": 28236, + "brillant": 28237, + "alanna": 28238, + "dgn": 28239, + "#prettyplease": 28240, + "#noworries": 28241, + "dri": 28242, + "all's": 28243, + "dejame": 28244, + "plaster": 28245, + "absinthe": 28246, + "cam's": 28247, + "birthdayx": 28248, + "drilled": 28249, + "hudgens": 28250, + "mmhhmm": 28251, + "depeche": 28252, + "fda": 28253, + "monet": 28254, + "cita": 28255, + "seguidores": 28256, + "apr": 28257, + "limbs": 28258, + "hooka": 28259, + "meuf": 28260, + "fbl": 28261, + "wf": 28262, + "farming": 28263, + "iain": 28264, + "maris": 28265, + "incredibles": 28266, + "paradox": 28267, + "clarifying": 28268, + "stewie": 28269, + "fracture": 28270, + "imposter": 28271, + "southpaw": 28272, + "vessel": 28273, + "correr": 28274, + "lhs": 28275, + "nauseated": 28276, + "mia's": 28277, + "pelis": 28278, + "barbz": 28279, + "staggering": 28280, + "rightnow": 28281, + "skulls": 28282, + "noticia": 28283, + "blaah": 28284, + "dest": 28285, + "pollution": 28286, + "trolled": 28287, + "sous": 28288, + "geminis": 28289, + "stirred": 28290, + "talkers": 28291, + "hyundai": 28292, + "muchoo": 28293, + "essayer": 28294, + "scrr": 28295, + "adorei": 28296, + "stormed": 28297, + "jeeze": 28298, + "overproduced": 28299, + "fridaay": 28300, + "#finals": 28301, + "mien": 28302, + "moped": 28303, + "#emabiggestfans5sos": 28304, + "savin": 28305, + "cadet": 28306, + "increasingly": 28307, + "chauu": 28308, + "#coyg": 28309, + "philippians": 28310, + "depuis": 28311, + "slaving": 28312, + "flank": 28313, + "lonnie": 28314, + "museums": 28315, + "ucas": 28316, + "lagu": 28317, + "toppers": 28318, + "caper": 28319, + "shogun": 28320, + "miga": 28321, + "bobcats": 28322, + "ulan": 28323, + "fts": 28324, + "rudy's": 28325, + "thugga": 28326, + "rethinking": 28327, + "barriers": 28328, + "#gossipgirl": 28329, + "durban": 28330, + "acapella": 28331, + "westgate": 28332, + "soba": 28333, + "quedar": 28334, + "#literally": 28335, + "throttle": 28336, + "xtreme": 28337, + "molded": 28338, + "bikers": 28339, + "miercoles": 28340, + "faf": 28341, + "fussed": 28342, + "dissapoint": 28343, + "arguin": 28344, + "goodmoring": 28345, + "gmom": 28346, + "squeal": 28347, + "benched": 28348, + "inspected": 28349, + "rodrigo": 28350, + "#feelinggood": 28351, + "bravoo": 28352, + "afc": 28353, + "mockery": 28354, + "agess": 28355, + "deere": 28356, + "prickly": 28357, + "crips": 28358, + "consolation": 28359, + "bikram": 28360, + "uva": 28361, + "culvers": 28362, + "payoff": 28363, + "gables": 28364, + "preparations": 28365, + "casaa": 28366, + "tarp": 28367, + "gould": 28368, + "cappin": 28369, + "itchin": 28370, + "meowing": 28371, + "ayanna": 28372, + "tkm": 28373, + "giorno": 28374, + "espionage": 28375, + "lifeline": 28376, + "sine": 28377, + "standup": 28378, + "yar": 28379, + "makati": 28380, + "geoff": 28381, + "mcknight": 28382, + "annie's": 28383, + "commuting": 28384, + "perverts": 28385, + "philo": 28386, + "sdhc": 28387, + "ashh": 28388, + "hardee's": 28389, + "#lmfao": 28390, + "dialed": 28391, + "wickedly": 28392, + "siapa": 28393, + "supervision": 28394, + "confrontation": 28395, + "airtime": 28396, + "manipulation": 28397, + "genealogy": 28398, + "pussys": 28399, + "pregunta": 28400, + "aamiin": 28401, + "homeschool": 28402, + "kaplan": 28403, + "ian's": 28404, + "ema": 28405, + "holis": 28406, + "browning": 28407, + "sculpture": 28408, + "therefor": 28409, + "ratatouille": 28410, + "comingg": 28411, + "#eww": 28412, + "weeknd's": 28413, + "firestone": 28414, + "suspenders": 28415, + "froggy": 28416, + "brewers": 28417, + "miaa": 28418, + "henry's": 28419, + "anni": 28420, + "retailer": 28421, + "psl": 28422, + "fancies": 28423, + "profusely": 28424, + "yute": 28425, + "maturing": 28426, + "plait": 28427, + "amani": 28428, + "quantities": 28429, + "demolish": 28430, + "nypd": 28431, + "ber": 28432, + "muaa": 28433, + "grandmother's": 28434, + "#myfavorite": 28435, + "revolver": 28436, + "lulus": 28437, + "hahahahahahahahahahahaha": 28438, + "perdido": 28439, + "blige": 28440, + "noice": 28441, + "pegue": 28442, + "#struggle": 28443, + "indicates": 28444, + "drawl": 28445, + "michel": 28446, + "toothpick": 28447, + "pratt": 28448, + "thaang": 28449, + "lastnite": 28450, + "hastag": 28451, + "humbling": 28452, + "heirs": 28453, + "promos": 28454, + "nou": 28455, + "chokes": 28456, + "stickin": 28457, + "landi": 28458, + "fret": 28459, + "solitude": 28460, + "nab": 28461, + "hawking": 28462, + "chas": 28463, + "sandbox": 28464, + "giggled": 28465, + "f'ing": 28466, + "stupidd": 28467, + "addictions": 28468, + "bill's": 28469, + "selecting": 28470, + "vaccum": 28471, + "giv": 28472, + "plotless": 28473, + "celu": 28474, + "didd": 28475, + "rashes": 28476, + "patootie": 28477, + "midwife": 28478, + "commandments": 28479, + "chamem": 28480, + "#closeupforeversummer": 28481, + "ajuda": 28482, + "worser": 28483, + "descansar": 28484, + "coventry": 28485, + "naenae": 28486, + "ibe": 28487, + "nodded": 28488, + "shitload": 28489, + "thugg": 28490, + "minivan": 28491, + "deprivation": 28492, + "hain": 28493, + "erroneous": 28494, + "yani": 28495, + "prevail": 28496, + "daya": 28497, + "#hot": 28498, + "lupita": 28499, + "offically": 28500, + "trouve": 28501, + "dearie": 28502, + "cranked": 28503, + "guadalajara": 28504, + "sherwood": 28505, + "bb's": 28506, + "scans": 28507, + "livest": 28508, + "nasi": 28509, + "yukon": 28510, + "wowowow": 28511, + "bellies": 28512, + "conch": 28513, + "hap": 28514, + "jy": 28515, + "moles": 28516, + "pey": 28517, + "reducing": 28518, + "powerfull": 28519, + "jealouss": 28520, + "unpretentious": 28521, + "welkam": 28522, + "nmn": 28523, + "afi": 28524, + "deets": 28525, + "swapping": 28526, + "sexx": 28527, + "karting": 28528, + "dormiir": 28529, + "nightstand": 28530, + "bongs": 28531, + "cai": 28532, + "cereals": 28533, + "vers": 28534, + "nailshop": 28535, + "parsley": 28536, + "mamaw": 28537, + "juve": 28538, + "pessoas": 28539, + "baae": 28540, + "pasando": 28541, + "bouda": 28542, + "#otf": 28543, + "ehi": 28544, + "microbiology": 28545, + "martens": 28546, + "flay": 28547, + "steadily": 28548, + "samasama": 28549, + "reyt": 28550, + "entirety": 28551, + "easyy": 28552, + "lather": 28553, + "ptm": 28554, + "mckinley": 28555, + "#arsenal": 28556, + "limeade": 28557, + "fv": 28558, + "sv": 28559, + "aki": 28560, + "vonnegut": 28561, + "oa": 28562, + "dati": 28563, + "pido": 28564, + "hissing": 28565, + "sexxy": 28566, + "mea": 28567, + "lug": 28568, + "#competition": 28569, + "circling": 28570, + "doodoo": 28571, + "laundromat": 28572, + "spicier": 28573, + "lluviaa": 28574, + "uhuh": 28575, + "calculated": 28576, + "biographies": 28577, + "antipasto": 28578, + "backpacks": 28579, + "disowned": 28580, + "baptism": 28581, + "flagstaff": 28582, + "amiin": 28583, + "sanyo": 28584, + "petrified": 28585, + "eds": 28586, + "flojera": 28587, + "bagless": 28588, + "#tu": 28589, + "atv": 28590, + "draking": 28591, + "cannibal": 28592, + "mena": 28593, + "sido": 28594, + "alott": 28595, + "#taylorswift": 28596, + "mello": 28597, + "suprising": 28598, + "kaantok": 28599, + "undressed": 28600, + "identified": 28601, + "nikko": 28602, + "facile": 28603, + "xii": 28604, + "#longday": 28605, + "sparking": 28606, + "wts": 28607, + "#fam": 28608, + "facepalm": 28609, + "horseback": 28610, + "sensing": 28611, + "aboutta": 28612, + "levantarme": 28613, + "financing": 28614, + "tricia": 28615, + "defected": 28616, + "vacuums": 28617, + "#hardworkpaysoff": 28618, + "teetee": 28619, + "yiiee": 28620, + "disqualified": 28621, + "pips": 28622, + "wtaf": 28623, + "blonder": 28624, + "favoring": 28625, + "pus": 28626, + "aigh": 28627, + "tamo": 28628, + "conversate": 28629, + "emergencies": 28630, + "ric": 28631, + "#jokes": 28632, + "pata": 28633, + "batangas": 28634, + "serrano": 28635, + "bearings": 28636, + "cribs": 28637, + "truc": 28638, + "thw": 28639, + "signatures": 28640, + "spazzed": 28641, + "yesyes": 28642, + "taiwanese": 28643, + "poppins": 28644, + "rancheros": 28645, + "kyler": 28646, + "#rhoa": 28647, + "staffing": 28648, + "regulator": 28649, + "oro": 28650, + "neville": 28651, + "dmc": 28652, + "fatboy": 28653, + "poirot": 28654, + "akoo": 28655, + "#breakingbad": 28656, + "plein": 28657, + "rotfl": 28658, + "zenith": 28659, + "lova": 28660, + "terre": 28661, + "introduces": 28662, + "#previoustweet": 28663, + "#90sbabytrain": 28664, + "helpfull": 28665, + "nativity": 28666, + "commend": 28667, + "manageable": 28668, + "croc": 28669, + "dyslexic": 28670, + "winter's": 28671, + "replayed": 28672, + "snuggly": 28673, + "hujan": 28674, + "measly": 28675, + "#happydays": 28676, + "minimalist": 28677, + "cca": 28678, + "#vote1duk": 28679, + "klay": 28680, + "calcium": 28681, + "recipies": 28682, + "startling": 28683, + "revined": 28684, + "waz": 28685, + "beby": 28686, + "hoein": 28687, + "rock'n": 28688, + "sleaze": 28689, + "flirted": 28690, + "catastrophe": 28691, + "#idgaf": 28692, + "posse": 28693, + "morgantown": 28694, + "rename": 28695, + "rai": 28696, + "tente": 28697, + "charlotte's": 28698, + "hby": 28699, + "necessities": 28700, + "interstellar": 28701, + "vowed": 28702, + "mastermind": 28703, + "forge": 28704, + "deca": 28705, + "loz": 28706, + "salvo": 28707, + "#htgawm": 28708, + "fomee": 28709, + "caldo": 28710, + "gustan": 28711, + "oopss": 28712, + "peen": 28713, + "lola's": 28714, + "cutes": 28715, + "youthful": 28716, + "anyare": 28717, + "awakee": 28718, + "ionn": 28719, + "mattie": 28720, + "llena": 28721, + "mismatched": 28722, + "fancied": 28723, + "actitud": 28724, + "w's": 28725, + "cristal": 28726, + "crockpot": 28727, + "conferences": 28728, + "marbella": 28729, + ":-p": 28730, + "tents": 28731, + "coy": 28732, + "flaps": 28733, + "timid": 28734, + "autographed": 28735, + "straighteners": 28736, + "undeniable": 28737, + "enamel": 28738, + "cruisers": 28739, + "empanada": 28740, + "dandelion": 28741, + "egged": 28742, + "symphonies": 28743, + "salvage": 28744, + "conquers": 28745, + "blocklist": 28746, + "tove": 28747, + "tryy": 28748, + "flux": 28749, + "tmnt": 28750, + "tobias": 28751, + "postpone": 28752, + "junt": 28753, + "choosin": 28754, + "fairfield": 28755, + "frank's": 28756, + "lukee": 28757, + "albacore": 28758, + "facu": 28759, + "mouthwash": 28760, + "reeaally": 28761, + "deported": 28762, + "#happyhappyhappy": 28763, + "giggly": 28764, + "flushing": 28765, + "kbbq": 28766, + "unsung": 28767, + "strudel": 28768, + "jarrett": 28769, + "obrigadoo": 28770, + "gibbs": 28771, + "fitzgerald": 28772, + "imitating": 28773, + "waiit": 28774, + "ponzu": 28775, + "surpasses": 28776, + "egotistical": 28777, + "bham": 28778, + "swifts": 28779, + "tobi": 28780, + "ehe": 28781, + "sorter": 28782, + "gristle": 28783, + "trajo": 28784, + "profs": 28785, + "habis": 28786, + "kijken": 28787, + "yett": 28788, + "pasties": 28789, + "cousine": 28790, + "vivre": 28791, + "jodas": 28792, + "hickory": 28793, + "cook's": 28794, + "drafting": 28795, + "elves": 28796, + "masked": 28797, + "plats": 28798, + "kata": 28799, + "ravi": 28800, + "hindu": 28801, + "dir": 28802, + "myst": 28803, + "intermission": 28804, + "ciabatta": 28805, + "habs": 28806, + "pce": 28807, + "halp": 28808, + "heinlein": 28809, + "sergeant": 28810, + "#nothappy": 28811, + "stadiums": 28812, + "bendiciones": 28813, + "farthest": 28814, + "#countdown": 28815, + "spartans": 28816, + "cowgirls": 28817, + "truer": 28818, + "ronda": 28819, + "hwy": 28820, + "dontt": 28821, + "manually": 28822, + "cellulite": 28823, + "looved": 28824, + "#randomthought": 28825, + "bulge": 28826, + "ecco": 28827, + "barlow": 28828, + "#cutie": 28829, + "idiot's": 28830, + "roto": 28831, + "btchs": 28832, + "talon": 28833, + "hourly": 28834, + "getn": 28835, + "abdul": 28836, + "vendetta": 28837, + "tadi": 28838, + "seater": 28839, + "morrisons": 28840, + "davies": 28841, + "hunch": 28842, + "anis": 28843, + "pla": 28844, + "pana": 28845, + "harambe": 28846, + "jugak": 28847, + "ayiee": 28848, + "bolas": 28849, + "#idol": 28850, + "hornets": 28851, + "margin": 28852, + "margs": 28853, + "esperanza": 28854, + "haba": 28855, + "divo": 28856, + "combines": 28857, + "poisonous": 28858, + "potluck": 28859, + "fittest": 28860, + "snip": 28861, + "armband": 28862, + "buncha": 28863, + "powering": 28864, + "elusive": 28865, + "taemin": 28866, + "kesinlikle": 28867, + "treasury": 28868, + "kellin": 28869, + "sundaes": 28870, + "nori": 28871, + "accomodating": 28872, + "beez": 28873, + "euh": 28874, + "#tl": 28875, + "mailman": 28876, + "quito": 28877, + "organising": 28878, + "tayy": 28879, + "=]": 28880, + "tranquil": 28881, + "tracksuit": 28882, + "negatively": 28883, + "vomited": 28884, + "sala": 28885, + "#hurry": 28886, + "hahahhah": 28887, + "firecracker": 28888, + "pablum": 28889, + "charcuterie": 28890, + "offseason": 28891, + "yoshi": 28892, + "goingg": 28893, + "dcc": 28894, + "foreplay": 28895, + "mhz": 28896, + "typhoon": 28897, + "ricky's": 28898, + "evicted": 28899, + "fritz": 28900, + "aida": 28901, + "cle": 28902, + "onsie": 28903, + "hustlin": 28904, + "assessments": 28905, + "casey's": 28906, + "daquan": 28907, + "oan": 28908, + "equipo": 28909, + "wishlist": 28910, + "did'nt": 28911, + "limon": 28912, + "infiniti": 28913, + "ribbons": 28914, + "beaters": 28915, + "tucking": 28916, + "mimis": 28917, + "territorial": 28918, + "casualty": 28919, + "musiq": 28920, + "snm": 28921, + "hammers": 28922, + "santa's": 28923, + "harrowing": 28924, + "#nothanks": 28925, + "nx": 28926, + "ointment": 28927, + "rally's": 28928, + "baeless": 28929, + "mumble": 28930, + "aspirin": 28931, + "waken": 28932, + "flamed": 28933, + "bono": 28934, + "eterno": 28935, + "cantonese": 28936, + "lager": 28937, + "intrusive": 28938, + "sto": 28939, + "beeps": 28940, + "jeu": 28941, + "trel": 28942, + "morphe": 28943, + "enero": 28944, + "bargin": 28945, + "haihh": 28946, + "hilar": 28947, + "hf": 28948, + "adapters": 28949, + "teyana": 28950, + "maxed": 28951, + "sammee": 28952, + "inquiry": 28953, + "prophecies": 28954, + "chaton": 28955, + "warcraft": 28956, + "trynaa": 28957, + "juwan": 28958, + "washers": 28959, + "ppl's": 28960, + "haiku": 28961, + "taytay": 28962, + "shinin": 28963, + "siwon": 28964, + "tenderness": 28965, + "obsolescence": 28966, + "earnest": 28967, + "saay": 28968, + "anons": 28969, + "embedded": 28970, + "hotbox": 28971, + "zain": 28972, + "moanin": 28973, + "upperclassmen": 28974, + "brigadeiro": 28975, + "screamo": 28976, + "unbelieveable": 28977, + "mfkas": 28978, + "folly": 28979, + "wowzers": 28980, + "feline": 28981, + "glitz": 28982, + "#besties": 28983, + "thankkss": 28984, + "spyware": 28985, + "fae": 28986, + "nigth": 28987, + "frapp": 28988, + "dido": 28989, + "ptddrr": 28990, + "gobble": 28991, + "ctfup": 28992, + "tumba": 28993, + "jss": 28994, + "centric": 28995, + "fleeky": 28996, + "#tune": 28997, + "panes": 28998, + "kimmel": 28999, + "webber": 29000, + "nicotine": 29001, + "rudee": 29002, + "#ffback": 29003, + "acquire": 29004, + "tailored": 29005, + "quis": 29006, + "djing": 29007, + "ahwatukee": 29008, + "tonio": 29009, + "beezy": 29010, + "cov": 29011, + "dangling": 29012, + "trenches": 29013, + "uninformative": 29014, + "iguana": 29015, + "flexi": 29016, + "kourt": 29017, + "#dubnation": 29018, + "hamburg": 29019, + "tagaytay": 29020, + "countryside": 29021, + "kdrama": 29022, + "blastin": 29023, + "wzajemnie": 29024, + "perri": 29025, + "purdue": 29026, + "grinning": 29027, + "goddaughter": 29028, + "popeye's": 29029, + "christmassy": 29030, + "cantar": 29031, + "cpk": 29032, + "fahrenheit": 29033, + "exactamente": 29034, + "stationed": 29035, + "roni": 29036, + "trove": 29037, + "dps": 29038, + "restoring": 29039, + "#nice": 29040, + "petco": 29041, + "upped": 29042, + "buscar": 29043, + "chivas": 29044, + "masha": 29045, + "keon": 29046, + "plaque": 29047, + "hambree": 29048, + "#luckygirl": 29049, + "cmu": 29050, + "lolrt": 29051, + "slog": 29052, + "tish": 29053, + "dermatologist": 29054, + "shootout": 29055, + "predecessor": 29056, + "davey": 29057, + "oie": 29058, + "celebrates": 29059, + "esme": 29060, + "madonna's": 29061, + "hermes": 29062, + "entera": 29063, + "randi": 29064, + "#aintnobodygottimeforthat": 29065, + "#notreally": 29066, + "girlyy": 29067, + "#youdabest": 29068, + "uou": 29069, + "moll": 29070, + "jayne": 29071, + "richness": 29072, + "deceptively": 29073, + "brahms": 29074, + "laurent": 29075, + "unspoken": 29076, + "credited": 29077, + "peppercorn": 29078, + "webkinz": 29079, + "viu": 29080, + "shredding": 29081, + "bia": 29082, + "polemic": 29083, + "#letsdothis": 29084, + "toasts": 29085, + "pioneers": 29086, + "dahlia": 29087, + "jordi": 29088, + "robber": 29089, + "lowell": 29090, + "phineas": 29091, + "sociable": 29092, + "urm": 29093, + "orgullosa": 29094, + "henn": 29095, + "rufus": 29096, + "goodyear": 29097, + "#badass": 29098, + "bitxhes": 29099, + "calorr": 29100, + "railway": 29101, + "nicaragua": 29102, + "#hello": 29103, + "stretchy": 29104, + "pedestal": 29105, + "negotiate": 29106, + "chegou": 29107, + "wkwkwk": 29108, + "pores": 29109, + "collars": 29110, + "embassy": 29111, + "cooties": 29112, + "xb": 29113, + "nautica": 29114, + "pera": 29115, + "mostest": 29116, + "shuttles": 29117, + "lukas": 29118, + "dommage": 29119, + "platforms": 29120, + "feck": 29121, + "domination": 29122, + "basura": 29123, + "relegated": 29124, + "blanked": 29125, + "oates": 29126, + "expertly": 29127, + "altitude": 29128, + "#happysunday": 29129, + "flaking": 29130, + "tilly": 29131, + "shortbread": 29132, + "llamo": 29133, + "#the100": 29134, + "exposes": 29135, + "debra": 29136, + "oks": 29137, + "linguini": 29138, + "distributor": 29139, + "uncovered": 29140, + "jbl": 29141, + "loafers": 29142, + "guage": 29143, + "boyfie": 29144, + "tenant": 29145, + "wonky": 29146, + "mopping": 29147, + "sever": 29148, + "#soblessed": 29149, + "blossoms": 29150, + "speakerphone": 29151, + "colony": 29152, + "morphine": 29153, + "overplayed": 29154, + "ruffles": 29155, + "zimmer": 29156, + "pauses": 29157, + "stub": 29158, + "manure": 29159, + "usability": 29160, + "showerhead": 29161, + "announces": 29162, + "tierd": 29163, + "#theoriginals": 29164, + "meri": 29165, + "sores": 29166, + "#blocked": 29167, + "annyeong": 29168, + "specialize": 29169, + "superbad": 29170, + "coe": 29171, + "rissa": 29172, + "stubble": 29173, + "scammer": 29174, + "definitley": 29175, + "samm": 29176, + "septiembre": 29177, + "bootiful": 29178, + "flurry": 29179, + "oregano's": 29180, + "arriver": 29181, + "shields": 29182, + "lbj": 29183, + "abominable": 29184, + "unload": 29185, + "silliest": 29186, + "wy": 29187, + "crumbly": 29188, + "calmer": 29189, + "uri": 29190, + "interception": 29191, + "recents": 29192, + "passages": 29193, + "knifes": 29194, + "mcgee": 29195, + "bicep": 29196, + "umd": 29197, + "fuxkin": 29198, + "#bffs": 29199, + "seagull": 29200, + "marquise": 29201, + "ocho": 29202, + "usin": 29203, + "forra": 29204, + "karrueche": 29205, + "blokes": 29206, + "bobby's": 29207, + "romances": 29208, + "fav's": 29209, + "chorei": 29210, + "aligned": 29211, + "volvo": 29212, + "chattin": 29213, + "polos": 29214, + "eminem's": 29215, + "voluntarily": 29216, + "#disney": 29217, + "thiago": 29218, + "turkeys": 29219, + "dicc": 29220, + "coolpix": 29221, + "sensory": 29222, + "mukha": 29223, + "stunna": 29224, + "meyers": 29225, + "ferb": 29226, + "#nightmade": 29227, + "smp": 29228, + "cori": 29229, + "#beastmode": 29230, + "bagus": 29231, + "lazyy": 29232, + ".o.e.n.o": 29233, + "womans": 29234, + "jugando": 29235, + "sighting": 29236, + "dimmer": 29237, + "schnitzel": 29238, + "raft": 29239, + "weighted": 29240, + "rotors": 29241, + "lechon": 29242, + "unbearably": 29243, + "flattery": 29244, + "rock's": 29245, + "hideaway": 29246, + "hires": 29247, + "invading": 29248, + "cuidado": 29249, + "keira": 29250, + "bienn": 29251, + "calzones": 29252, + "kyle's": 29253, + "estudio": 29254, + "pounder": 29255, + "monotone": 29256, + "hadnt": 29257, + "#2014": 29258, + "chugged": 29259, + "someway": 29260, + "tamil": 29261, + "mondo": 29262, + "treadmills": 29263, + "lakewood": 29264, + "clarks": 29265, + "lds": 29266, + "dusting": 29267, + "receivers": 29268, + "#sub": 29269, + "alonso": 29270, + "heureusement": 29271, + "unconscious": 29272, + "#got": 29273, + "aquele": 29274, + "subways": 29275, + "ashame": 29276, + "goddesses": 29277, + "handel": 29278, + "practitioners": 29279, + "marg": 29280, + "coordination": 29281, + "mathis": 29282, + "#girlpower": 29283, + "bandanas": 29284, + "jed": 29285, + "hutch": 29286, + "selma": 29287, + "hymn": 29288, + "#sore": 29289, + "shutupp": 29290, + "westinghouse": 29291, + "nix": 29292, + "avalanche": 29293, + "gilmour": 29294, + "bethers": 29295, + "beastmode": 29296, + "sutton": 29297, + "vmas": 29298, + "medina": 29299, + "borin": 29300, + "turnip": 29301, + "#duh": 29302, + "banners": 29303, + "mummy's": 29304, + "manuals": 29305, + "jgn": 29306, + "mohammed": 29307, + "counselors": 29308, + "cooch": 29309, + "game's": 29310, + "idfk": 29311, + "referencing": 29312, + "lovelyy": 29313, + "carissa": 29314, + "frontal": 29315, + "significance": 29316, + "tupperware": 29317, + "dejen": 29318, + "agave": 29319, + "cad": 29320, + "footwear": 29321, + "olor": 29322, + "twan": 29323, + "ellas": 29324, + "songbook": 29325, + "croque": 29326, + "arii": 29327, + "hemp": 29328, + "graciously": 29329, + "viner": 29330, + "whenn": 29331, + "espanol": 29332, + "hex": 29333, + "danielle's": 29334, + "creases": 29335, + "unlikable": 29336, + "#hateit": 29337, + "hails": 29338, + "bossing": 29339, + "muhfucka": 29340, + "backfired": 29341, + "accusations": 29342, + "psychos": 29343, + "cath": 29344, + "gushers": 29345, + "curlers": 29346, + "antoine": 29347, + "alseep": 29348, + "birffday": 29349, + "manon": 29350, + "romania": 29351, + "ohwell": 29352, + "excercise": 29353, + "(=": 29354, + "movee": 29355, + "privately": 29356, + "hagan": 29357, + "cayla": 29358, + "gracefully": 29359, + "mcdreamy": 29360, + "detected": 29361, + "fingerprint": 29362, + "#classy": 29363, + "songlist": 29364, + "stein": 29365, + "thatd": 29366, + "ferrets": 29367, + "showdown": 29368, + "bookies": 29369, + "monies": 29370, + "culpable": 29371, + "reeked": 29372, + "uae": 29373, + "fifi": 29374, + "quadruple": 29375, + "celia": 29376, + "sinon": 29377, + "dink": 29378, + "tought": 29379, + "ebt": 29380, + "#heatnation": 29381, + "bete": 29382, + "cheekbones": 29383, + "#gorgeous": 29384, + "shellfish": 29385, + "sheath": 29386, + "ponce": 29387, + "rapport": 29388, + "sedona": 29389, + "bynes": 29390, + "ligo": 29391, + "dm'ed": 29392, + "fiebre": 29393, + "gringos": 29394, + "llab": 29395, + "i'ont": 29396, + "spooked": 29397, + "zim": 29398, + "#replytweet": 29399, + "debated": 29400, + "howell": 29401, + "backflip": 29402, + "perplexed": 29403, + "innacurate": 29404, + "darned": 29405, + "yates": 29406, + "ayesha": 29407, + "brownout": 29408, + "avent": 29409, + "wifes": 29410, + "malem": 29411, + "ponen": 29412, + "perseverance": 29413, + "novella": 29414, + "minsan": 29415, + "bellos": 29416, + "postcards": 29417, + "martin's": 29418, + "fuckedd": 29419, + "bodyy": 29420, + "grains": 29421, + "buee": 29422, + "oozing": 29423, + "capaz": 29424, + "piernas": 29425, + "miah": 29426, + "acca": 29427, + "#coffee": 29428, + "mosque": 29429, + "bethel": 29430, + "mindful": 29431, + "sweetener": 29432, + "quelle": 29433, + "rediscovered": 29434, + "bopping": 29435, + "kok": 29436, + "upton": 29437, + "brethren": 29438, + "pixel": 29439, + "sie": 29440, + "broiler": 29441, + "#noregrets": 29442, + "yesterdays": 29443, + "walrus": 29444, + "sti": 29445, + "pprt": 29446, + "beaux": 29447, + "d'angelo": 29448, + "chiste": 29449, + "staap": 29450, + "homeschooled": 29451, + "villains": 29452, + "halaa": 29453, + "kebabs": 29454, + "sopa": 29455, + "manilow": 29456, + "vg": 29457, + "annette": 29458, + "kumar": 29459, + "hommie": 29460, + "medicines": 29461, + "freebie": 29462, + "carlie": 29463, + "adele's": 29464, + "hodge": 29465, + "tarnished": 29466, + "pebble": 29467, + "staar": 29468, + "offending": 29469, + "deseo": 29470, + "#prayforme": 29471, + "burnley": 29472, + "annoyingg": 29473, + "transcript": 29474, + "sandman": 29475, + "textured": 29476, + "swamped": 29477, + "charl": 29478, + "amoureux": 29479, + "skinner": 29480, + "#ok": 29481, + "timmies": 29482, + "yie": 29483, + "obviamente": 29484, + "umuwi": 29485, + "periodically": 29486, + "virtuoso": 29487, + "aerobic": 29488, + "butty": 29489, + "#grind": 29490, + "mrt": 29491, + "lentils": 29492, + "racked": 29493, + "paring": 29494, + "cringy": 29495, + "woohh": 29496, + "lawnmower": 29497, + "mantis": 29498, + "pode": 29499, + "lifter": 29500, + "cashews": 29501, + "sweett": 29502, + "oow": 29503, + "everybodys": 29504, + "travail": 29505, + "llh": 29506, + "breather": 29507, + "preworkout": 29508, + "motivators": 29509, + "#freezing": 29510, + "dryy": 29511, + "nug": 29512, + "frig": 29513, + "impresionante": 29514, + "shootings": 29515, + "emphasize": 29516, + "turnovers": 29517, + "imports": 29518, + "sheena": 29519, + "junio": 29520, + "assets": 29521, + "cuida": 29522, + "stai": 29523, + "einsteins": 29524, + "lynne": 29525, + "conte": 29526, + "suttin": 29527, + "becks": 29528, + "examine": 29529, + "deu": 29530, + "allyson": 29531, + "cumming": 29532, + "chata": 29533, + "mario's": 29534, + "abouts": 29535, + "conflicting": 29536, + "quench": 29537, + "#25": 29538, + "otrat": 29539, + "primetime": 29540, + "dz": 29541, + "corolla": 29542, + "crumbling": 29543, + "novelas": 29544, + "concluded": 29545, + "gymnast": 29546, + "tramps": 29547, + "good'morning": 29548, + "tomrrow": 29549, + "admissions": 29550, + "vortex": 29551, + "fairs": 29552, + "gist": 29553, + "astray": 29554, + "appendix": 29555, + "twaddle": 29556, + "pupils": 29557, + "lonngg": 29558, + "landfill": 29559, + "tok": 29560, + "babu": 29561, + "whoah": 29562, + "qa": 29563, + "archives": 29564, + "kiks": 29565, + "substitutions": 29566, + "bombers": 29567, + "amamos": 29568, + "mistreated": 29569, + "debacle": 29570, + "nearer": 29571, + "rigid": 29572, + "#iseeyou": 29573, + "thiis": 29574, + "christening": 29575, + "hahhah": 29576, + "plausible": 29577, + "hams": 29578, + "yip": 29579, + "handbags": 29580, + "dade": 29581, + "smt": 29582, + "#imagine": 29583, + "scummy": 29584, + "cylinder": 29585, + "maisie": 29586, + "shoestring": 29587, + "jb's": 29588, + "arthur's": 29589, + "peking": 29590, + "your's": 29591, + "denies": 29592, + "buckwild": 29593, + "tds": 29594, + "huntin": 29595, + "primas": 29596, + "sampai": 29597, + "relieves": 29598, + "harryy": 29599, + "siberian": 29600, + "#comehome": 29601, + "axis": 29602, + "coronation": 29603, + "kiko": 29604, + "backdrop": 29605, + "baxter": 29606, + "dwelling": 29607, + "twigs": 29608, + "#lastrt": 29609, + "owt": 29610, + "onlife": 29611, + "spacey": 29612, + "meryl": 29613, + "#sorryboutit": 29614, + "interestingly": 29615, + "sugaa": 29616, + "abuser": 29617, + "jesuss": 29618, + "pantera": 29619, + "intermittent": 29620, + "specialized": 29621, + "muting": 29622, + "beriso": 29623, + "premieres": 29624, + "abruptly": 29625, + "idt": 29626, + "noway": 29627, + "mwahaha": 29628, + "sukses": 29629, + "hungrier": 29630, + "hind": 29631, + "reassured": 29632, + "#headache": 29633, + "julissa": 29634, + "unsuitable": 29635, + "wrd": 29636, + "fouled": 29637, + "freshmans": 29638, + "kacey": 29639, + "#queen": 29640, + "flatbush": 29641, + "lovies": 29642, + "twitterr": 29643, + "evergreen": 29644, + "olay": 29645, + "haier": 29646, + "makeout": 29647, + "collaborate": 29648, + "imperfection": 29649, + "sah": 29650, + "beth's": 29651, + "#monday": 29652, + "votre": 29653, + "peele": 29654, + "strugglin": 29655, + "#winner": 29656, + "mik": 29657, + "ulet": 29658, + "quinta": 29659, + "varying": 29660, + "stretcher": 29661, + "garret": 29662, + "ilang": 29663, + "capricorns": 29664, + "frijoles": 29665, + "aish": 29666, + "prac": 29667, + "wernt": 29668, + "erection": 29669, + "#gf": 29670, + "warrenty": 29671, + "erg": 29672, + "stalled": 29673, + "mcmuffin": 29674, + "pbb": 29675, + "scams": 29676, + "karon": 29677, + "redbone": 29678, + "payless": 29679, + "distracts": 29680, + "daley": 29681, + "oopsie": 29682, + "jose's": 29683, + "affleck": 29684, + "grated": 29685, + "alv": 29686, + "dow": 29687, + "#chicago": 29688, + "#iheartawards": 29689, + "donghae": 29690, + "loveya": 29691, + "vsf": 29692, + "exile": 29693, + "omissions": 29694, + ":\"(": 29695, + "ziam": 29696, + "rushes": 29697, + "alarming": 29698, + "mirando": 29699, + "hhn": 29700, + "ageless": 29701, + "britney's": 29702, + "pega": 29703, + "pacquiao": 29704, + "collie": 29705, + "hao": 29706, + "storybook": 29707, + "tcm": 29708, + "triceps": 29709, + "owell": 29710, + "pusher": 29711, + "corkscrew": 29712, + "saki": 29713, + "leanin": 29714, + "mtl": 29715, + "#beyonce": 29716, + "rectify": 29717, + "morena": 29718, + "sexing": 29719, + "fundido": 29720, + "keyed": 29721, + "bwahaha": 29722, + "aigoo": 29723, + "judd": 29724, + "tins": 29725, + "onika": 29726, + "brii": 29727, + "sensors": 29728, + "nineteen": 29729, + "mots": 29730, + "boog": 29731, + "nemesis": 29732, + "rello": 29733, + "magick": 29734, + "hoodrats": 29735, + "daphne": 29736, + "huu": 29737, + "anya": 29738, + "mics": 29739, + "yourss": 29740, + "nipsey": 29741, + "decadence": 29742, + "torque": 29743, + "braver": 29744, + "#cold": 29745, + "#mindblown": 29746, + "delphi": 29747, + "p.e.": 29748, + "rebellion": 29749, + "viruses": 29750, + "scoreboard": 29751, + "elevation": 29752, + "directory": 29753, + "#rebel": 29754, + "staay": 29755, + "daebak": 29756, + "jarring": 29757, + "hurricanes": 29758, + "excruciatingly": 29759, + "pci": 29760, + "somerset": 29761, + "#nolie": 29762, + "ternura": 29763, + "yelping": 29764, + "pse": 29765, + "waverly": 29766, + "roundabout": 29767, + "nyny": 29768, + "bettering": 29769, + "methinks": 29770, + "strollers": 29771, + "riker": 29772, + "kiked": 29773, + "jajajaa": 29774, + "voto": 29775, + "durag": 29776, + "endured": 29777, + "pilar": 29778, + "metaphors": 29779, + "dole": 29780, + "romantics": 29781, + "dacc": 29782, + "punkin": 29783, + "dii": 29784, + "i.d.": 29785, + "lolla": 29786, + "splashing": 29787, + "shar": 29788, + "outcast": 29789, + "turnoff": 29790, + "muhfuckas": 29791, + "thorns": 29792, + "zooming": 29793, + "yuma": 29794, + "butted": 29795, + "ady": 29796, + "trata": 29797, + "jenna's": 29798, + "#bringiton": 29799, + "abg": 29800, + "htgawm": 29801, + "succeeding": 29802, + "jake's": 29803, + "naysayers": 29804, + "highlighting": 29805, + "volkswagen": 29806, + "buzzkill": 29807, + "saucepan": 29808, + "skagen": 29809, + "calculations": 29810, + "align": 29811, + "fogo": 29812, + "unk": 29813, + "team's": 29814, + "analytical": 29815, + "unsee": 29816, + "volvi": 29817, + "sevyn": 29818, + "gomawo": 29819, + "cstat": 29820, + "lao": 29821, + "kitschy": 29822, + "cek": 29823, + "masih": 29824, + "sara's": 29825, + "nitro": 29826, + "overheated": 29827, + "tso's": 29828, + "francesca": 29829, + "putangina": 29830, + "ashell": 29831, + "sectional": 29832, + "murky": 29833, + "overjoyed": 29834, + "ciaoo": 29835, + "garlicky": 29836, + "dismay": 29837, + "dees": 29838, + "madres": 29839, + "kerri": 29840, + "mamie": 29841, + "westwood": 29842, + "sorcery": 29843, + "kyu": 29844, + "glob": 29845, + "altho": 29846, + "plating": 29847, + "hob": 29848, + "pediatric": 29849, + "#himym": 29850, + "baadd": 29851, + "hailing": 29852, + "loljk": 29853, + "cuzzy": 29854, + "armando": 29855, + "shrine": 29856, + "gmt": 29857, + "donner": 29858, + "neutron": 29859, + "forerunner": 29860, + "hilson": 29861, + "morales": 29862, + "huni": 29863, + "putos": 29864, + "cardigans": 29865, + "rq": 29866, + "tetris": 29867, + "mhhmm": 29868, + "overhaul": 29869, + "dropper": 29870, + "mota": 29871, + "tqm": 29872, + "instigator": 29873, + "tonya": 29874, + "overcharge": 29875, + "zlatan": 29876, + "malfunctioned": 29877, + "juliette": 29878, + "bondi": 29879, + "ehehe": 29880, + "ghostbusters": 29881, + "displeasure": 29882, + "vests": 29883, + "#gohawks": 29884, + "staged": 29885, + "testicles": 29886, + "arranging": 29887, + "altima": 29888, + "wham": 29889, + "jane's": 29890, + "caine": 29891, + "gouda": 29892, + "shotting": 29893, + "svp": 29894, + "dsc": 29895, + "boyfriendd": 29896, + "overwritten": 29897, + "bellas": 29898, + "holii": 29899, + "smooches": 29900, + "ciee": 29901, + "esc": 29902, + "awa": 29903, + "bustling": 29904, + "furnace": 29905, + "boored": 29906, + "robertson": 29907, + "weirdd": 29908, + "oor": 29909, + "galbi": 29910, + "minerals": 29911, + "ocean's": 29912, + "doodles": 29913, + "emojiss": 29914, + "cimer": 29915, + "stomache": 29916, + "#twinning": 29917, + "ergonomics": 29918, + "puhlease": 29919, + "cabanas": 29920, + "funyuns": 29921, + "rosario": 29922, + "nwa": 29923, + "llevar": 29924, + "chegueei": 29925, + "mooi": 29926, + "conclude": 29927, + "bulgaria": 29928, + "assurance": 29929, + "#blessup": 29930, + "mahler": 29931, + "digg": 29932, + "cakey": 29933, + "bootyful": 29934, + "traction": 29935, + "raccoons": 29936, + "miscommunication": 29937, + "kwon": 29938, + "embroidery": 29939, + "leos": 29940, + "onstage": 29941, + "sectionals": 29942, + "stromboli": 29943, + "yhuu": 29944, + "labyuu": 29945, + "nnoo": 29946, + "prowl": 29947, + "dierks": 29948, + "baymax": 29949, + "lumineers": 29950, + "outro": 29951, + "ger": 29952, + "vuelva": 29953, + "#nbd": 29954, + "daja": 29955, + "fot": 29956, + "dunbar": 29957, + "combining": 29958, + "archery": 29959, + "pesky": 29960, + "hiccup": 29961, + "agonizing": 29962, + "brotherr": 29963, + "kenn": 29964, + "heartland": 29965, + "muaah": 29966, + "maserati": 29967, + "#lovinglife": 29968, + "hurdle": 29969, + "heures": 29970, + "homedics": 29971, + "unisex": 29972, + "rearranging": 29973, + "nyan": 29974, + "vonte": 29975, + "argumentative": 29976, + "camelot": 29977, + "heaviest": 29978, + "outcha": 29979, + "gsw": 29980, + "#team": 29981, + "wiley": 29982, + "chachi": 29983, + "dementia": 29984, + "carli": 29985, + "woodward": 29986, + "tia's": 29987, + "bops": 29988, + "nona": 29989, + "mobb": 29990, + "amuses": 29991, + "rt'ed": 29992, + "woaahh": 29993, + "odia": 29994, + "concessions": 29995, + "freakiest": 29996, + "teacup": 29997, + "ramones": 29998, + "birches": 29999, + "hanged": 30000, + "penal": 30001, + "bruising": 30002, + "fabrics": 30003, + "clep": 30004, + "callers": 30005, + "tommarow": 30006, + "processes": 30007, + "absorbent": 30008, + "leona": 30009, + "fireflies": 30010, + "lillian": 30011, + "clipping": 30012, + "#nochill": 30013, + "thro": 30014, + "improperly": 30015, + "cheif": 30016, + "haber": 30017, + "cabrona": 30018, + "pacino": 30019, + "bvb": 30020, + "tuts": 30021, + "hermione": 30022, + "supplemental": 30023, + "happines": 30024, + "petra": 30025, + "mabait": 30026, + "pecho": 30027, + "phill": 30028, + "digitally": 30029, + "triumphs": 30030, + "extending": 30031, + "pasamos": 30032, + "semoga": 30033, + "fendi": 30034, + "serbia": 30035, + "sumin": 30036, + "#yayy": 30037, + "brads": 30038, + "insomniacs": 30039, + "kickball": 30040, + "fours": 30041, + "justinn": 30042, + "bee's": 30043, + "satan's": 30044, + "collegiate": 30045, + "suspensful": 30046, + "accomodate": 30047, + "scouse": 30048, + "gai": 30049, + "roxio": 30050, + "chappelle": 30051, + "marseille": 30052, + "reincarnation": 30053, + "hyatt": 30054, + "dogma": 30055, + "diabetics": 30056, + "paprika": 30057, + "queuing": 30058, + "pontiac": 30059, + "jarred": 30060, + "occurs": 30061, + "gouge": 30062, + "hackneyed": 30063, + "critter": 30064, + "gumball": 30065, + "ugma": 30066, + "thanxx": 30067, + "#bars": 30068, + "fcuk": 30069, + "gob": 30070, + "reve": 30071, + "rainn": 30072, + "phelps": 30073, + "charismatic": 30074, + "pogo": 30075, + "rubbin": 30076, + "bursts": 30077, + "fsee": 30078, + "trot": 30079, + "merits": 30080, + "noteworthy": 30081, + "undertaker": 30082, + "faulkner": 30083, + "detached": 30084, + "inconsistency": 30085, + "alesso": 30086, + "randomness": 30087, + "wassgood": 30088, + "pahahaha": 30089, + "abducted": 30090, + "cocina": 30091, + "jammy": 30092, + "teasers": 30093, + "jabs": 30094, + "marzo": 30095, + "interesante": 30096, + "#yuck": 30097, + "cecil": 30098, + "koreans": 30099, + "lo's": 30100, + "ghee": 30101, + "melville": 30102, + "roun": 30103, + "invaded": 30104, + "rocco": 30105, + "noticeably": 30106, + "pato": 30107, + "illy": 30108, + "turk": 30109, + "stoped": 30110, + "cmt": 30111, + "riss": 30112, + "moderation": 30113, + "gaawd": 30114, + "dosage": 30115, + ";*{": 30116, + "starfish": 30117, + "argues": 30118, + "broward": 30119, + "mz": 30120, + "stevia": 30121, + "hugee": 30122, + "#revenge": 30123, + "bibliography": 30124, + "pitas": 30125, + "diluted": 30126, + "ouhh": 30127, + "smurfs": 30128, + "waived": 30129, + "reservoir": 30130, + "shrinks": 30131, + "pheww": 30132, + "frauding": 30133, + "carole": 30134, + "dorito": 30135, + "indicating": 30136, + "rockies": 30137, + "dildos": 30138, + "dan's": 30139, + "quisiera": 30140, + "psc": 30141, + "symbolism": 30142, + "ucl": 30143, + "patter": 30144, + "sonya": 30145, + "ritas": 30146, + "marisol": 30147, + "frederick": 30148, + "fstow": 30149, + "gunners": 30150, + "cornish": 30151, + "geico": 30152, + "roswell": 30153, + "heartt": 30154, + "neek": 30155, + "id's": 30156, + "gue": 30157, + "wegmans": 30158, + "ramona": 30159, + "recuerdo": 30160, + "elly": 30161, + "salisbury": 30162, + "#girlcrush": 30163, + "unintentional": 30164, + "somemore": 30165, + "iff": 30166, + "mining": 30167, + "#itsreal": 30168, + "erghh": 30169, + "aubs": 30170, + "rigatoni": 30171, + "nman": 30172, + "siap": 30173, + "shemar": 30174, + "celestial": 30175, + "gonzales": 30176, + "gushing": 30177, + "grabee": 30178, + "twitterless": 30179, + "krispies": 30180, + "buyer's": 30181, + "colouring": 30182, + "dangers": 30183, + "convo's": 30184, + "geeky": 30185, + "pedir": 30186, + "dankjee": 30187, + "tell'em": 30188, + "jizz": 30189, + "soma": 30190, + "evr": 30191, + "arched": 30192, + "txtin": 30193, + "broker": 30194, + "symone": 30195, + "shakey": 30196, + "restarting": 30197, + "slurpees": 30198, + "architects": 30199, + "motherboard": 30200, + "workflow": 30201, + "olympia": 30202, + "heir": 30203, + "puppy's": 30204, + "pereza": 30205, + "mannered": 30206, + "oopps": 30207, + "triangles": 30208, + "dishonesty": 30209, + "relaxx": 30210, + "nitty": 30211, + "#nodaysoff": 30212, + "eveything": 30213, + "dweeb": 30214, + "#neversaynever": 30215, + "zipped": 30216, + "#foh": 30217, + "chika": 30218, + "translating": 30219, + "wan't": 30220, + "kaiden": 30221, + "comforts": 30222, + "lope": 30223, + "painn": 30224, + "graph": 30225, + "acquaintance": 30226, + "#youknowwhoyouare": 30227, + "nanite": 30228, + "jij": 30229, + "coppin": 30230, + "reeses": 30231, + "brigade": 30232, + "leakage": 30233, + "folklore": 30234, + "scrubbed": 30235, + "togetha": 30236, + "smol": 30237, + "besoin": 30238, + "outweigh": 30239, + "banker": 30240, + "cuticle": 30241, + "eonnie": 30242, + "boutiques": 30243, + "hormone": 30244, + "lyt": 30245, + "abbi": 30246, + "fugitive": 30247, + "vamoo": 30248, + "yor": 30249, + "zeros": 30250, + "maj": 30251, + "russe": 30252, + "backgrounds": 30253, + "aimlessly": 30254, + "leggoo": 30255, + "jogo": 30256, + "advising": 30257, + "amaya": 30258, + "wayment": 30259, + "einen": 30260, + "uon": 30261, + "strands": 30262, + "ccna": 30263, + "doon": 30264, + "rdy": 30265, + "heauxs": 30266, + "blackburn": 30267, + "twits": 30268, + "#bucketlist": 30269, + "gdi": 30270, + "modify": 30271, + "investments": 30272, + "febre": 30273, + "selina": 30274, + "nuestra": 30275, + "#payday": 30276, + "#nasty": 30277, + "pake": 30278, + "milano": 30279, + "zorra": 30280, + "#trump": 30281, + "proudest": 30282, + "coordinated": 30283, + "persistence": 30284, + "dirait": 30285, + "gim": 30286, + "midweek": 30287, + "buckley": 30288, + "uninstall": 30289, + "sonata": 30290, + "#weirdo": 30291, + "sustain": 30292, + "bustle": 30293, + "pressuring": 30294, + "#toomuch": 30295, + "tapatio": 30296, + "supergirl": 30297, + "cartier": 30298, + "schon": 30299, + "sherbet": 30300, + "t'was": 30301, + "niet": 30302, + "hunts": 30303, + "halos": 30304, + "leemos": 30305, + "herbo": 30306, + "rebelde": 30307, + "nyx": 30308, + "dificil": 30309, + "squirted": 30310, + "pyramids": 30311, + "cheesiest": 30312, + "chinito": 30313, + "greeter": 30314, + "rhythms": 30315, + "supervisors": 30316, + "urbana": 30317, + "yesturday": 30318, + "duffy": 30319, + "wildfire": 30320, + "memang": 30321, + "bela": 30322, + "walton": 30323, + "visibly": 30324, + "ownn": 30325, + "mame": 30326, + "matcha": 30327, + "happs": 30328, + "willies": 30329, + "integrated": 30330, + "palettes": 30331, + "tivoli": 30332, + "yest": 30333, + "skewed": 30334, + "nicholson": 30335, + "lunchables": 30336, + "giles": 30337, + "saucer": 30338, + "gangstas": 30339, + "chinchilla": 30340, + "poblano": 30341, + "suzuki": 30342, + "phil's": 30343, + "daija": 30344, + "weaving": 30345, + "ciera": 30346, + "topical": 30347, + "fonder": 30348, + "unedited": 30349, + "guerra": 30350, + "osso": 30351, + "wheeled": 30352, + "mahh": 30353, + "tortellini": 30354, + "bellybutton": 30355, + "pervs": 30356, + "nan's": 30357, + "gotchaa": 30358, + "buttercream": 30359, + "antojo": 30360, + "flicker": 30361, + "masterwork": 30362, + "eyelid": 30363, + "acidic": 30364, + "template": 30365, + "lila": 30366, + "thing's": 30367, + "biddies": 30368, + "atall": 30369, + "cheech": 30370, + "diffuser": 30371, + "mora": 30372, + "tlking": 30373, + "zag": 30374, + "novelist": 30375, + "mongo": 30376, + "lish": 30377, + "qs": 30378, + "contestar": 30379, + "hicieron": 30380, + "chilln": 30381, + "rankings": 30382, + "kanta": 30383, + "acorde": 30384, + "marsha": 30385, + "multitude": 30386, + "groovin": 30387, + "translates": 30388, + "lured": 30389, + "chilaquiles": 30390, + "allure": 30391, + "markus": 30392, + "fmll": 30393, + "blazed": 30394, + "florist": 30395, + "patty's": 30396, + "lyn": 30397, + "#abouttime": 30398, + "hahahaaha": 30399, + "reeds": 30400, + "torturous": 30401, + "#sosweet": 30402, + "flossing": 30403, + "cdfuu": 30404, + "wheelin": 30405, + "phenominal": 30406, + "tigger": 30407, + "huuh": 30408, + "travolta": 30409, + "kyaa": 30410, + "me's": 30411, + "skanky": 30412, + "monarch": 30413, + "url": 30414, + "wrongg": 30415, + "muffled": 30416, + "thun": 30417, + "snowballs": 30418, + "despierta": 30419, + "chocolatey": 30420, + "osama": 30421, + "#saveme": 30422, + "realisation": 30423, + "anchovies": 30424, + "heinz": 30425, + "newava": 30426, + "raf": 30427, + "sweaar": 30428, + "sza": 30429, + "loaves": 30430, + "nightingale": 30431, + "swiftly": 30432, + "babeh": 30433, + "werewolves": 30434, + "hoya": 30435, + "focaccia": 30436, + "particles": 30437, + "gor": 30438, + "absolut": 30439, + "mooh": 30440, + "depicted": 30441, + "jockey": 30442, + "dissolve": 30443, + "almuerzo": 30444, + "ludlum": 30445, + "flowery": 30446, + "pondering": 30447, + "mel's": 30448, + "#youtube": 30449, + "symphonic": 30450, + "streisand": 30451, + "highchair": 30452, + "goodfellas": 30453, + "unis": 30454, + "usd": 30455, + "muthafucking": 30456, + "#nfl": 30457, + "guesses": 30458, + "epidemic": 30459, + "rafting": 30460, + "bombarded": 30461, + "restraint": 30462, + "cambiar": 30463, + "pura": 30464, + "anesthesia": 30465, + "nivel": 30466, + "bengali": 30467, + "saxon": 30468, + "gaya": 30469, + "#prayforpalestine": 30470, + "#usa": 30471, + "fingerprints": 30472, + "beaumont": 30473, + "chiquita": 30474, + "aztec": 30475, + "ebaa": 30476, + "guuys": 30477, + "#thissucks": 30478, + "hansen": 30479, + "daughtry": 30480, + "bekah": 30481, + "grout": 30482, + "richly": 30483, + "redid": 30484, + "smarties": 30485, + "kailan": 30486, + "dealin": 30487, + "sarai": 30488, + "litre": 30489, + "#risingstar": 30490, + "ssh": 30491, + "polishes": 30492, + "judo": 30493, + "forwarded": 30494, + "pelicans": 30495, + "winnipeg": 30496, + "airhead": 30497, + "explored": 30498, + "#nerd": 30499, + "figs": 30500, + "embarassment": 30501, + "joie": 30502, + "ornaments": 30503, + "serenading": 30504, + "fulfillment": 30505, + "lps": 30506, + "canse": 30507, + "ferrero": 30508, + "abuelita": 30509, + "uplift": 30510, + "simpin": 30511, + "dribbling": 30512, + "yesenia": 30513, + "nikkas": 30514, + "preoccupied": 30515, + "frankie's": 30516, + "trump's": 30517, + "fernandez": 30518, + "urges": 30519, + "nightshift": 30520, + "discreet": 30521, + "hornet": 30522, + "olsen": 30523, + "alrd": 30524, + "cognitive": 30525, + "holistic": 30526, + "oxtails": 30527, + "continuity": 30528, + "#sadlife": 30529, + "childbirth": 30530, + "sikit": 30531, + "kos": 30532, + "autocorrected": 30533, + "#giveaway": 30534, + "emmerdale": 30535, + "wetting": 30536, + "excepted": 30537, + "justification": 30538, + "thouu": 30539, + "gagged": 30540, + "rutina": 30541, + "clasico": 30542, + "pucha": 30543, + "outlaws": 30544, + "deepika": 30545, + "bertha": 30546, + "squint": 30547, + "lange": 30548, + "khalid": 30549, + "why're": 30550, + "stump": 30551, + "roped": 30552, + "scammers": 30553, + "wakker": 30554, + "unwelcome": 30555, + "tehehe": 30556, + "btc": 30557, + "kol": 30558, + "traveller": 30559, + "escalators": 30560, + "sevenfold": 30561, + "smooch": 30562, + "reunions": 30563, + "arty": 30564, + "rattling": 30565, + "whatsup": 30566, + "addams": 30567, + "archive": 30568, + "mortar": 30569, + "repairing": 30570, + "abah": 30571, + "motd": 30572, + "#theflash": 30573, + "tulips": 30574, + "crutch": 30575, + "awkwardd": 30576, + "ganging": 30577, + "shoyu": 30578, + "regain": 30579, + "ottoman": 30580, + "#oth": 30581, + "periodic": 30582, + "sharper": 30583, + "goalkeeper": 30584, + "maxell": 30585, + "trapper": 30586, + "peur": 30587, + "tino": 30588, + "everclear": 30589, + "fowler": 30590, + "#gay": 30591, + "issac": 30592, + "bittie": 30593, + "ramirez": 30594, + "ott": 30595, + "#bethanymotagiveaway": 30596, + "henckels": 30597, + "salinas": 30598, + "schemes": 30599, + "muller": 30600, + "hahahahaah": 30601, + "nexus": 30602, + "werid": 30603, + "frugal": 30604, + "duchess": 30605, + "batches": 30606, + "cutty": 30607, + "faithfulness": 30608, + "nair": 30609, + "bithday": 30610, + "mirar": 30611, + "lunchbox": 30612, + "compressed": 30613, + "bowled": 30614, + "validate": 30615, + "duster": 30616, + "bain": 30617, + "crys": 30618, + "splatter": 30619, + "sturridge": 30620, + "rtrt": 30621, + "agaain": 30622, + "organizational": 30623, + "#walkingdead": 30624, + "pierdo": 30625, + "thyroid": 30626, + "thugging": 30627, + "ajax": 30628, + "mittens": 30629, + "#dream": 30630, + "entro": 30631, + "mercer": 30632, + "arepas": 30633, + "gueule": 30634, + "cibo": 30635, + "overlong": 30636, + "bur": 30637, + "salaam": 30638, + "georgina": 30639, + "franky": 30640, + "theodore": 30641, + "shabba": 30642, + "spared": 30643, + "keely": 30644, + "muster": 30645, + "laminate": 30646, + "edad": 30647, + "alwaays": 30648, + "soninho": 30649, + "kun": 30650, + "cabernet": 30651, + "margot": 30652, + "swarm": 30653, + "#mixedemotions": 30654, + "passa": 30655, + "substitutes": 30656, + "coolan": 30657, + "wifing": 30658, + "sice": 30659, + "clifton": 30660, + "moda": 30661, + "untitled": 30662, + "skyrim": 30663, + "anto": 30664, + "nichols": 30665, + "doble": 30666, + "goggle": 30667, + "taan": 30668, + "huey": 30669, + "moring": 30670, + "playy": 30671, + "meeks": 30672, + "plateau": 30673, + "terrain": 30674, + "pettiest": 30675, + "toc": 30676, + "albertsons": 30677, + "healthiest": 30678, + "ninguna": 30679, + "disasters": 30680, + "somethingg": 30681, + "fantasic": 30682, + "merge": 30683, + "fleming": 30684, + "sayn": 30685, + "kershaw": 30686, + "halla": 30687, + "geno": 30688, + "meticulous": 30689, + "relapse": 30690, + "fambam": 30691, + "sprinklers": 30692, + "piso": 30693, + "fantastico": 30694, + "zest": 30695, + "#morning": 30696, + "alkaline": 30697, + "pseudoscience": 30698, + "tko": 30699, + "arise": 30700, + "righ": 30701, + "vig": 30702, + "allah's": 30703, + "viernees": 30704, + "buzzfeed": 30705, + "#mvp": 30706, + "pvc": 30707, + "hoopla": 30708, + "honky": 30709, + "slapstick": 30710, + "sinigang": 30711, + "quickbooks": 30712, + "poc": 30713, + "marmite": 30714, + "yc": 30715, + "catalina": 30716, + "goodlooking": 30717, + "spasms": 30718, + "junta": 30719, + "ridee": 30720, + "ros": 30721, + "scots": 30722, + "davao": 30723, + "brentwood": 30724, + "incorporate": 30725, + "#c": 30726, + "shorten": 30727, + "collages": 30728, + "biko": 30729, + "famu": 30730, + "kelsey's": 30731, + "anthems": 30732, + "soit": 30733, + "mybad": 30734, + "winging": 30735, + "lipton": 30736, + "svt": 30737, + "zum": 30738, + "omy": 30739, + "xa": 30740, + "#adorable": 30741, + "aguero": 30742, + "southend": 30743, + "debby": 30744, + "immer": 30745, + "thrust": 30746, + "avait": 30747, + "#loveyouguys": 30748, + "k'd": 30749, + "appts": 30750, + "electrifying": 30751, + "unappreciative": 30752, + "mobility": 30753, + "depart": 30754, + "heartbeats": 30755, + "beowulf": 30756, + "gcses": 30757, + "flabbergasted": 30758, + "cravin": 30759, + "escucha": 30760, + "hallie": 30761, + "hath": 30762, + "unmotivated": 30763, + "expedia": 30764, + "matta": 30765, + "legging": 30766, + "rhs": 30767, + "chillax": 30768, + "#bestdayever": 30769, + "melina": 30770, + "piscina": 30771, + "passions": 30772, + "carribean": 30773, + "toga": 30774, + "overworked": 30775, + "shortcut": 30776, + "sata": 30777, + "heell": 30778, + "stampede": 30779, + "leggins": 30780, + "falcao": 30781, + "chandeliers": 30782, + "dozed": 30783, + "autocorrects": 30784, + "greenhouse": 30785, + "upward": 30786, + "ellie's": 30787, + "conducting": 30788, + "bessy": 30789, + "marcelo": 30790, + "phyllis": 30791, + "mady": 30792, + "idgt": 30793, + "mirada": 30794, + "commin": 30795, + "sweetly": 30796, + "tombstone": 30797, + "frantic": 30798, + "hakuna": 30799, + "beto": 30800, + "leia": 30801, + "cubicle": 30802, + "franz": 30803, + "watchn": 30804, + "nigs": 30805, + "fragrant": 30806, + "mistaking": 30807, + "jenny's": 30808, + "ridley": 30809, + "xmen": 30810, + "u.k.": 30811, + "pentatonix": 30812, + "tant": 30813, + "bailey's": 30814, + "calender": 30815, + "outings": 30816, + "bondage": 30817, + "starz": 30818, + "golazo": 30819, + "sansone": 30820, + "remedial": 30821, + "apathetic": 30822, + "pessimistic": 30823, + "serum": 30824, + "qualit": 30825, + "ntb": 30826, + "rut": 30827, + "jaxon": 30828, + "teakettle": 30829, + "unmemorable": 30830, + "whyd": 30831, + "hutcherson": 30832, + "#ggmu": 30833, + "mariners": 30834, + "hideout": 30835, + "thereof": 30836, + "flaca": 30837, + "initiated": 30838, + "hanes": 30839, + "cyndi": 30840, + "trife": 30841, + "weirded": 30842, + "bassist": 30843, + "beutiful": 30844, + "audiophile": 30845, + "yae": 30846, + "pergi": 30847, + "bakeries": 30848, + "seagate": 30849, + "lavo": 30850, + "parched": 30851, + "fxckin": 30852, + "sally's": 30853, + "asfuck": 30854, + "injure": 30855, + "suzie": 30856, + "rebuilding": 30857, + "bootys": 30858, + "levantarse": 30859, + "brinks": 30860, + "sphere": 30861, + "casanova": 30862, + "maryam": 30863, + "reliably": 30864, + "diggers": 30865, + "rifles": 30866, + "convey": 30867, + "ginge": 30868, + "woodland": 30869, + "borring": 30870, + "decieving": 30871, + "vaughan": 30872, + "shelters": 30873, + "goodvibes": 30874, + "#rs": 30875, + "tabby": 30876, + "flava": 30877, + "maglite": 30878, + "groan": 30879, + "equis": 30880, + ":^)": 30881, + "cues": 30882, + "heaping": 30883, + "#epic": 30884, + "pinks": 30885, + "goodjob": 30886, + "mufucka": 30887, + "basin": 30888, + "ballout": 30889, + "beefs": 30890, + "asher": 30891, + "minced": 30892, + "amistad": 30893, + "caballero": 30894, + "hep": 30895, + "revs": 30896, + "tere": 30897, + "riley's": 30898, + "taqueria": 30899, + "fabio": 30900, + "deejay": 30901, + "saba": 30902, + "kassie": 30903, + "verbs": 30904, + "humps": 30905, + "thrifting": 30906, + "muela": 30907, + "tidbits": 30908, + "dijon": 30909, + "hahahahh": 30910, + "compris": 30911, + "follett": 30912, + "dicky": 30913, + "patchy": 30914, + "#solid": 30915, + "antibiotic": 30916, + "haute": 30917, + "venison": 30918, + "rebuke": 30919, + "malu": 30920, + "rowyso": 30921, + "#the": 30922, + "darin": 30923, + "nois": 30924, + "seizures": 30925, + "unseasoned": 30926, + "dejes": 30927, + "nippy": 30928, + "misspelling": 30929, + "rests": 30930, + "jihad": 30931, + "undress": 30932, + "ladyy": 30933, + "mouthpiece": 30934, + "laurens": 30935, + "rasa": 30936, + "gated": 30937, + "discrete": 30938, + "deixa": 30939, + "undeniably": 30940, + "monae": 30941, + "todoo": 30942, + "stap": 30943, + "creuset": 30944, + "acordar": 30945, + "jaclyn": 30946, + "spanks": 30947, + "layup": 30948, + "igh": 30949, + "mosaic": 30950, + "sonoran": 30951, + "zinc": 30952, + "ply": 30953, + "sessy": 30954, + "lop": 30955, + "shepherds": 30956, + "omni": 30957, + "cet": 30958, + "#lost": 30959, + "fuckd": 30960, + "#broke": 30961, + "alwys": 30962, + "austins": 30963, + "paintballing": 30964, + "bebti": 30965, + "odors": 30966, + "pumunta": 30967, + "tungsten": 30968, + "maci": 30969, + "tucks": 30970, + "dobson": 30971, + "unforgetable": 30972, + "wsh": 30973, + "waylon": 30974, + "dilly": 30975, + "theyve": 30976, + "crue": 30977, + "bundt": 30978, + "stoppin": 30979, + "relic": 30980, + "morton": 30981, + "varun": 30982, + "rompe": 30983, + "bastante": 30984, + "faar": 30985, + "genghis": 30986, + "macdonald": 30987, + "conversational": 30988, + "keane": 30989, + "anissa": 30990, + "lightbulb": 30991, + "worksheets": 30992, + "chante": 30993, + "abo": 30994, + "ween": 30995, + "humiliated": 30996, + "dells": 30997, + "favours": 30998, + "copious": 30999, + "#trust": 31000, + "gmc": 31001, + "hankering": 31002, + "tamera": 31003, + "#zz": 31004, + "hunter's": 31005, + "dile": 31006, + "youngjae": 31007, + "spirt": 31008, + "#desperate": 31009, + "vandross": 31010, + "allen's": 31011, + "inhaling": 31012, + "lokai": 31013, + "morrissey": 31014, + "chupa": 31015, + "#gome": 31016, + "steely": 31017, + "adjectives": 31018, + "contracted": 31019, + "expressive": 31020, + "dwts": 31021, + "tricycle": 31022, + "marque": 31023, + "paved": 31024, + "unholy": 31025, + "lifeguards": 31026, + "fainting": 31027, + "washroom": 31028, + "doomsday": 31029, + "absurdly": 31030, + "towners": 31031, + "snide": 31032, + "tini": 31033, + "wsu": 31034, + "amg": 31035, + "weather's": 31036, + "ohs": 31037, + "cuanto": 31038, + "liers": 31039, + "journalists": 31040, + "#awks": 31041, + "sainyo": 31042, + "peoplee": 31043, + "pude": 31044, + "flamin": 31045, + "factually": 31046, + "jode": 31047, + "tract": 31048, + "preety": 31049, + "realises": 31050, + "colonel": 31051, + "allready": 31052, + "turnaround": 31053, + "subtitled": 31054, + "halloo": 31055, + "runn": 31056, + "edger": 31057, + "yosemite": 31058, + "maureen": 31059, + "confianza": 31060, + "pote": 31061, + "licuado": 31062, + "vexed": 31063, + "hygienist": 31064, + "louboutins": 31065, + "muffler": 31066, + "transitions": 31067, + "forgetable": 31068, + "guild": 31069, + "tudors": 31070, + "benidorm": 31071, + "hellish": 31072, + "basing": 31073, + "ginny": 31074, + "mke": 31075, + "dien": 31076, + "cornerstone": 31077, + "tranquility": 31078, + "dieron": 31079, + "ahr": 31080, + "busts": 31081, + "onlyy": 31082, + "birthdayxx": 31083, + "greggs": 31084, + "leaps": 31085, + "bookings": 31086, + "wimme": 31087, + "#criminalminds": 31088, + "brudder": 31089, + "classier": 31090, + "slsp": 31091, + "#imsorry": 31092, + "graft": 31093, + "compra": 31094, + "noones": 31095, + "frantically": 31096, + "jaida": 31097, + "#justmyluck": 31098, + "vato": 31099, + "examined": 31100, + "mhh": 31101, + "erin's": 31102, + "explanatory": 31103, + "besok": 31104, + "concentrating": 31105, + "loader": 31106, + "playhouse": 31107, + "dionne": 31108, + "tearin": 31109, + "silvia": 31110, + "pager": 31111, + "thad": 31112, + "#notsorry": 31113, + "bloomfield": 31114, + "pediatrician": 31115, + "unsupported": 31116, + "swifties": 31117, + "exeter": 31118, + "suegra": 31119, + "figuratively": 31120, + "assaulted": 31121, + "bellaa": 31122, + "seja": 31123, + "sabihin": 31124, + "retweetin": 31125, + "jades": 31126, + "considers": 31127, + "yami": 31128, + "atrocity": 31129, + "oktoberfest": 31130, + "spindle": 31131, + "goodlook": 31132, + "sunbeds": 31133, + "kulang": 31134, + "leasing": 31135, + "danse": 31136, + "dais": 31137, + "ponga": 31138, + "thriving": 31139, + "destinys": 31140, + "boycotting": 31141, + "#sicklife": 31142, + "graciias": 31143, + "perfeita": 31144, + "ooww": 31145, + "topo": 31146, + "hgtv": 31147, + "nein": 31148, + "zamn": 31149, + "song's": 31150, + "configure": 31151, + "poultry": 31152, + "norte": 31153, + "camren": 31154, + "matinee": 31155, + "anchors": 31156, + "geting": 31157, + "ibs": 31158, + "dumbfounded": 31159, + "sunblock": 31160, + "revamp": 31161, + "pullout": 31162, + "divers": 31163, + "proteins": 31164, + "olaa": 31165, + "desayunar": 31166, + "redesign": 31167, + "classify": 31168, + "gifting": 31169, + "gostei": 31170, + "yazi": 31171, + "incline": 31172, + "logos": 31173, + "newsletter": 31174, + "tira": 31175, + "ayuda": 31176, + "jessie's": 31177, + "retweetonlyifyouwantnew": 31178, + "verification": 31179, + "laawwdd": 31180, + "rook": 31181, + "hoez": 31182, + "tbr": 31183, + "sylvania": 31184, + "whiff": 31185, + "bosnian": 31186, + "lovaa": 31187, + "jamas": 31188, + "zz's": 31189, + "unconventional": 31190, + "insulin": 31191, + "sait": 31192, + "yerr": 31193, + "durian": 31194, + "kiking": 31195, + "vividly": 31196, + "qpr": 31197, + "belli": 31198, + "serenaded": 31199, + "season's": 31200, + "graphing": 31201, + "empress": 31202, + "einstein's": 31203, + "mids": 31204, + "grat": 31205, + "wus": 31206, + "#delicious": 31207, + "jena": 31208, + "windmill": 31209, + "xerox": 31210, + "looka": 31211, + "porsha": 31212, + "geog": 31213, + "inlaw": 31214, + "electrocuted": 31215, + "aiyo": 31216, + "yearbooks": 31217, + "stahhpp": 31218, + "faack": 31219, + "bajon": 31220, + "homeowner": 31221, + "#confession": 31222, + "adonis": 31223, + "burlington": 31224, + "waterpark": 31225, + "selalu": 31226, + "ealy": 31227, + "posible": 31228, + "thks": 31229, + "overused": 31230, + "habibti": 31231, + "heresy": 31232, + "resumes": 31233, + "magnifier": 31234, + "duval": 31235, + "eii": 31236, + "dahh": 31237, + "slopes": 31238, + "doused": 31239, + "hahahahahhahaha": 31240, + "cimorelli": 31241, + "astonished": 31242, + "nauseas": 31243, + "dispatch": 31244, + "jusst": 31245, + "jubilee": 31246, + "quez": 31247, + "#iphone": 31248, + "verla": 31249, + "nestled": 31250, + "laredo": 31251, + "bellamy": 31252, + "luton": 31253, + "nooww": 31254, + "coolio": 31255, + "rituals": 31256, + "gshit": 31257, + "seagulls": 31258, + "carpenters": 31259, + "bisa": 31260, + "buick": 31261, + "kohler": 31262, + "estupida": 31263, + "casts": 31264, + "bowel": 31265, + "hancock": 31266, + "reefer": 31267, + "plotted": 31268, + "extraordinaire": 31269, + "offends": 31270, + "potna": 31271, + "#bestfeeling": 31272, + "gayle": 31273, + "specimen": 31274, + "fiquem": 31275, + "#beauty": 31276, + "mating": 31277, + "passionately": 31278, + "hoh": 31279, + "sugg": 31280, + "sealer": 31281, + "spinrilla": 31282, + "kinikilig": 31283, + "ahww": 31284, + "fukkin": 31285, + "vn": 31286, + "illuminated": 31287, + "sambuca": 31288, + "sprinted": 31289, + "caillou": 31290, + "ovens": 31291, + "trusty": 31292, + "southpark": 31293, + "hazy": 31294, + "somuch": 31295, + "knick": 31296, + "maltese": 31297, + "shannon's": 31298, + "calme": 31299, + "welch": 31300, + "nines": 31301, + "klopp": 31302, + "enoje": 31303, + "dankie": 31304, + "drowns": 31305, + "brightside": 31306, + "#accomplished": 31307, + "zae": 31308, + "delicia": 31309, + "kaz": 31310, + "playset": 31311, + "sof": 31312, + "menstrual": 31313, + "bwiset": 31314, + "commitments": 31315, + "bullshits": 31316, + "azkaban": 31317, + "#my": 31318, + "spn": 31319, + "supremely": 31320, + "lx": 31321, + "concertos": 31322, + "squeaking": 31323, + "struts": 31324, + "resorted": 31325, + "smc": 31326, + "tranqui": 31327, + "bkk": 31328, + "tonkatsu": 31329, + "chuy": 31330, + "vieux": 31331, + "finessin": 31332, + "startup": 31333, + "bana": 31334, + "boasts": 31335, + "givenchy": 31336, + "jericho": 31337, + "kardashian's": 31338, + "earthquakes": 31339, + "arguement": 31340, + "hobbs": 31341, + "scorch": 31342, + "booing": 31343, + "oppaa": 31344, + "briggs": 31345, + "biig": 31346, + "horton": 31347, + "muita": 31348, + "bauer": 31349, + "bandera": 31350, + "josue": 31351, + "kianna": 31352, + "bole": 31353, + "entrepreneurs": 31354, + "aileen": 31355, + "fckk": 31356, + "#blessings": 31357, + "copine": 31358, + "beech": 31359, + "combing": 31360, + "passcode": 31361, + "bisshh": 31362, + "breakups": 31363, + "tyme": 31364, + "etta": 31365, + "lubb": 31366, + "nika": 31367, + "duane": 31368, + "baffling": 31369, + "darla": 31370, + "gilly": 31371, + "julianne": 31372, + "saturdayy": 31373, + "hyperbole": 31374, + "sx": 31375, + "vols": 31376, + ":\\": 31377, + "fifties": 31378, + "mfrs": 31379, + "lindoos": 31380, + "wensday": 31381, + "ayala": 31382, + "studded": 31383, + "settles": 31384, + "yuhuu": 31385, + "lana's": 31386, + "gummi": 31387, + "configuration": 31388, + "unsweetened": 31389, + "fansign": 31390, + "boar": 31391, + "organizations": 31392, + "grans": 31393, + "cosita": 31394, + "id'd": 31395, + "besty": 31396, + "lurkers": 31397, + "nasir": 31398, + "casablanca": 31399, + "intolerable": 31400, + "namesake": 31401, + "mischievous": 31402, + "doable": 31403, + "abou": 31404, + "badges": 31405, + "mikaela": 31406, + "jobb": 31407, + "adapted": 31408, + "fla": 31409, + "choosy": 31410, + "proofreading": 31411, + "fabby": 31412, + "avenger": 31413, + "#goblue": 31414, + "puller": 31415, + "devilish": 31416, + "tod": 31417, + "#pandora": 31418, + "nightlight": 31419, + "fancier": 31420, + "melissa's": 31421, + "veterinary": 31422, + "deposits": 31423, + "#truefriend": 31424, + "thud": 31425, + "kiley": 31426, + "franny": 31427, + "clearwater": 31428, + "#emotional": 31429, + "forreall": 31430, + "latching": 31431, + "awakened": 31432, + "peine": 31433, + "hed": 31434, + "bummin": 31435, + "trucker": 31436, + "fixin": 31437, + "sop": 31438, + "chatt": 31439, + "luisa": 31440, + "friozinho": 31441, + "chingy": 31442, + "apprenticeship": 31443, + "mainland": 31444, + "destinations": 31445, + "royally": 31446, + "darkly": 31447, + "newcomer": 31448, + "#deuces": 31449, + "compositions": 31450, + "clo": 31451, + "soundcheck": 31452, + "clt": 31453, + "ytd": 31454, + "daisies": 31455, + "bulletin": 31456, + "licious": 31457, + "hrm": 31458, + "abuelo": 31459, + "#nashville": 31460, + "falsa": 31461, + "vaping": 31462, + "distancia": 31463, + "ritchie": 31464, + "morro": 31465, + "retract": 31466, + "plagued": 31467, + "bambino": 31468, + "workday": 31469, + "m'f": 31470, + "polder": 31471, + "hwaiting": 31472, + "everydayy": 31473, + "arturo": 31474, + "augustine": 31475, + "youz": 31476, + "bribing": 31477, + "wtv": 31478, + "jajajjaja": 31479, + "gogh": 31480, + "cande": 31481, + "waren": 31482, + "grp": 31483, + "avion": 31484, + "#tooearly": 31485, + "nearing": 31486, + "existential": 31487, + "beijo": 31488, + "hablamee": 31489, + "amidst": 31490, + "baju": 31491, + "kanya": 31492, + "imyy": 31493, + "withstand": 31494, + "gogglebox": 31495, + "celina": 31496, + "chewer": 31497, + "rhubarb": 31498, + "statistical": 31499, + "backlash": 31500, + "ach": 31501, + "matic": 31502, + "margaritaville": 31503, + "aparece": 31504, + "#mgwv": 31505, + "fume": 31506, + "growls": 31507, + "abdominal": 31508, + "#notgood": 31509, + "hastings": 31510, + "koya": 31511, + "peppery": 31512, + "evils": 31513, + "requiring": 31514, + "facil": 31515, + "tdy": 31516, + "rewatched": 31517, + "aveda": 31518, + "pnb": 31519, + "refrigerated": 31520, + "waat": 31521, + "chuvinha": 31522, + "sherri": 31523, + "lovedd": 31524, + "tekken": 31525, + "minuto": 31526, + "boyle": 31527, + "comigo": 31528, + "tastings": 31529, + "munchie": 31530, + "cuisines": 31531, + "illuminate": 31532, + "interviewer": 31533, + "#loveyouu": 31534, + "dragonfly": 31535, + "canary": 31536, + "gasping": 31537, + "gianni": 31538, + "explota": 31539, + "#buenasnoches": 31540, + "#stress": 31541, + "bard": 31542, + "skittle": 31543, + "#healthy": 31544, + "elissa": 31545, + "dudas": 31546, + "voiced": 31547, + "grubbing": 31548, + "feenin": 31549, + "introspective": 31550, + "nicked": 31551, + "fuerza": 31552, + "olga": 31553, + "marge": 31554, + "duracell": 31555, + "resets": 31556, + "fatties": 31557, + "huy": 31558, + "wuthering": 31559, + "greeaat": 31560, + "fortress": 31561, + "omfs": 31562, + "lonley": 31563, + "motley": 31564, + "starwars": 31565, + ":-((": 31566, + "provisional": 31567, + "cursive": 31568, + "butchers": 31569, + "adequately": 31570, + "nar": 31571, + "aromatherapy": 31572, + "excrement": 31573, + "dehydration": 31574, + "filtration": 31575, + "muke": 31576, + "tawa": 31577, + "#gm": 31578, + "frenchie": 31579, + "handstand": 31580, + "mone": 31581, + "sfa": 31582, + "salimos": 31583, + "josephine": 31584, + "audit": 31585, + "hahahhahah": 31586, + "nites": 31587, + "gamin": 31588, + "septa": 31589, + "oft": 31590, + "suspicion": 31591, + "wahaha": 31592, + "sanford": 31593, + "earings": 31594, + "spag": 31595, + "stephanie's": 31596, + "airborne": 31597, + "bloop": 31598, + "defying": 31599, + "nosh": 31600, + "ayam": 31601, + "apprehensive": 31602, + "mbn": 31603, + "nct": 31604, + "widdit": 31605, + "minx": 31606, + "sharpe": 31607, + "torment": 31608, + "#power": 31609, + "intercourse": 31610, + "evangelical": 31611, + "ditches": 31612, + "repita": 31613, + "sundayy": 31614, + "replys": 31615, + "dinny": 31616, + "playn": 31617, + "chameleon": 31618, + "nimh": 31619, + "hamstrings": 31620, + "exelent": 31621, + "togetherr": 31622, + "dinna": 31623, + "coincidentally": 31624, + "sheikh": 31625, + "mystere": 31626, + "a.k.a.": 31627, + "smudge": 31628, + "yama": 31629, + "doss": 31630, + "omgomg": 31631, + "lyingg": 31632, + "blud": 31633, + "brite": 31634, + "slum": 31635, + "underway": 31636, + "stacy's": 31637, + "anu": 31638, + "sayaang": 31639, + "niggy": 31640, + "greenwood": 31641, + "thurl": 31642, + "peri": 31643, + "#thankyougod": 31644, + "tums": 31645, + "staind": 31646, + "waitingg": 31647, + "burners": 31648, + "kramer": 31649, + "krab": 31650, + "limiting": 31651, + "yii": 31652, + "installs": 31653, + "queasy": 31654, + "=/": 31655, + "perc": 31656, + "wuld": 31657, + "bwisit": 31658, + "bony": 31659, + "brittany's": 31660, + "jasmines": 31661, + "cate": 31662, + "filtering": 31663, + "flutter": 31664, + "dreadlocks": 31665, + "seaworld": 31666, + "ninety": 31667, + "bienvenue": 31668, + "fohh": 31669, + "kaleidoscope": 31670, + "ldr": 31671, + "#ahs": 31672, + "gecko": 31673, + "youngster": 31674, + "mfz": 31675, + "briefcase": 31676, + "charlene": 31677, + "kaepernick": 31678, + "jitt": 31679, + "fook": 31680, + "connais": 31681, + "thirds": 31682, + "jalousie": 31683, + "neptune": 31684, + "tarantula": 31685, + "baldy": 31686, + "stache": 31687, + "maddening": 31688, + "tahu": 31689, + "devan": 31690, + "#forreal": 31691, + "loadss": 31692, + "nays": 31693, + "winnings": 31694, + "pah": 31695, + "stargazing": 31696, + "snooping": 31697, + "cheltenham": 31698, + "superhuman": 31699, + "magee": 31700, + "senseo": 31701, + "adversity": 31702, + "ehm": 31703, + "notecards": 31704, + "barba": 31705, + "amanecer": 31706, + "thnxx": 31707, + "skl": 31708, + "flaco": 31709, + "andis": 31710, + "verve": 31711, + "twos": 31712, + "mcnuggets": 31713, + "lifesavers": 31714, + "realtor": 31715, + "shutout": 31716, + "smg": 31717, + "ptit": 31718, + "sourced": 31719, + "entrenamiento": 31720, + "guyzz": 31721, + "shalom": 31722, + "ballot": 31723, + "deym": 31724, + "computing": 31725, + "concealed": 31726, + "furnishings": 31727, + "meadow": 31728, + "grabbin": 31729, + "lamont": 31730, + "melons": 31731, + "#harrypotter": 31732, + "#so": 31733, + "ecology": 31734, + "fairytales": 31735, + "seventy": 31736, + "ushers": 31737, + "sparring": 31738, + "scamming": 31739, + "shavings": 31740, + "valee": 31741, + "gazillion": 31742, + "stephens": 31743, + "oughta": 31744, + "iget": 31745, + "demander": 31746, + "reuse": 31747, + "climber": 31748, + "adieu": 31749, + "plugging": 31750, + "dabbed": 31751, + "soundtrip": 31752, + "caterpillars": 31753, + "insider's": 31754, + "bounces": 31755, + "idunno": 31756, + "interrupts": 31757, + "imam": 31758, + "placebo": 31759, + "asshit": 31760, + "ging": 31761, + "rammed": 31762, + "noms": 31763, + "#js": 31764, + "mawmaw": 31765, + "breakouts": 31766, + "cpa": 31767, + "grating": 31768, + "herbalife": 31769, + "moaned": 31770, + "whe": 31771, + "diana's": 31772, + "nca": 31773, + "bern": 31774, + "#disgusting": 31775, + "jezza": 31776, + "food's": 31777, + "textiles": 31778, + "hairless": 31779, + "macys": 31780, + "pronouncing": 31781, + "sess": 31782, + "macaroon": 31783, + "grande's": 31784, + "kobes": 31785, + "xhosa": 31786, + "denominator": 31787, + "firearms": 31788, + "monument": 31789, + "skipper": 31790, + "narcissism": 31791, + "amex": 31792, + "how've": 31793, + "cringed": 31794, + "broiled": 31795, + "beastly": 31796, + "#days": 31797, + "scab": 31798, + "olvidar": 31799, + "succinct": 31800, + "sisig": 31801, + "tween": 31802, + "peril": 31803, + "jimmie": 31804, + "obligatory": 31805, + "zillion": 31806, + "putaa": 31807, + "gary's": 31808, + "duermoo": 31809, + "havasu": 31810, + "warrants": 31811, + "tsaka": 31812, + "hardheaded": 31813, + "natalie's": 31814, + "kaden": 31815, + "introuble": 31816, + "chipolte": 31817, + "cheesesteaks": 31818, + "dtf": 31819, + "meep": 31820, + "roku": 31821, + "fey": 31822, + "joplin": 31823, + "patched": 31824, + "obsessions": 31825, + "samoa": 31826, + "snaked": 31827, + "lightheaded": 31828, + "skechers": 31829, + "channeling": 31830, + "obgd": 31831, + "relocated": 31832, + "untrustworthy": 31833, + "heathers": 31834, + "parted": 31835, + "nivea": 31836, + "cruises": 31837, + "waring": 31838, + "makatulog": 31839, + "recitation": 31840, + "xoxoxoxo": 31841, + "twatchers": 31842, + "coherent": 31843, + "s'more": 31844, + "sabay": 31845, + "kauai": 31846, + "mopped": 31847, + "fanpage": 31848, + "stokes": 31849, + "obtuse": 31850, + "crowned": 31851, + "sought": 31852, + "shagging": 31853, + "muva": 31854, + "macdonalds": 31855, + "kimi": 31856, + "kawan": 31857, + "bosnia": 31858, + "pattinson": 31859, + "nineties": 31860, + "#sfgiants": 31861, + "#hurt": 31862, + "retread": 31863, + "preschooler": 31864, + "ko'd": 31865, + "fencing": 31866, + "drooled": 31867, + "plums": 31868, + "agghh": 31869, + "#now": 31870, + "woii": 31871, + "exorbitant": 31872, + "unpromised": 31873, + "lyft": 31874, + "braveheart": 31875, + "atb": 31876, + "ccd": 31877, + "pixies": 31878, + "antiques": 31879, + "courthouse": 31880, + "aloo": 31881, + "bebty": 31882, + "voip": 31883, + "shrinkage": 31884, + "boners": 31885, + "befo": 31886, + "smashes": 31887, + "vois": 31888, + "morrie": 31889, + "meridian": 31890, + "sini": 31891, + "#imdead": 31892, + "luncheon": 31893, + "graduations": 31894, + "idm": 31895, + "administrators": 31896, + "shudder": 31897, + "urinal": 31898, + "jte": 31899, + "raphael": 31900, + "wasteman": 31901, + "bales": 31902, + "livingston": 31903, + "#goodbye": 31904, + "gangnam": 31905, + "syfy": 31906, + "parable": 31907, + "niner": 31908, + "problemm": 31909, + "lon": 31910, + "commuter": 31911, + "galatasaray": 31912, + "motherland": 31913, + "transcend": 31914, + "archos": 31915, + "hse": 31916, + "pokin": 31917, + "chilies": 31918, + "tj's": 31919, + "#growingup": 31920, + "mardy": 31921, + "segura": 31922, + "melrose": 31923, + "dragonlance": 31924, + "macaron": 31925, + "danm": 31926, + "presumably": 31927, + "#ifonly": 31928, + "hurryy": 31929, + "gordita": 31930, + "charli": 31931, + "nickels": 31932, + "frequenting": 31933, + "laboratory": 31934, + "subtly": 31935, + "canada's": 31936, + "#fangirling": 31937, + "#fave": 31938, + "welpp": 31939, + "mehehe": 31940, + "lisbon": 31941, + "tasking": 31942, + "practising": 31943, + "shined": 31944, + "pinning": 31945, + "untalented": 31946, + "slater": 31947, + "wayans": 31948, + "dlp": 31949, + "orient": 31950, + "clarified": 31951, + "gui": 31952, + "modifications": 31953, + "painters": 31954, + "wipeout": 31955, + "jesy": 31956, + "rak": 31957, + "mysticism": 31958, + "atrium": 31959, + "bulking": 31960, + "handspring": 31961, + "octane": 31962, + "laban": 31963, + "skeletons": 31964, + "fede": 31965, + "#leavemealone": 31966, + "scolding": 31967, + "finch": 31968, + "antebellum": 31969, + "zany": 31970, + "decreased": 31971, + "contouring": 31972, + "#lifegoals": 31973, + "rockport": 31974, + "goddam": 31975, + "dela": 31976, + "regulate": 31977, + "marihuana": 31978, + "jayce": 31979, + "reck": 31980, + "cutiepie": 31981, + "raybans": 31982, + "mesha": 31983, + "depende": 31984, + "indi": 31985, + "chara": 31986, + "nel": 31987, + "acute": 31988, + "puis": 31989, + "punisher": 31990, + "branden": 31991, + "shamelessly": 31992, + "awesomest": 31993, + "peps": 31994, + "clunker": 31995, + "chaka": 31996, + "asadito": 31997, + "terminals": 31998, + "jims": 31999, + "majoring": 32000, + "interval": 32001, + ".a.p": 32002, + "bloomington": 32003, + "speck": 32004, + "kw": 32005, + "delicioso": 32006, + "oodles": 32007, + "costumers": 32008, + "luiz": 32009, + "inuyasha": 32010, + "resent": 32011, + "magiging": 32012, + "nakakahiya": 32013, + "binocular": 32014, + "cheesecakes": 32015, + "karan": 32016, + "veas": 32017, + "sinead": 32018, + "sentindo": 32019, + "breakk": 32020, + "gwan": 32021, + "zach's": 32022, + "tittle": 32023, + "empowerment": 32024, + "whts": 32025, + "educator": 32026, + "morgs": 32027, + "tayla": 32028, + "#2015": 32029, + "rankin": 32030, + "vacuous": 32031, + "salud": 32032, + "fingernail": 32033, + "carnt": 32034, + "frand": 32035, + "sustainable": 32036, + "dak": 32037, + "rylan": 32038, + "juggle": 32039, + "kahapon": 32040, + "lerman": 32041, + "smmfh": 32042, + "#okay": 32043, + "raviolis": 32044, + "hrc": 32045, + "squirting": 32046, + "carp": 32047, + "tristen": 32048, + "escucho": 32049, + "melinda": 32050, + "deployed": 32051, + "tahan": 32052, + "#thelittlethings": 32053, + "flyest": 32054, + "peaked": 32055, + "slathered": 32056, + "sailed": 32057, + "complicate": 32058, + "succeeds": 32059, + "#baetweet": 32060, + "amours": 32061, + "theological": 32062, + "overreact": 32063, + "vcs": 32064, + "schizophrenic": 32065, + "colombians": 32066, + "caves": 32067, + "premade": 32068, + "#bringit": 32069, + "#mybaby": 32070, + "morgans": 32071, + "goatee": 32072, + "hayi": 32073, + "kellerman": 32074, + "kristi": 32075, + "vinnie": 32076, + "#castle": 32077, + "reopen": 32078, + "temas": 32079, + "ldn": 32080, + "vanessa's": 32081, + "labrador": 32082, + "lyd": 32083, + "hahhahahaha": 32084, + "contradict": 32085, + "medicinal": 32086, + "oon": 32087, + "midol": 32088, + "sufferers": 32089, + "palabra": 32090, + "duce": 32091, + "fizzle": 32092, + "rhea": 32093, + "babbling": 32094, + "siaa": 32095, + "granger": 32096, + "steff": 32097, + "calmate": 32098, + "stix": 32099, + "jayson": 32100, + "quanta": 32101, + "carlin": 32102, + "bor": 32103, + "aiya": 32104, + "cryptic": 32105, + "vei": 32106, + "pareja": 32107, + "kapatid": 32108, + "victorinox": 32109, + "vector": 32110, + "northampton": 32111, + "eyewitness": 32112, + "carlisle": 32113, + "#lies": 32114, + "shaolin": 32115, + "luxe": 32116, + "harrahs": 32117, + "naj": 32118, + "dillard's": 32119, + "fantasizing": 32120, + "groundhog": 32121, + "ally's": 32122, + "tittie": 32123, + "yipee": 32124, + "monstrous": 32125, + "unknowingly": 32126, + "carowinds": 32127, + "misnomer": 32128, + "intentioned": 32129, + "pict": 32130, + "chier": 32131, + "bmore": 32132, + "beter": 32133, + "soldering": 32134, + "homestead": 32135, + "darlene": 32136, + "sissys": 32137, + "sutherland": 32138, + "bellissima": 32139, + "abounds": 32140, + "nestor": 32141, + "palpitations": 32142, + "evrything": 32143, + "moko": 32144, + "ruckus": 32145, + "devyn": 32146, + "spinnin": 32147, + "battlestar": 32148, + "#twitteroff": 32149, + "#creep": 32150, + "voldemort": 32151, + "salvadorian": 32152, + "communities": 32153, + "fixings": 32154, + "scrapped": 32155, + "#creepy": 32156, + "kaylah": 32157, + "jeanette": 32158, + "snuggie": 32159, + "awkk": 32160, + "#womancrushwednesday": 32161, + "atletico": 32162, + "gassy": 32163, + "biases": 32164, + "weekend's": 32165, + "headquarters": 32166, + "tintin": 32167, + "karly": 32168, + "trainwreck": 32169, + "kaley": 32170, + "craftmanship": 32171, + "mooch": 32172, + "daamnn": 32173, + "seule": 32174, + "mythical": 32175, + "primal": 32176, + "crinkle": 32177, + "iike": 32178, + "kells": 32179, + "karli": 32180, + "meringue": 32181, + "flautas": 32182, + "snes": 32183, + "ventures": 32184, + "#sadday": 32185, + "jajajajajajajajajajajaja": 32186, + "reprinted": 32187, + "nikki's": 32188, + "sinning": 32189, + "discharged": 32190, + "ibang": 32191, + "cerveza": 32192, + "argentinian": 32193, + "pierna": 32194, + "deficient": 32195, + "harmon": 32196, + "ruger": 32197, + "pretties": 32198, + "haahaha": 32199, + "shiidd": 32200, + "coll": 32201, + "alessia": 32202, + "wheet": 32203, + "unevenly": 32204, + "panna": 32205, + "deemed": 32206, + "#basic": 32207, + "#hope": 32208, + "acquaintances": 32209, + "fellowes": 32210, + "freckle": 32211, + "becareful": 32212, + "zin": 32213, + "gainz": 32214, + "anfield": 32215, + "whhaatt": 32216, + "rvp": 32217, + "oioi": 32218, + "rabies": 32219, + "tl's": 32220, + "guyy": 32221, + "zachs": 32222, + "infatuation": 32223, + "cocoon": 32224, + "oustanding": 32225, + "fy": 32226, + "superpower": 32227, + "fabrication": 32228, + "throught": 32229, + "footprints": 32230, + "pinoy": 32231, + "musicaa": 32232, + "girlz": 32233, + "shayne": 32234, + "escapism": 32235, + "haggis": 32236, + "turks": 32237, + "jio": 32238, + "dissecting": 32239, + "yata": 32240, + "paterson": 32241, + "roxanne": 32242, + "spicey": 32243, + "kilala": 32244, + "itinerary": 32245, + "hammering": 32246, + "deary": 32247, + "deshawn": 32248, + "gemini's": 32249, + "pongan": 32250, + "bape": 32251, + "neve": 32252, + "menina": 32253, + "ganamos": 32254, + "#xoxo": 32255, + "overdraft": 32256, + "okeyy": 32257, + "apaa": 32258, + "pence": 32259, + "mariano": 32260, + "mastro's": 32261, + "centrally": 32262, + "energizing": 32263, + "bullshitt": 32264, + "huntsman": 32265, + "prompted": 32266, + "moive": 32267, + "christi": 32268, + "getty": 32269, + "tenors": 32270, + "unn": 32271, + "daisha": 32272, + "#legday": 32273, + "hottub": 32274, + "exemplary": 32275, + "sist": 32276, + "rager": 32277, + "binky": 32278, + "reconnect": 32279, + "rein": 32280, + "harold's": 32281, + "freinds": 32282, + "rossi": 32283, + "arlene": 32284, + "caged": 32285, + "huf": 32286, + "deacon": 32287, + "wold": 32288, + "uphill": 32289, + "nfc": 32290, + "blackberries": 32291, + "funner": 32292, + "rel": 32293, + "#imdying": 32294, + "mindblowing": 32295, + "ripp": 32296, + "plop": 32297, + "#follow2befollowed": 32298, + "wylin": 32299, + "agarro": 32300, + "inevitably": 32301, + "hospitable": 32302, + "leelee": 32303, + "#tweet": 32304, + "nepal": 32305, + "futile": 32306, + "niro": 32307, + "insured": 32308, + "choca": 32309, + "congestion": 32310, + "arrgghh": 32311, + "namiss": 32312, + "debe": 32313, + "shey": 32314, + "ngakak": 32315, + "motorbike": 32316, + "chevron": 32317, + "#notcomplaining": 32318, + ".o.b": 32319, + "oommgg": 32320, + "suucks": 32321, + "dreamweaver": 32322, + "ralph's": 32323, + "electrician": 32324, + "beholder": 32325, + "fritos": 32326, + "salesmen": 32327, + "photoshoots": 32328, + "blinked": 32329, + "abb": 32330, + "uupp": 32331, + "plastics": 32332, + "radford": 32333, + "ambiguous": 32334, + "samosa": 32335, + "kodwa": 32336, + "relays": 32337, + "poulan": 32338, + "demarco": 32339, + "nutmeg": 32340, + "aveces": 32341, + "servicing": 32342, + "chemist": 32343, + "homescreen": 32344, + "squaad": 32345, + "chillan": 32346, + "siu": 32347, + "#bb18": 32348, + "mobbed": 32349, + "birthing": 32350, + "nows": 32351, + "cunningham": 32352, + "kuch": 32353, + "bubu": 32354, + "leme": 32355, + "vandaag": 32356, + "pokey": 32357, + "zips": 32358, + "hushh": 32359, + "leone": 32360, + "begginers": 32361, + "nda": 32362, + "bahh": 32363, + "visitation": 32364, + "evens": 32365, + "brenden": 32366, + "parar": 32367, + "prominent": 32368, + "whilee": 32369, + "mishap": 32370, + "lucie": 32371, + "putty": 32372, + "muka": 32373, + "morale": 32374, + "rocio": 32375, + "sardine": 32376, + "mugshot": 32377, + "waiter's": 32378, + "prosperous": 32379, + "rentrer": 32380, + "shortcuts": 32381, + "hench": 32382, + "skynyrd": 32383, + "highlighters": 32384, + "niga": 32385, + "stanning": 32386, + "pancetta": 32387, + "chaise": 32388, + "wmyb": 32389, + "corinne": 32390, + "partayy": 32391, + "inquiries": 32392, + "buckeyes": 32393, + "waive": 32394, + "porky": 32395, + "jett": 32396, + "whooaa": 32397, + "dlsu": 32398, + "oga": 32399, + "overwhelm": 32400, + "#nevergetsold": 32401, + "fete": 32402, + "kinsey": 32403, + "installer": 32404, + "forevers": 32405, + "relly": 32406, + "miraculously": 32407, + "landry": 32408, + "jinyoung": 32409, + "uhuul": 32410, + "deposited": 32411, + "wellies": 32412, + "dainty": 32413, + "magaling": 32414, + "stace": 32415, + "solitary": 32416, + "#bestfanarmy": 32417, + "tescos": 32418, + "bos": 32419, + "prontinho": 32420, + "ourself": 32421, + "bruva": 32422, + "fedora": 32423, + "janky": 32424, + "weightlifting": 32425, + "quaker": 32426, + "ney": 32427, + "hilfiger": 32428, + "aucun": 32429, + "randolph": 32430, + "beaming": 32431, + "joon": 32432, + "bch": 32433, + "yawned": 32434, + "nightclubs": 32435, + "#300": 32436, + "framework": 32437, + "pease": 32438, + "scant": 32439, + "headlining": 32440, + "treason": 32441, + "cbf": 32442, + "cleat": 32443, + "jaiden": 32444, + "deng": 32445, + "kaput": 32446, + "#sisters": 32447, + "quiznos": 32448, + "impersonation": 32449, + "mondayy": 32450, + "pround": 32451, + "warps": 32452, + "retires": 32453, + "calypso": 32454, + "wih": 32455, + "shanti": 32456, + "sequences": 32457, + "meager": 32458, + "tope": 32459, + "kaylie": 32460, + "yaan": 32461, + "hmuu": 32462, + "puesto": 32463, + "mumu": 32464, + "overshadowed": 32465, + "veery": 32466, + "samson": 32467, + "archaic": 32468, + "killem": 32469, + "#asshole": 32470, + "bagong": 32471, + "merle": 32472, + "mercredi": 32473, + "scallions": 32474, + "carro": 32475, + "tequiero": 32476, + "courtroom": 32477, + "cfc": 32478, + "ysl": 32479, + "burgr": 32480, + "kanti": 32481, + "tadhana": 32482, + "krabs": 32483, + "supp": 32484, + "atom": 32485, + "imply": 32486, + "madman": 32487, + "environmentally": 32488, + "multicultural": 32489, + "louisa": 32490, + "shane's": 32491, + "congratulated": 32492, + "tmb": 32493, + "hacemos": 32494, + "whatev": 32495, + "facade": 32496, + "traci": 32497, + "tonk": 32498, + "ahhaa": 32499, + "tandem": 32500, + "biggs": 32501, + "worstt": 32502, + "parque": 32503, + "rhq": 32504, + "buckwheat": 32505, + "gege": 32506, + "wauw": 32507, + "m.i.a.": 32508, + "handedly": 32509, + "calibration": 32510, + "geri": 32511, + "suchh": 32512, + "shakespeare's": 32513, + "#dope": 32514, + "yayayayayay": 32515, + "beste": 32516, + "evanovich": 32517, + "thankya": 32518, + "heineken": 32519, + "jerm": 32520, + "#followmenash": 32521, + "qualifies": 32522, + "szechuan": 32523, + "kook": 32524, + "abundantly": 32525, + "zipps": 32526, + "inaantok": 32527, + "adjective": 32528, + "tatay": 32529, + "shih": 32530, + "kiddingg": 32531, + "hotty": 32532, + "korma": 32533, + "hehehehehehe": 32534, + "raincoat": 32535, + "starstruck": 32536, + "everett": 32537, + "pueden": 32538, + "fut": 32539, + "browne": 32540, + "catnip": 32541, + "catty": 32542, + "javascript": 32543, + "tundra": 32544, + "monogram": 32545, + "meggy": 32546, + "haleigh": 32547, + "chex": 32548, + "sealing": 32549, + "#movienight": 32550, + "#babe": 32551, + "#soon": 32552, + "cheshire": 32553, + "fang": 32554, + "dudley": 32555, + "bitchezz": 32556, + "spunk": 32557, + "rester": 32558, + "wondrous": 32559, + "opm": 32560, + "lanky": 32561, + "mangled": 32562, + "hopsin": 32563, + "thunders": 32564, + "mendoza": 32565, + "bunker": 32566, + "alergia": 32567, + "connery": 32568, + "capris": 32569, + "freshies": 32570, + "zzquil": 32571, + "ty's": 32572, + "papa's": 32573, + "emilie": 32574, + "gibby": 32575, + "heathens": 32576, + "foots": 32577, + "#itsthelittlethings": 32578, + "takpe": 32579, + "vybz": 32580, + "juh": 32581, + "famished": 32582, + "lac": 32583, + "lopsided": 32584, + "#lazyday": 32585, + "#relax": 32586, + "swangin": 32587, + "jajajajajja": 32588, + "farrell": 32589, + "orioles": 32590, + "dorr": 32591, + "litte": 32592, + "hoseok": 32593, + "dharma": 32594, + "kameron": 32595, + "pere": 32596, + "atari": 32597, + "#tragic": 32598, + "karo": 32599, + "riots": 32600, + "wildd": 32601, + "navajo": 32602, + "reich": 32603, + "density": 32604, + "bizz": 32605, + ";')": 32606, + "sanitation": 32607, + "housekeeper": 32608, + "dempsey": 32609, + "selfishness": 32610, + "slideshow": 32611, + "patent": 32612, + "grax": 32613, + "crayy": 32614, + "acapulco": 32615, + "quise": 32616, + "lumbar": 32617, + "dugout": 32618, + "meaner": 32619, + "rocko": 32620, + "diferente": 32621, + "ethan's": 32622, + "acupuncture": 32623, + "entra": 32624, + "noisey": 32625, + "woodbridge": 32626, + "babay": 32627, + "troublemaker": 32628, + "sipped": 32629, + "babyface": 32630, + "fellows": 32631, + "spendy": 32632, + "baabbyy": 32633, + "sbs": 32634, + "tenerte": 32635, + "durmiendo": 32636, + "thermo": 32637, + "hapoy": 32638, + "coen": 32639, + "rumbling": 32640, + "intervals": 32641, + "avacado": 32642, + "spf": 32643, + "hast": 32644, + "jekyll": 32645, + "burbs": 32646, + "sozinha": 32647, + "#mcfc": 32648, + "recruited": 32649, + ":'((": 32650, + "crumpets": 32651, + "#gymtime": 32652, + "amigaa": 32653, + "triathlon": 32654, + "jamar": 32655, + "orchestral": 32656, + "#wife": 32657, + "wasteland": 32658, + "#wah": 32659, + "shayna": 32660, + "crucible": 32661, + "indulging": 32662, + "lleve": 32663, + "revisionism": 32664, + "medic": 32665, + "transitioning": 32666, + "imissyouu": 32667, + "sisisi": 32668, + "badman": 32669, + "mema": 32670, + "mocked": 32671, + "advocates": 32672, + "kubrick": 32673, + "siguemee": 32674, + "robbin": 32675, + "manoo": 32676, + "jase": 32677, + "amazayn": 32678, + "#savepalestine": 32679, + "awakens": 32680, + "teamed": 32681, + "skincare": 32682, + "chokers": 32683, + "slangs": 32684, + "enfim": 32685, + "#positivevibes": 32686, + "cague": 32687, + "eddies": 32688, + "shawns": 32689, + "loretta": 32690, + "dejah": 32691, + "slimmer": 32692, + "georges": 32693, + "dipper": 32694, + "jammer": 32695, + "toastie": 32696, + "dijeron": 32697, + "show's": 32698, + "rabbi": 32699, + "swallows": 32700, + "seeks": 32701, + "mitford": 32702, + "crusade": 32703, + "lingers": 32704, + "leah's": 32705, + "schooll": 32706, + "sloppily": 32707, + "ender": 32708, + "schatje": 32709, + "daam": 32710, + "hellow": 32711, + "restocked": 32712, + "romano": 32713, + "tolerant": 32714, + "quarto": 32715, + "#dodgers": 32716, + "wnba": 32717, + "aural": 32718, + "splenda": 32719, + "dera": 32720, + "sideburns": 32721, + "beckett": 32722, + "fatburger": 32723, + "gunz": 32724, + "vlogging": 32725, + "thu": 32726, + "dreamz": 32727, + "reheat": 32728, + "snorkeling": 32729, + "mcgriddle": 32730, + "#holiday": 32731, + "hahahahahahhaha": 32732, + "parma": 32733, + "piel": 32734, + "barbs": 32735, + "primavera": 32736, + "becos": 32737, + "biffy": 32738, + "smallish": 32739, + "sourcebook": 32740, + "burch": 32741, + "ptsd": 32742, + "dismissive": 32743, + "llc": 32744, + "poulet": 32745, + "earl's": 32746, + "#believemovie": 32747, + "mfr": 32748, + "juanita": 32749, + "sxsw": 32750, + "lautner": 32751, + "footnotes": 32752, + "siege": 32753, + "mls": 32754, + "marvins": 32755, + "gunn": 32756, + "honolulu": 32757, + "maddies": 32758, + "demarcus": 32759, + "#oldschool": 32760, + "tractors": 32761, + "aphrodite": 32762, + "potatos": 32763, + "sowwyy": 32764, + "untag": 32765, + "creatively": 32766, + "errata": 32767, + "sydney's": 32768, + "mistitled": 32769, + "mise": 32770, + "multitask": 32771, + "kneww": 32772, + "chillis": 32773, + "tibetan": 32774, + "kop": 32775, + "marshall's": 32776, + "squeaks": 32777, + "endangered": 32778, + "passei": 32779, + "sasquatch": 32780, + "lubricant": 32781, + "blinks": 32782, + "malarkey": 32783, + "disabilities": 32784, + "#dreams": 32785, + "tarado": 32786, + "notifying": 32787, + "poltergeist": 32788, + "ituu": 32789, + "renders": 32790, + "quelques": 32791, + "pwussy": 32792, + "nxggas": 32793, + "wod": 32794, + "gastric": 32795, + "banga": 32796, + "assess": 32797, + "myah": 32798, + "fuked": 32799, + "thuggish": 32800, + "subconscious": 32801, + "anjo": 32802, + "shanna": 32803, + "#lyrics": 32804, + "nutz": 32805, + "europeans": 32806, + "biochem": 32807, + "abduction": 32808, + "tact": 32809, + "marcia": 32810, + "llegamos": 32811, + "hoon": 32812, + "ali's": 32813, + "thereafter": 32814, + "fabb": 32815, + "lok": 32816, + "estupido": 32817, + "sabemos": 32818, + "suspence": 32819, + "underpants": 32820, + "heelys": 32821, + "alberta": 32822, + "kisstory": 32823, + "hawthorne": 32824, + "vaccines": 32825, + "fatally": 32826, + "conned": 32827, + "halifax": 32828, + "reissued": 32829, + "wanderlust": 32830, + "luau": 32831, + "blather": 32832, + "lisa's": 32833, + "arenas": 32834, + "celiac": 32835, + "fronted": 32836, + "tommorw": 32837, + "werd": 32838, + "meg's": 32839, + "contractors": 32840, + "belize": 32841, + "doves": 32842, + "julie's": 32843, + "monkees": 32844, + "gambled": 32845, + "sorpresa": 32846, + "triggers": 32847, + "delaying": 32848, + "eddie's": 32849, + "rightly": 32850, + "lage": 32851, + "outcheaa": 32852, + "thm": 32853, + "luckier": 32854, + "cairo": 32855, + "mentalist": 32856, + "warsaw": 32857, + "froot": 32858, + "gorgg": 32859, + "masuk": 32860, + "apink": 32861, + "tams": 32862, + "amazement": 32863, + "congratulating": 32864, + "jehovah's": 32865, + "dressers": 32866, + "linq": 32867, + "wafers": 32868, + "insufferable": 32869, + "uti": 32870, + "matutulog": 32871, + "cocked": 32872, + "informal": 32873, + "overdosed": 32874, + "manis": 32875, + "blue's": 32876, + "drunkk": 32877, + "autant": 32878, + "wondeful": 32879, + "shawd": 32880, + "nvmd": 32881, + "havn't": 32882, + "softie": 32883, + "stevenson": 32884, + "slooww": 32885, + "stallone": 32886, + "drapes": 32887, + "petey": 32888, + "cny": 32889, + "chitty": 32890, + "duelen": 32891, + "fca": 32892, + "ulcers": 32893, + "honorary": 32894, + "antiquated": 32895, + "dunkins": 32896, + "litterly": 32897, + "toed": 32898, + "dianna": 32899, + "bigs": 32900, + "goner": 32901, + "digimon": 32902, + "frann": 32903, + "#randomtweet": 32904, + "thankies": 32905, + "hiit": 32906, + "tomi": 32907, + "overwatch": 32908, + "abdomen": 32909, + "#birthdaygirl": 32910, + "afterthought": 32911, + "nita": 32912, + "fangirled": 32913, + "hero's": 32914, + "lamig": 32915, + "sioux": 32916, + "gills": 32917, + "righhtt": 32918, + "bagal": 32919, + "maxima": 32920, + "raina": 32921, + "vuelto": 32922, + "harbour": 32923, + "venturing": 32924, + "hazzard": 32925, + "#humpday": 32926, + "ohp": 32927, + "peter's": 32928, + "iscell": 32929, + "powerfully": 32930, + "accountability": 32931, + "telephoto": 32932, + "elective": 32933, + "asii": 32934, + "statham": 32935, + "jumpa": 32936, + "trojans": 32937, + "lucille's": 32938, + "terry's": 32939, + "gamblers": 32940, + "chevrolet": 32941, + "outbreak": 32942, + "blistering": 32943, + "giggs": 32944, + "molds": 32945, + "renegade": 32946, + "lyle": 32947, + "chute": 32948, + "riptide": 32949, + "inquiring": 32950, + "#thefosters": 32951, + "fh": 32952, + "asus": 32953, + "rebekah": 32954, + "interiors": 32955, + "#f4f": 32956, + "beauty's": 32957, + "burfday": 32958, + "wlc": 32959, + "poofy": 32960, + "#joke": 32961, + "preggers": 32962, + "jonghyun": 32963, + "specializes": 32964, + "highways": 32965, + "rani": 32966, + "clasic": 32967, + "vic's": 32968, + "conteste": 32969, + "theto": 32970, + "hahh": 32971, + "durning": 32972, + "shear": 32973, + "uniqueness": 32974, + "numbingly": 32975, + "hookin": 32976, + "swiffer": 32977, + "materia": 32978, + "lates": 32979, + "pota": 32980, + "shotty": 32981, + "gibt": 32982, + "simi": 32983, + "talkie": 32984, + "ghoul": 32985, + "ranged": 32986, + "sivan": 32987, + "#sunday": 32988, + "deadmau": 32989, + "annotated": 32990, + "pumpin": 32991, + "nephew's": 32992, + "freestyles": 32993, + "boobear": 32994, + "hurl": 32995, + "newsflash": 32996, + "webs": 32997, + "exquisitely": 32998, + "charlton": 32999, + "whitley": 33000, + "arses": 33001, + "lovelovelove": 33002, + "leverage": 33003, + "alle": 33004, + "subsequent": 33005, + "jumpstart": 33006, + "statistic": 33007, + ":v": 33008, + "windbreaker": 33009, + "pice": 33010, + "operas": 33011, + "jaymi": 33012, + "woohyun": 33013, + "johnathan": 33014, + "=p": 33015, + "soapy": 33016, + "livi": 33017, + "kristine": 33018, + "cmg": 33019, + "maldives": 33020, + "crowley": 33021, + "saf": 33022, + "mumbled": 33023, + "blinders": 33024, + "frowning": 33025, + "dirtier": 33026, + "maryjane": 33027, + "pegar": 33028, + "extremes": 33029, + "cheiro": 33030, + "boned": 33031, + "carhartt": 33032, + "buckled": 33033, + "paige's": 33034, + "baker's": 33035, + "acabe": 33036, + "#bangerz": 33037, + "tyj": 33038, + "permitted": 33039, + "nac": 33040, + "restriction": 33041, + "reus": 33042, + "tapout": 33043, + "provence": 33044, + "cyd": 33045, + "rewriting": 33046, + "canterbury": 33047, + "mths": 33048, + "gandaa": 33049, + "shadyside": 33050, + "lunchable": 33051, + "trainor": 33052, + "comet": 33053, + "#pleasestop": 33054, + "grizzlies": 33055, + "chavs": 33056, + "mgs": 33057, + "waiver": 33058, + "myron": 33059, + "cotta": 33060, + "viento": 33061, + "lyricist": 33062, + "picker": 33063, + "hibiscus": 33064, + "mch": 33065, + "icp": 33066, + "bombest": 33067, + "systematic": 33068, + "nmw": 33069, + "#nope": 33070, + "emery": 33071, + "steinbeck": 33072, + "sellouts": 33073, + "dissenting": 33074, + "ehy": 33075, + "alchemy": 33076, + "merc": 33077, + "peices": 33078, + "maura": 33079, + "kalahari": 33080, + "#l": 33081, + "lindona": 33082, + "enchantment": 33083, + "guarantees": 33084, + "pattys": 33085, + "yayayaya": 33086, + "tints": 33087, + "contradictions": 33088, + "latifah": 33089, + "guitarists": 33090, + "mansions": 33091, + "harding": 33092, + "velocity": 33093, + "cropping": 33094, + "aspirations": 33095, + "minolta": 33096, + "demam": 33097, + "blocker": 33098, + "puddin": 33099, + "cuarto": 33100, + "canelo": 33101, + "folloow": 33102, + "nudge": 33103, + "hafta": 33104, + "myx": 33105, + "pussyy": 33106, + "#nba": 33107, + "rinsed": 33108, + "caffe": 33109, + "sweeney": 33110, + "prostate": 33111, + "hyun": 33112, + "poli": 33113, + "wacked": 33114, + "rooming": 33115, + "scarry": 33116, + "curd": 33117, + "butterfly's": 33118, + "quase": 33119, + "jaylon": 33120, + "usain": 33121, + "licker": 33122, + "fashionably": 33123, + "guten": 33124, + "#enjoy": 33125, + "fytb": 33126, + "#blacklivesmatter": 33127, + "noda": 33128, + "verdi": 33129, + "refollowed": 33130, + "enfant": 33131, + "lsat": 33132, + "#bigbrother": 33133, + "perfil": 33134, + "andie": 33135, + "aftermarket": 33136, + "lika": 33137, + "headachee": 33138, + "#gettingold": 33139, + "showw": 33140, + "galactica": 33141, + "cutler": 33142, + "lepak": 33143, + "sali": 33144, + "mackerel": 33145, + "rounding": 33146, + "irresistable": 33147, + "bailing": 33148, + "frazzled": 33149, + "padin": 33150, + "hahahahhahahaha": 33151, + "goodnights": 33152, + "dijiste": 33153, + "oversight": 33154, + "erasing": 33155, + "jhb": 33156, + "kartel": 33157, + "mmhh": 33158, + "whiskers": 33159, + "druggie": 33160, + "leighton": 33161, + "gurr": 33162, + "considerable": 33163, + "deadwood": 33164, + "heheheheh": 33165, + "suuch": 33166, + "beggars": 33167, + "#imout": 33168, + "render": 33169, + "maeve": 33170, + "characteristics": 33171, + "edged": 33172, + "vienen": 33173, + "yezz": 33174, + "#vacation": 33175, + "slapper": 33176, + "campbell's": 33177, + "groupme": 33178, + "augurii": 33179, + "ita": 33180, + "carters": 33181, + "unbox": 33182, + "craves": 33183, + "artifacts": 33184, + "imaginations": 33185, + "#lovemyjob": 33186, + "#shh": 33187, + "mays": 33188, + "neutrogena": 33189, + "repetative": 33190, + "patricks": 33191, + "gow": 33192, + "bozo": 33193, + "ijn": 33194, + "cusses": 33195, + "inflation": 33196, + "blizzards": 33197, + "shazam": 33198, + "cayenne": 33199, + "mccall": 33200, + "stagecoach": 33201, + "afrojack": 33202, + "denn": 33203, + "prov": 33204, + "empezamos": 33205, + "joya": 33206, + "crunching": 33207, + "affliction": 33208, + "omitted": 33209, + "parallels": 33210, + "ibook": 33211, + "turnout": 33212, + "mural": 33213, + "ganteng": 33214, + "#florida": 33215, + "growled": 33216, + "froth": 33217, + "tireed": 33218, + "photocopy": 33219, + "sabor": 33220, + "capitals": 33221, + "modelo": 33222, + "relaxin": 33223, + "mayn": 33224, + "mast": 33225, + "fuucked": 33226, + "siempree": 33227, + "strauss": 33228, + "phoneless": 33229, + "proctor": 33230, + "classed": 33231, + "manques": 33232, + "islanders": 33233, + "loiter": 33234, + "roro": 33235, + "bombon": 33236, + "bashment": 33237, + "lovex": 33238, + "oiled": 33239, + "sibs": 33240, + "#singlebecause": 33241, + "providers": 33242, + "jenners": 33243, + "downgrading": 33244, + "trainee": 33245, + "loh": 33246, + "n'sync": 33247, + "cav": 33248, + "#lifesaver": 33249, + "alpine": 33250, + "wwi": 33251, + "#freedom": 33252, + "shoppingg": 33253, + "pervy": 33254, + "torso": 33255, + "quer": 33256, + "gq": 33257, + "jaffa": 33258, + "freya": 33259, + "oprah's": 33260, + "kaming": 33261, + "#mondaymotivation": 33262, + "monogrammed": 33263, + "miz": 33264, + "gua": 33265, + "consensus": 33266, + "mf'ers": 33267, + "wildflower": 33268, + "principals": 33269, + "repierced": 33270, + "defintely": 33271, + "kah": 33272, + "pleeasee": 33273, + "arches": 33274, + "recreational": 33275, + "trix": 33276, + "lorna": 33277, + "goodkind": 33278, + "#finalsweek": 33279, + "talo": 33280, + "cul": 33281, + "pesado": 33282, + "craven": 33283, + "summery": 33284, + "cambodia": 33285, + "xf": 33286, + "teases": 33287, + "paninis": 33288, + "downsides": 33289, + "rina": 33290, + "#genius": 33291, + "tdk": 33292, + "#exciting": 33293, + "palagi": 33294, + "misogynistic": 33295, + "estrella": 33296, + "discolored": 33297, + "overlooks": 33298, + "sacar": 33299, + "friendlys": 33300, + "garry": 33301, + "communicated": 33302, + "#pitchperfect": 33303, + "arde": 33304, + "phased": 33305, + "alonzo": 33306, + "jittery": 33307, + "gabriela": 33308, + "baldhead": 33309, + "uncanny": 33310, + "syrupy": 33311, + "cruzeiro": 33312, + "poacher": 33313, + "swipes": 33314, + "derek's": 33315, + "ayun": 33316, + "#la": 33317, + "esatto": 33318, + "anonymously": 33319, + "wooaahh": 33320, + "seulement": 33321, + "#nuffsaid": 33322, + "sebab": 33323, + "hahhahah": 33324, + "faltam": 33325, + "acorn": 33326, + "vide": 33327, + "meno": 33328, + "joshane": 33329, + "ggv": 33330, + "vacancy": 33331, + "breathtakingly": 33332, + "mrng": 33333, + "untuk": 33334, + "babymomma": 33335, + "coordinate": 33336, + "kem": 33337, + "fixer": 33338, + "wayward": 33339, + "sonho": 33340, + "frutti": 33341, + "recuperate": 33342, + "compose": 33343, + "regreso": 33344, + "grannies": 33345, + "#grr": 33346, + "malheureusement": 33347, + "hales": 33348, + "dando": 33349, + "gcse's": 33350, + "suhh": 33351, + "adjoining": 33352, + "crlh": 33353, + "babez": 33354, + "bullshitter": 33355, + "jetlag": 33356, + "shyness": 33357, + "azealia": 33358, + "splinters": 33359, + "robotic": 33360, + "carly's": 33361, + "fitch": 33362, + "payno": 33363, + "#girlsnight": 33364, + "jabari": 33365, + "impulsive": 33366, + "culver's": 33367, + "damit": 33368, + "jalepeno": 33369, + "attest": 33370, + "drumstick": 33371, + "railing": 33372, + "hallucinating": 33373, + "commotion": 33374, + "mhhm": 33375, + "whett": 33376, + "honeybun": 33377, + "hypnotize": 33378, + "nati": 33379, + "defos": 33380, + "compost": 33381, + "steroid": 33382, + "moviess": 33383, + "bordeaux": 33384, + "skillz": 33385, + "elated": 33386, + "handyman": 33387, + "#nufc": 33388, + "enoja": 33389, + "rass": 33390, + "racquet": 33391, + "#geordieshore": 33392, + "harmonizer": 33393, + "niece's": 33394, + "mbps": 33395, + "luvin": 33396, + "sidee": 33397, + "preached": 33398, + "teaspoon": 33399, + "alize": 33400, + "mandolin": 33401, + "clappers": 33402, + "sirr": 33403, + "#ready": 33404, + "lye": 33405, + "quanto": 33406, + "okays": 33407, + "btec": 33408, + "ahahahahahahaha": 33409, + "youyou": 33410, + "meplease": 33411, + "lynda": 33412, + "gloom": 33413, + "patrice": 33414, + ".o.d": 33415, + "lokos": 33416, + "tbhh": 33417, + "lasses": 33418, + "empires": 33419, + "sleeppyy": 33420, + "hunnies": 33421, + "ightt": 33422, + "garnished": 33423, + "jamboree": 33424, + "bloodline": 33425, + "eunice": 33426, + "metronome": 33427, + "shukran": 33428, + "omakase": 33429, + "wench": 33430, + "melty": 33431, + "clumpy": 33432, + "ostia": 33433, + "ganern": 33434, + "teo": 33435, + "jenga": 33436, + "jogger": 33437, + "disheartening": 33438, + "unchained": 33439, + "luminous": 33440, + "descanses": 33441, + "limelight": 33442, + "viper": 33443, + "whatevss": 33444, + "roseanne": 33445, + "becoz": 33446, + "handler": 33447, + "#tsm": 33448, + "camm": 33449, + "piggies": 33450, + "layan": 33451, + "nots": 33452, + "grady": 33453, + "concoctions": 33454, + "narrated": 33455, + "aline": 33456, + "firsts": 33457, + "#goodjob": 33458, + "lablab": 33459, + "sharkeisha": 33460, + "lebron's": 33461, + "hoses": 33462, + "maja": 33463, + "lleno": 33464, + "frands": 33465, + "savoy": 33466, + "footprint": 33467, + "butting": 33468, + "travellers": 33469, + "#tbh": 33470, + "lovingly": 33471, + "valves": 33472, + "#woohoo": 33473, + "hacia": 33474, + "fibromyalgia": 33475, + "radiation": 33476, + "accordion": 33477, + "friendless": 33478, + "marries": 33479, + "capriotti's": 33480, + "thrower": 33481, + "puny": 33482, + "fluently": 33483, + "candlelight": 33484, + "klase": 33485, + "#realmvp": 33486, + "panorama": 33487, + "felon": 33488, + "urg": 33489, + "krishna": 33490, + "#icandothis": 33491, + "kike": 33492, + "rotated": 33493, + "anaa": 33494, + "litteraly": 33495, + "perusing": 33496, + "strolled": 33497, + "ragu": 33498, + "presta": 33499, + "hadd": 33500, + "bernardo": 33501, + "chii": 33502, + "bibles": 33503, + "somerhalder": 33504, + "alg": 33505, + "hanbin": 33506, + "cakin": 33507, + "shootas": 33508, + "dippers": 33509, + "pwetty": 33510, + "endeavor": 33511, + "zia": 33512, + "planners": 33513, + "xy": 33514, + "spellbound": 33515, + "celly": 33516, + "fineapple": 33517, + "compatability": 33518, + "extends": 33519, + "bangz": 33520, + "scion": 33521, + "routers": 33522, + "toniight": 33523, + "tanisha": 33524, + "shon": 33525, + "middleton": 33526, + "morton's": 33527, + "hmwk": 33528, + "faneto": 33529, + "ceci": 33530, + "tonkotsu": 33531, + "spunky": 33532, + "oopsies": 33533, + "aai": 33534, + "effected": 33535, + "ahorita": 33536, + "#stalker": 33537, + "#bestie": 33538, + "segway": 33539, + "specialists": 33540, + "videoo": 33541, + "fuuh": 33542, + "mawnin": 33543, + "#nolove": 33544, + "catchers": 33545, + "yaahh": 33546, + "reciting": 33547, + "milford": 33548, + "terus": 33549, + "bryanna": 33550, + "yhe": 33551, + "handout": 33552, + "incognito": 33553, + "frappes": 33554, + "carmax": 33555, + "nutt": 33556, + "sunburns": 33557, + "neverending": 33558, + "sanaa": 33559, + "does'nt": 33560, + "transcends": 33561, + "praia": 33562, + "gaa": 33563, + "blacking": 33564, + "donkeys": 33565, + "nex": 33566, + "wiggly": 33567, + "#teambreezy": 33568, + "#suits": 33569, + "greaatt": 33570, + "#praisethelord": 33571, + "medicore": 33572, + "chisme": 33573, + "unclean": 33574, + "carpeting": 33575, + "england's": 33576, + "aol": 33577, + "swank": 33578, + "truffled": 33579, + "dollop": 33580, + "bitcch": 33581, + "edna": 33582, + "lovecraft": 33583, + "tann": 33584, + "lowry": 33585, + "macie": 33586, + "joi": 33587, + "adviser": 33588, + "favoritism": 33589, + "drose": 33590, + "dermal": 33591, + "rota": 33592, + "sobriety": 33593, + "petites": 33594, + "vatican": 33595, + "fernanda": 33596, + "taray": 33597, + "sigam": 33598, + "frail": 33599, + "histories": 33600, + "alc": 33601, + "vender": 33602, + "harem": 33603, + "#fridayfeeling": 33604, + "mikey's": 33605, + "dehydrator": 33606, + "grands": 33607, + "plunger": 33608, + "#greatday": 33609, + "smashin": 33610, + "whoole": 33611, + "lonestar": 33612, + "#uhoh": 33613, + "mettre": 33614, + "yd": 33615, + "offside": 33616, + "rpm": 33617, + "shuut": 33618, + "arden": 33619, + "valdez": 33620, + "smiler": 33621, + "tahniah": 33622, + "artic": 33623, + "midlife": 33624, + "pretenders": 33625, + "ari's": 33626, + "reptile": 33627, + "patna": 33628, + "battlefront": 33629, + "modesty": 33630, + "pieced": 33631, + "fdait": 33632, + "karissa": 33633, + "summarize": 33634, + "joey's": 33635, + "caden": 33636, + "zoot": 33637, + "weekender": 33638, + "bolivia": 33639, + "#americanhorrorstory": 33640, + "segments": 33641, + "tso": 33642, + "sony's": 33643, + "mapping": 33644, + "mattel": 33645, + "cge": 33646, + "recuerda": 33647, + "wthh": 33648, + "respiratory": 33649, + "compote": 33650, + "trinna": 33651, + "ooc": 33652, + "atc": 33653, + "wiggins": 33654, + "tesoro": 33655, + "sbb": 33656, + "belum": 33657, + "locale": 33658, + "isi": 33659, + "velveeta": 33660, + "sorna": 33661, + "cocinar": 33662, + "mismatch": 33663, + "utsa": 33664, + "hennessey": 33665, + "piccolo": 33666, + "comprend": 33667, + "meditating": 33668, + "actuality": 33669, + "tatto": 33670, + "consistant": 33671, + "seagal": 33672, + "barr": 33673, + "fickle": 33674, + "displaying": 33675, + "belloo": 33676, + "intrams": 33677, + "rootbeer": 33678, + "restful": 33679, + "pandora's": 33680, + "stang": 33681, + "conceal": 33682, + "doorman": 33683, + "interminable": 33684, + "uname": 33685, + "tunisia": 33686, + "staten": 33687, + "romanian": 33688, + "guapoo": 33689, + "roadside": 33690, + "idfw": 33691, + "korey": 33692, + "ontop": 33693, + "hansel": 33694, + "waistline": 33695, + "indepth": 33696, + "cerca": 33697, + "okeh": 33698, + "capresso": 33699, + "cornflakes": 33700, + "nish": 33701, + "peruse": 33702, + "ragin": 33703, + "optimist": 33704, + "dippy": 33705, + "carnivore": 33706, + "odioo": 33707, + "kur": 33708, + "boutah": 33709, + "spellcheck": 33710, + "saunders": 33711, + "krabby": 33712, + "slfl": 33713, + "kakayanin": 33714, + "#loveyoutoo": 33715, + "synergy": 33716, + "kohl's": 33717, + "chamomile": 33718, + "mundial": 33719, + "aggies": 33720, + "moesha": 33721, + "#boxing": 33722, + "whistled": 33723, + "tegan": 33724, + "moz": 33725, + "shahid": 33726, + "binders": 33727, + "hugger": 33728, + "ratty": 33729, + "soya": 33730, + "gnats": 33731, + "realms": 33732, + "micaela": 33733, + "seeya": 33734, + "sexi": 33735, + "taming": 33736, + "#30": 33737, + "idnt": 33738, + "meaan": 33739, + "mell": 33740, + "juana": 33741, + "dialing": 33742, + "bombe": 33743, + "lovelys": 33744, + "guurrll": 33745, + "ats": 33746, + "axx": 33747, + "onerepublic": 33748, + "participants": 33749, + "#camerondallas": 33750, + "zaman": 33751, + "#sarcastictweet": 33752, + "miyah": 33753, + "streeter": 33754, + "mally": 33755, + "ballard": 33756, + "orchids": 33757, + "bootay": 33758, + "umi": 33759, + "burry": 33760, + "weeding": 33761, + "devouring": 33762, + "tgi's": 33763, + "lightsaber": 33764, + "#flawless": 33765, + "freshh": 33766, + "yoona": 33767, + "uncaring": 33768, + "perimeter": 33769, + "elegantly": 33770, + "chained": 33771, + "redwall": 33772, + "rejuvenated": 33773, + "snyder": 33774, + "lawa": 33775, + "trombone": 33776, + "antonia": 33777, + "rompers": 33778, + "stackin": 33779, + "babylove": 33780, + "ginebra": 33781, + "murked": 33782, + "#avfc": 33783, + "calibre": 33784, + "hustled": 33785, + "prized": 33786, + "partna": 33787, + "antivirus": 33788, + "abrasive": 33789, + "eaa": 33790, + "#dayoff": 33791, + "caniff": 33792, + "norbit": 33793, + "dontcha": 33794, + "parker's": 33795, + "wowow": 33796, + "pensacola": 33797, + "sinned": 33798, + "drywall": 33799, + "chattanooga": 33800, + "#countrymusic": 33801, + "chlamydia": 33802, + "belinda": 33803, + "rellenos": 33804, + "kimbo": 33805, + "goinn": 33806, + "mahirap": 33807, + "gmail": 33808, + "zumiez": 33809, + "pittsburg": 33810, + "mcat": 33811, + "knitters": 33812, + "okkay": 33813, + "lol'ing": 33814, + "veni": 33815, + "hehez": 33816, + "ghostly": 33817, + "apologetics": 33818, + "queme": 33819, + "ioo": 33820, + "finnaly": 33821, + "gremlins": 33822, + "blankie": 33823, + "dysfunction": 33824, + "tyg": 33825, + "peppermill": 33826, + "pweasee": 33827, + "luuh": 33828, + "gnome": 33829, + "tiernoo": 33830, + "salida": 33831, + "sewn": 33832, + "jeanne": 33833, + "pueda": 33834, + "gonzo": 33835, + "beeped": 33836, + "prune": 33837, + "clappin": 33838, + "unagi": 33839, + "jon's": 33840, + "escutando": 33841, + "igotta": 33842, + "bbqs": 33843, + "abandoning": 33844, + "pitts": 33845, + "yuzu": 33846, + "#banter": 33847, + "tiros": 33848, + "kas": 33849, + "fai": 33850, + "ericsson": 33851, + "prioritize": 33852, + "mioo": 33853, + "leary": 33854, + "footwork": 33855, + "tornados": 33856, + "saddening": 33857, + "linndo": 33858, + "smarts": 33859, + "tyla": 33860, + "congraats": 33861, + "fecking": 33862, + "broody": 33863, + "emeril": 33864, + "warts": 33865, + "motherfucka": 33866, + "earache": 33867, + "distributed": 33868, + "thumbnail": 33869, + "civilian": 33870, + "tle": 33871, + "whoever's": 33872, + "masons": 33873, + "helpers": 33874, + "#mce": 33875, + "weer": 33876, + "aretha": 33877, + "satellites": 33878, + "bullseye": 33879, + "eggy": 33880, + "llegado": 33881, + "babbee": 33882, + "outcomes": 33883, + "silencio": 33884, + "pampanga": 33885, + "tisha": 33886, + "optimal": 33887, + "invigorating": 33888, + "associating": 33889, + "turbulence": 33890, + "acronym": 33891, + "decal": 33892, + "there're": 33893, + "bodybuilding": 33894, + "usf": 33895, + "hards": 33896, + "valdosta": 33897, + "veremos": 33898, + "blasphemous": 33899, + "jordin": 33900, + "slacked": 33901, + "scoping": 33902, + "mouais": 33903, + "slurping": 33904, + "partir": 33905, + "surrounds": 33906, + "moii": 33907, + "aficionado": 33908, + "bookmark": 33909, + "ifeel": 33910, + "naga": 33911, + "goed": 33912, + "cheetahs": 33913, + "impossibly": 33914, + "#shattered": 33915, + "curren": 33916, + "loord": 33917, + "draggin": 33918, + "dejaron": 33919, + "abajo": 33920, + "carlitos": 33921, + "tiempos": 33922, + "hades": 33923, + "structural": 33924, + "griff": 33925, + "pane": 33926, + "mem": 33927, + "praxis": 33928, + "yearning": 33929, + "humped": 33930, + "tahj": 33931, + "dorney": 33932, + "fetal": 33933, + "marple": 33934, + "potassium": 33935, + "quin": 33936, + "saken": 33937, + "cordoba": 33938, + "mandar": 33939, + "usta": 33940, + "lait": 33941, + "#future": 33942, + "gaza": 33943, + "krall": 33944, + "tca": 33945, + "eighty": 33946, + "zan": 33947, + "bays": 33948, + "sumone": 33949, + "frans": 33950, + "larson": 33951, + "youngg": 33952, + "yorkers": 33953, + "clowned": 33954, + "funciona": 33955, + "galit": 33956, + "haloo": 33957, + "loch": 33958, + "l'aime": 33959, + "aquatic": 33960, + "awkwardest": 33961, + "vma": 33962, + "programmable": 33963, + "ocr": 33964, + "almanac": 33965, + "footing": 33966, + "cheri": 33967, + "tricolor": 33968, + "pryor": 33969, + "#duckdynasty": 33970, + "simples": 33971, + "shoppe": 33972, + "photographed": 33973, + "crowed": 33974, + "#lufc": 33975, + "galaxies": 33976, + "pewdiepie": 33977, + "#craving": 33978, + "oras": 33979, + "harts": 33980, + "ronan": 33981, + "jayde": 33982, + "commonly": 33983, + "#money": 33984, + "zumanity": 33985, + "concede": 33986, + "hooligan": 33987, + "irky": 33988, + "priya": 33989, + "levanta": 33990, + "sz": 33991, + "crowe": 33992, + "workable": 33993, + "bcause": 33994, + "cargos": 33995, + "fiesty": 33996, + "nyaa": 33997, + "familyy": 33998, + "reimburse": 33999, + "hollywood's": 34000, + "admirers": 34001, + "errand": 34002, + "tranquille": 34003, + "whirlwind": 34004, + "galway": 34005, + "matrimony": 34006, + "freakn": 34007, + "kjv": 34008, + "miro": 34009, + "lizz": 34010, + "dumbbells": 34011, + "sona": 34012, + "marlin": 34013, + "bear's": 34014, + "daves": 34015, + "shreveport": 34016, + "valentin": 34017, + "cavalier": 34018, + "carta": 34019, + "naoo": 34020, + "tido": 34021, + "#hopeful": 34022, + "#edm": 34023, + "teether": 34024, + "columbo": 34025, + "#getalife": 34026, + "gershwin": 34027, + "blistex": 34028, + "wieder": 34029, + "flashlights": 34030, + "dayquil": 34031, + "stoplight": 34032, + "canner": 34033, + "molls": 34034, + "milktea": 34035, + "humiliation": 34036, + "pullover": 34037, + "happ": 34038, + "trickin": 34039, + "westlake": 34040, + "sutra": 34041, + "recurring": 34042, + "dysmenorrhea": 34043, + "#thefamily": 34044, + "masha'allah": 34045, + "chocolatee": 34046, + "#bullshit": 34047, + "rana": 34048, + "whoohoo": 34049, + "lifehouse": 34050, + "pink's": 34051, + "monica's": 34052, + "bagi": 34053, + "#friendshipgoals": 34054, + "quavo": 34055, + "blinker": 34056, + "klaroline": 34057, + "gmo": 34058, + "distinguish": 34059, + "bellini": 34060, + "marcy": 34061, + "epilogue": 34062, + "gaayy": 34063, + "rss": 34064, + "nyu": 34065, + "wanta": 34066, + "midas": 34067, + "expectancy": 34068, + "fizzled": 34069, + "worldly": 34070, + "arthurian": 34071, + "goalss": 34072, + "starbursts": 34073, + "dayuum": 34074, + "jou": 34075, + "prometo": 34076, + "frnd": 34077, + "iloveyoumore": 34078, + "winsome": 34079, + "deg": 34080, + "#pp": 34081, + "yesyesyes": 34082, + "#2016": 34083, + "novak": 34084, + "dalawa": 34085, + "goedemorgen": 34086, + "hounds": 34087, + "#fresh": 34088, + "shatters": 34089, + "vodkas": 34090, + "grammatically": 34091, + "toliet": 34092, + "hahahahahahahha": 34093, + "halarious": 34094, + "tambay": 34095, + "yazz": 34096, + "postino": 34097, + "oneself": 34098, + "wilson's": 34099, + "thunderbird": 34100, + "slinky": 34101, + "conducive": 34102, + "contemplated": 34103, + "walters": 34104, + "tooken": 34105, + "toco": 34106, + "resale": 34107, + "tgis": 34108, + "brixton": 34109, + "rebelution": 34110, + "uce": 34111, + "fashionista": 34112, + "kutcher": 34113, + "mouthwatering": 34114, + "divey": 34115, + "epal": 34116, + "tato": 34117, + "taeyang": 34118, + "siena": 34119, + "gooden": 34120, + "wild'n": 34121, + "dehumidifier": 34122, + "occurring": 34123, + "contaminated": 34124, + "australians": 34125, + "artie": 34126, + "godiva": 34127, + "marshawn": 34128, + "communal": 34129, + "reacts": 34130, + "lovebirds": 34131, + "salope": 34132, + "traveler's": 34133, + "matagal": 34134, + "dahl": 34135, + "reincarnated": 34136, + "prissy": 34137, + "swoll": 34138, + "kaela": 34139, + "saran": 34140, + "puffed": 34141, + "comparative": 34142, + "janes": 34143, + "hab": 34144, + "t'up": 34145, + "powerbook": 34146, + "#daddy": 34147, + "laborious": 34148, + "podge": 34149, + "parka": 34150, + "turnupp": 34151, + "jajajajaa": 34152, + "stitched": 34153, + "dfw": 34154, + "snapchatt": 34155, + "#bb16": 34156, + "splurging": 34157, + "sog": 34158, + "#lakers": 34159, + "culturally": 34160, + "alie": 34161, + "eepp": 34162, + "barrels": 34163, + "yummyy": 34164, + "wading": 34165, + "trevon": 34166, + "keno": 34167, + "trampled": 34168, + "grama": 34169, + "huckleberry": 34170, + "concords": 34171, + "vestido": 34172, + "kenwood": 34173, + "kamo": 34174, + "zico": 34175, + "oversleep": 34176, + "gutting": 34177, + "torrent": 34178, + "machaca": 34179, + "mangu": 34180, + "highness": 34181, + "warranted": 34182, + "sieve": 34183, + "frey": 34184, + "conn": 34185, + "ffss": 34186, + "wept": 34187, + "esha": 34188, + "ballantyne": 34189, + "ihysm": 34190, + "misa": 34191, + "redheads": 34192, + "controlla": 34193, + "cleaver": 34194, + "sonora": 34195, + "bibimbap": 34196, + "seriouslyy": 34197, + "reeal": 34198, + "swimwear": 34199, + "undying": 34200, + "differentiate": 34201, + "dejas": 34202, + "sket": 34203, + "salespeople": 34204, + "macey": 34205, + "meijer": 34206, + "bullshitted": 34207, + "twirling": 34208, + "damme": 34209, + "flax": 34210, + "memberships": 34211, + "warwick": 34212, + "reopened": 34213, + "mccarran": 34214, + "rachelle": 34215, + "probaly": 34216, + "paulie": 34217, + "purdy": 34218, + "uaap": 34219, + "#followher": 34220, + "wis": 34221, + "sinabi": 34222, + "terabithia": 34223, + "viners": 34224, + "aussii": 34225, + "vergonha": 34226, + "janie": 34227, + "babie": 34228, + "ys": 34229, + "naalala": 34230, + "rusher": 34231, + "katy's": 34232, + "ladders": 34233, + "gottaa": 34234, + "snapstory": 34235, + "necesitaba": 34236, + "steves": 34237, + "bobbing": 34238, + "steeler": 34239, + "ronny": 34240, + "nars": 34241, + "branson": 34242, + "photo's": 34243, + "pearson": 34244, + "bribed": 34245, + "generated": 34246, + "singe": 34247, + "csu": 34248, + "yoon": 34249, + "platonic": 34250, + "aback": 34251, + "ringtones": 34252, + "openers": 34253, + "pmp": 34254, + "grownups": 34255, + "cleanin": 34256, + "hijueputa": 34257, + "lesly": 34258, + "chateau": 34259, + "wru": 34260, + "eman": 34261, + "btob": 34262, + "#nevergiveup": 34263, + "andes": 34264, + "stephs": 34265, + "chocking": 34266, + "spock": 34267, + "supe": 34268, + "ojt": 34269, + "ghad": 34270, + "clinics": 34271, + "fairmont": 34272, + "outlines": 34273, + "lightshow": 34274, + "selenators": 34275, + "bally": 34276, + "bord": 34277, + "auckland": 34278, + "ireally": 34279, + "rko": 34280, + "stilettos": 34281, + "navigating": 34282, + "qi": 34283, + "constipation": 34284, + "fulham": 34285, + "suckaa": 34286, + "linebacker": 34287, + "jajajajjaja": 34288, + "sheridan": 34289, + "kristian": 34290, + "wicker": 34291, + "jajajajajajajaj": 34292, + "deducted": 34293, + "asimov": 34294, + "yourr": 34295, + "woozy": 34296, + "powerless": 34297, + "kome": 34298, + "friedman": 34299, + "edu": 34300, + "lethargic": 34301, + "shelby's": 34302, + "baabyy": 34303, + "forsaken": 34304, + "btwn": 34305, + "lightest": 34306, + "koda": 34307, + "mwf": 34308, + "frighteningly": 34309, + "christian's": 34310, + "mommyy": 34311, + "alexx": 34312, + "#pfb": 34313, + "boppin": 34314, + "stunted": 34315, + "yellowstone": 34316, + "traditionally": 34317, + "#honesthour": 34318, + "becus": 34319, + "wizkid": 34320, + "arrgh": 34321, + "juventus": 34322, + "camiseta": 34323, + "#never": 34324, + "conto": 34325, + "anc": 34326, + "fizzles": 34327, + "jiu": 34328, + "tablecloth": 34329, + "moor": 34330, + "hight": 34331, + "drek": 34332, + "bangladesh": 34333, + "onze": 34334, + "cap'n": 34335, + "descanso": 34336, + "seminary": 34337, + "lezz": 34338, + "headliner": 34339, + "referenced": 34340, + "stawwp": 34341, + "noes": 34342, + "mendez": 34343, + "compras": 34344, + "housed": 34345, + "amaretto": 34346, + "rippin": 34347, + "xe": 34348, + "silas": 34349, + "malachi": 34350, + "booby": 34351, + "squinting": 34352, + "bowler": 34353, + "hoppy": 34354, + "hiked": 34355, + "perfecting": 34356, + "woohooo": 34357, + "#starwars": 34358, + "wn": 34359, + "seatmate": 34360, + "pewds": 34361, + "joel's": 34362, + "doone": 34363, + "deem": 34364, + "dekalb": 34365, + "maha": 34366, + "encontre": 34367, + "experiance": 34368, + "longtemps": 34369, + "conoces": 34370, + "dears": 34371, + "neeson": 34372, + "pluses": 34373, + "quinton": 34374, + "haim": 34375, + "unexciting": 34376, + "slinging": 34377, + "frikin": 34378, + "liberating": 34379, + "relived": 34380, + "dumbing": 34381, + "takeaways": 34382, + "salivating": 34383, + "simons": 34384, + "awwnn": 34385, + "botanical": 34386, + "bonjouur": 34387, + "theta": 34388, + "carpal": 34389, + "trifle": 34390, + "makasi": 34391, + "ionic": 34392, + "dekat": 34393, + "luu": 34394, + "heyer": 34395, + "zooted": 34396, + "supieras": 34397, + "omygod": 34398, + "#hatersgonnahate": 34399, + "formally": 34400, + "jennifer's": 34401, + "suprises": 34402, + "murph": 34403, + "zuma": 34404, + "rentre": 34405, + "animes": 34406, + "bahahahah": 34407, + "karts": 34408, + "shawl": 34409, + "shittier": 34410, + "regent": 34411, + "uca": 34412, + "tika": 34413, + "gro": 34414, + "paigey": 34415, + "detectors": 34416, + "margo": 34417, + "consumes": 34418, + "pupunta": 34419, + "cowell": 34420, + "compaq": 34421, + "lawless": 34422, + "shelb": 34423, + "bati": 34424, + "loww": 34425, + "pny": 34426, + "verona": 34427, + "flagging": 34428, + "veiled": 34429, + "bitting": 34430, + "taters": 34431, + "#bejealous": 34432, + "haste": 34433, + "dynamo": 34434, + "vicodin": 34435, + "swirls": 34436, + "sora": 34437, + "confined": 34438, + "dario": 34439, + "escalade": 34440, + "cambodian": 34441, + "tyres": 34442, + "maggie's": 34443, + "waterford": 34444, + "tonka": 34445, + "oat": 34446, + "cursi": 34447, + "miscarriage": 34448, + "ove": 34449, + "oma": 34450, + "#ilysm": 34451, + "#bb17": 34452, + "lorry": 34453, + "obligations": 34454, + "onga": 34455, + "alternator": 34456, + "outspoken": 34457, + "reeaallyy": 34458, + "chubs": 34459, + "themself": 34460, + "vlad": 34461, + "swims": 34462, + "knack": 34463, + "anyplace": 34464, + "#nonewfriends": 34465, + "preaches": 34466, + "throughly": 34467, + "exchanges": 34468, + "boll": 34469, + "dou": 34470, + "coltrane": 34471, + "hiker": 34472, + "temples": 34473, + "brampton": 34474, + "rozay": 34475, + "swill": 34476, + "medela": 34477, + "nathalie": 34478, + "refugees": 34479, + "kingina": 34480, + "demande": 34481, + "#tootired": 34482, + "suk": 34483, + "favore": 34484, + "twinsies": 34485, + "#content": 34486, + "smokehouse": 34487, + "wkd": 34488, + "meehh": 34489, + "reccommend": 34490, + "macabre": 34491, + "leapster": 34492, + "lakeland": 34493, + "#hann": 34494, + "slade": 34495, + "eai": 34496, + "disable": 34497, + "spacing": 34498, + "yho": 34499, + "onit": 34500, + "dentistry": 34501, + "lysol": 34502, + "corta": 34503, + "thc": 34504, + "gold's": 34505, + "#beentoolong": 34506, + "reassure": 34507, + "ruude": 34508, + "spastic": 34509, + "pio": 34510, + "gunaydin": 34511, + "yeshh": 34512, + "tengoo": 34513, + "preserved": 34514, + "jilly": 34515, + "burrata": 34516, + "lire": 34517, + "rasheeda": 34518, + "wor": 34519, + "devoir": 34520, + "oculus": 34521, + "planks": 34522, + "mwahahaha": 34523, + "jared's": 34524, + "#followfriday": 34525, + "confessing": 34526, + "dermals": 34527, + "transcription": 34528, + "shaina": 34529, + "supercross": 34530, + "colourpop": 34531, + "go's": 34532, + "epsom": 34533, + "goop": 34534, + "sleet": 34535, + "trekking": 34536, + "mou": 34537, + "trice": 34538, + "cerebral": 34539, + "beyonces": 34540, + "researchers": 34541, + "kimono": 34542, + "capping": 34543, + "slandering": 34544, + "skanks": 34545, + "tailbone": 34546, + "trackies": 34547, + "#depressing": 34548, + "sumtimes": 34549, + "decipher": 34550, + "tiffen": 34551, + "feening": 34552, + "percs": 34553, + "bosco": 34554, + "halloweentown": 34555, + "crazed": 34556, + "disfruta": 34557, + "crinee": 34558, + "alegra": 34559, + "muhfuckin": 34560, + "cocker": 34561, + "dyslexia": 34562, + "hani": 34563, + "dicking": 34564, + "errm": 34565, + "lookalike": 34566, + "tabi": 34567, + "voces": 34568, + "ezekiel": 34569, + "mercies": 34570, + "direction's": 34571, + "bcc": 34572, + "reflexology": 34573, + "conoce": 34574, + "vons": 34575, + "beggining": 34576, + "#noragrets": 34577, + "drools": 34578, + "benzema": 34579, + "confortable": 34580, + "sympa": 34581, + "jimbo": 34582, + "evacuate": 34583, + "expendables": 34584, + "botton": 34585, + "metropolitan": 34586, + "skillets": 34587, + "canisters": 34588, + "uhuu": 34589, + "xoxoxox": 34590, + "leto": 34591, + "blockin": 34592, + "balmain": 34593, + "dayyss": 34594, + "porquee": 34595, + "ascoo": 34596, + "necesario": 34597, + "commonwealth": 34598, + "#noschool": 34599, + "ais": 34600, + "#dragmedown": 34601, + "sientoo": 34602, + "lourdes": 34603, + "tantalizing": 34604, + "cartwheel": 34605, + "defrost": 34606, + "kade": 34607, + "straits": 34608, + "emu": 34609, + "muerto": 34610, + "coolant": 34611, + "jasne": 34612, + "#idgt": 34613, + "janay": 34614, + "dispatched": 34615, + "vj": 34616, + "songwriters": 34617, + "fiu": 34618, + "j'attend": 34619, + "carita": 34620, + "beng": 34621, + "#gftweet": 34622, + "teman": 34623, + "tragedies": 34624, + "buenaa": 34625, + "distressed": 34626, + "fathead": 34627, + "tld": 34628, + "sames": 34629, + "anther": 34630, + "bionic": 34631, + "tamarind": 34632, + "barrymore": 34633, + "columbian": 34634, + "lyfee": 34635, + "unwrapped": 34636, + "pragmatic": 34637, + "embraced": 34638, + "bygone": 34639, + "manhood": 34640, + "matias": 34641, + "doncaster": 34642, + "ethel": 34643, + "feely": 34644, + "kerja": 34645, + "mishmash": 34646, + "johnston": 34647, + "mf'er": 34648, + "danica": 34649, + "operational": 34650, + "thaw": 34651, + "glasto": 34652, + "proprietary": 34653, + "sorcerer's": 34654, + "sayers": 34655, + "apple's": 34656, + "goog": 34657, + "#letsmakeitawkward": 34658, + "dickinson": 34659, + "jugo": 34660, + "wards": 34661, + "jesse's": 34662, + "pellets": 34663, + "kapoy": 34664, + "phora": 34665, + "serge": 34666, + "tellers": 34667, + "cyclone": 34668, + "missyouu": 34669, + "partys": 34670, + "dsu": 34671, + "#newgirl": 34672, + "acknowledges": 34673, + "sayingg": 34674, + "#39": 34675, + "grafton": 34676, + "ipswich": 34677, + ":}": 34678, + "byu": 34679, + "gul": 34680, + "doente": 34681, + "butchering": 34682, + "beli": 34683, + "poppinn": 34684, + "allnighter": 34685, + "appalachian": 34686, + "laissez": 34687, + "boof": 34688, + "sortie": 34689, + "cummins": 34690, + "shity": 34691, + "wafer": 34692, + "keren": 34693, + "asvab": 34694, + "rectangular": 34695, + "std's": 34696, + "realtalk": 34697, + "baii": 34698, + "oklm": 34699, + "topanga": 34700, + "humiliating": 34701, + "chics": 34702, + "fangs": 34703, + "cla": 34704, + "hahahahahahahahahahahahaha": 34705, + "rarities": 34706, + "peasy": 34707, + "palma": 34708, + "sangre": 34709, + "rii": 34710, + "seguime": 34711, + "solidarity": 34712, + "cordon": 34713, + "green's": 34714, + "kimchee": 34715, + "pgh": 34716, + "maravilloso": 34717, + "tchaikovsky": 34718, + "fap": 34719, + "kassandra": 34720, + "gais": 34721, + "awry": 34722, + "grandsons": 34723, + "kaloka": 34724, + "#bitches": 34725, + "#it": 34726, + "aright": 34727, + "vele": 34728, + "pressie": 34729, + "omari": 34730, + "whines": 34731, + "horrendously": 34732, + "glace": 34733, + "crapp": 34734, + "juan's": 34735, + "do's": 34736, + "jejejeje": 34737, + "dummie": 34738, + "microfiber": 34739, + "yyaass": 34740, + "ghs": 34741, + "hardships": 34742, + "complainin": 34743, + "fav'd": 34744, + "billboards": 34745, + "conventions": 34746, + "mvp's": 34747, + "#volleyball": 34748, + "voltou": 34749, + "selamatpagi": 34750, + "karlee": 34751, + "belmont": 34752, + "gutsy": 34753, + "#27": 34754, + "guste": 34755, + "kabuki": 34756, + "zootopia": 34757, + "checkup": 34758, + "mutch": 34759, + "magnesium": 34760, + "boreed": 34761, + "alcoholism": 34762, + "rosati's": 34763, + "victoire": 34764, + "flav": 34765, + "snare": 34766, + "lira": 34767, + "wilbur": 34768, + "supermodel": 34769, + "buko": 34770, + "bellissimo": 34771, + "itzel": 34772, + "flabby": 34773, + "paging": 34774, + "screed": 34775, + "brags": 34776, + "dopee": 34777, + "#missedyou": 34778, + "nuna": 34779, + "pefect": 34780, + "liven": 34781, + "treacle": 34782, + "jokee": 34783, + "craig's": 34784, + "mijn": 34785, + "jeff's": 34786, + "#period": 34787, + "freeing": 34788, + "cicis": 34789, + "inventing": 34790, + "dif": 34791, + "compliant": 34792, + "escapist": 34793, + "bookworm": 34794, + "tuve": 34795, + "holliday": 34796, + "masterfully": 34797, + "thickest": 34798, + "endroit": 34799, + "kitty's": 34800, + "jailene": 34801, + "rehearsing": 34802, + "kalian": 34803, + "footed": 34804, + "waite": 34805, + "#loveyall": 34806, + "#mygirl": 34807, + "daat": 34808, + "fiquei": 34809, + "nellie": 34810, + "coldness": 34811, + "pleasei": 34812, + "maate": 34813, + "wanders": 34814, + "saiyan": 34815, + "pleading": 34816, + "otterbox": 34817, + "imym": 34818, + "converses": 34819, + "caldwell": 34820, + "scoota": 34821, + "kiyah": 34822, + "birtday": 34823, + "antichrist": 34824, + "rooted": 34825, + "dishing": 34826, + "falsetto": 34827, + "dr's": 34828, + "#facepalm": 34829, + "xander": 34830, + "#relieved": 34831, + "pipi": 34832, + "#senioryear": 34833, + "thanq": 34834, + "bri's": 34835, + "graced": 34836, + "brianna's": 34837, + "backache": 34838, + "thos": 34839, + "recruits": 34840, + "pamela's": 34841, + "peroxide": 34842, + "nacional": 34843, + "durmio": 34844, + "pleasent": 34845, + "treehouse": 34846, + "alamak": 34847, + "#getit": 34848, + "revue": 34849, + "essie": 34850, + "discerning": 34851, + "christa": 34852, + "pained": 34853, + "marketers": 34854, + "averaging": 34855, + "huum": 34856, + "pillowtalk": 34857, + "kingsley": 34858, + "kinfolk": 34859, + "projected": 34860, + "mustaches": 34861, + "expands": 34862, + "motif": 34863, + "unuseable": 34864, + "beak": 34865, + "#tweetyourheight": 34866, + "oshey": 34867, + "esh": 34868, + "#miami": 34869, + "vented": 34870, + "nclex": 34871, + "promis": 34872, + "alala": 34873, + "#votefifthharmony": 34874, + "bakla": 34875, + "integral": 34876, + "loudness": 34877, + "pako": 34878, + "uppercut": 34879, + "beatrice": 34880, + "eviction": 34881, + "crapola": 34882, + "houdini": 34883, + "annapolis": 34884, + "toons": 34885, + "charla": 34886, + "choppas": 34887, + "justinbieber": 34888, + "empowered": 34889, + "giftcard": 34890, + "enhancing": 34891, + "angie's": 34892, + "cheia": 34893, + "pounce": 34894, + "buchanan": 34895, + "frkn": 34896, + "pascal": 34897, + "bobcat": 34898, + "kut": 34899, + "missile": 34900, + "jsp": 34901, + "shaven": 34902, + "fazendo": 34903, + "brightening": 34904, + "generate": 34905, + "bende": 34906, + "errything": 34907, + "ingrown": 34908, + "tvz": 34909, + "recived": 34910, + "rav": 34911, + "quotations": 34912, + "venezuelan": 34913, + "penetrating": 34914, + "inflate": 34915, + "prehistoric": 34916, + "yonce": 34917, + "wicket": 34918, + "tday": 34919, + "ogre": 34920, + "kall": 34921, + "asan": 34922, + "frowns": 34923, + "scrubber": 34924, + "sexism": 34925, + "deffs": 34926, + "saudadess": 34927, + "chive": 34928, + "nando": 34929, + "shd": 34930, + "cid": 34931, + "swiftie": 34932, + "summin": 34933, + "endeavors": 34934, + "incorporated": 34935, + "frosh": 34936, + "chun": 34937, + "#gymflow": 34938, + "greenwich": 34939, + "paleo": 34940, + "consoles": 34941, + "stinko": 34942, + "#familyguy": 34943, + "progressed": 34944, + "lali": 34945, + "aviator": 34946, + "valiant": 34947, + "gnr": 34948, + "suss": 34949, + "gimnasio": 34950, + "fuvking": 34951, + "rtrtrt": 34952, + "baguettes": 34953, + "shrill": 34954, + "transylvania": 34955, + "yyeess": 34956, + "jitters": 34957, + "brigadaa": 34958, + "tgk": 34959, + "everybodyy": 34960, + "cooke": 34961, + "barriga": 34962, + "dono": 34963, + "grump": 34964, + "stylin": 34965, + "i'ts": 34966, + "law's": 34967, + "fitter": 34968, + "costed": 34969, + "favoritee": 34970, + "olvides": 34971, + "#thebachelor": 34972, + "hacienda": 34973, + "jt's": 34974, + "goodeve": 34975, + "kaleigh": 34976, + "#missedher": 34977, + "tatuaje": 34978, + "thst": 34979, + "pakai": 34980, + "chantelle": 34981, + "stepfather": 34982, + "nadir": 34983, + "inmates": 34984, + "merciful": 34985, + "#doctorwho": 34986, + "holl": 34987, + "#dreamteam": 34988, + "enhorabuena": 34989, + "muzzle": 34990, + "sat's": 34991, + "musik": 34992, + "kenny's": 34993, + "hiyaa": 34994, + "chel": 34995, + "tiernos": 34996, + "tnc": 34997, + "#33": 34998, + "histoire": 34999, + "bids": 35000, + "gabbi": 35001, + "supernova": 35002, + "robocop": 35003, + "arounds": 35004, + "cals": 35005, + "lurker": 35006, + "boudda": 35007, + "disses": 35008, + "unneeded": 35009, + "zx": 35010, + "ribena": 35011, + "#dance": 35012, + "gian": 35013, + "soiled": 35014, + "shagged": 35015, + "catwalk": 35016, + "exclude": 35017, + "arco": 35018, + "leith": 35019, + "plur": 35020, + "maricopa": 35021, + "worx": 35022, + "fanning": 35023, + "doown": 35024, + "muay": 35025, + "gostoso": 35026, + "coronado": 35027, + "humph": 35028, + "camisa": 35029, + "agustin": 35030, + "dorman": 35031, + "conviction": 35032, + "onward": 35033, + "bytch": 35034, + "topaz": 35035, + "lurks": 35036, + "destini": 35037, + "nitee": 35038, + "soto": 35039, + "chomp": 35040, + "gz": 35041, + "animorphs": 35042, + "#f1": 35043, + "inventor": 35044, + "hugest": 35045, + "ciara's": 35046, + "andrew's": 35047, + "carolina's": 35048, + "hewitt": 35049, + "pist": 35050, + "shawnee": 35051, + "sidetracked": 35052, + "tattoo's": 35053, + "lars": 35054, + "fellaini": 35055, + "#cantdeal": 35056, + "enty": 35057, + "dieta": 35058, + "maggi": 35059, + "brokeback": 35060, + "jethro": 35061, + "titts": 35062, + "bernice": 35063, + "riggins": 35064, + "lms": 35065, + "oahu": 35066, + "smudged": 35067, + "mehr": 35068, + "maximize": 35069, + "dena": 35070, + "fxcked": 35071, + "werkk": 35072, + "weller": 35073, + "elba": 35074, + "banshee": 35075, + "trouver": 35076, + "falar": 35077, + "intestines": 35078, + "vern": 35079, + "sketchbook": 35080, + "cubed": 35081, + "#hardwork": 35082, + "lvh": 35083, + "execellent": 35084, + "errythang": 35085, + "#soannoying": 35086, + "unlocking": 35087, + "herh": 35088, + "physic": 35089, + "booda": 35090, + "pomeranian": 35091, + "synch": 35092, + "julien": 35093, + "#26": 35094, + "#quoteoftheday": 35095, + "achoo": 35096, + "niceness": 35097, + "tastefully": 35098, + "hooped": 35099, + "#edsheeran": 35100, + "biddin": 35101, + "faav": 35102, + "deputy": 35103, + "lgo": 35104, + "telegram": 35105, + "littered": 35106, + "vito": 35107, + "knits": 35108, + "siva": 35109, + "wiki": 35110, + "talagang": 35111, + "#homesick": 35112, + "spectacularly": 35113, + "biihh": 35114, + "linkedin": 35115, + "lulu's": 35116, + "laserjet": 35117, + "wassam": 35118, + "rab": 35119, + "puntos": 35120, + "tahiti": 35121, + "eventho": 35122, + "kfb": 35123, + "erybody": 35124, + "enamorar": 35125, + "valise": 35126, + "corney": 35127, + "liana": 35128, + "ika": 35129, + "academically": 35130, + "retention": 35131, + "philosophers": 35132, + "baz": 35133, + "aziz": 35134, + "calculating": 35135, + "tributes": 35136, + "slimming": 35137, + "potomac": 35138, + "faute": 35139, + "adorably": 35140, + "tomarr": 35141, + "amem": 35142, + "mib": 35143, + "fbt": 35144, + "saltwater": 35145, + "doggin": 35146, + "astoundingly": 35147, + "corset": 35148, + "#peopleschoice": 35149, + "feriado": 35150, + "hayst": 35151, + "dawned": 35152, + "sermons": 35153, + "cutoff": 35154, + "conveyor": 35155, + "chantal": 35156, + "matata": 35157, + "alegria": 35158, + "magnifico": 35159, + "karim": 35160, + "vanishing": 35161, + "dawwg": 35162, + "pregoo": 35163, + "sharpest": 35164, + "probate": 35165, + "#bleedblue": 35166, + "future's": 35167, + "cannonball": 35168, + "cubans": 35169, + "rinduu": 35170, + "#nffc": 35171, + "metaphysical": 35172, + "harlan": 35173, + "breweries": 35174, + "arseholes": 35175, + "infantile": 35176, + "fim": 35177, + "prt": 35178, + "chiquito": 35179, + "grounding": 35180, + "kygo": 35181, + "sufrir": 35182, + "kegs": 35183, + "kelsi": 35184, + "ticketmaster": 35185, + "borgore": 35186, + "crusts": 35187, + "deadlift": 35188, + "thornton": 35189, + "tanta": 35190, + "whea": 35191, + "meself": 35192, + "gov't": 35193, + "oldd": 35194, + "ceasars": 35195, + "#unreal": 35196, + "consignment": 35197, + "amps": 35198, + "splint": 35199, + "bamboozled": 35200, + "sebas": 35201, + "watkins": 35202, + "danza": 35203, + "eragon": 35204, + "shitfaced": 35205, + "pigging": 35206, + "pinkie": 35207, + "hej": 35208, + "sleeveless": 35209, + "ped": 35210, + "pmsing": 35211, + "foes": 35212, + "disagreement": 35213, + "keith's": 35214, + "particle": 35215, + "yellowcard": 35216, + "#repeat": 35217, + "metallica's": 35218, + "emilee": 35219, + "eggroll": 35220, + "panalo": 35221, + "estudiando": 35222, + "itrip": 35223, + "barres": 35224, + "#childish": 35225, + "madrugadas": 35226, + "jwup": 35227, + "consultants": 35228, + "tomahawk": 35229, + "possessions": 35230, + "sanitized": 35231, + "shindig": 35232, + "alfa": 35233, + "shuld": 35234, + "cherub": 35235, + "sois": 35236, + "underdogs": 35237, + "fruitful": 35238, + "glands": 35239, + "asapp": 35240, + "kassidy": 35241, + "permits": 35242, + "carga": 35243, + "tamad": 35244, + "frnds": 35245, + "ted's": 35246, + "obvii": 35247, + "graze": 35248, + "weeknds": 35249, + "minhas": 35250, + "puerile": 35251, + "jordon": 35252, + "seabass": 35253, + "jtfoo": 35254, + "kf": 35255, + "poise": 35256, + "maxes": 35257, + "idolize": 35258, + "taut": 35259, + "notches": 35260, + "cums": 35261, + "beebee": 35262, + "discretion": 35263, + "rightfully": 35264, + "annoyances": 35265, + "occ": 35266, + "downpour": 35267, + "feh": 35268, + "anywayy": 35269, + "dunes": 35270, + "tooka": 35271, + "attribute": 35272, + "selleck": 35273, + "babas": 35274, + "sdsu": 35275, + "vat": 35276, + "jens": 35277, + "piba": 35278, + "pausing": 35279, + "goliath": 35280, + "twista": 35281, + "successor": 35282, + "mcafee": 35283, + "birdies": 35284, + "brazo": 35285, + "bsu": 35286, + "victimized": 35287, + "kneed": 35288, + "supplying": 35289, + "bootylicious": 35290, + "fritter": 35291, + "gammas": 35292, + "adeus": 35293, + "sumptuous": 35294, + "prin": 35295, + "veterinarian": 35296, + "tearss": 35297, + "watchout": 35298, + "sideman": 35299, + "forwarding": 35300, + "appetit": 35301, + "mukhang": 35302, + "keel": 35303, + "effectiveness": 35304, + "thyme": 35305, + "#fatass": 35306, + "#factsonly": 35307, + "#kidding": 35308, + "#mentionperfection": 35309, + "christina's": 35310, + "cavaliers": 35311, + "softener": 35312, + "nothingness": 35313, + "fruitvale": 35314, + "instances": 35315, + "brom": 35316, + "baecation": 35317, + "maaga": 35318, + "mcchickens": 35319, + "faim": 35320, + "hillside": 35321, + "marches": 35322, + "wheezing": 35323, + "anika": 35324, + "envoie": 35325, + "seeyou": 35326, + "scuffed": 35327, + "airbed": 35328, + "grapevine": 35329, + "#loveu": 35330, + "nickle": 35331, + "astrid": 35332, + "davids": 35333, + "sheff": 35334, + "mcdouble": 35335, + "jh": 35336, + "oq": 35337, + "hablee": 35338, + "dungeons": 35339, + "breds": 35340, + "hasf": 35341, + "bahn": 35342, + "pudge": 35343, + "transcripts": 35344, + "mentiroso": 35345, + "hada": 35346, + "nighht": 35347, + "hoa": 35348, + "#2013": 35349, + "marami": 35350, + "#raidernation": 35351, + "lanterns": 35352, + "assistir": 35353, + "ary": 35354, + "ery": 35355, + "fz": 35356, + "mobbing": 35357, + "henson": 35358, + "parcels": 35359, + "byy": 35360, + "d'une": 35361, + "#arianagrande": 35362, + "anterior": 35363, + "c.s.": 35364, + "schleepy": 35365, + "projota": 35366, + "staycation": 35367, + "xiumin": 35368, + "culprit": 35369, + "shoprite": 35370, + "paga": 35371, + "profitable": 35372, + "secluded": 35373, + "bilis": 35374, + "mimic": 35375, + "speculative": 35376, + "namo": 35377, + "sufficiently": 35378, + "leslie's": 35379, + "propa": 35380, + "isiah": 35381, + "collarbone": 35382, + "momz": 35383, + "connasse": 35384, + "workshops": 35385, + "cma": 35386, + "colly": 35387, + "evah": 35388, + "pratchett": 35389, + "daunting": 35390, + "homeward": 35391, + "jkjkjk": 35392, + "develops": 35393, + "vindaloo": 35394, + "gam": 35395, + "volviendo": 35396, + "parfaite": 35397, + "relentlessly": 35398, + "bootlegs": 35399, + "khadijah": 35400, + "burroughs": 35401, + "ump": 35402, + "purty": 35403, + "vickie": 35404, + "flim": 35405, + "splurged": 35406, + "coucher": 35407, + "mexx": 35408, + "nna": 35409, + "fwb": 35410, + "undeserving": 35411, + "whimper": 35412, + "eveyone": 35413, + "parmigiana": 35414, + "curing": 35415, + "wiccan": 35416, + "looker": 35417, + "hade": 35418, + "kneel": 35419, + "ras": 35420, + "bewitched": 35421, + "reddish": 35422, + "joseph's": 35423, + "pixma": 35424, + "sigee": 35425, + "gaad": 35426, + "casas": 35427, + "borat": 35428, + "wifee": 35429, + "sculpting": 35430, + "croydon": 35431, + "launcher": 35432, + "kyoto": 35433, + "brady's": 35434, + "brisa": 35435, + "autres": 35436, + "cutout": 35437, + "krusty": 35438, + "lillie": 35439, + "facking": 35440, + "sundown": 35441, + "condos": 35442, + "clumps": 35443, + "benny's": 35444, + "heller": 35445, + "cargador": 35446, + "chingada": 35447, + "nina's": 35448, + "picoult": 35449, + "supermarkets": 35450, + "tutors": 35451, + "#turnon": 35452, + "tarada": 35453, + "wg": 35454, + "securely": 35455, + "bandung": 35456, + "wunna": 35457, + "takeoff": 35458, + "rahul": 35459, + "bough": 35460, + "howd": 35461, + "qts": 35462, + "winch": 35463, + "vma's": 35464, + "alain": 35465, + "muchi": 35466, + "stillwater": 35467, + "vodafone": 35468, + "gigi's": 35469, + "madami": 35470, + "#tracknation": 35471, + "catfishing": 35472, + "snowstorm": 35473, + "tornadoes": 35474, + "#likeaboss": 35475, + "kay's": 35476, + "ichiban": 35477, + "warmup": 35478, + "churn": 35479, + "switchin": 35480, + "mind's": 35481, + "sunshinee": 35482, + "looves": 35483, + "unmitigated": 35484, + "#videomtv2015": 35485, + "wartime": 35486, + "eject": 35487, + "tabitha": 35488, + "schoo": 35489, + "laav": 35490, + "#whitegirlproblems": 35491, + "#apple": 35492, + "#youremoreattractiveif": 35493, + "gabbys": 35494, + "tora": 35495, + "traumatised": 35496, + "#babycomeback": 35497, + "olho": 35498, + "operates": 35499, + "#asktwitter": 35500, + "theif": 35501, + "bravest": 35502, + "lovelots": 35503, + "pleeaasee": 35504, + "rottweiler": 35505, + "#j": 35506, + "oups": 35507, + "smoothest": 35508, + "dawson's": 35509, + "todaayy": 35510, + "choppin": 35511, + "cuervo": 35512, + "goofiest": 35513, + "lovinn": 35514, + "#out": 35515, + "amazingness": 35516, + "blowjobs": 35517, + "recovers": 35518, + "sedaris": 35519, + "eloise": 35520, + "#jammin": 35521, + "marlboro": 35522, + "situ": 35523, + "kindaa": 35524, + "linea": 35525, + "firemen": 35526, + "ind": 35527, + "unruly": 35528, + "tongan": 35529, + "musubi": 35530, + "seo": 35531, + "llorando": 35532, + "kyuhyun": 35533, + "unending": 35534, + "flung": 35535, + "danng": 35536, + "countertop": 35537, + "planter": 35538, + "sensations": 35539, + "blushed": 35540, + "shadowing": 35541, + "jacksons": 35542, + "filets": 35543, + "endgame": 35544, + "fulton": 35545, + "surpass": 35546, + "bdubbs": 35547, + "laminated": 35548, + "manquer": 35549, + "ylona": 35550, + "scoliosis": 35551, + "hubert": 35552, + "supremes": 35553, + "santas": 35554, + "kause": 35555, + "ember": 35556, + "machinery": 35557, + "okies": 35558, + "elles": 35559, + "breadth": 35560, + "noun": 35561, + "logistics": 35562, + "stewed": 35563, + "cesar's": 35564, + "yendo": 35565, + "sorvete": 35566, + "bandwagons": 35567, + "parentals": 35568, + "ranveer": 35569, + "persie": 35570, + "#classof2014": 35571, + "affirmation": 35572, + "mires": 35573, + "jalan": 35574, + "anthro": 35575, + "sepa": 35576, + "godspeed": 35577, + "wieners": 35578, + "sportsmanship": 35579, + "mientras": 35580, + "trims": 35581, + "tera": 35582, + "necesita": 35583, + "#rihanna": 35584, + "millz": 35585, + "kon": 35586, + "vacationing": 35587, + "mista": 35588, + "panto": 35589, + "gbe": 35590, + "umpire": 35591, + "schl": 35592, + "camara": 35593, + "rumi": 35594, + "basmati": 35595, + "rucker": 35596, + "ponds": 35597, + "chaplin": 35598, + "kickbacks": 35599, + "somebodys": 35600, + "rollicking": 35601, + "hahahahahhaa": 35602, + "whs": 35603, + "#onetreehill": 35604, + "nominees": 35605, + "swayze": 35606, + "resourceful": 35607, + "mus": 35608, + "alo": 35609, + "grandaughter": 35610, + "tarte": 35611, + "wird": 35612, + "lamer": 35613, + "#dumb": 35614, + "ikik": 35615, + "mintues": 35616, + "floyd's": 35617, + "emperors": 35618, + "fabricated": 35619, + "felices": 35620, + "mawning": 35621, + "teletubbies": 35622, + "marin": 35623, + "baboy": 35624, + "gerne": 35625, + "justifying": 35626, + "optima": 35627, + "taba": 35628, + "traumatizing": 35629, + "bonnaroo": 35630, + "validated": 35631, + "unibrow": 35632, + "ronin": 35633, + "vio": 35634, + "kory": 35635, + "termina": 35636, + "igo": 35637, + "haays": 35638, + "xavi": 35639, + "plopped": 35640, + "hoolaa": 35641, + "carriers": 35642, + "sparknotes": 35643, + "jeudi": 35644, + "tomrw": 35645, + "sunbae": 35646, + "visibility": 35647, + "myselff": 35648, + "matematica": 35649, + "vaio": 35650, + "altec": 35651, + "kum": 35652, + "#beast": 35653, + "promposals": 35654, + "ceaser": 35655, + "clavo": 35656, + "tey": 35657, + "qualifications": 35658, + "unsuspecting": 35659, + "fullscreen": 35660, + "suffolk": 35661, + "fondant": 35662, + "dlink": 35663, + "froid": 35664, + "thyself": 35665, + "toeing": 35666, + "anot": 35667, + "prologue": 35668, + "myungsoo": 35669, + "marshalls": 35670, + "s's": 35671, + "bernstein": 35672, + "luda": 35673, + "disciplined": 35674, + "drippy": 35675, + "rammstein": 35676, + "isaw": 35677, + "decile": 35678, + "rellos": 35679, + "gmat": 35680, + "rosas": 35681, + "stephenson": 35682, + "ootd": 35683, + "gudnite": 35684, + "ann's": 35685, + "pram": 35686, + "unparalleled": 35687, + "definatley": 35688, + "pahinga": 35689, + "ilsym": 35690, + "ultron": 35691, + "#nowfollowing": 35692, + "austen's": 35693, + "beed": 35694, + "trippn": 35695, + "bruddas": 35696, + "alycia": 35697, + "demetria": 35698, + "neisha": 35699, + "aboot": 35700, + "morning's": 35701, + "gani": 35702, + "chalky": 35703, + "microwaves": 35704, + "#soppytweet": 35705, + "heartedly": 35706, + "barbarian": 35707, + "surveillance": 35708, + "blindly": 35709, + "sleeved": 35710, + "kimmie": 35711, + "scofield": 35712, + "distances": 35713, + "nates": 35714, + "#b": 35715, + "fvckin": 35716, + "ubos": 35717, + "fearful": 35718, + "angas": 35719, + "talkk": 35720, + "archaeology": 35721, + "thawed": 35722, + "douchey": 35723, + "yaoi": 35724, + "cloying": 35725, + "kanji": 35726, + "purists": 35727, + "#herewego": 35728, + "fragmented": 35729, + "spalding": 35730, + "mentirosa": 35731, + "eba": 35732, + "differential": 35733, + "avoids": 35734, + "porkchops": 35735, + "kod": 35736, + "happenings": 35737, + "commited": 35738, + "vry": 35739, + "#orangeisthenewblack": 35740, + "delly": 35741, + "broil": 35742, + "awoken": 35743, + "kiah": 35744, + "dtm": 35745, + "#fatgirlprobs": 35746, + "haish": 35747, + "cedes": 35748, + "lohanthony": 35749, + "spokane": 35750, + "gelatin": 35751, + "byye": 35752, + "bloqueo": 35753, + "isee": 35754, + "climbs": 35755, + "larga": 35756, + "jeweler": 35757, + "manifest": 35758, + "sniffling": 35759, + "lizquen": 35760, + "stinka": 35761, + "samin": 35762, + "heatwave": 35763, + "rhythmic": 35764, + "italiano": 35765, + "mabel": 35766, + "capitulo": 35767, + "n'aww": 35768, + "swindon": 35769, + "gurus": 35770, + "hinder": 35771, + "girlaa": 35772, + "detest": 35773, + "lito": 35774, + "patronage": 35775, + "vicio": 35776, + "reciever": 35777, + "fresca": 35778, + "menino": 35779, + "sejarah": 35780, + "cenar": 35781, + "empower": 35782, + "tls": 35783, + "stamford": 35784, + "flapping": 35785, + "sucess": 35786, + "leotard": 35787, + "steeds": 35788, + "qu'elle": 35789, + "hibs": 35790, + "dwl": 35791, + "chasity": 35792, + "interesa": 35793, + "makenna": 35794, + "tadinho": 35795, + "retailers": 35796, + "inverter": 35797, + "earthlings": 35798, + "combed": 35799, + "complementing": 35800, + "itouch": 35801, + "kimberley": 35802, + "muriendo": 35803, + "weenies": 35804, + "calfs": 35805, + "uml": 35806, + "rendezvous": 35807, + "lassi": 35808, + "westminster": 35809, + "zep": 35810, + "jawbone": 35811, + "mikee": 35812, + "feeders": 35813, + "scatter": 35814, + "popin": 35815, + "dsp": 35816, + "awko": 35817, + "sayless": 35818, + "racers": 35819, + "indigestion": 35820, + "comercial": 35821, + "zamnn": 35822, + "bitcchh": 35823, + "coached": 35824, + "pdc": 35825, + "imran": 35826, + "earth's": 35827, + "cautionary": 35828, + "relies": 35829, + "i'on": 35830, + "paras": 35831, + "roux": 35832, + "breeder": 35833, + "album's": 35834, + "commands": 35835, + "manhunt": 35836, + "julianna": 35837, + "#girlprobs": 35838, + "sipp": 35839, + "mla": 35840, + "angrily": 35841, + "mowed": 35842, + "bogart": 35843, + "facelift": 35844, + "genders": 35845, + "pasen": 35846, + "lululemon": 35847, + "doodie": 35848, + "aron": 35849, + "fullerton": 35850, + "grampa": 35851, + "fertile": 35852, + "yesung": 35853, + "sremmurd": 35854, + "twitt": 35855, + "kindred": 35856, + "hmmph": 35857, + "tropic": 35858, + "hangouts": 35859, + "douce": 35860, + "resin": 35861, + "disintegrated": 35862, + "fucksake": 35863, + "#lessonlearned": 35864, + "aleah": 35865, + "#thevampirediaries": 35866, + "kennot": 35867, + "lowers": 35868, + "donno": 35869, + "entero": 35870, + "hafiz": 35871, + "anderson's": 35872, + "asx": 35873, + "nisa": 35874, + "mwi": 35875, + "dlo": 35876, + "ajaa": 35877, + "conquest": 35878, + "stumped": 35879, + "workaholic": 35880, + "quailty": 35881, + "chinita": 35882, + "shawt": 35883, + "#toogood": 35884, + "quererte": 35885, + "kassy": 35886, + "mudd": 35887, + "meka": 35888, + "desean": 35889, + "robert's": 35890, + "illnesses": 35891, + "pettyy": 35892, + "#callmecam": 35893, + "californication": 35894, + "heathrow": 35895, + "pearce": 35896, + "catie": 35897, + "xiao": 35898, + "meatless": 35899, + "mommaa": 35900, + "nawala": 35901, + "yari": 35902, + "flordia": 35903, + "summaries": 35904, + "#ilovehim": 35905, + "arrasou": 35906, + "sarili": 35907, + "firewall": 35908, + "keats": 35909, + "ivana": 35910, + "sfm": 35911, + "hill's": 35912, + "crapy": 35913, + "unspeakable": 35914, + "maddest": 35915, + "frankfurt": 35916, + "olde": 35917, + "bahrain": 35918, + "larry's": 35919, + "cela": 35920, + "paradiso": 35921, + "constantine": 35922, + "coals": 35923, + "vienee": 35924, + "hauling": 35925, + "streep": 35926, + "whoevers": 35927, + "#decisionsdecisions": 35928, + "weekk": 35929, + "pushups": 35930, + "blackhawk": 35931, + "introvert": 35932, + "meninas": 35933, + "driest": 35934, + "chakra": 35935, + "discriminating": 35936, + "headshot": 35937, + "lassies": 35938, + "baldacci": 35939, + "dolby": 35940, + "perrfect": 35941, + "#welcometweet": 35942, + "fafa": 35943, + "administrator": 35944, + "mensajes": 35945, + "#lovelife": 35946, + "#yourwelcome": 35947, + "corkage": 35948, + "feets": 35949, + "sighed": 35950, + "silhouette": 35951, + "unbeaten": 35952, + "extinction": 35953, + "interfering": 35954, + "relegation": 35955, + "horible": 35956, + "tran": 35957, + "hacerme": 35958, + "besta": 35959, + "happyx": 35960, + "pern": 35961, + "orgo": 35962, + "colgate": 35963, + "mela": 35964, + "dissect": 35965, + "frito": 35966, + "gronk": 35967, + "mathews": 35968, + "reimbursed": 35969, + "spares": 35970, + "misfit": 35971, + "bootie": 35972, + "cabelo": 35973, + "orwell": 35974, + "concourse": 35975, + "#everytime": 35976, + "coraline": 35977, + "independently": 35978, + "showerr": 35979, + "swarovski": 35980, + "drawin": 35981, + "layne": 35982, + "moin": 35983, + "kennedi": 35984, + "#heartbreaker": 35985, + "jocing": 35986, + "bongo": 35987, + "tog": 35988, + "alarmed": 35989, + "charades": 35990, + "cess": 35991, + "pucker": 35992, + "partay": 35993, + "fares": 35994, + "febreeze": 35995, + "bouncin": 35996, + "#mynigga": 35997, + "hueva": 35998, + "yanked": 35999, + "multifunction": 36000, + "dialogues": 36001, + "guud": 36002, + "capped": 36003, + "bumblebee": 36004, + "rikki": 36005, + "#sleepdeprived": 36006, + "digifest": 36007, + "northwestern": 36008, + "canoeing": 36009, + "swv": 36010, + "chode": 36011, + "fra": 36012, + "sunnies": 36013, + "discography": 36014, + "kyree": 36015, + "#iloveher": 36016, + "overdressed": 36017, + "alwayz": 36018, + "onkyo": 36019, + "ryann": 36020, + "dispensers": 36021, + "donot": 36022, + "flosser": 36023, + "sewed": 36024, + "soiree": 36025, + "cackling": 36026, + "goodbyee": 36027, + "opal": 36028, + "horseman": 36029, + "entender": 36030, + "bandits": 36031, + "postive": 36032, + "ruiner": 36033, + "clump": 36034, + "gtav": 36035, + "faltar": 36036, + "huhuhuhuhu": 36037, + "t'en": 36038, + "zai": 36039, + "matador": 36040, + "correlation": 36041, + "fansite": 36042, + "#onlyme": 36043, + "brasserie": 36044, + "festa": 36045, + "wrestled": 36046, + "inflexible": 36047, + "sabog": 36048, + "fischer": 36049, + "oompa": 36050, + "kernels": 36051, + "hha": 36052, + "dowwn": 36053, + "lecturers": 36054, + "bitterly": 36055, + "madea's": 36056, + "programa": 36057, + "traces": 36058, + "osborne": 36059, + "classiest": 36060, + "duckin": 36061, + "wakey": 36062, + "nul": 36063, + "deranged": 36064, + "dic": 36065, + "amal": 36066, + "teala": 36067, + "acads": 36068, + "pacer": 36069, + "trixie": 36070, + "labelled": 36071, + "attributes": 36072, + "pranking": 36073, + "whoopi": 36074, + "demeaning": 36075, + "porcupine": 36076, + "bari": 36077, + "#ibiza": 36078, + "tiaras": 36079, + "stalkea": 36080, + "ablum": 36081, + "midlands": 36082, + "spreader": 36083, + "cuatro": 36084, + "#snl": 36085, + "#popsuperstarjalenmcmillan": 36086, + "#mancrushmonday": 36087, + "toblerone": 36088, + "hablemos": 36089, + "returnable": 36090, + "jokess": 36091, + "chato": 36092, + "saginaw": 36093, + "cuddler": 36094, + "#myluck": 36095, + "hess": 36096, + "firth": 36097, + "duterte": 36098, + "sushii": 36099, + "skated": 36100, + "#ffs": 36101, + "jennette": 36102, + "wanking": 36103, + "yeii": 36104, + "sleeptight": 36105, + "diiaa": 36106, + "okeey": 36107, + "ragged": 36108, + "sledge": 36109, + "bizzare": 36110, + "unorganised": 36111, + "entertainers": 36112, + "snape": 36113, + "podemos": 36114, + "goldmine": 36115, + "cust": 36116, + "playinn": 36117, + "cheio": 36118, + "manija": 36119, + "haterz": 36120, + "uncover": 36121, + "fielding": 36122, + "acrobatic": 36123, + "boah": 36124, + "#buenas": 36125, + "maraming": 36126, + "smitty": 36127, + "pornographic": 36128, + "dayys": 36129, + "shottas": 36130, + "punctual": 36131, + "jii": 36132, + "rampant": 36133, + "cote": 36134, + "#ttm": 36135, + "entrena": 36136, + "rosie's": 36137, + "sleigh": 36138, + "kenan": 36139, + "crackling": 36140, + "burpees": 36141, + "ulol": 36142, + "collapsing": 36143, + "tubbing": 36144, + "shona": 36145, + "bim": 36146, + "lym": 36147, + "hyuk": 36148, + "pois": 36149, + "freind": 36150, + "biblically": 36151, + "sparta": 36152, + "knockers": 36153, + "siding": 36154, + "walcott": 36155, + "gaurd": 36156, + "kendall's": 36157, + "bayy": 36158, + "uncharted": 36159, + "saliendo": 36160, + "observer": 36161, + "fittings": 36162, + "umami": 36163, + "extinguisher": 36164, + "prevails": 36165, + "#hacked": 36166, + "gayer": 36167, + "stereotyping": 36168, + "expresses": 36169, + "ozzie": 36170, + "dyes": 36171, + "karin": 36172, + "oddio": 36173, + "kap": 36174, + "doubters": 36175, + "watermark": 36176, + "satisified": 36177, + "longway": 36178, + "outlast": 36179, + "drumsticks": 36180, + "identifying": 36181, + "okej": 36182, + "skimming": 36183, + "spar": 36184, + "discusting": 36185, + "snowday": 36186, + "#sabadodeganarseguidores": 36187, + "alayna": 36188, + "yoke": 36189, + "eurovision": 36190, + "guppies": 36191, + "#mine": 36192, + "stony": 36193, + "maro": 36194, + "misconceptions": 36195, + "proximo": 36196, + "chesapeake": 36197, + "projectile": 36198, + "neww": 36199, + "milds": 36200, + "swaggin": 36201, + "ingle": 36202, + "obtained": 36203, + "bookcase": 36204, + "riyadh": 36205, + "gracia": 36206, + "auditioned": 36207, + "viajar": 36208, + "jahat": 36209, + "coutinho": 36210, + "thunk": 36211, + "fundamentally": 36212, + "rainin": 36213, + "sleepiness": 36214, + "juggin": 36215, + "bonitoo": 36216, + "antm": 36217, + "fertility": 36218, + "dianne": 36219, + "fromage": 36220, + "poa": 36221, + "woeful": 36222, + "vpc": 36223, + "dosn't": 36224, + "obra": 36225, + "#marchmadness": 36226, + "copain": 36227, + "datz": 36228, + "selenator": 36229, + "#legal": 36230, + "sourire": 36231, + "heartaches": 36232, + "saws": 36233, + "#pussy": 36234, + "#hahaha": 36235, + "chihuahuas": 36236, + "#idc": 36237, + "oppss": 36238, + "#badday": 36239, + "bluee": 36240, + "babey": 36241, + "baca": 36242, + "restaraunt": 36243, + "necesidad": 36244, + "cansei": 36245, + "pss": 36246, + "sensibility": 36247, + "lindsey's": 36248, + "conocerte": 36249, + "#halloween": 36250, + "referrals": 36251, + "mentiras": 36252, + "splendor": 36253, + "origional": 36254, + "ked": 36255, + "dumpy": 36256, + "hikers": 36257, + "flirtatious": 36258, + "imp": 36259, + "bala": 36260, + "stead": 36261, + "#28": 36262, + "miranda's": 36263, + "bulacan": 36264, + "decanter": 36265, + "gorillaz": 36266, + "#pissedoff": 36267, + "tadinha": 36268, + "toppy": 36269, + "ghosting": 36270, + "humphrey": 36271, + "docks": 36272, + "wry": 36273, + "flia": 36274, + "#loyalty": 36275, + "flares": 36276, + "elmo's": 36277, + "bowen": 36278, + "marlo": 36279, + "regretful": 36280, + "spelman": 36281, + "barclays": 36282, + "haydn": 36283, + "stirling": 36284, + "guey": 36285, + "#speechless": 36286, + "jist": 36287, + "scuse": 36288, + "dirtbike": 36289, + "chavo": 36290, + "morre": 36291, + "swimmin": 36292, + "reseller": 36293, + "batali": 36294, + "empiezo": 36295, + "mores": 36296, + "piracy": 36297, + "grandson's": 36298, + "meditative": 36299, + "jajaa": 36300, + "dure": 36301, + "entrancing": 36302, + "tonys": 36303, + "sheraton": 36304, + "heifer": 36305, + "goer": 36306, + "kendrick's": 36307, + "marah": 36308, + "follw": 36309, + "zah": 36310, + "metropolis": 36311, + "sidenote": 36312, + "prefiero": 36313, + "oiee": 36314, + "bahah": 36315, + "snogging": 36316, + "doubling": 36317, + "borro": 36318, + "finnee": 36319, + "reblog": 36320, + "nakakaantok": 36321, + "refurb": 36322, + "uumm": 36323, + "optometrist": 36324, + "fueron": 36325, + "revoke": 36326, + "#hungover": 36327, + "ndc": 36328, + "linden": 36329, + "urdu": 36330, + "minhyuk": 36331, + "promenade": 36332, + "meade": 36333, + "titp": 36334, + "dfkm": 36335, + "perfectoo": 36336, + "doormat": 36337, + "modesto": 36338, + "dripped": 36339, + "badlands": 36340, + "vengo": 36341, + "ttg": 36342, + "raver": 36343, + "invisalign": 36344, + "fabregas": 36345, + "#byee": 36346, + "arjun": 36347, + "avaa": 36348, + "collects": 36349, + "cohesive": 36350, + "inheritance": 36351, + "kawawa": 36352, + "#relaxed": 36353, + "bragg": 36354, + "#thisisus": 36355, + "#kisstory": 36356, + "cluck": 36357, + "turnpike": 36358, + "kitchenette": 36359, + "lvac": 36360, + "herbie": 36361, + "inventions": 36362, + "orson": 36363, + "milagro": 36364, + "atwood": 36365, + "algae": 36366, + "boundary": 36367, + "frase": 36368, + "glutes": 36369, + "dwarfs": 36370, + "woa": 36371, + "indulged": 36372, + "randomest": 36373, + "tunee": 36374, + "schubert": 36375, + "bird's": 36376, + "mcphee": 36377, + "london's": 36378, + "jadakiss": 36379, + "celui": 36380, + "respeto": 36381, + "mech": 36382, + "solaris": 36383, + "grooving": 36384, + "adn": 36385, + "pandering": 36386, + "reconnecting": 36387, + "cjs": 36388, + "arroyo": 36389, + "paramedic": 36390, + "sizzler": 36391, + "fevers": 36392, + "wali": 36393, + "twt": 36394, + "jaron": 36395, + "#littlethings": 36396, + "impresses": 36397, + "verdadero": 36398, + "airforce": 36399, + "aniyah": 36400, + "spook": 36401, + "entice": 36402, + "alluring": 36403, + "magenta": 36404, + "tropa": 36405, + "twittah": 36406, + "#icanteven": 36407, + "eyeglasses": 36408, + "astral": 36409, + "perfomance": 36410, + "corey's": 36411, + "loners": 36412, + "oha": 36413, + "ntvg": 36414, + "optimum": 36415, + "lollies": 36416, + "#dancemoms": 36417, + "vete": 36418, + "manches": 36419, + "cranks": 36420, + "amb": 36421, + "potholes": 36422, + "asics": 36423, + "fakers": 36424, + "coupler": 36425, + "baal": 36426, + "minuet": 36427, + "khai": 36428, + "polyester": 36429, + "landscapes": 36430, + "pivot": 36431, + "biittcchh": 36432, + "nojo": 36433, + "cloak": 36434, + "storefront": 36435, + "sair": 36436, + "#siguemeytesigo": 36437, + "#missthem": 36438, + "will's": 36439, + "bluesy": 36440, + "profil": 36441, + "glucose": 36442, + "gook": 36443, + "contente": 36444, + "umph": 36445, + "chicago's": 36446, + "anahi": 36447, + "togethers": 36448, + "elmore": 36449, + "hmj": 36450, + "#nojoke": 36451, + "clorox": 36452, + "cian": 36453, + "graave": 36454, + "objectivity": 36455, + "reposting": 36456, + "keyless": 36457, + "#problems": 36458, + "cubbies": 36459, + "arcangel": 36460, + "elgin": 36461, + "repas": 36462, + "baila": 36463, + "#directioner": 36464, + "rupert": 36465, + "bbq's": 36466, + "chacha": 36467, + "disappoinment": 36468, + "flirtin": 36469, + "firewood": 36470, + "attenborough": 36471, + "sickens": 36472, + "reflexes": 36473, + "nea": 36474, + "shatner": 36475, + "doudou": 36476, + "omi": 36477, + "miamor": 36478, + "venha": 36479, + "semitic": 36480, + "lobos": 36481, + "yesteryear": 36482, + "oblige": 36483, + "outweighs": 36484, + "nakoo": 36485, + "wellp": 36486, + "hamm": 36487, + "garrison": 36488, + "initiate": 36489, + "streamed": 36490, + "jota": 36491, + "artful": 36492, + "upholstery": 36493, + "checkpoint": 36494, + "mest": 36495, + "elixir": 36496, + "bueeno": 36497, + "standpoint": 36498, + "ladybugs": 36499, + "infernal": 36500, + "batterie": 36501, + "recommendable": 36502, + "libree": 36503, + "intramural": 36504, + "ficar": 36505, + "contamination": 36506, + "pronounces": 36507, + "foos": 36508, + "idolo": 36509, + "fantastical": 36510, + "michelada": 36511, + "maisy": 36512, + "admires": 36513, + "her's": 36514, + "osh": 36515, + "capes": 36516, + "tush": 36517, + "whodunit": 36518, + "behavioral": 36519, + "counties": 36520, + "puffing": 36521, + "sniffed": 36522, + "vl": 36523, + "spongy": 36524, + "dama": 36525, + "victories": 36526, + "commentaries": 36527, + "#wakeup": 36528, + "gagawin": 36529, + "squeezes": 36530, + "yuna": 36531, + "righteousness": 36532, + "goodluckk": 36533, + "kh": 36534, + "hwk": 36535, + "tearjerker": 36536, + "welling": 36537, + "gnc": 36538, + "conceptual": 36539, + "sui": 36540, + "carnal": 36541, + "monstrosity": 36542, + "longhorns": 36543, + "lalalalalala": 36544, + "delano": 36545, + "hoisin": 36546, + "staging": 36547, + "#shootme": 36548, + "thugged": 36549, + "letterbox": 36550, + "lando": 36551, + "cavite": 36552, + "#vampirediaries": 36553, + "breadman": 36554, + "hmv": 36555, + "problemas": 36556, + "maltesers": 36557, + "ynwa": 36558, + "sondheim": 36559, + "aikido": 36560, + "jsu": 36561, + "namang": 36562, + "#tweetyourfirst7emojis": 36563, + "l'm": 36564, + "monks": 36565, + "surrey": 36566, + "pasti": 36567, + "sookie": 36568, + "#brilliant": 36569, + "solace": 36570, + "ahn": 36571, + "britain's": 36572, + "penetration": 36573, + "excerpt": 36574, + "#anxious": 36575, + "screamer": 36576, + "coliseum": 36577, + "goodniight": 36578, + "mamasita": 36579, + "lustre": 36580, + "trifecta": 36581, + "escribir": 36582, + "shish": 36583, + "noni": 36584, + "fonts": 36585, + "siestas": 36586, + "madee": 36587, + "yarb": 36588, + "blacky": 36589, + "gunshot": 36590, + "lou's": 36591, + "christie's": 36592, + "cassettes": 36593, + "bopped": 36594, + "fron": 36595, + "formidable": 36596, + "vimos": 36597, + "goofed": 36598, + "boss's": 36599, + "caving": 36600, + "cit": 36601, + "shawshank": 36602, + "masarap": 36603, + "fefe": 36604, + "astronomical": 36605, + "nomatter": 36606, + "nall": 36607, + "jux": 36608, + "palmas": 36609, + "busan": 36610, + "pismo": 36611, + "wastin": 36612, + "rudd": 36613, + "#hero": 36614, + "despierto": 36615, + "tz": 36616, + "karr": 36617, + "toothpicks": 36618, + "#saidnooneever": 36619, + "chung": 36620, + "amok": 36621, + "zimbabwe": 36622, + "kanyes": 36623, + "ome": 36624, + "grins": 36625, + "twinss": 36626, + "patting": 36627, + "katz": 36628, + "anglais": 36629, + "thottin": 36630, + "youss": 36631, + "misconception": 36632, + "confronting": 36633, + "naku": 36634, + "cityy": 36635, + "dyosa": 36636, + "bunda": 36637, + "satu": 36638, + "cps": 36639, + "flemings": 36640, + "cthu": 36641, + "leafy": 36642, + "alyson": 36643, + "sevilla": 36644, + "nstp": 36645, + "biffle": 36646, + "benchwarmers": 36647, + "barney's": 36648, + "chaque": 36649, + "tengas": 36650, + "srt": 36651, + "resembling": 36652, + "maniacs": 36653, + "setbacks": 36654, + "#pleaseandthankyou": 36655, + "kera": 36656, + "sketching": 36657, + "depraved": 36658, + "yuuh": 36659, + "anais": 36660, + "lollapalooza": 36661, + "redness": 36662, + "freakishly": 36663, + "#yougogirl": 36664, + "sometimey": 36665, + "zapped": 36666, + "mime": 36667, + "huehuehue": 36668, + "smacznego": 36669, + ":oo": 36670, + "jank": 36671, + "yala": 36672, + "biscotti": 36673, + "bundy": 36674, + "kym": 36675, + "#dontjudge": 36676, + "#movie": 36677, + "fontana": 36678, + "chives": 36679, + "noonie": 36680, + "stuco": 36681, + "vallejo": 36682, + "roading": 36683, + "injected": 36684, + "ulysses": 36685, + "wilshere": 36686, + "akak": 36687, + "researcher": 36688, + "errthing": 36689, + "clipboard": 36690, + "abut": 36691, + "rieu": 36692, + "pt's": 36693, + "tennant": 36694, + "hydration": 36695, + "reformed": 36696, + "stalkeo": 36697, + "scurred": 36698, + "mca": 36699, + "tuba": 36700, + "prepackaged": 36701, + "rios": 36702, + "besstt": 36703, + "anglo": 36704, + "dajah": 36705, + "nastiness": 36706, + "nec": 36707, + "goddamnit": 36708, + "technologies": 36709, + "habia": 36710, + "scotts": 36711, + "conservatory": 36712, + "bruu": 36713, + "maritza": 36714, + "sperry's": 36715, + "emptying": 36716, + "magandang": 36717, + "snipe": 36718, + "broadcasts": 36719, + "perso": 36720, + "gawwdd": 36721, + "emely": 36722, + "derecho": 36723, + "oky": 36724, + "boracay": 36725, + "welbeck": 36726, + "#meangirls": 36727, + "statesboro": 36728, + "president's": 36729, + "cobalt": 36730, + "playtex": 36731, + "prematurely": 36732, + "#findom": 36733, + "#mad": 36734, + "smartphones": 36735, + "literately": 36736, + "boppy": 36737, + "inno": 36738, + "seymour": 36739, + "#feelsgood": 36740, + "rayray": 36741, + "oslo": 36742, + "bicycles": 36743, + "alpaca": 36744, + "jaye": 36745, + "bakasyon": 36746, + "borr": 36747, + "cudnt": 36748, + "sear": 36749, + "magnus": 36750, + "wilt": 36751, + "eitherr": 36752, + "#fuckcancer": 36753, + "babae": 36754, + "tcp": 36755, + "shepherd's": 36756, + "choclate": 36757, + "ducha": 36758, + "locoo": 36759, + "#prom": 36760, + "#productive": 36761, + "kacie": 36762, + "worshipping": 36763, + "sophistication": 36764, + "hugg": 36765, + "francine": 36766, + "sortir": 36767, + "tableside": 36768, + "zurich": 36769, + "swelled": 36770, + "paramedics": 36771, + "honeydew": 36772, + "shalt": 36773, + "jamel": 36774, + "hebrews": 36775, + "#thebachelorette": 36776, + "purgatory": 36777, + "anakin": 36778, + "slivers": 36779, + "#hate": 36780, + "dancee": 36781, + "ambien": 36782, + "inconsistencies": 36783, + "polynesian": 36784, + "teppan": 36785, + "pleasefollow": 36786, + "kierland": 36787, + "natures": 36788, + "newsies": 36789, + "#mylove": 36790, + "wannt": 36791, + "timeflies": 36792, + "lar": 36793, + "buenisimo": 36794, + "rockford": 36795, + "karen's": 36796, + "frostbite": 36797, + "olvidate": 36798, + "j'veux": 36799, + "compa": 36800, + "ekk": 36801, + "purist": 36802, + "hfs": 36803, + "felicidadees": 36804, + "gyud": 36805, + "submissive": 36806, + "mta": 36807, + "ellington": 36808, + "pungent": 36809, + "cadence": 36810, + "overtones": 36811, + "ksa": 36812, + "adobada": 36813, + "maudlin": 36814, + "wain": 36815, + "mares": 36816, + "gbs": 36817, + "carless": 36818, + "pide": 36819, + "timepiece": 36820, + "gospels": 36821, + "findlay": 36822, + "tittys": 36823, + "gaston": 36824, + "heartbreakers": 36825, + "brainwashing": 36826, + "desperado": 36827, + "#can": 36828, + "pija": 36829, + "tariq": 36830, + "antsy": 36831, + "phenom": 36832, + "tro": 36833, + "socio": 36834, + "gsu": 36835, + "bungalow": 36836, + "tidied": 36837, + "buca": 36838, + "tipper": 36839, + "scrapping": 36840, + "purchaser": 36841, + "puente": 36842, + "#ncat": 36843, + "potters": 36844, + "backround": 36845, + "ives": 36846, + "wpa": 36847, + "federer": 36848, + "chay": 36849, + "lasalle": 36850, + "diyan": 36851, + "tremenda": 36852, + "ines": 36853, + "bumpers": 36854, + "#lcfc": 36855, + "papii": 36856, + "#girls": 36857, + "trax": 36858, + "plainly": 36859, + "enuh": 36860, + "muffs": 36861, + "costumbre": 36862, + "#domingodeganarseguidores": 36863, + "jeddah": 36864, + "rnn": 36865, + "seigneur": 36866, + "sty": 36867, + "impersonal": 36868, + "unsurpassed": 36869, + "counsel": 36870, + "lindass": 36871, + "yeses": 36872, + "whitewash": 36873, + "glocks": 36874, + "bandaids": 36875, + "elisha": 36876, + "#voteonedirection": 36877, + "rumah": 36878, + "graphs": 36879, + "slicker": 36880, + "preg": 36881, + "og's": 36882, + "rump": 36883, + "congolese": 36884, + "asiago": 36885, + "wile": 36886, + "icejjfish": 36887, + "heyo": 36888, + "neph": 36889, + "marlins": 36890, + "kens": 36891, + "advertizing": 36892, + "greeaatt": 36893, + "tite": 36894, + "sweeps": 36895, + "choppers": 36896, + "rebates": 36897, + "airbrush": 36898, + "byes": 36899, + "sighted": 36900, + "groves": 36901, + "potheads": 36902, + "idrc": 36903, + "kalua": 36904, + "sensationalism": 36905, + "wheats": 36906, + "wildn": 36907, + "ladiess": 36908, + "superstitious": 36909, + "saccharine": 36910, + "poss": 36911, + "cura": 36912, + "#soa": 36913, + "mkto": 36914, + "arteries": 36915, + "unwrap": 36916, + "zerrie": 36917, + "juntada": 36918, + "lucille": 36919, + "unsteady": 36920, + "compensated": 36921, + "yessa": 36922, + "#twug": 36923, + "pulley": 36924, + "marianne": 36925, + "gordito": 36926, + "saudadee": 36927, + "waht": 36928, + "greg's": 36929, + "poule": 36930, + "balboa": 36931, + "developmental": 36932, + "bomer": 36933, + "hillbillies": 36934, + "imogen": 36935, + "callo": 36936, + "bjp": 36937, + "owing": 36938, + "bask": 36939, + "spool": 36940, + "enabled": 36941, + "cheryl's": 36942, + "mistook": 36943, + "vsu": 36944, + "enthusiastically": 36945, + "r.e.m.": 36946, + "equalizer": 36947, + "neapolitan": 36948, + "geen": 36949, + "geezz": 36950, + "overcast": 36951, + "distinctly": 36952, + "vaccine": 36953, + "misuse": 36954, + "restraunt": 36955, + "resend": 36956, + "thatss": 36957, + "#favoritemovie": 36958, + "noobs": 36959, + "forman": 36960, + "turban": 36961, + "actualy": 36962, + "rubik's": 36963, + "persuading": 36964, + "seni": 36965, + "deteriorated": 36966, + "kie": 36967, + "gloucester": 36968, + "hesitated": 36969, + "raah": 36970, + "vamonos": 36971, + "chae": 36972, + "undeveloped": 36973, + "offical": 36974, + "cumberbatch": 36975, + "ion't": 36976, + "metlife": 36977, + "kailee": 36978, + "#waitonit": 36979, + "tities": 36980, + "patisserie": 36981, + "taunting": 36982, + "lev": 36983, + "pellet": 36984, + "evolutionary": 36985, + "ravers": 36986, + "marinate": 36987, + "schneider": 36988, + "nica": 36989, + "mengantuk": 36990, + "doingg": 36991, + "ilytoo": 36992, + "revamped": 36993, + "lomo": 36994, + "duluth": 36995, + "quik": 36996, + "epilator": 36997, + "madeleine": 36998, + "xian": 36999, + "soulchild": 37000, + "capstone": 37001, + "slaay": 37002, + "#momlife": 37003, + "frustratingly": 37004, + "infinito": 37005, + "raku": 37006, + "faggit": 37007, + "snowcone": 37008, + "purring": 37009, + "breeders": 37010, + "babyboo": 37011, + "shawtys": 37012, + "whiner": 37013, + "amoree": 37014, + "findin": 37015, + "gmas": 37016, + "#aww": 37017, + "thurr": 37018, + "nazareth": 37019, + "rockwell": 37020, + "dmr": 37021, + "backlight": 37022, + "encuentra": 37023, + "sey": 37024, + "loneliest": 37025, + "jackman": 37026, + "davenport": 37027, + "#softball": 37028, + "gitu": 37029, + "thorne": 37030, + "responsibly": 37031, + "puerta": 37032, + "suburbia": 37033, + "piecing": 37034, + "unintelligible": 37035, + "wokeup": 37036, + "ihad": 37037, + "amirah": 37038, + "incompatibility": 37039, + "widdle": 37040, + "healy": 37041, + "faggy": 37042, + "aloof": 37043, + "namimiss": 37044, + "unforgiven": 37045, + "quilly": 37046, + "londyn": 37047, + "yallah": 37048, + "shimmer": 37049, + "tante": 37050, + "#shotsfired": 37051, + "crippling": 37052, + "lapse": 37053, + "kye": 37054, + "#merica": 37055, + "sulking": 37056, + "collectable": 37057, + "#bestfeelingever": 37058, + "salee": 37059, + "yakisoba": 37060, + "adoptive": 37061, + "proofreader": 37062, + "tweaks": 37063, + "linguistics": 37064, + "cks": 37065, + "pathway": 37066, + "bitt": 37067, + "maxis": 37068, + "hbb": 37069, + "windex": 37070, + "siomai": 37071, + "#ihateyou": 37072, + "discworld": 37073, + "marnie": 37074, + "gayness": 37075, + "mumbles": 37076, + "holly's": 37077, + "pasion": 37078, + "flounder": 37079, + "potts": 37080, + "gyllenhaal": 37081, + "masjid": 37082, + "depois": 37083, + "enfermo": 37084, + "roastin": 37085, + "j'me": 37086, + "dullsville": 37087, + "booling": 37088, + "comforters": 37089, + "retrouver": 37090, + "celle": 37091, + "peppy": 37092, + "confiscated": 37093, + "wheww": 37094, + "bennie": 37095, + "aviators": 37096, + "kirstie": 37097, + "nerviosa": 37098, + "tartan": 37099, + "ris": 37100, + "butterfinger": 37101, + "sil": 37102, + "floatin": 37103, + "juvie": 37104, + "jeannie": 37105, + "llora": 37106, + "glbi": 37107, + "ayana": 37108, + "cultured": 37109, + "ella's": 37110, + "kangaroos": 37111, + "acre": 37112, + "helly": 37113, + "boosters": 37114, + "fackk": 37115, + "aniya": 37116, + "jeremy's": 37117, + "benjamin's": 37118, + "okokok": 37119, + "taxed": 37120, + "fuxked": 37121, + "#corrie": 37122, + "#hopefully": 37123, + "maggiano's": 37124, + "hahahahahahaa": 37125, + "uncertainty": 37126, + "underlying": 37127, + "devante": 37128, + "l'air": 37129, + "pepto": 37130, + "sytycd": 37131, + "miramar": 37132, + "shel": 37133, + "horitas": 37134, + "nothinn": 37135, + "#princess": 37136, + "hamptons": 37137, + "kayong": 37138, + "askies": 37139, + "undersized": 37140, + "tajin": 37141, + "ciudad": 37142, + "bedazzled": 37143, + "feen": 37144, + "#httr": 37145, + "fllw": 37146, + "twang": 37147, + "resetting": 37148, + "buggers": 37149, + "ballsy": 37150, + "jakob": 37151, + "eros": 37152, + "followspree": 37153, + "kissable": 37154, + "sentido": 37155, + "chicle": 37156, + "finnally": 37157, + "brainstorming": 37158, + "estilo": 37159, + "wahahahaha": 37160, + "#20daysofdallas": 37161, + "yucca": 37162, + "coold": 37163, + "jaunt": 37164, + "narrowed": 37165, + "pilipinas": 37166, + "disneyworld": 37167, + "#drunk": 37168, + "stumbles": 37169, + "revisions": 37170, + "mitad": 37171, + "sicily": 37172, + "pn": 37173, + "tomatillo": 37174, + "solder": 37175, + "hemmo": 37176, + "riser": 37177, + "hatte": 37178, + "delusions": 37179, + "#loved": 37180, + "russo": 37181, + "zippo": 37182, + "rt'n": 37183, + "sheeshh": 37184, + "coot": 37185, + "keyes": 37186, + "aquamarine": 37187, + "satirical": 37188, + "clark's": 37189, + "foresee": 37190, + "pavements": 37191, + "karter": 37192, + "maynee": 37193, + "manuscript": 37194, + "guessin": 37195, + "apaga": 37196, + "dappy": 37197, + "mwuah": 37198, + "caer": 37199, + "compiled": 37200, + "keds": 37201, + "markings": 37202, + "prescott": 37203, + "cookery": 37204, + "grays": 37205, + "diwali": 37206, + "parton": 37207, + "meadowhall": 37208, + "belligerent": 37209, + "shards": 37210, + "disposition": 37211, + "humus": 37212, + "glutton": 37213, + "tugs": 37214, + "hijos": 37215, + "amzing": 37216, + "beautyy": 37217, + "seminars": 37218, + "swooning": 37219, + "derr": 37220, + "ruiz": 37221, + "caminar": 37222, + "ufa": 37223, + "ignora": 37224, + "wranglers": 37225, + "o'connor": 37226, + "georgia's": 37227, + "benefiting": 37228, + "hotwire": 37229, + "ashlynn": 37230, + "punchline": 37231, + "caan": 37232, + "ejected": 37233, + "favorito": 37234, + "jemma": 37235, + "dawh": 37236, + "jayme": 37237, + "cif": 37238, + "toothbrushes": 37239, + "calligraphy": 37240, + "masama": 37241, + "explores": 37242, + "dialect": 37243, + "unwelcoming": 37244, + "expandable": 37245, + "abnormally": 37246, + "malcom": 37247, + "sabres": 37248, + "cassy": 37249, + "nunn": 37250, + "hickie": 37251, + "platitudes": 37252, + "misrepresents": 37253, + "alibi": 37254, + "boh": 37255, + "#gaytweet": 37256, + "regrettable": 37257, + "ovr": 37258, + "bulan": 37259, + "yeezy's": 37260, + "maximo": 37261, + "cuento": 37262, + "badgers": 37263, + "sassiest": 37264, + "dili": 37265, + "gaudy": 37266, + "bargained": 37267, + "dryness": 37268, + "stabs": 37269, + "#fixitjesus": 37270, + "strategically": 37271, + "hors": 37272, + "stimulation": 37273, + "misplace": 37274, + "macayo's": 37275, + "reversing": 37276, + "proposes": 37277, + "taraji": 37278, + "patay": 37279, + "coups": 37280, + "offensively": 37281, + "blueray": 37282, + "backhand": 37283, + "oomg": 37284, + "storylines": 37285, + "kappas": 37286, + "angered": 37287, + "heisman": 37288, + "islander": 37289, + "snapp": 37290, + "judi": 37291, + "masking": 37292, + "roadrunner": 37293, + "yack": 37294, + "philippe": 37295, + "pimento": 37296, + "sextape": 37297, + "#justinformmva": 37298, + "winery": 37299, + "bloodshot": 37300, + "caliper": 37301, + "gwinnett": 37302, + "ahlie": 37303, + "methodology": 37304, + "guerrero": 37305, + "uncoordinated": 37306, + "youplease": 37307, + "skyped": 37308, + "perms": 37309, + "ajar": 37310, + "excels": 37311, + "kene": 37312, + "facturas": 37313, + "frasier": 37314, + "declan": 37315, + "citation": 37316, + "leider": 37317, + "soe": 37318, + "biochemistry": 37319, + "dpt": 37320, + "bashers": 37321, + "suds": 37322, + "woodworking": 37323, + "oho": 37324, + "chui": 37325, + "fireside": 37326, + "skyfall": 37327, + "bopper": 37328, + "mtb": 37329, + "inpatient": 37330, + "shamefully": 37331, + "letra": 37332, + "thankz": 37333, + "liit": 37334, + "emerged": 37335, + "divider": 37336, + "promisee": 37337, + "#positive": 37338, + "hanukkah": 37339, + "nosed": 37340, + "duelee": 37341, + "alday": 37342, + "braw": 37343, + "toured": 37344, + "kina": 37345, + "breakaway": 37346, + "psychobabble": 37347, + "blasian": 37348, + "#staytuned": 37349, + "#shesthebest": 37350, + "jokey": 37351, + "hitters": 37352, + "ars": 37353, + "townsend": 37354, + "wating": 37355, + "boasting": 37356, + "pouches": 37357, + "prototype": 37358, + "kesian": 37359, + "hunchback": 37360, + "thinkpad": 37361, + "eli's": 37362, + "amethyst": 37363, + "bomba": 37364, + "sandwiched": 37365, + "interns": 37366, + "conocer": 37367, + "mikasa": 37368, + "creepily": 37369, + "marbs": 37370, + "dalam": 37371, + "dhabi": 37372, + "caveats": 37373, + "tended": 37374, + "denali": 37375, + "microscopic": 37376, + "trembling": 37377, + "snapshots": 37378, + "dorsey": 37379, + "pianos": 37380, + "smudges": 37381, + "oowwee": 37382, + "ichiza": 37383, + "charly": 37384, + "valle": 37385, + "destruct": 37386, + "loserr": 37387, + "dumbledore": 37388, + "sunken": 37389, + "terminated": 37390, + "guck": 37391, + "gruyere": 37392, + "g'nite": 37393, + "kea": 37394, + "edmond": 37395, + "jenner's": 37396, + "needlessly": 37397, + "ricks": 37398, + "sasa": 37399, + "choreographed": 37400, + "tablespoon": 37401, + "graciaass": 37402, + "webster's": 37403, + "pee'd": 37404, + "sneaked": 37405, + "psat": 37406, + "loaner": 37407, + "chiropractic": 37408, + "blague": 37409, + "restuarant": 37410, + "queues": 37411, + "cayman": 37412, + "miggy": 37413, + "prince's": 37414, + "inspiron": 37415, + "capp": 37416, + "#ill": 37417, + "garments": 37418, + "room's": 37419, + "ripley": 37420, + "mpg": 37421, + "aboutt": 37422, + "takut": 37423, + "barz": 37424, + "miscast": 37425, + "u.s.a.": 37426, + "manipulated": 37427, + "#lowkey": 37428, + "baiting": 37429, + "physicians": 37430, + "xxo": 37431, + "cascade": 37432, + "portability": 37433, + "ihope": 37434, + "televised": 37435, + "stankin": 37436, + "pleace": 37437, + "eatt": 37438, + "rere": 37439, + "heelloo": 37440, + "kumain": 37441, + "lofl": 37442, + "sturdier": 37443, + "vox": 37444, + "dalia": 37445, + "agustus": 37446, + "leurs": 37447, + "overpaid": 37448, + "delicacy": 37449, + "pastime": 37450, + "grandeur": 37451, + "autozone": 37452, + "boz": 37453, + "#yankees": 37454, + "liams": 37455, + "binging": 37456, + "ohmygawd": 37457, + "policeman": 37458, + "#tweetyourweakness": 37459, + "streaky": 37460, + "firma": 37461, + "everlast": 37462, + "laxative": 37463, + "ernesto": 37464, + "defy": 37465, + "procedural": 37466, + "unresolved": 37467, + "yhyh": 37468, + "aaye": 37469, + "rushers": 37470, + "gatlinburg": 37471, + "haterr": 37472, + "haahah": 37473, + "taster": 37474, + "mending": 37475, + "truce": 37476, + "currington": 37477, + "liebe": 37478, + "wolfpack": 37479, + "thelma": 37480, + "kmn": 37481, + "degame": 37482, + "justifies": 37483, + "excision": 37484, + "makasihh": 37485, + "boyo": 37486, + "bsc": 37487, + "guiness": 37488, + "gnt": 37489, + "haben": 37490, + "frs": 37491, + "cutlet": 37492, + "aby": 37493, + "seshh": 37494, + "phan": 37495, + "chomsky": 37496, + "molding": 37497, + "galactic": 37498, + "dewey": 37499, + "breathed": 37500, + "yippie": 37501, + "saab": 37502, + "robuchon": 37503, + "#soclose": 37504, + "debuts": 37505, + "pgs": 37506, + "dullest": 37507, + "bryn": 37508, + "reiterate": 37509, + "headerr": 37510, + "babyg": 37511, + "matess": 37512, + "#guiltypleasure": 37513, + "psuedo": 37514, + "egging": 37515, + "encontrar": 37516, + "#lanadelrey": 37517, + "martha's": 37518, + "benton": 37519, + "haahaa": 37520, + "fashions": 37521, + "swaddlers": 37522, + "wags": 37523, + "feria": 37524, + "white's": 37525, + "grammy's": 37526, + "emerge": 37527, + "fanart": 37528, + "elp": 37529, + "slingshot": 37530, + "txtd": 37531, + "hopee": 37532, + "ells": 37533, + "#tfbjp": 37534, + "chewbacca": 37535, + "neff": 37536, + "shizzle": 37537, + "affirming": 37538, + "spinners": 37539, + "findings": 37540, + "artistically": 37541, + "alerted": 37542, + "appetites": 37543, + "pimped": 37544, + "#addiction": 37545, + "ouff": 37546, + "ket": 37547, + "boyish": 37548, + "#teamsingle": 37549, + "olivier": 37550, + "garwood": 37551, + "lihh": 37552, + "spacers": 37553, + "ronco": 37554, + "fcat": 37555, + "kennedy's": 37556, + "haye": 37557, + "riddles": 37558, + "steered": 37559, + "reece's": 37560, + "jester": 37561, + "winger": 37562, + "intellectuals": 37563, + "katia": 37564, + "winslow": 37565, + "grindr": 37566, + "joelle": 37567, + "kagabi": 37568, + "ventre": 37569, + "cushy": 37570, + "sneakin": 37571, + "cambie": 37572, + "refundable": 37573, + "babbe": 37574, + "metals": 37575, + "goosh": 37576, + "pharm": 37577, + "hadley": 37578, + "tina's": 37579, + "#thelife": 37580, + "trigonometry": 37581, + "extraction": 37582, + "#seniors": 37583, + "pape": 37584, + "#myweakness": 37585, + "#storyofmylifefollowparty": 37586, + "fend": 37587, + "durr": 37588, + "unsubstantiated": 37589, + "camita": 37590, + "gratata": 37591, + "mingyu": 37592, + "auld": 37593, + "horsey": 37594, + "api": 37595, + "pyjama": 37596, + "overbooked": 37597, + "lily's": 37598, + "dosa": 37599, + "matchup": 37600, + "couz": 37601, + "swerte": 37602, + "mufc": 37603, + "elsie": 37604, + "valium": 37605, + "siamo": 37606, + "shakur": 37607, + "bunz": 37608, + "vocalists": 37609, + "hz": 37610, + "directo": 37611, + "opss": 37612, + "woi": 37613, + "drugstore": 37614, + "lineman": 37615, + "maxim": 37616, + "dealerships": 37617, + "#1dformmva": 37618, + "#support": 37619, + "mfka": 37620, + "parrots": 37621, + "hassles": 37622, + "aray": 37623, + "#prayers": 37624, + "sinong": 37625, + "eye's": 37626, + "mto": 37627, + "uni's": 37628, + "subtlety": 37629, + "fracaso": 37630, + "douches": 37631, + "sylvester": 37632, + "desayunando": 37633, + "killen": 37634, + "kathniels": 37635, + "devonte": 37636, + "#idiots": 37637, + "flvs": 37638, + "lexar": 37639, + "insoles": 37640, + "flutes": 37641, + "wracking": 37642, + "decirle": 37643, + "twitterverse": 37644, + "#theweeknd": 37645, + "whoot": 37646, + "jiggly": 37647, + "billiards": 37648, + "labas": 37649, + "triangl": 37650, + "paraa": 37651, + "drinkwell": 37652, + "mickey's": 37653, + "decreasing": 37654, + "brekkie": 37655, + "smm": 37656, + "coisas": 37657, + "pruning": 37658, + "sot": 37659, + "sae": 37660, + "benn": 37661, + "christ's": 37662, + "#d": 37663, + "tracklist": 37664, + "jkt": 37665, + "parades": 37666, + "diosito": 37667, + "amber's": 37668, + "fished": 37669, + "kennat": 37670, + "hemming": 37671, + "luciano": 37672, + "burbank": 37673, + "saklap": 37674, + "fuuhh": 37675, + "thim": 37676, + "vargas": 37677, + "hoopers": 37678, + "alisa": 37679, + "perceptive": 37680, + "hookups": 37681, + "fiya": 37682, + "lancer": 37683, + "jummah": 37684, + "bookmarked": 37685, + "savagery": 37686, + "oomph": 37687, + "inhumane": 37688, + "touted": 37689, + "nek": 37690, + "commendable": 37691, + "hearth": 37692, + "angin": 37693, + "#nah": 37694, + "siao": 37695, + "#greatnight": 37696, + "primanti": 37697, + "#epicfail": 37698, + "presser": 37699, + "#precious": 37700, + "detracts": 37701, + "joyride": 37702, + "unh": 37703, + "jumpstreet": 37704, + "newbio": 37705, + "stawpp": 37706, + "brexit": 37707, + "follies": 37708, + "work's": 37709, + "s'much": 37710, + "akbar": 37711, + "hapy": 37712, + "antoinette": 37713, + "expectant": 37714, + "pallets": 37715, + "haru": 37716, + "mitsubishi": 37717, + "sophia's": 37718, + "chuut": 37719, + "ker": 37720, + "outlandish": 37721, + "bridgette": 37722, + "belen": 37723, + "becker": 37724, + "wobbles": 37725, + "browned": 37726, + "tranna": 37727, + "prova": 37728, + "aina": 37729, + "fraudin": 37730, + "gunk": 37731, + "loos": 37732, + "#how": 37733, + "throwaway": 37734, + "hahaahaha": 37735, + "sponges": 37736, + "fok": 37737, + "waiste": 37738, + "dayna": 37739, + "gunning": 37740, + "virtues": 37741, + "hahahahahahahahahah": 37742, + "humanly": 37743, + "passports": 37744, + "formats": 37745, + "#shameless": 37746, + "squeamish": 37747, + "naaww": 37748, + "averaged": 37749, + "grungy": 37750, + "lighty": 37751, + "classico": 37752, + "replicate": 37753, + "versed": 37754, + "swaying": 37755, + "oddest": 37756, + "einem": 37757, + "maaybe": 37758, + "hollerin": 37759, + "tappin": 37760, + "buddyy": 37761, + "ndd": 37762, + "imissyoutoo": 37763, + "geronimo": 37764, + "inline": 37765, + "siestitaa": 37766, + "avons": 37767, + "acdc": 37768, + "hypothesis": 37769, + "equus": 37770, + "backstabbing": 37771, + "johansson": 37772, + "scully": 37773, + "wholesale": 37774, + "hawtt": 37775, + "horner": 37776, + "hairbrush": 37777, + "excepting": 37778, + "ntn": 37779, + "dirtyy": 37780, + "inks": 37781, + "dividers": 37782, + "steez": 37783, + "#again": 37784, + "collabs": 37785, + "poon": 37786, + "interferes": 37787, + "slore": 37788, + "swervee": 37789, + "yaallah": 37790, + "garages": 37791, + "patios": 37792, + "inky": 37793, + "strudels": 37794, + "marshal": 37795, + "olympian": 37796, + "graceland": 37797, + "wys": 37798, + "gushy": 37799, + "divertido": 37800, + "waitressing": 37801, + "#eminem": 37802, + "jaquan": 37803, + "swooped": 37804, + "untied": 37805, + "#yawn": 37806, + "thotting": 37807, + "defenses": 37808, + "malfunctions": 37809, + "bukowski": 37810, + "#hugs": 37811, + "#comfy": 37812, + "csn": 37813, + "appa": 37814, + "rhinestones": 37815, + "stacie": 37816, + "#tf": 37817, + "rebuilt": 37818, + "fooking": 37819, + "garnet": 37820, + "implant": 37821, + "mcs": 37822, + "jellies": 37823, + "prise": 37824, + "#hesakeeper": 37825, + "celibacy": 37826, + "vardy": 37827, + "entrances": 37828, + "comentarios": 37829, + "burnn": 37830, + "#behappy": 37831, + "ayla": 37832, + "commits": 37833, + "ise": 37834, + "langston": 37835, + "brightman": 37836, + "estomago": 37837, + "muddin": 37838, + "dany": 37839, + "hypothermia": 37840, + "tikes": 37841, + "discrepancy": 37842, + "dreadhead": 37843, + "siamese": 37844, + "obedience": 37845, + "sponsoring": 37846, + "irate": 37847, + "adventuring": 37848, + "translucent": 37849, + "impressively": 37850, + "wner": 37851, + "pomona": 37852, + "#senioritis": 37853, + "danes": 37854, + "nailing": 37855, + "shriveled": 37856, + "snugs": 37857, + "neg": 37858, + "yachty": 37859, + "predictably": 37860, + "ganache": 37861, + "tng": 37862, + "sails": 37863, + "childcare": 37864, + "clutching": 37865, + "unfairly": 37866, + "stalkear": 37867, + "drunkenly": 37868, + "ait": 37869, + "doinn": 37870, + "sobbed": 37871, + "lua": 37872, + "examining": 37873, + "monika": 37874, + "lawlz": 37875, + "birthay": 37876, + "cupboards": 37877, + "jodan": 37878, + "kna": 37879, + "#throwbackthursday": 37880, + "doit": 37881, + "hornblower": 37882, + "gansta": 37883, + "ridding": 37884, + "absurdity": 37885, + "#struggling": 37886, + "sandro": 37887, + "decals": 37888, + "chelsie": 37889, + "overpower": 37890, + "norcal": 37891, + "allegory": 37892, + "jumble": 37893, + "fdaa": 37894, + "pregnancies": 37895, + "metalcore": 37896, + "quotation": 37897, + "thankin": 37898, + "#confessionnight": 37899, + "#rideordie": 37900, + "daan": 37901, + "portia": 37902, + "gentee": 37903, + "cme": 37904, + "foreall": 37905, + "ulo": 37906, + "claud": 37907, + "alfonso": 37908, + "beading": 37909, + "relaxers": 37910, + "midwestern": 37911, + "falto": 37912, + "pruner": 37913, + "renowned": 37914, + "meechie": 37915, + "l'a": 37916, + "cybershot": 37917, + "rian": 37918, + "mcconaughey": 37919, + "guzman": 37920, + "appallingly": 37921, + "nugs": 37922, + "#sosick": 37923, + "blz": 37924, + "timess": 37925, + "childd": 37926, + "nibbles": 37927, + "pedestrians": 37928, + "hongkong": 37929, + "freemont": 37930, + "geezus": 37931, + "maken": 37932, + "ryans": 37933, + "barge": 37934, + "bss": 37935, + "#irritated": 37936, + "mabrook": 37937, + "#pleasee": 37938, + "monthss": 37939, + "sokay": 37940, + "haps": 37941, + "jeezus": 37942, + "julieta": 37943, + "liberation": 37944, + "foodtrip": 37945, + "tjrs": 37946, + "tays": 37947, + "blackest": 37948, + "who're": 37949, + "microwaveable": 37950, + "motocross": 37951, + "gaiman": 37952, + "hui": 37953, + "streaking": 37954, + "stone's": 37955, + "helm": 37956, + "ceux": 37957, + "mikel": 37958, + "pimsleur": 37959, + "somthin": 37960, + "dagen": 37961, + "evenn": 37962, + "chilliest": 37963, + "coincidences": 37964, + "cbn": 37965, + "ana's": 37966, + "stfup": 37967, + "#nwts": 37968, + "#hesthebest": 37969, + "repo": 37970, + "#catchup": 37971, + "ovvio": 37972, + "skydive": 37973, + "cliques": 37974, + "hahaahah": 37975, + "triplet": 37976, + "deadlifts": 37977, + "#familyfirst": 37978, + "marti": 37979, + "nobles": 37980, + "#gospursgo": 37981, + "#purpose": 37982, + "holiness": 37983, + "negotiating": 37984, + "defies": 37985, + "liss": 37986, + "odessa": 37987, + "snoozed": 37988, + "neto": 37989, + "darkskinned": 37990, + "sapporo": 37991, + "hme": 37992, + "byrne": 37993, + "j'attends": 37994, + "#asap": 37995, + "adoration": 37996, + "marr": 37997, + "gabriel's": 37998, + "#graduation": 37999, + "nancy's": 38000, + "blare": 38001, + "bebeh": 38002, + "fiin": 38003, + "bell's": 38004, + "brights": 38005, + "twentieth": 38006, + "#werk": 38007, + "troma": 38008, + "ahahahhaha": 38009, + "wedgies": 38010, + "askfm": 38011, + "arepa": 38012, + "sleuth": 38013, + "kati": 38014, + "opium": 38015, + "aarrgghh": 38016, + "preying": 38017, + "mozz": 38018, + "cayo": 38019, + "inappropriately": 38020, + "frist": 38021, + "moisturiser": 38022, + "winco": 38023, + "locket": 38024, + "intermittently": 38025, + "parodies": 38026, + "sahur": 38027, + "stiletto": 38028, + "saks": 38029, + "pierogies": 38030, + "corns": 38031, + "jojo's": 38032, + "raye": 38033, + "danii": 38034, + "sabadoo": 38035, + "homely": 38036, + "thar": 38037, + "fenway": 38038, + "#blah": 38039, + "eitaa": 38040, + "bruddah": 38041, + "treading": 38042, + "#travel": 38043, + "jamaal": 38044, + "#yoga": 38045, + "turmoil": 38046, + "doke": 38047, + "overdosing": 38048, + "fuiste": 38049, + "haiz": 38050, + "otwol": 38051, + "idgaff": 38052, + "fanciful": 38053, + "soundly": 38054, + "anww": 38055, + "brina": 38056, + "dictionaries": 38057, + "benching": 38058, + "nouvelles": 38059, + "bryana": 38060, + "beest": 38061, + "muncie": 38062, + "serait": 38063, + "internationally": 38064, + "#shame": 38065, + "#hollaa": 38066, + "huston": 38067, + "disconnects": 38068, + "ipon": 38069, + "arresting": 38070, + "thatll": 38071, + "commodity": 38072, + "#round2": 38073, + "cdr": 38074, + "sugarcoat": 38075, + "droopy": 38076, + "jih": 38077, + "cornmeal": 38078, + "hijacked": 38079, + "#happybirthdaytome": 38080, + "baah": 38081, + "cakap": 38082, + "mamita": 38083, + "hosp": 38084, + "swingers": 38085, + "iwish": 38086, + "birthed": 38087, + "kennywood": 38088, + "feckin": 38089, + "scandinavian": 38090, + "draymond": 38091, + "lololololololol": 38092, + "boyzz": 38093, + "rousey": 38094, + "mayfield": 38095, + "rechargable": 38096, + "linda's": 38097, + "trac": 38098, + "desiigner": 38099, + "bunso": 38100, + "{};": 38101, + "burnett": 38102, + "catwoman": 38103, + "papo": 38104, + "hustla": 38105, + "gopher": 38106, + "babygirll": 38107, + "wlh": 38108, + "#nascar": 38109, + "amt": 38110, + "mlm": 38111, + "righthand": 38112, + "oopp": 38113, + "oyee": 38114, + "bowing": 38115, + "homebody": 38116, + "ligament": 38117, + "monopod": 38118, + "enhances": 38119, + "dissection": 38120, + "coitado": 38121, + "#ow": 38122, + "mistreat": 38123, + "fiel": 38124, + "o'malley": 38125, + "#upset": 38126, + "tayong": 38127, + "masyadong": 38128, + "puffin": 38129, + "grassy": 38130, + "detection": 38131, + "williamsburg": 38132, + "upkeep": 38133, + "repose": 38134, + "nononono": 38135, + "#currently": 38136, + "riverdale": 38137, + "deej": 38138, + "faucets": 38139, + "adamant": 38140, + "underdeveloped": 38141, + "mitts": 38142, + "jad": 38143, + "wudnt": 38144, + "esaa": 38145, + "wishbone": 38146, + "vallarta": 38147, + "tempest": 38148, + "accolades": 38149, + "grower": 38150, + "plaits": 38151, + "uur": 38152, + "daehyun": 38153, + "presque": 38154, + "raffles": 38155, + "advisors": 38156, + "mcvey": 38157, + "glbii": 38158, + "midsomer": 38159, + "arnd": 38160, + "rbd": 38161, + "loisa": 38162, + "#byebye": 38163, + "outdid": 38164, + "leeks": 38165, + "wilco": 38166, + "debunked": 38167, + "seriouss": 38168, + "enormously": 38169, + "embarrased": 38170, + "slabs": 38171, + "loony": 38172, + "dabbin": 38173, + "correcto": 38174, + "cakee": 38175, + "ishell": 38176, + "eveerr": 38177, + "bumb": 38178, + "chegando": 38179, + "environments": 38180, + "etre": 38181, + "ma's": 38182, + "tanners": 38183, + "lhhatl": 38184, + "kolby": 38185, + "waterworks": 38186, + "eliot": 38187, + "banta": 38188, + "blackbird": 38189, + "#gang": 38190, + "#latenightthoughts": 38191, + "thumper": 38192, + "misbehave": 38193, + "idola": 38194, + "sissy's": 38195, + "postmodern": 38196, + "india's": 38197, + "#honest": 38198, + "cepat": 38199, + "lennox": 38200, + "inaccessible": 38201, + "moonrise": 38202, + "wiem": 38203, + "subconsciously": 38204, + "cmonn": 38205, + "geil": 38206, + "guarded": 38207, + "roberta": 38208, + "assembling": 38209, + "stong": 38210, + "#sunshine": 38211, + "gues": 38212, + "bpl": 38213, + "jacoby": 38214, + "manufacturers": 38215, + "jajajajajajajajajajajajaja": 38216, + "prim": 38217, + "pftt": 38218, + "opaque": 38219, + "#thankthelord": 38220, + "gomd": 38221, + "#summertime": 38222, + "masterpeice": 38223, + "cadeau": 38224, + "mayan": 38225, + "nsw": 38226, + "nge": 38227, + "dross": 38228, + "#29": 38229, + "twisty": 38230, + "acepto": 38231, + "enebe": 38232, + "arh": 38233, + "pretense": 38234, + "#thefaultinourstars": 38235, + "fingerling": 38236, + "respectively": 38237, + "granda": 38238, + "sleepwalking": 38239, + "#new": 38240, + "#inpain": 38241, + "convocation": 38242, + "metros": 38243, + "liu": 38244, + "bayside": 38245, + "aromatic": 38246, + "squeaker": 38247, + "#lhhny": 38248, + "biih": 38249, + "penny's": 38250, + "defeating": 38251, + "personals": 38252, + "addi": 38253, + "milanesa": 38254, + "sisterly": 38255, + "jaycee": 38256, + "#r5family": 38257, + "jits": 38258, + "enriching": 38259, + "rapp": 38260, + "sheltered": 38261, + "fersure": 38262, + "caus": 38263, + "middletown": 38264, + "critically": 38265, + "hehehee": 38266, + "biologia": 38267, + "inggit": 38268, + "#woah": 38269, + "cuttee": 38270, + "swagged": 38271, + "organisation": 38272, + "residency": 38273, + "kingsman": 38274, + "fase": 38275, + "searchin": 38276, + "deles": 38277, + "ttm": 38278, + "rizal": 38279, + "yammouni": 38280, + "arnie": 38281, + "hairdo": 38282, + "bastaa": 38283, + "sheeit": 38284, + "jaebum": 38285, + "enfants": 38286, + "robotics": 38287, + "ester": 38288, + "moom": 38289, + "lusty": 38290, + "browsed": 38291, + "kooky": 38292, + "maul": 38293, + "allied": 38294, + "malika": 38295, + "susu": 38296, + "nameless": 38297, + "croft": 38298, + "eaton": 38299, + "symantec": 38300, + "quil": 38301, + "otayy": 38302, + "jyp": 38303, + "hiro": 38304, + "nicolette": 38305, + "stanton": 38306, + "homophobia": 38307, + "icd": 38308, + "shim": 38309, + "#goat": 38310, + "cyberpunk": 38311, + "holdup": 38312, + "zayum": 38313, + "minah": 38314, + "delt": 38315, + "d.o.a.": 38316, + "pasting": 38317, + "workings": 38318, + "toutes": 38319, + "#day1": 38320, + "chuckled": 38321, + "acknowledgment": 38322, + "otters": 38323, + "cuuttee": 38324, + "najee": 38325, + "deduct": 38326, + "reb": 38327, + "bosa": 38328, + "messier": 38329, + "demolition": 38330, + "pelea": 38331, + "blackie": 38332, + "woodwork": 38333, + "what'll": 38334, + "zouk": 38335, + "jarrod": 38336, + "pharmacology": 38337, + "desperte": 38338, + "sistar": 38339, + "oyasumi": 38340, + "creatine": 38341, + "katlyn": 38342, + "erkin": 38343, + "krystal's": 38344, + "asz": 38345, + "blaire": 38346, + "heure": 38347, + "literatura": 38348, + "tenks": 38349, + "uppity": 38350, + "henley": 38351, + "susunod": 38352, + "illumination": 38353, + "lion's": 38354, + "skimmed": 38355, + "parrish": 38356, + "trevor's": 38357, + "classically": 38358, + "janel": 38359, + "povo": 38360, + "molecular": 38361, + "fillmore": 38362, + "restrain": 38363, + "lemsip": 38364, + "mitten": 38365, + "creationism": 38366, + "showcases": 38367, + "beetch": 38368, + "papasok": 38369, + "norms": 38370, + "harini": 38371, + "#getoverit": 38372, + "#imsinglebecause": 38373, + "indefinitely": 38374, + "stepper": 38375, + "crouching": 38376, + "seer": 38377, + "collectibles": 38378, + "#old": 38379, + "#fat": 38380, + "supra": 38381, + "#bts": 38382, + "#namaste": 38383, + "quen": 38384, + "up's": 38385, + "hondas": 38386, + "caffeinated": 38387, + "fen": 38388, + "doraemon": 38389, + "kaylyn": 38390, + "makapag": 38391, + "hippos": 38392, + "torrey": 38393, + "gauntlet": 38394, + "toure": 38395, + "#waiting": 38396, + "huaa": 38397, + "milla": 38398, + "schwartz": 38399, + "asd": 38400, + "hazards": 38401, + "tooxx": 38402, + "cannt": 38403, + "babysat": 38404, + "crops": 38405, + "pes": 38406, + "azar": 38407, + "vinyls": 38408, + "soften": 38409, + ":,(": 38410, + "#sodone": 38411, + "#playoffs": 38412, + "camped": 38413, + "recline": 38414, + "circled": 38415, + "biel": 38416, + "bellevue": 38417, + "ryu": 38418, + "femmes": 38419, + "columns": 38420, + "yeea": 38421, + "chorar": 38422, + "tahun": 38423, + "yop": 38424, + "unli": 38425, + "rediscovering": 38426, + "forfeit": 38427, + "jumpman": 38428, + "couse": 38429, + "jami": 38430, + "rey's": 38431, + "virat": 38432, + "frens": 38433, + "ahahahahha": 38434, + "textt": 38435, + "#thanksdad": 38436, + "jo's": 38437, + "unscientific": 38438, + "fckng": 38439, + "sprit": 38440, + "bogey": 38441, + "#calloutacutie": 38442, + "ezoo": 38443, + "#buenosdias": 38444, + "reposted": 38445, + "sheep's": 38446, + "spectre": 38447, + "rylie": 38448, + "poppop": 38449, + "acer": 38450, + "aristotle": 38451, + "waitrose": 38452, + "doobies": 38453, + "truckers": 38454, + "lupus": 38455, + "inconsistant": 38456, + "managerial": 38457, + "say's": 38458, + "regulation": 38459, + "rulz": 38460, + "staahhpp": 38461, + "prescribe": 38462, + "knitted": 38463, + "catechism": 38464, + "rife": 38465, + "portrays": 38466, + "exerciser": 38467, + "senor": 38468, + "scaredd": 38469, + "alix": 38470, + "yardhouse": 38471, + "walkways": 38472, + "swanson": 38473, + "conquering": 38474, + "schumacher": 38475, + "conservation": 38476, + "apo": 38477, + "abbreviated": 38478, + "hunnay": 38479, + "colectivo": 38480, + "autocad": 38481, + "bassnectar": 38482, + "anno": 38483, + "conecta": 38484, + "wrigley": 38485, + "chummy": 38486, + "kirst": 38487, + "nakapag": 38488, + "#ineedsleep": 38489, + "cabe": 38490, + "pigtails": 38491, + "swig": 38492, + "macros": 38493, + "kv": 38494, + "gust": 38495, + "midfielder": 38496, + "missyoutoo": 38497, + "ukrainian": 38498, + "softness": 38499, + "loulou": 38500, + "berto": 38501, + "johan": 38502, + "teenwolf": 38503, + "casted": 38504, + "pila": 38505, + "gwaf": 38506, + "bakeware": 38507, + "iw": 38508, + "#class": 38509, + "panas": 38510, + "yore": 38511, + "hdd": 38512, + "pendulum": 38513, + "alvaro": 38514, + "agressive": 38515, + "j'te": 38516, + "#fashion": 38517, + "actives": 38518, + "hastily": 38519, + "#sadbuttrue": 38520, + "inboxed": 38521, + "missleading": 38522, + "horrifically": 38523, + "stopwatch": 38524, + "fragments": 38525, + "charlottes": 38526, + "haria": 38527, + "mentiraa": 38528, + "#grindtime": 38529, + "nicknamed": 38530, + "weld": 38531, + "disciples": 38532, + "bodily": 38533, + "hatter": 38534, + "reserving": 38535, + "hobos": 38536, + "kmfsl": 38537, + "#warriors": 38538, + "braums": 38539, + "bettaa": 38540, + "retweeters": 38541, + "jare": 38542, + "qur'an": 38543, + "heaving": 38544, + "kaw": 38545, + "covert": 38546, + "lanka": 38547, + "thinkk": 38548, + "#tmi": 38549, + "steamboat": 38550, + "anklet": 38551, + "headless": 38552, + "solstice": 38553, + "lindt": 38554, + "marica": 38555, + "missionaries": 38556, + "sik": 38557, + "#summer2013": 38558, + "dachshund": 38559, + "eardrums": 38560, + "screwball": 38561, + "smears": 38562, + "bronte": 38563, + "celsius": 38564, + "souvlaki": 38565, + "salade": 38566, + "yummiest": 38567, + "panko": 38568, + "kickers": 38569, + "parisian": 38570, + "petroleum": 38571, + "youh": 38572, + "#mic": 38573, + "stepbrothers": 38574, + "twitting": 38575, + "synced": 38576, + "parkin": 38577, + "#patriots": 38578, + "wreckless": 38579, + "ogs": 38580, + "slytherin": 38581, + "kute": 38582, + "eo": 38583, + "fecha": 38584, + "hysterics": 38585, + "keya": 38586, + "augh": 38587, + "kiosks": 38588, + "galleries": 38589, + "loe": 38590, + "brees": 38591, + "hellz": 38592, + "irn": 38593, + "konting": 38594, + "yatii": 38595, + "hookahs": 38596, + "disclosed": 38597, + "darko": 38598, + "#painful": 38599, + "lettering": 38600, + "attila": 38601, + "vicente": 38602, + "meerkat": 38603, + "albania": 38604, + "babyfather": 38605, + "#comeon": 38606, + "barron's": 38607, + "bst": 38608, + "bearer": 38609, + "naturals": 38610, + "effet": 38611, + "haji": 38612, + "domani": 38613, + "yikess": 38614, + "haai": 38615, + "causally": 38616, + "partie": 38617, + "slew": 38618, + "purposefully": 38619, + "user's": 38620, + "malaya": 38621, + "lear": 38622, + "forgettin": 38623, + "burial": 38624, + "coped": 38625, + "#outlander": 38626, + "erica's": 38627, + "caramba": 38628, + "rari": 38629, + "dyinn": 38630, + "shard": 38631, + "undivided": 38632, + "roofing": 38633, + "dumbbell": 38634, + "tubman": 38635, + "powerball": 38636, + "whassup": 38637, + "filmmakers": 38638, + "maximus": 38639, + "reik": 38640, + "nanana": 38641, + "#nomnomnom": 38642, + "machina": 38643, + "strenght": 38644, + "madting": 38645, + "backboard": 38646, + "habloo": 38647, + "dreadheads": 38648, + "remaking": 38649, + "chambre": 38650, + "penetrate": 38651, + "snorkel": 38652, + "niente": 38653, + "finir": 38654, + "irdc": 38655, + "demetrius": 38656, + "isolate": 38657, + "hitler's": 38658, + "skywalker": 38659, + "fena": 38660, + "patel": 38661, + "wove": 38662, + "saranghaeyo": 38663, + "buon": 38664, + "grillz": 38665, + "airmax": 38666, + "ninguno": 38667, + "#stealmygirl": 38668, + "faceass": 38669, + "albumn": 38670, + "hatched": 38671, + "joann": 38672, + "disfrutar": 38673, + "peerless": 38674, + "paddling": 38675, + "jum": 38676, + "coopers": 38677, + "squarepants": 38678, + "your're": 38679, + "irma": 38680, + "worldie": 38681, + "inexplicably": 38682, + "maguire": 38683, + "publications": 38684, + "beethoven's": 38685, + "imprint": 38686, + "realz": 38687, + "achiever": 38688, + "ttown": 38689, + "liamm": 38690, + "quartz": 38691, + "ethiopia": 38692, + "usm": 38693, + "armadillo": 38694, + "thom": 38695, + "coraje": 38696, + "ykt": 38697, + "towering": 38698, + "crankin": 38699, + "filo": 38700, + "seca": 38701, + "tangle": 38702, + "loovve": 38703, + "mcse": 38704, + "rainha": 38705, + "ukip": 38706, + "scrapbooking": 38707, + "arre": 38708, + "rami": 38709, + "alota": 38710, + "#fuckyeah": 38711, + "klar": 38712, + "drinkable": 38713, + "amara": 38714, + "ube": 38715, + "mexi": 38716, + "crashers": 38717, + "quelque": 38718, + "pathology": 38719, + "suffocated": 38720, + "mentir": 38721, + "dadd": 38722, + "kalma": 38723, + "#missingyou": 38724, + "evs": 38725, + "cran": 38726, + "seduced": 38727, + "foodsaver": 38728, + "principe": 38729, + "abhi": 38730, + "#bestfriendtweet": 38731, + "spazzin": 38732, + "advances": 38733, + "hotwings": 38734, + "#madeinchelsea": 38735, + "twatter": 38736, + "snappers": 38737, + "criminology": 38738, + "bonheur": 38739, + "pior": 38740, + "zuri": 38741, + "aoife": 38742, + "stuupid": 38743, + "freshen": 38744, + "rhe": 38745, + "facetimeing": 38746, + "dania": 38747, + "gazpacho": 38748, + "bebop": 38749, + "mustn't": 38750, + "stairwell": 38751, + "gaelic": 38752, + "molested": 38753, + "cartwheels": 38754, + "marigold": 38755, + "caleb's": 38756, + "laame": 38757, + "algeria": 38758, + "upcharge": 38759, + "gallows": 38760, + "populated": 38761, + "gander": 38762, + "seger": 38763, + "gustar": 38764, + "chubbs": 38765, + "ebb": 38766, + "harvey's": 38767, + "lloremos": 38768, + "pippin": 38769, + "devote": 38770, + "mfg": 38771, + "surgeons": 38772, + "xu": 38773, + "finalist": 38774, + "iraqi": 38775, + "klondike": 38776, + "debauchery": 38777, + "burthday": 38778, + "jme": 38779, + "isha": 38780, + "winona": 38781, + "multiples": 38782, + "reinstall": 38783, + "positioned": 38784, + "rangoons": 38785, + "arya": 38786, + "horseshoe": 38787, + "cummin": 38788, + "dsm": 38789, + "angrier": 38790, + "makenzie": 38791, + "faerie": 38792, + "zire": 38793, + "#gains": 38794, + "bwahahahaha": 38795, + "ojalaa": 38796, + "amiss": 38797, + "misogyny": 38798, + "treacherous": 38799, + "snooker": 38800, + "deadliest": 38801, + "dings": 38802, + "#lovelovelove": 38803, + "#myjam": 38804, + "krit": 38805, + "terence": 38806, + "mashy": 38807, + "homebound": 38808, + "drankin": 38809, + "partridge": 38810, + "colee": 38811, + "invitas": 38812, + "#him": 38813, + "fj": 38814, + "esponja": 38815, + "franchement": 38816, + "exec": 38817, + "flatmates": 38818, + "#clueless": 38819, + "roddy": 38820, + "thingys": 38821, + "nourriture": 38822, + "burying": 38823, + "jipped": 38824, + "dived": 38825, + "routinely": 38826, + "#baseball": 38827, + "jenelle": 38828, + "entere": 38829, + "homecomings": 38830, + "prinny": 38831, + "cis": 38832, + "iti": 38833, + "hodgepodge": 38834, + "unfounded": 38835, + "angelique": 38836, + "brokenhearted": 38837, + "sonatas": 38838, + "snoww": 38839, + "amity": 38840, + "g.i.": 38841, + "weetabix": 38842, + "dier": 38843, + "dwade": 38844, + "okai": 38845, + "hyena": 38846, + "prong": 38847, + "queenie": 38848, + "asar": 38849, + "stardom": 38850, + "hubba": 38851, + "heroism": 38852, + "arjona": 38853, + "rigo": 38854, + "artrave": 38855, + "dames": 38856, + "bz": 38857, + "reptiles": 38858, + "stroganoff": 38859, + "pliz": 38860, + "pusieron": 38861, + "oggi": 38862, + "carlee": 38863, + "gir": 38864, + "marino": 38865, + "flanagan": 38866, + "adrian's": 38867, + "abrazos": 38868, + "pesada": 38869, + "labelle": 38870, + "funrun": 38871, + "aaral": 38872, + "ble": 38873, + "cheveux": 38874, + "pathological": 38875, + "heathen": 38876, + "villian": 38877, + "annabel": 38878, + "handshakes": 38879, + "mommom": 38880, + "#pokemongo": 38881, + "hussle": 38882, + "twi": 38883, + "plainfield": 38884, + "oreo's": 38885, + "bsn": 38886, + "peterborough": 38887, + "siguen": 38888, + "brevet": 38889, + "#sun": 38890, + "rerelease": 38891, + "chillinn": 38892, + "supera": 38893, + "summons": 38894, + "beautician": 38895, + "#theworst": 38896, + "missguided": 38897, + "embolee": 38898, + "kambal": 38899, + "ultraviolence": 38900, + "nevaeh": 38901, + "piensas": 38902, + "vaccuum": 38903, + "wight": 38904, + "#staypositive": 38905, + "viewings": 38906, + "dob": 38907, + "uneaten": 38908, + "mutiny": 38909, + "unsolved": 38910, + "beaded": 38911, + "wyatb": 38912, + "finesser": 38913, + "quantico": 38914, + "negotiation": 38915, + "yousef": 38916, + "contraption": 38917, + "draco": 38918, + "fel": 38919, + "rekindle": 38920, + "younging": 38921, + "#valentinesday": 38922, + "twatches": 38923, + "leanna": 38924, + "faq": 38925, + "airheads": 38926, + "excitedly": 38927, + "#loveyouall": 38928, + "enti": 38929, + "mccormick": 38930, + "quietest": 38931, + "carey's": 38932, + "icdc": 38933, + "xfinity": 38934, + "natt": 38935, + "voiture": 38936, + "merecen": 38937, + "i'l": 38938, + "buongiornoo": 38939, + "#periscope": 38940, + "#rain": 38941, + "usless": 38942, + "squeegee": 38943, + "settlement": 38944, + "s'all": 38945, + "gtb": 38946, + "entity": 38947, + "whomp": 38948, + "fhs": 38949, + "brooklynn": 38950, + "incarnation": 38951, + "townhouse": 38952, + "neuro": 38953, + "finalized": 38954, + "roi": 38955, + "multipurpose": 38956, + "brehh": 38957, + "stephon": 38958, + "tiaa": 38959, + "sharif": 38960, + "hunks": 38961, + "serpent": 38962, + "wonwoo": 38963, + "#welldone": 38964, + "weu": 38965, + "shaman": 38966, + "happyness": 38967, + "speedos": 38968, + "hbk": 38969, + "killian": 38970, + "canna": 38971, + "rounder": 38972, + "ccr": 38973, + "filibertos": 38974, + "churrasco": 38975, + "urchin": 38976, + "asheville": 38977, + "sieste": 38978, + "sedap": 38979, + "moen": 38980, + "nondescript": 38981, + "sauf": 38982, + "avalanna": 38983, + "#mom": 38984, + "umass": 38985, + "escribe": 38986, + "dao": 38987, + "thicc": 38988, + "reir": 38989, + "dbq": 38990, + "universo": 38991, + "#perfectday": 38992, + "enhancement": 38993, + "alight": 38994, + "noobody": 38995, + "#wth": 38996, + "intending": 38997, + "shutt": 38998, + "manman": 38999, + "visita": 39000, + "cutiess": 39001, + "#homealone": 39002, + "pwe": 39003, + "tweens": 39004, + "mochas": 39005, + "britax": 39006, + "oopsy": 39007, + "mailers": 39008, + "maiya": 39009, + "hemmed": 39010, + "abh": 39011, + "phils": 39012, + "#country": 39013, + "quedado": 39014, + "recordar": 39015, + "sauvignon": 39016, + "npp": 39017, + "dominick": 39018, + "#mood": 39019, + "#mtv": 39020, + "mingling": 39021, + "shanty": 39022, + "protege": 39023, + "pressies": 39024, + "werner": 39025, + "kernel": 39026, + "warhol": 39027, + "douglass": 39028, + "lynx": 39029, + "bradshaw": 39030, + "tormenta": 39031, + "illegible": 39032, + "kailyn": 39033, + "voi": 39034, + "manicurist": 39035, + "kenmore": 39036, + "boudin": 39037, + "merced": 39038, + "aud": 39039, + "commentating": 39040, + "pouty": 39041, + "inflator": 39042, + "sith": 39043, + "climbers": 39044, + "hihii": 39045, + "pdp": 39046, + "chercher": 39047, + "miyazaki": 39048, + "scrambling": 39049, + "lave": 39050, + "belittle": 39051, + "sira": 39052, + "boozy": 39053, + "insure": 39054, + "firearm": 39055, + "everyy": 39056, + "scaryy": 39057, + "tudor": 39058, + "#nofucksgiven": 39059, + "shaper": 39060, + "yogurts": 39061, + "sizzles": 39062, + "vornado": 39063, + "tastey": 39064, + "#mpn": 39065, + "guyys": 39066, + "fastt": 39067, + "noi": 39068, + "reckons": 39069, + "claimin": 39070, + "lemonades": 39071, + "#beach": 39072, + "foaming": 39073, + "stamos": 39074, + "nsn": 39075, + "khaleesi": 39076, + "fabi": 39077, + "mummies": 39078, + "ramsay's": 39079, + "ceremonies": 39080, + "scaredy": 39081, + "scrapes": 39082, + "pileta": 39083, + "dutchess": 39084, + "startled": 39085, + "preferable": 39086, + "export": 39087, + "cline": 39088, + "sierras": 39089, + "cuti": 39090, + "#holyshit": 39091, + "#nomnom": 39092, + "roommate's": 39093, + "rounders": 39094, + "haystack": 39095, + "cyph": 39096, + "noggin": 39097, + "vikki": 39098, + "chuckling": 39099, + "enthralled": 39100, + "ontrac": 39101, + "lumber": 39102, + "hic": 39103, + "toddler's": 39104, + "wanty": 39105, + "#princessprobz": 39106, + "orthopedic": 39107, + "amirite": 39108, + "kine": 39109, + "mollies": 39110, + "atd": 39111, + "juls": 39112, + "ideally": 39113, + "atheism": 39114, + "sponsorship": 39115, + "gwapa": 39116, + "straining": 39117, + "departing": 39118, + "vbs": 39119, + "albion": 39120, + "sayangku": 39121, + "somo's": 39122, + "osige": 39123, + "salmonella": 39124, + "iwill": 39125, + "bestfran": 39126, + "ogt": 39127, + "battery's": 39128, + "shampoos": 39129, + "ihome": 39130, + "soons": 39131, + "umaga": 39132, + "#atl": 39133, + "peitos": 39134, + "zayumm": 39135, + "maself": 39136, + "millwall": 39137, + "desoto": 39138, + "maitre": 39139, + "#partytime": 39140, + "waas": 39141, + "twifey": 39142, + "lazier": 39143, + "tibet": 39144, + "cumberland": 39145, + "samme": 39146, + "lke": 39147, + "#crossfit": 39148, + "irkin": 39149, + "be's": 39150, + "hardship": 39151, + "thk": 39152, + "roomates": 39153, + "muchxx": 39154, + "springbreak": 39155, + "flexxin": 39156, + "#yayme": 39157, + "#maybe": 39158, + "rallies": 39159, + "gabbana": 39160, + "suey": 39161, + "isbn": 39162, + "shew": 39163, + "eases": 39164, + "durin": 39165, + "unexplained": 39166, + "colo": 39167, + "peki": 39168, + "#shots": 39169, + "siemens": 39170, + "ume": 39171, + "mackin": 39172, + "beetles": 39173, + "emanuel": 39174, + "woh": 39175, + "granada": 39176, + "techie": 39177, + "nads": 39178, + "zs": 39179, + "awtsu": 39180, + "momentarily": 39181, + "kenton": 39182, + "bookoo": 39183, + "#bruh": 39184, + "teaa": 39185, + "extendo": 39186, + "flexx": 39187, + "#thirstythursday": 39188, + "pis": 39189, + "fios": 39190, + "traje": 39191, + "hablarle": 39192, + "weaakk": 39193, + "rubio's": 39194, + "pedazo": 39195, + "shuu": 39196, + "savoir": 39197, + "ursula": 39198, + "dollface": 39199, + "forearms": 39200, + "heaa": 39201, + "sheed": 39202, + "gideon": 39203, + "gripes": 39204, + "#naughty": 39205, + "vanguard": 39206, + "kaci": 39207, + "appraisal": 39208, + "hoovering": 39209, + "eten": 39210, + "hahahahhah": 39211, + "stelena": 39212, + "yeno": 39213, + "guyyss": 39214, + "cale": 39215, + "#shortgirlproblems": 39216, + "#goodone": 39217, + "filmmaker": 39218, + "effectivement": 39219, + "radcliffe": 39220, + "kashmir": 39221, + "hoeness": 39222, + "heaton": 39223, + "#emmerdale": 39224, + "backflips": 39225, + "hardstyle": 39226, + "fdaitch": 39227, + "okno": 39228, + "#femalepains": 39229, + "profane": 39230, + "prejudiced": 39231, + "charlies": 39232, + "usar": 39233, + "vonage": 39234, + "bullcrap": 39235, + "stephy": 39236, + "smilers": 39237, + "zouis": 39238, + "#fedup": 39239, + "skepta": 39240, + "alb": 39241, + "beacuse": 39242, + "limite": 39243, + "acerca": 39244, + "mesti": 39245, + "daiquiris": 39246, + "tomate": 39247, + "favorita": 39248, + "hiks": 39249, + "rando": 39250, + "brynn": 39251, + "uranus": 39252, + "ilike": 39253, + "whutt": 39254, + "poussey": 39255, + "falso": 39256, + "pat's": 39257, + "perfects": 39258, + "crosley": 39259, + "regurgitated": 39260, + "summon": 39261, + "cults": 39262, + "creationist": 39263, + "smileys": 39264, + "#vine": 39265, + "directs": 39266, + "handgun": 39267, + "mfing": 39268, + "noose": 39269, + "#hashtag": 39270, + "aaliyah's": 39271, + "goa": 39272, + "moises": 39273, + "cagar": 39274, + "manchego": 39275, + "noddles": 39276, + "benzino": 39277, + "aftr": 39278, + "preservatives": 39279, + "#whitegirlwednesday": 39280, + "fuccing": 39281, + "standouts": 39282, + "hin": 39283, + "farley": 39284, + "obliger": 39285, + "htown": 39286, + "achei": 39287, + "sheeps": 39288, + "orderd": 39289, + "rhiannon": 39290, + "dominance": 39291, + "hn": 39292, + "allahu": 39293, + "notepad": 39294, + "goodtimes": 39295, + "senhora": 39296, + "babayy": 39297, + "#iwin": 39298, + "munched": 39299, + "calculators": 39300, + "astounded": 39301, + "grover": 39302, + "#teamwork": 39303, + "lanzarote": 39304, + "alfin": 39305, + "automobile": 39306, + "ladys": 39307, + "woofer": 39308, + "delicous": 39309, + "stalkeando": 39310, + "benteke": 39311, + "#proudofmyself": 39312, + "curiously": 39313, + "superfluous": 39314, + "hoboken": 39315, + "lourd": 39316, + "fairfax": 39317, + "sommer": 39318, + "#isthisreallife": 39319, + "#perfectnight": 39320, + "lurv": 39321, + "pornstars": 39322, + "nsu": 39323, + "revines": 39324, + "macarena": 39325, + "cyclists": 39326, + "emmett": 39327, + "urn": 39328, + "booii": 39329, + "movado": 39330, + "rattles": 39331, + "pari": 39332, + "heere": 39333, + "pecado": 39334, + "tator": 39335, + "stye": 39336, + "superlatives": 39337, + "ptx": 39338, + "distancing": 39339, + "this's": 39340, + "mre": 39341, + "#bitchplease": 39342, + "crenshaw": 39343, + "sekolah": 39344, + "mulher": 39345, + "alarma": 39346, + "waley": 39347, + "irvin": 39348, + "enema": 39349, + "operators": 39350, + "raa": 39351, + "maccas": 39352, + "puncture": 39353, + "liquors": 39354, + "polis": 39355, + "softcore": 39356, + "novelization": 39357, + "toulouse": 39358, + "whp": 39359, + "flamingos": 39360, + "flourishing": 39361, + "pelvic": 39362, + "fragrances": 39363, + "leveled": 39364, + "nis": 39365, + "giada": 39366, + "jala": 39367, + "successes": 39368, + "pasoo": 39369, + "cagas": 39370, + "feelz": 39371, + "bethlehem": 39372, + "dealings": 39373, + "boldly": 39374, + "bocca": 39375, + "crostini": 39376, + "hourglass": 39377, + "hanky": 39378, + "zilch": 39379, + "brig": 39380, + "strays": 39381, + "induce": 39382, + "vultures": 39383, + "exploit": 39384, + "cday": 39385, + "eer": 39386, + "intl": 39387, + "abstinence": 39388, + "collapses": 39389, + "rick's": 39390, + "cxx": 39391, + "#alone": 39392, + "breakage": 39393, + ":[": 39394, + "dentures": 39395, + "#soccer": 39396, + "ahhahahaha": 39397, + "#tgit": 39398, + "painkiller": 39399, + "sweetcheeks": 39400, + "arron": 39401, + "niles": 39402, + "crates": 39403, + "pyscho": 39404, + "baebae": 39405, + "lockscreens": 39406, + "gonzalo": 39407, + "greenfield": 39408, + "pucks": 39409, + "chimichangas": 39410, + "dillion": 39411, + "coiffeur": 39412, + "strongg": 39413, + "ideals": 39414, + "hosed": 39415, + "lita": 39416, + "sabrina's": 39417, + "beebti": 39418, + "paix": 39419, + "gisselle": 39420, + "reconstruction": 39421, + "porfin": 39422, + "regis": 39423, + "canals": 39424, + "danngg": 39425, + "rodent": 39426, + "yez": 39427, + "errol": 39428, + "gretel": 39429, + "jager": 39430, + "soaker": 39431, + "#insider": 39432, + "#remix": 39433, + "livs": 39434, + ";//": 39435, + "premiers": 39436, + "kano": 39437, + "cero": 39438, + "shaka": 39439, + "peeved": 39440, + "grouch": 39441, + "bandicoot": 39442, + "octavia": 39443, + "maghrib": 39444, + "estes": 39445, + "koontz's": 39446, + "wirklich": 39447, + "curry's": 39448, + "store's": 39449, + "fife": 39450, + "siro": 39451, + "#we": 39452, + "disturbance": 39453, + "#32": 39454, + "lament": 39455, + "luk": 39456, + "cassie's": 39457, + "furnished": 39458, + "corbyn": 39459, + "asphalt": 39460, + "honours": 39461, + "izzie": 39462, + "saitek": 39463, + "calamity": 39464, + "crossbow": 39465, + "confrontational": 39466, + "dicksucking": 39467, + "moines": 39468, + "blimp": 39469, + "shari": 39470, + "songbird": 39471, + "depo": 39472, + "buona": 39473, + "dott": 39474, + "stana": 39475, + "kato": 39476, + "interpreted": 39477, + "hough": 39478, + "bilge": 39479, + "aalis": 39480, + "montclair": 39481, + "electra": 39482, + "storys": 39483, + "theyd": 39484, + "simeon": 39485, + "preformed": 39486, + "industries": 39487, + "plena": 39488, + "#followers": 39489, + "asin": 39490, + "redundancy": 39491, + "tcc": 39492, + "overheat": 39493, + "peeks": 39494, + "parasailing": 39495, + "cooperative": 39496, + "congee": 39497, + "gute": 39498, + "#tomorrow": 39499, + "aprende": 39500, + "niven": 39501, + "omigod": 39502, + "#neverfails": 39503, + "depressive": 39504, + "ryobi": 39505, + "backfires": 39506, + "redesigned": 39507, + "suya": 39508, + "fleming's": 39509, + "snowmen": 39510, + "duplicated": 39511, + "navarro": 39512, + "composite": 39513, + "internships": 39514, + "#hunterhayes": 39515, + "isco": 39516, + "serg": 39517, + "tolle": 39518, + "deze": 39519, + "bluewater": 39520, + "simon's": 39521, + "mentors": 39522, + "probally": 39523, + "waiitt": 39524, + "coogi": 39525, + "#turnt": 39526, + "bwoy": 39527, + "killings": 39528, + "rigorous": 39529, + "sundance": 39530, + "astig": 39531, + "stiller": 39532, + "sulk": 39533, + "hanover": 39534, + "evey": 39535, + "gottem": 39536, + "betches": 39537, + "nggas": 39538, + "trident": 39539, + "#gratitude": 39540, + "closee": 39541, + "clarion": 39542, + "sayonara": 39543, + "congealed": 39544, + "#lovely": 39545, + "fructose": 39546, + "picc": 39547, + "discontinue": 39548, + "crowning": 39549, + "fresas": 39550, + "moana": 39551, + "daym": 39552, + "pourin": 39553, + "rec'd": 39554, + "eryn": 39555, + "whoopie": 39556, + "coitada": 39557, + "extraa": 39558, + "rawhide": 39559, + "incisive": 39560, + "clem": 39561, + "fairview": 39562, + "dispatcher": 39563, + "ehs": 39564, + "#funfact": 39565, + "wetin": 39566, + "#ff_special": 39567, + "ramsey's": 39568, + "smirking": 39569, + "babysitters": 39570, + "styler": 39571, + "yeux": 39572, + "#bluejays": 39573, + "kwame": 39574, + "bewildered": 39575, + "fred's": 39576, + "sweepy": 39577, + "thugger": 39578, + "dresden": 39579, + "mouthy": 39580, + "oppressed": 39581, + "beefed": 39582, + "cognac": 39583, + "adicta": 39584, + "outnumbered": 39585, + "#keepitup": 39586, + "ptl": 39587, + "affirmations": 39588, + "magicians": 39589, + "#childhoodmemories": 39590, + "loverr": 39591, + "hielo": 39592, + "distilled": 39593, + "hagar": 39594, + "#swoon": 39595, + "whittier": 39596, + "deonte": 39597, + "naao": 39598, + "sema": 39599, + "ookk": 39600, + "val's": 39601, + "livers": 39602, + "villas": 39603, + "demonstrates": 39604, + "ilsm": 39605, + "orb": 39606, + "spurt": 39607, + "kindergarden": 39608, + "oppression": 39609, + "locke": 39610, + "stc": 39611, + "itee": 39612, + "bardo": 39613, + "parth": 39614, + "abso": 39615, + "eddings": 39616, + "louboutin": 39617, + "vandy": 39618, + "pinkprint": 39619, + "catastrophic": 39620, + "yeeyy": 39621, + "remixing": 39622, + "renzo": 39623, + "minaj's": 39624, + "faam": 39625, + "erasure": 39626, + "prospects": 39627, + "absorption": 39628, + "enroute": 39629, + "marlee": 39630, + "jz": 39631, + "mymy": 39632, + "electives": 39633, + "passover": 39634, + "lathe": 39635, + "tenchi": 39636, + "shimmering": 39637, + "beaker": 39638, + "danks": 39639, + "bavarian": 39640, + "waxes": 39641, + "fords": 39642, + "arrivals": 39643, + "porte": 39644, + "braggin": 39645, + "oba": 39646, + "sorrynotsorry": 39647, + "jisoo": 39648, + "stormzy": 39649, + "#don": 39650, + "fnl": 39651, + "verryy": 39652, + "lasanha": 39653, + "salaams": 39654, + "rogan": 39655, + "hypnotizing": 39656, + "fumbling": 39657, + "slayers": 39658, + "quelqu'un": 39659, + "place's": 39660, + "ssn": 39661, + "terribles": 39662, + "igaf": 39663, + "meetin": 39664, + "#maga": 39665, + "babygurl": 39666, + "goll": 39667, + "breadstick": 39668, + "#sadtimes": 39669, + "ricci": 39670, + "stm": 39671, + "#libras": 39672, + "#sweepstakes": 39673, + "chicharito": 39674, + "tommie": 39675, + "kiefer": 39676, + "polaris": 39677, + "hof": 39678, + "everyman": 39679, + "bpm": 39680, + "radiate": 39681, + "soldier's": 39682, + "hetero": 39683, + "xj": 39684, + "madelyn": 39685, + "cfm": 39686, + "#sweet16": 39687, + "#bones": 39688, + "utk": 39689, + "upping": 39690, + "creamery": 39691, + "frazier": 39692, + "bergen": 39693, + "antony": 39694, + "pilgrims": 39695, + "easing": 39696, + "fulfills": 39697, + "#smackdown": 39698, + "nons": 39699, + "maybelline": 39700, + "parkers": 39701, + "pasaron": 39702, + "reinforcement": 39703, + "craw": 39704, + "drews": 39705, + "unsympathetic": 39706, + "cobwebs": 39707, + "pelvis": 39708, + "wowowowow": 39709, + "echoing": 39710, + "#hehe": 39711, + "duelo": 39712, + "cfs": 39713, + "reo": 39714, + "cuutee": 39715, + "mucus": 39716, + "lyndsey": 39717, + "brainy": 39718, + "bfg": 39719, + "#ongod": 39720, + "palmdale": 39721, + "fueled": 39722, + "bucco": 39723, + "pavarotti": 39724, + "previa": 39725, + "sowwie": 39726, + "ipl": 39727, + "bich": 39728, + "hawkwind": 39729, + "bulling": 39730, + "alis": 39731, + "grandview": 39732, + "lackey": 39733, + "esperemos": 39734, + "#myfave": 39735, + "witout": 39736, + "disdain": 39737, + "indah": 39738, + "infusion": 39739, + "anoo": 39740, + "#wedding": 39741, + "chynna": 39742, + "botany": 39743, + "evaluating": 39744, + "malicious": 39745, + "degraw": 39746, + "rater": 39747, + "laos": 39748, + "tolerating": 39749, + "feliiz": 39750, + "pyt": 39751, + "demora": 39752, + "#canyounot": 39753, + "nomoe": 39754, + "mth": 39755, + "roh": 39756, + "stinger": 39757, + "reorder": 39758, + "unaa": 39759, + "enfermar": 39760, + "exato": 39761, + "pathfinder": 39762, + "cyclist": 39763, + "kindling": 39764, + "oneida": 39765, + "pop's": 39766, + "jolene": 39767, + "seungri": 39768, + "roughest": 39769, + "harrington": 39770, + "fett": 39771, + "loui": 39772, + "referees": 39773, + "muhh": 39774, + "#someday": 39775, + "indio": 39776, + "preteen": 39777, + "persia": 39778, + "nora's": 39779, + "esmeralda": 39780, + "scarborough": 39781, + "construct": 39782, + "brute": 39783, + "professor's": 39784, + "landline": 39785, + "trendsetter": 39786, + "sould": 39787, + "cursory": 39788, + "#nyr": 39789, + "wtg": 39790, + "crazily": 39791, + "lasing": 39792, + "entrain": 39793, + "fera": 39794, + "muchly": 39795, + "onboard": 39796, + "foray": 39797, + "strat": 39798, + "forums": 39799, + "mussel": 39800, + "#agentsofshield": 39801, + "floww": 39802, + "bbk": 39803, + "reproduce": 39804, + "locksmith": 39805, + "tapa": 39806, + "ning": 39807, + "profite": 39808, + "bdaay": 39809, + "yugioh": 39810, + "kom": 39811, + "bastian": 39812, + "posner": 39813, + "tunggu": 39814, + "l'oreal": 39815, + "guerre": 39816, + "comforted": 39817, + "markup": 39818, + "dressin": 39819, + "#whynot": 39820, + "clay's": 39821, + "demonstrated": 39822, + "estimates": 39823, + "aliya": 39824, + "daedae": 39825, + "jumanji": 39826, + "echelon": 39827, + "boostin": 39828, + "kiersten": 39829, + "hua": 39830, + "voicing": 39831, + "beda": 39832, + "naay": 39833, + "wuutt": 39834, + "xr": 39835, + "univ": 39836, + "hoppers": 39837, + "devotions": 39838, + "thoughtless": 39839, + "agn": 39840, + "siah": 39841, + "supiera": 39842, + "hehehhe": 39843, + "virgen": 39844, + "subdued": 39845, + "pernil": 39846, + "bootyy": 39847, + "fussin": 39848, + "jesus's": 39849, + "beale": 39850, + "yarab": 39851, + "mitchell's": 39852, + "underdone": 39853, + "#cowboys": 39854, + "shm": 39855, + "uefa": 39856, + "pharell": 39857, + "insinkerator": 39858, + "eran": 39859, + "morsel": 39860, + "overdo": 39861, + "halie": 39862, + "ahuevo": 39863, + "mij": 39864, + "aguanta": 39865, + "delia": 39866, + "badness": 39867, + "pertaining": 39868, + "ma'm": 39869, + "trended": 39870, + "tahiry": 39871, + "oddity": 39872, + "positioning": 39873, + "maillot": 39874, + "madrugar": 39875, + "asdfghjk": 39876, + "tupelo": 39877, + "portillo's": 39878, + "iy": 39879, + "bagg": 39880, + "biographical": 39881, + "uughh": 39882, + "tribulations": 39883, + "widows": 39884, + "gabby's": 39885, + "oee": 39886, + "killeen": 39887, + "lounger": 39888, + "dannie": 39889, + "susah": 39890, + "#soml": 39891, + "ouaais": 39892, + "misprint": 39893, + "bollox": 39894, + "publisher's": 39895, + "kcon": 39896, + "boston's": 39897, + "hopia": 39898, + "gush": 39899, + "lexi's": 39900, + "#deep": 39901, + "jr's": 39902, + "doped": 39903, + "plex": 39904, + "mucchh": 39905, + "cryinn": 39906, + "plusieurs": 39907, + "pika": 39908, + "weatherman": 39909, + "thehotel": 39910, + "adress": 39911, + "wanderer": 39912, + "sher": 39913, + "#movies": 39914, + "yeke": 39915, + "adolf": 39916, + "chintzy": 39917, + "stagnant": 39918, + "bedbugs": 39919, + "matate": 39920, + "reclining": 39921, + "pillsbury": 39922, + "recreo": 39923, + "ansiosa": 39924, + "thingss": 39925, + "#opps": 39926, + "remera": 39927, + "jeffree": 39928, + "spanglish": 39929, + "faite": 39930, + "doge": 39931, + "textn": 39932, + "yuupp": 39933, + "lurve": 39934, + "apx": 39935, + "oliver's": 39936, + "lumberjack": 39937, + "grinders": 39938, + "carrick": 39939, + "miki": 39940, + "treys": 39941, + "freelance": 39942, + "recomiendo": 39943, + "#lonerlife": 39944, + "succ": 39945, + "gewd": 39946, + "mascarpone": 39947, + "tightening": 39948, + "jesu": 39949, + "brenda's": 39950, + "isley": 39951, + "hellas": 39952, + "humorr": 39953, + "hahahhahahah": 39954, + "haww": 39955, + "inflicted": 39956, + "dosing": 39957, + "astagfirullah": 39958, + "competed": 39959, + "kodi": 39960, + "sharknado": 39961, + "empiece": 39962, + "pijama": 39963, + "psht": 39964, + "afuera": 39965, + "wook": 39966, + "decorator": 39967, + "arrumar": 39968, + "mothafucking": 39969, + "sory": 39970, + "mnths": 39971, + "uan": 39972, + "goodlookin": 39973, + "fated": 39974, + "sommes": 39975, + "blindness": 39976, + "chaney": 39977, + "letty": 39978, + "l'endroit": 39979, + "backfire": 39980, + "pto": 39981, + "securing": 39982, + "#lit": 39983, + "ayu": 39984, + "bathong": 39985, + "avenues": 39986, + "fondly": 39987, + "dmm": 39988, + "youself": 39989, + "vlogmas": 39990, + "#jasonaldean": 39991, + "aquariums": 39992, + "montes": 39993, + "seton": 39994, + "nautical": 39995, + "germain": 39996, + "cin": 39997, + "fudging": 39998, + "msh": 39999, + "cumulative": 40000, + "yonkers": 40001, + "#f": 40002, + "morra": 40003, + "chappy": 40004, + "vsco": 40005, + "cubic": 40006, + "dengue": 40007, + "cummings": 40008, + "hootie": 40009, + "jiggin": 40010, + "peaky": 40011, + "ane": 40012, + "miel": 40013, + "hattie": 40014, + "lehh": 40015, + "vueltas": 40016, + "acrobats": 40017, + "culd": 40018, + "alena": 40019, + "chien": 40020, + "fasted": 40021, + "tse": 40022, + "#bb": 40023, + "peepee": 40024, + "pba": 40025, + "supremacy": 40026, + "volvio": 40027, + "sissyy": 40028, + "acetone": 40029, + "#chicagofire": 40030, + "kean": 40031, + "#o": 40032, + "creen": 40033, + "luci": 40034, + "tequilas": 40035, + "renovating": 40036, + "violins": 40037, + "vor": 40038, + "ibra": 40039, + "mystique": 40040, + "ceasers": 40041, + "#dedicated": 40042, + "heinous": 40043, + "astaghfirullah": 40044, + "bothh": 40045, + "synonym": 40046, + "noy": 40047, + "druggy": 40048, + "flatmate": 40049, + "apts": 40050, + "pudo": 40051, + "viel": 40052, + "lends": 40053, + "electrolux": 40054, + "inmate": 40055, + "malbec": 40056, + "puedoo": 40057, + "lacoste": 40058, + "avondale": 40059, + "neurotic": 40060, + "dram": 40061, + "pioneering": 40062, + "#hmu": 40063, + "cuddlin": 40064, + "melaka": 40065, + "motorized": 40066, + "kor": 40067, + "ecg": 40068, + "mauricio": 40069, + "terrio": 40070, + "#screamqueens": 40071, + "davion": 40072, + "bothersome": 40073, + "cyrus's": 40074, + "dhoni": 40075, + "isaacs": 40076, + "morty": 40077, + "toby's": 40078, + "straighter": 40079, + "skatepark": 40080, + "solaa": 40081, + "#americanidol": 40082, + "rocher": 40083, + "toughen": 40084, + "vulgarity": 40085, + "kenia": 40086, + "ehehehe": 40087, + "globes": 40088, + "jansport": 40089, + "relied": 40090, + "ammonia": 40091, + "tiens": 40092, + "doings": 40093, + "unoo": 40094, + "genitals": 40095, + "tinatamad": 40096, + "chennai": 40097, + "stk": 40098, + "spasm": 40099, + "squealed": 40100, + "investigators": 40101, + "bolted": 40102, + "caigo": 40103, + "bse": 40104, + "#jeremykyle": 40105, + "#lakernation": 40106, + "#newavatar": 40107, + "takk": 40108, + "nape": 40109, + "crete": 40110, + "irritatin": 40111, + "fetching": 40112, + "chingu": 40113, + "sensuous": 40114, + "walahi": 40115, + "pinas": 40116, + "preps": 40117, + "whap": 40118, + "stewart's": 40119, + "dav": 40120, + "mustve": 40121, + "infestation": 40122, + "samaa": 40123, + "ecw": 40124, + "revenant": 40125, + "jackin": 40126, + "aquii": 40127, + "beleza": 40128, + "ahahahaa": 40129, + "#baller": 40130, + "sucre": 40131, + "armada": 40132, + "ltf": 40133, + "thankx": 40134, + "niu": 40135, + "fuccn": 40136, + "#nightmare": 40137, + "eae": 40138, + "samara": 40139, + "perennial": 40140, + "davina": 40141, + "pti": 40142, + "quizlet": 40143, + "siike": 40144, + "sandwhiches": 40145, + "wub": 40146, + "saka": 40147, + "teardrops": 40148, + "pibes": 40149, + "nacht": 40150, + "#batesmotel": 40151, + "#sobored": 40152, + "koy": 40153, + "quitters": 40154, + "zona": 40155, + "indicative": 40156, + "disagreeing": 40157, + "lagnat": 40158, + "barra": 40159, + "flix": 40160, + "wows": 40161, + "baon": 40162, + "poxy": 40163, + "inebriated": 40164, + "hoyle": 40165, + "sekali": 40166, + "itx": 40167, + "markie": 40168, + "maintains": 40169, + "fela": 40170, + "#fallontonight": 40171, + "mysql": 40172, + "snoozefest": 40173, + "ftc": 40174, + "gj": 40175, + "nemen": 40176, + "lambat": 40177, + "moran": 40178, + "grandparent": 40179, + "abilene": 40180, + "poot": 40181, + "buka": 40182, + "mayfair": 40183, + "churning": 40184, + "reproductions": 40185, + "tanked": 40186, + "seguin": 40187, + "kelas": 40188, + "llores": 40189, + "gonny": 40190, + "rescuing": 40191, + "mut": 40192, + "infuriates": 40193, + "ficou": 40194, + "stepdads": 40195, + "#bestboyfriendever": 40196, + "rites": 40197, + "annika": 40198, + "soju": 40199, + "resaca": 40200, + "#mexico": 40201, + "hubbard": 40202, + "adorablee": 40203, + "bruckner": 40204, + "binchy": 40205, + "chesse": 40206, + "otros": 40207, + "bulova": 40208, + "hhahahaha": 40209, + "nomad": 40210, + "grouper": 40211, + "llore": 40212, + "#hater": 40213, + "muuy": 40214, + "jonathan's": 40215, + "#hinthint": 40216, + "drew's": 40217, + "cheeze": 40218, + "ahm": 40219, + "coils": 40220, + "zinger": 40221, + "mamis": 40222, + "finders": 40223, + "meer": 40224, + "yase": 40225, + "peezy": 40226, + "chests": 40227, + "bussers": 40228, + "mooney": 40229, + "luan": 40230, + "crichton's": 40231, + "savannah's": 40232, + "sketched": 40233, + "dishwater": 40234, + "n'y": 40235, + "#pointless": 40236, + "upss": 40237, + "explotar": 40238, + "ahan": 40239, + "lairs": 40240, + "daisy's": 40241, + "roanoke": 40242, + "nata": 40243, + "lemmie": 40244, + "phooey": 40245, + "#eagles": 40246, + "malditos": 40247, + "#gotham": 40248, + "lucha": 40249, + "cacti": 40250, + "nickleback": 40251, + "musicc": 40252, + "#basketball": 40253, + "whopped": 40254, + "kekeke": 40255, + "validity": 40256, + "unenjoyable": 40257, + "hehhe": 40258, + "fatihah": 40259, + "jiyong": 40260, + "taliban": 40261, + "pez": 40262, + "millie's": 40263, + "vish": 40264, + "dumas": 40265, + "tinsel": 40266, + "mandingo": 40267, + "undependable": 40268, + "undercut": 40269, + "irdk": 40270, + "#rhobh": 40271, + "samira": 40272, + "asain": 40273, + "spans": 40274, + "wren": 40275, + "pocketbook": 40276, + "#pink": 40277, + "diaass": 40278, + "exclusives": 40279, + "arian": 40280, + "andas": 40281, + "booski": 40282, + "disillusioned": 40283, + "#collegeproblems": 40284, + "dreamm": 40285, + "dtfll": 40286, + "helo": 40287, + "maddie's": 40288, + "vis": 40289, + "gosta": 40290, + "vengan": 40291, + "baldheaded": 40292, + "lukaku": 40293, + "strangled": 40294, + "juelz": 40295, + "howies": 40296, + "brazillian": 40297, + "emani": 40298, + "sophs": 40299, + "settin": 40300, + "castaway": 40301, + "axl": 40302, + "ase": 40303, + "#freehim": 40304, + "ains": 40305, + "kitaa": 40306, + "aspca": 40307, + "charro": 40308, + "iheart": 40309, + "outgrow": 40310, + "snaking": 40311, + "studious": 40312, + "misunderstand": 40313, + "cctv": 40314, + "mott": 40315, + "blackness": 40316, + "swizzle": 40317, + "firecrackers": 40318, + "courteeners": 40319, + "#solucky": 40320, + "digitour": 40321, + "trus": 40322, + "llevas": 40323, + "instaa": 40324, + "calico": 40325, + "sonar": 40326, + "skoo": 40327, + "slanging": 40328, + "#heat": 40329, + "shamar": 40330, + "continuo": 40331, + "iis": 40332, + "bizzy": 40333, + "gametime": 40334, + "#saturday": 40335, + "pore": 40336, + "muaahh": 40337, + "reconsidering": 40338, + "posso": 40339, + "sonido": 40340, + "swindell": 40341, + "baeza": 40342, + "complicado": 40343, + "#foe": 40344, + "awal": 40345, + "riz": 40346, + "cele": 40347, + "iplayer": 40348, + "hoagies": 40349, + "latitude": 40350, + "puddings": 40351, + "powerlifting": 40352, + "pizookie": 40353, + "lightyear": 40354, + "lusting": 40355, + "diabolical": 40356, + "gentry": 40357, + "ramiro": 40358, + "reddit": 40359, + "n's": 40360, + "#same": 40361, + "terrors": 40362, + "watchmen": 40363, + "bra's": 40364, + "((;": 40365, + "#enoughsaid": 40366, + "discarded": 40367, + "sapp": 40368, + "outburst": 40369, + "descansen": 40370, + "hidin": 40371, + "curried": 40372, + "mentoring": 40373, + "nate's": 40374, + "endures": 40375, + "bruna": 40376, + "#survivor": 40377, + "killingg": 40378, + "trucking": 40379, + "musings": 40380, + "risked": 40381, + "pasaa": 40382, + "#toronto": 40383, + "fridges": 40384, + "moche": 40385, + "n'ai": 40386, + "camarones": 40387, + "weeh": 40388, + "mallorca": 40389, + "salutes": 40390, + "beginer": 40391, + "stupidness": 40392, + "madhouse": 40393, + "gentile": 40394, + "cava": 40395, + "daqui": 40396, + "todd's": 40397, + "humbly": 40398, + "#confident": 40399, + "voyy": 40400, + "warrantee": 40401, + "transitional": 40402, + "discredit": 40403, + "qtr": 40404, + "aub": 40405, + "volvamos": 40406, + "suficiente": 40407, + "laine": 40408, + "reeling": 40409, + "blankly": 40410, + "zed": 40411, + "yandy": 40412, + "rho": 40413, + "martyr": 40414, + "mylove": 40415, + "goofies": 40416, + "cervical": 40417, + "brang": 40418, + "kaufman": 40419, + "inconvenienced": 40420, + "dori": 40421, + "hardened": 40422, + "principio": 40423, + "seent": 40424, + "pasture": 40425, + "chauncey": 40426, + "dowwnn": 40427, + "dotted": 40428, + "mudei": 40429, + "glosses": 40430, + "coolie": 40431, + "jayjay": 40432, + "memory's": 40433, + "xray": 40434, + "#hateyou": 40435, + "#bdt": 40436, + "coronel": 40437, + "dbacks": 40438, + "cusack": 40439, + "contemplative": 40440, + "enders": 40441, + "headlock": 40442, + "seulgi": 40443, + "boozer": 40444, + "#g": 40445, + "twiiter": 40446, + "#withdrawals": 40447, + "afs": 40448, + "#ps4": 40449, + "surcharge": 40450, + "liek": 40451, + "surfin": 40452, + "dimsum": 40453, + "#lrts": 40454, + "laging": 40455, + "weedman": 40456, + "compara": 40457, + "acordaba": 40458, + "confio": 40459, + "#brunomars": 40460, + "medallions": 40461, + "ym": 40462, + "suspicions": 40463, + "steph's": 40464, + "chimichurri": 40465, + "poca": 40466, + "fava": 40467, + "casualidad": 40468, + "rice's": 40469, + "speakeasy": 40470, + "hayley's": 40471, + "iknew": 40472, + "#lasttweet": 40473, + "gasol": 40474, + "uuff": 40475, + "tung": 40476, + "whittle": 40477, + "scuff": 40478, + "preetty": 40479, + "youl": 40480, + "#lovemyteam": 40481, + "horngry": 40482, + "nervosa": 40483, + "cano": 40484, + "madrina": 40485, + "cocinando": 40486, + "lessen": 40487, + "comfier": 40488, + "chapin": 40489, + "#slut": 40490, + "quarterly": 40491, + "filiberto's": 40492, + "refreshments": 40493, + "soundin": 40494, + "flashcards": 40495, + "blenders": 40496, + "sososososo": 40497, + "yara": 40498, + "gazebo": 40499, + "huffy": 40500, + "resisted": 40501, + "turtleneck": 40502, + "jalisco": 40503, + "cheapskate": 40504, + "#fifthharmony": 40505, + "grigio": 40506, + "rubbers": 40507, + "janoskianator": 40508, + "miness": 40509, + "#back": 40510, + "willed": 40511, + "daly": 40512, + "slicked": 40513, + "em's": 40514, + "rotor": 40515, + "skippin": 40516, + "lucky's": 40517, + "dipset": 40518, + "mclaren": 40519, + "logically": 40520, + ";]": 40521, + "shushh": 40522, + "chriss": 40523, + "uuwi": 40524, + "rydel": 40525, + "schwarzenegger": 40526, + "wifeyy": 40527, + "hahahhaah": 40528, + "porkchop": 40529, + "koran": 40530, + "laurence": 40531, + "argghh": 40532, + "asst": 40533, + "brofist": 40534, + "yha": 40535, + "#girlbye": 40536, + "notting": 40537, + "arito": 40538, + "#hottie": 40539, + "enano": 40540, + "mules": 40541, + "jitsu": 40542, + "simpson's": 40543, + "oxy": 40544, + "abq": 40545, + "bellman": 40546, + "zits": 40547, + "pessimist": 40548, + "modes": 40549, + "cryed": 40550, + "indomie": 40551, + "amaa": 40552, + "coco's": 40553, + "ensured": 40554, + "scallion": 40555, + "trully": 40556, + "technicolor": 40557, + "grubbin": 40558, + "#sister": 40559, + "remnants": 40560, + "ksu": 40561, + "graet": 40562, + "swindled": 40563, + "jonathon": 40564, + "sumthn": 40565, + "muitoo": 40566, + "windscreen": 40567, + "partyin": 40568, + "ochem": 40569, + "blaahh": 40570, + "conf": 40571, + "parcs": 40572, + "shuffled": 40573, + "sporadic": 40574, + "atonement": 40575, + "hermosura": 40576, + "#yeet": 40577, + "#icecream": 40578, + "mammals": 40579, + "vaginal": 40580, + "ler": 40581, + "daggers": 40582, + "afloat": 40583, + "j'aurais": 40584, + "#relatable": 40585, + "#dreamcometrue": 40586, + "niykee": 40587, + "patchwork": 40588, + "mazes": 40589, + "#boston": 40590, + "chumps": 40591, + "swayed": 40592, + "ctrl": 40593, + "makings": 40594, + "skinhead": 40595, + "epidural": 40596, + "directional": 40597, + "strawberrys": 40598, + "icebox": 40599, + "iggy's": 40600, + "pasas": 40601, + "mudder": 40602, + "slurs": 40603, + "somn": 40604, + "earls": 40605, + "malice": 40606, + "rolo": 40607, + "ramps": 40608, + "chaperone": 40609, + "aplausos": 40610, + "lyinn": 40611, + "ikyl": 40612, + "hapiness": 40613, + "bursted": 40614, + "whitehall": 40615, + "jogged": 40616, + "repackaging": 40617, + "#illtakeit": 40618, + "becausee": 40619, + "goldilocks": 40620, + "brenner": 40621, + "minutess": 40622, + "loreal": 40623, + "employers": 40624, + "hawwt": 40625, + "discredited": 40626, + "norwalk": 40627, + "hyphy": 40628, + "skeen": 40629, + "tangles": 40630, + "gsp": 40631, + "boda": 40632, + "burton's": 40633, + "nakakatuwa": 40634, + "gladiators": 40635, + "fcb": 40636, + "wimps": 40637, + "orphanage": 40638, + "leve": 40639, + "rebs": 40640, + "addendum": 40641, + "crissy": 40642, + "u's": 40643, + "oddball": 40644, + "sculpt": 40645, + "kidde": 40646, + "huele": 40647, + "pga": 40648, + "wheelie": 40649, + "#proudofyou": 40650, + "gooch": 40651, + "ktfo": 40652, + "investigative": 40653, + "albertson's": 40654, + "understandably": 40655, + "swatch": 40656, + "comprised": 40657, + "alivee": 40658, + "gti": 40659, + "baconator": 40660, + "zoology": 40661, + "creepier": 40662, + "#teamvirgin": 40663, + "mafuckas": 40664, + "#theoffice": 40665, + "garbled": 40666, + "#exonthebeach": 40667, + "otras": 40668, + "iriver": 40669, + "migration": 40670, + "chakras": 40671, + "accts": 40672, + "#texas": 40673, + "sdtg": 40674, + "shaniqua": 40675, + "umasa": 40676, + "iomega": 40677, + "sisqo": 40678, + "timbers": 40679, + "chicfila": 40680, + "huddersfield": 40681, + "dankjewell": 40682, + "wusthof": 40683, + "titular": 40684, + "shak": 40685, + "daijah": 40686, + "savored": 40687, + "wart": 40688, + "krys": 40689, + "ambassadors": 40690, + "handsets": 40691, + "beija": 40692, + "bandages": 40693, + "cruda": 40694, + "discoveries": 40695, + "hashbrown": 40696, + "fau": 40697, + "enjooy": 40698, + "waddle": 40699, + "denso": 40700, + "volts": 40701, + "bernadette": 40702, + "janna": 40703, + "equivoque": 40704, + "dormimos": 40705, + "dnb": 40706, + "d'hab": 40707, + "tardies": 40708, + "scressful": 40709, + "hppy": 40710, + "sweatsuit": 40711, + "goreng": 40712, + "bruk": 40713, + "ena": 40714, + "if's": 40715, + "#fattweet": 40716, + "iyo": 40717, + "marla": 40718, + "perverse": 40719, + "hoodlum": 40720, + "orphans": 40721, + "#getonmylevel": 40722, + "dragg": 40723, + "stanka": 40724, + "maddox": 40725, + "fuzzies": 40726, + "patterson's": 40727, + "mckinney": 40728, + "#positivity": 40729, + "pases": 40730, + "attendees": 40731, + "shiva": 40732, + "yaknow": 40733, + "aplauso": 40734, + "uwian": 40735, + "unta": 40736, + "amazons": 40737, + "wam": 40738, + "camacho": 40739, + "celluloid": 40740, + "#meow": 40741, + "#breakfast": 40742, + "argos": 40743, + "loyola": 40744, + "stepford": 40745, + "catdog": 40746, + "motherly": 40747, + "dangle": 40748, + "eyez": 40749, + "sporadically": 40750, + "hoow": 40751, + "fatin": 40752, + "frampton": 40753, + "h's": 40754, + "wrought": 40755, + "proxy": 40756, + "fount": 40757, + "christmass": 40758, + "menu's": 40759, + "bodega": 40760, + "portraying": 40761, + "taekwondo": 40762, + "susto": 40763, + "jourdan": 40764, + "seneca": 40765, + "baps": 40766, + "cochina": 40767, + "rolly": 40768, + "safee": 40769, + "fua": 40770, + "shantel": 40771, + "llame": 40772, + "punjab": 40773, + "dins": 40774, + "banchan": 40775, + "#cravings": 40776, + "#pizza": 40777, + "gawa": 40778, + "silenced": 40779, + "impending": 40780, + "uhhmm": 40781, + "boggles": 40782, + "glenda": 40783, + "davido": 40784, + "semaj": 40785, + "ult": 40786, + "grotto": 40787, + "levitt": 40788, + "haphazard": 40789, + "verdes": 40790, + "pegasus": 40791, + "burdens": 40792, + "etwas": 40793, + "glorify": 40794, + "halogen": 40795, + "yearn": 40796, + "bedsheets": 40797, + "nakakagutom": 40798, + "conecto": 40799, + "hpta": 40800, + "hacerlo": 40801, + "continuum": 40802, + "petersburg": 40803, + "aawh": 40804, + "tuer": 40805, + "lindaas": 40806, + "saammee": 40807, + "gazelle": 40808, + "chicha": 40809, + "lawns": 40810, + "turners": 40811, + "reaall": 40812, + "umalis": 40813, + "distinguished": 40814, + "mavis": 40815, + "harrisburg": 40816, + "scc": 40817, + "flagship": 40818, + "taye": 40819, + "snapchated": 40820, + "jaleel": 40821, + "birkenstocks": 40822, + "dalmatians": 40823, + "hydrogen": 40824, + "meaghan": 40825, + "everyway": 40826, + "#ballin": 40827, + "cansa": 40828, + "barclay": 40829, + "anima": 40830, + "superpowers": 40831, + "omlette": 40832, + "pouts": 40833, + "miffed": 40834, + "liceo": 40835, + "felecia": 40836, + "dembow": 40837, + "vegemite": 40838, + "hasbro": 40839, + "carre": 40840, + "owwn": 40841, + "dejaste": 40842, + "#king": 40843, + "hali": 40844, + "snipes": 40845, + "vignettes": 40846, + "thine": 40847, + "#sosleepy": 40848, + "#mileycyrus": 40849, + "lill": 40850, + "cta": 40851, + "thia": 40852, + "yao": 40853, + "#brb": 40854, + "pointt": 40855, + "manufacturer's": 40856, + "hrh": 40857, + "imagen": 40858, + "quaility": 40859, + "contenders": 40860, + "baring": 40861, + "hawu": 40862, + "crept": 40863, + "nyah": 40864, + "hincha": 40865, + "slashed": 40866, + "sga": 40867, + "crewneck": 40868, + "young's": 40869, + "croke": 40870, + "taetae": 40871, + "#lovewins": 40872, + "hydrate": 40873, + "quilters": 40874, + "hologram": 40875, + "flattened": 40876, + "baje": 40877, + "bahahahahahaha": 40878, + "ouuii": 40879, + "tittes": 40880, + "flowed": 40881, + "bailamos": 40882, + "doi": 40883, + "jessa": 40884, + "suge": 40885, + "#ridiculous": 40886, + "goall": 40887, + "rigght": 40888, + "beavers": 40889, + "hoss": 40890, + "hypee": 40891, + "puertorican": 40892, + "miu": 40893, + "bakk": 40894, + "contradicts": 40895, + "interpreter": 40896, + "cyst": 40897, + "playingg": 40898, + "#fgl": 40899, + "citations": 40900, + "s'en": 40901, + "parris": 40902, + "weiss": 40903, + "artista": 40904, + "blockers": 40905, + "fobs": 40906, + "emison": 40907, + "#goodmood": 40908, + "knowss": 40909, + "pickups": 40910, + "alphas": 40911, + "instgram": 40912, + "exciteed": 40913, + "dray": 40914, + "overcame": 40915, + "receptionists": 40916, + "maybach": 40917, + "oolong": 40918, + "harmed": 40919, + "afters": 40920, + "cumbias": 40921, + "domi": 40922, + "leen": 40923, + "morninn": 40924, + "heechul": 40925, + "prolific": 40926, + "backups": 40927, + "fruitcake": 40928, + "gout": 40929, + "epcot": 40930, + "emojies": 40931, + "joburg": 40932, + "raspa": 40933, + "kaki": 40934, + "miko": 40935, + "ishmael": 40936, + "boynton": 40937, + "lucinda": 40938, + "davy": 40939, + "sizable": 40940, + "regiment": 40941, + "kreg": 40942, + "shoves": 40943, + "admu": 40944, + "whisked": 40945, + "onew": 40946, + "jamess": 40947, + "esfuerzo": 40948, + "pupil": 40949, + "siked": 40950, + "s'il": 40951, + "#handsdown": 40952, + "bebtii": 40953, + "wesh": 40954, + "harming": 40955, + "cuero": 40956, + "spewed": 40957, + "#queronotvz": 40958, + "melitta": 40959, + "synthesizer": 40960, + "#exams": 40961, + "fairplay": 40962, + "soong": 40963, + "rosey": 40964, + "janet's": 40965, + "#ohno": 40966, + "allstars": 40967, + "revel": 40968, + "clouded": 40969, + "agility": 40970, + "overhear": 40971, + "khair": 40972, + "paybacks": 40973, + "harms": 40974, + "mariela": 40975, + "dissent": 40976, + "profilo": 40977, + "#bed": 40978, + "grinded": 40979, + "laidback": 40980, + "vente": 40981, + "brooding": 40982, + "minggu": 40983, + "jalyn": 40984, + "antioch": 40985, + "breach": 40986, + "pastiche": 40987, + "detentions": 40988, + "jerked": 40989, + "vinegary": 40990, + "whiners": 40991, + "jajajjajaja": 40992, + "rigole": 40993, + "janella": 40994, + "righty": 40995, + "urgently": 40996, + "xxi": 40997, + "crier": 40998, + "substantially": 40999, + "imitations": 41000, + "shelving": 41001, + "repaint": 41002, + "mamen": 41003, + "edo": 41004, + "musa": 41005, + "anticlimactic": 41006, + "comply": 41007, + "sniffs": 41008, + "#late": 41009, + "#igotthis": 41010, + "iniesta": 41011, + "keystones": 41012, + "tonnes": 41013, + "sinbad": 41014, + "#svu": 41015, + "conditioners": 41016, + "rectangle": 41017, + "#live": 41018, + "drawled": 41019, + "necesitas": 41020, + "catalyst": 41021, + "dee's": 41022, + "netting": 41023, + "reciept": 41024, + "crv": 41025, + "sugarplum": 41026, + "definitively": 41027, + "hushed": 41028, + "doth": 41029, + "dreamx": 41030, + "lexii": 41031, + "kaba": 41032, + "knowingly": 41033, + "dranks": 41034, + "surveys": 41035, + "mailer": 41036, + "twee": 41037, + "nutrients": 41038, + "taknak": 41039, + "questionnaire": 41040, + "deterrent": 41041, + "bonnes": 41042, + "backstory": 41043, + "bertie": 41044, + "janoskianators": 41045, + "katelynn": 41046, + "congrat": 41047, + "staff's": 41048, + "pisa": 41049, + "fuckyou": 41050, + "elizabeth's": 41051, + "skillfully": 41052, + "middling": 41053, + "o'brian": 41054, + "eminems": 41055, + "gryffindor": 41056, + "thuis": 41057, + "bubbas": 41058, + "#health": 41059, + "cortland": 41060, + "velvety": 41061, + "rearview": 41062, + "shaquille": 41063, + "messiest": 41064, + "tig": 41065, + "disagreed": 41066, + "#embarrassed": 41067, + "kelso": 41068, + "alligators": 41069, + "aan": 41070, + "teatro": 41071, + "dich": 41072, + "#nashsnewvideo": 41073, + "#vamplife": 41074, + "mooree": 41075, + "kulit": 41076, + "splattered": 41077, + "laughlin": 41078, + "vicar": 41079, + "suess": 41080, + "#running": 41081, + "ambulances": 41082, + "hypes": 41083, + "florentine": 41084, + "antennas": 41085, + "township": 41086, + "#facebook": 41087, + "loveuu": 41088, + "ahahahahahahah": 41089, + "implications": 41090, + "gluttony": 41091, + "spaniel": 41092, + "nama": 41093, + "aloot": 41094, + "misnamed": 41095, + "blurb": 41096, + "hass": 41097, + "fuses": 41098, + "grandfathers": 41099, + "#knicks": 41100, + "poopie": 41101, + "authorization": 41102, + "overnights": 41103, + "totoro": 41104, + "purpin": 41105, + "hilal": 41106, + "damo": 41107, + "milks": 41108, + "unimaginable": 41109, + "lucious": 41110, + "wort": 41111, + "ratchett": 41112, + "victors": 41113, + "stigma": 41114, + "mutually": 41115, + "boleyn": 41116, + "engagements": 41117, + "ladle": 41118, + "cech": 41119, + "behaviors": 41120, + "fixable": 41121, + "pessoa": 41122, + "yeesh": 41123, + "kwan": 41124, + "cheerio": 41125, + "#seeya": 41126, + "nde": 41127, + "musk": 41128, + "peaking": 41129, + "gorgeousness": 41130, + "asia's": 41131, + "#2days": 41132, + "humidor": 41133, + "fannie": 41134, + "diagram": 41135, + "fuck'n": 41136, + "snippy": 41137, + "sordid": 41138, + "tatyana": 41139, + "nouveaux": 41140, + "#puppylove": 41141, + "bastos": 41142, + "nofx": 41143, + "slovakia": 41144, + "dishonor": 41145, + "enlist": 41146, + "envisioned": 41147, + "deni": 41148, + "stubby": 41149, + "slidee": 41150, + "dreamss": 41151, + "hellen": 41152, + "dudo": 41153, + "postseason": 41154, + "buhari": 41155, + "okaii": 41156, + "yule": 41157, + "ajay": 41158, + "sharma": 41159, + "seltzer": 41160, + "helluh": 41161, + "galingan": 41162, + "fesses": 41163, + "novacane": 41164, + "iglesia": 41165, + "foundational": 41166, + "monoxide": 41167, + "punani": 41168, + "fems": 41169, + "everywheree": 41170, + "conjecture": 41171, + "thinning": 41172, + "#gogglebox": 41173, + "fock": 41174, + "dst": 41175, + "adrien": 41176, + "wtheck": 41177, + "hunky": 41178, + "ruby's": 41179, + "invita": 41180, + "#hi": 41181, + "welcum": 41182, + "anywhoo": 41183, + "jewelers": 41184, + "meera": 41185, + "percebi": 41186, + "deduction": 41187, + "vigil": 41188, + "atypical": 41189, + "foyer": 41190, + "covington": 41191, + "lahore": 41192, + "explaination": 41193, + "floated": 41194, + "pukes": 41195, + "harlow": 41196, + "bris": 41197, + "similarity": 41198, + "minimize": 41199, + "anniversaries": 41200, + "hooey": 41201, + "downgrades": 41202, + "apologising": 41203, + "follo": 41204, + "dickie": 41205, + "knitter": 41206, + "coben": 41207, + "garrett's": 41208, + "chanbaek": 41209, + "brownskins": 41210, + "priests": 41211, + "fia": 41212, + "kohli": 41213, + "socrates": 41214, + "siopao": 41215, + "mdw": 41216, + "soad": 41217, + "lincoln's": 41218, + "phys": 41219, + "showbiz": 41220, + "queers": 41221, + "violetta": 41222, + "scissorhands": 41223, + "#lhh": 41224, + "kgs": 41225, + "female's": 41226, + "elem": 41227, + "hissy": 41228, + "comerr": 41229, + "#yaass": 41230, + "symbolic": 41231, + "bedrock": 41232, + "cro": 41233, + "scabs": 41234, + "deezy": 41235, + "monotony": 41236, + "homewrecker": 41237, + "hour's": 41238, + "#havefun": 41239, + "twerker": 41240, + "awol": 41241, + "superbe": 41242, + "utilities": 41243, + "groggy": 41244, + "tinie": 41245, + "ouutt": 41246, + "#surprise": 41247, + "sunbathe": 41248, + "mademoiselle": 41249, + "naira": 41250, + "microsd": 41251, + "whitney's": 41252, + "agustina": 41253, + "#woops": 41254, + "beebty": 41255, + "prolonged": 41256, + "shoud": 41257, + "gasps": 41258, + "hardball": 41259, + "disciple": 41260, + "bodoh": 41261, + "collards": 41262, + "durst": 41263, + "remo": 41264, + "bilal": 41265, + "talladega": 41266, + "cunning": 41267, + "anythings": 41268, + "ahhahah": 41269, + "sonnet": 41270, + "castor": 41271, + "niether": 41272, + "growler": 41273, + "nietzsche": 41274, + "alii": 41275, + "inconveniencing": 41276, + "irie": 41277, + "ranted": 41278, + "#stayblessed": 41279, + "ulul": 41280, + "jameis": 41281, + "peabody": 41282, + "bunt": 41283, + "romantically": 41284, + "bayless": 41285, + "nawzajem": 41286, + "#cantstopwontstop": 41287, + "tob": 41288, + "humiliate": 41289, + "vivaldi": 41290, + "ihu": 41291, + "oppas": 41292, + "soi": 41293, + "typewriter": 41294, + "#happycamper": 41295, + "buckin": 41296, + "yessirr": 41297, + "bestival": 41298, + "wher": 41299, + "inteligente": 41300, + "apparatus": 41301, + "misbehaving": 41302, + "freshwater": 41303, + "retwist": 41304, + "arranca": 41305, + "#tistheseason": 41306, + "cahill": 41307, + "pares": 41308, + "kenot": 41309, + "corr": 41310, + "#fantasyfootball": 41311, + "lillard": 41312, + "drainer": 41313, + "cojones": 41314, + "siendo": 41315, + "someonee": 41316, + "#bad": 41317, + "silvers": 41318, + "lull": 41319, + "dawhh": 41320, + "kasih": 41321, + "hummingbirds": 41322, + "valedictorian": 41323, + "raegan": 41324, + "yugyeom": 41325, + "emeged": 41326, + "muddle": 41327, + "narcissist": 41328, + "godsmack": 41329, + "gina's": 41330, + "workload": 41331, + "pajero": 41332, + "felicidade": 41333, + "deaded": 41334, + "cannolis": 41335, + "nuk": 41336, + "nakakaloka": 41337, + "frisco's": 41338, + "janessa": 41339, + "coupling": 41340, + "bottling": 41341, + "jaya": 41342, + "samoas": 41343, + "alice's": 41344, + "movah": 41345, + "feeling's": 41346, + "haahha": 41347, + "fbc": 41348, + "supaa": 41349, + "madie": 41350, + "fvcked": 41351, + "promiscuous": 41352, + "glacier": 41353, + "thotful": 41354, + "ahahhahaha": 41355, + "enamoras": 41356, + "balding": 41357, + "muchyou": 41358, + "veld": 41359, + "ogden": 41360, + "buzzard": 41361, + "oilers": 41362, + "voicee": 41363, + "thanky": 41364, + "newfound": 41365, + "chimp": 41366, + "gx": 41367, + "nard": 41368, + "#manchester": 41369, + "chicky": 41370, + "alriight": 41371, + "matted": 41372, + "canserbero": 41373, + "goofing": 41374, + "punkass": 41375, + "unloading": 41376, + "ntsc": 41377, + "euphoric": 41378, + "lakeview": 41379, + "leveling": 41380, + "thumps": 41381, + "urwel": 41382, + "carente": 41383, + "kalah": 41384, + "sopes": 41385, + "stereotyped": 41386, + "their's": 41387, + "epilepsy": 41388, + "indies": 41389, + "psychologically": 41390, + "stilly": 41391, + "#coldplay": 41392, + "tribes": 41393, + "tylers": 41394, + "loompa": 41395, + "#cancers": 41396, + "fitment": 41397, + "masternim": 41398, + "mitam": 41399, + "whedon": 41400, + "dragon's": 41401, + "taka": 41402, + "lawdy": 41403, + "takoyaki": 41404, + "connor's": 41405, + "offshore": 41406, + "griller": 41407, + "apostle": 41408, + "sharee": 41409, + "yaki": 41410, + "veranda": 41411, + "drench": 41412, + "#fall": 41413, + "cham": 41414, + "rie": 41415, + "rds": 41416, + "#focused": 41417, + "bordel": 41418, + "prestigious": 41419, + "temperamental": 41420, + "happi": 41421, + "papel": 41422, + "unmeet": 41423, + "yuuss": 41424, + "contestas": 41425, + "stoppers": 41426, + "proficient": 41427, + "magnitude": 41428, + "magia": 41429, + "#focus": 41430, + "recommence": 41431, + "roseville": 41432, + "ibn": 41433, + "jalo": 41434, + "yungin": 41435, + "nashh": 41436, + "#red": 41437, + "goldeneye": 41438, + "interacts": 41439, + "anodized": 41440, + "#sis": 41441, + "vibrated": 41442, + "artifact": 41443, + "ptfo": 41444, + "you'on": 41445, + "beeing": 41446, + "underarms": 41447, + "clif": 41448, + "intruder": 41449, + "fujifilm": 41450, + "deniro": 41451, + "pregunto": 41452, + "ndi": 41453, + "opting": 41454, + "chestnuts": 41455, + "e.t.": 41456, + "stovetop": 41457, + "tokio": 41458, + "twon": 41459, + "bitchiness": 41460, + "adolescence": 41461, + "kuku": 41462, + "onde": 41463, + "wylie": 41464, + "rawest": 41465, + "wilkinson": 41466, + "glowed": 41467, + "cata": 41468, + "febreze": 41469, + "girr": 41470, + "issoo": 41471, + "equate": 41472, + "finisher": 41473, + "dingus": 41474, + "colander": 41475, + "fieri": 41476, + "phhoto": 41477, + "#spursnation": 41478, + "dost": 41479, + "buset": 41480, + "leilani": 41481, + "greenway": 41482, + "reigning": 41483, + "effy": 41484, + "groban's": 41485, + "fortunes": 41486, + "toilette": 41487, + "laawwd": 41488, + "smf": 41489, + "nike's": 41490, + "celestron": 41491, + "digestives": 41492, + "ephesians": 41493, + "#hype": 41494, + "#gymlife": 41495, + "fuaa": 41496, + "irobot": 41497, + "mulberry": 41498, + "woorld": 41499, + "haard": 41500, + "comping": 41501, + "coach's": 41502, + "acme": 41503, + "gootten": 41504, + "#turntup": 41505, + "firme": 41506, + "grieve": 41507, + "reup": 41508, + "subir": 41509, + "#34": 41510, + "perused": 41511, + "seminole": 41512, + "woodlawn": 41513, + "bruce's": 41514, + "chikfila": 41515, + "sigas": 41516, + "#votekathrynfpp": 41517, + "fakk": 41518, + "jamon": 41519, + "overstated": 41520, + "retiro": 41521, + "ya's": 41522, + "longue": 41523, + "torah": 41524, + "anoying": 41525, + "aucune": 41526, + "gdluck": 41527, + "#haters": 41528, + "hines": 41529, + "nave": 41530, + "kino": 41531, + "euclid": 41532, + "saltier": 41533, + "chronological": 41534, + "mage": 41535, + "wakefield": 41536, + "grandfather's": 41537, + "kundalini": 41538, + "nestle": 41539, + "#42": 41540, + "djokovic": 41541, + "outloud": 41542, + "gypsies": 41543, + "megatron": 41544, + "sensed": 41545, + "redecorate": 41546, + "critiques": 41547, + "enjoyin": 41548, + "melove": 41549, + "dofe": 41550, + "feild": 41551, + "sangean": 41552, + "wring": 41553, + "spicing": 41554, + "agt": 41555, + "tomatoe": 41556, + "somebodyy": 41557, + "esquina": 41558, + "state's": 41559, + "#nothingbetter": 41560, + "caprisun": 41561, + "enforced": 41562, + "birthmark": 41563, + "vijay": 41564, + "fwends": 41565, + "kenzie's": 41566, + "#teamtaken": 41567, + "rember": 41568, + "anorexia": 41569, + "preservation": 41570, + "screenshoting": 41571, + "xz": 41572, + "orignal": 41573, + "bink": 41574, + "bodice": 41575, + "followe": 41576, + "#nicetry": 41577, + "fisting": 41578, + "seville": 41579, + "dante's": 41580, + "seized": 41581, + "#contest": 41582, + "yrn": 41583, + "d'avoir": 41584, + "camcorders": 41585, + "kwik": 41586, + "insincere": 41587, + "nesh": 41588, + "lenovo": 41589, + "ile": 41590, + "gira": 41591, + "brownish": 41592, + "hims": 41593, + "everyting": 41594, + "umuulan": 41595, + "sassiness": 41596, + "idfwy": 41597, + "busty": 41598, + "barns": 41599, + "lightened": 41600, + "#fuming": 41601, + "nawe": 41602, + "debes": 41603, + "#50": 41604, + "eck": 41605, + "derick": 41606, + "kaibigan": 41607, + "quedarme": 41608, + "dayana": 41609, + "whiteboard": 41610, + "mariel": 41611, + "thematic": 41612, + "swashbuckling": 41613, + "croquettes": 41614, + "mauro": 41615, + "dayi": 41616, + "jess's": 41617, + "jeux": 41618, + "walden": 41619, + "tugging": 41620, + "symptom": 41621, + "faceless": 41622, + "privates": 41623, + "tomor": 41624, + "lucero": 41625, + "strengthening": 41626, + "choreographer": 41627, + "utilized": 41628, + "claaro": 41629, + "fractions": 41630, + "apathy": 41631, + "hobbes": 41632, + "azonto": 41633, + "#scorpios": 41634, + "gyptian": 41635, + "checkmate": 41636, + "wowie": 41637, + "shaddup": 41638, + "#mademynight": 41639, + "turntt": 41640, + "saja": 41641, + "n'a": 41642, + "counterpart": 41643, + "intelligently": 41644, + "bookmarks": 41645, + "kola": 41646, + "#partyhard": 41647, + "#loveisland": 41648, + "(,:": 41649, + "#lovedit": 41650, + "gagner": 41651, + "jez": 41652, + "doorknob": 41653, + "ahhah": 41654, + "liaam": 41655, + "finley": 41656, + "neil's": 41657, + "captivate": 41658, + "sountrack": 41659, + "mamon": 41660, + "chitterlings": 41661, + "cowbell": 41662, + "#lazysunday": 41663, + "hny": 41664, + "stydia": 41665, + "deafening": 41666, + "hasty": 41667, + "l'heure": 41668, + "deffinately": 41669, + "#godisgreat": 41670, + "troian": 41671, + "ajak": 41672, + "brogan": 41673, + "envision": 41674, + "hangar": 41675, + "folle": 41676, + "tabla": 41677, + "preserves": 41678, + "melee": 41679, + "transporting": 41680, + "sincerest": 41681, + "louie's": 41682, + "humanitarian": 41683, + "gawin": 41684, + "ghanaians": 41685, + "#letsgoo": 41686, + "lituation": 41687, + "kamryn": 41688, + "indifference": 41689, + "rob's": 41690, + "untrained": 41691, + "noura": 41692, + "inveja": 41693, + "monie": 41694, + "bluntly": 41695, + "dominates": 41696, + "zans": 41697, + "yesi": 41698, + "tocar": 41699, + "yeeh": 41700, + "matric": 41701, + "bioo": 41702, + "enrolling": 41703, + "cameraman": 41704, + "zoella": 41705, + "ovarios": 41706, + "soss": 41707, + "korra": 41708, + "orig": 41709, + "croods": 41710, + "#collegeprobs": 41711, + "#classof2015": 41712, + "mme": 41713, + "semper": 41714, + "flack": 41715, + "prezzie": 41716, + "sexxyy": 41717, + ";((": 41718, + "pedro's": 41719, + "godchild": 41720, + "infuriated": 41721, + "omygosh": 41722, + "laughh": 41723, + "jellybean": 41724, + "abandonou": 41725, + "joee": 41726, + "forver": 41727, + "appealed": 41728, + "bof": 41729, + "giuseppe": 41730, + "karol": 41731, + "ennis": 41732, + "comeer": 41733, + "priyanka": 41734, + "bowtie": 41735, + "oceana": 41736, + "bradbury": 41737, + "nurturing": 41738, + "tonga": 41739, + "screech": 41740, + "guido": 41741, + "chelly": 41742, + "needin": 41743, + "gully": 41744, + "kinakabahan": 41745, + "provoked": 41746, + "alysha": 41747, + "fuddruckers": 41748, + "pastoral": 41749, + "turing": 41750, + "stine": 41751, + "bux": 41752, + "flapjacks": 41753, + "sharpies": 41754, + "chalo": 41755, + "unpleasantly": 41756, + "barnet": 41757, + "disfunctional": 41758, + "sawdust": 41759, + "partout": 41760, + "siracha": 41761, + "lowbat": 41762, + "slu": 41763, + "geng": 41764, + "touchscreen": 41765, + "deductible": 41766, + "sina": 41767, + "slated": 41768, + "docu": 41769, + "#bonding": 41770, + "jao": 41771, + "recieving": 41772, + "acheter": 41773, + "tts": 41774, + "y's": 41775, + "hilang": 41776, + "ronaldinho": 41777, + "qualms": 41778, + "syrups": 41779, + "pilaf": 41780, + "terrifies": 41781, + "pressures": 41782, + "``": 41783, + "mebut": 41784, + "#wifey": 41785, + "amityville": 41786, + "annotations": 41787, + "mirrored": 41788, + "grasping": 41789, + "hilariouss": 41790, + "rousing": 41791, + "donell": 41792, + "checkbook": 41793, + "layman's": 41794, + "einer": 41795, + "shifter": 41796, + "rubi": 41797, + "hazz": 41798, + "rik": 41799, + "preformance": 41800, + "hillary's": 41801, + "callus": 41802, + "nuances": 41803, + "bumalik": 41804, + "gapapa": 41805, + "twisters": 41806, + "yuki": 41807, + "stabler": 41808, + "gita": 41809, + "bigla": 41810, + "cloe": 41811, + "faiths": 41812, + "hoodlums": 41813, + "cera": 41814, + "#isuck": 41815, + "attentiveness": 41816, + "mayer's": 41817, + "fattie": 41818, + "ygm": 41819, + "retaking": 41820, + "contentment": 41821, + "saltyy": 41822, + "bogged": 41823, + "emeril's": 41824, + "pensaba": 41825, + "#fangirl": 41826, + "youand": 41827, + "terminamos": 41828, + "#sohot": 41829, + "lippy": 41830, + "completo": 41831, + "pelase": 41832, + "magnums": 41833, + "lemmon": 41834, + "minuscule": 41835, + "pernah": 41836, + "murals": 41837, + "barrie": 41838, + "moira": 41839, + "muahahahaha": 41840, + "nakakakilig": 41841, + "sweetpea": 41842, + "kamal": 41843, + "risque": 41844, + "#relaxation": 41845, + "#3days": 41846, + "#lesbihonest": 41847, + "lovelove": 41848, + "comas": 41849, + "keynes": 41850, + "timey": 41851, + "gret": 41852, + "elyar": 41853, + "gonne": 41854, + "uhaul": 41855, + "bowman": 41856, + "patagonia": 41857, + "impatience": 41858, + "roadmap": 41859, + "teef": 41860, + "dilwale": 41861, + "adan": 41862, + "raiding": 41863, + "tulip": 41864, + "gigante": 41865, + "immortality": 41866, + "regurgitation": 41867, + "hist": 41868, + "saag": 41869, + "debts": 41870, + "linnda": 41871, + "#drained": 41872, + "angelou": 41873, + "saute": 41874, + "kawasaki": 41875, + "lolo's": 41876, + "tinkle": 41877, + "continual": 41878, + "#chrisbrown": 41879, + "riesling": 41880, + "dinos": 41881, + "china's": 41882, + "sanay": 41883, + "conversando": 41884, + "aduh": 41885, + "tiera": 41886, + "hel": 41887, + "buckles": 41888, + "owwee": 41889, + "cancelation": 41890, + "bogie": 41891, + "impersonator": 41892, + "significa": 41893, + "#sitdown": 41894, + "mufuckin": 41895, + "#patience": 41896, + "fermented": 41897, + "triller": 41898, + "shug": 41899, + "bocaa": 41900, + "vaamos": 41901, + "#sosore": 41902, + "cubano": 41903, + "rollo": 41904, + "juat": 41905, + "milling": 41906, + "brownsville": 41907, + "heave": 41908, + "acquisition": 41909, + "falla": 41910, + "inputs": 41911, + "teka": 41912, + "niyan": 41913, + "ashland": 41914, + "rooibos": 41915, + "blunted": 41916, + "sitcoms": 41917, + "crush's": 41918, + "#thefooconspiracy": 41919, + "chace": 41920, + "jaleo": 41921, + "#weakness": 41922, + "tummies": 41923, + "am's": 41924, + "preforming": 41925, + "sawa": 41926, + "carmelized": 41927, + "beehive": 41928, + "spanx": 41929, + "aightt": 41930, + "mealy": 41931, + "palin": 41932, + "disrespects": 41933, + "hens": 41934, + "kelsea": 41935, + "#whipped": 41936, + "#tru": 41937, + "#wifeymaterial": 41938, + "tattle": 41939, + "forsyth": 41940, + "subj": 41941, + "inns": 41942, + "minestrone": 41943, + "bram": 41944, + "ilysmt": 41945, + "muerta": 41946, + "carful": 41947, + "summerfest": 41948, + "feasting": 41949, + "antoja": 41950, + "consegui": 41951, + "estrogen": 41952, + "tamagotchi": 41953, + "stapled": 41954, + "#sytycd": 41955, + "pagaling": 41956, + "eboni": 41957, + "achingly": 41958, + "bods": 41959, + "matapos": 41960, + "davie": 41961, + "shiznit": 41962, + "lech": 41963, + "trillest": 41964, + "foreigns": 41965, + "#bhlove": 41966, + "cadillacs": 41967, + "reimbursement": 41968, + "pent": 41969, + "#everyday": 41970, + "#dreambig": 41971, + "midwood": 41972, + "anew": 41973, + "jokester": 41974, + "shaz": 41975, + "lesbihonest": 41976, + "connard": 41977, + "restarts": 41978, + "mcbride": 41979, + "rinsing": 41980, + "hvac": 41981, + "delmonico": 41982, + "acclaimed": 41983, + "sonhei": 41984, + "mizz": 41985, + "redding": 41986, + "gooner": 41987, + "basie": 41988, + "alchy": 41989, + "burgess": 41990, + "samir": 41991, + "eca": 41992, + "starkville": 41993, + "sicing": 41994, + "mtf": 41995, + "livvy": 41996, + "puasa": 41997, + "hugss": 41998, + "#snowday": 41999, + "lari": 42000, + "shanny": 42001, + "breathin": 42002, + "monologues": 42003, + "watta": 42004, + "seducing": 42005, + "ttc": 42006, + "preocupada": 42007, + "carrollton": 42008, + "floaties": 42009, + "quiver": 42010, + "fuckit": 42011, + "broskie": 42012, + "koalas": 42013, + "charmaine": 42014, + "booyah": 42015, + "colbert": 42016, + "herring": 42017, + "#ohmy": 42018, + "#votelittlemixuk": 42019, + "sposed": 42020, + "#loveme": 42021, + "fox's": 42022, + "tatas": 42023, + "satified": 42024, + "endorphins": 42025, + "brothel": 42026, + "girlf": 42027, + "zaynn": 42028, + "fillets": 42029, + "sabine": 42030, + "satans": 42031, + "meto": 42032, + "therese": 42033, + "adorned": 42034, + "pobrecito": 42035, + "potter's": 42036, + "chanter": 42037, + "huli": 42038, + "#jelly": 42039, + "#euro2016": 42040, + "puissance": 42041, + "hyuna": 42042, + "claudio": 42043, + "#ghostadventures": 42044, + "ohemgee": 42045, + "enoughh": 42046, + "introductions": 42047, + "meticulously": 42048, + "milner": 42049, + "#angry": 42050, + "hahahahahahahahahahahahahaha": 42051, + "ferocious": 42052, + "namely": 42053, + "punk'd": 42054, + "jusy": 42055, + "aylin": 42056, + "pfaltzgraff": 42057, + "gere": 42058, + "glared": 42059, + "omnibus": 42060, + "climates": 42061, + "wsj": 42062, + "liqueur": 42063, + "robinsons": 42064, + "#bestboyfriend": 42065, + "fllbck": 42066, + "garcia's": 42067, + "mckayla": 42068, + "calums": 42069, + "kog": 42070, + "goofs": 42071, + "aannd": 42072, + "estelle": 42073, + "brennen": 42074, + "watchh": 42075, + "uninitiated": 42076, + "frigid": 42077, + "hellraiser": 42078, + "laught": 42079, + "walmarts": 42080, + "yoohoo": 42081, + "regression": 42082, + "peyton's": 42083, + "meilysm": 42084, + "hahahahaaha": 42085, + "respek": 42086, + "dod": 42087, + "screenwriting": 42088, + "hobbyist": 42089, + "ranchero": 42090, + "sloots": 42091, + "nigglet": 42092, + "fasten": 42093, + "cappuccinos": 42094, + "slowness": 42095, + "discos": 42096, + "tattooing": 42097, + "#fighton": 42098, + "wyg": 42099, + "baghdad": 42100, + "kindof": 42101, + "tahini": 42102, + "muzik": 42103, + "anise": 42104, + "elvira": 42105, + "duerma": 42106, + "youngbull": 42107, + "nakakatawa": 42108, + "hermanos": 42109, + "fubu": 42110, + "hauled": 42111, + "bulgarian": 42112, + "dreamcatcher": 42113, + "sensuality": 42114, + "analogies": 42115, + "hospitalized": 42116, + "reinvent": 42117, + "fived": 42118, + "goodnyt": 42119, + "glossary": 42120, + "abra": 42121, + "wouldd": 42122, + "shaye": 42123, + "eyvallah": 42124, + "angled": 42125, + "condensation": 42126, + "thule": 42127, + "#twdfamily": 42128, + "kims": 42129, + "#friendship": 42130, + "naja": 42131, + "hoarders": 42132, + "degraded": 42133, + "lumix": 42134, + "becky's": 42135, + "inspections": 42136, + "nyana": 42137, + "cooktop": 42138, + "technological": 42139, + "#chocolate": 42140, + "voos": 42141, + "horsepower": 42142, + "pandoras": 42143, + "cubby": 42144, + "cyaa": 42145, + "tweetlimit": 42146, + "nakey": 42147, + "apologised": 42148, + "hanny": 42149, + "christen": 42150, + "farscape": 42151, + "detract": 42152, + "cnblue": 42153, + "germantown": 42154, + "gino's": 42155, + "sallie": 42156, + "spearmint": 42157, + "ratted": 42158, + "wilfred": 42159, + "handlebar": 42160, + "quantitative": 42161, + "listenn": 42162, + "#obf": 42163, + "oorr": 42164, + "allaah": 42165, + "rasheed": 42166, + "tookie": 42167, + "droll": 42168, + "jamison": 42169, + "dispensary": 42170, + "megabus": 42171, + "permed": 42172, + "calhoun": 42173, + "quiff": 42174, + "#maroon5": 42175, + "chicser": 42176, + "cadets": 42177, + "dady": 42178, + "marvels": 42179, + "#fuckthis": 42180, + "powdery": 42181, + "racine": 42182, + "cashin": 42183, + "artery": 42184, + "ipic": 42185, + "tambourine": 42186, + "somtimes": 42187, + "applicator": 42188, + "cutthroat": 42189, + "beetlejuice": 42190, + "dymond": 42191, + "afrobeats": 42192, + "welcom": 42193, + "unorthodox": 42194, + "perpetually": 42195, + "misunderstandings": 42196, + "dasha": 42197, + "dickey": 42198, + "crucified": 42199, + "screened": 42200, + "beni": 42201, + "halter": 42202, + "indirectas": 42203, + "randy's": 42204, + "bobbin": 42205, + "provincial": 42206, + "ajajaja": 42207, + "#nahfr": 42208, + "miri": 42209, + "delicately": 42210, + "#spurs": 42211, + "sekarang": 42212, + "flashpoint": 42213, + "swg": 42214, + "group's": 42215, + "thannks": 42216, + "gatwick": 42217, + "mclovin": 42218, + "biked": 42219, + "lindy": 42220, + "aroundd": 42221, + "morp": 42222, + "wagons": 42223, + "uit": 42224, + "mcmahon": 42225, + "pastels": 42226, + "#veranomtv2016": 42227, + "caan't": 42228, + "sepanx": 42229, + "wares": 42230, + "mobil": 42231, + "uriah": 42232, + "thoes": 42233, + "spinoff": 42234, + "theese": 42235, + "quedamos": 42236, + "guitarra": 42237, + "kier": 42238, + "didint": 42239, + "unblocking": 42240, + "schleepp": 42241, + "msj": 42242, + "commencer": 42243, + "does't": 42244, + "rder": 42245, + "lappy": 42246, + "sniping": 42247, + "aimer": 42248, + "hawkeye": 42249, + "yech": 42250, + "poodie": 42251, + "filipina": 42252, + "migrane": 42253, + "averages": 42254, + "smidge": 42255, + "mura": 42256, + "wookie": 42257, + "concordance": 42258, + "chilton": 42259, + "pagans": 42260, + "#godawgs": 42261, + "fkd": 42262, + "weeak": 42263, + "jazmyn": 42264, + "aroun": 42265, + "piazza": 42266, + "instigate": 42267, + "amherst": 42268, + "tjo": 42269, + "folloe": 42270, + "#redsox": 42271, + "invierno": 42272, + "matheus": 42273, + "algorithms": 42274, + "heartwrenching": 42275, + "muhahaha": 42276, + "refillable": 42277, + "vba": 42278, + "sperry": 42279, + "agendas": 42280, + "normality": 42281, + "gustaa": 42282, + "bie": 42283, + "adays": 42284, + "switchfoot": 42285, + "milos": 42286, + "maru": 42287, + "carelessly": 42288, + "nutcase": 42289, + "presenters": 42290, + "chillies": 42291, + "lilly's": 42292, + "fletch": 42293, + "enthused": 42294, + "mj's": 42295, + "tamron": 42296, + "tentative": 42297, + "recognizable": 42298, + "vulture": 42299, + "fdaait": 42300, + "lamar's": 42301, + "klean": 42302, + "sein": 42303, + "walaa": 42304, + "nochesita": 42305, + "ifhy": 42306, + "mousetrap": 42307, + "deffinetly": 42308, + "pfvr": 42309, + "wdym": 42310, + "#getout": 42311, + "beavis": 42312, + "yumminess": 42313, + "geoffrey": 42314, + "talib": 42315, + "merr": 42316, + "antipasti": 42317, + "mfks": 42318, + "yati": 42319, + "#go": 42320, + "respeck": 42321, + "menthol": 42322, + "bowlers": 42323, + "lieutenant": 42324, + "fibre": 42325, + "marca": 42326, + "foolishly": 42327, + "chunti": 42328, + "cinci": 42329, + "lawak": 42330, + "#gigem": 42331, + "larkin": 42332, + "porq": 42333, + "#xo": 42334, + "collared": 42335, + "oni": 42336, + "segundos": 42337, + "jamil": 42338, + "balvin": 42339, + "#talent": 42340, + "improvise": 42341, + "capitalized": 42342, + "encoding": 42343, + "lucks": 42344, + "vcc": 42345, + "jajjaja": 42346, + "yuppies": 42347, + "zakk": 42348, + "rakim": 42349, + "lofty": 42350, + "clovis": 42351, + "anyhoo": 42352, + "#drama": 42353, + "fumin": 42354, + "mishaps": 42355, + "ewa": 42356, + "hentai": 42357, + "transporter": 42358, + "raking": 42359, + "saltine": 42360, + "thaankss": 42361, + "bitvh": 42362, + "lma": 42363, + "jozi": 42364, + "wooaah": 42365, + "sleezy": 42366, + "pantyhose": 42367, + "headlamp": 42368, + "#honestly": 42369, + "ricki": 42370, + "tonigh": 42371, + "strutting": 42372, + "incarnate": 42373, + "undergoing": 42374, + "twatcher": 42375, + "ginawa": 42376, + "bragged": 42377, + "crouch": 42378, + "lesnar": 42379, + "amess": 42380, + "dillard": 42381, + "comically": 42382, + "epically": 42383, + "watsons": 42384, + "otherhalf": 42385, + "jeb": 42386, + "cioppino": 42387, + "beirut": 42388, + "#coleworld": 42389, + "#standard": 42390, + "#patsnation": 42391, + "ultrasonic": 42392, + "uwe": 42393, + "judgements": 42394, + "matteo": 42395, + "brainstorm": 42396, + "yapping": 42397, + "walkthrough": 42398, + "suze": 42399, + "alexa's": 42400, + "conditional": 42401, + "unpaid": 42402, + "hurley": 42403, + "phonecalls": 42404, + "maltin": 42405, + "vooy": 42406, + "biglang": 42407, + "aameen": 42408, + "llegan": 42409, + "basketballs": 42410, + "retitled": 42411, + "frighten": 42412, + "pows": 42413, + "#happysaturday": 42414, + "thankyaa": 42415, + "cooperation": 42416, + "proofing": 42417, + "lissa": 42418, + "generational": 42419, + "matress": 42420, + "terrasse": 42421, + "snapchat's": 42422, + "#liverpool": 42423, + "blume": 42424, + "suspiciously": 42425, + "redecorating": 42426, + "hau": 42427, + "tqqt": 42428, + "armandinho": 42429, + "backroads": 42430, + "scarring": 42431, + "squadron": 42432, + "aslan": 42433, + "shiok": 42434, + "juseyo": 42435, + "maccys": 42436, + "haywire": 42437, + "p.f.": 42438, + "hoodwinked": 42439, + "caen": 42440, + "finite": 42441, + "hollis": 42442, + "nookie": 42443, + "pushover": 42444, + "visitar": 42445, + "#britonedirection": 42446, + "lyl": 42447, + "cayden": 42448, + "neoprene": 42449, + "resell": 42450, + "#31": 42451, + "sags": 42452, + "aria's": 42453, + "fisica": 42454, + "guapaa": 42455, + "insyallah": 42456, + "degrades": 42457, + "evita": 42458, + "bgd": 42459, + "papasito": 42460, + "hahahhahaa": 42461, + "mapeh": 42462, + "wun": 42463, + "danceable": 42464, + "bau": 42465, + "aso": 42466, + "iitt": 42467, + "hame": 42468, + "kasing": 42469, + "sapat": 42470, + "continents": 42471, + "#lovethissong": 42472, + "composers": 42473, + "garter": 42474, + "petes": 42475, + "bloomin": 42476, + "foursome": 42477, + "dormire": 42478, + "liinda": 42479, + "reema": 42480, + "%%": 42481, + "shunned": 42482, + "friendly's": 42483, + "octagon": 42484, + "wickets": 42485, + "avisa": 42486, + "erudite": 42487, + "fishies": 42488, + "citi": 42489, + "ponte": 42490, + "painfull": 42491, + "diplomas": 42492, + "ism": 42493, + "gnn": 42494, + "acs": 42495, + "mounds": 42496, + "gastritis": 42497, + "marital": 42498, + "kristie": 42499, + "debuted": 42500, + "repugnant": 42501, + "duudee": 42502, + "puig": 42503, + "#getmeoutofhere": 42504, + "jeezz": 42505, + "unglued": 42506, + "balla": 42507, + "overflows": 42508, + "boucle": 42509, + "requisite": 42510, + "washin": 42511, + "dilema": 42512, + "boulders": 42513, + "karcher": 42514, + "infierno": 42515, + "sunggyu": 42516, + "flatten": 42517, + "plp": 42518, + "fugazi": 42519, + "numbed": 42520, + "goya": 42521, + "#sns": 42522, + "simping": 42523, + "hooded": 42524, + "groupe": 42525, + "gosshh": 42526, + "merezco": 42527, + ".o.p": 42528, + "#loveislove": 42529, + "foodstamps": 42530, + "#spring": 42531, + "vocally": 42532, + "burna": 42533, + "buildup": 42534, + "haveing": 42535, + "#miercolesdeganarseguidores": 42536, + "sacha": 42537, + "#busted": 42538, + "faak": 42539, + "wassuh": 42540, + "thursdayy": 42541, + "valeo": 42542, + "chopra": 42543, + "costner": 42544, + "glistening": 42545, + "tocando": 42546, + "rompio": 42547, + "motherfuckas": 42548, + "ctfupp": 42549, + "azteca": 42550, + "belanja": 42551, + "huug": 42552, + "#tearsofjoy": 42553, + "dbs": 42554, + "inlaws": 42555, + "wao": 42556, + "cady": 42557, + "chick's": 42558, + "babel": 42559, + "jamari": 42560, + "hoarse": 42561, + "rewritten": 42562, + "nonton": 42563, + "smexy": 42564, + "#oww": 42565, + "#strong": 42566, + "bighit": 42567, + "#unfollow": 42568, + "papis": 42569, + "mems": 42570, + "balconies": 42571, + "wesson": 42572, + "courier": 42573, + "tyb": 42574, + "darion": 42575, + "cagada": 42576, + "#yourethebest": 42577, + "darrius": 42578, + "leno": 42579, + "#saintsfc": 42580, + "kaycee": 42581, + "severed": 42582, + "mutton": 42583, + "yeeahh": 42584, + "hotcakes": 42585, + "patronising": 42586, + "shifty": 42587, + "gangbang": 42588, + "jesses": 42589, + "assumer": 42590, + "librarians": 42591, + "jongdae": 42592, + "omff": 42593, + "rose's": 42594, + "scotia": 42595, + "haleb": 42596, + "akeed": 42597, + "talagaa": 42598, + "claramente": 42599, + "#need": 42600, + "blandness": 42601, + "l'autre": 42602, + "arrd": 42603, + "jarig": 42604, + "jajajajajaa": 42605, + "farmhouse": 42606, + "convict": 42607, + "listerine": 42608, + "buttface": 42609, + "bads": 42610, + "glib": 42611, + "bartender's": 42612, + "insya": 42613, + "rixton": 42614, + "zombieland": 42615, + "congratulatory": 42616, + "cukup": 42617, + "fuucck": 42618, + "hahahahhahah": 42619, + "enn": 42620, + "doen't": 42621, + "igor": 42622, + "dobrze": 42623, + "#jt": 42624, + "sa'yo": 42625, + "#worried": 42626, + "sucia": 42627, + "rmbr": 42628, + "homem": 42629, + "#swfc": 42630, + "corsair": 42631, + "ctg": 42632, + "freakshow": 42633, + "daf": 42634, + "collateral": 42635, + "tamer": 42636, + "chaoo": 42637, + "#viernesdeganarseguidores": 42638, + "hobi": 42639, + "outty": 42640, + "yuckk": 42641, + "martini's": 42642, + "tunechi": 42643, + "#socomfy": 42644, + "thiz": 42645, + "bamba": 42646, + "goona": 42647, + "namen": 42648, + "emang": 42649, + "wholetime": 42650, + "sum'n": 42651, + "#bet": 42652, + "exercised": 42653, + "robben": 42654, + "eux": 42655, + "diseased": 42656, + "motherf": 42657, + "decode": 42658, + "sumpah": 42659, + "septic": 42660, + "lago": 42661, + "jemima": 42662, + "psychologists": 42663, + "shafted": 42664, + "iphone's": 42665, + "naniniwala": 42666, + "bestia": 42667, + "west's": 42668, + "cour": 42669, + "fiddler": 42670, + "oswald": 42671, + "#spnfamily": 42672, + "elounor": 42673, + "xiu": 42674, + "#anytakers": 42675, + "diminishing": 42676, + "showcasing": 42677, + "smuggle": 42678, + "looper": 42679, + "springtime": 42680, + "lioness": 42681, + "sickeningly": 42682, + "rog": 42683, + "bessie": 42684, + "#lolz": 42685, + "emocion": 42686, + "bassinet": 42687, + "scanners": 42688, + "haut": 42689, + "desisto": 42690, + "#addict": 42691, + "moneey": 42692, + "pokemons": 42693, + "tanda": 42694, + "duela": 42695, + "lasers": 42696, + "buttholes": 42697, + "casillas": 42698, + "#ravensnation": 42699, + "boyfrann": 42700, + "cantikk": 42701, + "dormida": 42702, + "brainwash": 42703, + "wsup": 42704, + "relativity": 42705, + "hermanita": 42706, + "#impracticaljokers": 42707, + "atown": 42708, + "gawsh": 42709, + "derry": 42710, + "ken's": 42711, + "obscurity": 42712, + "prohibited": 42713, + "divinoo": 42714, + "datin": 42715, + "gur": 42716, + "karachi": 42717, + "mathers": 42718, + "badboy": 42719, + "psychopaths": 42720, + "acabar": 42721, + "backshots": 42722, + "aftie": 42723, + "societies": 42724, + "squatted": 42725, + "fwend": 42726, + "nominating": 42727, + "gally": 42728, + "graham's": 42729, + "mayflower": 42730, + "mccaffrey": 42731, + "pinaka": 42732, + "howlin": 42733, + "chido": 42734, + "challah": 42735, + "welly": 42736, + "baez": 42737, + "minimally": 42738, + "causa": 42739, + "abdullah": 42740, + "ellen's": 42741, + "granddaughters": 42742, + "glances": 42743, + "lazarus": 42744, + "souvent": 42745, + "fansites": 42746, + "grv": 42747, + "rps": 42748, + "defiance": 42749, + "peekaboo": 42750, + "finnick": 42751, + "#stahp": 42752, + "grillin": 42753, + "comp'd": 42754, + "tjs": 42755, + "myia": 42756, + "flocking": 42757, + "leaker": 42758, + "bode": 42759, + "drudgery": 42760, + "immortals": 42761, + "snickerdoodle": 42762, + "bedankt": 42763, + "quidditch": 42764, + "#miserable": 42765, + "trinoma": 42766, + "#ff_beautiful": 42767, + "muchplease": 42768, + "perrito": 42769, + "schizophrenia": 42770, + "hoof": 42771, + "suz": 42772, + "preocupa": 42773, + "clubb": 42774, + "bodo": 42775, + "scalding": 42776, + "submissions": 42777, + "pootie": 42778, + "summerslam": 42779, + "pillo": 42780, + "ensuring": 42781, + "wailing": 42782, + "vit": 42783, + "#midnightmemories": 42784, + "#bang": 42785, + "tev": 42786, + "traverse": 42787, + "roja": 42788, + "bdsm": 42789, + "cheaa": 42790, + "dunt": 42791, + "dueling": 42792, + "plez": 42793, + "shawties": 42794, + "j'sais": 42795, + "siete": 42796, + "#44": 42797, + "allstate": 42798, + "glimmer": 42799, + "orale": 42800, + "rudimental": 42801, + "sqn": 42802, + "bonner": 42803, + "qu'un": 42804, + "quackery": 42805, + "#logic": 42806, + "kairos": 42807, + "#this": 42808, + "brittani": 42809, + "bsg": 42810, + "shep": 42811, + "inboxes": 42812, + "liindo": 42813, + "m.d.": 42814, + "jocks": 42815, + "girla": 42816, + "niah": 42817, + "lasik": 42818, + "unflattering": 42819, + "regimen": 42820, + "ditzy": 42821, + "jasmine's": 42822, + "dissapoints": 42823, + "ididnt": 42824, + "askip": 42825, + "darkside": 42826, + "sexes": 42827, + "figurine": 42828, + "tion": 42829, + "duke's": 42830, + "ncc": 42831, + "drizzling": 42832, + "uprising": 42833, + "funnily": 42834, + "#bullsnation": 42835, + "premiership": 42836, + "kez": 42837, + "vanna": 42838, + "mariscos": 42839, + "erasers": 42840, + "frrl": 42841, + "rva": 42842, + "massey": 42843, + "charr": 42844, + "littler": 42845, + "rizzo": 42846, + "remarked": 42847, + "gnaw": 42848, + "bitsy": 42849, + "unliked": 42850, + "parc": 42851, + "nenek": 42852, + "chanelle": 42853, + "burd": 42854, + "mixup": 42855, + "exitos": 42856, + "hubris": 42857, + "unff": 42858, + "avc": 42859, + "shen": 42860, + "edging": 42861, + "managment": 42862, + "imminent": 42863, + "feeln": 42864, + "yonder": 42865, + "burglar": 42866, + "#truefriends": 42867, + "thomson": 42868, + "metra": 42869, + "enemy's": 42870, + "twinnies": 42871, + "screenshoted": 42872, + "#feelingthelove": 42873, + "#bn": 42874, + "retaliation": 42875, + "belonging": 42876, + "wydd": 42877, + "iim": 42878, + "customizing": 42879, + "corsa": 42880, + "absolument": 42881, + "shani": 42882, + "ministers": 42883, + "dossier": 42884, + "tuan": 42885, + "lune": 42886, + "ozone": 42887, + "morph": 42888, + "nsht": 42889, + "tooi": 42890, + "squirts": 42891, + "rickety": 42892, + "synchronized": 42893, + "quarry": 42894, + "downfalls": 42895, + "playpen": 42896, + "swoosh": 42897, + "contestame": 42898, + "loudd": 42899, + "kwa": 42900, + "hamza": 42901, + "crinkles": 42902, + "compartments": 42903, + "housemade": 42904, + "nlt": 42905, + "ksi": 42906, + "preliminary": 42907, + "enhancer": 42908, + "pipeline": 42909, + "cts": 42910, + "yusuf": 42911, + "egyptians": 42912, + "perversion": 42913, + "heartattack": 42914, + "zainab": 42915, + "diedd": 42916, + "grunting": 42917, + "bonefish": 42918, + "journalistic": 42919, + "doberman": 42920, + "rockefeller": 42921, + "itsy": 42922, + "turismo": 42923, + "platoon": 42924, + "#here": 42925, + "maca": 42926, + "exito": 42927, + "scantily": 42928, + "travelzoo": 42929, + "sharpened": 42930, + "mok": 42931, + "ballistic": 42932, + "nassau": 42933, + "canker": 42934, + "seep": 42935, + "disowning": 42936, + "#positivethinking": 42937, + "#yourock": 42938, + "picslips": 42939, + "s'est": 42940, + "pornos": 42941, + "cacao": 42942, + "campos": 42943, + "#imaceleb": 42944, + "#textme": 42945, + "typographical": 42946, + "illmatic": 42947, + "iv'e": 42948, + "ripple": 42949, + "uta": 42950, + "llevame": 42951, + "estrellas": 42952, + "kafka": 42953, + "mathematician": 42954, + "#guycode": 42955, + "byke": 42956, + "rpgs": 42957, + "audra": 42958, + "intros": 42959, + "virtuosity": 42960, + "idfc": 42961, + "tinting": 42962, + "sours": 42963, + "payphone": 42964, + "kamikaze": 42965, + "entree's": 42966, + "kremes": 42967, + "dished": 42968, + "#makeitstop": 42969, + "#turnoff": 42970, + "glimpses": 42971, + "gringa": 42972, + "chansons": 42973, + "dalai": 42974, + "plantar": 42975, + "pertinent": 42976, + "einfach": 42977, + "reversible": 42978, + "gracinha": 42979, + "keluar": 42980, + "soltera": 42981, + "seenzoned": 42982, + "nimo": 42983, + "warns": 42984, + "friken": 42985, + "tryingg": 42986, + "bangun": 42987, + "spouses": 42988, + "s:": 42989, + "trappers": 42990, + "kampf": 42991, + "castillo": 42992, + "greased": 42993, + "ymas": 42994, + "saidd": 42995, + "freezingg": 42996, + "hoverboard": 42997, + "muchisimo": 42998, + "frothy": 42999, + "#mtvema": 43000, + "fllwbck": 43001, + "chamou": 43002, + "boule": 43003, + "earthly": 43004, + "danville": 43005, + "lawrenceville": 43006, + "bowels": 43007, + "sado": 43008, + "rewinding": 43009, + "mc's": 43010, + "wgm": 43011, + "enit": 43012, + "cru": 43013, + "comprei": 43014, + "pouco": 43015, + "lbk": 43016, + "freshy": 43017, + "unfulfilling": 43018, + "kir": 43019, + "laag": 43020, + "akh": 43021, + "gertrude": 43022, + "icf": 43023, + "richter": 43024, + "coriander": 43025, + "bfe": 43026, + "huda": 43027, + "jailed": 43028, + "insuperable": 43029, + "disatisfied": 43030, + "brax": 43031, + "folio": 43032, + "juarez": 43033, + "hellboy": 43034, + "#getfit": 43035, + "lanza": 43036, + "rythm": 43037, + "ethier": 43038, + "ratting": 43039, + "gomitas": 43040, + "#adele": 43041, + "vicerylle": 43042, + "eliminating": 43043, + "wagers": 43044, + "rodents": 43045, + "moyenne": 43046, + "repellant": 43047, + "shoveled": 43048, + "baiklah": 43049, + "tuit": 43050, + "#fuckschool": 43051, + "typography": 43052, + "teng": 43053, + "elsee": 43054, + "begrudgingly": 43055, + "yaga": 43056, + "spruce": 43057, + "loa": 43058, + "organizers": 43059, + "crim": 43060, + "#blakeshelton": 43061, + "#struggles": 43062, + "pilla": 43063, + "amiyah": 43064, + "objectives": 43065, + "notably": 43066, + "blooms": 43067, + "eliminator": 43068, + "natured": 43069, + "morgue": 43070, + "betraying": 43071, + "niam": 43072, + "internets": 43073, + "spoonfuls": 43074, + "sendiri": 43075, + "jhope": 43076, + "universally": 43077, + "homeschoolers": 43078, + "henri": 43079, + "lameness": 43080, + "stirs": 43081, + "hvala": 43082, + "#thatsall": 43083, + "#change": 43084, + "vere": 43085, + "chiara": 43086, + "accumulator": 43087, + "tais": 43088, + "cosco": 43089, + "#notimpressed": 43090, + "hamburguesas": 43091, + "andito": 43092, + "caraa": 43093, + "#moneyteam": 43094, + "reloading": 43095, + "ebi": 43096, + "memento": 43097, + "kearney": 43098, + "bitters": 43099, + "copeland": 43100, + "awuh": 43101, + "geeza": 43102, + "cortante": 43103, + "stacker": 43104, + "okinawa": 43105, + "youngstown": 43106, + "settlers": 43107, + "lamentable": 43108, + "compadre": 43109, + "influencing": 43110, + "sighing": 43111, + "earnings": 43112, + "verdient": 43113, + "chickened": 43114, + "thirties": 43115, + "#comedy": 43116, + "sumiu": 43117, + "romancing": 43118, + "fleeting": 43119, + "ravishing": 43120, + "nation's": 43121, + "dya": 43122, + "autopsy": 43123, + "gloriously": 43124, + "tataki": 43125, + "birding": 43126, + "#insanity": 43127, + "kuyaa": 43128, + "layaway": 43129, + "overcomes": 43130, + "whistler": 43131, + "temporal": 43132, + "advancing": 43133, + "charley's": 43134, + "memba": 43135, + "#believeacoustic": 43136, + "overwhelms": 43137, + "smothering": 43138, + "solemnly": 43139, + "#viscabarca": 43140, + "abuja": 43141, + "casar": 43142, + "caity": 43143, + "manolo": 43144, + "mercado": 43145, + "willows": 43146, + "dateless": 43147, + "prancing": 43148, + "mediums": 43149, + "rollerblading": 43150, + "forhead": 43151, + "wilkos": 43152, + "maddison": 43153, + "siani": 43154, + "caralhoo": 43155, + "dismissing": 43156, + "zooey": 43157, + "behaves": 43158, + "violinist": 43159, + "mogul": 43160, + "gorey": 43161, + "lapdance": 43162, + "pagal": 43163, + "bullshxt": 43164, + "sushis": 43165, + "smirks": 43166, + "suki": 43167, + "bridgeport": 43168, + "#purposetour": 43169, + "gratifying": 43170, + "kinetic": 43171, + "radwimps": 43172, + "#eek": 43173, + "scathing": 43174, + "sarina": 43175, + "enable": 43176, + "patted": 43177, + "amoureuse": 43178, + "parada": 43179, + "dustbuster": 43180, + "alaikum": 43181, + "partaay": 43182, + "motivations": 43183, + "housewarming": 43184, + "backdoor": 43185, + "whhaat": 43186, + "retaliate": 43187, + "prezzies": 43188, + "motm": 43189, + "bautista": 43190, + "singed": 43191, + "shelled": 43192, + "notation": 43193, + "yike": 43194, + "pommes": 43195, + "cpl": 43196, + "encrusted": 43197, + "haave": 43198, + "doen": 43199, + "#fit": 43200, + "eargasm": 43201, + "ggs": 43202, + "lasko": 43203, + "heathy": 43204, + "oldham": 43205, + "osbourne": 43206, + "starbuck's": 43207, + "con's": 43208, + "fomf": 43209, + "xscape": 43210, + "konti": 43211, + "lataa": 43212, + "eitha": 43213, + "zidane": 43214, + "yakima": 43215, + "flintstones": 43216, + "baxk": 43217, + "greetin": 43218, + "biche": 43219, + "rukh": 43220, + "romy": 43221, + "chalmers": 43222, + "moriah": 43223, + "#fuckthat": 43224, + "terminei": 43225, + "blistered": 43226, + "damion": 43227, + "jetting": 43228, + "makikita": 43229, + "tavon": 43230, + "soorry": 43231, + "nudies": 43232, + "alicia's": 43233, + "subscriptions": 43234, + "espectacular": 43235, + "cardo": 43236, + "styll": 43237, + "jie": 43238, + "#tswift": 43239, + "undertones": 43240, + "reoccurring": 43241, + "sheri": 43242, + "landis": 43243, + "cought": 43244, + "flaccid": 43245, + "rutherford": 43246, + "infomercials": 43247, + "onscreen": 43248, + "esthetician": 43249, + "bacck": 43250, + "molesto": 43251, + "decirte": 43252, + "lmmaaoo": 43253, + "ameer": 43254, + "whammy": 43255, + "hle": 43256, + "darren's": 43257, + "exploits": 43258, + "bettah": 43259, + "sprawling": 43260, + "ajs": 43261, + "whiteboy": 43262, + "seus": 43263, + "hesitating": 43264, + "gos": 43265, + "ead": 43266, + "transcendent": 43267, + "chrismas": 43268, + "joana": 43269, + "aquela": 43270, + "thankyy": 43271, + "contando": 43272, + "heartily": 43273, + "disinformation": 43274, + "categorize": 43275, + "daddio": 43276, + "jariana": 43277, + "qtpie": 43278, + "volvii": 43279, + "williamson": 43280, + "inglewood": 43281, + "scram": 43282, + "poodles": 43283, + "congradulations": 43284, + "leftt": 43285, + "bianca's": 43286, + "injera": 43287, + "ava's": 43288, + "rarest": 43289, + "dongsaeng": 43290, + "glares": 43291, + "li'l": 43292, + "dizziness": 43293, + "ganito": 43294, + "bosque": 43295, + "bountiful": 43296, + "pca": 43297, + "quimica": 43298, + "doode": 43299, + "undrinkable": 43300, + "grossing": 43301, + "uncreative": 43302, + "mosley": 43303, + "selos": 43304, + "benfica": 43305, + "picturesque": 43306, + "villages": 43307, + "galbii": 43308, + "kunta": 43309, + "medically": 43310, + "scripting": 43311, + "chapelle": 43312, + "assassin's": 43313, + "majid": 43314, + "three's": 43315, + "divorcing": 43316, + "estudia": 43317, + "budak": 43318, + "meyou": 43319, + "bendee": 43320, + "ciaa": 43321, + "hom": 43322, + "bonbon": 43323, + "lipo": 43324, + "#argentina": 43325, + "gawgeous": 43326, + "naap": 43327, + "verne": 43328, + "cfl": 43329, + "sumtin": 43330, + "notions": 43331, + "yeol": 43332, + "foreveer": 43333, + "wendell": 43334, + "klutz": 43335, + "gearing": 43336, + "florida's": 43337, + "#lbloggers": 43338, + "perdida": 43339, + "mugshots": 43340, + "picket": 43341, + "banality": 43342, + "nds": 43343, + "trad": 43344, + "introspection": 43345, + "#divergent": 43346, + "estaria": 43347, + "bruhs": 43348, + "astronauts": 43349, + "kat's": 43350, + "lapin": 43351, + "wyaa": 43352, + "mooned": 43353, + "masochist": 43354, + "hobbie": 43355, + "volvemos": 43356, + "nephs": 43357, + "reet": 43358, + "hideously": 43359, + "could'nt": 43360, + "#freshmanadvice": 43361, + "#picslip": 43362, + "#problem": 43363, + "gudluck": 43364, + "endd": 43365, + "damnear": 43366, + "tablecloths": 43367, + "tomes": 43368, + "strewn": 43369, + "fuck'em": 43370, + "litle": 43371, + "moot": 43372, + "quill": 43373, + "shiner": 43374, + "racy": 43375, + "#peaceout": 43376, + "omdz": 43377, + "dstv": 43378, + "johor": 43379, + "energies": 43380, + "wearable": 43381, + "o.c.": 43382, + "coley": 43383, + "vist": 43384, + "enorme": 43385, + "mists": 43386, + "#bgc": 43387, + "#workhard": 43388, + "itube": 43389, + "hayaan": 43390, + "biitchh": 43391, + "mckay": 43392, + "metaphorical": 43393, + "recharging": 43394, + "warranties": 43395, + "illuminates": 43396, + "troubleshooting": 43397, + "tourneys": 43398, + "smb": 43399, + "#votearianagrande": 43400, + "loongg": 43401, + "pagoda": 43402, + "marquette": 43403, + "trampolines": 43404, + "mousepad": 43405, + "squirtle": 43406, + "picturee": 43407, + "goodshit": 43408, + "manje": 43409, + "hart's": 43410, + "lecker": 43411, + "hahhahahah": 43412, + "#rolemodel": 43413, + "infelizmente": 43414, + "gofundme": 43415, + "pregaming": 43416, + "technica": 43417, + "snatcher": 43418, + "whelmed": 43419, + "arigato": 43420, + "duit": 43421, + "#whattodo": 43422, + "#wild": 43423, + "youngsta": 43424, + "iysm": 43425, + "hedgehogs": 43426, + "accumulated": 43427, + "dilla": 43428, + "acclaim": 43429, + "olala": 43430, + "#nofilter": 43431, + "#dinner": 43432, + "visualize": 43433, + "hosa": 43434, + "undisputed": 43435, + "beachin": 43436, + "deers": 43437, + "birkenstock": 43438, + "tiired": 43439, + "#nbaplayoffs": 43440, + "mbtc": 43441, + "klaine": 43442, + "mezzo": 43443, + "uz": 43444, + "aficionados": 43445, + "unison": 43446, + "suggestive": 43447, + "dilemmas": 43448, + "haffi": 43449, + "protien": 43450, + "intervene": 43451, + "eke": 43452, + "#cheeky": 43453, + "macc": 43454, + "thoughtfully": 43455, + "#p": 43456, + "misstep": 43457, + "jot": 43458, + "olicity": 43459, + "khari": 43460, + "onedirection": 43461, + "chewable": 43462, + "glitching": 43463, + "oxnard": 43464, + "evar": 43465, + "misto": 43466, + "fasfa": 43467, + "crushh": 43468, + "naynay": 43469, + "shamanism": 43470, + "unravel": 43471, + "capitalizing": 43472, + "gunsmoke": 43473, + "#funtimes": 43474, + "hattiesburg": 43475, + "#bigkid": 43476, + "heeled": 43477, + "leticia": 43478, + "lisha": 43479, + "#tfb": 43480, + "parcial": 43481, + "biotin": 43482, + "scran": 43483, + "loli": 43484, + "carrera": 43485, + "outages": 43486, + "onsite": 43487, + "gargle": 43488, + "deano": 43489, + "criticise": 43490, + "sable": 43491, + "umulan": 43492, + "#iswear": 43493, + "keyon": 43494, + "outtakes": 43495, + "idon't": 43496, + "sonja": 43497, + "ligaments": 43498, + "distribute": 43499, + "libertad": 43500, + "ccs": 43501, + "hadi": 43502, + "charmander": 43503, + "#idontcare": 43504, + "lowdown": 43505, + "acronyms": 43506, + "nito": 43507, + "poto": 43508, + "butterfingers": 43509, + "zoolander": 43510, + "manna": 43511, + "dra": 43512, + "tbh's": 43513, + "kamari": 43514, + "#mybestfriend": 43515, + "jajajajajjaja": 43516, + "outie": 43517, + "escuche": 43518, + "livingroom": 43519, + "#35": 43520, + "shotta": 43521, + "direk": 43522, + "nananana": 43523, + "keli": 43524, + "punky": 43525, + "excerpts": 43526, + "cassper": 43527, + "tren": 43528, + "unveiled": 43529, + "betty's": 43530, + "pilgrimage": 43531, + "asma": 43532, + "shinny": 43533, + "constellation": 43534, + "finito": 43535, + "hahn": 43536, + "dix": 43537, + "pests": 43538, + "diri": 43539, + "memorise": 43540, + "discovers": 43541, + "arbys": 43542, + "derailed": 43543, + "nervously": 43544, + "nandito": 43545, + "seba": 43546, + "nympho": 43547, + "yiddish": 43548, + "condemned": 43549, + "kravitz": 43550, + "taehyun": 43551, + "#lovatic": 43552, + "#winitwednesday": 43553, + "amends": 43554, + "pito": 43555, + "duece": 43556, + "gonzaga": 43557, + "motrin": 43558, + "aaj": 43559, + "btown": 43560, + "raivaa": 43561, + "raz": 43562, + "dimmed": 43563, + "orite": 43564, + "sarreh": 43565, + "doler": 43566, + "pook": 43567, + "meand": 43568, + "clinton's": 43569, + "assertive": 43570, + "wildcard": 43571, + "query": 43572, + "spectator": 43573, + "nourishing": 43574, + "#royals": 43575, + "trainings": 43576, + "karajan": 43577, + "diligent": 43578, + "goldsmith": 43579, + "recount": 43580, + "kellz": 43581, + "mehehehe": 43582, + "inly": 43583, + "stashed": 43584, + "hillerman": 43585, + "noticable": 43586, + "owhh": 43587, + "twinz": 43588, + "diferencia": 43589, + "#tears": 43590, + "thaats": 43591, + "khy": 43592, + "beber": 43593, + "bucketlist": 43594, + "temecula": 43595, + "grates": 43596, + "yann": 43597, + "grenades": 43598, + "lidia": 43599, + "daale": 43600, + "pissedd": 43601, + "talvez": 43602, + "#vegan": 43603, + "mrning": 43604, + "deflate": 43605, + "sabatier": 43606, + "coli": 43607, + "sicken": 43608, + "disadvantages": 43609, + "excitment": 43610, + "immunity": 43611, + "aprendi": 43612, + "literaly": 43613, + "frayed": 43614, + "hooch": 43615, + "barnum": 43616, + "haver": 43617, + "zaddyy": 43618, + "depicting": 43619, + "flatiron": 43620, + "fishbowl": 43621, + "hums": 43622, + "mgn": 43623, + "#lovingit": 43624, + "sidechick": 43625, + "fraiche": 43626, + "inoperable": 43627, + "clinique": 43628, + "pasal": 43629, + "#babygirl": 43630, + "mcallen": 43631, + "sofie": 43632, + "meniscus": 43633, + "gelatinous": 43634, + "sungjae": 43635, + "loviu": 43636, + "alrightyy": 43637, + "avo": 43638, + "differs": 43639, + "feist": 43640, + "picnics": 43641, + "horrifyingly": 43642, + "comings": 43643, + "irdgaf": 43644, + "vanavond": 43645, + "labio": 43646, + "pecks": 43647, + "ziplock": 43648, + "dogmatic": 43649, + "archers": 43650, + "profiter": 43651, + "sempree": 43652, + "zarry": 43653, + "#noexcuses": 43654, + "plannin": 43655, + "ravenswood": 43656, + "odie": 43657, + "parr": 43658, + "cutey": 43659, + "darlingg": 43660, + "enojada": 43661, + "digestion": 43662, + "ftp": 43663, + "bevy": 43664, + "nastier": 43665, + "ooft": 43666, + "fergalicious": 43667, + "livestock": 43668, + "#smooth": 43669, + "miraa": 43670, + "#shopaholic": 43671, + "pintos": 43672, + "lovley": 43673, + "unscented": 43674, + "zola": 43675, + "devs": 43676, + "wisest": 43677, + "o'neill": 43678, + "#dafuq": 43679, + "fulls": 43680, + "caregivers": 43681, + "felisha": 43682, + "lbi": 43683, + "qp": 43684, + "#juevesdeganarseguidores": 43685, + "lils": 43686, + "snowmobiling": 43687, + "kalyn": 43688, + "pacha": 43689, + "aprils": 43690, + "ohmygoodness": 43691, + "weir": 43692, + "#blackhawks": 43693, + "colchester": 43694, + "tazer": 43695, + "chastity": 43696, + "bamm": 43697, + "torchwood": 43698, + "escalate": 43699, + "mexicana": 43700, + "flipagrams": 43701, + "travi": 43702, + "haten": 43703, + "#gobucks": 43704, + "luuvv": 43705, + "eclair": 43706, + "photobomb": 43707, + "majorca": 43708, + "somf": 43709, + "anisa": 43710, + "rooftops": 43711, + "prides": 43712, + "fieldtrip": 43713, + "hoarding": 43714, + "thierry": 43715, + "#crush": 43716, + "makkah": 43717, + "mallet": 43718, + "rubicon": 43719, + "sentimientos": 43720, + "incl": 43721, + "popcaan": 43722, + "ohdee": 43723, + "yadda": 43724, + "ultimatum": 43725, + "wrost": 43726, + "seabiscuit": 43727, + "adolescents": 43728, + "zahra": 43729, + "dilbert": 43730, + "ches": 43731, + "mclean": 43732, + "holsteins": 43733, + "weeaakk": 43734, + "rollinn": 43735, + "qoute": 43736, + "crimp": 43737, + "embraces": 43738, + "summation": 43739, + "shadowhunters": 43740, + "dickriding": 43741, + "kenzi": 43742, + "goodnightyy": 43743, + "sicka": 43744, + "reloj": 43745, + "triggering": 43746, + "rac": 43747, + "canucks": 43748, + "selector": 43749, + "psoriasis": 43750, + "allison's": 43751, + "neko": 43752, + "retros": 43753, + "platypus": 43754, + "fables": 43755, + "bha": 43756, + "taint": 43757, + "yeri": 43758, + "#nothappening": 43759, + "#noshade": 43760, + "enamoree": 43761, + "disturbs": 43762, + "ord": 43763, + "pendejos": 43764, + "cuttie": 43765, + "brianne": 43766, + "templar": 43767, + "jura": 43768, + "coq": 43769, + "sculptures": 43770, + "suport": 43771, + "newsboys": 43772, + "shakedown": 43773, + "#happyhumpday": 43774, + "#fire": 43775, + "blanking": 43776, + "chevelle": 43777, + "moisturize": 43778, + "crunched": 43779, + "didactic": 43780, + "pealing": 43781, + "opportunist": 43782, + "wackest": 43783, + "wilmer": 43784, + "brogod": 43785, + "bangg": 43786, + "llah": 43787, + "raww": 43788, + "nannying": 43789, + "floater": 43790, + "microphones": 43791, + "bade": 43792, + "justina": 43793, + "y.o.": 43794, + "tiwala": 43795, + "partidazo": 43796, + "sorprende": 43797, + "perasan": 43798, + "#caught": 43799, + "bellow": 43800, + "bendy": 43801, + "ascot": 43802, + "achey": 43803, + "categorized": 43804, + "#gold": 43805, + "universidad": 43806, + "#thenotebook": 43807, + ";:)": 43808, + "adultery": 43809, + "platt": 43810, + "hicimos": 43811, + "ebooks": 43812, + "kawhi": 43813, + "baseballs": 43814, + "lilies": 43815, + "chichis": 43816, + "confessional": 43817, + "taja": 43818, + "yongguk": 43819, + "kolo": 43820, + "roald": 43821, + "honte": 43822, + "fank": 43823, + "lodi": 43824, + "saige": 43825, + "bayan": 43826, + "eheheh": 43827, + "req": 43828, + "ushered": 43829, + "bsa": 43830, + "nether": 43831, + "applewood": 43832, + "chil": 43833, + "mignons": 43834, + "chesterfield": 43835, + "heady": 43836, + "waxy": 43837, + "britches": 43838, + "#twerkteam": 43839, + "#dexter": 43840, + "lepas": 43841, + "narcotics": 43842, + "rescues": 43843, + "fulfil": 43844, + "duckie": 43845, + "#prisonbreak": 43846, + "sunod": 43847, + "bestfrand": 43848, + "sfo": 43849, + "dribbles": 43850, + "fuckig": 43851, + "idd": 43852, + "zaynie": 43853, + "cotillion": 43854, + "diego's": 43855, + "phahaha": 43856, + "sobraa": 43857, + "bolero": 43858, + "oue": 43859, + "wheelchairs": 43860, + "elie": 43861, + "evacuated": 43862, + "retrograde": 43863, + "torrance": 43864, + "#hatebeingsick": 43865, + "#pow": 43866, + "akhirnya": 43867, + "spitta": 43868, + "awaayy": 43869, + "ouvir": 43870, + "servin": 43871, + "rubios": 43872, + "yemen": 43873, + "paddles": 43874, + "macarthur": 43875, + "ner": 43876, + "consummate": 43877, + "causal": 43878, + "broskii": 43879, + "mcadams": 43880, + "futility": 43881, + "beasties": 43882, + "coldhearted": 43883, + "wingers": 43884, + "chingo": 43885, + "luka": 43886, + "snobbish": 43887, + "baited": 43888, + "brae": 43889, + "crt": 43890, + "buddah": 43891, + "scalloped": 43892, + "radiating": 43893, + "regs": 43894, + "cyan": 43895, + "coincidental": 43896, + "iles": 43897, + "btfo": 43898, + "haaii": 43899, + "thirsting": 43900, + "cuckoo": 43901, + "liberties": 43902, + "tonne": 43903, + "kenyon": 43904, + "vayas": 43905, + "#church": 43906, + "gooaall": 43907, + "babex": 43908, + "isaiah's": 43909, + "scorsese": 43910, + "wep": 43911, + "fresa": 43912, + "passar": 43913, + "cuming": 43914, + "kenzo": 43915, + "hospice": 43916, + "charitable": 43917, + "talkies": 43918, + "googly": 43919, + "magnavox": 43920, + "extensively": 43921, + "rayna": 43922, + "nics": 43923, + "piee": 43924, + "#cuties": 43925, + "lakota": 43926, + "betrays": 43927, + "discriminated": 43928, + "ratt": 43929, + "posses": 43930, + "gripper": 43931, + "assigning": 43932, + "miscellaneous": 43933, + "najah": 43934, + "jaci": 43935, + "disconnecting": 43936, + "ophelia": 43937, + "vari": 43938, + "beatriz": 43939, + "cesc": 43940, + "jajajajajajja": 43941, + "soleus": 43942, + "bmg": 43943, + "plywood": 43944, + "devastation": 43945, + "gib": 43946, + "tjr": 43947, + "harshly": 43948, + "#dubai": 43949, + "goofys": 43950, + "alves": 43951, + "#bravo": 43952, + "corazones": 43953, + "noles": 43954, + "croatian": 43955, + "sicc": 43956, + "aeroplane": 43957, + "crises": 43958, + "cruces": 43959, + "#exo": 43960, + "damon's": 43961, + "puedee": 43962, + "lewd": 43963, + "solamente": 43964, + "precio": 43965, + "somalian": 43966, + "snook": 43967, + "dinger": 43968, + "amouur": 43969, + "ghoe": 43970, + "sevens": 43971, + "bood": 43972, + "kenshin": 43973, + "kai's": 43974, + "faltaso": 43975, + "freestyling": 43976, + "jghome": 43977, + "yds": 43978, + "black's": 43979, + "infect": 43980, + "kns": 43981, + "#austinmahone": 43982, + "crc": 43983, + "rocky's": 43984, + "crossfire": 43985, + "profiling": 43986, + "longboarding": 43987, + "beebs": 43988, + "vomitar": 43989, + "ateng": 43990, + "snakey": 43991, + "spiel": 43992, + "xti": 43993, + "musky": 43994, + "iona": 43995, + "interning": 43996, + "nosebleeds": 43997, + "despedida": 43998, + "disse": 43999, + "characterizations": 44000, + "marc's": 44001, + "chern": 44002, + "unsay": 44003, + "resit": 44004, + "yok": 44005, + "thurman": 44006, + "chars": 44007, + "snipers": 44008, + "stetson": 44009, + "lieve": 44010, + "outreach": 44011, + "flog": 44012, + "obedient": 44013, + "assel": 44014, + "clubbin": 44015, + "rickie": 44016, + "eased": 44017, + "bilt": 44018, + "heffas": 44019, + "#bb9": 44020, + "#workhardplayhard": 44021, + "suuck": 44022, + "baacckk": 44023, + "sympathize": 44024, + "renters": 44025, + "slv": 44026, + "existance": 44027, + "worryin": 44028, + "exept": 44029, + "emancipation": 44030, + "doghouse": 44031, + "vk": 44032, + "suppa": 44033, + "mcculloch": 44034, + "#undefeated": 44035, + "choosers": 44036, + "affiliate": 44037, + "adverse": 44038, + "veras": 44039, + "#hypocrite": 44040, + "chegueii": 44041, + "#rio2016": 44042, + "lidl": 44043, + "toa": 44044, + "colorized": 44045, + "evryone": 44046, + "stoves": 44047, + "mildred": 44048, + "hillcrest": 44049, + "heladito": 44050, + "#myeverything": 44051, + "mariaa": 44052, + "omgoshh": 44053, + "chrisley": 44054, + "lovesick": 44055, + "draught": 44056, + "valuables": 44057, + "negrito": 44058, + "ideaa": 44059, + "naten": 44060, + "unsa": 44061, + "jf": 44062, + "potbelly": 44063, + "genetically": 44064, + "atchu": 44065, + "wallpapers": 44066, + "poole": 44067, + "andromeda": 44068, + "rodman": 44069, + "#feelingblessed": 44070, + "repeater": 44071, + "heartstrings": 44072, + "morte": 44073, + "whooa": 44074, + "phn": 44075, + "batista": 44076, + "younglife": 44077, + "sharin": 44078, + "negligence": 44079, + "qm": 44080, + "clearest": 44081, + "aas": 44082, + "orbison": 44083, + "lels": 44084, + "detoxing": 44085, + "obgyn": 44086, + "xtc": 44087, + "stiches": 44088, + "wic": 44089, + "sause": 44090, + "nangis": 44091, + "kaylas": 44092, + "khans": 44093, + "pestle": 44094, + "succesful": 44095, + "sparklers": 44096, + "yooh": 44097, + "kaylaa": 44098, + "estudar": 44099, + "braah": 44100, + "disingenuous": 44101, + "copay": 44102, + "pestering": 44103, + "#inspired": 44104, + "interceptions": 44105, + "gymnasts": 44106, + "adkins": 44107, + "childishness": 44108, + "#death": 44109, + "mullins": 44110, + "#cosy": 44111, + "fused": 44112, + "redford": 44113, + "unkind": 44114, + "exfoliating": 44115, + "amici": 44116, + "m'y": 44117, + "aris": 44118, + "fess": 44119, + "mexicano": 44120, + "qr": 44121, + "tuesdayy": 44122, + "limpiar": 44123, + "boutcha": 44124, + "#india": 44125, + "outskirts": 44126, + "bahja": 44127, + "#makeup": 44128, + "wasgood": 44129, + "papaa": 44130, + "erryone": 44131, + "humpty": 44132, + "ensures": 44133, + "llene": 44134, + "wtw": 44135, + "hogan's": 44136, + "copperfield": 44137, + "journee": 44138, + "rogen": 44139, + "mepa": 44140, + "gordi": 44141, + "caprice": 44142, + "riggs": 44143, + "holo": 44144, + "functionally": 44145, + "mantle": 44146, + "flurries": 44147, + "ooyf": 44148, + "fogged": 44149, + "baket": 44150, + "tcby": 44151, + "tyron": 44152, + "srv": 44153, + "#heated": 44154, + "#thetruth": 44155, + "mexico's": 44156, + "uncc": 44157, + "tourny": 44158, + "polarizer": 44159, + "flowin": 44160, + "forsake": 44161, + "bellagio's": 44162, + "comienzo": 44163, + "exploiting": 44164, + "snowmobile": 44165, + "pansinin": 44166, + "#tpmp": 44167, + "leeyum": 44168, + "stacey's": 44169, + "conducted": 44170, + "jjs": 44171, + "cornered": 44172, + "idee": 44173, + "satchel": 44174, + "capitalist": 44175, + "perish": 44176, + "overlap": 44177, + "nervess": 44178, + "#torture": 44179, + "koby": 44180, + "jiggling": 44181, + "banzai": 44182, + "laksa": 44183, + "mucch": 44184, + "#snow": 44185, + "mwaahh": 44186, + "mna": 44187, + "gis": 44188, + "tentacles": 44189, + "roofs": 44190, + "omdss": 44191, + "perfetto": 44192, + "yessuh": 44193, + "#demilovato": 44194, + "gads": 44195, + "matlab": 44196, + "habbit": 44197, + "predecessors": 44198, + "counselling": 44199, + "#cpfc": 44200, + "#dreaming": 44201, + "legolas": 44202, + "birhday": 44203, + "splashes": 44204, + "dc's": 44205, + "cj's": 44206, + "mesmerising": 44207, + "noemi": 44208, + "rayne": 44209, + "couple's": 44210, + "calluses": 44211, + "homegrown": 44212, + "butlins": 44213, + "payaso": 44214, + "hersey": 44215, + "journaling": 44216, + "blackfish": 44217, + "wiggling": 44218, + "cellphones": 44219, + "razz": 44220, + "nulla": 44221, + "sherm": 44222, + "loveyousomuch": 44223, + "bjorn": 44224, + "krispie": 44225, + "taha": 44226, + "hogue": 44227, + "vapors": 44228, + "teavana": 44229, + "binged": 44230, + "ballz": 44231, + "cuzn": 44232, + "infantry": 44233, + "auschwitz": 44234, + "distressing": 44235, + "jeggings": 44236, + "downtime": 44237, + "canzone": 44238, + "mechanically": 44239, + "carmine's": 44240, + "embarrasses": 44241, + "ilusiones": 44242, + "kamukha": 44243, + "#ayee": 44244, + "wip": 44245, + "whoring": 44246, + "nextel": 44247, + "meed": 44248, + "badasses": 44249, + "sissies": 44250, + "unified": 44251, + "litres": 44252, + "plowing": 44253, + "#trulyblessed": 44254, + "#chelsea": 44255, + "#cantbreathe": 44256, + "flaunting": 44257, + "elyse": 44258, + "squirm": 44259, + "argent": 44260, + "mickeys": 44261, + "dials": 44262, + "miras": 44263, + "bicho": 44264, + "wcm": 44265, + "hedwig": 44266, + "masque": 44267, + "peeked": 44268, + "glby": 44269, + "sheerans": 44270, + "bajar": 44271, + "vakantie": 44272, + "arn't": 44273, + "tisk": 44274, + "hefe": 44275, + "miata": 44276, + "sunni": 44277, + "nutritionist": 44278, + "vinyasa": 44279, + "alps": 44280, + "amame": 44281, + "duffel": 44282, + "moove": 44283, + "favorit": 44284, + "greate": 44285, + "getz": 44286, + "pearland": 44287, + "romanticism": 44288, + "leas": 44289, + "metaphysics": 44290, + "wcw's": 44291, + "amatuer": 44292, + "girlys": 44293, + "nervousness": 44294, + "sainsbury's": 44295, + "pastillas": 44296, + "alfalfa": 44297, + "#calmdown": 44298, + "kindhearted": 44299, + "dearr": 44300, + "maestra": 44301, + "bookstores": 44302, + "ouuh": 44303, + "derogatory": 44304, + "jaxx": 44305, + "bluffs": 44306, + "hurd": 44307, + "autobiographical": 44308, + "barnsley": 44309, + "cordell": 44310, + "dropbox": 44311, + "sheik": 44312, + "sundried": 44313, + "secret's": 44314, + "foils": 44315, + "matzo": 44316, + "ples": 44317, + "chegar": 44318, + "#gone": 44319, + "chard": 44320, + "seamus": 44321, + "nub": 44322, + "wayside": 44323, + "suitland": 44324, + "hiddleston": 44325, + "blindfolded": 44326, + "pecos": 44327, + "costar": 44328, + "kissers": 44329, + "opie": 44330, + "lololl": 44331, + "dedico": 44332, + "generalizations": 44333, + "acount": 44334, + "whacking": 44335, + "nesting": 44336, + "#newyork": 44337, + "gautam": 44338, + "booba": 44339, + "syang": 44340, + "disponha": 44341, + "#knowthat": 44342, + "yonnie": 44343, + "ntm": 44344, + "shandy": 44345, + "bumm": 44346, + "camera's": 44347, + "tweezer": 44348, + "yahtzee": 44349, + "gaucho": 44350, + "niks": 44351, + "merk": 44352, + "labia": 44353, + "cappella": 44354, + "j.k.": 44355, + "flunk": 44356, + "raged": 44357, + "so's": 44358, + "prompts": 44359, + "warden": 44360, + "dmn": 44361, + "amox": 44362, + "#knackered": 44363, + "joke's": 44364, + "nonce": 44365, + "rao's": 44366, + "bowed": 44367, + "suburb": 44368, + "substances": 44369, + "appease": 44370, + "hartman": 44371, + "strop": 44372, + "yaall": 44373, + "#fuckme": 44374, + "santorini": 44375, + "garfunkel": 44376, + "sportsbook": 44377, + "dident": 44378, + "comando": 44379, + "nout": 44380, + "rockstars": 44381, + "whitened": 44382, + "vowels": 44383, + "fettuccini": 44384, + "#props": 44385, + "youur": 44386, + "replenished": 44387, + "nei": 44388, + "bock": 44389, + "craptastic": 44390, + "#coyb": 44391, + "yuus": 44392, + "paha": 44393, + "plith": 44394, + "#martesdeganarseguidores": 44395, + "junho": 44396, + "gilaa": 44397, + "homepage": 44398, + "unrecognizable": 44399, + "sustained": 44400, + "slushes": 44401, + "totem": 44402, + "oakleys": 44403, + "kindergarteners": 44404, + "conformo": 44405, + "akka": 44406, + "matchin": 44407, + "mohamed": 44408, + "moley": 44409, + "brin": 44410, + "chevere": 44411, + "#damnit": 44412, + "tuhan": 44413, + "#agt": 44414, + "khalas": 44415, + "bricking": 44416, + "coleen": 44417, + "alphabetical": 44418, + "oreja": 44419, + "similiar": 44420, + "borns": 44421, + "lallana": 44422, + "#kbye": 44423, + "lecrae": 44424, + "craazzyy": 44425, + "strangling": 44426, + "honeycomb": 44427, + "superstore": 44428, + "j.d.": 44429, + "ees": 44430, + "crabtree": 44431, + "roz": 44432, + "thew": 44433, + "ukelele": 44434, + "soco": 44435, + "voltar": 44436, + "amiinn": 44437, + "#bestsongever": 44438, + "nutters": 44439, + "cantante": 44440, + "papansin": 44441, + "truthh": 44442, + "salen": 44443, + "troupe": 44444, + "zeds": 44445, + "aleks": 44446, + "fuee": 44447, + "floridaa": 44448, + "lile": 44449, + "nguyen": 44450, + "drainage": 44451, + "roady": 44452, + "syndicate": 44453, + "#ucl": 44454, + "uau": 44455, + "investigated": 44456, + "lbc": 44457, + "miniscule": 44458, + "hendricks": 44459, + "krogers": 44460, + "jveux": 44461, + "thankie": 44462, + "gooners": 44463, + "jona": 44464, + "polaroids": 44465, + "glancing": 44466, + "deven": 44467, + "stevo": 44468, + "besar": 44469, + "#imwithher": 44470, + "encerio": 44471, + "pobrecita": 44472, + "summat": 44473, + "kca": 44474, + "opentable": 44475, + "joue": 44476, + "preset": 44477, + "awts": 44478, + "mutuo": 44479, + "dramaa": 44480, + "dickin": 44481, + "uglyass": 44482, + "#49ers": 44483, + "airbender": 44484, + "buttocks": 44485, + "ash's": 44486, + "arizona's": 44487, + "cabins": 44488, + "jrs": 44489, + "skewl": 44490, + "humerous": 44491, + "#peaceful": 44492, + "actualizo": 44493, + "gdnght": 44494, + "edclv": 44495, + "getin": 44496, + "maya's": 44497, + "refugee": 44498, + "persevere": 44499, + "cleansed": 44500, + "caruso": 44501, + "fuckboi": 44502, + "cockblock": 44503, + "tbmm": 44504, + "neutered": 44505, + "pou": 44506, + "gung": 44507, + "now's": 44508, + "lilian": 44509, + "meninos": 44510, + "jajja": 44511, + "lz": 44512, + "othello": 44513, + "pelear": 44514, + "tetas": 44515, + "personnes": 44516, + "sarnie": 44517, + "duermee": 44518, + "luli": 44519, + "aawn": 44520, + "fiving": 44521, + "restrictive": 44522, + "latley": 44523, + "jogs": 44524, + "lula": 44525, + "airtight": 44526, + "milka": 44527, + "banca": 44528, + "bacckk": 44529, + "kleypas": 44530, + "downy": 44531, + "eleventh": 44532, + "grumble": 44533, + "dfe": 44534, + "kst": 44535, + "eamon": 44536, + "#cunt": 44537, + "#yee": 44538, + "frodo": 44539, + "autos": 44540, + "nance": 44541, + "heelp": 44542, + "hayee": 44543, + "#somuchpain": 44544, + "saddles": 44545, + "sobered": 44546, + "biopic": 44547, + "coax": 44548, + "crowding": 44549, + "dickeat": 44550, + "andre's": 44551, + "tyson's": 44552, + "kdramas": 44553, + "krave": 44554, + "jamin": 44555, + "scantron": 44556, + "kirkland": 44557, + "riddim": 44558, + "llamada": 44559, + "#blackmafia": 44560, + "communicator": 44561, + "stubbornness": 44562, + "vielen": 44563, + "sheehan": 44564, + "#mahomies": 44565, + "#notetoself": 44566, + "ashleys": 44567, + "chariot": 44568, + "tweaker": 44569, + "livingsocial": 44570, + "becasue": 44571, + "goodnighty": 44572, + "murray's": 44573, + "dnf": 44574, + "binks": 44575, + "falte": 44576, + "shoess": 44577, + "julian's": 44578, + "bangles": 44579, + "tailed": 44580, + "overcharging": 44581, + "propre": 44582, + "lineups": 44583, + "sentirme": 44584, + "swaggie": 44585, + "tare": 44586, + "gorgeously": 44587, + "pani": 44588, + "piaa": 44589, + "welldone": 44590, + "bowflex": 44591, + "oly": 44592, + "mccreery": 44593, + "#plottwist": 44594, + "trigo": 44595, + "topp": 44596, + "predictive": 44597, + "snatches": 44598, + "hcc": 44599, + "#grammys": 44600, + "altercation": 44601, + "gameshark": 44602, + "xxoo": 44603, + "danzig": 44604, + "film's": 44605, + "inverness": 44606, + "#whatdoyoumean": 44607, + "dassit": 44608, + "pirlo": 44609, + "#sendhelp": 44610, + "tremble": 44611, + "idina": 44612, + "joh": 44613, + "forme": 44614, + "attractiveness": 44615, + "tfc": 44616, + "engordar": 44617, + "jaelyn": 44618, + "yna": 44619, + "felton": 44620, + "appy": 44621, + "poppet": 44622, + "lal": 44623, + "creamm": 44624, + "loma": 44625, + "l'ambiance": 44626, + "ongod": 44627, + "chancla": 44628, + "#ohwait": 44629, + "madz": 44630, + "drugz": 44631, + "lyons": 44632, + "toros": 44633, + "prideful": 44634, + "maribel": 44635, + "swahili": 44636, + "artiste": 44637, + "cenoura": 44638, + "jusq": 44639, + "intriga": 44640, + "rbi": 44641, + "corrupting": 44642, + "fransisco": 44643, + "entrada": 44644, + "punter": 44645, + "vitality": 44646, + "spg": 44647, + "ute": 44648, + "tanan": 44649, + "mbak": 44650, + "genuis": 44651, + "yves": 44652, + "munchin": 44653, + "antlers": 44654, + "yuum": 44655, + "n'shit": 44656, + "sulli": 44657, + "blacklight": 44658, + "polymer": 44659, + "waltons": 44660, + "hugo's": 44661, + "cromwell": 44662, + "laggin": 44663, + "pudd": 44664, + "goos": 44665, + "riviting": 44666, + "plight": 44667, + "acaban": 44668, + "#wine": 44669, + "mellie": 44670, + "fanciest": 44671, + "plato's": 44672, + "looming": 44673, + "memoria": 44674, + "okkaayy": 44675, + "observatory": 44676, + "compliation": 44677, + "definently": 44678, + "zhane": 44679, + "goyemon": 44680, + "revert": 44681, + "gng": 44682, + "nette": 44683, + "guillermo": 44684, + "matenme": 44685, + "#dm": 44686, + "punyeta": 44687, + "bs'n": 44688, + "woodworker": 44689, + "ultralight": 44690, + "mcgill": 44691, + "ij": 44692, + "wobbling": 44693, + "tacked": 44694, + "morite": 44695, + "nour": 44696, + "oversimplified": 44697, + "zeek": 44698, + "withdrawls": 44699, + "robertos": 44700, + "undeserved": 44701, + "#burn": 44702, + "seguiu": 44703, + "planss": 44704, + "tarik": 44705, + "frikkin": 44706, + "analyse": 44707, + "quicksilver": 44708, + "cabot": 44709, + "individuality": 44710, + "trafficking": 44711, + "equestrian": 44712, + "daikon": 44713, + "pleure": 44714, + "believin": 44715, + ".i.g": 44716, + "wdw": 44717, + "omh": 44718, + "administrative": 44719, + "westing": 44720, + "#teamus": 44721, + "#paris": 44722, + "axle": 44723, + "sedan": 44724, + "lunatics": 44725, + "indescribably": 44726, + "gabaldon": 44727, + "bleezy": 44728, + "mfin": 44729, + "torrential": 44730, + "hing": 44731, + "poseidon": 44732, + "zebras": 44733, + "dololo": 44734, + "#champ": 44735, + "phrasebook": 44736, + "lamo": 44737, + "finalists": 44738, + "annalise": 44739, + "peds": 44740, + "torino": 44741, + "tanger": 44742, + "applicants": 44743, + "dooley": 44744, + "partner's": 44745, + "cosi": 44746, + "#broncos": 44747, + "migrate": 44748, + "adelante": 44749, + "cooley": 44750, + "diario": 44751, + "hatfield": 44752, + "pinsan": 44753, + "exceeding": 44754, + "dre's": 44755, + "anointing": 44756, + "keine": 44757, + "corina": 44758, + "patents": 44759, + "#votemainefpp": 44760, + "hatrick": 44761, + "pleins": 44762, + "coro": 44763, + "inaccuracy": 44764, + "bratwurst": 44765, + "matchday": 44766, + "amizades": 44767, + "minseok": 44768, + "cornhole": 44769, + "greenies": 44770, + "brained": 44771, + "congeniality": 44772, + "raffi": 44773, + "eharmony": 44774, + "balkan": 44775, + "#catchingfire": 44776, + "thankyoou": 44777, + "fastidio": 44778, + "lippies": 44779, + "summoned": 44780, + "periodical": 44781, + "amino": 44782, + "colbie": 44783, + "liz's": 44784, + "tmtc": 44785, + "swang": 44786, + "aiyoo": 44787, + "mireya": 44788, + "#whatisthis": 44789, + "dingo": 44790, + "strains": 44791, + "belajar": 44792, + "corre": 44793, + "#hoe": 44794, + "misogynist": 44795, + "melodious": 44796, + "prospering": 44797, + "saltiest": 44798, + "ass's": 44799, + "bathrobe": 44800, + "#ohgod": 44801, + "begg": 44802, + "pssy": 44803, + "subuh": 44804, + "rectified": 44805, + "genau": 44806, + "oscar's": 44807, + "jc's": 44808, + "tabletop": 44809, + "thirstyy": 44810, + "sawdy": 44811, + "#qtna": 44812, + "uye": 44813, + "cur": 44814, + "corel": 44815, + "skee": 44816, + "giirrl": 44817, + "indirecta": 44818, + "scrollin": 44819, + "cannons": 44820, + "zooms": 44821, + "columbine": 44822, + "fiddling": 44823, + "brruuhh": 44824, + "wurk": 44825, + "ravenous": 44826, + "tubular": 44827, + "bey's": 44828, + "soonxx": 44829, + "hahahahahaah": 44830, + "#saddahaq": 44831, + "rehearse": 44832, + "bree's": 44833, + "moonwalk": 44834, + "acurate": 44835, + "cort": 44836, + "good'night": 44837, + "#fan": 44838, + "layton": 44839, + "steven's": 44840, + "dumont": 44841, + "splat": 44842, + "trots": 44843, + "trx": 44844, + "kamille": 44845, + "atlast": 44846, + "pauwi": 44847, + "uhu": 44848, + "crackpot": 44849, + "characteristic": 44850, + "denon": 44851, + "huffing": 44852, + "mss": 44853, + "overstuffed": 44854, + "esqueceu": 44855, + "#kidatheart": 44856, + "deficiency": 44857, + "chirps": 44858, + "rawk": 44859, + "imovie": 44860, + "aromas": 44861, + "reproductive": 44862, + "want's": 44863, + "confide": 44864, + "kii": 44865, + "morree": 44866, + "entienden": 44867, + "remet": 44868, + "gabba": 44869, + "cadburys": 44870, + "barnyard": 44871, + "pappadeaux": 44872, + "chuchu": 44873, + "vod": 44874, + "pimms": 44875, + "#hearties": 44876, + "pagkain": 44877, + "mcnally": 44878, + "canard": 44879, + "forgo": 44880, + "#69": 44881, + "corrs": 44882, + "sydnee": 44883, + "tosser": 44884, + "rosewood": 44885, + "examiner": 44886, + "gwop": 44887, + "repairman": 44888, + "checkered": 44889, + "prends": 44890, + "harley's": 44891, + "kaelyn": 44892, + "carolinas": 44893, + "carmine": 44894, + "visors": 44895, + "zell": 44896, + "gliding": 44897, + "#proudsister": 44898, + "clapper": 44899, + "laggy": 44900, + "terbaik": 44901, + "recorders": 44902, + "losee": 44903, + "algunas": 44904, + "brayan": 44905, + "#angel": 44906, + "wagamamas": 44907, + "grumbling": 44908, + "admiral": 44909, + "thankfull": 44910, + "#idk": 44911, + "#straightup": 44912, + "csgo": 44913, + "bez": 44914, + "chicano": 44915, + "crikey": 44916, + "wheelbarrow": 44917, + "ngayong": 44918, + "babexx": 44919, + "bridgewater": 44920, + "katycats": 44921, + "tommar": 44922, + "bodysuit": 44923, + "toads": 44924, + "pussy's": 44925, + "practicality": 44926, + "gaping": 44927, + "#youtherealmvp": 44928, + "#thefeels": 44929, + "karley": 44930, + "lyla": 44931, + "youths": 44932, + "standardized": 44933, + "weil": 44934, + "estaa": 44935, + "dets": 44936, + "doess": 44937, + "#satisfied": 44938, + "lingered": 44939, + "ooff": 44940, + "drifts": 44941, + "solidified": 44942, + "arnold's": 44943, + "horowitz": 44944, + "morto": 44945, + "hahahahahhahahaha": 44946, + "#turnupp": 44947, + "feelss": 44948, + "taw": 44949, + "belleville": 44950, + "#merebearsbacktoschool": 44951, + "deaadd": 44952, + "kerouac": 44953, + "adorama": 44954, + "gamepad": 44955, + "legend's": 44956, + "sitters": 44957, + "fagit": 44958, + "cutecumber": 44959, + "moomoo": 44960, + "calvary": 44961, + "kiran": 44962, + "amid": 44963, + "renter": 44964, + "riigghhtt": 44965, + "leach": 44966, + "tweet's": 44967, + "layo": 44968, + "naia": 44969, + "#followspree": 44970, + "kendo": 44971, + "bengal": 44972, + "chazz": 44973, + "wett": 44974, + "#gbbo": 44975, + "#nightnight": 44976, + "madree": 44977, + "heckk": 44978, + "aor": 44979, + "sla": 44980, + "muthafucker": 44981, + "banderas": 44982, + "presidente": 44983, + "garnishes": 44984, + "sunnyside": 44985, + "laurels": 44986, + "nugga": 44987, + "#easy": 44988, + "econs": 44989, + "knuck": 44990, + "copado": 44991, + "mav": 44992, + "semifinal": 44993, + "#chicagopd": 44994, + "tipico": 44995, + "stepsister": 44996, + "arthritic": 44997, + "skinniest": 44998, + "#championsleague": 44999, + "#hockey": 45000, + "babymom": 45001, + "datee": 45002, + "#vip": 45003, + "grafting": 45004, + "alteration": 45005, + "stoneware": 45006, + "brett's": 45007, + "zippy": 45008, + "toxicity": 45009, + "timberlake's": 45010, + "weasley": 45011, + "pagar": 45012, + "chan's": 45013, + "xk": 45014, + "gamey": 45015, + "shortys": 45016, + "suppliers": 45017, + "rowe": 45018, + "ballys": 45019, + "nakakasawa": 45020, + "cory's": 45021, + "seperated": 45022, + "tracing": 45023, + "defrosted": 45024, + "greer": 45025, + "flavourful": 45026, + "franchises": 45027, + "yasmeen": 45028, + "liarr": 45029, + "mexicoo": 45030, + "masher": 45031, + "jang": 45032, + "masonic": 45033, + "sunn": 45034, + "sandi": 45035, + "nieve": 45036, + "macdo": 45037, + "klk": 45038, + "#titanic": 45039, + "guapas": 45040, + "vistas": 45041, + "netbook": 45042, + "fresheners": 45043, + "orderly": 45044, + "raspado": 45045, + "bourdain": 45046, + "speller": 45047, + "morehouse": 45048, + "exsist": 45049, + "nlp": 45050, + "lites": 45051, + "waaw": 45052, + "ejercicio": 45053, + "savy": 45054, + "m'en": 45055, + "saviors": 45056, + "dollaz": 45057, + "roshe's": 45058, + "alm": 45059, + "#sohungry": 45060, + "iguanas": 45061, + "bagger": 45062, + "hemi": 45063, + "f'in": 45064, + "rico's": 45065, + "olp": 45066, + "versitile": 45067, + "sydni": 45068, + "#4days": 45069, + "vouii": 45070, + "nenaa": 45071, + "lyme": 45072, + "sandalwood": 45073, + "forts": 45074, + "mnf": 45075, + "erich": 45076, + "nez": 45077, + "samsonite": 45078, + "eels": 45079, + "flunked": 45080, + "leashes": 45081, + "rambles": 45082, + "disintegrates": 45083, + "flic": 45084, + "gossips": 45085, + "commercialism": 45086, + "joshh": 45087, + "cheh": 45088, + "simran": 45089, + "mammas": 45090, + "toolkit": 45091, + "balderdash": 45092, + "pais": 45093, + "encabezado": 45094, + "#praise": 45095, + "hahahaahah": 45096, + "sooyoung": 45097, + "groot": 45098, + "smushed": 45099, + "grahams": 45100, + "vien": 45101, + "kalani": 45102, + "ritmo": 45103, + "karloff": 45104, + "#bitchesbelike": 45105, + "gasped": 45106, + "indictment": 45107, + "knotted": 45108, + "jajajajjajaja": 45109, + "sdfu": 45110, + "keila": 45111, + "reguardless": 45112, + "expressway": 45113, + "excellente": 45114, + "composing": 45115, + "ranma": 45116, + "uhf": 45117, + "torte": 45118, + "#bigbangtheory": 45119, + "#ass": 45120, + "contesten": 45121, + "recs": 45122, + "uris": 45123, + "ummi": 45124, + "#followhim": 45125, + "#jcole": 45126, + "hahahahahh": 45127, + "eared": 45128, + "manta": 45129, + "tress": 45130, + "camero": 45131, + "armoire": 45132, + "avs": 45133, + "uhn": 45134, + "rsrs": 45135, + "cooped": 45136, + "tendons": 45137, + "souper": 45138, + "audubon": 45139, + "#nothankyou": 45140, + "inclusion": 45141, + "ike's": 45142, + "neen": 45143, + "calibrate": 45144, + "dala": 45145, + "burma": 45146, + "lovejoy": 45147, + "chickpea": 45148, + "shitz": 45149, + "frogger": 45150, + "scape": 45151, + "xrays": 45152, + "tills": 45153, + "joor": 45154, + "fico": 45155, + "globalization": 45156, + "benihana's": 45157, + "geht": 45158, + "dimed": 45159, + "scorned": 45160, + "know's": 45161, + "#brr": 45162, + "cra": 45163, + "eyeshadows": 45164, + "wahey": 45165, + "perils": 45166, + "prs": 45167, + "mould": 45168, + "jen's": 45169, + "throughh": 45170, + "tonighht": 45171, + "tatoos": 45172, + "headshots": 45173, + "justus": 45174, + "taunt": 45175, + "grimmie": 45176, + "prochaine": 45177, + "plumb": 45178, + "hyperactive": 45179, + "hurling": 45180, + "wate": 45181, + "adentro": 45182, + "daps": 45183, + "tercera": 45184, + "asusta": 45185, + "jimin's": 45186, + "adeline": 45187, + "crumpled": 45188, + "butte": 45189, + "i'n": 45190, + "delirium": 45191, + "samantha's": 45192, + "aves": 45193, + "despertarme": 45194, + "dilfs": 45195, + "wahala": 45196, + "pula": 45197, + "estee": 45198, + "polarized": 45199, + "cruze": 45200, + "duplex": 45201, + "eerily": 45202, + "supertramp": 45203, + "westcoast": 45204, + "michoacan": 45205, + "#rippaulwalker": 45206, + "#lightweight": 45207, + "forged": 45208, + "acrobat": 45209, + "cdc": 45210, + "ifwu": 45211, + "advertisment": 45212, + "dregs": 45213, + "hernia": 45214, + "aroused": 45215, + "flo's": 45216, + "razer": 45217, + "ctm": 45218, + "sabah": 45219, + "perdimos": 45220, + "csun": 45221, + "fuckem": 45222, + "restrained": 45223, + "gyn": 45224, + "callback": 45225, + "budgeting": 45226, + "tako": 45227, + "bezzie": 45228, + "misinterpreted": 45229, + "ciders": 45230, + "metamorphosis": 45231, + "freezin": 45232, + "giorgio": 45233, + "synonymous": 45234, + "panadol": 45235, + "suppost": 45236, + "uofa": 45237, + "env": 45238, + "laymon": 45239, + "datang": 45240, + "utas": 45241, + "kayley": 45242, + "richy": 45243, + "boke": 45244, + "newports": 45245, + "playsuit": 45246, + "dividing": 45247, + "bahasa": 45248, + "unecessary": 45249, + "vemk": 45250, + "#represent": 45251, + "oswego": 45252, + "bogota": 45253, + "sadist": 45254, + "pivotal": 45255, + "costas": 45256, + "#amwriting": 45257, + "kahkahkah": 45258, + "precisando": 45259, + "montre": 45260, + "tattered": 45261, + "birks": 45262, + "phne": 45263, + "resignation": 45264, + "dashawn": 45265, + "folsom": 45266, + "dumby": 45267, + "emile": 45268, + "dn't": 45269, + "threesomes": 45270, + "expander": 45271, + "peacoat": 45272, + "criticisms": 45273, + "dosed": 45274, + "duly": 45275, + "aburrimientoo": 45276, + "yuno": 45277, + "tolls": 45278, + "cannelloni": 45279, + "syringe": 45280, + "silverstein": 45281, + "liters": 45282, + "mystified": 45283, + "otherside": 45284, + "stint": 45285, + "streamers": 45286, + "#candycrush": 45287, + "keeley": 45288, + "gaan": 45289, + "theyy": 45290, + "vessels": 45291, + "camelbak": 45292, + "fictionalized": 45293, + "tuune": 45294, + "crudo": 45295, + "duller": 45296, + "devotees": 45297, + "burt's": 45298, + "franta": 45299, + "#america": 45300, + "brule": 45301, + "benjamins": 45302, + "captain's": 45303, + "tomatos": 45304, + "pipoca": 45305, + "#sothankful": 45306, + "roping": 45307, + "aaf": 45308, + "nudist": 45309, + "undergrads": 45310, + "abbreviations": 45311, + "nutting": 45312, + "wreak": 45313, + "oriente": 45314, + "cajon": 45315, + "vante": 45316, + "paye": 45317, + "#notready": 45318, + "nakia": 45319, + "psychiatric": 45320, + "adesso": 45321, + "unavoidable": 45322, + "cortney": 45323, + "gamau": 45324, + "brincadeira": 45325, + "#hatethis": 45326, + "sate": 45327, + "elli": 45328, + "hachi": 45329, + "divx": 45330, + "burra": 45331, + "janette": 45332, + "smithsonian": 45333, + "paintbrush": 45334, + "showgirls": 45335, + "nightmarish": 45336, + "crimbo": 45337, + "kingsville": 45338, + "lunchh": 45339, + "wildflowers": 45340, + "veda": 45341, + "ush": 45342, + "gimnasia": 45343, + "chinchillas": 45344, + "snags": 45345, + "blount": 45346, + "gaia": 45347, + "coxinha": 45348, + "refreshment": 45349, + "#lovemylife": 45350, + "#meh": 45351, + "serous": 45352, + "mandie": 45353, + "thieving": 45354, + "bast": 45355, + "essas": 45356, + "acostada": 45357, + "cabrones": 45358, + "nampak": 45359, + "dern": 45360, + "unanimous": 45361, + "serius": 45362, + "kyo": 45363, + "hygrometer": 45364, + "maadd": 45365, + "#ooc": 45366, + "odi": 45367, + "braai": 45368, + "hecks": 45369, + "donnell": 45370, + "mitty": 45371, + "qualifier": 45372, + "fishers": 45373, + "benihanas": 45374, + "barren": 45375, + "stomps": 45376, + "oktober": 45377, + "liddat": 45378, + "favss": 45379, + "aprender": 45380, + "#broken": 45381, + "naty": 45382, + "tyrant": 45383, + "sire": 45384, + "honduran": 45385, + "blaise": 45386, + "libres": 45387, + "overrun": 45388, + "freakk": 45389, + "wigwam": 45390, + "goopy": 45391, + "ensalada": 45392, + "stapp": 45393, + "saids": 45394, + "gonza": 45395, + "#freak": 45396, + "decime": 45397, + "redefined": 45398, + "northridge": 45399, + "gnat": 45400, + "jrotc": 45401, + "#philly": 45402, + "dreka": 45403, + "mako": 45404, + "margarine": 45405, + "raga": 45406, + "discus": 45407, + "shesh": 45408, + "courant": 45409, + "preserving": 45410, + "#stay": 45411, + "tanong": 45412, + "#softtweet": 45413, + "bida": 45414, + "emmie": 45415, + "crawf": 45416, + "gorj": 45417, + "inboxing": 45418, + "mugg": 45419, + "mormonism": 45420, + "weibo": 45421, + "lavv": 45422, + "couponing": 45423, + "pagode": 45424, + "mert": 45425, + "platos": 45426, + "nasties": 45427, + "abel's": 45428, + "purging": 45429, + "hallow": 45430, + "ginseng": 45431, + "somber": 45432, + "melisa": 45433, + "seamstress": 45434, + "strongbow": 45435, + "ensayo": 45436, + "fuels": 45437, + "qu'une": 45438, + "#janethevirgin": 45439, + "adaline": 45440, + "dejk": 45441, + "unloaded": 45442, + "palladium": 45443, + "loonng": 45444, + "racin": 45445, + "#paramore": 45446, + "#masterchef": 45447, + "razon": 45448, + "oublier": 45449, + "grimmy": 45450, + "saindo": 45451, + "leena": 45452, + "counterpoint": 45453, + "bartlett": 45454, + "alan's": 45455, + "inspectors": 45456, + "verre": 45457, + "#feelingloved": 45458, + "smu": 45459, + "turnuhh": 45460, + "#dreamsdocometrue": 45461, + "coquito": 45462, + "opry": 45463, + "compliance": 45464, + "saree": 45465, + "horno": 45466, + "reliance": 45467, + "youv": 45468, + "pwedeng": 45469, + "infatti": 45470, + "#canthelpit": 45471, + "malum": 45472, + "depicts": 45473, + "engrossed": 45474, + "rnr": 45475, + "#thanksgiving": 45476, + "avisas": 45477, + "bek": 45478, + "#dallas": 45479, + "zijn": 45480, + "jarod": 45481, + "uncomfy": 45482, + "sacrilege": 45483, + "crusin": 45484, + "improvisation": 45485, + "neng": 45486, + "comon": 45487, + "#thinking": 45488, + "kante": 45489, + "#infinity": 45490, + "boiz": 45491, + "kaha": 45492, + "caitlin's": 45493, + "lightens": 45494, + "cartons": 45495, + "depressingly": 45496, + "kilay": 45497, + "malandi": 45498, + "cuddie": 45499, + "ziek": 45500, + "ochoa": 45501, + "biddy": 45502, + "heston": 45503, + "cheyanne": 45504, + "biasa": 45505, + "catfishes": 45506, + "hoorah": 45507, + "latoya": 45508, + "fuqq": 45509, + "mirah": 45510, + "naee": 45511, + "#that": 45512, + "moodbooster": 45513, + "erh": 45514, + "diggs": 45515, + "gondola": 45516, + "deo": 45517, + "netflixs": 45518, + "#pregnancyproblems": 45519, + "mo's": 45520, + "weakly": 45521, + "piedmont": 45522, + "kaboom": 45523, + "exempted": 45524, + "nood": 45525, + "#soulmates": 45526, + "zari": 45527, + "unhappiness": 45528, + "lightfoot": 45529, + "uninterrupted": 45530, + "obx": 45531, + "soured": 45532, + "noa": 45533, + "aoa": 45534, + "monitored": 45535, + "fabs": 45536, + "orchestration": 45537, + "ninang": 45538, + "jauh": 45539, + "argg": 45540, + "quell": 45541, + "trippinn": 45542, + "esquece": 45543, + "#classof2013": 45544, + "dalmatian": 45545, + "chorro": 45546, + "retained": 45547, + "jacqui": 45548, + "jacey": 45549, + "funni": 45550, + "alay": 45551, + "hundo": 45552, + "beenie": 45553, + "grizz": 45554, + "wavelength": 45555, + "oficial": 45556, + "coverup": 45557, + "testicle": 45558, + "deservedly": 45559, + "mauri": 45560, + "angsty": 45561, + "paganism": 45562, + "gcu": 45563, + "davvero": 45564, + "broader": 45565, + "#freakingout": 45566, + "#whatswrongwithme": 45567, + "goodmorniing": 45568, + "mccullough": 45569, + "snp": 45570, + "libros": 45571, + "celestine": 45572, + "biden": 45573, + "#justno": 45574, + "arianas": 45575, + "tryanna": 45576, + "renovate": 45577, + "beeper": 45578, + "aagghh": 45579, + "infrequent": 45580, + "kinna": 45581, + "scoffed": 45582, + "auxiliary": 45583, + "genny": 45584, + "bffls": 45585, + "southfield": 45586, + "tke": 45587, + "kahlua": 45588, + "forests": 45589, + "seth's": 45590, + "smoothing": 45591, + "feasible": 45592, + "rotted": 45593, + "hundredth": 45594, + "invito": 45595, + "#england": 45596, + "sehun's": 45597, + "#seahawks": 45598, + "racoon": 45599, + "slating": 45600, + "conformation": 45601, + "#bffl": 45602, + "fuckoff": 45603, + "fawkk": 45604, + "uj": 45605, + "tantos": 45606, + "abcs": 45607, + "fido": 45608, + "sud": 45609, + "tailoring": 45610, + "ghandi": 45611, + "#uk": 45612, + "#yas": 45613, + "feeing": 45614, + "corroded": 45615, + "cornetto": 45616, + "hunan": 45617, + "fnb": 45618, + "mck": 45619, + "creas": 45620, + "#allday": 45621, + "groso": 45622, + "oublie": 45623, + "knn": 45624, + "galileo": 45625, + "cartoonish": 45626, + "giovanna": 45627, + "draped": 45628, + "royalties": 45629, + "indecent": 45630, + "espere": 45631, + "zaire": 45632, + "aram": 45633, + "lenny's": 45634, + "gunnar": 45635, + "baya": 45636, + "morsels": 45637, + "dales": 45638, + "silverton": 45639, + "#bestmovie": 45640, + "gerbil": 45641, + "holey": 45642, + "esplanade": 45643, + "skeeter": 45644, + "bino": 45645, + "relient": 45646, + "uhoh": 45647, + "sakana": 45648, + "salido": 45649, + "satnite": 45650, + "harthart": 45651, + "#loveeternal": 45652, + "oldhead": 45653, + "auu": 45654, + "let'em": 45655, + "idr": 45656, + "lynette": 45657, + "koh": 45658, + "mie": 45659, + "mels": 45660, + "fallacies": 45661, + "sasuke": 45662, + "moolah": 45663, + "testimonial": 45664, + "thoose": 45665, + "felicidadess": 45666, + "#waitwhat": 45667, + "ahaam": 45668, + "enfield": 45669, + "orden": 45670, + "hitt": 45671, + "intenso": 45672, + "shwarma": 45673, + "tigre": 45674, + "learnin": 45675, + "pantie": 45676, + "usher's": 45677, + "piace": 45678, + "radiology": 45679, + "hus": 45680, + "plotline": 45681, + "eavesdropping": 45682, + "dihh": 45683, + "ezria": 45684, + "niy": 45685, + "bonitaa": 45686, + "donn": 45687, + "twink": 45688, + "wellcome": 45689, + "nordstroms": 45690, + "bigass": 45691, + "ewing": 45692, + "#jerk": 45693, + "kaylan": 45694, + "beyhive": 45695, + "videogame": 45696, + "accompaniments": 45697, + "gfriend": 45698, + "aut": 45699, + "tumbled": 45700, + "francais": 45701, + "rueben": 45702, + "eyeglass": 45703, + "ify": 45704, + "bagpipes": 45705, + "limitation": 45706, + "#luckyme": 45707, + "stabilizer": 45708, + "kites": 45709, + "arsenic": 45710, + "wierdo": 45711, + "planking": 45712, + "whatevers": 45713, + "unstuck": 45714, + "ascension": 45715, + "dolorr": 45716, + "foals": 45717, + "warrington": 45718, + "caracas": 45719, + "gelo": 45720, + "jwoww": 45721, + "wands": 45722, + "usmc": 45723, + "desmadre": 45724, + "benta": 45725, + "hahahhahahahaha": 45726, + "nobdy": 45727, + "unmasked": 45728, + "wynn's": 45729, + "kaitlynn": 45730, + "toxins": 45731, + "explorers": 45732, + "blemish": 45733, + "zoie": 45734, + "iguales": 45735, + "defly": 45736, + "loka": 45737, + "starbuck": 45738, + "chemically": 45739, + "gluck": 45740, + "bayley": 45741, + "zelo": 45742, + "sushine": 45743, + "planeta": 45744, + "barricade": 45745, + "neuroscience": 45746, + "franco's": 45747, + "socialise": 45748, + "dooda": 45749, + "cagaste": 45750, + "basset": 45751, + "scholastic": 45752, + "whiten": 45753, + "dizzle": 45754, + "margie": 45755, + "jimenez": 45756, + "joaning": 45757, + "#dearfuturehusband": 45758, + "chanyeol's": 45759, + "#lakersnation": 45760, + "lissto": 45761, + "capito": 45762, + "machi": 45763, + "bilbo": 45764, + "adek": 45765, + "solita": 45766, + "platanos": 45767, + "bizness": 45768, + "hokum": 45769, + "dawkins": 45770, + "#like": 45771, + "haahahaha": 45772, + "#happytuesday": 45773, + "aysha": 45774, + "selene": 45775, + "gilligan's": 45776, + "zamm": 45777, + "limerick": 45778, + "dvorak": 45779, + "chianti": 45780, + "soakin": 45781, + "thankyousomuch": 45782, + "micros": 45783, + "bmi": 45784, + "budda": 45785, + "roderick": 45786, + "ohw": 45787, + "liszt": 45788, + "#cubs": 45789, + "nosso": 45790, + "corndog": 45791, + "investigations": 45792, + "volcanoes": 45793, + "nagising": 45794, + "additive": 45795, + "caroline's": 45796, + "o;": 45797, + "flapjack": 45798, + "crockett": 45799, + "chinois": 45800, + "hawai'i": 45801, + "ailee": 45802, + "seokjin": 45803, + "quinces": 45804, + "#keeppounding": 45805, + "#lunesdeganarseguidores": 45806, + "rosemary's": 45807, + "xh": 45808, + "agen": 45809, + "suntan": 45810, + "#yeah": 45811, + "hassled": 45812, + "#n": 45813, + "boundd": 45814, + "vell": 45815, + "hahahaahaha": 45816, + "australia's": 45817, + "newlyweds": 45818, + "transformational": 45819, + "#icantdeal": 45820, + "chouchou": 45821, + "idealistic": 45822, + "fotoo": 45823, + "#roadrage": 45824, + "spanky": 45825, + "laryngitis": 45826, + "palmers": 45827, + "vegeta": 45828, + "ucsb": 45829, + "wrenches": 45830, + "uspa": 45831, + "davi": 45832, + "mhe": 45833, + "gyu": 45834, + "burros": 45835, + "hina": 45836, + "simplify": 45837, + "monthh": 45838, + "#tmlrt": 45839, + "nailery": 45840, + "dred": 45841, + "naiiyak": 45842, + "indigenous": 45843, + "oversleeping": 45844, + "frenchy": 45845, + "households": 45846, + "#feels": 45847, + "sozz": 45848, + "aprem": 45849, + "piccata": 45850, + "salina": 45851, + "#regrets": 45852, + "beterschap": 45853, + "quickk": 45854, + "stinkk": 45855, + "naught": 45856, + "hilda": 45857, + "odom": 45858, + "proj": 45859, + "russell's": 45860, + "rudimentary": 45861, + "corrine": 45862, + "cbaa": 45863, + "miine": 45864, + "nigas": 45865, + "exasperating": 45866, + "mariposa": 45867, + "banna": 45868, + "execs": 45869, + "hws": 45870, + "reffing": 45871, + "sexin": 45872, + "justiin": 45873, + "#livingthedream": 45874, + "eun": 45875, + "genioo": 45876, + "recruiters": 45877, + "croit": 45878, + "sombras": 45879, + "star's": 45880, + "goodwin": 45881, + "terriers": 45882, + "roxbury": 45883, + "gripped": 45884, + "porfaa": 45885, + "monmouth": 45886, + "damas": 45887, + "median": 45888, + "blm": 45889, + "masculinity": 45890, + "pescado": 45891, + "chaco": 45892, + "gobbled": 45893, + "livy": 45894, + "saps": 45895, + "exterminator": 45896, + "kipp": 45897, + "jetski": 45898, + "basher": 45899, + "enrichment": 45900, + "evolves": 45901, + "thiiss": 45902, + "numbaa": 45903, + "maytag": 45904, + "asta": 45905, + "creaky": 45906, + "dessy": 45907, + "dearborn": 45908, + "#bromance": 45909, + "feell": 45910, + "issy": 45911, + "lynyrd": 45912, + "flushes": 45913, + "cancellations": 45914, + "enta": 45915, + "#slay": 45916, + "delis": 45917, + "empathetic": 45918, + "cbus": 45919, + "tejano": 45920, + "putter": 45921, + "personaje": 45922, + "messi's": 45923, + "pvp": 45924, + "skillful": 45925, + "stamping": 45926, + "coffeehouse": 45927, + "clove": 45928, + "anemia": 45929, + "multivitamin": 45930, + "#tiredaf": 45931, + "colombiana": 45932, + "alguna": 45933, + "jalepenos": 45934, + "kbs": 45935, + "kathy's": 45936, + "lehigh": 45937, + "knacks": 45938, + "girlfriendd": 45939, + "wheyy": 45940, + "hagd": 45941, + "bazooka": 45942, + "guatemalan": 45943, + "coasting": 45944, + "wagging": 45945, + "sightseeing": 45946, + "vhf": 45947, + "psychiatry": 45948, + "ashli": 45949, + "anyy": 45950, + "#quality": 45951, + "dax": 45952, + "thata": 45953, + "#selfies": 45954, + "vanderbilt": 45955, + "#rhoc": 45956, + "okis": 45957, + "nayeli": 45958, + "#hangover": 45959, + "#squadd": 45960, + "#senior": 45961, + "hubiera": 45962, + "emcee": 45963, + "april's": 45964, + "fluoride": 45965, + "haileys": 45966, + "timmee": 45967, + "hopscotch": 45968, + "andrea's": 45969, + "slobber": 45970, + "dontae": 45971, + "maravilla": 45972, + "srx": 45973, + "paged": 45974, + "sandra's": 45975, + "woogie": 45976, + "flier": 45977, + "kurtis": 45978, + "edgewood": 45979, + "sexed": 45980, + "replacment": 45981, + "hendo": 45982, + "vayan": 45983, + "kobi": 45984, + "roue": 45985, + "clc": 45986, + "naik": 45987, + "meoo": 45988, + "duhamel": 45989, + "eri": 45990, + "squeals": 45991, + "lemmings": 45992, + "barfing": 45993, + "kickstand": 45994, + "feigning": 45995, + "officejet": 45996, + "putek": 45997, + "collarbones": 45998, + "yeng": 45999, + "supone": 46000, + "#okbye": 46001, + "mythos": 46002, + "thousandth": 46003, + "propped": 46004, + "foldable": 46005, + "goot": 46006, + "jeden": 46007, + "seguis": 46008, + "buong": 46009, + "imong": 46010, + "alejo": 46011, + "tootsies": 46012, + "vont": 46013, + "winner's": 46014, + "millon": 46015, + "edie": 46016, + "lollol": 46017, + "errmm": 46018, + "skrrt": 46019, + "bouquets": 46020, + "jovan": 46021, + "pauls": 46022, + "normandy": 46023, + "vette": 46024, + "#loyal": 46025, + "leng": 46026, + "beasty": 46027, + "circulating": 46028, + "deena": 46029, + "dokken": 46030, + "anthrax": 46031, + "ture": 46032, + "ders": 46033, + "fuckable": 46034, + "gats": 46035, + "orchestrated": 46036, + "rumored": 46037, + "shang": 46038, + "mentos": 46039, + "expedited": 46040, + "mulled": 46041, + "jeon": 46042, + "#sojealous": 46043, + "fawwk": 46044, + "parezco": 46045, + "hahhahaa": 46046, + "thingies": 46047, + "obd": 46048, + "repeller": 46049, + "favoritest": 46050, + "hatters": 46051, + "takee": 46052, + "estuve": 46053, + "waaiitt": 46054, + "rages": 46055, + "layering": 46056, + "snoozin": 46057, + "clinch": 46058, + "fino": 46059, + "sateen": 46060, + "tostones": 46061, + "rekt": 46062, + "taong": 46063, + "cobras": 46064, + "proverbial": 46065, + "caricature": 46066, + "aerator": 46067, + "shudda": 46068, + "unwashed": 46069, + "doce": 46070, + "ila": 46071, + "jajajajajajajajaj": 46072, + "accented": 46073, + "ismael": 46074, + "tort": 46075, + "semifinals": 46076, + "fkk": 46077, + "bere": 46078, + "cun": 46079, + "reckoning": 46080, + "seconde": 46081, + "mxpx": 46082, + "barbell": 46083, + "reprints": 46084, + "headbutt": 46085, + "#fsu": 46086, + "llamen": 46087, + "cheel": 46088, + "chubbies": 46089, + "annex": 46090, + "motels": 46091, + "teardrop": 46092, + "reactivate": 46093, + "callaway": 46094, + "cloned": 46095, + "crispiness": 46096, + "unnerving": 46097, + "speriamo": 46098, + "vannah": 46099, + "myla": 46100, + "nthn": 46101, + "sitc": 46102, + "calder": 46103, + "gris": 46104, + "tantra": 46105, + "crafters": 46106, + "milestones": 46107, + "manzana": 46108, + "nasia": 46109, + "nakauwi": 46110, + "flamengo": 46111, + "respite": 46112, + "homeowners": 46113, + "sidemen": 46114, + "keene": 46115, + "caster": 46116, + "minuten": 46117, + "sbux": 46118, + "#statebound": 46119, + "#missedhim": 46120, + "andersen": 46121, + "amf": 46122, + "tamper": 46123, + "runes": 46124, + "sies": 46125, + "pharaoh": 46126, + "oversold": 46127, + "southerner": 46128, + "txst": 46129, + "nuncaa": 46130, + "#longhairdontcare": 46131, + "hahahahahahhahaha": 46132, + "thes": 46133, + "innocently": 46134, + "prata": 46135, + "vining": 46136, + "topsy": 46137, + "haagen": 46138, + "eucalyptus": 46139, + "concussions": 46140, + "thirteenth": 46141, + "bouge": 46142, + "stubs": 46143, + "safaree": 46144, + "noticias": 46145, + "wifeys": 46146, + "minn": 46147, + "intertwined": 46148, + "hongry": 46149, + "jey": 46150, + "megaman": 46151, + ")-:": 46152, + "anniston": 46153, + "tweed": 46154, + "lacklustre": 46155, + "tmwr": 46156, + "meesh": 46157, + "#magic": 46158, + "sommeil": 46159, + "meio": 46160, + "booku": 46161, + "schtick": 46162, + "aji": 46163, + "frivolous": 46164, + "pocky": 46165, + "complacent": 46166, + "deviants": 46167, + "buzzes": 46168, + "din't": 46169, + "fbck": 46170, + "rhoa": 46171, + "agar": 46172, + "reenact": 46173, + "squabble": 46174, + "peanutbutter": 46175, + "kece": 46176, + "lobes": 46177, + "produits": 46178, + "tyga's": 46179, + "achi": 46180, + "#justdoit": 46181, + "tlaga": 46182, + "uhhm": 46183, + "masta": 46184, + "olson": 46185, + "hartz": 46186, + "maxing": 46187, + "pomo": 46188, + "sarang": 46189, + "snafu": 46190, + "taga": 46191, + "avery's": 46192, + "mff": 46193, + "tara's": 46194, + "otb": 46195, + "#famous": 46196, + "#metime": 46197, + "pede": 46198, + "mees": 46199, + "lec": 46200, + "verguenza": 46201, + "posi": 46202, + "schmaltz": 46203, + "werden": 46204, + "iih": 46205, + "meit": 46206, + "entiendes": 46207, + "testers": 46208, + "drunker": 46209, + "obituary": 46210, + "calibrated": 46211, + "interrogation": 46212, + "monetary": 46213, + "buscando": 46214, + "commerical": 46215, + "portman": 46216, + "viewpoints": 46217, + "kuno": 46218, + "cavill": 46219, + "worshiping": 46220, + "mathematicians": 46221, + "equilibrium": 46222, + "altoids": 46223, + "webpage": 46224, + "interim": 46225, + "growlers": 46226, + "artfully": 46227, + "unpolished": 46228, + "amtrak": 46229, + "abuelos": 46230, + "wreckers": 46231, + "salford": 46232, + "kzoo": 46233, + "octobers": 46234, + "skinnies": 46235, + "chashu": 46236, + "granting": 46237, + "poping": 46238, + "bioshock": 46239, + "aer": 46240, + "resurrect": 46241, + "#rowysotour": 46242, + "cikgu": 46243, + "makee": 46244, + "#drashtidhami": 46245, + "hemlock": 46246, + "commencement": 46247, + "pipers": 46248, + "#livesos": 46249, + "thirstiest": 46250, + "fugazy": 46251, + "jamia": 46252, + "reversal": 46253, + "msk": 46254, + "sez": 46255, + "kuat": 46256, + "bby's": 46257, + "thankyouxx": 46258, + "doha": 46259, + "#alhamdulillah": 46260, + "trespassing": 46261, + "ath": 46262, + "woork": 46263, + "anders": 46264, + "treasurer": 46265, + "olla": 46266, + "jadey": 46267, + "#videoveranomtv": 46268, + "fgt": 46269, + "kennesaw": 46270, + "jellybeans": 46271, + "allo": 46272, + "helens": 46273, + "norse": 46274, + "defunct": 46275, + "#totaldivas": 46276, + "bridget's": 46277, + "eves": 46278, + "gawds": 46279, + "transformative": 46280, + "dupe": 46281, + "goh": 46282, + "ford's": 46283, + "triples": 46284, + "pino": 46285, + "rehearsed": 46286, + "emporium": 46287, + "geografia": 46288, + "bta": 46289, + "olvidado": 46290, + "#gg": 46291, + "tyranny": 46292, + "pinpoint": 46293, + "intermediates": 46294, + "frequencies": 46295, + "farruko": 46296, + "#thatslove": 46297, + "starcraft": 46298, + "abot": 46299, + "gregor": 46300, + "mulder": 46301, + "mingus": 46302, + "scurry": 46303, + "quarantine": 46304, + "foolie": 46305, + "#yousuck": 46306, + "ibeen": 46307, + "hanley": 46308, + "muera": 46309, + "lorh": 46310, + "hahhaah": 46311, + "nervo": 46312, + "h.d.": 46313, + "rememeber": 46314, + "risers": 46315, + "pcy": 46316, + "spacebar": 46317, + "sinfully": 46318, + "revolutions": 46319, + "oman": 46320, + "flourless": 46321, + "egregious": 46322, + "xg": 46323, + "ancora": 46324, + "#boybye": 46325, + "olvidan": 46326, + "falou": 46327, + "kiarra": 46328, + "rolando": 46329, + "payet": 46330, + "nuked": 46331, + "sys": 46332, + "tov": 46333, + "#a1": 46334, + "#seriouslythough": 46335, + "bataan": 46336, + "commande": 46337, + "matthew's": 46338, + "uriel": 46339, + "zquad": 46340, + "monteith": 46341, + "lud": 46342, + "aarons": 46343, + "entrepreneurship": 46344, + "kays": 46345, + "acing": 46346, + "fustrated": 46347, + "resounding": 46348, + "acidity": 46349, + "biracial": 46350, + "infertility": 46351, + "combi": 46352, + "hejka": 46353, + "yabang": 46354, + "unfavorite": 46355, + "#day": 46356, + "mts": 46357, + "#bbwla": 46358, + "#toohot": 46359, + "#fabulous": 46360, + "esco": 46361, + "replenish": 46362, + "launches": 46363, + "kalo": 46364, + "#lovethismovie": 46365, + "pangit": 46366, + "skimped": 46367, + "upmost": 46368, + "differnt": 46369, + "protestant": 46370, + "niglet": 46371, + "sarcasmo": 46372, + "daysha": 46373, + "fookin": 46374, + "pembroke": 46375, + "busyy": 46376, + "//:": 46377, + "edsa": 46378, + "tooted": 46379, + "acto": 46380, + "jorden": 46381, + "d'or": 46382, + "charade": 46383, + "#bigbootyprobs": 46384, + "#idfwu": 46385, + "whahaha": 46386, + "dobrev": 46387, + "emote": 46388, + "poopoo": 46389, + "syllables": 46390, + "rodger": 46391, + "reevaluating": 46392, + "practicum": 46393, + "oou": 46394, + "odb": 46395, + "drunky": 46396, + "seing": 46397, + "elph": 46398, + "#backtoschool": 46399, + "idole": 46400, + "#wisewords": 46401, + "molt": 46402, + "regroup": 46403, + "perceive": 46404, + "oscillating": 46405, + "aos": 46406, + "kasabian": 46407, + "#bgt": 46408, + "playita": 46409, + "truckin": 46410, + "coda": 46411, + "pedi's": 46412, + "eminently": 46413, + "l'll": 46414, + "tammie": 46415, + "probes": 46416, + "sunway": 46417, + "mueve": 46418, + "cruisee": 46419, + "sant": 46420, + "weakling": 46421, + "traitors": 46422, + "saimin": 46423, + "collapsible": 46424, + "outgrown": 46425, + "#blondemoment": 46426, + "subio": 46427, + "guurrl": 46428, + "doont": 46429, + "outstandingly": 46430, + "allende": 46431, + "denisse": 46432, + "weighty": 46433, + "suckiest": 46434, + "brine": 46435, + "did't": 46436, + "candyy": 46437, + "kaity": 46438, + "shortyy": 46439, + "pleass": 46440, + "tahh": 46441, + "hndi": 46442, + "dodd": 46443, + "gorditas": 46444, + "barro's": 46445, + "gorman": 46446, + "topman": 46447, + "#restinpeace": 46448, + "lille": 46449, + "tingles": 46450, + "la's": 46451, + "foor": 46452, + "spi": 46453, + "kittie": 46454, + "otaku": 46455, + "vernos": 46456, + "boujie": 46457, + "anabelle": 46458, + "jijijiji": 46459, + "achieves": 46460, + "proscuitto": 46461, + "disoriented": 46462, + "exactoo": 46463, + "visage": 46464, + "oportunidad": 46465, + "nags": 46466, + "colorless": 46467, + "representin": 46468, + "vacance": 46469, + "#whitegirlprobs": 46470, + "curiosa": 46471, + "ron's": 46472, + "whatevz": 46473, + "whitewater": 46474, + "cindy's": 46475, + "wodehouse": 46476, + "resilient": 46477, + "hinted": 46478, + "hsa": 46479, + "toort": 46480, + "hitched": 46481, + "sooth": 46482, + "bicker": 46483, + "netta": 46484, + "#pride": 46485, + "#artpop": 46486, + "antonio's": 46487, + "dom's": 46488, + "rona": 46489, + "#neonlightstour": 46490, + "ahahahahahahahaha": 46491, + "ntr": 46492, + "adioss": 46493, + "stepmother": 46494, + "becouse": 46495, + "armenia": 46496, + "focal": 46497, + "http": 46498, + "jointer": 46499, + "backtrack": 46500, + "westwick": 46501, + "#eyecandy": 46502, + "#notme": 46503, + "redman": 46504, + "chanclas": 46505, + "panting": 46506, + "maby": 46507, + "bogs": 46508, + "briefing": 46509, + "inolvidable": 46510, + "#ramadan": 46511, + "#lush": 46512, + "#reign": 46513, + "sandford": 46514, + "glorifying": 46515, + "choirs": 46516, + "engga": 46517, + "keshia": 46518, + "callejeros": 46519, + "waistband": 46520, + "mortals": 46521, + "hopi": 46522, + "yerba": 46523, + "pomme": 46524, + "gibson's": 46525, + "consulted": 46526, + "famed": 46527, + "craptacular": 46528, + "grado": 46529, + "cranes": 46530, + "mei'm": 46531, + "#420": 46532, + "worldx": 46533, + "tias": 46534, + "godparents": 46535, + "von's": 46536, + "monster's": 46537, + "smarmy": 46538, + "insanee": 46539, + "earle": 46540, + "bruin": 46541, + "ibrahim": 46542, + "faught": 46543, + "multitool": 46544, + "bennies": 46545, + "tirar": 46546, + "nahfr": 46547, + "pfv": 46548, + "siobhan": 46549, + "scousers": 46550, + "mutter": 46551, + "bellys": 46552, + "fanclub": 46553, + "wharton": 46554, + "ashtrays": 46555, + "kela": 46556, + "jajajajajajajajajajajajajaja": 46557, + "baww": 46558, + "jigg": 46559, + "ohgod": 46560, + "housewares": 46561, + "tacs": 46562, + "stroked": 46563, + "persist": 46564, + "pluie": 46565, + "weg": 46566, + "mason's": 46567, + "fijo": 46568, + "finnaa": 46569, + "overdoing": 46570, + "poeta": 46571, + "danae": 46572, + "jiggles": 46573, + "reactivated": 46574, + "tosses": 46575, + "doro": 46576, + "innis": 46577, + "eloquently": 46578, + "tourne": 46579, + "#e": 46580, + "disconcerting": 46581, + "indica": 46582, + "fitty": 46583, + "sinker": 46584, + "khs": 46585, + "creaminess": 46586, + "hihihihihi": 46587, + "#lovemyfriends": 46588, + "uuy": 46589, + "mcalisters": 46590, + "pretentiousness": 46591, + "hx": 46592, + "macroeconomics": 46593, + "buffed": 46594, + "offa": 46595, + "huuhh": 46596, + "ifunny": 46597, + "fatherhood": 46598, + "foreshadowing": 46599, + "impenetrable": 46600, + "cosign": 46601, + "busco": 46602, + "spectacles": 46603, + "wonho": 46604, + "aiman": 46605, + "noire": 46606, + "eet": 46607, + "liqour": 46608, + "foshoo": 46609, + "tranquilidad": 46610, + "mcdees": 46611, + "barman": 46612, + "rots": 46613, + "club's": 46614, + "hoobastank": 46615, + "fas": 46616, + "ruthie": 46617, + "yessaa": 46618, + "pediatrics": 46619, + "clic": 46620, + "standstill": 46621, + "recourse": 46622, + "riv": 46623, + "sipag": 46624, + "situationships": 46625, + "hadid": 46626, + "mias": 46627, + "#40": 46628, + "paraan": 46629, + "gynecologist": 46630, + "nitrogen": 46631, + "oversize": 46632, + "apartheid": 46633, + "deskjet": 46634, + "comatose": 46635, + "redbulls": 46636, + "annw": 46637, + "bigga": 46638, + "habibii": 46639, + "arin": 46640, + "asc": 46641, + "competes": 46642, + "sargent": 46643, + "glitzy": 46644, + "cuentas": 46645, + "fili": 46646, + "humorless": 46647, + "axim": 46648, + "welt": 46649, + "#her": 46650, + "#trancefamily": 46651, + "beautifulest": 46652, + "followings": 46653, + "fom": 46654, + "twerps": 46655, + "gaffer": 46656, + "teejay": 46657, + "deall": 46658, + "#lordhelpme": 46659, + "#brexit": 46660, + "giro": 46661, + "crusaders": 46662, + "resolving": 46663, + "kish": 46664, + "janitors": 46665, + "clank": 46666, + "#merrychristmas": 46667, + "kdot": 46668, + "gatos": 46669, + "wilkes": 46670, + "kuhn": 46671, + "britains": 46672, + "nataly": 46673, + "madds": 46674, + "concludes": 46675, + "rohan": 46676, + "inacurate": 46677, + "#lifemade": 46678, + "fackin": 46679, + "jalouse": 46680, + "odg": 46681, + "smalling": 46682, + "#bummer": 46683, + "unsupervised": 46684, + "horribles": 46685, + "msa": 46686, + "bug's": 46687, + "alredy": 46688, + "circo": 46689, + "personalised": 46690, + "sienta": 46691, + "nega": 46692, + "#fuckmylife": 46693, + "marj": 46694, + "willard": 46695, + "throb": 46696, + "relocating": 46697, + "imperative": 46698, + "injector": 46699, + "roscoe's": 46700, + "#paradise": 46701, + "#5secondsofsummer": 46702, + "#phew": 46703, + "bueenas": 46704, + "hanep": 46705, + "#worldcup2014": 46706, + "pengen": 46707, + "downtempo": 46708, + "anomaly": 46709, + "amass": 46710, + "ttu": 46711, + "ronaldo's": 46712, + "macedonia": 46713, + "kallie": 46714, + "orbital": 46715, + "chamoy": 46716, + "parehas": 46717, + "pkg": 46718, + "osha": 46719, + "vaults": 46720, + "bloc": 46721, + "taki": 46722, + "delinquent": 46723, + "megaphone": 46724, + "witchuu": 46725, + "#gilmoregirls": 46726, + "tay's": 46727, + "gdnite": 46728, + "shhiitt": 46729, + "#quotes": 46730, + "mulch": 46731, + "zacks": 46732, + "kahlil": 46733, + "hil": 46734, + "triology": 46735, + "#sonsofanarchy": 46736, + "nasan": 46737, + "bellends": 46738, + "#allergies": 46739, + "alah": 46740, + "gfx": 46741, + "cometh": 46742, + "kern": 46743, + "hava": 46744, + "fram": 46745, + "loveyaa": 46746, + "tedio": 46747, + "#followtrain": 46748, + "fudeu": 46749, + "celebrity's": 46750, + "jewell": 46751, + "packard": 46752, + "tillys": 46753, + "weeny": 46754, + "beached": 46755, + "stubbing": 46756, + "csa": 46757, + "cante": 46758, + "ferragamo": 46759, + "portada": 46760, + "sharpness": 46761, + "tripled": 46762, + "wonderous": 46763, + "smallzy": 46764, + "januzaj": 46765, + "dankee": 46766, + "tampered": 46767, + "retrouve": 46768, + "twc": 46769, + "georgette": 46770, + "pima": 46771, + "deconstructed": 46772, + "snubbed": 46773, + "plagiarized": 46774, + "elgort": 46775, + "godsister": 46776, + "diplomatic": 46777, + "nelson's": 46778, + "primus": 46779, + "#favoritesong": 46780, + "#anyone": 46781, + "nawt": 46782, + "luved": 46783, + "don's": 46784, + "cobblestone": 46785, + "perfections": 46786, + "lashing": 46787, + "mandas": 46788, + "nabasa": 46789, + "gauze": 46790, + "hamish": 46791, + "bleacher": 46792, + "dingle": 46793, + "stables": 46794, + "nesquik": 46795, + "deya": 46796, + "#hiphop": 46797, + "vaccinations": 46798, + "krew": 46799, + "carrabba's": 46800, + "omgoodness": 46801, + "paroles": 46802, + "trimmers": 46803, + "feelingss": 46804, + "bagsak": 46805, + "wentz": 46806, + "concordia": 46807, + "darrin": 46808, + "velma": 46809, + "#hanging": 46810, + "deva": 46811, + "arkham": 46812, + "chilli's": 46813, + "bay's": 46814, + "yeller": 46815, + "rola": 46816, + "#bb15": 46817, + "oin": 46818, + "jcp": 46819, + "papago": 46820, + "revving": 46821, + "veem": 46822, + "jumm": 46823, + "delevingne": 46824, + "loafer": 46825, + "eatable": 46826, + "blissfully": 46827, + "sailboat": 46828, + "mian": 46829, + "gloti": 46830, + "gyals": 46831, + "#kms": 46832, + "kimye": 46833, + "proverb": 46834, + "miyagi": 46835, + "reboots": 46836, + "timesaver": 46837, + "goone": 46838, + "rediscover": 46839, + "pickings": 46840, + "undesirable": 46841, + "hermanito": 46842, + "lembrei": 46843, + "eunji": 46844, + "cosmology": 46845, + "patatas": 46846, + "gyp": 46847, + "cse": 46848, + "ayia": 46849, + "muchacho": 46850, + "hommee": 46851, + "newfoundland": 46852, + "ulises": 46853, + "outshine": 46854, + "basel": 46855, + "endearment": 46856, + "sprouting": 46857, + "asswhole": 46858, + "blackpink": 46859, + "aguarde": 46860, + "bick": 46861, + "slayage": 46862, + "inverted": 46863, + "sarahs": 46864, + "bugsy": 46865, + "grownup": 46866, + "cms": 46867, + "beatings": 46868, + "yhur": 46869, + "hahaahha": 46870, + "taraa": 46871, + "jeesus": 46872, + "syaa": 46873, + "hilly": 46874, + "gratification": 46875, + "accountancy": 46876, + "retaining": 46877, + "#riseandgrind": 46878, + "iloilo": 46879, + "longwood": 46880, + "selfridges": 46881, + "shiv": 46882, + "corrupts": 46883, + "sump": 46884, + "ouchy": 46885, + "microeconomics": 46886, + "tejas": 46887, + "campsite": 46888, + "thatcher": 46889, + "stanking": 46890, + "lawrd": 46891, + "cloning": 46892, + "paraffin": 46893, + "oppo": 46894, + "quilted": 46895, + "malaria": 46896, + "sixteenth": 46897, + "#whoareyou": 46898, + "selamatmalam": 46899, + "sinceramente": 46900, + "heep": 46901, + "pizzazz": 46902, + "dcr": 46903, + "cleanings": 46904, + "pleasently": 46905, + "horton's": 46906, + "mongering": 46907, + "boonies": 46908, + "merchandising": 46909, + "chowing": 46910, + "pisstake": 46911, + "wazzup": 46912, + "rojas": 46913, + "muncher": 46914, + "breakfest": 46915, + "cranium": 46916, + "spago": 46917, + "huggin": 46918, + "decoy": 46919, + "lacing": 46920, + "gracing": 46921, + "clockin": 46922, + "#teenmom2": 46923, + "beautifuul": 46924, + "albondigas": 46925, + "corridors": 46926, + "monkey's": 46927, + "woody's": 46928, + "docked": 46929, + "naranja": 46930, + "sweeten": 46931, + "woy": 46932, + "perdeu": 46933, + "kirstin": 46934, + "whimsy": 46935, + "#37": 46936, + "dickson": 46937, + "ellison": 46938, + "trabalho": 46939, + "shailene": 46940, + "loso": 46941, + "skizzy": 46942, + "#determination": 46943, + "slutt": 46944, + "pierda": 46945, + "abre": 46946, + "krap": 46947, + "budlight": 46948, + "ocs": 46949, + "baffle": 46950, + "msp": 46951, + "kroos": 46952, + "kmfdm": 46953, + "trapp": 46954, + "babalik": 46955, + "pretoria": 46956, + "cbc": 46957, + "thistle": 46958, + "genevieve": 46959, + "jghh": 46960, + "nonchalantly": 46961, + "janey": 46962, + "oldy": 46963, + "falsies": 46964, + "accesory": 46965, + "thickens": 46966, + "politeness": 46967, + "bicol": 46968, + "shems": 46969, + "tlg": 46970, + "sexto": 46971, + "randle": 46972, + "nanit": 46973, + "#ukrunchat": 46974, + "vicky's": 46975, + "restores": 46976, + "murdock": 46977, + "bgm": 46978, + "marinating": 46979, + "leukemia": 46980, + "julz": 46981, + "mylife": 46982, + "pleeaasse": 46983, + "plaga": 46984, + "runaways": 46985, + "lino": 46986, + "estava": 46987, + "amoorr": 46988, + "bbgirl": 46989, + "kill'em": 46990, + "muling": 46991, + "suurree": 46992, + "hardin": 46993, + "mekong": 46994, + "alcatraz": 46995, + "diabla": 46996, + "backpage": 46997, + "veiw": 46998, + "#myshit": 46999, + "#realnigga": 47000, + "tolong": 47001, + "gaw": 47002, + "jorts": 47003, + "james's": 47004, + "kitkats": 47005, + "manutd": 47006, + "theyself": 47007, + "icona": 47008, + "ngaa": 47009, + "regrettably": 47010, + "kao": 47011, + "multiplication": 47012, + "mollys": 47013, + "exclaimed": 47014, + "subversive": 47015, + "hangup": 47016, + "yayayayaya": 47017, + "hhahah": 47018, + "udh": 47019, + "zont": 47020, + "plumbers": 47021, + "delorme": 47022, + "mangers": 47023, + "mouldy": 47024, + "kofi": 47025, + "#worldcup": 47026, + "nganga": 47027, + "hansol": 47028, + "bodys": 47029, + "logans": 47030, + "heureux": 47031, + "caulk": 47032, + "meilleurs": 47033, + "unreasonably": 47034, + "walken": 47035, + "entendre": 47036, + "#teamlightskin": 47037, + "ooey": 47038, + "operatic": 47039, + "kabbalah": 47040, + "sibelius": 47041, + "husker": 47042, + "surprize": 47043, + "soorryy": 47044, + "#ufc": 47045, + "cojo": 47046, + "nmms": 47047, + "qo": 47048, + "aquinas": 47049, + "draper": 47050, + "berserk": 47051, + "nuanced": 47052, + "keshawn": 47053, + "sqaud": 47054, + "iknoww": 47055, + "shiett": 47056, + "#refreshed": 47057, + "tahitian": 47058, + "emulate": 47059, + "fundamentalism": 47060, + "wurde": 47061, + "hedley": 47062, + "diez": 47063, + "gaahd": 47064, + "jaylan": 47065, + "picturess": 47066, + "parkour": 47067, + "#butseriously": 47068, + "toques": 47069, + "imitated": 47070, + "pac's": 47071, + "hiram": 47072, + "gaither": 47073, + "#jb": 47074, + "#losers": 47075, + "wheew": 47076, + "nutri": 47077, + "oreganos": 47078, + "timings": 47079, + "solids": 47080, + "armand": 47081, + "fuggit": 47082, + "mva": 47083, + "encantado": 47084, + "sih": 47085, + "#nailedit": 47086, + "recharged": 47087, + "lauper": 47088, + "frittata": 47089, + "invasive": 47090, + "rediculously": 47091, + "stax": 47092, + "steward": 47093, + "linn": 47094, + "#yup": 47095, + "tanx": 47096, + "mientas": 47097, + "#backoff": 47098, + "#ahshotel": 47099, + "aysia": 47100, + "chimba": 47101, + "gibbons": 47102, + "martyn": 47103, + "killah": 47104, + "icould": 47105, + "jalisa": 47106, + "#yaas": 47107, + "pcp": 47108, + "retakes": 47109, + "raconte": 47110, + "adler": 47111, + "jetzt": 47112, + "insultingly": 47113, + "#88": 47114, + "bande": 47115, + "spector": 47116, + "fing": 47117, + "ladd": 47118, + "unfiltered": 47119, + "boppers": 47120, + "#comingsoon": 47121, + "jfb": 47122, + "kaisoo": 47123, + "closures": 47124, + "weet": 47125, + "flings": 47126, + "christmases": 47127, + "vf": 47128, + "calculation": 47129, + "j.r.": 47130, + "ahe": 47131, + "#loveyourself": 47132, + "amboi": 47133, + "#california": 47134, + "velhos": 47135, + "religous": 47136, + "michener": 47137, + "wallow": 47138, + "banfield": 47139, + "peacee": 47140, + "enshalla": 47141, + "#want": 47142, + "osrs": 47143, + "saucin": 47144, + "sisisisi": 47145, + "numerology": 47146, + "turin": 47147, + "caio": 47148, + "xw": 47149, + "mims": 47150, + "iwould": 47151, + "malaga": 47152, + "dds": 47153, + "argentinaa": 47154, + "biirthday": 47155, + "chegue": 47156, + "regresa": 47157, + "guzzler": 47158, + "swervin": 47159, + "grats": 47160, + "seguimi": 47161, + "pobresito": 47162, + "dreamgirls": 47163, + "margaux": 47164, + "l'anniversaire": 47165, + "nrg": 47166, + "fdr": 47167, + "timo": 47168, + "bnl": 47169, + "outward": 47170, + "nanight": 47171, + "snog": 47172, + "marii": 47173, + "lovr": 47174, + "=3": 47175, + "towne": 47176, + "magnification": 47177, + ":-o": 47178, + "lycia": 47179, + "society's": 47180, + "laro": 47181, + "obs": 47182, + "infidelity": 47183, + "placements": 47184, + "guppy": 47185, + "poeple": 47186, + "goldman": 47187, + "precooked": 47188, + "egan": 47189, + "tablespoons": 47190, + "#training": 47191, + "yogis": 47192, + "flippant": 47193, + "hyvee": 47194, + "baat": 47195, + "aegyo": 47196, + "dilworth": 47197, + "sahnn": 47198, + "#selenaformmva": 47199, + "#uhh": 47200, + "voxer": 47201, + "barnett": 47202, + "cherishing": 47203, + "shuffleboard": 47204, + "ambiente": 47205, + "timbre": 47206, + "razzle": 47207, + "sagan": 47208, + "shante": 47209, + "labeler": 47210, + "geraldine": 47211, + "tilting": 47212, + "grunts": 47213, + "#missionaccomplished": 47214, + "sahi": 47215, + "mcintyre": 47216, + "explique": 47217, + "attaching": 47218, + "albulm": 47219, + "tigres": 47220, + "waitn": 47221, + "#boreoff": 47222, + "mereces": 47223, + "downers": 47224, + "rearing": 47225, + "metres": 47226, + "adc": 47227, + "nylah": 47228, + "nossaa": 47229, + "happybday": 47230, + "#5days": 47231, + "keda": 47232, + "sharpens": 47233, + "sunglass": 47234, + "awws": 47235, + "sbarro": 47236, + "raman": 47237, + "crooner": 47238, + "carrington": 47239, + "astute": 47240, + "settebello": 47241, + "omgomgomgomg": 47242, + "wku": 47243, + "schlitterbahn": 47244, + "hablenme": 47245, + "#shitnoonesays": 47246, + "vitals": 47247, + "to's": 47248, + "gauche": 47249, + "shakti": 47250, + "airbag": 47251, + "snobbery": 47252, + "healty": 47253, + "beks": 47254, + "smoed": 47255, + "vincent's": 47256, + "faake": 47257, + "#childhood": 47258, + "keyla": 47259, + "verme": 47260, + "#carryon": 47261, + "imean": 47262, + "hota": 47263, + "aleluia": 47264, + "homegurl": 47265, + "roadman": 47266, + "detesto": 47267, + "#sadface": 47268, + "goblins": 47269, + "cliff's": 47270, + "wak": 47271, + "anguish": 47272, + "minuses": 47273, + "townn": 47274, + "classique": 47275, + "adaptations": 47276, + "zam": 47277, + "basking": 47278, + "conjunction": 47279, + "bridging": 47280, + "#sexylist2014": 47281, + "apunto": 47282, + "#champions": 47283, + "weeps": 47284, + "actron": 47285, + "overpay": 47286, + "replyin": 47287, + "emeli": 47288, + "fumer": 47289, + "tonsil": 47290, + "versailles": 47291, + "senegalese": 47292, + "wowee": 47293, + "teriffic": 47294, + "jeeves": 47295, + "bussy": 47296, + "drunkest": 47297, + "cramer": 47298, + "outsidee": 47299, + "#fatgirlprobz": 47300, + "brobro": 47301, + "acontece": 47302, + "inang": 47303, + "tarnish": 47304, + "hannahs": 47305, + "delco": 47306, + "dino's": 47307, + "yp": 47308, + "pussay": 47309, + "metoo": 47310, + "voluntary": 47311, + "plage": 47312, + "agp": 47313, + "pilling": 47314, + "playmate": 47315, + "boing": 47316, + "bangag": 47317, + "esophagus": 47318, + "chads": 47319, + "fungi": 47320, + "stevie's": 47321, + "agile": 47322, + "dabble": 47323, + "guisee": 47324, + "#feelthebern": 47325, + "magnolias": 47326, + "klipsch": 47327, + "maize": 47328, + "bakin": 47329, + "ration": 47330, + "stockpot": 47331, + "stuf": 47332, + "dora's": 47333, + "astaire": 47334, + "jedward": 47335, + "regalar": 47336, + "#vom": 47337, + "wooahh": 47338, + "uninviting": 47339, + "centurion": 47340, + "currys": 47341, + "enlarged": 47342, + "clashes": 47343, + "amature": 47344, + "guthrie": 47345, + "wizardry": 47346, + "sufi": 47347, + "missa": 47348, + "bio's": 47349, + "marie's": 47350, + "gunned": 47351, + "soaks": 47352, + "hypothetical": 47353, + "hiroshima": 47354, + "salamaat": 47355, + "holidayy": 47356, + "babymother": 47357, + "zoes": 47358, + "shotguns": 47359, + "conceive": 47360, + "niel": 47361, + "viscous": 47362, + "#selfish": 47363, + "obaa": 47364, + "monos": 47365, + "viewable": 47366, + "gagne": 47367, + "jame": 47368, + "adoring": 47369, + "extractor": 47370, + "bassett": 47371, + "horatio": 47372, + "anaya": 47373, + "barstool": 47374, + "desolation": 47375, + "swarming": 47376, + "marley's": 47377, + "scopes": 47378, + "#iminlove": 47379, + "sorest": 47380, + "shyy": 47381, + "sool": 47382, + "uninstalled": 47383, + "quattro": 47384, + "medi": 47385, + "subscribing": 47386, + "iheartradio": 47387, + "neuer": 47388, + "exponentially": 47389, + "wacha": 47390, + "taylorr": 47391, + "pantalla": 47392, + "bendita": 47393, + "adhere": 47394, + "aliante": 47395, + "racially": 47396, + "boojie": 47397, + "jouer": 47398, + "swatter": 47399, + "oboe": 47400, + "semestre": 47401, + "okaa": 47402, + "powerschool": 47403, + "metroid": 47404, + "regalaron": 47405, + "umg": 47406, + "receding": 47407, + "katya": 47408, + "bolder": 47409, + "necking": 47410, + "#ohyeah": 47411, + "loveyoumore": 47412, + "kapa": 47413, + "makeing": 47414, + "secretariat": 47415, + "yasee": 47416, + "ubuntu": 47417, + "wolf's": 47418, + "cochon": 47419, + "chana": 47420, + "yeaar": 47421, + "pureed": 47422, + "repel": 47423, + "nepa": 47424, + "teej": 47425, + "profesor": 47426, + "#thirstytweet": 47427, + "#shocked": 47428, + "jelani": 47429, + "lexicon": 47430, + "yoni": 47431, + "mitzvah": 47432, + "itxx": 47433, + "cinee": 47434, + "jazzed": 47435, + "cuteass": 47436, + "convent": 47437, + "flatscreen": 47438, + "liscense": 47439, + "goan": 47440, + "gatorades": 47441, + "mote": 47442, + "tumblers": 47443, + "overtake": 47444, + "camilo": 47445, + "bruder": 47446, + "aparte": 47447, + "banked": 47448, + "consequently": 47449, + "youfollow": 47450, + "godmom": 47451, + "sepas": 47452, + "#letmesleep": 47453, + "tangible": 47454, + "forthcoming": 47455, + "birdcage": 47456, + "numbness": 47457, + "grueling": 47458, + "highfive": 47459, + "poconos": 47460, + "gable": 47461, + "fireplaces": 47462, + "plankton": 47463, + "backroad": 47464, + "redic": 47465, + "clot": 47466, + "rong": 47467, + "kaasar": 47468, + "#bulls": 47469, + "shytt": 47470, + "frothing": 47471, + "tierney": 47472, + "joshua's": 47473, + "valets": 47474, + "hud": 47475, + "precinct": 47476, + "#powercouple": 47477, + "locaa": 47478, + "esperas": 47479, + "whop": 47480, + "chompies": 47481, + "prat": 47482, + "shelbi": 47483, + "severly": 47484, + "gabbs": 47485, + "#blonde": 47486, + "#followmeplease": 47487, + "mileys": 47488, + "sabs": 47489, + "#thatmomentwhen": 47490, + "#votethewanteduk": 47491, + "fre": 47492, + "skil": 47493, + "bientot": 47494, + "latur": 47495, + "#bigboobprobs": 47496, + "daawg": 47497, + "summaa": 47498, + "despertarse": 47499, + "odesza": 47500, + "sororities": 47501, + "whitman": 47502, + "serger": 47503, + "charlatan": 47504, + "grassroots": 47505, + "pocas": 47506, + "#destiny": 47507, + "worrk": 47508, + "carat": 47509, + "piccadilly": 47510, + "deveraux": 47511, + "slits": 47512, + "imsg": 47513, + "kani": 47514, + "amoroso": 47515, + "inshalla": 47516, + "gossh": 47517, + "monthsarry": 47518, + "#streamys": 47519, + "isp": 47520, + "deads": 47521, + "obtaining": 47522, + "liddle": 47523, + "andys": 47524, + "trustt": 47525, + "ojitos": 47526, + "rapmon": 47527, + "#reallytho": 47528, + "brokee": 47529, + "deffinatly": 47530, + "boyhood": 47531, + "fells": 47532, + "delicacies": 47533, + "physicist": 47534, + "knockoffs": 47535, + "#aquarians": 47536, + "viciada": 47537, + "#olicity": 47538, + "psychedelia": 47539, + "affinity": 47540, + "eldredge": 47541, + "decreases": 47542, + "humbleness": 47543, + "murr": 47544, + "kyleigh": 47545, + "psyc": 47546, + "praline": 47547, + "phir": 47548, + "juanito": 47549, + "ifw": 47550, + "galau": 47551, + "vado": 47552, + "whodunnit": 47553, + "caskets": 47554, + "dokey": 47555, + "ilovee": 47556, + "shvt": 47557, + "tamp": 47558, + "emil": 47559, + "roch": 47560, + "mclachlan": 47561, + "corrosion": 47562, + "d'habitude": 47563, + "domestics": 47564, + "dayl": 47565, + "dih": 47566, + "beccas": 47567, + "spooned": 47568, + "blackbear": 47569, + "beachy": 47570, + "dafaq": 47571, + "#byebitch": 47572, + "chichay": 47573, + "makasii": 47574, + "showtek": 47575, + "discipleship": 47576, + "toasters": 47577, + "swiper": 47578, + "escorts": 47579, + "baggies": 47580, + "spotter": 47581, + "chevys": 47582, + "pinzon": 47583, + "rte": 47584, + "bower": 47585, + "camron": 47586, + "cayce": 47587, + "#whoami": 47588, + "#creeper": 47589, + "maah": 47590, + "supersonic": 47591, + "caddie": 47592, + "andouille": 47593, + "tearful": 47594, + "finalize": 47595, + "stews": 47596, + "trickery": 47597, + "firestorm": 47598, + "peluche": 47599, + "ccp": 47600, + "mannheim": 47601, + "palates": 47602, + "nieuwe": 47603, + "ading": 47604, + "urmm": 47605, + "nej": 47606, + "trp": 47607, + "laf": 47608, + "huurts": 47609, + "actn": 47610, + "icc": 47611, + "cleanly": 47612, + "bbt": 47613, + "mofongo": 47614, + "aryan": 47615, + "#up": 47616, + "conyo": 47617, + "seis": 47618, + "#unbothered": 47619, + "crispier": 47620, + "jackies": 47621, + "practica": 47622, + "lmafo": 47623, + "cardiologist": 47624, + "grubby": 47625, + "roxie": 47626, + "veritable": 47627, + "wlcm": 47628, + "clutchh": 47629, + "ptnn": 47630, + "yorkies": 47631, + "pauper": 47632, + "virgil": 47633, + "seatbelts": 47634, + "i'ii": 47635, + "larries": 47636, + "fyee": 47637, + "chancellor": 47638, + "ghaad": 47639, + "karson": 47640, + "suzi": 47641, + "corndogs": 47642, + "amer": 47643, + "dreamworks": 47644, + "malik's": 47645, + "taeyong": 47646, + "pertain": 47647, + "manned": 47648, + "kiri": 47649, + "peliculas": 47650, + "fancying": 47651, + "umf": 47652, + "#55": 47653, + "scat": 47654, + "miff": 47655, + "#fwm": 47656, + "mamona": 47657, + "carlsbad": 47658, + "allman": 47659, + "contar": 47660, + "leds": 47661, + "adnan": 47662, + "karis": 47663, + "ssx": 47664, + "yn": 47665, + "cheerfully": 47666, + "intento": 47667, + "witch's": 47668, + "pianists": 47669, + "chisel": 47670, + "cerro": 47671, + "aden": 47672, + "smuts": 47673, + "dindin": 47674, + "lousey": 47675, + "molina": 47676, + "aloone": 47677, + "chal": 47678, + "screamingg": 47679, + "hiigh": 47680, + "#modernfamily": 47681, + "btfol": 47682, + "amaizing": 47683, + "botches": 47684, + "rashid": 47685, + "tolkien's": 47686, + "timmy's": 47687, + "preaach": 47688, + "#mess": 47689, + "devise": 47690, + "tapers": 47691, + "serrated": 47692, + "marcella": 47693, + "inxs": 47694, + "thotiana": 47695, + "marcela": 47696, + "geet": 47697, + "judy's": 47698, + "#voteariana": 47699, + "tengan": 47700, + "chacun": 47701, + "raine": 47702, + "redefines": 47703, + "trouxa": 47704, + "evangelism": 47705, + "bonny": 47706, + "torri": 47707, + "annually": 47708, + "flam": 47709, + "moog": 47710, + "huggable": 47711, + "ageing": 47712, + "fancams": 47713, + "geniaal": 47714, + "alya": 47715, + "kayli": 47716, + "#iwant": 47717, + "#wifetweet": 47718, + "tobillo": 47719, + "#run": 47720, + "spanning": 47721, + "walleye": 47722, + "quilter": 47723, + "bota": 47724, + "thosee": 47725, + "ibalik": 47726, + "botak": 47727, + "demii": 47728, + "#patriotsnation": 47729, + "#shawnformmva": 47730, + "#thanksguys": 47731, + "#rangers": 47732, + "trynn": 47733, + "queef": 47734, + "zydeco": 47735, + "writin": 47736, + "lifetimes": 47737, + "familys": 47738, + "lunching": 47739, + "fictions": 47740, + "jaysus": 47741, + "feverish": 47742, + "overtired": 47743, + "asal": 47744, + "#heartattack": 47745, + "choreograph": 47746, + "diagnosing": 47747, + "sib": 47748, + "jigs": 47749, + "kapal": 47750, + "damaris": 47751, + "bourgeois": 47752, + "farouk": 47753, + "motorhead": 47754, + "ife": 47755, + "hushpuppies": 47756, + "trabajando": 47757, + "#wecantstop": 47758, + "tarda": 47759, + "domt": 47760, + "wharf": 47761, + "zander": 47762, + "sak": 47763, + "toni's": 47764, + "contemplation": 47765, + "morbidly": 47766, + "iceman": 47767, + "lembra": 47768, + "#bouttime": 47769, + "yourz": 47770, + "biliyorum": 47771, + "estadio": 47772, + "jornada": 47773, + "dexter's": 47774, + "firebird": 47775, + "tolo": 47776, + "quotable": 47777, + "outsmart": 47778, + "drys": 47779, + "ermahgerd": 47780, + "nightie": 47781, + "#firstdates": 47782, + "mamadas": 47783, + "owii": 47784, + "girlfrann": 47785, + "complication": 47786, + "narrating": 47787, + "feathered": 47788, + "tomlin": 47789, + "#uni": 47790, + "enterar": 47791, + "akere": 47792, + "#humble": 47793, + "#arianators": 47794, + "omoo": 47795, + "deorro": 47796, + "waoo": 47797, + "kalamata": 47798, + "outrun": 47799, + "macbooks": 47800, + "secondes": 47801, + "cq": 47802, + "liken": 47803, + "aquafina": 47804, + "ganged": 47805, + "wingss": 47806, + "mgt": 47807, + "lecter": 47808, + "eclairs": 47809, + "shoppes": 47810, + "latches": 47811, + "guyanese": 47812, + "witless": 47813, + "echosmith": 47814, + "chass": 47815, + "powodzenia": 47816, + "parecer": 47817, + "adovada": 47818, + "rasberry": 47819, + "gnostic": 47820, + "sorcerers": 47821, + "vantage": 47822, + "coms": 47823, + "ricos": 47824, + "encompassing": 47825, + "grandmama": 47826, + "bangbang": 47827, + "sprawled": 47828, + "singlet": 47829, + "falsehoods": 47830, + "cocos": 47831, + "yums": 47832, + "bossman": 47833, + "shampooed": 47834, + "telln": 47835, + "#ever": 47836, + "manhid": 47837, + "starchy": 47838, + "frau": 47839, + "andaa": 47840, + "satnight": 47841, + "casino's": 47842, + "inversion": 47843, + "tbvh": 47844, + "quieta": 47845, + "ubo": 47846, + "pahahahaha": 47847, + "jsui": 47848, + "magnificently": 47849, + "constance": 47850, + "specification": 47851, + "whitesnake": 47852, + "planters": 47853, + "loubs": 47854, + "egomaniac": 47855, + "jui": 47856, + "minnetonka": 47857, + "kix": 47858, + "dvc": 47859, + "escapade": 47860, + "lister": 47861, + "ceased": 47862, + "trinkets": 47863, + "ahhmazing": 47864, + "dwellers": 47865, + "#iknow": 47866, + "laptrip": 47867, + "anch'io": 47868, + "edmodo": 47869, + "venganza": 47870, + "kevon": 47871, + "participant": 47872, + "#sopumped": 47873, + "betchh": 47874, + "katey": 47875, + "amazzing": 47876, + "fisheye": 47877, + "ronnie's": 47878, + "handcuffed": 47879, + "feats": 47880, + "rescheduling": 47881, + "motherfuck": 47882, + "dreezy": 47883, + "boyardee": 47884, + "steers": 47885, + "kanteen": 47886, + "multimeter": 47887, + "scarfed": 47888, + "worrier": 47889, + "estoo": 47890, + "llegaste": 47891, + "a.i.": 47892, + "homers": 47893, + "acu": 47894, + "impeccably": 47895, + "zick": 47896, + "nakalimutan": 47897, + "brad's": 47898, + "tee's": 47899, + "wardrobes": 47900, + "streetz": 47901, + "ritter": 47902, + "house's": 47903, + "whoopsie": 47904, + "lindor": 47905, + "smtg": 47906, + "superar": 47907, + "retwisted": 47908, + "rube": 47909, + "caa": 47910, + "ravel": 47911, + "in's": 47912, + "spencers": 47913, + "diabloo": 47914, + "devins": 47915, + "kanila": 47916, + "demoted": 47917, + "hollies": 47918, + "althea": 47919, + "#getittogether": 47920, + "runaround": 47921, + "orzo": 47922, + "ccm": 47923, + "hapit": 47924, + "#relief": 47925, + "slaaplekker": 47926, + "bebito": 47927, + "tala": 47928, + "irr": 47929, + "gaskets": 47930, + "dudu": 47931, + "cootie": 47932, + "pageants": 47933, + "gentler": 47934, + "abbreviation": 47935, + "bariloche": 47936, + "laah": 47937, + "jugaa": 47938, + "depay": 47939, + "yuli": 47940, + "#bitter": 47941, + "mornig": 47942, + "frappucino": 47943, + "chilton's": 47944, + "fmt": 47945, + "detachable": 47946, + "olden": 47947, + "dour": 47948, + "battled": 47949, + "realationship": 47950, + "#bestmovieever": 47951, + "throwdown": 47952, + "guerrilla": 47953, + "fuckking": 47954, + "#diva": 47955, + "lifeguarding": 47956, + "gudmorning": 47957, + "supeer": 47958, + "vieron": 47959, + "doc's": 47960, + "determining": 47961, + "stimmt": 47962, + "cappucino": 47963, + "alsoo": 47964, + "#gohome": 47965, + "#reunion": 47966, + "ganhei": 47967, + "pratice": 47968, + "enlisted": 47969, + "danna": 47970, + "peirced": 47971, + "reco": 47972, + "seahorse": 47973, + "accross": 47974, + "desecration": 47975, + "dropouts": 47976, + "pinkish": 47977, + "cannery": 47978, + "shann": 47979, + "loob": 47980, + "#gtfoh": 47981, + "tangna": 47982, + "skateboards": 47983, + "img": 47984, + "ominous": 47985, + "enamored": 47986, + "spoby": 47987, + "tomaro": 47988, + "wiee": 47989, + "#nowlistening": 47990, + "#nomotivation": 47991, + "elfs": 47992, + "justement": 47993, + "loathsome": 47994, + "vay": 47995, + "effecting": 47996, + "teds": 47997, + "lebih": 47998, + "lucho": 47999, + "tambem": 48000, + "#movingon": 48001, + "fancam": 48002, + "proudd": 48003, + "horse's": 48004, + "faust": 48005, + "cornwell's": 48006, + "diya": 48007, + "mindfulness": 48008, + "documental": 48009, + "ross's": 48010, + "reflector": 48011, + "woord": 48012, + "tiffy": 48013, + "hudl": 48014, + "#angels": 48015, + "clement": 48016, + "marietta": 48017, + "johny": 48018, + "walker's": 48019, + "resides": 48020, + "boybands": 48021, + "kraa": 48022, + "emerges": 48023, + "vergara": 48024, + "inaudible": 48025, + "surree": 48026, + "backyardigans": 48027, + ".o.s": 48028, + "teenie": 48029, + "arabella": 48030, + "mito": 48031, + "sierra's": 48032, + "resonates": 48033, + "#whoop": 48034, + "kesh": 48035, + "innat": 48036, + "emojii": 48037, + "weyou": 48038, + "clitoris": 48039, + "paraphrase": 48040, + "willa": 48041, + "celine's": 48042, + "leaping": 48043, + "hobbits": 48044, + "#gopackgo": 48045, + "gosse": 48046, + "sddss": 48047, + "ayyoo": 48048, + "druggies": 48049, + "carbonated": 48050, + "apostrophe": 48051, + "cloves": 48052, + "ajo": 48053, + "watercolors": 48054, + "callahan": 48055, + "citadel": 48056, + "beforee": 48057, + "jamir": 48058, + "#newbeginnings": 48059, + "reirme": 48060, + "romi": 48061, + "gordon's": 48062, + "pomegranates": 48063, + "coveted": 48064, + "tremor": 48065, + "[:": 48066, + "comentario": 48067, + "clipe": 48068, + "chio": 48069, + "esqueci": 48070, + "affs": 48071, + "peripheral": 48072, + "aerobed": 48073, + "torey": 48074, + "jinxing": 48075, + "uncomplicated": 48076, + "alfie's": 48077, + "mith": 48078, + "loveteam": 48079, + "pious": 48080, + "grrl": 48081, + "laz": 48082, + "dunia": 48083, + "tightt": 48084, + "#thunderup": 48085, + "soshi": 48086, + "lolss": 48087, + "elijah's": 48088, + "hermanas": 48089, + "umar": 48090, + "nawhh": 48091, + "rohit": 48092, + "recliners": 48093, + "terse": 48094, + "trucs": 48095, + "caiga": 48096, + "scholes": 48097, + "orientated": 48098, + "carlito": 48099, + "guideline": 48100, + "hagrid": 48101, + "wronged": 48102, + "stiffed": 48103, + "tich": 48104, + "amk": 48105, + "vago": 48106, + "taack": 48107, + "duuddee": 48108, + "sustenance": 48109, + "snorts": 48110, + "aagh": 48111, + "jacque": 48112, + "extreamly": 48113, + "wheatgrass": 48114, + "fiaca": 48115, + "#bra": 48116, + "#allsmiles": 48117, + "flamboyant": 48118, + "wilds": 48119, + "dns": 48120, + "centerpiece": 48121, + "dazzled": 48122, + "folbek": 48123, + "#timmcgraw": 48124, + "carbondale": 48125, + "dox": 48126, + "compromising": 48127, + "johnsons": 48128, + "generates": 48129, + "specks": 48130, + "thrashed": 48131, + "mcw": 48132, + "videotape": 48133, + "carino": 48134, + "muthafuckers": 48135, + "nakk": 48136, + "becs": 48137, + "#bangerztour": 48138, + "pangs": 48139, + "emory": 48140, + "huddled": 48141, + "bleck": 48142, + "leery": 48143, + "billet": 48144, + "vigilante": 48145, + "radioo": 48146, + "#bbmas": 48147, + "sequins": 48148, + "faites": 48149, + "texto": 48150, + "unprivate": 48151, + "#busy": 48152, + "girlfran": 48153, + "picante": 48154, + "tosca": 48155, + "soundgarden": 48156, + "brooms": 48157, + "ppg": 48158, + "#hellyes": 48159, + "cask": 48160, + "mathilde": 48161, + "christiana": 48162, + "vege": 48163, + "kettlebell": 48164, + "hms": 48165, + "gentleman's": 48166, + "nervy": 48167, + "arw": 48168, + "pening": 48169, + "novios": 48170, + "withcha": 48171, + "#goodshit": 48172, + "manipulating": 48173, + "jaheim": 48174, + "cockney": 48175, + "beatz": 48176, + "kelis": 48177, + "presumed": 48178, + "wujuu": 48179, + "#ofcourse": 48180, + "bomedy": 48181, + "fartsy": 48182, + "mybe": 48183, + "numerical": 48184, + "capella": 48185, + "marvel's": 48186, + "wlysm": 48187, + "shoro": 48188, + "kween": 48189, + "lyra": 48190, + "amaziing": 48191, + "debussy": 48192, + "tweetdeck": 48193, + "yeaay": 48194, + "#notcute": 48195, + "wolverhampton": 48196, + "favea": 48197, + "#allnighter": 48198, + "patching": 48199, + "shutters": 48200, + "coffee's": 48201, + "basha": 48202, + "evansville": 48203, + "egocentric": 48204, + "emmylou": 48205, + "rune": 48206, + "babyz": 48207, + "charing": 48208, + "fibers": 48209, + "studyin": 48210, + "lela": 48211, + "#tattoo": 48212, + "#champs": 48213, + "qld": 48214, + "#twat": 48215, + "nupe": 48216, + "japan's": 48217, + "coolatta": 48218, + "gcs": 48219, + "umes": 48220, + "haylie": 48221, + "handlers": 48222, + "pret": 48223, + "scribble": 48224, + "charlemagne": 48225, + "sne": 48226, + "#kids": 48227, + "haylor": 48228, + ":\"))": 48229, + "yayayayayayay": 48230, + "johansen": 48231, + "kmi": 48232, + "sequoia": 48233, + "t'a": 48234, + "#myman": 48235, + "seohyun": 48236, + "pesar": 48237, + "bdk": 48238, + "rooh": 48239, + "#xboxone": 48240, + "ashlie": 48241, + "pinhead": 48242, + "woolf": 48243, + "duplicates": 48244, + "cylinders": 48245, + "nuance": 48246, + "piercer": 48247, + "#eng": 48248, + "panqueques": 48249, + "ignoren": 48250, + "#thethirstisreal": 48251, + "enrich": 48252, + "estimation": 48253, + "lowly": 48254, + "wattage": 48255, + "ivan's": 48256, + "keratin": 48257, + "rumbo": 48258, + "#handbox": 48259, + "croker": 48260, + "reeboks": 48261, + "grisly": 48262, + "ares": 48263, + "windham": 48264, + "chall": 48265, + "#3hunna": 48266, + "golazoo": 48267, + "experimentation": 48268, + "emergence": 48269, + "chaat": 48270, + "wallin": 48271, + "#believethat": 48272, + "bui": 48273, + "xtina": 48274, + "pheonix": 48275, + "fpl": 48276, + "emy": 48277, + "frou": 48278, + "gerd": 48279, + "blotchy": 48280, + "hilo": 48281, + "swirling": 48282, + "ande": 48283, + "huur": 48284, + "arguements": 48285, + "commuters": 48286, + "bodybuilder": 48287, + "magi": 48288, + "proly": 48289, + "pontoon": 48290, + "immersed": 48291, + "erwin": 48292, + "#dancerprobz": 48293, + "nyko": 48294, + "c'monn": 48295, + "pall": 48296, + "correspondence": 48297, + "thrusday": 48298, + "realty": 48299, + "#onstagewiththevamps": 48300, + "dwyane": 48301, + "#kevinhart": 48302, + "rotherham": 48303, + "pitter": 48304, + "dobbs": 48305, + "chernobyl": 48306, + "databases": 48307, + "sussex": 48308, + "unfolds": 48309, + "phatty": 48310, + "#sex": 48311, + "#cannotwait": 48312, + "#shade": 48313, + "corningware": 48314, + "qualtiy": 48315, + "phoenician": 48316, + "reinforced": 48317, + "kelangan": 48318, + "weatherr": 48319, + "#beardown": 48320, + "yessi": 48321, + "#anxiety": 48322, + "rispondi": 48323, + "eliana": 48324, + "radishes": 48325, + "kalamazoo": 48326, + "spitfire": 48327, + "azure": 48328, + "#next": 48329, + "fatness": 48330, + "muses": 48331, + "charbroiled": 48332, + "transformations": 48333, + "#whatevs": 48334, + "stubhub": 48335, + "cleary": 48336, + "linee": 48337, + "jep": 48338, + "#avi": 48339, + "metaphorically": 48340, + "bds": 48341, + "cholos": 48342, + "exploitative": 48343, + "corman": 48344, + "charlee": 48345, + "febuary": 48346, + "janell": 48347, + "millet": 48348, + "scooba": 48349, + "#bbmzansi": 48350, + "kaylen": 48351, + "yaww": 48352, + "reblogged": 48353, + "blockmates": 48354, + "#time": 48355, + "stylistic": 48356, + "cush": 48357, + "midge": 48358, + "peachtree": 48359, + "vaai": 48360, + "sapa": 48361, + "laish": 48362, + "#firstworldprobs": 48363, + "daii": 48364, + "theen": 48365, + "proportioned": 48366, + "reportedly": 48367, + "patterned": 48368, + "#getoveryourself": 48369, + "ncs": 48370, + "legss": 48371, + "yenno": 48372, + "kila": 48373, + "instas": 48374, + "retains": 48375, + "catched": 48376, + "bares": 48377, + "manan": 48378, + "antigua": 48379, + "nuxx": 48380, + "#fuckyes": 48381, + "#teamo": 48382, + "iesha": 48383, + "gromit": 48384, + "atp": 48385, + "rhinos": 48386, + "flippers": 48387, + "capitan": 48388, + "#rhonj": 48389, + "kins": 48390, + "constellations": 48391, + "lupo": 48392, + "daron": 48393, + "deteriorating": 48394, + "revis": 48395, + "clarksville": 48396, + "kek": 48397, + "hyukjae": 48398, + "dnv": 48399, + "hattrick": 48400, + "kole": 48401, + "ganado": 48402, + "cooper's": 48403, + "impacts": 48404, + "tempers": 48405, + "faris": 48406, + "photoshopping": 48407, + "gandalf": 48408, + "wolrd": 48409, + "amel": 48410, + "gancia": 48411, + "\\=": 48412, + "barakallah": 48413, + "waterboy": 48414, + "yeup": 48415, + "afire": 48416, + "mistresses": 48417, + "lizbeth": 48418, + "raha": 48419, + "vengas": 48420, + "maravilhosaa": 48421, + "doctorate": 48422, + "mancini": 48423, + "whay": 48424, + "malware": 48425, + "keara": 48426, + "hypebeast": 48427, + "pleb": 48428, + "caylen": 48429, + "nollywood": 48430, + "stonewall": 48431, + "parry": 48432, + "ambs": 48433, + "#fucked": 48434, + "vamooss": 48435, + "viagem": 48436, + "#toocold": 48437, + "clappas": 48438, + "#basketballproblems": 48439, + "rossini": 48440, + "accountants": 48441, + "avp": 48442, + "#thanksobama": 48443, + "huwaa": 48444, + "trabaja": 48445, + "cilla": 48446, + "exicted": 48447, + "libations": 48448, + "transforms": 48449, + "incessant": 48450, + "j'imagine": 48451, + "watchband": 48452, + "numan": 48453, + "perfeccion": 48454, + "quezon": 48455, + "zaza": 48456, + "mutts": 48457, + "epicenter": 48458, + "castiel": 48459, + "brokers": 48460, + "frolic": 48461, + "heretic": 48462, + "documenting": 48463, + "samaritan": 48464, + "arianaa": 48465, + "maais": 48466, + "crypt": 48467, + "terminate": 48468, + "animations": 48469, + "modular": 48470, + "anny": 48471, + "reliant": 48472, + "shara": 48473, + "acosta": 48474, + "aspiration": 48475, + "sal's": 48476, + "rebecca's": 48477, + "nlang": 48478, + "divaa": 48479, + "hibbert": 48480, + "secrecy": 48481, + "quintet": 48482, + "trato": 48483, + "escrito": 48484, + "bitchiest": 48485, + "fcc": 48486, + "#whaat": 48487, + "flacco": 48488, + "sexayy": 48489, + "unwieldy": 48490, + "wretch": 48491, + "fka": 48492, + "hdms": 48493, + "deek": 48494, + "triston": 48495, + "siip": 48496, + "heyoo": 48497, + "borough": 48498, + "cutlets": 48499, + "kitang": 48500, + "#wimbledon": 48501, + "#emabiggestfans": 48502, + "fiinnee": 48503, + "chinks": 48504, + "invitational": 48505, + "comparatively": 48506, + "roca": 48507, + "gaylord": 48508, + "unmarked": 48509, + "nooks": 48510, + "gruff": 48511, + "altas": 48512, + "finaally": 48513, + "ryry": 48514, + "heaad": 48515, + "plsx": 48516, + "#stressfree": 48517, + "baste": 48518, + "precursor": 48519, + "mixx": 48520, + "blinkers": 48521, + "fecal": 48522, + "#sappytweet": 48523, + "thristy": 48524, + "shipleys": 48525, + "#weloveyou": 48526, + "righh": 48527, + "mcdicks": 48528, + "nibbling": 48529, + "urks": 48530, + "intrested": 48531, + "bitta": 48532, + "tiernaa": 48533, + "lainey": 48534, + "amii": 48535, + "youbut": 48536, + "wooly": 48537, + "advocacy": 48538, + "merging": 48539, + "shahrukh": 48540, + "grandad's": 48541, + "actully": 48542, + "walgreen's": 48543, + "heron": 48544, + "flacko": 48545, + "#missya": 48546, + "eva's": 48547, + "gilberto": 48548, + "rulers": 48549, + "carnivores": 48550, + "feoo": 48551, + "studyy": 48552, + "bulaga": 48553, + "mozao": 48554, + "shweet": 48555, + "niaall": 48556, + "#badmood": 48557, + "biien": 48558, + "braving": 48559, + "mez": 48560, + "gvr": 48561, + "refreshes": 48562, + "bina": 48563, + "percocet": 48564, + "reopening": 48565, + "pretension": 48566, + "bellinger": 48567, + "skrr": 48568, + "garza": 48569, + "quinn's": 48570, + "unsound": 48571, + "llamar": 48572, + "kma": 48573, + "xcx": 48574, + "invader": 48575, + "undisclosed": 48576, + "baywatch": 48577, + "pajera": 48578, + "mimir": 48579, + "howler": 48580, + "cackle": 48581, + "dieses": 48582, + "p.o.": 48583, + "qd": 48584, + "georg": 48585, + "#almostthere": 48586, + "ajd": 48587, + "yiss": 48588, + "enjoada": 48589, + "siguio": 48590, + "selfiee": 48591, + "hypothetically": 48592, + "sandles": 48593, + "trimmings": 48594, + "vienes": 48595, + "kul": 48596, + "#joy": 48597, + "taena": 48598, + "maravilha": 48599, + "#brbdying": 48600, + "tracie": 48601, + "blindside": 48602, + "modernism": 48603, + "ouep": 48604, + "fishtail": 48605, + "tigo": 48606, + "faham": 48607, + "wani": 48608, + "mekhi": 48609, + "#canada": 48610, + "kennels": 48611, + "bedlam": 48612, + "raza": 48613, + "caballo": 48614, + "labeouf": 48615, + "raclette": 48616, + "prodigal": 48617, + "tippin": 48618, + "#winter": 48619, + "#tvdfamily": 48620, + "rector": 48621, + "bugis": 48622, + "teleserye": 48623, + "ahamm": 48624, + "chocotorta": 48625, + "pineville": 48626, + "muggle": 48627, + "overhearing": 48628, + "spender": 48629, + "frightful": 48630, + "feelingg": 48631, + "reviens": 48632, + "amelie": 48633, + "paddington": 48634, + "marched": 48635, + "abandonment": 48636, + "goodnighht": 48637, + "bonang": 48638, + "obssesed": 48639, + "comidaa": 48640, + "baq": 48641, + "oonn": 48642, + "sare": 48643, + "diferent": 48644, + "ekg": 48645, + "apaan": 48646, + "#cali": 48647, + "harv": 48648, + "breon": 48649, + "#backtobed": 48650, + "homestyle": 48651, + "alongs": 48652, + "wackk": 48653, + "falo": 48654, + "yazmin": 48655, + "heartbreakingly": 48656, + "thq": 48657, + "beautful": 48658, + "rocco's": 48659, + "fogs": 48660, + "ticketing": 48661, + "skimping": 48662, + "beatbox": 48663, + "spagetti": 48664, + "water's": 48665, + "inherent": 48666, + "#seewhatididthere": 48667, + "#holidays": 48668, + "smuggling": 48669, + "pinga": 48670, + "giva": 48671, + "quarts": 48672, + "toefl": 48673, + "corning": 48674, + "schoolhouse": 48675, + "gammon": 48676, + "wassap": 48677, + "placee": 48678, + "independant": 48679, + "brevity": 48680, + "lanie": 48681, + "yeheyy": 48682, + "dooee": 48683, + "marunong": 48684, + "yhoo": 48685, + "jassy": 48686, + "purrs": 48687, + "yat": 48688, + "inauguration": 48689, + "table's": 48690, + "blinging": 48691, + "sande": 48692, + "covina": 48693, + "fucktards": 48694, + "disana": 48695, + "#wonthedoit": 48696, + "agusto": 48697, + "#bbc": 48698, + "#twerk": 48699, + "#whodat": 48700, + "modeled": 48701, + "leu": 48702, + "trickster": 48703, + "jib": 48704, + "wuddup": 48705, + "hepatitis": 48706, + "reckoned": 48707, + "defiant": 48708, + "ccie": 48709, + "greenish": 48710, + "pampa": 48711, + "recommened": 48712, + "laci": 48713, + "#vikings": 48714, + "loosin": 48715, + "respuesta": 48716, + "ohm": 48717, + "nann": 48718, + "macca": 48719, + "torched": 48720, + "tawag": 48721, + "tiarra": 48722, + "renz": 48723, + "#bot": 48724, + "#homecoming": 48725, + "tpain": 48726, + "sharted": 48727, + "seco": 48728, + "liker": 48729, + "iin": 48730, + "nkotb": 48731, + "iludido": 48732, + "orz": 48733, + "karev": 48734, + "cavani": 48735, + "dench": 48736, + "lemak": 48737, + "dailey": 48738, + "attendre": 48739, + "blakey": 48740, + "dispense": 48741, + "#soundsgoodfeelsgood": 48742, + "malos": 48743, + "alexis's": 48744, + "probb": 48745, + "kahn": 48746, + "adrenalin": 48747, + "avez": 48748, + "vail": 48749, + "windtunnel": 48750, + "welk": 48751, + "fuunn": 48752, + "weyy": 48753, + "beybe": 48754, + "potnas": 48755, + "chismosa": 48756, + "#38": 48757, + "curiousity": 48758, + "firsthand": 48759, + "mola": 48760, + "telefono": 48761, + "soul's": 48762, + "kimxi": 48763, + "niecey": 48764, + "caseras": 48765, + "youlove": 48766, + "pvris": 48767, + "sprouse": 48768, + "gastropub": 48769, + "harmonizing": 48770, + "gargantuan": 48771, + "rupaul": 48772, + "#feelingaccomplished": 48773, + "baybeh": 48774, + "alleviate": 48775, + "atty": 48776, + "reviving": 48777, + "frais": 48778, + "reclaim": 48779, + "bronzed": 48780, + "lamia": 48781, + "breana": 48782, + "bloating": 48783, + "paddys": 48784, + "jicama": 48785, + "dehors": 48786, + "fraps": 48787, + "iker": 48788, + "pooda": 48789, + "defoo": 48790, + "socorroo": 48791, + "sphinx": 48792, + "mony": 48793, + "smite": 48794, + "riverview": 48795, + "brutus": 48796, + "rift": 48797, + "py": 48798, + "washington's": 48799, + "unapologetically": 48800, + "centred": 48801, + "flatline": 48802, + "chopstick": 48803, + "hartley": 48804, + "bedje": 48805, + "mkt": 48806, + "conga": 48807, + "doggone": 48808, + "unobtrusive": 48809, + "smorgasbord": 48810, + "makeups": 48811, + "rabe": 48812, + "grubhub": 48813, + "park's": 48814, + "#dc": 48815, + "afrikaans": 48816, + "breastfeed": 48817, + "swizz": 48818, + "eder": 48819, + "suxx": 48820, + "pleez": 48821, + "tazed": 48822, + "imbeciles": 48823, + "ota": 48824, + "nobs": 48825, + "jinwoo": 48826, + "cudi's": 48827, + "cahsee": 48828, + "valli": 48829, + "bhangra": 48830, + "bcm": 48831, + "delgado": 48832, + "hollaback": 48833, + "matan": 48834, + "hunnam": 48835, + "wedged": 48836, + "walkabout": 48837, + "rickman": 48838, + "wonn": 48839, + "desespera": 48840, + "#levels": 48841, + "clary": 48842, + "neenee": 48843, + "shtt": 48844, + "playfully": 48845, + "omar's": 48846, + "dvp": 48847, + "enlarge": 48848, + "moet": 48849, + "hurrying": 48850, + "ceejay": 48851, + "#cheerprobs": 48852, + "dayyum": 48853, + "#getitright": 48854, + "togethaa": 48855, + "sinaloa": 48856, + "j'aimerais": 48857, + "soloist": 48858, + "michi": 48859, + "mdm": 48860, + "hova": 48861, + "agriculture": 48862, + "hewlett": 48863, + "sven": 48864, + "lockin": 48865, + "correspond": 48866, + "clarice": 48867, + "zar": 48868, + "#motd": 48869, + "vaut": 48870, + "vimto": 48871, + "sancocho": 48872, + "cruzer": 48873, + "incidentally": 48874, + "bevmo": 48875, + "oozes": 48876, + "sabina": 48877, + "feio": 48878, + "#die": 48879, + "sst": 48880, + "nove": 48881, + "merriam": 48882, + "preteens": 48883, + "rekindling": 48884, + "strokin": 48885, + "#trueblood": 48886, + "joven": 48887, + "kamfam": 48888, + "fielder": 48889, + "slaughterhouse": 48890, + "evangelion": 48891, + "chapeau": 48892, + "#musicmondays": 48893, + "#spoilt": 48894, + "#safc": 48895, + "mathieu": 48896, + "slt": 48897, + "storytellers": 48898, + "burgatory": 48899, + "neiman": 48900, + "ssc": 48901, + "#realmadrid": 48902, + "chipotles": 48903, + "supervised": 48904, + "braless": 48905, + "trailing": 48906, + "truncated": 48907, + "bestie's": 48908, + "tristin": 48909, + "inv": 48910, + "yeapp": 48911, + "sankeys": 48912, + "#lovatics": 48913, + "unfollower": 48914, + "decking": 48915, + "qualitative": 48916, + "karenina": 48917, + "maranda": 48918, + "actaully": 48919, + "montana's": 48920, + "prive": 48921, + "flexer": 48922, + "hostia": 48923, + "#beingmaryjane": 48924, + "shukriya": 48925, + "#trump2016": 48926, + "#u": 48927, + "rma": 48928, + "procrastinators": 48929, + "unfortunatly": 48930, + "sedated": 48931, + "kirin": 48932, + "sniffle": 48933, + "butchery": 48934, + "elisabeth": 48935, + "oceanside": 48936, + "noitinha": 48937, + "responda": 48938, + "pollito": 48939, + "#selenagomez": 48940, + "biloxi": 48941, + "visalia": 48942, + "dewayne": 48943, + "sickened": 48944, + "#getwellsoon": 48945, + "brandons": 48946, + "myb": 48947, + "#failure": 48948, + "#gtav": 48949, + "techies": 48950, + "gini": 48951, + "greenbelt": 48952, + "acouple": 48953, + "mannequins": 48954, + "christopher's": 48955, + "lolling": 48956, + "tumi": 48957, + "palawan": 48958, + "kidss": 48959, + "inchallah": 48960, + "rotterdam": 48961, + "#gohabsgo": 48962, + "frontpage": 48963, + "devi": 48964, + "fistful": 48965, + "haad": 48966, + "clothe": 48967, + "obe": 48968, + "detach": 48969, + "godblessyou": 48970, + "mohh": 48971, + "enamoran": 48972, + "amz": 48973, + "dsw": 48974, + "motionless": 48975, + "clashing": 48976, + "spangled": 48977, + "ohhkay": 48978, + "rhinestone": 48979, + "voided": 48980, + "bant": 48981, + "tmoz": 48982, + "congrates": 48983, + "perving": 48984, + "recklessly": 48985, + "=|": 48986, + "grohl": 48987, + "converts": 48988, + "hunnyy": 48989, + "#99": 48990, + "carnivorous": 48991, + "commercialized": 48992, + "presumptuous": 48993, + "fatherless": 48994, + "crapper": 48995, + "mssg": 48996, + "luto": 48997, + "emissions": 48998, + "cameroon": 48999, + "sombra": 49000, + "svc": 49001, + "belo": 49002, + "omgahh": 49003, + "surrogate": 49004, + "#thankmelater": 49005, + "sakto": 49006, + "hara": 49007, + "senna": 49008, + "gcc": 49009, + "freakish": 49010, + "pvr": 49011, + "accessibility": 49012, + "anyonee": 49013, + "#thfc": 49014, + "cheeseball": 49015, + "belk": 49016, + "montagu": 49017, + "nantucket": 49018, + "blindfold": 49019, + "ashly": 49020, + "recalling": 49021, + "keekee": 49022, + "ouaip": 49023, + "ahy": 49024, + "#drinks": 49025, + "voley": 49026, + "#rage": 49027, + "groucho": 49028, + "underclass": 49029, + "selects": 49030, + "tumbleweed": 49031, + "bootlegged": 49032, + "baseless": 49033, + "farsi": 49034, + "kipling": 49035, + "chums": 49036, + "#goodmusic": 49037, + "haapy": 49038, + "chocolatada": 49039, + "couss": 49040, + "dus": 49041, + "archie's": 49042, + "prejudices": 49043, + "#66": 49044, + "pigment": 49045, + "shup": 49046, + "gorra": 49047, + "tudung": 49048, + "twubby": 49049, + "pecs": 49050, + "vir": 49051, + "thinned": 49052, + "fooly": 49053, + "gena": 49054, + "reproduced": 49055, + "dissected": 49056, + "sheepskin": 49057, + "micheladas": 49058, + "epaa": 49059, + "olhando": 49060, + "childishh": 49061, + "#answerthis": 49062, + "panzaa": 49063, + "cooder": 49064, + "colossus": 49065, + "reciprocate": 49066, + "crapping": 49067, + "segal": 49068, + "unquestionably": 49069, + "#fpl": 49070, + "#1fan": 49071, + "sungmin": 49072, + "#strugglebus": 49073, + "#rememberthat": 49074, + "stepbrother": 49075, + "orita": 49076, + "lineage": 49077, + "twinings": 49078, + "#letitgo": 49079, + "gtown": 49080, + "panga": 49081, + "eleh": 49082, + "codys": 49083, + "#ohdear": 49084, + "matando": 49085, + "quicksand": 49086, + "blinder": 49087, + "shreve": 49088, + "doubtfire": 49089, + "twitched": 49090, + "alexander's": 49091, + "#sanayairani": 49092, + "ooii": 49093, + "jazlyn": 49094, + "whiteout": 49095, + "chariots": 49096, + "barcode": 49097, + "cher's": 49098, + "aok": 49099, + "pittsburgh's": 49100, + "scaled": 49101, + "stawwpp": 49102, + "putita": 49103, + "pertains": 49104, + "customary": 49105, + "elaina": 49106, + "toting": 49107, + "knowles": 49108, + "underseasoned": 49109, + "dispicable": 49110, + "masterclass": 49111, + "caretaker": 49112, + "muda": 49113, + "bitaw": 49114, + "himchan": 49115, + "sowy": 49116, + "history's": 49117, + "parlour": 49118, + "scho": 49119, + "oll": 49120, + "gpx": 49121, + "lawton": 49122, + "honeybee": 49123, + "ern": 49124, + "seguindoo": 49125, + "mlife": 49126, + "gallina": 49127, + "surfed": 49128, + "piston": 49129, + "deasia": 49130, + "#manutd": 49131, + "tali": 49132, + "asadoo": 49133, + "singalong": 49134, + "tapenade": 49135, + "sharply": 49136, + "honks": 49137, + "freudian": 49138, + "tach": 49139, + "x'd": 49140, + "averted": 49141, + "blablabla": 49142, + "beebtii": 49143, + "selly": 49144, + "#obsession": 49145, + "eunhae": 49146, + "arriesga": 49147, + "deelish": 49148, + "accuses": 49149, + "modulator": 49150, + "kinesiology": 49151, + "thais": 49152, + "pizzelle": 49153, + "wiw": 49154, + "vaina": 49155, + "tantas": 49156, + "wuts": 49157, + "sterkte": 49158, + "necked": 49159, + "eben": 49160, + "burly": 49161, + "repackage": 49162, + "red's": 49163, + "bracing": 49164, + "pundit": 49165, + "lluevaa": 49166, + "mikeyy": 49167, + "#sheesh": 49168, + "metheny": 49169, + "swaddle": 49170, + "chirstmas": 49171, + "pilee": 49172, + "lae": 49173, + "#gohardorgohome": 49174, + "panning": 49175, + "conserve": 49176, + "readability": 49177, + "ashtanga": 49178, + "poseur": 49179, + "farmington": 49180, + "cnu": 49181, + "#nabillaisback": 49182, + "shasta": 49183, + "curbs": 49184, + "korg": 49185, + "lutheran": 49186, + "inu": 49187, + "tropez": 49188, + "holuu": 49189, + "constraints": 49190, + "hyperion": 49191, + "wolff": 49192, + "miming": 49193, + "vibrators": 49194, + "destiney": 49195, + "cheirinho": 49196, + "#ihateschool": 49197, + "boutt": 49198, + "zn": 49199, + "isaid": 49200, + "rumple": 49201, + "deltas": 49202, + "awesom": 49203, + "kneeling": 49204, + "#teamdarkskin": 49205, + "believee": 49206, + "doner": 49207, + "discombobulated": 49208, + "redeemer": 49209, + "sensi": 49210, + "hellhole": 49211, + "kingdoms": 49212, + "tardis": 49213, + "weres": 49214, + "templates": 49215, + "shire": 49216, + "fatz": 49217, + "brubeck": 49218, + "farmville": 49219, + "laina": 49220, + "laylay": 49221, + "nbhd": 49222, + "zg": 49223, + "proprietor": 49224, + "tormented": 49225, + "cally": 49226, + "parchment": 49227, + "kipper": 49228, + "economist": 49229, + "perplexing": 49230, + "fked": 49231, + "osmond": 49232, + "jodio": 49233, + "j'assume": 49234, + "chup": 49235, + "rayven": 49236, + "primaa": 49237, + "spectra": 49238, + "donovan's": 49239, + "napster": 49240, + "vtf": 49241, + "ahahh": 49242, + "nashs": 49243, + "#retailtherapy": 49244, + "disruptive": 49245, + "mcmurtry": 49246, + "hemisphere": 49247, + "earing": 49248, + "campground": 49249, + "leesh": 49250, + "cumplo": 49251, + "#hair": 49252, + "beasley": 49253, + "tippers": 49254, + "munches": 49255, + "sones": 49256, + "distorts": 49257, + "ennui": 49258, + "bo's": 49259, + "equinox": 49260, + "raucous": 49261, + "substantive": 49262, + "worl": 49263, + "lindinha": 49264, + "bencede": 49265, + "foursquare": 49266, + "holloween": 49267, + "borrows": 49268, + "lanier": 49269, + "carin": 49270, + "britts": 49271, + "pomade": 49272, + "conley": 49273, + "no's": 49274, + "td's": 49275, + "cheba": 49276, + "cdo": 49277, + "lawry's": 49278, + "foothill": 49279, + "sorbets": 49280, + "lenient": 49281, + "moorree": 49282, + "stepdaddy": 49283, + "gordaa": 49284, + "meows": 49285, + "torts": 49286, + "mvs": 49287, + "congregation": 49288, + "uphold": 49289, + "woul": 49290, + "juicee": 49291, + "mimpi": 49292, + "welcs": 49293, + "#princessprobs": 49294, + "utiful": 49295, + "zel": 49296, + "redwood": 49297, + "begginer": 49298, + "blowfish": 49299, + "ariel's": 49300, + "phaha": 49301, + "sociales": 49302, + "erika's": 49303, + "chaau": 49304, + "sumbdy": 49305, + "pandai": 49306, + "#toosoon": 49307, + "berly": 49308, + "dumbness": 49309, + "liquorice": 49310, + "sprinter": 49311, + "hoots": 49312, + "unrealized": 49313, + "tolstoy": 49314, + "fenders": 49315, + "feaa": 49316, + "thrusting": 49317, + "cherche": 49318, + "chuck's": 49319, + "promethazine": 49320, + "chancho": 49321, + "sakho": 49322, + "#prime": 49323, + "makeshift": 49324, + "accelerated": 49325, + "janee": 49326, + "muesli": 49327, + "countertops": 49328, + "entertaing": 49329, + "cerita": 49330, + "friendz": 49331, + "buttas": 49332, + "dabb": 49333, + "hangman": 49334, + "rattlesnake": 49335, + "alleys": 49336, + "chim": 49337, + "betted": 49338, + "awready": 49339, + "negan": 49340, + "wapali": 49341, + "#shadowhunters": 49342, + "repetir": 49343, + "ruffle": 49344, + "raekwon": 49345, + "rada": 49346, + "fortnight": 49347, + "cringeworthy": 49348, + "proto": 49349, + "connick": 49350, + "absorbs": 49351, + "msd": 49352, + "staticky": 49353, + "bapak": 49354, + "woohoooo": 49355, + "#plz": 49356, + "#sharkweek": 49357, + "drunkie": 49358, + "eda": 49359, + "rotator": 49360, + "aggressiveness": 49361, + "leeze": 49362, + "visualization": 49363, + "nwo": 49364, + "#celebrityawards2015": 49365, + "naye": 49366, + "holiss": 49367, + "cydney": 49368, + "thow": 49369, + "hackney": 49370, + "chase's": 49371, + "shekinah": 49372, + "midsummer": 49373, + "#wba": 49374, + "#nickiminaj": 49375, + "conta": 49376, + "predictible": 49377, + "mygod": 49378, + "shams": 49379, + "officialy": 49380, + "niego": 49381, + "#missyoualready": 49382, + "lovingg": 49383, + "reeve": 49384, + "corpses": 49385, + "josey": 49386, + "caiden": 49387, + "eckhart": 49388, + "assassinated": 49389, + "chinx": 49390, + "ranz": 49391, + "hahahahhahahahaha": 49392, + "babii": 49393, + "starwood": 49394, + "escuchado": 49395, + "hydrating": 49396, + "wrights": 49397, + "tobin": 49398, + "adel": 49399, + "scorched": 49400, + "anj": 49401, + "pidas": 49402, + "kisha": 49403, + "#ugly": 49404, + "afterparty": 49405, + "roadie": 49406, + "contenta": 49407, + "singer's": 49408, + "furs": 49409, + "habang": 49410, + ":-)}": 49411, + "chora": 49412, + "braylon": 49413, + "mujhe": 49414, + "absorbant": 49415, + "borg": 49416, + "alcorn": 49417, + "microbrews": 49418, + "janoskian": 49419, + "deangelo": 49420, + "#mobwives": 49421, + "sco": 49422, + "fuentes": 49423, + "maker's": 49424, + "stella's": 49425, + "respire": 49426, + "lithuania": 49427, + "playmobil": 49428, + "#missedthem": 49429, + "#georgestrait": 49430, + "sweetiee": 49431, + "pompey": 49432, + "maneva": 49433, + "blase": 49434, + "fonk": 49435, + "dss": 49436, + "bimmer": 49437, + "syn": 49438, + "supervise": 49439, + "pcc": 49440, + "scs": 49441, + "screwdrivers": 49442, + "enamorarse": 49443, + "fawad": 49444, + "meps": 49445, + "missu": 49446, + "saraa": 49447, + "nylabone": 49448, + "fcck": 49449, + "#dcfc": 49450, + "tute": 49451, + "antwan": 49452, + "gamine": 49453, + "francesca's": 49454, + "kokomo": 49455, + "psstt": 49456, + "brokest": 49457, + "#history": 49458, + "rillos": 49459, + "gno": 49460, + "manfrotto": 49461, + "urgg": 49462, + "ibaka": 49463, + "babaca": 49464, + "#bestshowever": 49465, + "enojar": 49466, + "neurologist": 49467, + "vaporizer": 49468, + "expecially": 49469, + "skunks": 49470, + "obscured": 49471, + "sneakerhead": 49472, + "inspirit": 49473, + "dmss": 49474, + "sirvo": 49475, + "kokoro": 49476, + "begone": 49477, + "patrolling": 49478, + "conroy": 49479, + "vladimir": 49480, + "leappad": 49481, + "umiyak": 49482, + "qet": 49483, + "nayy": 49484, + "#mtvawardsstar": 49485, + "barros": 49486, + "ooze": 49487, + "installers": 49488, + "redskin": 49489, + "trifflin": 49490, + "hijabi": 49491, + "joga": 49492, + "gunplay": 49493, + "aih": 49494, + "bateu": 49495, + "popstar": 49496, + "griping": 49497, + "cabelas": 49498, + "gravitate": 49499, + "beret": 49500, + "kes": 49501, + "taff": 49502, + "malala": 49503, + "casal": 49504, + "sani": 49505, + "derivatives": 49506, + "nesco": 49507, + "femi": 49508, + "retina": 49509, + "outdo": 49510, + "airplay": 49511, + "bloodwork": 49512, + "cheddar's": 49513, + "#frustrating": 49514, + "#onhere": 49515, + "clumsiest": 49516, + "nha": 49517, + "bethany's": 49518, + "jamila": 49519, + "loveless": 49520, + "comido": 49521, + "wafting": 49522, + "wuhuu": 49523, + "#reality": 49524, + "#cuddles": 49525, + "kasia": 49526, + "payat": 49527, + "ruptured": 49528, + "ginza": 49529, + "krzr": 49530, + "complainer": 49531, + "richtig": 49532, + "morehead": 49533, + "#payback": 49534, + "sanus": 49535, + "grant's": 49536, + "katharine": 49537, + "sabtu": 49538, + "weirdoo": 49539, + "satc": 49540, + "nationally": 49541, + "tbe": 49542, + "audiobooks": 49543, + "itemized": 49544, + "eze": 49545, + "#move": 49546, + "#insidejoke": 49547, + "#fu": 49548, + "nannies": 49549, + "staci": 49550, + "narco": 49551, + "echos": 49552, + "tabernacle": 49553, + "refunding": 49554, + "nurture": 49555, + "divinity": 49556, + "bootyhole": 49557, + "tignan": 49558, + "#yeezus": 49559, + "thnku": 49560, + "mesess": 49561, + "sev": 49562, + "mustafa": 49563, + "cyclops": 49564, + "seperately": 49565, + "huron": 49566, + "geniaa": 49567, + "namora": 49568, + "jaga": 49569, + "jairo": 49570, + "getwellsoon": 49571, + "untung": 49572, + "#pens": 49573, + "evaluations": 49574, + "presently": 49575, + "perros": 49576, + "kurdish": 49577, + "aass": 49578, + "salva": 49579, + "#middleschoolmemories": 49580, + "despierten": 49581, + "corden": 49582, + "fisted": 49583, + "slackers": 49584, + "mahalo": 49585, + "gabes": 49586, + "enamorarme": 49587, + "#cavs": 49588, + "slandered": 49589, + "roadkill": 49590, + "halfs": 49591, + "magari": 49592, + "#unbelievable": 49593, + "yolks": 49594, + "ralphie": 49595, + "dalawang": 49596, + "ene": 49597, + "#kik": 49598, + "ghostwriter": 49599, + "enron": 49600, + "sufficed": 49601, + "byrds": 49602, + "#musicmonday": 49603, + "manood": 49604, + "#lonerstatus": 49605, + "rabak": 49606, + "sweetbreads": 49607, + "blondies": 49608, + "oppressive": 49609, + "prohibition": 49610, + "daph": 49611, + "atras": 49612, + "dornan": 49613, + "duchita": 49614, + "yg's": 49615, + "detrimental": 49616, + "enraged": 49617, + "oakenfold": 49618, + "evokes": 49619, + "beetroot": 49620, + "underdressed": 49621, + "brib": 49622, + "furioso": 49623, + "#mothersday": 49624, + "idgf": 49625, + "louis's": 49626, + "kidda": 49627, + "judah": 49628, + "vuelo": 49629, + "wizz": 49630, + "kendra's": 49631, + "cagney": 49632, + "forking": 49633, + "pitta": 49634, + "fairways": 49635, + "#45": 49636, + "unsubscribe": 49637, + "heureuse": 49638, + "ilocos": 49639, + "glynne": 49640, + "hawke": 49641, + "analysts": 49642, + "staining": 49643, + "spinato's": 49644, + "damsel": 49645, + "spreadsheet": 49646, + "huggles": 49647, + "apir": 49648, + "blushin": 49649, + "talbot": 49650, + "christain": 49651, + "bide": 49652, + "grandpop": 49653, + "bandeau": 49654, + "#praisejesus": 49655, + "iration": 49656, + "douse": 49657, + "beotch": 49658, + "#dukenation": 49659, + "lpda": 49660, + "quiting": 49661, + "fantasma": 49662, + "spied": 49663, + "huzzah": 49664, + "manteca": 49665, + "#unfollowed": 49666, + "jaay": 49667, + "fllwd": 49668, + "bloodstream": 49669, + "ancho": 49670, + "mtt": 49671, + "pixelated": 49672, + "youngs": 49673, + "omit": 49674, + "sts": 49675, + "canelones": 49676, + "goeiemorgen": 49677, + "amine": 49678, + "haas": 49679, + "hoochies": 49680, + "calipers": 49681, + "vasco": 49682, + "mastiff": 49683, + "witchy": 49684, + "shelling": 49685, + "savour": 49686, + "manca": 49687, + "yiie": 49688, + "kadiri": 49689, + "poochie": 49690, + "traviata": 49691, + "fac": 49692, + "murakami": 49693, + "o'neal": 49694, + "multiplying": 49695, + "#hyfr": 49696, + "daq": 49697, + "soltero": 49698, + "etched": 49699, + "reels": 49700, + "crusades": 49701, + "candids": 49702, + "#suicidesquad": 49703, + "vecino": 49704, + "sahabat": 49705, + "menang": 49706, + "retold": 49707, + "hummers": 49708, + "sammiches": 49709, + "eulogy": 49710, + "substituting": 49711, + "leandro": 49712, + "knws": 49713, + "anuncio": 49714, + "quizup": 49715, + "showoff": 49716, + "distortions": 49717, + "toasties": 49718, + "ocarina": 49719, + "mauled": 49720, + "kis": 49721, + "prescient": 49722, + "nakatulog": 49723, + "clintons": 49724, + "unnamed": 49725, + "minerva": 49726, + "heffer": 49727, + "gms": 49728, + "videoke": 49729, + "ahnoo": 49730, + "#homework": 49731, + "sagot": 49732, + "odiar": 49733, + "nakakatakot": 49734, + "eegees": 49735, + "faat": 49736, + "pillowcase": 49737, + "hakim": 49738, + "grooms": 49739, + "veneno": 49740, + "ornate": 49741, + "undelivered": 49742, + "cabbie": 49743, + "stephenville": 49744, + "gumala": 49745, + "jodoh": 49746, + "dorme": 49747, + "ficando": 49748, + "zoos": 49749, + "squandered": 49750, + "savoury": 49751, + "paragon": 49752, + "swann": 49753, + "paining": 49754, + "ashe": 49755, + "avanti": 49756, + "welles": 49757, + "susana": 49758, + "nahuel": 49759, + "ivette": 49760, + "malaa": 49761, + "beyondd": 49762, + "dissapear": 49763, + "aldridge": 49764, + "barracks": 49765, + "arrghh": 49766, + "famine": 49767, + "teamm": 49768, + "dunya": 49769, + "bottlemen": 49770, + "creaking": 49771, + "marci": 49772, + "hydrant": 49773, + "sightings": 49774, + "consistantly": 49775, + "highed": 49776, + "#choiceyoutuber": 49777, + "valeuu": 49778, + "joong": 49779, + "#tlc": 49780, + "l'atelier": 49781, + "tole": 49782, + "surrendered": 49783, + "#blessing": 49784, + "prerequisite": 49785, + "balenciaga": 49786, + "altman": 49787, + "interrogated": 49788, + "blesser": 49789, + "jurong": 49790, + "nighhtt": 49791, + "saggin": 49792, + "gwarn": 49793, + "#favmovie": 49794, + "#bestfriendgoals": 49795, + "agedashi": 49796, + "blandest": 49797, + "jdm": 49798, + "sra": 49799, + "ecc": 49800, + "mathematically": 49801, + "baackk": 49802, + "wrld": 49803, + "alivia": 49804, + "myloves": 49805, + "geaux": 49806, + "ajajajaja": 49807, + "#online": 49808, + "zomg": 49809, + "#justgirlythings": 49810, + "#frfr": 49811, + "gatito": 49812, + "scoob": 49813, + "mariner": 49814, + "climatic": 49815, + "jbu": 49816, + "beca": 49817, + "chimpanzee": 49818, + "complicating": 49819, + "#recovery": 49820, + "tde": 49821, + "needaa": 49822, + "adriel": 49823, + "shaniya": 49824, + "upi": 49825, + "juni": 49826, + "trent's": 49827, + "aam": 49828, + "cofee": 49829, + "reinventing": 49830, + "lipa": 49831, + "danilo": 49832, + "deron": 49833, + "#one": 49834, + "boomtown": 49835, + "transparency": 49836, + "#cake": 49837, + "#coyi": 49838, + "pobresita": 49839, + "kandy": 49840, + "eve's": 49841, + "amplify": 49842, + "calmness": 49843, + "baptize": 49844, + "o'hara": 49845, + "aquino": 49846, + "ecuadorian": 49847, + "hunnits": 49848, + "boxin": 49849, + "emilys": 49850, + "cheska": 49851, + "diligence": 49852, + "cte": 49853, + "deft": 49854, + "levin": 49855, + "contributes": 49856, + "baggie": 49857, + "mcclintock": 49858, + "tremaine": 49859, + "buhbye": 49860, + "dani's": 49861, + "tehehehe": 49862, + "cunty": 49863, + "#giants": 49864, + "dejado": 49865, + "hurmm": 49866, + "#newmusic": 49867, + "bpd": 49868, + "bara": 49869, + "shan't": 49870, + "aguas": 49871, + "holloway": 49872, + "jill's": 49873, + "manang": 49874, + "armaan": 49875, + "melb": 49876, + "snookie": 49877, + "borracho": 49878, + "nellis": 49879, + "humboldt": 49880, + "frita": 49881, + "impolite": 49882, + "handlebars": 49883, + "#teambahay": 49884, + "cambiado": 49885, + "porfavoor": 49886, + "barbed": 49887, + "dieters": 49888, + "colette": 49889, + "estonia": 49890, + "dail": 49891, + "adventurer": 49892, + "believeable": 49893, + "mtg": 49894, + "gudnight": 49895, + "odias": 49896, + "tabiki": 49897, + "siyang": 49898, + "retrieved": 49899, + "dairies": 49900, + "santeria": 49901, + "brunt": 49902, + "daffy": 49903, + "porqueria": 49904, + "halloumi": 49905, + "kimball": 49906, + "j'aille": 49907, + "ferias": 49908, + "#therealmvp": 49909, + "jaam": 49910, + "hoosiers": 49911, + "dyno": 49912, + "spontaneity": 49913, + "awed": 49914, + "tobe": 49915, + "fillin": 49916, + "#killinit": 49917, + "#lad": 49918, + "spikers": 49919, + "dequan": 49920, + "matti": 49921, + "#hateschool": 49922, + "confucius": 49923, + "savanah": 49924, + "dessus": 49925, + "dcm": 49926, + "character's": 49927, + "forester": 49928, + "#impossible": 49929, + "holyshit": 49930, + "bruno's": 49931, + "shannara": 49932, + "comers": 49933, + "weightless": 49934, + "terima": 49935, + "jaj": 49936, + "twiter": 49937, + "vasy": 49938, + "jcat": 49939, + "#congratulations": 49940, + "gy": 49941, + "wagan": 49942, + "liberated": 49943, + "stingrays": 49944, + "lakad": 49945, + "apaixonei": 49946, + "sextaa": 49947, + "pleeze": 49948, + "{:": 49949, + "locating": 49950, + "hablarme": 49951, + "seguido": 49952, + "#myboy": 49953, + "somebdy": 49954, + "nouis": 49955, + "noomf": 49956, + "sidebar": 49957, + "hitchcock's": 49958, + "perreo": 49959, + "#hoesbelike": 49960, + "trackman": 49961, + "cuase": 49962, + "lampoon": 49963, + "reinforces": 49964, + "contradicted": 49965, + "blanky": 49966, + "disrupt": 49967, + "nourish": 49968, + "tebrikler": 49969, + "tiffani": 49970, + "#lastnight": 49971, + "shackled": 49972, + "bandsaw": 49973, + "kinsella": 49974, + "mimicking": 49975, + "preppin": 49976, + "#biglove": 49977, + "txf": 49978, + "morocha": 49979, + "atf": 49980, + ".o.a.t": 49981, + "uniforme": 49982, + "manalo": 49983, + "#safehaven": 49984, + "doormir": 49985, + "hufflepuff": 49986, + "botswana": 49987, + "calli": 49988, + "walled": 49989, + "slammer": 49990, + "marist": 49991, + "alin": 49992, + "insted": 49993, + "rio's": 49994, + "lett": 49995, + "guelph": 49996, + "preguntas": 49997, + "arod": 49998, + "#fuckem": 49999 +} \ No newline at end of file diff --git a/scripts/analyze_all_results.py b/scripts/analyze_all_results.py new file mode 100644 index 0000000..299e1be --- /dev/null +++ b/scripts/analyze_all_results.py @@ -0,0 +1,40 @@ +from __future__ import print_function + +# allow us to import the codebase directory +import sys +import glob +import numpy as np +from os.path import dirname, abspath +sys.path.insert(0, dirname(dirname(abspath(__file__)))) + +DATASETS = ['SE0714', 'Olympic', 'PsychExp', 'SS-Twitter', 'SS-Youtube', + 'SCv1', 'SV2-GEN'] # 'SE1604' excluded due to Twitter's ToS + +def get_results(dset): + METHOD = 'last' + RESULTS_DIR = 'results/' + RESULT_PATHS = glob.glob('{}/{}_{}_*_results.txt'.format(RESULTS_DIR, dset, METHOD)) + assert len(RESULT_PATHS) + + scores = [] + for path in RESULT_PATHS: + with open(path) as f: + score = f.readline().split(':')[1] + scores.append(float(score)) + + average = np.mean(scores) + maximum = max(scores) + minimum = min(scores) + std = np.std(scores) + + print('Dataset: {}'.format(dset)) + print('Method: {}'.format(METHOD)) + print('Number of results: {}'.format(len(scores))) + print('--------------------------') + print('Average: {}'.format(average)) + print('Maximum: {}'.format(maximum)) + print('Minimum: {}'.format(minimum)) + print('Standard deviaton: {}'.format(std)) + +for dset in DATASETS: + get_results(dset) diff --git a/scripts/analyze_results.py b/scripts/analyze_results.py new file mode 100644 index 0000000..7040a78 --- /dev/null +++ b/scripts/analyze_results.py @@ -0,0 +1,39 @@ +from __future__ import print_function + +import sys +import glob +import numpy as np + +DATASET = 'SS-Twitter' # 'SE1604' excluded due to Twitter's ToS +METHOD = 'new' + +# Optional usage: analyze_results.py +if len(sys.argv) == 3: + DATASET = sys.argv[1] + METHOD = sys.argv[2] + +RESULTS_DIR = 'results/' +RESULT_PATHS = glob.glob('{}/{}_{}_*_results.txt'.format(RESULTS_DIR, DATASET, METHOD)) + +if not RESULT_PATHS: + print('Could not find results for \'{}\' using \'{}\' in directory \'{}\'.'.format(DATASET, METHOD, RESULTS_DIR)) +else: + scores = [] + for path in RESULT_PATHS: + with open(path) as f: + score = f.readline().split(':')[1] + scores.append(float(score)) + + average = np.mean(scores) + maximum = max(scores) + minimum = min(scores) + std = np.std(scores) + + print('Dataset: {}'.format(DATASET)) + print('Method: {}'.format(METHOD)) + print('Number of results: {}'.format(len(scores))) + print('--------------------------') + print('Average: {}'.format(average)) + print('Maximum: {}'.format(maximum)) + print('Minimum: {}'.format(minimum)) + print('Standard deviaton: {}'.format(std)) diff --git a/scripts/calculate_coverages.py b/scripts/calculate_coverages.py new file mode 100644 index 0000000..e98a314 --- /dev/null +++ b/scripts/calculate_coverages.py @@ -0,0 +1,85 @@ +from __future__ import print_function +import pickle +import json +import csv +import sys +from io import open + +# Allow us to import the torchmoji directory +from os.path import dirname, abspath +sys.path.insert(0, dirname(dirname(abspath(__file__)))) + +from torchmoji.sentence_tokenizer import SentenceTokenizer, coverage + +IS_PYTHON2 = int(sys.version[0]) == 2 + +OUTPUT_PATH = 'coverage.csv' +DATASET_PATHS = [ + '../data/Olympic/raw.pickle', + '../data/PsychExp/raw.pickle', + '../data/SCv1/raw.pickle', + '../data/SCv2-GEN/raw.pickle', + '../data/SE0714/raw.pickle', + #'../data/SE1604/raw.pickle', # Excluded due to Twitter's ToS + '../data/SS-Twitter/raw.pickle', + '../data/SS-Youtube/raw.pickle', + ] + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) + +results = [] +for p in DATASET_PATHS: + coverage_result = [p] + print('Calculating coverage for {}'.format(p)) + with open(p, 'rb') as f: + if IS_PYTHON2: + s = pickle.load(f) + else: + s = pickle.load(f, fix_imports=True) + + # Decode data + try: + s['texts'] = [unicode(x) for x in s['texts']] + except UnicodeDecodeError: + s['texts'] = [x.decode('utf-8') for x in s['texts']] + + # Own + st = SentenceTokenizer({}, 30) + tests, dicts, _ = st.split_train_val_test(s['texts'], s['info'], + [s['train_ind'], + s['val_ind'], + s['test_ind']], + extend_with=10000) + coverage_result.append(coverage(tests[2])) + + # Last + st = SentenceTokenizer(vocab, 30) + tests, dicts, _ = st.split_train_val_test(s['texts'], s['info'], + [s['train_ind'], + s['val_ind'], + s['test_ind']], + extend_with=0) + coverage_result.append(coverage(tests[2])) + + # Full + st = SentenceTokenizer(vocab, 30) + tests, dicts, _ = st.split_train_val_test(s['texts'], s['info'], + [s['train_ind'], + s['val_ind'], + s['test_ind']], + extend_with=10000) + coverage_result.append(coverage(tests[2])) + + results.append(coverage_result) + +with open(OUTPUT_PATH, 'wb') as csvfile: + writer = csv.writer(csvfile, delimiter='\t', lineterminator='\n') + writer.writerow(['Dataset', 'Own', 'Last', 'Full']) + for i, row in enumerate(results): + try: + writer.writerow(row) + except: + print("Exception at row {}!".format(i)) + +print('Saved to {}'.format(OUTPUT_PATH)) diff --git a/scripts/convert_all_datasets.py b/scripts/convert_all_datasets.py new file mode 100644 index 0000000..6957241 --- /dev/null +++ b/scripts/convert_all_datasets.py @@ -0,0 +1,105 @@ +from __future__ import print_function + +import json +import math +import pickle +import sys +from io import open +import numpy as np +from os.path import abspath, dirname +sys.path.insert(0, dirname(dirname(abspath(__file__)))) + +from torchmoji.word_generator import WordGenerator +from torchmoji.create_vocab import VocabBuilder +from torchmoji.sentence_tokenizer import SentenceTokenizer, extend_vocab, coverage +from torchmoji.tokenizer import tokenize + +IS_PYTHON2 = int(sys.version[0]) == 2 + +DATASETS = [ + 'Olympic', + 'PsychExp', + 'SCv1', + 'SCv2-GEN', + 'SE0714', + #'SE1604', # Excluded due to Twitter's ToS + 'SS-Twitter', + 'SS-Youtube', + ] + +DIR = '../data' +FILENAME_RAW = 'raw.pickle' +FILENAME_OWN = 'own_vocab.pickle' +FILENAME_OUR = 'twitter_vocab.pickle' +FILENAME_COMBINED = 'combined_vocab.pickle' + + +def roundup(x): + return int(math.ceil(x / 10.0)) * 10 + + +def format_pickle(dset, train_texts, val_texts, test_texts, train_labels, val_labels, test_labels): + return {'dataset': dset, + 'train_texts': train_texts, + 'val_texts': val_texts, + 'test_texts': test_texts, + 'train_labels': train_labels, + 'val_labels': val_labels, + 'test_labels': test_labels} + +def convert_dataset(filepath, extend_with, vocab): + print('-- Generating {} '.format(filepath)) + sys.stdout.flush() + st = SentenceTokenizer(vocab, maxlen) + tokenized, dicts, _ = st.split_train_val_test(texts, + labels, + [data['train_ind'], + data['val_ind'], + data['test_ind']], + extend_with=extend_with) + pick = format_pickle(dset, tokenized[0], tokenized[1], tokenized[2], + dicts[0], dicts[1], dicts[2]) + with open(filepath, 'w') as f: + pickle.dump(pick, f) + cover = coverage(tokenized[2]) + + print(' done. Coverage: {}'.format(cover)) + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) + +for dset in DATASETS: + print('Converting {}'.format(dset)) + + PATH_RAW = '{}/{}/{}'.format(DIR, dset, FILENAME_RAW) + PATH_OWN = '{}/{}/{}'.format(DIR, dset, FILENAME_OWN) + PATH_OUR = '{}/{}/{}'.format(DIR, dset, FILENAME_OUR) + PATH_COMBINED = '{}/{}/{}'.format(DIR, dset, FILENAME_COMBINED) + + with open(PATH_RAW, 'rb') as dataset: + if IS_PYTHON2: + data = pickle.load(dataset) + else: + data = pickle.load(dataset, fix_imports=True) + + # Decode data + try: + texts = [unicode(x) for x in data['texts']] + except UnicodeDecodeError: + texts = [x.decode('utf-8') for x in data['texts']] + + wg = WordGenerator(texts) + vb = VocabBuilder(wg) + vb.count_all_words() + + # Calculate max length of sequences considered + # Adjust batch_size accordingly to prevent GPU overflow + lengths = [len(tokenize(t)) for t in texts] + maxlen = roundup(np.percentile(lengths, 80.0)) + + # Extract labels + labels = [x['label'] for x in data['info']] + + convert_dataset(PATH_OWN, 50000, {}) + convert_dataset(PATH_OUR, 0, vocab) + convert_dataset(PATH_COMBINED, 10000, vocab) diff --git a/scripts/download_weights.py b/scripts/download_weights.py new file mode 100644 index 0000000..7bb1d0a --- /dev/null +++ b/scripts/download_weights.py @@ -0,0 +1,64 @@ +from __future__ import print_function +import os +from subprocess import call + +curr_folder = os.path.basename(os.path.normpath(os.getcwd())) + +weights_filename = 'pytorch_model.bin' +weights_folder = 'model' +weights_path = '{}/{}'.format(weights_folder, weights_filename) +if curr_folder == 'scripts': + weights_path = '../' + weights_path +weights_download_link = 'https://www.dropbox.com/s/q8lax9ary32c7t9/pytorch_model.bin?dl=0#' + + +MB_FACTOR = float(1<<20) + +def prompt(): + while True: + valid = { + 'y': True, + 'ye': True, + 'yes': True, + 'n': False, + 'no': False, + } + choice = raw_input().lower() + if choice in valid: + return valid[choice] + else: + print('Please respond with \'y\' or \'n\' (or \'yes\' or \'no\')') + +download = True +if os.path.exists(weights_path): + print('Weight file already exists at {}. Would you like to redownload it anyway? [y/n]'.format(weights_path)) + download = prompt() + already_exists = True +else: + already_exists = False + +if download: + print('About to download the pretrained weights file from {}'.format(weights_download_link)) + if already_exists == False: + print('The size of the file is roughly 85MB. Continue? [y/n]') + else: + os.unlink(weights_path) + + if already_exists or prompt(): + print('Downloading...') + + #urllib.urlretrieve(weights_download_link, weights_path) + #with open(weights_path,'wb') as f: + # f.write(requests.get(weights_download_link).content) + + # downloading using wget due to issues with urlretrieve and requests + sys_call = 'wget {} -O {}'.format(weights_download_link, os.path.abspath(weights_path)) + print("Running system call: {}".format(sys_call)) + call(sys_call, shell=True) + + if os.path.getsize(weights_path) / MB_FACTOR < 80: + raise ValueError("Download finished, but the resulting file is too small! " + + "It\'s only {} bytes.".format(os.path.getsize(weights_path))) + print('Downloaded weights to {}'.format(weights_path)) +else: + print('Exiting.') diff --git a/scripts/finetune_dataset.py b/scripts/finetune_dataset.py new file mode 100644 index 0000000..a60c8b6 --- /dev/null +++ b/scripts/finetune_dataset.py @@ -0,0 +1,109 @@ +""" Finetuning example. +""" +from __future__ import print_function +import sys +import numpy as np +from os.path import abspath, dirname +sys.path.insert(0, dirname(dirname(abspath(__file__)))) + +import json +import math +from torchmoji.model_def import torchmoji_transfer +from torchmoji.global_variables import PRETRAINED_PATH, VOCAB_PATH +from torchmoji.finetuning import ( + load_benchmark, + finetune) +from torchmoji.class_avg_finetuning import class_avg_finetune + +def roundup(x): + return int(math.ceil(x / 10.0)) * 10 + + +# Format: (dataset_name, +# path_to_dataset, +# nb_classes, +# use_f1_score) +DATASETS = [ + #('SE0714', '../data/SE0714/raw.pickle', 3, True), + #('Olympic', '../data/Olympic/raw.pickle', 4, True), + #('PsychExp', '../data/PsychExp/raw.pickle', 7, True), + #('SS-Twitter', '../data/SS-Twitter/raw.pickle', 2, False), + ('SS-Youtube', '../data/SS-Youtube/raw.pickle', 2, False), + #('SE1604', '../data/SE1604/raw.pickle', 3, False), # Excluded due to Twitter's ToS + #('SCv1', '../data/SCv1/raw.pickle', 2, True), + #('SCv2-GEN', '../data/SCv2-GEN/raw.pickle', 2, True) + ] + +RESULTS_DIR = 'results' + +# 'new' | 'last' | 'full' | 'chain-thaw' +FINETUNE_METHOD = 'last' +VERBOSE = 1 + +nb_tokens = 50000 +nb_epochs = 1000 +epoch_size = 1000 + +with open(VOCAB_PATH, 'r') as f: + vocab = json.load(f) + +for rerun_iter in range(5): + for p in DATASETS: + + # debugging + assert len(vocab) == nb_tokens + + dset = p[0] + path = p[1] + nb_classes = p[2] + use_f1_score = p[3] + + if FINETUNE_METHOD == 'last': + extend_with = 0 + elif FINETUNE_METHOD in ['new', 'full', 'chain-thaw']: + extend_with = 10000 + else: + raise ValueError('Finetuning method not recognised!') + + # Load dataset. + data = load_benchmark(path, vocab, extend_with=extend_with) + + (X_train, y_train) = (data['texts'][0], data['labels'][0]) + (X_val, y_val) = (data['texts'][1], data['labels'][1]) + (X_test, y_test) = (data['texts'][2], data['labels'][2]) + + weight_path = PRETRAINED_PATH if FINETUNE_METHOD != 'new' else None + nb_model_classes = 2 if use_f1_score else nb_classes + model = torchmoji_transfer( + nb_model_classes, + data['maxlen'], weight_path, + extend_embedding=data['added']) + model.summary() + + # Training + print('Training: {}'.format(path)) + if use_f1_score: + model, result = class_avg_finetune(model, data['texts'], + data['labels'], + nb_classes, data['batch_size'], + FINETUNE_METHOD, + verbose=VERBOSE) + else: + model, result = finetune(model, data['texts'], data['labels'], + nb_classes, data['batch_size'], + FINETUNE_METHOD, metric='acc', + verbose=VERBOSE) + + # Write results + if use_f1_score: + print('Overall F1 score (dset = {}): {}'.format(dset, result)) + with open('{}/{}_{}_{}_results.txt'. + format(RESULTS_DIR, dset, FINETUNE_METHOD, rerun_iter), + "w") as f: + f.write("F1: {}\n".format(result)) + else: + print('Test accuracy (dset = {}): {}'.format(dset, result)) + with open('{}/{}_{}_{}_results.txt'. + format(RESULTS_DIR, dset, FINETUNE_METHOD, rerun_iter), + "w") as f: + f.write("Acc: {}\n".format(result)) diff --git a/scripts/results/.gitkeep b/scripts/results/.gitkeep new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/scripts/results/.gitkeep @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7ae61db --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup + +setup( + name='torchmoji', + version='1.0', + packages=['torchmoji'], + description='torchMoji', + include_package_data=True, + install_requires=[ + 'emoji==0.4.5', + 'numpy==1.13.1', + 'scipy==0.19.1', + 'scikit-learn==0.19.0', + 'text-unidecode==1.0', + ], +) diff --git a/tests/test_finetuning.py b/tests/test_finetuning.py new file mode 100644 index 0000000..631dc3e --- /dev/null +++ b/tests/test_finetuning.py @@ -0,0 +1,235 @@ +from __future__ import absolute_import, print_function, division, unicode_literals + +import test_helper + +from nose.plugins.attrib import attr +import json +import numpy as np + +from torchmoji.class_avg_finetuning import relabel +from torchmoji.sentence_tokenizer import SentenceTokenizer + +from torchmoji.finetuning import ( + calculate_batchsize_maxlen, + freeze_layers, + change_trainable, + finetune, + load_benchmark + ) +from torchmoji.model_def import ( + torchmoji_transfer, + torchmoji_feature_encoding, + torchmoji_emojis + ) +from torchmoji.global_variables import ( + PRETRAINED_PATH, + NB_TOKENS, + VOCAB_PATH, + ROOT_PATH + ) + + +def test_calculate_batchsize_maxlen(): + """ Batch size and max length are calculated properly. + """ + texts = ['a b c d', + 'e f g h i'] + batch_size, maxlen = calculate_batchsize_maxlen(texts) + + assert batch_size == 250 + assert maxlen == 10, maxlen + + +def test_freeze_layers(): + """ Correct layers are frozen. + """ + model = torchmoji_transfer(5) + keyword = 'output_layer' + + model = freeze_layers(model, unfrozen_keyword=keyword) + + for name, module in model.named_children(): + trainable = keyword.lower() in name.lower() + assert all(p.requires_grad == trainable for p in module.parameters()) + + +def test_change_trainable(): + """ change_trainable() changes trainability of layers. + """ + model = torchmoji_transfer(5) + change_trainable(model.embed, False) + assert not any(p.requires_grad for p in model.embed.parameters()) + change_trainable(model.embed, True) + assert all(p.requires_grad for p in model.embed.parameters()) + + +def test_torchmoji_transfer_extend_embedding(): + """ Defining torchmoji with extension. + """ + extend_with = 50 + model = torchmoji_transfer(5, weight_path=PRETRAINED_PATH, + extend_embedding=extend_with) + embedding_layer = model.embed + assert embedding_layer.weight.size()[0] == NB_TOKENS + extend_with + + +def test_torchmoji_return_attention(): + seq_tensor = np.array([[1]]) + # test the output of the normal model + model = torchmoji_emojis(weight_path=PRETRAINED_PATH) + # check correct number of outputs + assert len(model(seq_tensor)) == 1 + # repeat above described tests when returning attention weights + model = torchmoji_emojis(weight_path=PRETRAINED_PATH, return_attention=True) + assert len(model(seq_tensor)) == 2 + + +def test_relabel(): + """ relabel() works with multi-class labels. + """ + nb_classes = 3 + inputs = np.array([ + [True, False, False], + [False, True, False], + [True, False, True], + ]) + expected_0 = np.array([True, False, True]) + expected_1 = np.array([False, True, False]) + expected_2 = np.array([False, False, True]) + + assert np.array_equal(relabel(inputs, 0, nb_classes), expected_0) + assert np.array_equal(relabel(inputs, 1, nb_classes), expected_1) + assert np.array_equal(relabel(inputs, 2, nb_classes), expected_2) + + +def test_relabel_binary(): + """ relabel() works with binary classification (no changes to labels) + """ + nb_classes = 2 + inputs = np.array([True, False, False]) + + assert np.array_equal(relabel(inputs, 0, nb_classes), inputs) + + +@attr('slow') +def test_finetune_full(): + """ finetuning using 'full'. + """ + DATASET_PATH = ROOT_PATH+'/data/SS-Youtube/raw.pickle' + nb_classes = 2 + # Keras and pyTorch implementation of the Adam optimizer are slightly different and change a bit the results + # We reduce the min accuracy needed here to pass the test + # See e.g. https://discuss.pytorch.org/t/suboptimal-convergence-when-compared-with-tensorflow-model/5099/11 + min_acc = 0.68 + + with open(VOCAB_PATH, 'r') as f: + vocab = json.load(f) + + data = load_benchmark(DATASET_PATH, vocab, extend_with=10000) + print('Loading pyTorch model from {}.'.format(PRETRAINED_PATH)) + model = torchmoji_transfer(nb_classes, PRETRAINED_PATH, extend_embedding=data['added']) + print(model) + model, acc = finetune(model, data['texts'], data['labels'], nb_classes, + data['batch_size'], method='full', nb_epochs=1) + + print("Finetune full SS-Youtube 1 epoch acc: {}".format(acc)) + assert acc >= min_acc + + +@attr('slow') +def test_finetune_last(): + """ finetuning using 'last'. + """ + dataset_path = ROOT_PATH + '/data/SS-Youtube/raw.pickle' + nb_classes = 2 + min_acc = 0.68 + + with open(VOCAB_PATH, 'r') as f: + vocab = json.load(f) + + data = load_benchmark(dataset_path, vocab) + print('Loading model from {}.'.format(PRETRAINED_PATH)) + model = torchmoji_transfer(nb_classes, PRETRAINED_PATH) + print(model) + model, acc = finetune(model, data['texts'], data['labels'], nb_classes, + data['batch_size'], method='last', nb_epochs=1) + + print("Finetune last SS-Youtube 1 epoch acc: {}".format(acc)) + + assert acc >= min_acc + + +def test_score_emoji(): + """ Emoji predictions make sense. + """ + test_sentences = [ + 'I love mom\'s cooking', + 'I love how you never reply back..', + 'I love cruising with my homies', + 'I love messing with yo mind!!', + 'I love you and now you\'re just gone..', + 'This is shit', + 'This is the shit' + ] + + expected = [ + np.array([36, 4, 8, 16, 47]), + np.array([1, 19, 55, 25, 46]), + np.array([31, 6, 30, 15, 13]), + np.array([54, 44, 9, 50, 49]), + np.array([46, 5, 27, 35, 34]), + np.array([55, 32, 27, 1, 37]), + np.array([48, 11, 6, 31, 9]) + ] + + def top_elements(array, k): + ind = np.argpartition(array, -k)[-k:] + return ind[np.argsort(array[ind])][::-1] + + # Initialize by loading dictionary and tokenize texts + with open(VOCAB_PATH, 'r') as f: + vocabulary = json.load(f) + + st = SentenceTokenizer(vocabulary, 30) + tokens, _, _ = st.tokenize_sentences(test_sentences) + + # Load model and run + model = torchmoji_emojis(weight_path=PRETRAINED_PATH) + prob = model(tokens) + + # Find top emojis for each sentence + for i, t_prob in enumerate(list(prob)): + assert np.array_equal(top_elements(t_prob, 5), expected[i]) + + +def test_encode_texts(): + """ Text encoding is stable. + """ + + TEST_SENTENCES = ['I love mom\'s cooking', + 'I love how you never reply back..', + 'I love cruising with my homies', + 'I love messing with yo mind!!', + 'I love you and now you\'re just gone..', + 'This is shit', + 'This is the shit'] + + + maxlen = 30 + batch_size = 32 + + with open(VOCAB_PATH, 'r') as f: + vocabulary = json.load(f) + + st = SentenceTokenizer(vocabulary, maxlen) + + print('Loading model from {}.'.format(PRETRAINED_PATH)) + model = torchmoji_feature_encoding(PRETRAINED_PATH) + print(model) + tokenized, _, _ = st.tokenize_sentences(TEST_SENTENCES) + encoding = model(tokenized) + + avg_across_sentences = np.around(np.mean(encoding, axis=0)[:5], 3) + assert np.allclose(avg_across_sentences, np.array([-0.023, 0.021, -0.037, -0.001, -0.005])) + +test_encode_texts() \ No newline at end of file diff --git a/tests/test_helper.py b/tests/test_helper.py new file mode 100644 index 0000000..e6376e0 --- /dev/null +++ b/tests/test_helper.py @@ -0,0 +1,6 @@ +""" Module import helper. +Modifies PATH in order to allow us to import the torchmoji directory. +""" +import sys +from os.path import abspath, dirname +sys.path.insert(0, dirname(dirname(abspath(__file__)))) diff --git a/tests/test_sentence_tokenizer.py b/tests/test_sentence_tokenizer.py new file mode 100644 index 0000000..f625f07 --- /dev/null +++ b/tests/test_sentence_tokenizer.py @@ -0,0 +1,113 @@ +from __future__ import absolute_import, print_function, division, unicode_literals +import test_helper +import json + +from torchmoji.sentence_tokenizer import SentenceTokenizer + +sentences = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'] + +dicts = [ + {'label': 0}, + {'label': 1}, + {'label': 2}, + {'label': 3}, + {'label': 4}, + {'label': 5}, + {'label': 6}, + {'label': 7}, + {'label': 8}, + {'label': 9}, + ] + +train_ind = [0, 5, 3, 6, 8] +val_ind = [9, 2, 1] +test_ind = [4, 7] + +with open('../model/vocabulary.json', 'r') as f: + vocab = json.load(f) + +def test_dataset_split_parameter(): + """ Dataset is split in the desired ratios + """ + split_parameter = [0.7, 0.1, 0.2] + st = SentenceTokenizer(vocab, 30) + + result, result_dicts, _ = st.split_train_val_test(sentences, dicts, + split_parameter, extend_with=0) + train = result[0] + val = result[1] + test = result[2] + + train_dicts = result_dicts[0] + val_dicts = result_dicts[1] + test_dicts = result_dicts[2] + + assert len(train) == len(sentences) * split_parameter[0] + assert len(val) == len(sentences) * split_parameter[1] + assert len(test) == len(sentences) * split_parameter[2] + + assert len(train_dicts) == len(dicts) * split_parameter[0] + assert len(val_dicts) == len(dicts) * split_parameter[1] + assert len(test_dicts) == len(dicts) * split_parameter[2] + +def test_dataset_split_explicit(): + """ Dataset is split according to given indices + """ + split_parameter = [train_ind, val_ind, test_ind] + st = SentenceTokenizer(vocab, 30) + tokenized, _, _ = st.tokenize_sentences(sentences) + + result, result_dicts, added = st.split_train_val_test(sentences, dicts, split_parameter, extend_with=0) + train = result[0] + val = result[1] + test = result[2] + + train_dicts = result_dicts[0] + val_dicts = result_dicts[1] + test_dicts = result_dicts[2] + + tokenized = tokenized + + for i, sentence in enumerate(sentences): + if i in train_ind: + assert tokenized[i] in train + assert dicts[i] in train_dicts + elif i in val_ind: + assert tokenized[i] in val + assert dicts[i] in val_dicts + elif i in test_ind: + assert tokenized[i] in test + assert dicts[i] in test_dicts + + assert len(train) == len(train_ind) + assert len(val) == len(val_ind) + assert len(test) == len(test_ind) + assert len(train_dicts) == len(train_ind) + assert len(val_dicts) == len(val_ind) + assert len(test_dicts) == len(test_ind) + +def test_id_to_sentence(): + """Tokenizing and converting back preserves the input. + """ + vb = {'CUSTOM_MASK': 0, + 'aasdf': 1000, + 'basdf': 2000} + + sentence = 'aasdf basdf basdf basdf' + st = SentenceTokenizer(vb, 30) + token, _, _ = st.tokenize_sentences([sentence]) + assert st.to_sentence(token[0]) == sentence + +def test_id_to_sentence_with_unknown(): + """Tokenizing and converting back preserves the input, except for unknowns. + """ + vb = {'CUSTOM_MASK': 0, + 'CUSTOM_UNKNOWN': 1, + 'aasdf': 1000, + 'basdf': 2000} + + sentence = 'aasdf basdf ccc' + expected = 'aasdf basdf CUSTOM_UNKNOWN' + st = SentenceTokenizer(vb, 30) + token, _, _ = st.tokenize_sentences([sentence]) + assert st.to_sentence(token[0]) == expected diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py new file mode 100644 index 0000000..6c41f0c --- /dev/null +++ b/tests/test_tokenizer.py @@ -0,0 +1,167 @@ +# -*- coding: utf-8 -*- +""" Tokenization tests. +""" +from __future__ import absolute_import, print_function, division, unicode_literals + +import sys +from nose.tools import nottest +from os.path import dirname, abspath +sys.path.append(dirname(dirname(abspath(__file__)))) +from torchmoji.tokenizer import tokenize + +TESTS_NORMAL = [ + ('200K words!', ['200', 'K', 'words', '!']), +] + +TESTS_EMOJIS = [ + ('i \U0001f496 you to the moon and back', + ['i', '\U0001f496', 'you', 'to', 'the', 'moon', 'and', 'back']), + ("i\U0001f496you to the \u2605's and back", + ['i', '\U0001f496', 'you', 'to', 'the', + '\u2605', "'", 's', 'and', 'back']), + ('~<3~', ['~', '<3', '~']), + ('<333', ['<333']), + (':-)', [':-)']), + ('>:-(', ['>:-(']), + ('\u266b\u266a\u2605\u2606\u2665\u2764\u2661', + ['\u266b', '\u266a', '\u2605', '\u2606', + '\u2665', '\u2764', '\u2661']), +] + +TESTS_URLS = [ + ('www.sample.com', ['www.sample.com']), + ('http://endless.horse', ['http://endless.horse']), + ('https://github.mit.ed', ['https://github.mit.ed']), +] + +TESTS_TWITTER = [ + ('#blacklivesmatter', ['#blacklivesmatter']), + ('#99_percent.', ['#99_percent', '.']), + ('the#99%', ['the', '#99', '%']), + ('@golden_zenith', ['@golden_zenith']), + ('@99_percent', ['@99_percent']), + ('latte-express@mit.ed', ['latte-express@mit.ed']), +] + +TESTS_PHONE_NUMS = [ + ('518)528-0252', ['518', ')', '528', '-', '0252']), + ('1200-0221-0234', ['1200', '-', '0221', '-', '0234']), + ('1200.0221.0234', ['1200', '.', '0221', '.', '0234']), +] + +TESTS_DATETIME = [ + ('15:00', ['15', ':', '00']), + ('2:00pm', ['2', ':', '00', 'pm']), + ('9/14/16', ['9', '/', '14', '/', '16']), +] + +TESTS_CURRENCIES = [ + ('517.933\xa3', ['517', '.', '933', '\xa3']), + ('$517.87', ['$', '517', '.', '87']), + ('1201.6598', ['1201', '.', '6598']), + ('120,6', ['120', ',', '6']), + ('10,00\u20ac', ['10', ',', '00', '\u20ac']), + ('1,000', ['1', ',', '000']), + ('1200pesos', ['1200', 'pesos']), +] + +TESTS_NUM_SYM = [ + ('5162f', ['5162', 'f']), + ('f5162', ['f', '5162']), + ('1203(', ['1203', '(']), + ('(1203)', ['(', '1203', ')']), + ('1200/', ['1200', '/']), + ('1200+', ['1200', '+']), + ('1202o-east', ['1202', 'o-east']), + ('1200r', ['1200', 'r']), + ('1200-1400', ['1200', '-', '1400']), + ('120/today', ['120', '/', 'today']), + ('today/120', ['today', '/', '120']), + ('120/5', ['120', '/', '5']), + ("120'/5", ['120', "'", '/', '5']), + ('120/5pro', ['120', '/', '5', 'pro']), + ("1200's,)", ['1200', "'", 's', ',', ')']), + ('120.76.218.207', ['120', '.', '76', '.', '218', '.', '207']), +] + +TESTS_PUNCTUATION = [ + ("don''t", ['don', "''", 't']), + ("don'tcha", ["don'tcha"]), + ('no?!?!;', ['no', '?', '!', '?', '!', ';']), + ('no??!!..', ['no', '??', '!!', '..']), + ('a.m.', ['a.m.']), + ('.s.u', ['.', 's', '.', 'u']), + ('!!i..n__', ['!!', 'i', '..', 'n', '__']), + ('lv(<3)w(3>)u Mr.!', ['lv', '(', '<3', ')', 'w', '(', '3', + '>', ')', 'u', 'Mr.', '!']), + ('-->', ['--', '>']), + ('->', ['-', '>']), + ('<-', ['<', '-']), + ('<--', ['<', '--']), + ('hello (@person)', ['hello', '(', '@person', ')']), +] + + +def test_normal(): + """ Normal/combined usage. + """ + test_base(TESTS_NORMAL) + + +def test_emojis(): + """ Tokenizing emojis/emoticons/decorations. + """ + test_base(TESTS_EMOJIS) + + +def test_urls(): + """ Tokenizing URLs. + """ + test_base(TESTS_URLS) + + +def test_twitter(): + """ Tokenizing hashtags, mentions and emails. + """ + test_base(TESTS_TWITTER) + + +def test_phone_nums(): + """ Tokenizing phone numbers. + """ + test_base(TESTS_PHONE_NUMS) + + +def test_datetime(): + """ Tokenizing dates and times. + """ + test_base(TESTS_DATETIME) + + +def test_currencies(): + """ Tokenizing currencies. + """ + test_base(TESTS_CURRENCIES) + + +def test_num_sym(): + """ Tokenizing combinations of numbers and symbols. + """ + test_base(TESTS_NUM_SYM) + + +def test_punctuation(): + """ Tokenizing punctuation and contractions. + """ + test_base(TESTS_PUNCTUATION) + + +@nottest +def test_base(tests): + """ Base function for running tests. + """ + for (test, expected) in tests: + actual = tokenize(test) + assert actual == expected, \ + "Tokenization of \'{}\' failed, expected: {}, actual: {}"\ + .format(test, expected, actual) diff --git a/tests/test_word_generator.py b/tests/test_word_generator.py new file mode 100644 index 0000000..826b21f --- /dev/null +++ b/tests/test_word_generator.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +import sys +from os.path import dirname, abspath +sys.path.append(dirname(dirname(abspath(__file__)))) +from nose.tools import raises +from torchmoji.word_generator import WordGenerator + +IS_PYTHON2 = int(sys.version[0]) == 2 + +@raises(ValueError) +def test_only_unicode_accepted(): + """ Non-Unicode strings raise a ValueError. + In Python 3 all string are Unicode + """ + if not IS_PYTHON2: + raise ValueError("You are using python 3 so this test should always pass") + + sentences = [ + u'Hello world', + u'I am unicode', + 'I am not unicode', + ] + + wg = WordGenerator(sentences) + for w in wg: + pass + + +def test_unicode_sentences_ignored_if_set(): + """ Strings with Unicode characters tokenize to empty array if they're not allowed. + """ + sentence = [u'Dobrý den, jak se máš?'] + wg = WordGenerator(sentence, allow_unicode_text=False) + assert wg.get_words(sentence[0]) == [] + + +def test_check_ascii(): + """ check_ascii recognises ASCII words properly. + In Python 3 all string are Unicode + """ + if not IS_PYTHON2: + return + + wg = WordGenerator([]) + assert wg.check_ascii('ASCII') + assert not wg.check_ascii('ščřžýá') + assert not wg.check_ascii('❤ ☀ ☆ ☂ ☻ ♞ ☯ ☭ ☢') + + +def test_convert_unicode_word(): + """ convert_unicode_word converts Unicode words correctly. + """ + wg = WordGenerator([], allow_unicode_text=True) + + result = wg.convert_unicode_word(u'č') + assert result == (True, u'\u010d'), '{}'.format(result) + + +def test_convert_unicode_word_ignores_if_set(): + """ convert_unicode_word ignores Unicode words if set. + """ + wg = WordGenerator([], allow_unicode_text=False) + + result = wg.convert_unicode_word(u'č') + assert result == (False, ''), '{}'.format(result) + + +def test_convert_unicode_chars(): + """ convert_unicode_word correctly converts accented characters. + """ + wg = WordGenerator([], allow_unicode_text=True) + result = wg.convert_unicode_word(u'ěščřžýáíé') + assert result == (True, u'\u011b\u0161\u010d\u0159\u017e\xfd\xe1\xed\xe9'), '{}'.format(result) diff --git a/torchmoji/.gitkeep b/torchmoji/.gitkeep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/torchmoji/.gitkeep @@ -0,0 +1 @@ + diff --git a/torchmoji/__init__.py b/torchmoji/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/torchmoji/attlayer.py b/torchmoji/attlayer.py new file mode 100644 index 0000000..9409c7f --- /dev/null +++ b/torchmoji/attlayer.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +""" Define the Attention Layer of the model. +""" + +from __future__ import print_function, division + +import torch + +from torch.autograd import Variable +from torch.nn import Module +from torch.nn.parameter import Parameter + +class Attention(Module): + """ + Computes a weighted average of the different channels across timesteps. + Uses 1 parameter pr. channel to compute the attention value for a single timestep. + """ + + def __init__(self, attention_size, return_attention=False): + """ Initialize the attention layer + + # Arguments: + attention_size: Size of the attention vector. + return_attention: If true, output will include the weight for each input token + used for the prediction + + """ + super(Attention, self).__init__() + self.return_attention = return_attention + self.attention_size = attention_size + self.attention_vector = Parameter(torch.FloatTensor(attention_size)) + + def __repr__(self): + s = '{name}({attention_size}, return attention={return_attention})' + return s.format(name=self.__class__.__name__, **self.__dict__) + + def forward(self, inputs, input_lengths): + """ Forward pass. + + # Arguments: + inputs (Torch.Variable): Tensor of input sequences + input_lengths (torch.LongTensor): Lengths of the sequences + + # Return: + Tuple with (representations and attentions if self.return_attention else None). + """ + logits = inputs.matmul(self.attention_vector) + unnorm_ai = (logits - logits.max()).exp() + + # Compute a mask for the attention on the padded sequences + # See e.g. https://discuss.pytorch.org/t/self-attention-on-words-and-masking/5671/5 + max_len = unnorm_ai.size(1) + idxes = torch.arange(0, max_len, out=torch.LongTensor(max_len)).unsqueeze(0) + if torch.cuda.is_available(): + idxes = idxes.cuda() + mask = Variable((idxes < input_lengths.unsqueeze(1)).float()) + + # apply mask and renormalize attention scores (weights) + masked_weights = unnorm_ai * mask + att_sums = masked_weights.sum(dim=1, keepdim=True) # sums per sequence + attentions = masked_weights.div(att_sums) + + # apply attention weights + weighted = torch.mul(inputs, attentions.unsqueeze(-1).expand_as(inputs)) + + # get the final fixed vector representations of the sentences + representations = weighted.sum(dim=1) + + return (representations, attentions if self.return_attention else None) diff --git a/torchmoji/class_avg_finetuning.py b/torchmoji/class_avg_finetuning.py new file mode 100644 index 0000000..404340a --- /dev/null +++ b/torchmoji/class_avg_finetuning.py @@ -0,0 +1,315 @@ +# -*- coding: utf-8 -*- +""" Class average finetuning functions. Before using any of these finetuning + functions, ensure that the model is set up with nb_classes=2. +""" +from __future__ import print_function + +import uuid +from time import sleep +import numpy as np + +import torch +import torch.nn as nn +import torch.optim as optim + +from torchmoji.global_variables import ( + FINETUNING_METHODS, + WEIGHTS_DIR) +from torchmoji.finetuning import ( + freeze_layers, + get_data_loader, + fit_model, + train_by_chain_thaw, + find_f1_threshold) + +def relabel(y, current_label_nr, nb_classes): + """ Makes a binary classification for a specific class in a + multi-class dataset. + + # Arguments: + y: Outputs to be relabelled. + current_label_nr: Current label number. + nb_classes: Total number of classes. + + # Returns: + Relabelled outputs of a given multi-class dataset into a binary + classification dataset. + """ + + # Handling binary classification + if nb_classes == 2 and len(y.shape) == 1: + return y + + y_new = np.zeros(len(y)) + y_cut = y[:, current_label_nr] + label_pos = np.where(y_cut == 1)[0] + y_new[label_pos] = 1 + return y_new + + +def class_avg_finetune(model, texts, labels, nb_classes, batch_size, + method, epoch_size=5000, nb_epochs=1000, embed_l2=1E-6, + verbose=True): + """ Compiles and finetunes the given model. + + # Arguments: + model: Model to be finetuned + texts: List of three lists, containing tokenized inputs for training, + validation and testing (in that order). + labels: List of three lists, containing labels for training, + validation and testing (in that order). + nb_classes: Number of classes in the dataset. + batch_size: Batch size. + method: Finetuning method to be used. For available methods, see + FINETUNING_METHODS in global_variables.py. Note that the model + should be defined accordingly (see docstring for torchmoji_transfer()) + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. Doesn't matter much as early stopping is used. + embed_l2: L2 regularization for the embedding layer. + verbose: Verbosity flag. + + # Returns: + Model after finetuning, + score after finetuning using the class average F1 metric. + """ + + if method not in FINETUNING_METHODS: + raise ValueError('ERROR (class_avg_tune_trainable): ' + 'Invalid method parameter. ' + 'Available options: {}'.format(FINETUNING_METHODS)) + + (X_train, y_train) = (texts[0], labels[0]) + (X_val, y_val) = (texts[1], labels[1]) + (X_test, y_test) = (texts[2], labels[2]) + + checkpoint_path = '{}/torchmoji-checkpoint-{}.bin' \ + .format(WEIGHTS_DIR, str(uuid.uuid4())) + + f1_init_path = '{}/torchmoji-f1-init-{}.bin' \ + .format(WEIGHTS_DIR, str(uuid.uuid4())) + + if method in ['last', 'new']: + lr = 0.001 + elif method in ['full', 'chain-thaw']: + lr = 0.0001 + + loss_op = nn.BCEWithLogitsLoss() + + # Freeze layers if using last + if method == 'last': + model = freeze_layers(model, unfrozen_keyword='output_layer') + + # Define optimizer, for chain-thaw we define it later (after freezing) + if method == 'last': + adam = optim.Adam((p for p in model.parameters() if p.requires_grad), lr=lr) + elif method in ['full', 'new']: + # Add L2 regulation on embeddings only + special_params = [id(p) for p in model.embed.parameters()] + base_params = [p for p in model.parameters() if id(p) not in special_params and p.requires_grad] + embed_parameters = [p for p in model.parameters() if id(p) in special_params and p.requires_grad] + adam = optim.Adam([ + {'params': base_params}, + {'params': embed_parameters, 'weight_decay': embed_l2}, + ], lr=lr) + + # Training + if verbose: + print('Method: {}'.format(method)) + print('Classes: {}'.format(nb_classes)) + + if method == 'chain-thaw': + result = class_avg_chainthaw(model, nb_classes=nb_classes, + loss_op=loss_op, + train=(X_train, y_train), + val=(X_val, y_val), + test=(X_test, y_test), + batch_size=batch_size, + epoch_size=epoch_size, + nb_epochs=nb_epochs, + checkpoint_weight_path=checkpoint_path, + f1_init_weight_path=f1_init_path, + verbose=verbose) + else: + result = class_avg_tune_trainable(model, nb_classes=nb_classes, + loss_op=loss_op, + optim_op=adam, + train=(X_train, y_train), + val=(X_val, y_val), + test=(X_test, y_test), + epoch_size=epoch_size, + nb_epochs=nb_epochs, + batch_size=batch_size, + init_weight_path=f1_init_path, + checkpoint_weight_path=checkpoint_path, + verbose=verbose) + return model, result + + +def prepare_labels(y_train, y_val, y_test, iter_i, nb_classes): + # Relabel into binary classification + y_train_new = relabel(y_train, iter_i, nb_classes) + y_val_new = relabel(y_val, iter_i, nb_classes) + y_test_new = relabel(y_test, iter_i, nb_classes) + return y_train_new, y_val_new, y_test_new + +def prepare_generators(X_train, y_train_new, X_val, y_val_new, batch_size, epoch_size): + # Create sample generators + # Make a fixed validation set to avoid fluctuations in validation + train_gen = get_data_loader(X_train, y_train_new, batch_size, + extended_batch_sampler=True) + val_gen = get_data_loader(X_val, y_val_new, epoch_size, + extended_batch_sampler=True) + X_val_resamp, y_val_resamp = next(iter(val_gen)) + return train_gen, X_val_resamp, y_val_resamp + + +def class_avg_tune_trainable(model, nb_classes, loss_op, optim_op, train, val, test, + epoch_size, nb_epochs, batch_size, + init_weight_path, checkpoint_weight_path, patience=5, + verbose=True): + """ Finetunes the given model using the F1 measure. + + # Arguments: + model: Model to be finetuned. + nb_classes: Number of classes in the given dataset. + train: Training data, given as a tuple of (inputs, outputs) + val: Validation data, given as a tuple of (inputs, outputs) + test: Testing data, given as a tuple of (inputs, outputs) + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. + batch_size: Batch size. + init_weight_path: Filepath where weights will be initially saved before + training each class. This file will be rewritten by the function. + checkpoint_weight_path: Filepath where weights will be checkpointed to + during training. This file will be rewritten by the function. + verbose: Verbosity flag. + + # Returns: + F1 score of the trained model + """ + total_f1 = 0 + nb_iter = nb_classes if nb_classes > 2 else 1 + + # Unpack args + X_train, y_train = train + X_val, y_val = val + X_test, y_test = test + + # Save and reload initial weights after running for + # each class to avoid learning across classes + torch.save(model.state_dict(), init_weight_path) + for i in range(nb_iter): + if verbose: + print('Iteration number {}/{}'.format(i+1, nb_iter)) + + model.load_state_dict(torch.load(init_weight_path)) + y_train_new, y_val_new, y_test_new = prepare_labels(y_train, y_val, + y_test, i, nb_classes) + train_gen, X_val_resamp, y_val_resamp = \ + prepare_generators(X_train, y_train_new, X_val, y_val_new, + batch_size, epoch_size) + + if verbose: + print("Training..") + fit_model(model, loss_op, optim_op, train_gen, [(X_val_resamp, y_val_resamp)], + nb_epochs, checkpoint_weight_path, patience, verbose=0) + + # Reload the best weights found to avoid overfitting + # Wait a bit to allow proper closing of weights file + sleep(1) + model.load_state_dict(torch.load(checkpoint_weight_path)) + + # Evaluate + y_pred_val = model(X_val).cpu().numpy() + y_pred_test = model(X_test).cpu().numpy() + + f1_test, best_t = find_f1_threshold(y_val_new, y_pred_val, + y_test_new, y_pred_test) + if verbose: + print('f1_test: {}'.format(f1_test)) + print('best_t: {}'.format(best_t)) + total_f1 += f1_test + + return total_f1 / nb_iter + + +def class_avg_chainthaw(model, nb_classes, loss_op, train, val, test, batch_size, + epoch_size, nb_epochs, checkpoint_weight_path, + f1_init_weight_path, patience=5, + initial_lr=0.001, next_lr=0.0001, verbose=True): + """ Finetunes given model using chain-thaw and evaluates using F1. + For a dataset with multiple classes, the model is trained once for + each class, relabeling those classes into a binary classification task. + The result is an average of all F1 scores for each class. + + # Arguments: + model: Model to be finetuned. + nb_classes: Number of classes in the given dataset. + train: Training data, given as a tuple of (inputs, outputs) + val: Validation data, given as a tuple of (inputs, outputs) + test: Testing data, given as a tuple of (inputs, outputs) + batch_size: Batch size. + loss: Loss function to be used during training. + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. + checkpoint_weight_path: Filepath where weights will be checkpointed to + during training. This file will be rewritten by the function. + f1_init_weight_path: Filepath where weights will be saved to and + reloaded from before training each class. This ensures that + each class is trained independently. This file will be rewritten. + initial_lr: Initial learning rate. Will only be used for the first + training step (i.e. the softmax layer) + next_lr: Learning rate for every subsequent step. + seed: Random number generator seed. + verbose: Verbosity flag. + + # Returns: + Averaged F1 score. + """ + + # Unpack args + X_train, y_train = train + X_val, y_val = val + X_test, y_test = test + + total_f1 = 0 + nb_iter = nb_classes if nb_classes > 2 else 1 + + torch.save(model.state_dict(), f1_init_weight_path) + + for i in range(nb_iter): + if verbose: + print('Iteration number {}/{}'.format(i+1, nb_iter)) + + model.load_state_dict(torch.load(f1_init_weight_path)) + y_train_new, y_val_new, y_test_new = prepare_labels(y_train, y_val, + y_test, i, nb_classes) + train_gen, X_val_resamp, y_val_resamp = \ + prepare_generators(X_train, y_train_new, X_val, y_val_new, + batch_size, epoch_size) + + if verbose: + print("Training..") + + # Train using chain-thaw + train_by_chain_thaw(model=model, train_gen=train_gen, + val_gen=[(X_val_resamp, y_val_resamp)], + loss_op=loss_op, patience=patience, + nb_epochs=nb_epochs, + checkpoint_path=checkpoint_weight_path, + initial_lr=initial_lr, next_lr=next_lr, + verbose=verbose) + + # Evaluate + y_pred_val = model(X_val).cpu().numpy() + y_pred_test = model(X_test).cpu().numpy() + + f1_test, best_t = find_f1_threshold(y_val_new, y_pred_val, + y_test_new, y_pred_test) + + if verbose: + print('f1_test: {}'.format(f1_test)) + print('best_t: {}'.format(best_t)) + total_f1 += f1_test + + return total_f1 / nb_iter diff --git a/torchmoji/create_vocab.py b/torchmoji/create_vocab.py new file mode 100644 index 0000000..b7efc2e --- /dev/null +++ b/torchmoji/create_vocab.py @@ -0,0 +1,271 @@ +# -*- coding: utf-8 -*- +from __future__ import print_function, division + +import glob +import json +import uuid +from copy import deepcopy +from collections import defaultdict, OrderedDict +import numpy as np + +from torchmoji.filter_utils import is_special_token +from torchmoji.word_generator import WordGenerator +from torchmoji.global_variables import SPECIAL_TOKENS, VOCAB_PATH + +class VocabBuilder(): + """ Create vocabulary with words extracted from sentences as fed from a + word generator. + """ + def __init__(self, word_gen): + # initialize any new key with value of 0 + self.word_counts = defaultdict(lambda: 0, {}) + self.word_length_limit=30 + + for token in SPECIAL_TOKENS: + assert len(token) < self.word_length_limit + self.word_counts[token] = 0 + self.word_gen = word_gen + + def count_words_in_sentence(self, words): + """ Generates word counts for all tokens in the given sentence. + + # Arguments: + words: Tokenized sentence whose words should be counted. + """ + for word in words: + if 0 < len(word) and len(word) <= self.word_length_limit: + try: + self.word_counts[word] += 1 + except KeyError: + self.word_counts[word] = 1 + + def save_vocab(self, path=None): + """ Saves the vocabulary into a file. + + # Arguments: + path: Where the vocabulary should be saved. If not specified, a + randomly generated filename is used instead. + """ + dtype = ([('word','|S{}'.format(self.word_length_limit)),('count','int')]) + np_dict = np.array(self.word_counts.items(), dtype=dtype) + + # sort from highest to lowest frequency + np_dict[::-1].sort(order='count') + data = np_dict + + if path is None: + path = str(uuid.uuid4()) + + np.savez_compressed(path, data=data) + print("Saved dict to {}".format(path)) + + def get_next_word(self): + """ Returns next tokenized sentence from the word geneerator. + + # Returns: + List of strings, representing the next tokenized sentence. + """ + return self.word_gen.__iter__().next() + + def count_all_words(self): + """ Generates word counts for all words in all sentences of the word + generator. + """ + for words, _ in self.word_gen: + self.count_words_in_sentence(words) + +class MasterVocab(): + """ Combines vocabularies. + """ + def __init__(self): + + # initialize custom tokens + self.master_vocab = {} + + def populate_master_vocab(self, vocab_path, min_words=1, force_appearance=None): + """ Populates the master vocabulary using all vocabularies found in the + given path. Vocabularies should be named *.npz. Expects the + vocabularies to be numpy arrays with counts. Normalizes the counts + and combines them. + + # Arguments: + vocab_path: Path containing vocabularies to be combined. + min_words: Minimum amount of occurences a word must have in order + to be included in the master vocabulary. + force_appearance: Optional vocabulary filename that will be added + to the master vocabulary no matter what. This vocabulary must + be present in vocab_path. + """ + + paths = glob.glob(vocab_path + '*.npz') + sizes = {path: 0 for path in paths} + dicts = {path: {} for path in paths} + + # set up and get sizes of individual dictionaries + for path in paths: + np_data = np.load(path)['data'] + + for entry in np_data: + word, count = entry + if count < min_words: + continue + if is_special_token(word): + continue + dicts[path][word] = count + + sizes[path] = sum(dicts[path].values()) + print('Overall word count for {} -> {}'.format(path, sizes[path])) + print('Overall word number for {} -> {}'.format(path, len(dicts[path]))) + + vocab_of_max_size = max(sizes, key=sizes.get) + max_size = sizes[vocab_of_max_size] + print('Min: {}, {}, {}'.format(sizes, vocab_of_max_size, max_size)) + + # can force one vocabulary to always be present + if force_appearance is not None: + force_appearance_path = [p for p in paths if force_appearance in p][0] + force_appearance_vocab = deepcopy(dicts[force_appearance_path]) + print(force_appearance_path) + else: + force_appearance_path, force_appearance_vocab = None, None + + # normalize word counts before inserting into master dict + for path in paths: + normalization_factor = max_size / sizes[path] + print('Norm factor for path {} -> {}'.format(path, normalization_factor)) + + for word in dicts[path]: + if is_special_token(word): + print("SPECIAL - ", word) + continue + normalized_count = dicts[path][word] * normalization_factor + + # can force one vocabulary to always be present + if force_appearance_vocab is not None: + try: + force_word_count = force_appearance_vocab[word] + except KeyError: + continue + #if force_word_count < 5: + #continue + + if word in self.master_vocab: + self.master_vocab[word] += normalized_count + else: + self.master_vocab[word] = normalized_count + + print('Size of master_dict {}'.format(len(self.master_vocab))) + print("Hashes for master dict: {}".format( + len([w for w in self.master_vocab if '#' in w[0]]))) + + def save_vocab(self, path_count, path_vocab, word_limit=100000): + """ Saves the master vocabulary into a file. + """ + + # reserve space for 10 special tokens + words = OrderedDict() + for token in SPECIAL_TOKENS: + # store -1 instead of np.inf, which can overflow + words[token] = -1 + + # sort words by frequency + desc_order = OrderedDict(sorted(self.master_vocab.items(), + key=lambda kv: kv[1], reverse=True)) + words.update(desc_order) + + # use encoding of up to 30 characters (no token conversions) + # use float to store large numbers (we don't care about precision loss) + np_vocab = np.array(words.items(), + dtype=([('word','|S30'),('count','float')])) + + # output count for debugging + counts = np_vocab[:word_limit] + np.savez_compressed(path_count, counts=counts) + + # output the index of each word for easy lookup + final_words = OrderedDict() + for i, w in enumerate(words.keys()[:word_limit]): + final_words.update({w:i}) + with open(path_vocab, 'w') as f: + f.write(json.dumps(final_words, indent=4, separators=(',', ': '))) + + +def all_words_in_sentences(sentences): + """ Extracts all unique words from a given list of sentences. + + # Arguments: + sentences: List or word generator of sentences to be processed. + + # Returns: + List of all unique words contained in the given sentences. + """ + vocab = [] + if isinstance(sentences, WordGenerator): + sentences = [s for s, _ in sentences] + + for sentence in sentences: + for word in sentence: + if word not in vocab: + vocab.append(word) + + return vocab + + +def extend_vocab_in_file(vocab, max_tokens=10000, vocab_path=VOCAB_PATH): + """ Extends JSON-formatted vocabulary with words from vocab that are not + present in the current vocabulary. Adds up to max_tokens words. + Overwrites file in vocab_path. + + # Arguments: + new_vocab: Vocabulary to be added. MUST have word_counts populated, i.e. + must have run count_all_words() previously. + max_tokens: Maximum number of words to be added. + vocab_path: Path to the vocabulary json which is to be extended. + """ + try: + with open(vocab_path, 'r') as f: + current_vocab = json.load(f) + except IOError: + print('Vocabulary file not found, expected at ' + vocab_path) + return + + extend_vocab(current_vocab, vocab, max_tokens) + + # Save back to file + with open(vocab_path, 'w') as f: + json.dump(current_vocab, f, sort_keys=True, indent=4, separators=(',',': ')) + + +def extend_vocab(current_vocab, new_vocab, max_tokens=10000): + """ Extends current vocabulary with words from vocab that are not + present in the current vocabulary. Adds up to max_tokens words. + + # Arguments: + current_vocab: Current dictionary of tokens. + new_vocab: Vocabulary to be added. MUST have word_counts populated, i.e. + must have run count_all_words() previously. + max_tokens: Maximum number of words to be added. + + # Returns: + How many new tokens have been added. + """ + if max_tokens < 0: + max_tokens = 10000 + + words = OrderedDict() + + # sort words by frequency + desc_order = OrderedDict(sorted(new_vocab.word_counts.items(), + key=lambda kv: kv[1], reverse=True)) + words.update(desc_order) + + base_index = len(current_vocab.keys()) + added = 0 + for word in words: + if added >= max_tokens: + break + if word not in current_vocab.keys(): + current_vocab[word] = base_index + added + added += 1 + + return added diff --git a/torchmoji/filter_input.py b/torchmoji/filter_input.py new file mode 100644 index 0000000..c918c32 --- /dev/null +++ b/torchmoji/filter_input.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +from __future__ import print_function, division +import codecs +import csv +import numpy as np +from emoji import UNICODE_EMOJI + +def read_english(path="english_words.txt", add_emojis=True): + # read english words for filtering (includes emojis as part of set) + english = set() + with codecs.open(path, "r", "utf-8") as f: + for line in f: + line = line.strip().lower().replace('\n', '') + if len(line): + english.add(line) + if add_emojis: + for e in UNICODE_EMOJI: + english.add(e) + return english + +def read_wanted_emojis(path="wanted_emojis.csv"): + emojis = [] + with open(path, 'rb') as f: + reader = csv.reader(f) + for line in reader: + line = line[0].strip().replace('\n', '') + line = line.decode('unicode-escape') + emojis.append(line) + return emojis + +def read_non_english_users(path="unwanted_users.npz"): + try: + neu_set = set(np.load(path)['userids']) + except IOError: + neu_set = set() + return neu_set diff --git a/torchmoji/filter_utils.py b/torchmoji/filter_utils.py new file mode 100644 index 0000000..da88d89 --- /dev/null +++ b/torchmoji/filter_utils.py @@ -0,0 +1,191 @@ + +# -*- coding: utf-8 -*- +from __future__ import print_function, division, unicode_literals +import sys +import re +import string +import emoji +from itertools import groupby + +import numpy as np +from torchmoji.tokenizer import RE_MENTION, RE_URL +from torchmoji.global_variables import SPECIAL_TOKENS + +IS_PYTHON2 = int(sys.version[0]) == 2 +chr_ = unichr if IS_PYTHON2 else chr + +AtMentionRegex = re.compile(RE_MENTION) +urlRegex = re.compile(RE_URL) + +# from http://bit.ly/2rdjgjE (UTF-8 encodings and Unicode chars) +VARIATION_SELECTORS = [ '\ufe00', + '\ufe01', + '\ufe02', + '\ufe03', + '\ufe04', + '\ufe05', + '\ufe06', + '\ufe07', + '\ufe08', + '\ufe09', + '\ufe0a', + '\ufe0b', + '\ufe0c', + '\ufe0d', + '\ufe0e', + '\ufe0f'] + +# from https://stackoverflow.com/questions/92438/stripping-non-printable-characters-from-a-string-in-python +ALL_CHARS = (chr_(i) for i in range(sys.maxunicode)) +CONTROL_CHARS = ''.join(map(chr_, list(range(0,32)) + list(range(127,160)))) +CONTROL_CHAR_REGEX = re.compile('[%s]' % re.escape(CONTROL_CHARS)) + +def is_special_token(word): + equal = False + for spec in SPECIAL_TOKENS: + if word == spec: + equal = True + break + return equal + +def mostly_english(words, english, pct_eng_short=0.5, pct_eng_long=0.6, ignore_special_tokens=True, min_length=2): + """ Ensure text meets threshold for containing English words """ + + n_words = 0 + n_english = 0 + + if english is None: + return True, 0, 0 + + for w in words: + if len(w) < min_length: + continue + if punct_word(w): + continue + if ignore_special_tokens and is_special_token(w): + continue + n_words += 1 + if w in english: + n_english += 1 + + if n_words < 2: + return True, n_words, n_english + if n_words < 5: + valid_english = n_english >= n_words * pct_eng_short + else: + valid_english = n_english >= n_words * pct_eng_long + return valid_english, n_words, n_english + +def correct_length(words, min_words, max_words, ignore_special_tokens=True): + """ Ensure text meets threshold for containing English words + and that it's within the min and max words limits. """ + + if min_words is None: + min_words = 0 + + if max_words is None: + max_words = 99999 + + n_words = 0 + for w in words: + if punct_word(w): + continue + if ignore_special_tokens and is_special_token(w): + continue + n_words += 1 + valid = min_words <= n_words and n_words <= max_words + return valid + +def punct_word(word, punctuation=string.punctuation): + return all([True if c in punctuation else False for c in word]) + +def load_non_english_user_set(): + non_english_user_set = set(np.load('uids.npz')['data']) + return non_english_user_set + +def non_english_user(userid, non_english_user_set): + neu_found = int(userid) in non_english_user_set + return neu_found + +def separate_emojis_and_text(text): + emoji_chars = [] + non_emoji_chars = [] + for c in text: + if c in emoji.UNICODE_EMOJI: + emoji_chars.append(c) + else: + non_emoji_chars.append(c) + return ''.join(emoji_chars), ''.join(non_emoji_chars) + +def extract_emojis(text, wanted_emojis): + text = remove_variation_selectors(text) + return [c for c in text if c in wanted_emojis] + +def remove_variation_selectors(text): + """ Remove styling glyph variants for Unicode characters. + For instance, remove skin color from emojis. + """ + for var in VARIATION_SELECTORS: + text = text.replace(var, '') + return text + +def shorten_word(word): + """ Shorten groupings of 3+ identical consecutive chars to 2, e.g. '!!!!' --> '!!' + """ + + # only shorten ASCII words + try: + word.decode('ascii') + except (UnicodeDecodeError, UnicodeEncodeError, AttributeError) as e: + return word + + # must have at least 3 char to be shortened + if len(word) < 3: + return word + + # find groups of 3+ consecutive letters + letter_groups = [list(g) for k, g in groupby(word)] + triple_or_more = [''.join(g) for g in letter_groups if len(g) >= 3] + if len(triple_or_more) == 0: + return word + + # replace letters to find the short word + short_word = word + for trip in triple_or_more: + short_word = short_word.replace(trip, trip[0]*2) + + return short_word + +def detect_special_tokens(word): + try: + int(word) + word = SPECIAL_TOKENS[4] + except ValueError: + if AtMentionRegex.findall(word): + word = SPECIAL_TOKENS[2] + elif urlRegex.findall(word): + word = SPECIAL_TOKENS[3] + return word + +def process_word(word): + """ Shortening and converting the word to a special token if relevant. + """ + word = shorten_word(word) + word = detect_special_tokens(word) + return word + +def remove_control_chars(text): + return CONTROL_CHAR_REGEX.sub('', text) + +def convert_nonbreaking_space(text): + # ugly hack handling non-breaking space no matter how badly it's been encoded in the input + for r in ['\\\\xc2', '\\xc2', '\xc2', '\\\\xa0', '\\xa0', '\xa0']: + text = text.replace(r, ' ') + return text + +def convert_linebreaks(text): + # ugly hack handling non-breaking space no matter how badly it's been encoded in the input + # space around to ensure proper tokenization + for r in ['\\\\n', '\\n', '\n', '\\\\r', '\\r', '\r', '
']: + text = text.replace(r, ' ' + SPECIAL_TOKENS[5] + ' ') + return text diff --git a/torchmoji/finetuning.py b/torchmoji/finetuning.py new file mode 100644 index 0000000..e19351a --- /dev/null +++ b/torchmoji/finetuning.py @@ -0,0 +1,661 @@ +# -*- coding: utf-8 -*- +""" Finetuning functions for doing transfer learning to new datasets. +""" +from __future__ import print_function + +import sys +import uuid +from time import sleep +from io import open + +import math +import pickle +import numpy as np + +import torch +import torch.nn as nn +import torch.optim as optim +from torch.autograd import Variable +from torch.utils.data import Dataset, DataLoader +from torch.utils.data.sampler import BatchSampler, SequentialSampler +from torch.nn.utils import clip_grad_norm + +from sklearn.metrics import f1_score + +from torchmoji.global_variables import (FINETUNING_METHODS, + FINETUNING_METRICS, + WEIGHTS_DIR) +from torchmoji.tokenizer import tokenize +from torchmoji.sentence_tokenizer import SentenceTokenizer + +IS_PYTHON2 = int(sys.version[0]) == 2 +unicode_ = unicode if IS_PYTHON2 else str + +def load_benchmark(path, vocab, extend_with=0): + """ Loads the given benchmark dataset. + + Tokenizes the texts using the provided vocabulary, extending it with + words from the training dataset if extend_with > 0. Splits them into + three lists: training, validation and testing (in that order). + + Also calculates the maximum length of the texts and the + suggested batch_size. + + # Arguments: + path: Path to the dataset to be loaded. + vocab: Vocabulary to be used for tokenizing texts. + extend_with: If > 0, the vocabulary will be extended with up to + extend_with tokens from the training set before tokenizing. + + # Returns: + A dictionary with the following fields: + texts: List of three lists, containing tokenized inputs for + training, validation and testing (in that order). + labels: List of three lists, containing labels for training, + validation and testing (in that order). + added: Number of tokens added to the vocabulary. + batch_size: Batch size. + maxlen: Maximum length of an input. + """ + # Pre-processing dataset + with open(path, 'rb') as dataset: + if IS_PYTHON2: + data = pickle.load(dataset) + else: + data = pickle.load(dataset, fix_imports=True) + + # Decode data + try: + texts = [unicode_(x) for x in data['texts']] + except UnicodeDecodeError: + texts = [x.decode('utf-8') for x in data['texts']] + + # Extract labels + labels = [x['label'] for x in data['info']] + + batch_size, maxlen = calculate_batchsize_maxlen(texts) + + st = SentenceTokenizer(vocab, maxlen) + + # Split up dataset. Extend the existing vocabulary with up to extend_with + # tokens from the training dataset. + texts, labels, added = st.split_train_val_test(texts, + labels, + [data['train_ind'], + data['val_ind'], + data['test_ind']], + extend_with=extend_with) + return {'texts': texts, + 'labels': labels, + 'added': added, + 'batch_size': batch_size, + 'maxlen': maxlen} + + +def calculate_batchsize_maxlen(texts): + """ Calculates the maximum length in the provided texts and a suitable + batch size. Rounds up maxlen to the nearest multiple of ten. + + # Arguments: + texts: List of inputs. + + # Returns: + Batch size, + max length + """ + def roundup(x): + return int(math.ceil(x / 10.0)) * 10 + + # Calculate max length of sequences considered + # Adjust batch_size accordingly to prevent GPU overflow + lengths = [len(tokenize(t)) for t in texts] + maxlen = roundup(np.percentile(lengths, 80.0)) + batch_size = 250 if maxlen <= 100 else 50 + return batch_size, maxlen + + + +def freeze_layers(model, unfrozen_types=[], unfrozen_keyword=None): + """ Freezes all layers in the given model, except for ones that are + explicitly specified to not be frozen. + + # Arguments: + model: Model whose layers should be modified. + unfrozen_types: List of layer types which shouldn't be frozen. + unfrozen_keyword: Name keywords of layers that shouldn't be frozen. + + # Returns: + Model with the selected layers frozen. + """ + # Get trainable modules + trainable_modules = [(n, m) for n, m in model.named_children() if len([id(p) for p in m.parameters()]) != 0] + for name, module in trainable_modules: + trainable = (any(typ in str(module) for typ in unfrozen_types) or + (unfrozen_keyword is not None and unfrozen_keyword.lower() in name.lower())) + change_trainable(module, trainable, verbose=False) + return model + + +def change_trainable(module, trainable, verbose=False): + """ Helper method that freezes or unfreezes a given layer. + + # Arguments: + module: Module to be modified. + trainable: Whether the layer should be frozen or unfrozen. + verbose: Verbosity flag. + """ + + if verbose: print('Changing MODULE', module, 'to trainable =', trainable) + for name, param in module.named_parameters(): + if verbose: print('Setting weight', name, 'to trainable =', trainable) + param.requires_grad = trainable + + if verbose: + action = 'Unfroze' if trainable else 'Froze' + if verbose: print("{} {}".format(action, module)) + + +def find_f1_threshold(model, val_gen, test_gen, average='binary'): + """ Choose a threshold for F1 based on the validation dataset + (see https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4442797/ + for details on why to find another threshold than simply 0.5) + + # Arguments: + model: pyTorch model + val_gen: Validation set dataloader. + test_gen: Testing set dataloader. + + # Returns: + F1 score for the given data and + the corresponding F1 threshold + """ + thresholds = np.arange(0.01, 0.5, step=0.01) + f1_scores = [] + + model.eval() + val_out = [(y, model(X)) for X, y in val_gen] + y_val, y_pred_val = (list(t) for t in zip(*val_out)) + + test_out = [(y, model(X)) for X, y in test_gen] + y_test, y_pred_test = (list(t) for t in zip(*val_out)) + + for t in thresholds: + y_pred_val_ind = (y_pred_val > t) + f1_val = f1_score(y_val, y_pred_val_ind, average=average) + f1_scores.append(f1_val) + + best_t = thresholds[np.argmax(f1_scores)] + y_pred_ind = (y_pred_test > best_t) + f1_test = f1_score(y_test, y_pred_ind, average=average) + return f1_test, best_t + + +def finetune(model, texts, labels, nb_classes, batch_size, method, + metric='acc', epoch_size=5000, nb_epochs=1000, embed_l2=1E-6, + verbose=1): + """ Compiles and finetunes the given pytorch model. + + # Arguments: + model: Model to be finetuned + texts: List of three lists, containing tokenized inputs for training, + validation and testing (in that order). + labels: List of three lists, containing labels for training, + validation and testing (in that order). + nb_classes: Number of classes in the dataset. + batch_size: Batch size. + method: Finetuning method to be used. For available methods, see + FINETUNING_METHODS in global_variables.py. + metric: Evaluation metric to be used. For available metrics, see + FINETUNING_METRICS in global_variables.py. + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. Doesn't matter much as early stopping is used. + embed_l2: L2 regularization for the embedding layer. + verbose: Verbosity flag. + + # Returns: + Model after finetuning, + score after finetuning using the provided metric. + """ + + if method not in FINETUNING_METHODS: + raise ValueError('ERROR (finetune): Invalid method parameter. ' + 'Available options: {}'.format(FINETUNING_METHODS)) + if metric not in FINETUNING_METRICS: + raise ValueError('ERROR (finetune): Invalid metric parameter. ' + 'Available options: {}'.format(FINETUNING_METRICS)) + + train_gen = get_data_loader(texts[0], labels[0], batch_size, + extended_batch_sampler=True, epoch_size=epoch_size) + val_gen = get_data_loader(texts[1], labels[1], batch_size, + extended_batch_sampler=False) + test_gen = get_data_loader(texts[2], labels[2], batch_size, + extended_batch_sampler=False) + + checkpoint_path = '{}/torchmoji-checkpoint-{}.bin' \ + .format(WEIGHTS_DIR, str(uuid.uuid4())) + + if method in ['last', 'new']: + lr = 0.001 + elif method in ['full', 'chain-thaw']: + lr = 0.0001 + + loss_op = nn.BCEWithLogitsLoss() if nb_classes <= 2 \ + else nn.CrossEntropyLoss() + + # Freeze layers if using last + if method == 'last': + model = freeze_layers(model, unfrozen_keyword='output_layer') + + # Define optimizer, for chain-thaw we define it later (after freezing) + if method == 'last': + adam = optim.Adam((p for p in model.parameters() if p.requires_grad), lr=lr) + elif method in ['full', 'new']: + # Add L2 regulation on embeddings only + embed_params_id = [id(p) for p in model.embed.parameters()] + output_layer_params_id = [id(p) for p in model.output_layer.parameters()] + base_params = [p for p in model.parameters() + if id(p) not in embed_params_id and id(p) not in output_layer_params_id and p.requires_grad] + embed_params = [p for p in model.parameters() if id(p) in embed_params_id and p.requires_grad] + output_layer_params = [p for p in model.parameters() if id(p) in output_layer_params_id and p.requires_grad] + adam = optim.Adam([ + {'params': base_params}, + {'params': embed_params, 'weight_decay': embed_l2}, + {'params': output_layer_params, 'lr': 0.001}, + ], lr=lr) + + # Training + if verbose: + print('Method: {}'.format(method)) + print('Metric: {}'.format(metric)) + print('Classes: {}'.format(nb_classes)) + + if method == 'chain-thaw': + result = chain_thaw(model, train_gen, val_gen, test_gen, nb_epochs, checkpoint_path, loss_op, embed_l2=embed_l2, + evaluate=metric, verbose=verbose) + else: + result = tune_trainable(model, loss_op, adam, train_gen, val_gen, test_gen, nb_epochs, checkpoint_path, + evaluate=metric, verbose=verbose) + return model, result + + +def tune_trainable(model, loss_op, optim_op, train_gen, val_gen, test_gen, + nb_epochs, checkpoint_path, patience=5, evaluate='acc', + verbose=2): + """ Finetunes the given model using the accuracy measure. + + # Arguments: + model: Model to be finetuned. + nb_classes: Number of classes in the given dataset. + train: Training data, given as a tuple of (inputs, outputs) + val: Validation data, given as a tuple of (inputs, outputs) + test: Testing data, given as a tuple of (inputs, outputs) + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. + batch_size: Batch size. + checkpoint_weight_path: Filepath where weights will be checkpointed to + during training. This file will be rewritten by the function. + patience: Patience for callback methods. + evaluate: Evaluation method to use. Can be 'acc' or 'weighted_f1'. + verbose: Verbosity flag. + + # Returns: + Accuracy of the trained model, ONLY if 'evaluate' is set. + """ + if verbose: + print("Trainable weights: {}".format([n for n, p in model.named_parameters() if p.requires_grad])) + print("Training...") + if evaluate == 'acc': + print("Evaluation on test set prior training:", evaluate_using_acc(model, test_gen)) + elif evaluate == 'weighted_f1': + print("Evaluation on test set prior training:", evaluate_using_weighted_f1(model, test_gen, val_gen)) + + fit_model(model, loss_op, optim_op, train_gen, val_gen, nb_epochs, checkpoint_path, patience) + + # Reload the best weights found to avoid overfitting + # Wait a bit to allow proper closing of weights file + sleep(1) + model.load_state_dict(torch.load(checkpoint_path)) + if verbose >= 2: + print("Loaded weights from {}".format(checkpoint_path)) + + if evaluate == 'acc': + return evaluate_using_acc(model, test_gen) + elif evaluate == 'weighted_f1': + return evaluate_using_weighted_f1(model, test_gen, val_gen) + + +def evaluate_using_weighted_f1(model, test_gen, val_gen): + """ Evaluation function using macro weighted F1 score. + + # Arguments: + model: Model to be evaluated. + X_test: Inputs of the testing set. + y_test: Outputs of the testing set. + X_val: Inputs of the validation set. + y_val: Outputs of the validation set. + batch_size: Batch size. + + # Returns: + Weighted F1 score of the given model. + """ + # Evaluate on test and val data + f1_test, _ = find_f1_threshold(model, test_gen, val_gen, average='weighted_f1') + return f1_test + + +def evaluate_using_acc(model, test_gen): + """ Evaluation function using accuracy. + + # Arguments: + model: Model to be evaluated. + test_gen: Testing data iterator (DataLoader) + + # Returns: + Accuracy of the given model. + """ + + # Validate on test_data + model.eval() + correct_count = 0.0 + total_y = sum(len(y) for _, y in test_gen) + for i, data in enumerate(test_gen): + x, y = data + outs = model(x) + pred = (outs >= 0).long() + added_counts = (pred == y).double().sum() + correct_count += added_counts + return correct_count/total_y + + +def chain_thaw(model, train_gen, val_gen, test_gen, nb_epochs, checkpoint_path, loss_op, + patience=5, initial_lr=0.001, next_lr=0.0001, embed_l2=1E-6, evaluate='acc', verbose=1): + """ Finetunes given model using chain-thaw and evaluates using accuracy. + + # Arguments: + model: Model to be finetuned. + train: Training data, given as a tuple of (inputs, outputs) + val: Validation data, given as a tuple of (inputs, outputs) + test: Testing data, given as a tuple of (inputs, outputs) + batch_size: Batch size. + loss: Loss function to be used during training. + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. + checkpoint_weight_path: Filepath where weights will be checkpointed to + during training. This file will be rewritten by the function. + initial_lr: Initial learning rate. Will only be used for the first + training step (i.e. the output_layer layer) + next_lr: Learning rate for every subsequent step. + seed: Random number generator seed. + verbose: Verbosity flag. + evaluate: Evaluation method to use. Can be 'acc' or 'weighted_f1'. + + # Returns: + Accuracy of the finetuned model. + """ + if verbose: + print('Training..') + + # Train using chain-thaw + train_by_chain_thaw(model, train_gen, val_gen, loss_op, patience, nb_epochs, checkpoint_path, + initial_lr, next_lr, embed_l2, verbose) + + if evaluate == 'acc': + return evaluate_using_acc(model, test_gen) + elif evaluate == 'weighted_f1': + return evaluate_using_weighted_f1(model, test_gen, val_gen) + + +def train_by_chain_thaw(model, train_gen, val_gen, loss_op, patience, nb_epochs, checkpoint_path, + initial_lr=0.001, next_lr=0.0001, embed_l2=1E-6, verbose=1): + """ Finetunes model using the chain-thaw method. + + This is done as follows: + 1) Freeze every layer except the last (output_layer) layer and train it. + 2) Freeze every layer except the first layer and train it. + 3) Freeze every layer except the second etc., until the second last layer. + 4) Unfreeze all layers and train entire model. + + # Arguments: + model: Model to be trained. + train_gen: Training sample generator. + val_data: Validation data. + loss: Loss function to be used. + finetuning_args: Training early stopping and checkpoint saving parameters + epoch_size: Number of samples in an epoch. + nb_epochs: Number of epochs. + checkpoint_weight_path: Where weight checkpoints should be saved. + batch_size: Batch size. + initial_lr: Initial learning rate. Will only be used for the first + training step (i.e. the output_layer layer) + next_lr: Learning rate for every subsequent step. + verbose: Verbosity flag. + """ + # Get trainable layers + layers = [m for m in model.children() if len([id(p) for p in m.parameters()]) != 0] + + # Bring last layer to front + layers.insert(0, layers.pop(len(layers) - 1)) + + # Add None to the end to signify finetuning all layers + layers.append(None) + + lr = None + # Finetune each layer one by one and finetune all of them at once + # at the end + for layer in layers: + if lr is None: + lr = initial_lr + elif lr == initial_lr: + lr = next_lr + + # Freeze all except current layer + for _layer in layers: + if _layer is not None: + trainable = _layer == layer or layer is None + change_trainable(_layer, trainable=trainable, verbose=False) + + # Verify we froze the right layers + for _layer in model.children(): + assert all(p.requires_grad == (_layer == layer) for p in _layer.parameters()) or layer is None + + if verbose: + if layer is None: + print('Finetuning all layers') + else: + print('Finetuning {}'.format(layer)) + + special_params = [id(p) for p in model.embed.parameters()] + base_params = [p for p in model.parameters() if id(p) not in special_params and p.requires_grad] + embed_parameters = [p for p in model.parameters() if id(p) in special_params and p.requires_grad] + adam = optim.Adam([ + {'params': base_params}, + {'params': embed_parameters, 'weight_decay': embed_l2}, + ], lr=lr) + + fit_model(model, loss_op, adam, train_gen, val_gen, nb_epochs, + checkpoint_path, patience) + + # Reload the best weights found to avoid overfitting + # Wait a bit to allow proper closing of weights file + sleep(1) + model.load_state_dict(torch.load(checkpoint_path)) + if verbose >= 2: + print("Loaded weights from {}".format(checkpoint_path)) + +def fit_model(model, loss_op, optim_op, train_gen, val_gen, epochs, + checkpoint_path, patience): + """ Analog to Keras fit_generator function. + + # Arguments: + model: Model to be finetuned. + loss_op: loss operation (BCEWithLogitsLoss or CrossEntropy for e.g.) + optim_op: optimization operation (Adam e.g.) + train_gen: Training data iterator (DataLoader) + val_gen: Validation data iterator (DataLoader) + epochs: Number of epochs. + checkpoint_path: Filepath where weights will be checkpointed to + during training. This file will be rewritten by the function. + patience: Patience for callback methods. + verbose: Verbosity flag. + + # Returns: + Accuracy of the trained model, ONLY if 'evaluate' is set. + """ + # Save original checkpoint + torch.save(model.state_dict(), checkpoint_path) + + model.eval() + best_loss = np.mean([loss_op(model(Variable(xv)).squeeze(), Variable(yv.float()).squeeze()).data.cpu().numpy()[0] for xv, yv in val_gen]) + print("original val loss", best_loss) + + epoch_without_impr = 0 + for epoch in range(epochs): + for i, data in enumerate(train_gen): + X_train, y_train = data + X_train = Variable(X_train, requires_grad=False) + y_train = Variable(y_train, requires_grad=False) + if torch.cuda.is_available(): + X_train = X_train.cuda() + y_train = y_train.cuda() + model.train() + optim_op.zero_grad() + output = model(X_train) + loss = loss_op(output, y_train.float()) + loss.backward() + clip_grad_norm(model.parameters(), 1) + optim_op.step() + + acc = evaluate_using_acc(model, [(X_train.data, y_train.data)]) + print("== Epoch", epoch, "step", i, "train loss", loss.data.cpu().numpy()[0], "train acc", acc) + + model.eval() + acc = evaluate_using_acc(model, val_gen) + print("val acc", acc) + + val_loss = np.mean([loss_op(model(Variable(xv)).squeeze(), Variable(yv.float()).squeeze()).data.cpu().numpy()[0] for xv, yv in val_gen]) + print("val loss", val_loss) + if best_loss is not None and val_loss >= best_loss: + epoch_without_impr += 1 + print('No improvement over previous best loss: ', best_loss) + + # Save checkpoint + if best_loss is None or val_loss < best_loss: + best_loss = val_loss + torch.save(model.state_dict(), checkpoint_path) + print('Saving model at', checkpoint_path) + + # Early stopping + if epoch_without_impr >= patience: + break + +def get_data_loader(X_in, y_in, batch_size, extended_batch_sampler=True, epoch_size=25000, upsample=False, seed=42): + """ Returns a dataloader that enables larger epochs on small datasets and + has upsampling functionality. + + # Arguments: + X_in: Inputs of the given dataset. + y_in: Outputs of the given dataset. + batch_size: Batch size. + epoch_size: Number of samples in an epoch. + upsample: Whether upsampling should be done. This flag should only be + set on binary class problems. + + # Returns: + DataLoader. + """ + dataset = DeepMojiDataset(X_in, y_in) + + if extended_batch_sampler: + batch_sampler = DeepMojiBatchSampler(y_in, batch_size, epoch_size=epoch_size, upsample=upsample, seed=seed) + else: + batch_sampler = BatchSampler(SequentialSampler(y_in), batch_size, drop_last=False) + + return DataLoader(dataset, batch_sampler=batch_sampler, num_workers=0) + +class DeepMojiDataset(Dataset): + """ A simple Dataset class. + + # Arguments: + X_in: Inputs of the given dataset. + y_in: Outputs of the given dataset. + + # __getitem__ output: + (torch.LongTensor, torch.LongTensor) + """ + def __init__(self, X_in, y_in): + # Check if we have Torch.LongTensor inputs (assume Numpy array otherwise) + if not isinstance(X_in, torch.LongTensor): + X_in = torch.from_numpy(X_in.astype('int64')).long() + if not isinstance(y_in, torch.LongTensor): + y_in = torch.from_numpy(y_in.astype('int64')).long() + + self.X_in = torch.split(X_in, 1, dim=0) + self.y_in = torch.split(y_in, 1, dim=0) + + def __len__(self): + return len(self.X_in) + + def __getitem__(self, idx): + return self.X_in[idx].squeeze(), self.y_in[idx].squeeze() + +class DeepMojiBatchSampler(object): + """A Batch sampler that enables larger epochs on small datasets and + has upsampling functionality. + + # Arguments: + y_in: Labels of the dataset. + batch_size: Batch size. + epoch_size: Number of samples in an epoch. + upsample: Whether upsampling should be done. This flag should only be + set on binary class problems. + seed: Random number generator seed. + + # __iter__ output: + iterator of lists (batches) of indices in the dataset + """ + + def __init__(self, y_in, batch_size, epoch_size, upsample, seed): + self.batch_size = batch_size + self.epoch_size = epoch_size + self.upsample = upsample + + np.random.seed(seed) + + if upsample: + # Should only be used on binary class problems + assert len(y_in.shape) == 1 + neg = np.where(y_in.numpy() == 0)[0] + pos = np.where(y_in.numpy() == 1)[0] + assert epoch_size % 2 == 0 + samples_pr_class = int(epoch_size / 2) + else: + ind = range(len(y_in)) + + if not upsample: + # Randomly sample observations in a balanced way + self.sample_ind = np.random.choice(ind, epoch_size, replace=True) + else: + # Randomly sample observations in a balanced way + sample_neg = np.random.choice(neg, samples_pr_class, replace=True) + sample_pos = np.random.choice(pos, samples_pr_class, replace=True) + concat_ind = np.concatenate((sample_neg, sample_pos), axis=0) + + # Shuffle to avoid labels being in specific order + # (all negative then positive) + p = np.random.permutation(len(concat_ind)) + self.sample_ind = concat_ind[p] + + label_dist = np.mean(y_in.numpy()[self.sample_ind]) + assert(label_dist > 0.45) + assert(label_dist < 0.55) + + def __iter__(self): + # Hand-off data using batch_size + for i in range(int(self.epoch_size/self.batch_size)): + start = i * self.batch_size + end = min(start + self.batch_size, self.epoch_size) + yield self.sample_ind[start:end] + + def __len__(self): + # Take care of the last (maybe incomplete) batch + return (self.epoch_size + self.batch_size - 1) // self.batch_size diff --git a/torchmoji/global_variables.py b/torchmoji/global_variables.py new file mode 100644 index 0000000..0120911 --- /dev/null +++ b/torchmoji/global_variables.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +""" Global variables. +""" +import tempfile +from os.path import abspath, dirname + +# The ordering of these special tokens matter +# blank tokens can be used for new purposes +# Tokenizer should be updated if special token prefix is changed +SPECIAL_PREFIX = 'CUSTOM_' +SPECIAL_TOKENS = ['CUSTOM_MASK', + 'CUSTOM_UNKNOWN', + 'CUSTOM_AT', + 'CUSTOM_URL', + 'CUSTOM_NUMBER', + 'CUSTOM_BREAK'] +SPECIAL_TOKENS.extend(['{}BLANK_{}'.format(SPECIAL_PREFIX, i) for i in range(6, 10)]) + +ROOT_PATH = dirname(dirname(abspath(__file__))) +VOCAB_PATH = '{}/model/vocabulary.json'.format(ROOT_PATH) +PRETRAINED_PATH = '{}/model/pytorch_model.bin'.format(ROOT_PATH) + +WEIGHTS_DIR = tempfile.mkdtemp() + +NB_TOKENS = 50000 +NB_EMOJI_CLASSES = 64 +FINETUNING_METHODS = ['last', 'full', 'new', 'chain-thaw'] +FINETUNING_METRICS = ['acc', 'weighted'] diff --git a/torchmoji/lstm.py b/torchmoji/lstm.py new file mode 100644 index 0000000..67ed0e1 --- /dev/null +++ b/torchmoji/lstm.py @@ -0,0 +1,356 @@ +# -*- coding: utf-8 -*- +""" Implement a pyTorch LSTM with hard sigmoid reccurent activation functions. + Adapted from the non-cuda variant of pyTorch LSTM at + https://github.com/pytorch/pytorch/blob/master/torch/nn/_functions/rnn.py +""" + +from __future__ import print_function, division +import math +import torch + +from torch.nn import Module +from torch.nn.parameter import Parameter +from torch.nn.utils.rnn import PackedSequence +import torch.nn.functional as F + +class LSTMHardSigmoid(Module): + + def __init__(self, input_size, hidden_size, + num_layers=1, bias=True, batch_first=False, + dropout=0, bidirectional=False): + super(LSTMHardSigmoid, self).__init__() + self.input_size = input_size + self.hidden_size = hidden_size + self.num_layers = num_layers + self.bias = bias + self.batch_first = batch_first + self.dropout = dropout + self.dropout_state = {} + self.bidirectional = bidirectional + num_directions = 2 if bidirectional else 1 + + gate_size = 4 * hidden_size + + self._all_weights = [] + for layer in range(num_layers): + for direction in range(num_directions): + layer_input_size = input_size if layer == 0 else hidden_size * num_directions + + w_ih = Parameter(torch.Tensor(gate_size, layer_input_size)) + w_hh = Parameter(torch.Tensor(gate_size, hidden_size)) + b_ih = Parameter(torch.Tensor(gate_size)) + b_hh = Parameter(torch.Tensor(gate_size)) + layer_params = (w_ih, w_hh, b_ih, b_hh) + + suffix = '_reverse' if direction == 1 else '' + param_names = ['weight_ih_l{}{}', 'weight_hh_l{}{}'] + if bias: + param_names += ['bias_ih_l{}{}', 'bias_hh_l{}{}'] + param_names = [x.format(layer, suffix) for x in param_names] + + for name, param in zip(param_names, layer_params): + setattr(self, name, param) + self._all_weights.append(param_names) + + self.flatten_parameters() + self.reset_parameters() + + def flatten_parameters(self): + """Resets parameter data pointer so that they can use faster code paths. + + Right now, this is a no-op wince we don't use CUDA acceleration. + """ + self._data_ptrs = [] + + def _apply(self, fn): + ret = super(LSTMHardSigmoid, self)._apply(fn) + self.flatten_parameters() + return ret + + def reset_parameters(self): + stdv = 1.0 / math.sqrt(self.hidden_size) + for weight in self.parameters(): + weight.data.uniform_(-stdv, stdv) + + def forward(self, input, hx=None): + is_packed = isinstance(input, PackedSequence) + if is_packed: + input, batch_sizes = input + max_batch_size = batch_sizes[0] + else: + batch_sizes = None + max_batch_size = input.size(0) if self.batch_first else input.size(1) + + if hx is None: + num_directions = 2 if self.bidirectional else 1 + hx = torch.autograd.Variable(input.data.new(self.num_layers * + num_directions, + max_batch_size, + self.hidden_size).zero_(), requires_grad=False) + hx = (hx, hx) + + has_flat_weights = list(p.data.data_ptr() for p in self.parameters()) == self._data_ptrs + if has_flat_weights: + first_data = next(self.parameters()).data + assert first_data.storage().size() == self._param_buf_size + flat_weight = first_data.new().set_(first_data.storage(), 0, torch.Size([self._param_buf_size])) + else: + flat_weight = None + func = AutogradRNN( + self.input_size, + self.hidden_size, + num_layers=self.num_layers, + batch_first=self.batch_first, + dropout=self.dropout, + train=self.training, + bidirectional=self.bidirectional, + batch_sizes=batch_sizes, + dropout_state=self.dropout_state, + flat_weight=flat_weight + ) + output, hidden = func(input, self.all_weights, hx) + if is_packed: + output = PackedSequence(output, batch_sizes) + return output, hidden + + def __repr__(self): + s = '{name}({input_size}, {hidden_size}' + if self.num_layers != 1: + s += ', num_layers={num_layers}' + if self.bias is not True: + s += ', bias={bias}' + if self.batch_first is not False: + s += ', batch_first={batch_first}' + if self.dropout != 0: + s += ', dropout={dropout}' + if self.bidirectional is not False: + s += ', bidirectional={bidirectional}' + s += ')' + return s.format(name=self.__class__.__name__, **self.__dict__) + + def __setstate__(self, d): + super(LSTMHardSigmoid, self).__setstate__(d) + self.__dict__.setdefault('_data_ptrs', []) + if 'all_weights' in d: + self._all_weights = d['all_weights'] + if isinstance(self._all_weights[0][0], str): + return + num_layers = self.num_layers + num_directions = 2 if self.bidirectional else 1 + self._all_weights = [] + for layer in range(num_layers): + for direction in range(num_directions): + suffix = '_reverse' if direction == 1 else '' + weights = ['weight_ih_l{}{}', 'weight_hh_l{}{}', 'bias_ih_l{}{}', 'bias_hh_l{}{}'] + weights = [x.format(layer, suffix) for x in weights] + if self.bias: + self._all_weights += [weights] + else: + self._all_weights += [weights[:2]] + + @property + def all_weights(self): + return [[getattr(self, weight) for weight in weights] for weights in self._all_weights] + +def AutogradRNN(input_size, hidden_size, num_layers=1, batch_first=False, + dropout=0, train=True, bidirectional=False, batch_sizes=None, + dropout_state=None, flat_weight=None): + + cell = LSTMCell + + if batch_sizes is None: + rec_factory = Recurrent + else: + rec_factory = variable_recurrent_factory(batch_sizes) + + if bidirectional: + layer = (rec_factory(cell), rec_factory(cell, reverse=True)) + else: + layer = (rec_factory(cell),) + + func = StackedRNN(layer, + num_layers, + True, + dropout=dropout, + train=train) + + def forward(input, weight, hidden): + if batch_first and batch_sizes is None: + input = input.transpose(0, 1) + + nexth, output = func(input, hidden, weight) + + if batch_first and batch_sizes is None: + output = output.transpose(0, 1) + + return output, nexth + + return forward + +def Recurrent(inner, reverse=False): + def forward(input, hidden, weight): + output = [] + steps = range(input.size(0) - 1, -1, -1) if reverse else range(input.size(0)) + for i in steps: + hidden = inner(input[i], hidden, *weight) + # hack to handle LSTM + output.append(hidden[0] if isinstance(hidden, tuple) else hidden) + + if reverse: + output.reverse() + output = torch.cat(output, 0).view(input.size(0), *output[0].size()) + + return hidden, output + + return forward + + +def variable_recurrent_factory(batch_sizes): + def fac(inner, reverse=False): + if reverse: + return VariableRecurrentReverse(batch_sizes, inner) + else: + return VariableRecurrent(batch_sizes, inner) + return fac + +def VariableRecurrent(batch_sizes, inner): + def forward(input, hidden, weight): + output = [] + input_offset = 0 + last_batch_size = batch_sizes[0] + hiddens = [] + flat_hidden = not isinstance(hidden, tuple) + if flat_hidden: + hidden = (hidden,) + for batch_size in batch_sizes: + step_input = input[input_offset:input_offset + batch_size] + input_offset += batch_size + + dec = last_batch_size - batch_size + if dec > 0: + hiddens.append(tuple(h[-dec:] for h in hidden)) + hidden = tuple(h[:-dec] for h in hidden) + last_batch_size = batch_size + + if flat_hidden: + hidden = (inner(step_input, hidden[0], *weight),) + else: + hidden = inner(step_input, hidden, *weight) + + output.append(hidden[0]) + hiddens.append(hidden) + hiddens.reverse() + + hidden = tuple(torch.cat(h, 0) for h in zip(*hiddens)) + assert hidden[0].size(0) == batch_sizes[0] + if flat_hidden: + hidden = hidden[0] + output = torch.cat(output, 0) + + return hidden, output + + return forward + + +def VariableRecurrentReverse(batch_sizes, inner): + def forward(input, hidden, weight): + output = [] + input_offset = input.size(0) + last_batch_size = batch_sizes[-1] + initial_hidden = hidden + flat_hidden = not isinstance(hidden, tuple) + if flat_hidden: + hidden = (hidden,) + initial_hidden = (initial_hidden,) + hidden = tuple(h[:batch_sizes[-1]] for h in hidden) + for batch_size in reversed(batch_sizes): + inc = batch_size - last_batch_size + if inc > 0: + hidden = tuple(torch.cat((h, ih[last_batch_size:batch_size]), 0) + for h, ih in zip(hidden, initial_hidden)) + last_batch_size = batch_size + step_input = input[input_offset - batch_size:input_offset] + input_offset -= batch_size + + if flat_hidden: + hidden = (inner(step_input, hidden[0], *weight),) + else: + hidden = inner(step_input, hidden, *weight) + output.append(hidden[0]) + + output.reverse() + output = torch.cat(output, 0) + if flat_hidden: + hidden = hidden[0] + return hidden, output + + return forward + +def StackedRNN(inners, num_layers, lstm=False, dropout=0, train=True): + + num_directions = len(inners) + total_layers = num_layers * num_directions + + def forward(input, hidden, weight): + assert(len(weight) == total_layers) + next_hidden = [] + + if lstm: + hidden = list(zip(*hidden)) + + for i in range(num_layers): + all_output = [] + for j, inner in enumerate(inners): + l = i * num_directions + j + + hy, output = inner(input, hidden[l], weight[l]) + next_hidden.append(hy) + all_output.append(output) + + input = torch.cat(all_output, input.dim() - 1) + + if dropout != 0 and i < num_layers - 1: + input = F.dropout(input, p=dropout, training=train, inplace=False) + + if lstm: + next_h, next_c = zip(*next_hidden) + next_hidden = ( + torch.cat(next_h, 0).view(total_layers, *next_h[0].size()), + torch.cat(next_c, 0).view(total_layers, *next_c[0].size()) + ) + else: + next_hidden = torch.cat(next_hidden, 0).view( + total_layers, *next_hidden[0].size()) + + return next_hidden, input + + return forward + +def LSTMCell(input, hidden, w_ih, w_hh, b_ih=None, b_hh=None): + """ + A modified LSTM cell with hard sigmoid activation on the input, forget and output gates. + """ + hx, cx = hidden + gates = F.linear(input, w_ih, b_ih) + F.linear(hx, w_hh, b_hh) + + ingate, forgetgate, cellgate, outgate = gates.chunk(4, 1) + + ingate = hard_sigmoid(ingate) + forgetgate = hard_sigmoid(forgetgate) + cellgate = F.tanh(cellgate) + outgate = hard_sigmoid(outgate) + + cy = (forgetgate * cx) + (ingate * cellgate) + hy = outgate * F.tanh(cy) + + return hy, cy + +def hard_sigmoid(x): + """ + Computes element-wise hard sigmoid of x. + See e.g. https://github.com/Theano/Theano/blob/master/theano/tensor/nnet/sigm.py#L279 + """ + x = (0.2 * x) + 0.5 + x = F.threshold(-x, -1, -1) + x = F.threshold(-x, 0, 0) + return x diff --git a/torchmoji/model_def.py b/torchmoji/model_def.py new file mode 100644 index 0000000..c783678 --- /dev/null +++ b/torchmoji/model_def.py @@ -0,0 +1,315 @@ +# -*- coding: utf-8 -*- +""" Model definition functions and weight loading. +""" + +from __future__ import print_function, division, unicode_literals + +from os.path import exists + +import torch +import torch.nn as nn +from torch.autograd import Variable +from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence, PackedSequence + +from torchmoji.lstm import LSTMHardSigmoid +from torchmoji.attlayer import Attention +from torchmoji.global_variables import NB_TOKENS, NB_EMOJI_CLASSES + + +def torchmoji_feature_encoding(weight_path, return_attention=False): + """ Loads the pretrained torchMoji model for extracting features + from the penultimate feature layer. In this way, it transforms + the text into its emotional encoding. + + # Arguments: + weight_path: Path to model weights to be loaded. + return_attention: If true, output will include weight of each input token + used for the prediction + + # Returns: + Pretrained model for encoding text into feature vectors. + """ + + model = TorchMoji(nb_classes=None, + nb_tokens=NB_TOKENS, + feature_output=True, + return_attention=return_attention) + load_specific_weights(model, weight_path, exclude_names=['output_layer']) + return model + + +def torchmoji_emojis(weight_path, return_attention=False): + """ Loads the pretrained torchMoji model for extracting features + from the penultimate feature layer. In this way, it transforms + the text into its emotional encoding. + + # Arguments: + weight_path: Path to model weights to be loaded. + return_attention: If true, output will include weight of each input token + used for the prediction + + # Returns: + Pretrained model for encoding text into feature vectors. + """ + + model = TorchMoji(nb_classes=NB_EMOJI_CLASSES, + nb_tokens=NB_TOKENS, + return_attention=return_attention) + model.load_state_dict(torch.load(weight_path)) + return model + + +def torchmoji_transfer(nb_classes, weight_path=None, extend_embedding=0, + embed_dropout_rate=0.1, final_dropout_rate=0.5): + """ Loads the pretrained torchMoji model for finetuning/transfer learning. + Does not load weights for the softmax layer. + + Note that if you are planning to use class average F1 for evaluation, + nb_classes should be set to 2 instead of the actual number of classes + in the dataset, since binary classification will be performed on each + class individually. + + Note that for the 'new' method, weight_path should be left as None. + + # Arguments: + nb_classes: Number of classes in the dataset. + weight_path: Path to model weights to be loaded. + extend_embedding: Number of tokens that have been added to the + vocabulary on top of NB_TOKENS. If this number is larger than 0, + the embedding layer's dimensions are adjusted accordingly, with the + additional weights being set to random values. + embed_dropout_rate: Dropout rate for the embedding layer. + final_dropout_rate: Dropout rate for the final Softmax layer. + + # Returns: + Model with the given parameters. + """ + + model = TorchMoji(nb_classes=nb_classes, + nb_tokens=NB_TOKENS + extend_embedding, + embed_dropout_rate=embed_dropout_rate, + final_dropout_rate=final_dropout_rate, + output_logits=True) + if weight_path is not None: + load_specific_weights(model, weight_path, + exclude_names=['output_layer'], + extend_embedding=extend_embedding) + return model + + +class TorchMoji(nn.Module): + def __init__(self, nb_classes, nb_tokens, feature_output=False, output_logits=False, + embed_dropout_rate=0, final_dropout_rate=0, return_attention=False): + """ + torchMoji model. + IMPORTANT: The model is loaded in evaluation mode by default (self.eval()) + + # Arguments: + nb_classes: Number of classes in the dataset. + nb_tokens: Number of tokens in the dataset (i.e. vocabulary size). + feature_output: If True the model returns the penultimate + feature vector rather than Softmax probabilities + (defaults to False). + output_logits: If True the model returns logits rather than probabilities + (defaults to False). + embed_dropout_rate: Dropout rate for the embedding layer. + final_dropout_rate: Dropout rate for the final Softmax layer. + return_attention: If True the model also returns attention weights over the sentence + (defaults to False). + """ + super(TorchMoji, self).__init__() + + embedding_dim = 256 + hidden_size = 512 + attention_size = 4 * hidden_size + embedding_dim + + self.feature_output = feature_output + self.embed_dropout_rate = embed_dropout_rate + self.final_dropout_rate = final_dropout_rate + self.return_attention = return_attention + self.hidden_size = hidden_size + self.output_logits = output_logits + self.nb_classes = nb_classes + + self.add_module('embed', nn.Embedding(nb_tokens, embedding_dim)) + # dropout2D: embedding channels are dropped out instead of words + # many exampels in the datasets contain few words that losing one or more words can alter the emotions completely + self.add_module('embed_dropout', nn.Dropout2d(embed_dropout_rate)) + self.add_module('lstm_0', LSTMHardSigmoid(embedding_dim, hidden_size, batch_first=True, bidirectional=True)) + self.add_module('lstm_1', LSTMHardSigmoid(hidden_size*2, hidden_size, batch_first=True, bidirectional=True)) + self.add_module('attention_layer', Attention(attention_size=attention_size, return_attention=return_attention)) + if not feature_output: + self.add_module('final_dropout', nn.Dropout(final_dropout_rate)) + if output_logits: + self.add_module('output_layer', nn.Sequential(nn.Linear(attention_size, nb_classes if self.nb_classes > 2 else 1))) + else: + self.add_module('output_layer', nn.Sequential(nn.Linear(attention_size, nb_classes if self.nb_classes > 2 else 1), + nn.Softmax() if self.nb_classes > 2 else nn.Sigmoid())) + self.init_weights() + # Put model in evaluation mode by default + self.eval() + + def init_weights(self): + """ + Here we reproduce Keras default initialization weights for consistency with Keras version + """ + ih = (param.data for name, param in self.named_parameters() if 'weight_ih' in name) + hh = (param.data for name, param in self.named_parameters() if 'weight_hh' in name) + b = (param.data for name, param in self.named_parameters() if 'bias' in name) + nn.init.uniform(self.embed.weight.data, a=-0.5, b=0.5) + for t in ih: + nn.init.xavier_uniform(t) + for t in hh: + nn.init.orthogonal(t) + for t in b: + nn.init.constant(t, 0) + if not self.feature_output: + nn.init.xavier_uniform(self.output_layer[0].weight.data) + + def forward(self, input_seqs): + """ Forward pass. + + # Arguments: + input_seqs: Can be one of Numpy array, Torch.LongTensor, Torch.Variable, Torch.PackedSequence. + + # Return: + Same format as input format (except for PackedSequence returned as Variable). + """ + # Check if we have Torch.LongTensor inputs or not Torch.Variable (assume Numpy array in this case), take note to return same format + return_numpy = False + return_tensor = False + if isinstance(input_seqs, (torch.LongTensor, torch.cuda.LongTensor)): + input_seqs = Variable(input_seqs) + return_tensor = True + elif not isinstance(input_seqs, Variable): + input_seqs = Variable(torch.from_numpy(input_seqs.astype('int64')).long()) + return_numpy = True + + # If we don't have a packed inputs, let's pack it + reorder_output = False + if not isinstance(input_seqs, PackedSequence): + ho = self.lstm_0.weight_hh_l0.data.new(2, input_seqs.size()[0], self.hidden_size).zero_() + co = self.lstm_0.weight_hh_l0.data.new(2, input_seqs.size()[0], self.hidden_size).zero_() + + # Reorder batch by sequence length + input_lengths = torch.LongTensor([torch.max(input_seqs[i, :].data.nonzero()) + 1 for i in range(input_seqs.size()[0])]) + input_lengths, perm_idx = input_lengths.sort(0, descending=True) + input_seqs = input_seqs[perm_idx][:, :input_lengths.max()] + + # Pack sequence and work on data tensor to reduce embeddings/dropout computations + packed_input = pack_padded_sequence(input_seqs, input_lengths.cpu().numpy(), batch_first=True) + reorder_output = True + else: + ho = self.lstm_0.weight_hh_l0.data.data.new(2, input_seqs.size()[0], self.hidden_size).zero_() + co = self.lstm_0.weight_hh_l0.data.data.new(2, input_seqs.size()[0], self.hidden_size).zero_() + input_lengths = input_seqs.batch_sizes + packed_input = input_seqs + + hidden = (Variable(ho, requires_grad=False), Variable(co, requires_grad=False)) + + # Embed with an activation function to bound the values of the embeddings + x = self.embed(packed_input.data) + x = nn.Tanh()(x) + + # pyTorch 2D dropout2d operate on axis 1 which is fine for us + x = self.embed_dropout(x) + + # Update packed sequence data for RNN + packed_input = PackedSequence(data=x, batch_sizes=packed_input.batch_sizes) + + # skip-connection from embedding to output eases gradient-flow and allows access to lower-level features + # ordering of the way the merge is done is important for consistency with the pretrained model + lstm_0_output, _ = self.lstm_0(packed_input, hidden) + lstm_1_output, _ = self.lstm_1(lstm_0_output, hidden) + + # Update packed sequence data for attention layer + packed_input = PackedSequence(data=torch.cat((lstm_1_output.data, + lstm_0_output.data, + packed_input.data), dim=1), + batch_sizes=packed_input.batch_sizes) + + input_seqs, _ = pad_packed_sequence(packed_input, batch_first=True) + + x, att_weights = self.attention_layer(input_seqs, input_lengths) + + # output class probabilities or penultimate feature vector + if not self.feature_output: + x = self.final_dropout(x) + outputs = self.output_layer(x) + else: + outputs = x + + # Reorder output if needed + if reorder_output: + reorered = Variable(outputs.data.new(outputs.size())) + reorered[perm_idx] = outputs + outputs = reorered + + # Adapt return format if needed + if return_tensor: + outputs = outputs.data + if return_numpy: + outputs = outputs.data.numpy() + + if self.return_attention: + return outputs, att_weights + else: + return outputs + + +def load_specific_weights(model, weight_path, exclude_names=[], extend_embedding=0, verbose=True): + """ Loads model weights from the given file path, excluding any + given layers. + + # Arguments: + model: Model whose weights should be loaded. + weight_path: Path to file containing model weights. + exclude_names: List of layer names whose weights should not be loaded. + extend_embedding: Number of new words being added to vocabulary. + verbose: Verbosity flag. + + # Raises: + ValueError if the file at weight_path does not exist. + """ + if not exists(weight_path): + raise ValueError('ERROR (load_weights): The weights file at {} does ' + 'not exist. Refer to the README for instructions.' + .format(weight_path)) + + if extend_embedding and 'embed' in exclude_names: + raise ValueError('ERROR (load_weights): Cannot extend a vocabulary ' + 'without loading the embedding weights.') + + # Copy only weights from the temporary model that are wanted + # for the specific task (e.g. the Softmax is often ignored) + weights = torch.load(weight_path) + for key, weight in weights.items(): + if any(excluded in key for excluded in exclude_names): + if verbose: + print('Ignoring weights for {}'.format(key)) + continue + + try: + model_w = model.state_dict()[key] + except KeyError: + raise KeyError("Weights had parameters {},".format(key) + + " but could not find this parameters in model.") + + if verbose: + print('Loading weights for {}'.format(key)) + + # extend embedding layer to allow new randomly initialized words + # if requested. Otherwise, just load the weights for the layer. + if 'embed' in key and extend_embedding > 0: + weight = torch.cat((weight, model_w[NB_TOKENS:, :]), dim=0) + if verbose: + print('Extended vocabulary for embedding layer ' + + 'from {} to {} tokens.'.format( + NB_TOKENS, NB_TOKENS + extend_embedding)) + try: + model_w.copy_(weight) + except: + print('While copying the weigths named {}, whose dimensions in the model are' + ' {} and whose dimensions in the saved file are {}, ...'.format( + key, model_w.size(), weight.size())) + raise diff --git a/torchmoji/sentence_tokenizer.py b/torchmoji/sentence_tokenizer.py new file mode 100644 index 0000000..db43fa4 --- /dev/null +++ b/torchmoji/sentence_tokenizer.py @@ -0,0 +1,245 @@ +# -*- coding: utf-8 -*- +''' +Provides functionality for converting a given list of tokens (words) into +numbers, according to the given vocabulary. +''' +from __future__ import print_function, division, unicode_literals + +import numbers +import numpy as np + +from torchmoji.create_vocab import extend_vocab, VocabBuilder +from torchmoji.word_generator import WordGenerator +from torchmoji.global_variables import SPECIAL_TOKENS + +# import torch + +from sklearn.model_selection import train_test_split + +from copy import deepcopy + +class SentenceTokenizer(): + """ Create numpy array of tokens corresponding to input sentences. + The vocabulary can include Unicode tokens. + """ + def __init__(self, vocabulary, fixed_length, custom_wordgen=None, + ignore_sentences_with_only_custom=False, masking_value=0, + unknown_value=1): + """ Needs a dictionary as input for the vocabulary. + """ + + if len(vocabulary) > np.iinfo('uint16').max: + raise ValueError('Dictionary is too big ({} tokens) for the numpy ' + 'datatypes used (max limit={}). Reduce vocabulary' + ' or adjust code accordingly!' + .format(len(vocabulary), np.iinfo('uint16').max)) + + # Shouldn't be able to modify the given vocabulary + self.vocabulary = deepcopy(vocabulary) + self.fixed_length = fixed_length + self.ignore_sentences_with_only_custom = ignore_sentences_with_only_custom + self.masking_value = masking_value + self.unknown_value = unknown_value + + # Initialized with an empty stream of sentences that must then be fed + # to the generator at a later point for reusability. + # A custom word generator can be used for domain-specific filtering etc + if custom_wordgen is not None: + assert custom_wordgen.stream is None + self.wordgen = custom_wordgen + self.uses_custom_wordgen = True + else: + self.wordgen = WordGenerator(None, allow_unicode_text=True, + ignore_emojis=False, + remove_variation_selectors=True, + break_replacement=True) + self.uses_custom_wordgen = False + + def tokenize_sentences(self, sentences, reset_stats=True, max_sentences=None): + """ Converts a given list of sentences into a numpy array according to + its vocabulary. + + # Arguments: + sentences: List of sentences to be tokenized. + reset_stats: Whether the word generator's stats should be reset. + max_sentences: Maximum length of sentences. Must be set if the + length cannot be inferred from the input. + + # Returns: + Numpy array of the tokenization sentences with masking, + infos, + stats + + # Raises: + ValueError: When maximum length is not set and cannot be inferred. + """ + + if max_sentences is None and not hasattr(sentences, '__len__'): + raise ValueError('Either you must provide an array with a length' + 'attribute (e.g. a list) or specify the maximum ' + 'length yourself using `max_sentences`!') + n_sentences = (max_sentences if max_sentences is not None + else len(sentences)) + + if self.masking_value == 0: + tokens = np.zeros((n_sentences, self.fixed_length), dtype='uint16') + else: + tokens = (np.ones((n_sentences, self.fixed_length), dtype='uint16') + * self.masking_value) + + if reset_stats: + self.wordgen.reset_stats() + + # With a custom word generator info can be extracted from each + # sentence (e.g. labels) + infos = [] + + # Returns words as strings and then map them to vocabulary + self.wordgen.stream = sentences + next_insert = 0 + n_ignored_unknowns = 0 + for s_words, s_info in self.wordgen: + s_tokens = self.find_tokens(s_words) + + if (self.ignore_sentences_with_only_custom and + np.all([True if t < len(SPECIAL_TOKENS) + else False for t in s_tokens])): + n_ignored_unknowns += 1 + continue + if len(s_tokens) > self.fixed_length: + s_tokens = s_tokens[:self.fixed_length] + tokens[next_insert,:len(s_tokens)] = s_tokens + infos.append(s_info) + next_insert += 1 + + # For standard word generators all sentences should be tokenized + # this is not necessarily the case for custom wordgenerators as they + # may filter the sentences etc. + if not self.uses_custom_wordgen and not self.ignore_sentences_with_only_custom: + assert len(sentences) == next_insert + else: + # adjust based on actual tokens received + tokens = tokens[:next_insert] + infos = infos[:next_insert] + + return tokens, infos, self.wordgen.stats + + def find_tokens(self, words): + assert len(words) > 0 + tokens = [] + for w in words: + try: + tokens.append(self.vocabulary[w]) + except KeyError: + tokens.append(self.unknown_value) + return tokens + + def split_train_val_test(self, sentences, info_dicts, + split_parameter=[0.7, 0.1, 0.2], extend_with=0): + """ Splits given sentences into three different datasets: training, + validation and testing. + + # Arguments: + sentences: The sentences to be tokenized. + info_dicts: A list of dicts that contain information about each + sentence (e.g. a label). + split_parameter: A parameter for deciding the splits between the + three different datasets. If instead of being passed three + values, three lists are passed, then these will be used to + specify which observation belong to which dataset. + extend_with: An optional parameter. If > 0 then this is the number + of tokens added to the vocabulary from this dataset. The + expanded vocab will be generated using only the training set, + but is applied to all three sets. + + # Returns: + List of three lists of tokenized sentences, + + List of three corresponding dictionaries with information, + + How many tokens have been added to the vocab. Make sure to extend + the embedding layer of the model accordingly. + """ + + # If passed three lists, use those directly + if isinstance(split_parameter, list) and \ + all(isinstance(x, list) for x in split_parameter) and \ + len(split_parameter) == 3: + + # Helper function to verify provided indices are numbers in range + def verify_indices(inds): + return list(filter(lambda i: isinstance(i, numbers.Number) + and i < len(sentences), inds)) + + ind_train = verify_indices(split_parameter[0]) + ind_val = verify_indices(split_parameter[1]) + ind_test = verify_indices(split_parameter[2]) + else: + # Split sentences and dicts + ind = list(range(len(sentences))) + ind_train, ind_test = train_test_split(ind, test_size=split_parameter[2]) + ind_train, ind_val = train_test_split(ind_train, test_size=split_parameter[1]) + + # Map indices to data + train = np.array([sentences[x] for x in ind_train]) + test = np.array([sentences[x] for x in ind_test]) + val = np.array([sentences[x] for x in ind_val]) + + info_train = np.array([info_dicts[x] for x in ind_train]) + info_test = np.array([info_dicts[x] for x in ind_test]) + info_val = np.array([info_dicts[x] for x in ind_val]) + + added = 0 + # Extend vocabulary with training set tokens + if extend_with > 0: + wg = WordGenerator(train) + vb = VocabBuilder(wg) + vb.count_all_words() + added = extend_vocab(self.vocabulary, vb, max_tokens=extend_with) + + # Wrap results + result = [self.tokenize_sentences(s)[0] for s in [train, val, test]] + result_infos = [info_train, info_val, info_test] + # if type(result_infos[0][0]) in [np.double, np.float, np.int64, np.int32, np.uint8]: + # result_infos = [torch.from_numpy(label).long() for label in result_infos] + + return result, result_infos, added + + def to_sentence(self, sentence_idx): + """ Converts a tokenized sentence back to a list of words. + + # Arguments: + sentence_idx: List of numbers, representing a tokenized sentence + given the current vocabulary. + + # Returns: + String created by converting all numbers back to words and joined + together with spaces. + """ + # Have to recalculate the mappings in case the vocab was extended. + ind_to_word = {ind: word for word, ind in self.vocabulary.items()} + + sentence_as_list = [ind_to_word[x] for x in sentence_idx] + cleaned_list = [x for x in sentence_as_list if x != 'CUSTOM_MASK'] + return " ".join(cleaned_list) + + +def coverage(dataset, verbose=False): + """ Computes the percentage of words in a given dataset that are unknown. + + # Arguments: + dataset: Tokenized dataset to be checked. + verbose: Verbosity flag. + + # Returns: + Percentage of unknown tokens. + """ + n_total = np.count_nonzero(dataset) + n_unknown = np.sum(dataset == 1) + coverage = 1.0 - float(n_unknown) / n_total + + if verbose: + print("Unknown words: {}".format(n_unknown)) + print("Total words: {}".format(n_total)) + print("Coverage: {}".format(coverage)) + return coverage diff --git a/torchmoji/tokenizer.py b/torchmoji/tokenizer.py new file mode 100644 index 0000000..bdaf2fb --- /dev/null +++ b/torchmoji/tokenizer.py @@ -0,0 +1,156 @@ +# -*- coding: utf-8 -*- +''' +Splits up a Unicode string into a list of tokens. +Recognises: +- Abbreviations +- URLs +- Emails +- #hashtags +- @mentions +- emojis +- emoticons (limited support) + +Multiple consecutive symbols are also treated as a single token. +''' +from __future__ import absolute_import, division, print_function, unicode_literals + +import re + +# Basic patterns. +RE_NUM = r'[0-9]+' +RE_WORD = r'[a-zA-Z]+' +RE_WHITESPACE = r'\s+' +RE_ANY = r'.' + +# Combined words such as 'red-haired' or 'CUSTOM_TOKEN' +RE_COMB = r'[a-zA-Z]+[-_][a-zA-Z]+' + +# English-specific patterns +RE_CONTRACTIONS = RE_WORD + r'\'' + RE_WORD + +TITLES = [ + r'Mr\.', + r'Ms\.', + r'Mrs\.', + r'Dr\.', + r'Prof\.', + ] +# Ensure case insensitivity +RE_TITLES = r'|'.join([r'(?i)' + t for t in TITLES]) + +# Symbols have to be created as separate patterns in order to match consecutive +# identical symbols. +SYMBOLS = r'(){}~$^&*;:%+\xa3€`' +RE_SYMBOL = r'|'.join([re.escape(s) + r'+' for s in SYMBOLS]) + +# Hash symbols and at symbols have to be defined separately in order to not +# clash with hashtags and mentions if there are multiple - i.e. +# ##hello -> ['#', '#hello'] instead of ['##', 'hello'] +SPECIAL_SYMBOLS = r'|#+(?=#[a-zA-Z0-9_]+)|@+(?=@[a-zA-Z0-9_]+)|#+|@+' +RE_SYMBOL += SPECIAL_SYMBOLS + +RE_ABBREVIATIONS = r'\b(?:', + r':', + r'=', + r';', + ] +EMOTICONS_MID = [ + r'-', + r',', + r'^', + '\'', + '\"', + ] +EMOTICONS_END = [ + r'D', + r'd', + r'p', + r'P', + r'v', + r')', + r'o', + r'O', + r'(', + r'3', + r'/', + r'|', + '\\', + ] +EMOTICONS_EXTRA = [ + r'-_-', + r'x_x', + r'^_^', + r'o.o', + r'o_o', + r'(:', + r'):', + r');', + r'(;', + ] + +RE_EMOTICON = r'|'.join([re.escape(s) for s in EMOTICONS_EXTRA]) +for s in EMOTICONS_START: + for m in EMOTICONS_MID: + for e in EMOTICONS_END: + RE_EMOTICON += '|{0}{1}?{2}+'.format(re.escape(s), re.escape(m), re.escape(e)) + +# requires ucs4 in python2.7 or python3+ +# RE_EMOJI = r"""[\U0001F300-\U0001F64F\U0001F680-\U0001F6FF\u2600-\u26FF\u2700-\u27BF]""" +# safe for all python +RE_EMOJI = r"""\ud83c[\udf00-\udfff]|\ud83d[\udc00-\ude4f\ude80-\udeff]|[\u2600-\u26FF\u2700-\u27BF]""" + +# List of matched token patterns, ordered from most specific to least specific. +TOKENS = [ + RE_URL, + RE_EMAIL, + RE_COMB, + RE_HASHTAG, + RE_MENTION, + RE_HEART, + RE_EMOTICON, + RE_CONTRACTIONS, + RE_TITLES, + RE_ABBREVIATIONS, + RE_NUM, + RE_WORD, + RE_SYMBOL, + RE_EMOJI, + RE_ANY + ] + +# List of ignored token patterns +IGNORED = [ + RE_WHITESPACE + ] + +# Final pattern +RE_PATTERN = re.compile(r'|'.join(IGNORED) + r'|(' + r'|'.join(TOKENS) + r')', + re.UNICODE) + + +def tokenize(text): + '''Splits given input string into a list of tokens. + + # Arguments: + text: Input string to be tokenized. + + # Returns: + List of strings (tokens). + ''' + result = RE_PATTERN.findall(text) + + # Remove empty strings + result = [t for t in result if t.strip()] + return result diff --git a/torchmoji/word_generator.py b/torchmoji/word_generator.py new file mode 100644 index 0000000..46d3633 --- /dev/null +++ b/torchmoji/word_generator.py @@ -0,0 +1,311 @@ +# -*- coding: utf-8 -*- +''' Extracts lists of words from a given input to be used for later vocabulary + generation or for creating tokenized datasets. + Supports functionality for handling different file types and + filtering/processing of this input. +''' + +from __future__ import division, print_function, unicode_literals + +import sys +import re +import unicodedata +import numpy as np +from text_unidecode import unidecode + +from torchmoji.tokenizer import RE_MENTION, tokenize +from torchmoji.filter_utils import (convert_linebreaks, + convert_nonbreaking_space, + correct_length, + extract_emojis, + mostly_english, + non_english_user, + process_word, + punct_word, + remove_control_chars, + remove_variation_selectors, + separate_emojis_and_text) + +IS_PYTHON2 = int(sys.version[0]) == 2 +unicode_ = unicode if IS_PYTHON2 else str + +# Only catch retweets in the beginning of the tweet as those are the +# automatically added ones. +# We do not want to remove tweets like "Omg.. please RT this!!" +RETWEETS_RE = re.compile(r'^[rR][tT]') + +# Use fast and less precise regex for removing tweets with URLs +# It doesn't matter too much if a few tweets with URL's make it through +URLS_RE = re.compile(r'https?://|www\.') + +MENTION_RE = re.compile(RE_MENTION) +ALLOWED_CONVERTED_UNICODE_PUNCTUATION = """!"#$'()+,-.:;<=>?@`~""" + + +class WordGenerator(): + ''' Cleanses input and converts into words. Needs all sentences to be in + Unicode format. Has subclasses that read sentences differently based on + file type. + + Takes a generator as input. This can be from e.g. a file. + unicode_handling in ['ignore_sentence', 'convert_punctuation', 'allow'] + unicode_handling in ['ignore_emoji', 'ignore_sentence', 'allow'] + ''' + def __init__(self, stream, allow_unicode_text=False, ignore_emojis=True, + remove_variation_selectors=True, break_replacement=True): + self.stream = stream + self.allow_unicode_text = allow_unicode_text + self.remove_variation_selectors = remove_variation_selectors + self.ignore_emojis = ignore_emojis + self.break_replacement = break_replacement + self.reset_stats() + + def get_words(self, sentence): + """ Tokenizes a sentence into individual words. + Converts Unicode punctuation into ASCII if that option is set. + Ignores sentences with Unicode if that option is set. + Returns an empty list of words if the sentence has Unicode and + that is not allowed. + """ + + if not isinstance(sentence, unicode_): + raise ValueError("All sentences should be Unicode-encoded!") + sentence = sentence.strip().lower() + + if self.break_replacement: + sentence = convert_linebreaks(sentence) + + if self.remove_variation_selectors: + sentence = remove_variation_selectors(sentence) + + # Split into words using simple whitespace splitting and convert + # Unicode. This is done to prevent word splitting issues with + # twokenize and Unicode + words = sentence.split() + converted_words = [] + for w in words: + accept_sentence, c_w = self.convert_unicode_word(w) + # Unicode word detected and not allowed + if not accept_sentence: + return [] + else: + converted_words.append(c_w) + sentence = ' '.join(converted_words) + + words = tokenize(sentence) + words = [process_word(w) for w in words] + return words + + def check_ascii(self, word): + """ Returns whether a word is ASCII """ + + try: + word.decode('ascii') + return True + except (UnicodeDecodeError, UnicodeEncodeError, AttributeError): + return False + + def convert_unicode_punctuation(self, word): + word_converted_punct = [] + for c in word: + decoded_c = unidecode(c).lower() + if len(decoded_c) == 0: + # Cannot decode to anything reasonable + word_converted_punct.append(c) + else: + # Check if all punctuation and therefore fine + # to include unidecoded version + allowed_punct = punct_word( + decoded_c, + punctuation=ALLOWED_CONVERTED_UNICODE_PUNCTUATION) + + if allowed_punct: + word_converted_punct.append(decoded_c) + else: + word_converted_punct.append(c) + return ''.join(word_converted_punct) + + def convert_unicode_word(self, word): + """ Converts Unicode words to ASCII using unidecode. If Unicode is not + allowed (set as a variable during initialization), then only + punctuation that can be converted to ASCII will be allowed. + """ + if self.check_ascii(word): + return True, word + + # First we ensure that the Unicode is normalized so it's + # always a single character. + word = unicodedata.normalize("NFKC", word) + + # Convert Unicode punctuation to ASCII equivalent. We want + # e.g. "\u203c" (double exclamation mark) to be treated the same + # as "!!" no matter if we allow other Unicode characters or not. + word = self.convert_unicode_punctuation(word) + + if self.ignore_emojis: + _, word = separate_emojis_and_text(word) + + # If conversion of punctuation and removal of emojis took care + # of all the Unicode or if we allow Unicode then everything is fine + if self.check_ascii(word) or self.allow_unicode_text: + return True, word + else: + # Sometimes we might want to simply ignore Unicode sentences + # (e.g. for vocabulary creation). This is another way to prevent + # "polution" of strange Unicode tokens from low quality datasets + return False, '' + + def data_preprocess_filtering(self, line, iter_i): + """ To be overridden with specific preprocessing/filtering behavior + if desired. + + Returns a boolean of whether the line should be accepted and the + preprocessed text. + + Runs prior to tokenization. + """ + return True, line, {} + + def data_postprocess_filtering(self, words, iter_i): + """ To be overridden with specific postprocessing/filtering behavior + if desired. + + Returns a boolean of whether the line should be accepted and the + postprocessed text. + + Runs after tokenization. + """ + return True, words, {} + + def extract_valid_sentence_words(self, line): + """ Line may either a string of a list of strings depending on how + the stream is being parsed. + Domain-specific processing and filtering can be done both prior to + and after tokenization. + Custom information about the line can be extracted during the + processing phases and returned as a dict. + """ + + info = {} + + pre_valid, pre_line, pre_info = \ + self.data_preprocess_filtering(line, self.stats['total']) + info.update(pre_info) + if not pre_valid: + self.stats['pretokenization_filtered'] += 1 + return False, [], info + + words = self.get_words(pre_line) + if len(words) == 0: + self.stats['unicode_filtered'] += 1 + return False, [], info + + post_valid, post_words, post_info = \ + self.data_postprocess_filtering(words, self.stats['total']) + info.update(post_info) + if not post_valid: + self.stats['posttokenization_filtered'] += 1 + return post_valid, post_words, info + + def generate_array_from_input(self): + sentences = [] + for words in self: + sentences.append(words) + return sentences + + def reset_stats(self): + self.stats = {'pretokenization_filtered': 0, + 'unicode_filtered': 0, + 'posttokenization_filtered': 0, + 'total': 0, + 'valid': 0} + + def __iter__(self): + if self.stream is None: + raise ValueError("Stream should be set before iterating over it!") + + for line in self.stream: + valid, words, info = self.extract_valid_sentence_words(line) + + # Words may be filtered away due to unidecode etc. + # In that case the words should not be passed on. + if valid and len(words): + self.stats['valid'] += 1 + yield words, info + + self.stats['total'] += 1 + + +class TweetWordGenerator(WordGenerator): + ''' Returns np array or generator of ASCII sentences for given tweet input. + Any file opening/closing should be handled outside of this class. + ''' + def __init__(self, stream, wanted_emojis=None, english_words=None, + non_english_user_set=None, allow_unicode_text=False, + ignore_retweets=True, ignore_url_tweets=True, + ignore_mention_tweets=False): + + self.wanted_emojis = wanted_emojis + self.english_words = english_words + self.non_english_user_set = non_english_user_set + self.ignore_retweets = ignore_retweets + self.ignore_url_tweets = ignore_url_tweets + self.ignore_mention_tweets = ignore_mention_tweets + WordGenerator.__init__(self, stream, + allow_unicode_text=allow_unicode_text) + + def validated_tweet(self, data): + ''' A bunch of checks to determine whether the tweet is valid. + Also returns emojis contained by the tweet. + ''' + + # Ordering of validations is important for speed + # If it passes all checks, then the tweet is validated for usage + + # Skips incomplete tweets + if len(data) <= 9: + return False, [] + + text = data[9] + + if self.ignore_retweets and RETWEETS_RE.search(text): + return False, [] + + if self.ignore_url_tweets and URLS_RE.search(text): + return False, [] + + if self.ignore_mention_tweets and MENTION_RE.search(text): + return False, [] + + if self.wanted_emojis is not None: + uniq_emojis = np.unique(extract_emojis(text, self.wanted_emojis)) + if len(uniq_emojis) == 0: + return False, [] + else: + uniq_emojis = [] + + if self.non_english_user_set is not None and \ + non_english_user(data[1], self.non_english_user_set): + return False, [] + return True, uniq_emojis + + def data_preprocess_filtering(self, line, iter_i): + fields = line.strip().split("\t") + valid, emojis = self.validated_tweet(fields) + text = fields[9].replace('\\n', '') \ + .replace('\\r', '') \ + .replace('&', '&') if valid else '' + return valid, text, {'emojis': emojis} + + def data_postprocess_filtering(self, words, iter_i): + valid_length = correct_length(words, 1, None) + valid_english, n_words, n_english = mostly_english(words, + self.english_words) + if valid_length and valid_english: + return True, words, {'length': len(words), + 'n_normal_words': n_words, + 'n_english': n_english} + else: + return False, [], {'length': len(words), + 'n_normal_words': n_words, + 'n_english': n_english}